]> git.decadent.org.uk Git - nfs-utils.git/blob - ChangeLog
Don't close and reopen all pipes on every DNOTIFY signal.
[nfs-utils.git] / ChangeLog
1 2006-03-28 kwc@citi.umich.edu
2         
3         Don't close and reopen all pipes on every DNOTIFY signal.
4         
5         From: Vince Busam <vbusam@google.com>
6         Signed-off-by: Kevin Coffman <kwc@citi.umich.edu>
7         
8         Don't unnecessarily close and re-open all pipes after every DNOTIFY
9         signal.  These unnecessary closes were triggering a kernel Oops.
10         Original patch modified to correct segfault when unmounting last
11         NFSv4 mount.
12         
13 2006-03-28 kwc@citi.umich.edu
14         Add option to specify directory to search for credentials cache files
15         
16         
17         From: Vince Busam <vbusam@google.com>
18         Signed-off-by: Kevin Coffman <kwc@citi.umich.edu>
19         
20         Add command line option to specify which directory should be searched
21         to find credentials caches.
22         (really this time)      
23         
24 2006-03-28 kwc@citi.umich.edu
25         Must still use knowledge of the glue context for pre-1.4 versions of MIT krb5
26         
27         We need to get access to the internal krb5 context pointer for
28         older (pre-1.4) versions of MIT Kerberos.  We get a pointer to
29         the gss glue's context.  Get the right pointer before accessing
30         the context information.
31         (really this time)
32         
33 2006-03-28 kwc@citi.umich.edu
34         
35         Remove unused groups variable from get_ids() which was causing a compiler warning.
36         (really this time)
37         
38 2006-03-28 kwc@citi.umich.edu
39         Update krb5 code to use glue routine lucid context functions
40         
41         
42         
43         The gssd code should not know about the glue layer's context structure.
44         A previous patch added gss_export_lucid_sec_context() and
45         gss_free_lucid_sec_context() functions to the gssapi glue layer.
46         Use these functions rather than calling directly to the Kerberos
47         gssapi code (which requires the Kerberos context handle rather
48         than the glue's context handle).
49         
50         (really this time)
51         
52 2006-03-28 kwc@citi.umich.edu
53         
54         Separate out context handling code for MIT Kerberos and SPKM3
55         into their own file.
56         (Really this time)
57         
58 2006-03-28 Kevin Coffman <kwc@citi.umich.edu>
59         User-selectable idmapping cache lifetime
60         
61         Read and process new configuration option, Cache-Expiration, and use
62         the value to determine how long idmapping entries are cached.
63         (Really this time)
64         
65 2006-03-27 NeilBrown <neilb@suse.de>
66         1.0.8-rc3
67
68 2006-03-27 kwc@citi.umich.edu
69         Add debugging to better detect negotiation of enctype not supported by kernel
70
71         Print debugging message indicating the type of encryption keys being sent
72         down to the kernel.  This should make it easier to detect cases where
73         unsupported encryption types are being negotiated.
74         
75 2006-03-27
76         Don't close and reopen all pipes on every DNOTIFY signal.
77         
78         Don't unnecessarily close and re-open all pipes after every DNOTIFY
79         signal.  These unnecessary closes were triggering a kernel Oops.
80         Original patch modified to correct segfault when unmounting last
81         NFSv4 mount.
82         
83 2006-03-27
84         Add option to specify directory to search for credentials cache files
85         
86         Add command line option to specify which directory should be searched
87         to find credentials caches.
88         
89 2006-03-27 kwc@citi.umich.edu
90         Must still use knowledge of the glue context for pre-1.4 versions of MIT krb5
91         
92         We need to get access to the internal krb5 context pointer for
93         older (pre-1.4) versions of MIT Kerberos.  We get a pointer to
94         the gss glue's context.  Get the right pointer before accessing
95         the context information.
96         
97 2006-03-27 Kevin Coffman <kwc@citi.umich.edu>
98         Remove unused variable causing compile warning
99         
100         Remove unused groups variable from get_ids() which was causing a compiler warning.
101         
102 2006-03-27 kwc@citi.umich.edu
103         Update krb5 code to use glue routine lucid context functions
104         
105         The gssd code should not know about the glue layer's context structure.
106         A previous patch added gss_export_lucid_sec_context() and
107         gss_free_lucid_sec_context() functions to the gssapi glue layer.
108         Use these functions rather than calling directly to the Kerberos
109         gssapi code (which requires the Kerberos context handle rather
110         than the glue's context handle).
111         
112 2006-03-27 Kevin Coffman <kwc@citi.umich.edu>
113         Separate out context handling code for MIT Kerberos and SPKM3
114         into their own file.
115         
116 2006-03-27 Kevin Coffman <kwc@citi.umich.edu>
117         Consolidate gssd and svcgssd since they share much code
118         
119         Remove directory svcgssd which was only created because the old
120         build system could not handle building two daemons in the same
121         directory.  This eliminates build complications since gssd and
122         svcgssd also share many source files.
123         
124         This patch effectively removes the utils/svcgssd directory, moving
125         all its files to the utils/gssd directory.  File utils/gssd/Makefile.am
126         is modified with directions to build both gssd and svcgssd.
127         
128 2006-03-27 Kevin Coffman <kwc@citi.umich.edu>
129         Use PKGCONFIG to locate gssapi and rpcsecgss header files
130         
131         Instead of having separate copies of the gssapi and rpcsecgss
132         header files, or depending on the Kerberos gssapi header,
133         locate the headers now installed with the libgssapi and librpcsecgss
134         libraries.
135         
136         Remove local copies of the gssapi and rpcsecgss header files.
137         
138         This depends on the configure_use_autotools patch.
139         
140 2006-03-27 Kevin Coffman <kwc@citi.umich.edu>
141         User-selectable idmapping cache lifetime
142         
143         Read and process new configuration option, Cache-Expiration, and use
144         the value to determine how long idmapping entries are cached.
145         
146 2006-03-27 Steve Dickson <steved@redhat.com>
147         Set libnfsidmap library debugging level and logging function.
148
149         This patch adds a call to the new libnfsidmap library function 
150         nfs4_set_debug(), which defines the verbosity level libnfsidmap
151         should use as well as the logging function.
152
153 2006-03-27 Kevin Coffman <kwc@citi.umich.edu>
154         Don't close file descriptor until after calling event_del().
155
156         Delete event processing for a file descriptor before closing it.
157         This was causing hangs when used in combination with libevent-1.0b.
158
159 2006-03-27 kwc@citi.umich.edu
160         Find krb5-config on SuSE 10
161
162         SuSE 10.0 puts krb5-config in yet another obscure location.
163         Look for it there and use it if found.
164
165 2006-03-27 Kevin Coffman <kwc@citi.umich.edu>
166         Update debian package information.
167
168 2006-03-27 Kevin Coffman <kwc@citi.umich.edu>
169         Install /var/lib/nfs files using DESTDIR and add rpcsec headers to distribution
170
171         Add "$(DESTDIR)" to the paths for the "$(statedir)" files so they are
172         put in the right place when DESTDIR is defined.
173
174         Add the rpcsec header files to EXTRA_DIST list.
175
176 2005-12-21 NeilBrown <neilb@suse.de>
177         *utils/rquotad/rquota_server.c: Detect and handle both old-style
178         (2.4) and new-style(2.6) quotactl.
179         *utils/gssd/gss_destroy_cred: remove dependence on "head -1" which
180         might need to be "head -n 1"
181         *utils/nhfsstone/nhfsrun: convert "tail -1" to "tail -n 1"
182         
183 2005-12-20 Kevin Coffman <kwc@citi.umich.edu> NeilBrown <neilb@suse.de>
184         Substantial Makefile/configure rewrite.  
185         Run 'autogen.sh' to create "Makefile.in" etc.
186
187         Also add -D_FILE_OFFSET_BITS=64 to CPP_FLAGS so that mountd can
188         stat and export files larger than 2Gig.
189
190         1.0.8-rc2 released
191
192 2005-12-20 NeilBrown <neilb@suse.de>
193         support/nfs/exports.c(getexportent): is a null host name is given,
194         replace it with '*' so we have a non-empty host name for messages
195         etc.
196         utils/exportfs/exportfs.man: Correct documentation about default
197         export options.
198
199 2005-12-20 Kevin Coffman <kwc@citi.umich.edu>
200         utils/gssd/gssd_proc.c(create_auth_rpc_client): Use service
201           portion of clp->servicename rather than hard-coding "nfs". 
202
203 2005-12-16 NeilBrown <neilb@suse.de>
204         1.0.8-rc1 released
205
206 2005-12-16 Kevin Coffman <kwc@citi.umich.edu>
207         svcgssd needs -lnfs when using new function closeall().
208         
209         ---
210         Remove unused argument from nfsdopen()
211         
212         After previous changes, the arguement to nfsdopen() has become unused.
213         Remove it.
214         
215         ---
216         Fix idmapd error reporting after call to mydaemon()
217         
218         After call to mydaemon(), calls to err[x] and warn[x] result
219         in the message going nowhere.  Change to using idmapd_*
220         versions of these routines which write to syslog.
221         Original problem reported by Vincent Roqueta <vincent.roqueta@ext.bull.net>
222         with a different patch.
223         
224         ---
225         Don't add @domain to names that cannot be mapped.
226         
227         Per rfc3530 section 5.8: when unable to map a uid to a name, don't
228         add the @domain to the "nobody" name.
229         
230         ---
231         Fix idmapd for systems where sizeof(uid_t)!=4 and sizeof(gid_t)!=4
232         
233         Fix conversion cases where uid_t and gid_t are not 32 bits.
234         
235         ---
236         Don't segfault because mech wasn't filled in because of an error
237         
238         From Kevin Coffman <kwc@citi.umich.edu>
239         
240         Initialize mech to null to avoid segfault if an error occurs
241         and mech is never returned from gss_accept_sec_context.
242         
243         ---
244         Remove use of static buffer in do_downcall
245         
246         Signed-off-by: Kevin Coffman <kwc@citi.umich.edu>
247         
248         Dynamically allocate buffer of the correct length rather
249         than using fixed-length buffer.
250         
251         ---
252         Print better error message if rpc routine clnt_create() fails.
253         
254         ---
255         Print appropriate error messages after gss calls.
256         
257         Print gss error messages after calls to gss functions, even if they
258         are for Kerberos only.
259         
260         ---
261         Update gssd and svcgssd to use the new gss mech glue lucid context calls.
262         
263         Signed-off-by: Kevin Coffman <kwc@citi.umich.edu>
264         
265         Update gssd and svcgssd to use a lucid context from SPKM3 to send down
266         to the kernel.
267         Update gssd and svcgssd to use the new gss mech glue lucid context calls.
268         Add configure check to see if spkm3 support is available.
269         
270         ---
271         Add support for CONTINUE_NEEDED return from gss_accept_sec_context.
272         
273         Signed-off-by: Kevin Coffman <kwc@citi.umich.edu>
274         
275         Add CONTINUE_INIT handling to svcgssd. Store the partially complete spkm
276         context handle in the out_handle of CONTINUE_INIT messages so that it is
277         returned in the in_handle of subsequent messages.
278         
279         ---
280         Replace GSS_C_ANON_FLAG with GSS_C_MUTUAL_FLAG.
281         
282         Signed-off-by: Kevin Coffman <kwc@citi.umich.edu>
283         
284         Specify GSS_C_MUTUAL_FLAG rather than GSS_C_ANON_FLAG for
285         spkm3.
286         
287         NOTE: we need a way to pass the appropriate value rather than
288         hard-coding this flag.
289         
290         ---
291         Increase size of rpc send/receive buffers
292         
293         Change the clnt_create() to use routines which allow us to set the
294         send and receive buffer size.  This is needed for larger spkm3
295         exchanges including certificate chains.
296         
297         This has the side-effect of skipping the portmap call since
298         we specify the port (by specifying the service) when getting
299         the server's address information.
300         
301         ---
302         Define _LINUX_QUOTA_VERSION to 1
303         
304         The rquotad code is written against the "old" kernel quota interface.
305         Fedora Core 4 is the only platform known to check for different
306         versions, so this should not have any affect on other platforms
307         and fixes the build for FC4.
308         
309         ---
310
311 2005-12-12 Usha Ketineni <ketineni@us.ibm.com>, NeilBrown <neilb@suse.de>
312         *support/nfs/rpcmisc.c(rpc_init): is stdin is a socket, but
313         is already connected (as e.g. from ssh), don't assume we
314         were started by inetd.
315
316 2005-11-03 Steve Dickson <SteveD@redhat.com> NeilBrown <neilb@suse.de>
317         *utils/idmapd/idmaps.c:
318         
319         I've recently updated the nfs-utils in rawhide with the
320         latest patches from the SourceForge CVS tree and the
321         latest CITI patches (1.0.7-4).
322         
323         In testing these patches, I notice that when the server was started
324         and a SIGHUP was sent to rpc.idmapd to open the nfs4.nametoid/channel
325         and nfs4.idtoname/channel files, the second open (the nfs4.idtoname one)
326         failed because the path (i.e. ic->ic_path) was NULL.
327         
328         Now the reason the ic_path was NULL was because it was never set
329         during the call to nfsdopen(). nfsdopen() looks like:
330         nfsdopen(char *path)
331         {
332              return ((nfsdopenone(&nfsd_ic[IC_NAMEID], IC_NAMEID, path) == 0 &&
333              nfsdopenone(&nfsd_ic[IC_IDNAME], IC_IDNAME, path) == 0) ? 0 
334                : -1);
335         }
336
337         Note: the call to nfsdopenone() is how the path is set in each nfsd_ic[]
338         entry and nfsdopen() is only called once.
339         
340         So when rpc.idmap comes up and the first call to nfsdopenone() fails
341         (because the server is not running) the path in nfsd_ic[IC_IDNAME] is
342         never filled in because the second nfsdopenone() never happen...
343         
344         Now there was a CITI patche (idmapd_revert_fix_reopen_on_sighup.dif)
345         that tried to address this problem but did seem to fix it.. The
346         attached patch fix the problem by initializing both nfsd_ic[IC_IDNAME]
347         and nfsd_ic[IC_NAMEID] structures with the needed info...
348         I figured since there is no way of changing these paths or filenames
349         by command line args, why not just set them during compile time...
350         so that's what this patch does.
351         
352         This patch also changes how nfsdreopen_one() handles the
353         case where the event has already been set. Unlike the CITI
354         patch (idmapd_revert_fix_reopen_on_sighup.dif) which just
355         just does not register the second event, my patch deletes
356         the old event and the registers the new one. It just seems like
357         the right thing to do since a SIGHUP means a new server just
358         started so we probably should create a new event as well...
359         
360         steved.
361         
362 2005-10-14 NeilBrown <neilb@suse.de>
363         *utils/mountd/cache.c(nfsd_fh): Understand type 2 and type 3
364         filesystem identifiers, which are used with device numbers
365         That don't fit into 16 bits.
366
367 2005-10-07 Olaf Kirch <okir@suse.de>
368         * utils/mountd/mountd.c(get_exportlist): Without this patch,
369         showmount -e would sometimes display host names that should really
370         have been subsumed under a wildcard entry.
371
372         The problem was that the code in get_exportlist would always
373         skip the next group entry after removing one FQDN.
374
375 2005-10-06 Steve Dickson <SteveD@redhat.com> NeilBrown <neilb@suse.de>
376         * support/nfs/export.c: don't warn about sync/async for readonly
377         exports
378         * support/nfs/closeall.c: new file with function to close all 
379         file descriptors from a give minimum upwards.
380         * nfsd/mountd/statd/idmapd/gsssvcd: use closeall.
381         * utils/mountd/mountd.c: Eliminate 3 syslog message that are
382         logged for successful events. 
383         * utils/mountd/mountd.c: make sure the correct hostname is used in
384         the SM_NOTIFY message that is sent from a rebooted server which
385         has multiple network interfaces. (bz 139101)
386
387         Details can be found in:
388         https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=139101
389
390         *utils/idmapd/idmapd.c:Fixed subscripting problem in idmapd (bz
391         158188) This fixes the following problem: 
392          rpc.idmapd: nfsdreopen: Opening '' failed: errno 2 (No such file or directory)
393
394          Details can be found in:
395          https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=158188
396
397         *utils/statd/statd.c(drop_privs): clear st_gid as well as st_uid
398         of stat fails.
399         *utils/statd/svc_run.c(my_svc_run): remove usage of undocumented
400         %m format specifier.
401         *utils/statd/montor.c(sm_mon_1_svc): as above
402         *support/nfs/xlog.c(xlog): Changed xlog to use LOG_INFO instead of
403         LOG_DEBUG so debug messages will appear w/out any config changes
404         to syslog.conf. 
405
406         
407 2005-09-02 Mike Frysinger <vapier@gentoo.org>
408         * utils/rquotad/rquota_server.c(getquotainfo): use explicit
409         struture-member copying rather than memcpy, as the element
410         sizes are the same on all architectures.
411
412 2005-08-26 Kevin Coffman <kwc@citi.umich.edu>
413         Add option to set rpcsec_gss debugging level (if available)
414
415         Changes to allow gssd/svcgssd to build when using Hiemdal Kerberos
416         libraries.  Note that there are still run-time issues preventing
417         this from working when shared libraries for libgssapi and librpcsecgss
418         are used.
419         
420 2005-08-26 Kevin Coffman <kwc@citi.umich.edu>
421         Remove the rpcsec_gss code and rely on an external library instead.
422
423 2005-08-26 Kevin Coffman <kwc@citi.umich.edu>
424         *utils/mountd/mountd.c:
425         mountd currently always returns AUTH_NULL and AUTH_SYS as the
426         allowable flavors in mount replies.  We want it to also return gss
427         flavors when appropriate. For now as a hack we just have it always
428         return the KRB5 flavors as well. 
429
430         *utils/mountd/cache.c:
431         
432         When attempting to mount an NFSv4 pseudofilesystem (fsid=0) and the
433         actual exported directory does not exist on the server, rpc.mountd
434         doesn't check the directory exists (when fsidtype=1, i.e. using fsid,
435         but does check for fsidtype=0, i.e. using dev/ino).  The non-existent
436         exported directory path with fsid=0 is written to the kernel via
437         /proc/net/rpc/nfsd.export/channel, which leads to path_lookup() to
438         return ENOENT (seems appropriate).  Unfortunately, the new_cache
439         approach ignores errors returned when writing via the channel file so
440         that particular error is lost and the mount request is silently ignored.
441         
442         Assuming it doesn't make sense to revamp the new_cache/up-call method to
443         not ignore returned errors, it seems appropriate to fix the case where
444         rpc.mountd doesn't check for the existence of an exported directory with
445         fsid= semantics.  The following patch does this by moving the stat() up
446         so it is done for both fsidtype's.  I'm not certain whether the other
447         tests need to be executed for fsidtype=1, but it doesn't appear to hurt
448         [Not exactly true: the comparison of inode numbers caused problems so
449         now it's kept for fsidtype=0 only].
450         
451         Would it be also desirable to log a warning for every error, if any,
452         returned by a write to any of the /proc/net/rpc/*/channel files which
453         would otherwise be ignored (maybe under a debug flag)?
454
455         * gssd/mountd/svcgssd: Changes gssd, svcgssd, and mountd to ignore a
456         SIGHUP rather than dying.
457
458         * many: Remove the gssapi code and rely on an external library instead.
459
460 2005-08-26 Kevin Coffman <kwc@citi.umich.edu>
461         * utils/exportfs/exports.man: Document the "crossmnt" export export option
462         * utils/gssd/krb5_util.c: 
463         Add better debugging and partially revert the function
464         check for gss_krb5_ccache_name.
465         
466         For MIT Kerberos releases up to and including 1.3.1, we *must*
467         use the routine gss_krb5_ccache_name to get the K5 gssapi code
468         to use a different credentials cache.
469         
470         For releases 1.3.2 and on, we want to use the KRB5CCNAME
471         environment variable to tell it what to use.
472         (A problem was reported where 1.3.5 was being used, our
473         code was using gss_krb5_ccache_name, but the underlying
474         code continued to use the first (or default?) credentials
475         cache.  Switching to using the env variable fixed the problem.
476         I cannot recreate this problem.
477
478         *utils/gssd/krb5_util.c:
479         Andrew Mahone <andrew.mahone@gmail.com> reported that reiser4
480         always has DT_UNKNOWN.  He supplied patch to move the check
481         for regular files after the stat() call to correctly find
482         ccache files in reiser4 filesystem.
483         
484         Also change the name comparison so that the wrong file is
485         not selected when the substring comparison is done.
486
487         *utils/gssd/krb5_util.c:
488         Limit the set of encryption types that can be negotiated by
489         the Kerberos library to those that the kernel code currently
490         supports.
491         
492         This should eventually query the kernel for the list of
493         supported enctypes.
494
495         *utils/gssd/gss_util.c, utils/svcgssd/svcgssd_main_loop.c:
496         Print more information in error messages to help debugging failures.
497
498         *utils/svcgssd/svcgssd_proc.c: Increase token buffer size and
499         update error handling so that a response is always sent.
500
501         *utils/svcgssd/svcgssd_proc.c: Add support to retrieve
502         supplementary groups. 
503         
504         
505 2005-08-26 Kevin Coffman <kwc@citi.umich.edu>
506         * configure.in etc
507         Consolidate some of the Kerberos checking instead of repeating
508         the same things for MIT and Heimdal.
509         Also adds more checks to distinguish 32-bit from 64-bit
510         (mainly for gssapi.h)
511         Fix svcgssd Makefile so make TOP=../../ works correctly there.
512         Enable running a modern autoheader.
513         * utils/gssd/gss_oids.c: Use correct OID value for SPKM-3
514         * utils/gssd/gss_util.c: Fix build with older MIT releases that do not define GSS_C_NT_HOSTBASED_SERVICE
515         * utils/gssd/write_bytes.h, support/include/gssapi/gssapi.h:
516         Length of gss_buffer_desc is a size_t which is 64-bits on a
517         64-bit machine.  Kernel code expects 32-bit integer for length.
518         Coerce length value into a 32-bit value when reading from or
519         writing to the kernel.
520         Change gssapi.h to use datatype size values obtained from
521         configure rather than hard-coded values.
522         * utils/idmapd/idmapd.c: The EV_INIT check here was wrong, and was
523         causing idmapd to become unresponsive to server requests after
524         receiving a sighup. 
525         * utils/idmapd/idmapd.c: Idmapd should flush the server id<->name
526         caches when its started. 
527
528 2005-04-12  G. Allen Morris III <gam3@gam3.net>
529
530         * All Makefile: added TOP as needed for easier compile.
531
532         * utils/nfsstat/nfsstat.c: added NFS V4 support; added the -m
533           option; Added -2, -3, and -4 options; changed -a option to -v
534           option; added long options; changed default output to not
535           show V2 NFS statistics unless used.
536
537         * utils/nfsstat/nfsstat.man: Documented above changes; changed
538           authors email address; added BUGS section.
539
540 2005-04-07  Chip Salzenberg  <chip@pobox.com>
541
542         * debian/changelog: Version 1.0.7-2.
543
544 2005-04-06  Chip Salzenberg  <chip@pobox.com>
545
546         * config.guess, config.sub: Update.
547
548         * support/rpc/svc_auth_gss.c (_svcauth_gss): Avoid using a cast as
549         an lvalue, as it is non-portable.
550
551         * support/nfs/exports.c (parseopts): Accept "acl" option to mean
552         ~NFSEXP_NOACL, and "no_acl" to mean NFSEXP_NOACL.
553         (putexportent): Report NFSEXP_NOACL as "no_acl", and ~NFSEXP_NOACL
554         as "acl".
555         * utils/exportfs/exportfs.c (dump): Report NFSEXP_NOACL as
556         "no_acl".
557         * utils/exportfs/exports.man: Document "no_acl".
558
559 2005-03-14  NeilBrown <neilb@cse.unsw.edu.au>
560         Denis Vlasenko <vda@ilport.com.ua>
561         * support/export/client.c(client_init and client_gettype):
562         treat N.N.N.N as a special case of MCL_SUBNETWORK instead of 
563         MCL_FQDN
564
565 2005-03-06  G. Allen Morris III <gam3@gam3.net>
566         * support/nfs/cacheio.c(readline): Could not read lines greater
567         than 128 bytes. [1157791] 
568         * utils/exportfs/exports.man: Added a SEE ALSO section and
569         fixed 2 typos. [1018450]
570
571 2005-02-28  Trond Myklebust <trond.myklebust@fys.uio.no>
572         * utils/statd/rmtcall.c(statd_get_socket): If a port number is
573         explicitly given, make sure to try to bind to that.
574         
575 2005-01-11  Chip Salzenberg  <chip@pobox.com>
576
577         * debian/changelog: Version 1.0.7-1.
578         * debian/nfs-common.default (NEED_IDMAPD, NEED_GSSD):
579         Disable by default, on advice of upstream.
580         * debian/nfs-kernel-server.default (NEED_SVCGSSD):
581         Likewise.
582
583         * utils/svcgssd/Makefile (predep): Symbolically link duplicated
584         source files.
585         (distclean): Remove symlinks to duplicated files.
586
587 2004-12-17 NeilBrown <neilb@cse.unsw.edu.au>
588         Release 1.0.7
589
590         * config.mk, configure.in: update version number, run autoconf
591         * configure.in: require nfsidmap.h if gss is enabled.
592         
593 2004-12-10 NeilBrown <neilb@cse.unsw.edu.au>
594         Release 1.0.7-pre2
595         
596         * config.mk, configure.in: update version number, run autoconf
597         
598 2004-12-10 Neil Brown <neilb@cse.unsw.edu.au>
599         * README : note dependancy on kerberos, libevent, and nfsidmap
600         * configure.in : fail if --enable-nfsv4 and libevent or
601         libnfsidmap are missing.
602         * configuyre.in: improve message if krb5 support is missing
603         
604 2004-12-06 Paul Clements <paul.clements@steeleye.com>   
605         * support/include/ha-callout.h: get return status from waitpid
606         correctly. 
607         * support/include/ha-callout.h: don't ignore SIGCHLD while waiting
608         for a callout to complete.
609         * utils/statd/statd.c(sigusr): print current start when re-reading
610         notify list due to SIGUSR1
611         * utils/statd/svc_run.c(my_svc_run): call change_state when
612         re-notifying clients.
613         
614 2004-12-06 Marc Eshel <eshel@almaden.ibm.com>
615         * utils/statd/svc_run.c(my_svc_run): allow loop to exit when in
616         MODE_NOTIFY_ONLY
617         *utils/statd/rmtcall.c(statd_get_socket): if a hostname is given
618         to statd with -n, prefer it's IP address to the default for
619         listening on.
620         
621 2004-12-06 Bruce Allan <bwa@us.ibm.com>
622         * utils/mountd/auth.c(auth_reload)  Clear the "my_client" cache on
623         an auth_reload to avoid old data getting used.
624         
625 2004-12-03 NeilBrown <neilb@cse.unsw.edu.au>
626         Release 1.0.7-pre1 for testing
627         
628         * config.mk, configure.in: update version number, run autoconf
629         
630 2004-12-03 Trond Myklebust <trond.myklebust@fys.uio.no>
631
632         * utils/statd/statd.c(main): ignore SIGPIPE
633         
634 2004-11-22 "J. Bruce Fields" <bfields@fieldses.org>
635
636         * tools/rpcdebug/rpcdebug.c: support aliases "nfsdebug" and
637         "nfsddebug" and update flag names.
638         * configure.in, nodist/* redhat/* nfs-utils.spec*: remove redhat
639         specific files (as no-one actually uses them, especially not
640         redhat), and the nodist /etc files (as they drift out-of-date, and
641         the debian directory provides a suitable example.
642         * utils/svcgssd_proc.c(get_ids): fix memory leak
643         * utils/svcgssd/svcgssd_proc.c: Rely on count of the number of
644         groups instead of using a special guard value to identify the end
645         of the list. 
646         * utils/idmapd/idmapd.c: don't allow Default domain and anon-uid
647         or -gid to be specified on command line.
648         * utils/idmapd/idmapd.c: improve error messages
649         * utils/idmapd/idmapd.c: Reopen nfsd files on sighup.  Allows us
650         to start up client side only (even when nfsd module not loaded),
651         and then sighup later after insmodding nfsd module. 
652         * utils/idmapd/idmapd.c: Make sure we catch all errors on
653         daemonizing by waiting for child to report succesfull startup
654         using a pipe. 
655         * utils/idmapd/idmapd.c: Let libnfsidmapd parse the idmapd.conf
656         file for the default domain, instead of doing that ourselves.
657         * utils/gssd/gssd_proc.c: Make sure we get an error when a gssd
658         downcall fails. 
659         * utils/gssd/gssd_proc.c: We were forgetting to restore the euid
660         on certain failures, which meant gssd could get stuck in a state
661         where it didn't have permissions to read the files in rpc_pipefs
662         that it needed to. 
663         * utils/gssd/gssd_proc.c: Use libnfsidmapd to map gss principals
664         to uids. 
665         * debian/nfs-kernel-server.default: Document the NEED_SVCGSSD
666         variable in /etc/default/nfs-kernel-server. 
667
668         
669 2004-11-22 NeilBrown <neilb@cse.unsw.edu.au>
670
671         * utils/exportfs/nfsd.man: corrected typo in .BR macro usage -
672         reported by Eric Raymond
673         
674 2004-10-19 "J. Bruce Fields" <bfields@fieldses.org>
675
676         * support/gssapi/* support/rpc/* utils/gssd/* utils/svcgssd/* etc
677         initial support for GSSAPI authentication
678         
679 2004-09-15 Neil Brown <neilb@cse.unsw.edu.au>
680
681         * utils/statd/monitor.c(sm_unmon_1_svc): is RESTRICTED_STATD, then
682         check IP address and force my_name to 127.0.0.1 to match 
683         what happens in sm_mon_1_svc.  This avoid spurious "erroneous
684         SM_UNMON" messages.
685         * utils/statd.monitor.c(sm_unmon_all_1_svc): likewise
686         
687 2004-09-15 "J. Bruce Fields" <bfields@fieldses.org>     
688
689         * Assorted changes to support "gss/*" style authentication
690         * utils/idmapd: new idmapd daemon for nfsv4 username lookup
691         
692 2004-09-06 Trond Myklebust <trond.myklebust@fys.uio.no>
693         Neil Brown <neilb@cse.unsw.edu.au>
694
695         * utils/mountd/auth.c(auth_authenticate_internal): fix
696         uninitialsed variable problem (causes bad error messages).
697
698 2004-09-06 Paul Clements <paul.clements@steeleye.com>
699         Neil Brown <neilb@cse.unsw.edu.au>
700
701         * utils/mountd/mountd.c(main): support --ha-callout (-H) for
702         specifying a callout program
703         * utils/mountd/rmtab.c: Call ha_callout on mount/unmount
704         * utils/statd/monitor.c: Call ha_callout on add/del client
705         * utils/statd/rmtcall.c: as above
706         * utils/statd/statd.c: handle --ha-callout (-H)
707         * utils/statd/svc_run.c: call notify_hosts is we have received a
708         sighup
709         * support/include/ha-callout.h: define ha_callout function
710          
711         
712 2004-08-31 NeilBrown <neilb@cse.unsw.edu.au>
713         * utils/mountd/cache.c(cache_process_req): clear fd after
714         processing so as not to confused libc/sunrpc into thinking
715         it need to do something with that fd.
716         
717 2004-08-31 NeilBrown <neilb@cse.unsw.edu.au>
718
719         * debian/nfs-kernel-server.init(start,stop) mount the nfsd
720         filesystem, if available, before starting nfs services, and 
721         unmount it afterwards.
722         * etc/nodist/nfs-server: ditto
723         * etc/redhat/nfs.init: likewise
724         * etc/redhat/nfs: add "MOUNT_NFSD" flag to control above.
725         
726 2004-06-08 NeilBrown <neilb@cse.unsw.edu.au>
727
728         * utils/exportfs/exportfs.c: Don't rmtab_read if new_cache, it
729           isn't necessary.
730         * support/nfs/cacheio.c(cache_flush): Change order in which caches
731           are flushed so that dependancies don't keep things in the cache
732           too long.
733         
734 2004-03-18  Chip Salzenberg  <chip@pobox.com>
735
736         * debian/changelog: Version 1.0.6-2.
737
738 2004-02-24 NeilBrown <neilb@cse.unsw.edu.au>
739         from "J. Bruce Fields" <bfields@fieldses.org>
740
741         * utils/mountd/cache.c: call auth_reload to make sure auth data is
742         current before responding to kernel upcall.
743         
744 2004-02-24 NeilBrown <neilb@cse.unsw.edu.au>
745         Based on patch from  Greg Banks <gnb@melbourne.sgi.com>
746
747         * utils/exportfs/exports.man: Document fsid= option.
748         
749 2003-09-15 NeilBrown <neilb@cse.unsw.edu.au>
750
751         Release 1.0.6
752
753         * rules.mk: Add dep: rule when no OBJS, so "make dep" works in
754         support/include, and depend in "predep"
755         * support/export/Makefile, tools/rpcgen/Makefile,
756         utils/statd/Makefile: add "predep" rule so that "make dep" works.
757         * Makefile: allow a simple "make" to run ./configure and "make dep"
758         if needed.
759         * configure.in, nfs-utils.spec: Update version to 1.0.6
760         * run autoconf
761         
762 2003-09-12  Chip Salzenberg  <chip@pobox.com>
763
764         * debian/changelog: Version 1.0.6-1.
765
766 2003-09-12 NeilBrown <neilb@cse.unsw.edu.au>
767
768         * utils/mountd/mountd.c(main): Impose FD_SETSIZE as an upper limit
769         for RLIMIT_NOFILE
770         * utils/statd/statd.c(main): Ditto.
771
772            michael <michael@newdream.net> discovered that svc_setreqsize
773            in glibc can segfault if RLIMIT_NOFILE is bigger than
774            FD_SETSIZE, so a simple solution is to impose a hard limit.
775
776 2003-09-09  Chip Salzenberg  <chip@pobox.com>
777
778         * debian/changelog: Version 1.0.5-3.
779         * support/export/hostname.c (get_reliable_hostbyaddr): Fix crash
780         on invalid reverse DNS.
781         * utils/showmount/showmount.c (main): Fix inet_ntoa() parameter.
782         * tools/rpcgen/rpc_cout.c (print_header): Remove unused vars.
783         * tools/rpcgen/rpc_parse.c (def_union): Likewise.
784
785 2003-08-22  Chip Salzenberg  <chip@pobox.com>
786
787         * utils/statd/{log.h,log.c}: Rename log() to note() and L_* to
788         N_*, to avoid conflict with ISO C built-in log() function.
789         * utils/statd/*.c: Use note().
790
791 2003-08-20  Chip Salzenberg  <chip@pobox.com>
792
793         * debian/changelog: Version 1.0.5-2.
794
795 2003-08-11 NeilBrown <neilb@cse.unsw.edu.au>
796
797         * utils/mountd/cache.c(cache_get_filehandle): close the filehandle
798         before returning.
799         
800 2003-08-04 NeilBrown <neilb@cse.unsw.edu.au>
801
802         * support/include/nfs/export.h, support/nfs/exports.c,
803         utils/exportfs/exports.c, utils/mountd/mountd.c:  change
804         NFSEXP_CROSSMNT to NFSEXP_CROSSMOUNT to avoid confusion with older
805         meaning. Also remove meaningless
806         NFSEXP_{UIDMAP,KERBEROS,SUNSECURE}
807         
808 2003-08-04 NeilBrown <neilb@cse.unsw.edu.au>
809
810         * support/export/xtab.c, support/include/nfslib.h,
811         support/nfs/cacheio.c, support/nfs/nfssvc.c,
812         utils/exportfs/exportfs.c, utils/exportfs/exportfs.man,
813         utils/exportfs/nfsd.man, utils/mountd/cache.c: support
814         /proc/fs/nfsd/* as a perferred alternate to /proc/fs/nfs/*
815         (nfs-utils-1.0.5-post2)
816         
817 2003-08-04 NeilBrown <neilb@cse.unsw.edu.au>
818
819         * support/nfs/nfsexport.c: open channel file O_WRONLY when
820         only writing.
821         * utils/mountd/cache.c: maintain mountlist when new_cache is
822         active. Also use O_WRONLY for channel files.
823         * utils/mountd/mountd.h: mountlist_{del,add} now take a host name
824         rather than an nfs_export.
825         * utils/mountd/rmtab.c: ditto.
826         (nfs-utils-1.5.0-post1)
827         
828 2003-07-24  Chip Salzenberg  <chip@pobox.com>
829
830         * support/nfs/xlog.c (xlog): Revise buffer-overflow fix to
831         use Debian security team's cleaner approach.
832         * debian/changelog: Version 1.0.5-1.
833         * debian/nfs-kernel-server.init: Cosmetic changes.
834
835 2003-07-18 NeilBrown <neilb@cse.unsw.edu.au>
836
837         Release 1.0.5:
838          1.0.4 was a bit of a brown-paper-bag-release because of the extra
839          'free' in auth.c.  So I'm releasing this just a few days later.
840
841         * support/nfs/cacheio.c(cache_flush): Correct test for 'open
842         failed'
843         * utils/exportfs/exportfs.c(main): If "-f" given as lone option,
844         check if new_cache is enabled, error if not, flush and exit if it
845         is. 
846         * utils/exportfs/exportfs.man: Explain -f option and explain the
847         two different modes that exportfs can work in.
848         * utils/mountd/mountd.c: Do not change RLIMIT_NOFILE if the -o
849         option wasn't given.
850         * utils/mountd/mountd.man: Record the change if default behaviour
851         for RLIMIT_NOFILE.
852         * configure.in, nfs-utils.spec: update version to 1.0.5 and
853         run autoconf
854         
855 2003-07-15 NeilBrown <neilb@cse.unsw.edu.au>
856
857         * utils/mountd/mountd.c(main): getopt string fix for 'o'
858         * utils/mountd/auth.c(auth_authenticate): remove extra 'free'
859         * utils/exportfs/exportfs.c(main): make 'exportfs -f' just flush
860         the caches.
861         * support/include/nfs/export.h: Reserve a bit for possible ACL
862         related use.
863         
864 2003-07-03 NeilBrown <neilb@cse.unsw.edu.au>
865
866         * utils/exportfs/nfsd.man: new man page for nfsd filesystem. Also
867         assorted changed to cope with section 7 of the manual.
868         * configure.in, nfs-utils.spec: Update version to 1.0.4
869         * run autoconf
870
871         This is a 'pre-release' for 1.1.0  Hopefully 1.1.0 will be the
872         baseline for 2.6 and 2.8.  I.e. it should continue to work right
873         through the 2.8 (or 3.0) kernel series.  Previous releases wont.
874
875 2003-07-04 NeilBrown <neilb@cse.unsw.edu.au>    
876         Steve Dickson <SteveD@redhat.com>
877
878         statd cleanup:
879         * utils/statd/statd.c: create a pidfile with pid of statd, and
880         truncate it when statd exists.
881         * utils/statd/statd.c: drop privs by setuid to owner of SM_DIR,
882         and warn if this is root.
883         * utils/statd/statd.c: when statd forks, connect child to parent
884         with a pipe, and send a byte down the pipe once the child is
885         working properly.
886         * Makefile: create and chown sm, sm.bak, state when "make install"
887         * configure.in: add --with-statduser= option which defaults to
888         "rpcuser" or "nobody"
889         * config.mk.in: pass "statduser" through to Makefile
890         
891 2003-07-03 NeilBrown <neilb@cse.unsw.edu.au>
892
893         * support/include/nfs/nfs.h: Make sure correct __kernel_dev_t is
894         used as the size was changed somewhere in 2.5.60-2.5.70.  Without
895         this nfs-utils compiles against 2.6 headers will not work on a
896         2.4 kernel.     
897         
898 2003-07-03 NeilBrown <neilb@cse.unsw.edu.au>
899
900         * support/nfs/nfssvc.c(nfssvc): If /proc/fs/nfs/threads exists,
901         set number of threads by writing to there.  This means it will
902         still work when the syscall interface goes away in 2.7.
903
904 2003-07-03 NeilBrown <neilb@cse.unsw.edu.au>
905         fumihiko kakuma <kakmy@mvh.biglobe.ne.jp>
906
907         * utils/exportfs/exportfs.c(unexportfs): improve host comparison
908         so as to only export the wildcard exports that were asked for.
909         * support/export/export.c(export_allowed): changed to return the
910         nfs_export rather than a "struct exportent", as m_changed is
911         needed by called
912         * support/export/rmtab.c(rmtab_read): modified to deal with
913         interface change for export_allowed(), and enhanced to preserve
914         m_changed flag when a wild-card export causes the creation of
915         a non-wildcard export.
916         
917 2003-07-02 NeilBrown <neilb@cse.unsw.edu.au>
918         Steve Dickson <SteveD@redhat.com>
919
920         * utils/mountd/mountd.man: Add valid kinds of debugging.
921         * utils/mountd/mountd.c(main): ignore SIGPIPE
922         * utils/nfsstat/nfsstat.c: fine-tune printing of warning so
923         we don't get warnings about unavailable stats that weren't asked
924         for.
925         
926 2003-06-24 NeilBrown <neilb@cse.unsw.edu.au>
927
928         * support/nfs/nfsexport.c(exp_unexp): When unexporting filesystems
929         via /rpc/net/rpc/nfsd*/channel, set the expiry date to 1, not
930         'forever', so things disappear out of the cache rather than just
931         be ignored. 
932         
933 2003-06-16  "J. Bruce Fields" <bfields@fieldses.org>
934
935         * utils/mountd/cache.c(nfsd_fh): don't export the export_ent
936         if it wasn't found.
937
938 2003-06-16  NeilBrown   <neilb@cse.unsw.edu.au>
939
940         * debian/nfs-kernel-server.init,etc/nodist/nfs-server,
941         etc/redhat/nfs.init: when checking if V3 is supported, make sure
942         nfs server 'knows' about 127.0.0.1 first.
943         
944 2003-06-10  Chip Salzenberg  <chip@pobox.com>
945
946         * support/nfs/xlog.c (xlog): Fix off-by-one buffer overflow bug.
947         * debian/changelog: Version 1.0.3-2.
948
949 2003-05-30 Michael Griffith <grif@michaelgriffith.com>
950         NeilBrown <neilb@cse.unsw.edu.au>
951
952         utils/nfsstat/nfsstat.c(print_callstats): use unsigned
953         long long to avoid overflow when printing stats.
954         
955 2003-05-30  NeilBrown <neilb@cse.unsw.edu.au>
956
957         * support/export/export.c, support/include/nfslib.h,
958         support/nfs/export.c, utils/exportfs/exportfs.c,
959         utils/mountd/mountd.c: new export option "mountpoint"
960         If no path is given, then the export point must be a
961         mount point, or it won't be exported.  If a path is 
962         given (e.g. mountpoint=/path) then that path must be
963         a mountpoint or the exportpoint won't be exported.
964         * utils/exportfs/exportfs.man: document mountpoint option.
965         * support/misc/mountpoint.c: New file with is_mountpoint()
966         to determine if something is a mountpoint.
967         
968 2003-05-23  NeilBrown <neilb@cse.unsw.edu.au>
969
970         * utils/mountd/cache.c(cache_get_filehandle): take a separate path
971         argument as we might not be getting the filehandle for the
972         mountpoint.
973         * utils/mountd/mountd.c(get_rootfh): pass real path when calling
974         cache_get_filehandle.
975         * utils/mountd/mountd.c(get_rootfh): check export point and
976         requested directory are on the same filesystem, and complain if
977         not.
978         
979 2003-05-22  NeilBrown <neilb@cse.unsw.edu.au>
980
981         * utils/mountd/auth.c(auth_authenticate_internal): make sure
982         portnumber is still checked when using new cache lookup.
983         
984 2003-05-21  NeilBrown <neilb@cse.unsw.edu.au>
985
986         * utils/exportfs/exportfs.c: Use check_new_cache and cache_flush
987          Don't actually talk to kernel when new cache is in effect, except
988          to flush
989         * utils/exportfs/exportfs.c: add -f option to fully flush cache.
990         * support/export/xtab.c: Only rename new xtab into place if it has
991          changed, thus preserving modify date for exportfs to use when
992          flushing.
993         * support/nfs/cacheio.c: Add cache_flush
994         * support/export/xtab.c: Only rename new xtab into place if it has
995          changed, thus preserving modify date for exportfs to use when
996          flushing.
997         
998 2003-05-21  NeilBrown <neilb@cse.unsw.edu.au>
999
1000         * support/export/client.c: Add client_compose, client_member to
1001         handle new composite client names
1002         * support/include/exportfs.h: Declare above functions.
1003         * utils/mountd/auth.c: use client_compose to determine calling
1004         client if new cache is being used.
1005         * utils/mountd/auth.c: call cache_export to export a filesystem if
1006         new_cache, check if new cache is used, and call my_svc_run instead
1007         of svc_run
1008         * utils/mountd/svc_run.c: new file defining my_svc_run
1009         * utils/mountd/cache.c: new file for handling cache upcalls.
1010         * support/nfs/cacheio.c(check_new_cache): new function to check if
1011         new cache should be used.
1012         
1013         
1014 2003-05-21  NeilBrown <neilb@cse.unsw.edu.au>
1015
1016         * support/include/nfs/export.h: New CROSSMNT distinct from NOHIDE
1017         * support/nfs/exports.c: Make CROSSMNT distinct from NOHIDE
1018         * utils/exportfs/exportfs.c(dump): ditto
1019         
1020 2003-05-21  NeilBrown <neilb@cse.unsw.edu.au>
1021
1022         * support/export/hostname.c(get_reliable_hostbyaddr): new function
1023         to get host name from address with full checking of authenticity.
1024         * support/include/misc.h: declare above function
1025         * utils/mountd/auth.c(auth_authenticate_internal): remove all
1026         logic for authenticating address.
1027         * utils/mountd/auth.c(auth_authenticate): call new
1028         get_reliable_hostbyaddr to to hostname lookup before calling _internal.
1029         
1030         
1031 2003-03-30  NeilBrown <neilb@cse.unsw.edu.au>
1032
1033         * tools/rpcgen/rpc_main.c(find_cpp): removed
1034         * tools/rpcgen/rpc_main.c(open_input): use execvp to find "cpp", 
1035         then try hard-coded paths.
1036         
1037 2003-03-26  Chip Salzenberg  <chip@pobox.com>
1038
1039         * debian/changelog: Version 1.0.3-1.
1040
1041 2003-03-26 NeilBrown <neilb@cse.unsw.edu.au>
1042
1043         * utils/mountd/rmtab.c (slink_safe_rename): real_newpath should be
1044         "const char*", not "char*".
1045
1046 2003-03-26 NeilBrown <neilb@cse.unsw.edu.au>
1047
1048         * configure.in (VERSION): Set to "1.0.3".
1049         * nfs-utils.spec: Likewise.
1050         * configure: Regenerated.
1051
1052 2003-03-26 NeilBrown <neilb@cse.unsw.edu.au>
1053
1054         * support/nfs/cacheio.c: New File - support for read/writing
1055         to export cache in /proc/rpc/*/channel
1056         * support/nfs/Makefile: compile cacheio.c
1057         * support/include/nfslib.h: declare cacheio.c functions
1058         * support/nfs/nfsexport.c: export and unexport through
1059         /proc/rpc/*/channel if possible, as old syscall interface
1060         may not survive into 2.6 on all architectures.
1061         
1062 2003-02-19 NeilBrown <neilb@cse.unsw.edu.au>    
1063         Ben Leslie <benno@sesgroup.net>
1064
1065         * support/nfs/rpcmisc.c(rpc_init):  change test for ignoring
1066         "defport" from (__rpcfdtype == 0) to (__rpcpmstart==0).  The
1067         former would incorectly ignore defport if the application 
1068         explicitly set __rpcfdtype.  The later is sufficient to avoid the
1069         special handling in the case where stdin is an internet socket.
1070
1071         * utils/mountd/mountd.c(main): Add 'n' to option list in
1072         getopt_long as this is a short form of --no-tcp which want being
1073         checked.
1074         
1075 2003-02-12  Chip Salzenberg  <chip@pobox.com>
1076
1077         * debian/changelog: Version 1.0.2-2.
1078
1079 2002-11-27  Chip Salzenberg  <chip@pobox.com>
1080
1081         * utils/mountd/rmtab.c (slink_safe_rename): Fix off-by-one buffer
1082         overflow bug.  Reformat per rest of source file.
1083
1084 2002-11-19  NeilBrown <neilb@cse.unsw.edu.au>
1085
1086         * utils/exportfs/exports.man: Correct notes about whether the wild
1087         card characters match a period.  They do.
1088         
1089 2002-10-15  Juan Gomez <juang@us.ibm.com>
1090
1091         * utils/mountd/rmtab.c (slink_safe_rename): New. Support
1092         symlink.
1093         (mountlist_add): Call slink_safe_rename instead of rename.
1094
1095 2002-10-11  H.J. Lu <hjl@lucon.org>
1096
1097         * support/include/exportfs.h (export_errno): New.
1098
1099         * support/nfs/exports.c: Include <errno.h>.
1100         (export_errno): New.
1101         (getexportent): Set export_errno to EINVAL for bad option.
1102         (parseopts): Likewise.
1103         Report the location of the default sync/async option.
1104
1105         * utils/exportfs/exportfs.c (main): Initialize export_errno to
1106         0. Return export_errno.
1107
1108 2002-10-11  Juan Gomez  <gomez@cs.sjsu.edu>
1109         NeilBrown <neilb@cse.unsw.edu.au>
1110
1111         utils/statd/statd.c(killer): don't pmap_unset if in notify_only mode
1112         utils/statd/statd.c(main): don't pmap_unset if in notify_only mode
1113         
1114 2002-09-16  Chip Salzenberg  <chip@pobox.com>
1115
1116         * utils/rquotad/rquota_svc.c (main): Use int for value of getopt.
1117
1118 2002-09-15  Chip Salzenberg  <chip@pobox.com>
1119
1120         * support/nfs/rpcmisc.c (rpc_init): Allow stdin to be a non-INET
1121         socket, as occurs when run from sshd.
1122         * debian/changelog: Version 1.0.2-1.
1123
1124 2002-09-12  H.J. Lu <hjl@lucon.org>
1125
1126         * support/nfs/svc_socket.c: Remove HAVE_SVCTCP_SOCKET and
1127         HAVE_SVCUDP_SOCKET.
1128
1129 2002-09-12  H.J. Lu <hjl@lucon.org>
1130
1131         * configure.in: Remove checking svctcp_socket and svcudp_socket.
1132         * configure: Regenerated.
1133
1134         * support/include/config.h.in (HAVE_SVCTCP_SOCKET): Removed.
1135         (HAVE_SVCUDP_SOCKET): Removed.
1136
1137         * support/include/nfslib.h: Undo the last change.
1138
1139 2002-09-12  H.J. Lu <hjl@lucon.org>
1140
1141         * support/include/nfslib.h (svctcp_socket): Protect it with
1142         HAVE_SVCTCP_SOCKET.
1143         (svcudp_socket): Protect it with HAVE_SVCUDP_SOCKET.
1144
1145 2002-09-12  H.J. Lu <hjl@lucon.org>
1146
1147         * configure.in (VERSION): Set to "1.0.2".
1148         * configure: Regenerated.
1149         * nfs-utils.spec: Likewise.
1150
1151 2002-09-12  H.J. Lu <hjl@lucon.org>
1152
1153         * configure.in: Check svctcp_socket and svcudp_socket.
1154         * configure: Regenerated.
1155
1156         * support/include/config.h.in (HAVE_SVCTCP_SOCKET): New.
1157         (HAVE_SVCUDP_SOCKET): New.
1158
1159         * support/include/nfslib.h (svctcp_socket): New.
1160         (svcudp_socket): New.
1161
1162         * support/nfs/Makefile (OBJS): Add svc_socket.o.
1163
1164         * support/nfs/svc_socket.c: New.
1165
1166         * support/nfs/rpcmisc.c (rpc_init): Call svctcp_socket and
1167         svcudp_socket if port is unspecified.
1168
1169         * utils/nfsd/nfsd.c (main): Call getservbyname for port.
1170
1171         * utils/rquotad/rquota_svc.c: Include <nfslib.h>.
1172         (killer): New. Signal handler to unregister.
1173         (main): Use killer. Call svcudp_socket to get the default
1174         socket.
1175
1176 2002-09-02 Juan Gomez <juang@us.ibm.com>
1177         NeilBrown <neilb@cse.unsw.edu.au>
1178
1179         Add -N option to statd to run in notify-only mode.
1180
1181         * utils/statd/statd.h: uncomment MODE_NOTIFY_ONLY
1182         * utils/statd/statd.man: document -N
1183         * utils/statd/statd.c: enabled -N, largely exists but needed to be
1184         uncommented and completed
1185         
1186 2002-09-02 Juan Gomez <juang@us.ibm.com>
1187         NeilBrown <neilb@cse.unsw.edu.au>
1188
1189         statd to have " -P directory" arg to use that directory instead
1190         of /var/lib/nfs.  This is useful for fail-over clusters.
1191         
1192         * utils/statd/statd.h: define SM_DIR etc as var, not const.
1193         * utils/statd/statd.c: define "-P" option to set SM_*
1194         appropriately.
1195         * utils/statd/monitor.c: sprintf to cope with SM_DIR not being
1196         a constant any more.
1197         * utils/statd/notify.c: ditto.
1198         * utils/statd/statd.man: document -P option.
1199         
1200 2002-08-26  Chip Salzenberg  <chip@pobox.com>
1201
1202         * utils/nfsd/nfsd.man: Fix typo.
1203         * debian/changelog: Version 1.0.1-1.
1204
1205 2002-05-29 NeilBrown <neilb@cse.unsw.edu.au>
1206
1207         * let parseopts know if /etc/exports was being read or not, 
1208         and have it only print "no sync or async" warning in that case.
1209         
1210 2002-05-06 Tom McNeal <trmcneal@attbi.com>
1211         NeilBrown <neilb@cse.unsw.edu.au>
1212
1213         * utils/nfsstat/nfsstat.c: Handle differing format for
1214            /proc/net/rpc/nfsd between pre and post 2.4.0
1215         
1216 2002-04-09  NeilBrown <neilb@cse.unsw.edu.au>
1217         James Pearson <james-p@moving-picture.com>
1218
1219         * support/nfs/rmtab.c(fendrmtabent): sync changes to 
1220         storage before returning, as this is critical state
1221
1222 2002-04-08  Sean O'Connell <sean@ee.duke.edu>
1223             H.J. Lu <hjl@lucon.org>
1224
1225         * etc/redhat/nfs: New.
1226
1227 2002-04-08  H.J. Lu <hjl@lucon.org>
1228
1229         * etc/redhat/nfs.init: Updated.
1230
1231         * nfs-utils.spec.in: Updated.
1232         * nfs-utils.spec: Regenerated.
1233
1234         * utils/mountd/mountd.c (longopts): Fix a typo.
1235
1236         * utils/mountd/mountd.man: Updated.
1237
1238 2002-04-07  H.J. Lu <hjl@lucon.org>
1239
1240         * etc/redhat/nfslock.init (restart): Just do stop and start.
1241
1242         * etc/redhat/nfs.init: Fix a typo.
1243
1244 2002-04-07  H.J. Lu <hjl@lucon.org>
1245
1246         * configure.in (VERSION): Set to "1.0.1".
1247         * configure: Regenerated.
1248         * nfs-utils.spec: Likewise.
1249
1250         * README: Updated for 1.0.1.
1251
1252 2002-04-07  Sean O'Connell <sean@ee.duke.edu>
1253             H.J. Lu <hjl@lucon.org>
1254
1255         * etc/redhat/nfs.init: Read /etc/sysconfig/nfsd for NFS tuning.
1256
1257 2002-02-28   Steven Whitehouse <steve@gw.chygwyn.com>
1258               NeilBrown <neilb@cse.unsw.edu.au>
1259
1260         Add support for fsid=nn export option so that device
1261         numbers don't go in filehandles.
1262         * support/export/nfsctl.c(expsetup): if exporting and NFSEXP_FSID
1263         is set, pass the fsid in-place of the device number
1264         * support/nfs/exports.c: parse and print fsid= option.
1265         Also check if efname has been set, and use "command line"
1266         instead in error messages.
1267         Also, use strtol instead of atoi for anon[ug]id= so that
1268         bad numbers cause errors.
1269         
1270 2002-01-17   Adrian Drzewiecki <drze@MissionCriticalLinux.com>
1271              NeilBrown <neilb@cse.unsw.edu.au>
1272
1273         * support/nfs/exports.c: remove NFSEXP_ASYNC as a default
1274         flag so that "sync" becomes the default.
1275         Check that either "sync" or "async" is given as an option
1276         and warn if neither are present
1277         * utils/exportfs/exports.man: change documentation for "sync"
1278         to be documentation for "async".
1279         * utils/exportfs/exportfs.man: note that "sync" is the default
1280         rather than "async"
1281         
1282         
1283 2002-01-02  Chip Salzenberg  <chip@pobox.com>
1284
1285         * support/export/nfsctl.c (expsetup): Don't export entries that
1286         specify id mappings not supported by the kernel.  No extant kernel
1287         supports any significant mapping, only 'identity' (i.e. none).
1288         When other mappings are supported, this code will need changing.
1289         * debian/changelog: Version 1.0-2.
1290
1291 2001-12-26  Chip Salzenberg  <chip@pobox.com>
1292
1293         * nfs-utils.spec (Version): Set to "1.0".
1294         * configure.in (VERSION): Likewise.
1295         * configure: Regenerated.
1296         * README: Rewritten.
1297         * debian/changelog: Version 1.0-1.
1298
1299         * utils/exportfs/exports.man: Emphasize the need for options to
1300         immediately follow client names.  Explain that wildcards don't
1301         usually work on addresses, but may work when reverse DNS fails.
1302         Comment out a leftover TP that was TPing our indentation.
1303         * utils/mountd/mountd.man, utils/rquotad/rquotad.man,
1304         utils/statd/statd.man: Remove refs to non-existent "hosts_allow(5)".
1305         * debian/changelog: Version 0.3.3-6.
1306
1307 2001-12-20  NeilBrown <neilb@cse.unsw.edu.au>
1308
1309         * support/export/client.c(client_lookup): If a host has multiple
1310         IP addresses, then we must always use the result of a
1311         gethostbyname, not that of gethostbyaddr for exporting
1312         
1313 2001-12-20  NeilBrown <neilb@cse.unsw.edu.au>
1314
1315         * support/export/client.c (client_lookup): use strcasecmp when
1316         comparing host names
1317         * support/nfs/export.c (getexportent): add fromkernel arg and use
1318         different defaults as kernels prior to 2.4.11 assume different
1319         defaults in /proc/fs/nfs/exports
1320         * support/include/nfslib.h, support/export/export.c,
1321         support/export/xtab.c:  support extra "fromkernel" arg for
1322         getexportent. 
1323         
1324 2001-12-13  Chip Salzenberg  <chip@pobox.com>
1325
1326         * debian/changelog: Version 0.3.3-5.
1327
1328 2001-11-26  TAKAI Kousuke <takai@vlsi.kuee.kyoto-u.ac.jp>
1329
1330         * support/nfs/xio.c (xskip): Call `xungetc' instead of
1331         `ungetc' to keep x_line more properly.
1332
1333 2001-11-26  Chip Salzenberg  <chip@pobox.com>
1334
1335         * utils/showmount/showmount.c (main): Don't assume that strings
1336         starting with digits are IP addresses.
1337         * utils/nfsd/nfsd.c (main): Close all fds and reopen 0,1,2 on
1338         /dev/null before nfssvc().  Use syslog to report nfssvc errors.
1339         * support/misc/tcpwrapper.c, utils/mountd/mountd.man,
1340         utils/rquotad/rquotad.man, utils/statd/statd.man: Fix comments and
1341         man pages: We check host names *and* addresses with tcpwrappers.
1342         * debian/changelog: Version 0.3.3-4.
1343
1344 2001-11-21  Chip Salzenberg  <chip@pobox.com>
1345
1346         * support/nfs/clients.c (cfname): Added: current clients file name.
1347         (setnfsclntent): Set it.
1348         ({get,end}nfsclntent, syntaxerr): Use it.
1349         * support/nfs/exports.c (efname): Added: current exports file name.
1350         (setnfsexportent): Set it.
1351         (endnfsexportent, parseopts, getexport, syntaxerr): Use it.
1352         (parseopts): Accept old-style "crossmnt" option, for old xtabs.
1353         * debian/changelog: Version 0.3.3-3.
1354
1355 2001-10-11  Chip Salzenberg  <chip@pobox.com>
1356
1357         * utils/mountd/mountd.c (main): Close fds > 2 _before_ RPC init.
1358         * debian/changelog: Version 0.3.3-2.
1359
1360 2001-10-08  Chip Salzenberg  <chip@pobox.com>
1361
1362         * utils/mountd/mountd.c (main): When daemonizing, close all fds > 2.
1363         * utils/Makefile.in: Remove old Makefile in target 'distclean'.
1364         * utils/mountd/mountd.man: Update paths to /var/lib.
1365         * debian/*: Version 0.3.3-1, with Debian-specific fixes.
1366
1367 2001-10-06  Preston Brown <pbrown@redhat.com>
1368
1369         * utils/nfsstat/nfsstat.man: Updated.
1370
1371 2001-09-24  H.J. Lu <hjl@lucon.org>
1372
1373         * configure.in (VERSION): Set to "0.3.3".
1374         * configure: Regenerated.
1375         * nfs-utils.spec: Likewise.
1376
1377         * README: Updated for 0.3.3.
1378
1379 2001-09-20 NeilBrown <neilb@cse.unsw.edu.au>
1380
1381         Arrange that "exportfs -au" never does DNS lookup:
1382         
1383         * support/export/client.c (client_lookup) : add "canonical"
1384         flag which says that the hostname is known to be canonical, so
1385         don't do a lookup
1386
1387         * support/export/export.c (export_create) : add "canonical"
1388         flag to be passed down to client_lookup
1389         * support/export/export.c (export_lookup) : Likewise
1390
1391         * support/export/xtab.c (xtab_read) : pass appropriate
1392         "canonical" flag to export_lookup and export_create:
1393         set if reading list of filesystems currently exports
1394         (is_export != 1). 
1395
1396         * support/export/export.c (export_read) : pass 0 as 
1397         "canonical" flag to export_lookup and export_create
1398         * support/export/rmtab.s (rmtab_read) : Likewise
1399
1400         * support/include/exportfs.h : redeclare various routines
1401         to have "canonical" flag
1402
1403         * utils/exportfs/exportfs.c (main) : redo logic for 
1404         "-au" to read in what is currently exported, but never even 
1405         look at what "should" be exported.
1406
1407         * utils/exportfs/exportfs.c (unexportall) : remove this
1408         routine. Functionality is completely included in
1409         exports_update
1410
1411         * utils/exportfs/exportfs.c (exportfs) : set "canonical"
1412         flag to zero in calls to export_lookup and export_create.
1413
1414         
1415 2001-09-20 NeilBrown <neilb@cse.unsw.edu.au>
1416             Anne Milicia <milicia@missioncriticallinux.com>
1417
1418         * support/export/client.c (client_lookup) call gethostbyadd
1419         to make sure that we have a canonical hostname, even for
1420         dotted-quads
1421         * utils/exportfs/exportfs.c (exportfs) Likewise
1422         
1423 2001-09-12 NeilBrown <neilb@cse.unsw.edu.au>
1424
1425         * support/nfs/exports.c (putexportent): \octal quote any spaces
1426         etc in a path name
1427         * support/nfs/xio.c (xgettok): recognise double-quote and
1428         \octal quoting in path names
1429         * utils/exportfs/exports.man: document quoting conventions
1430         for path names
1431         
1432 2001-09-12 NeilBrown <neilb@cse.unsw.edu.au>
1433
1434         * utils/mountd/auth.c (auth_authenticate_internal): Reverse
1435           change from 2000-08-02:  It causes problems if someone exports
1436           to both a hostname and IP addresses.  nfs-utils must be
1437           consistant about the canonical name that it chooses.
1438
1439 2001-08-17  Ragnar Kjørstad <nfs@ragnark.vestdata.no>
1440             H.J. Lu <hjl@lucon.org>
1441
1442         * etc/redhat/nfslock.init (STATDARG): New. Pass it to rpc.statd.
1443
1444         * utils/statd/statd.c (longopts): Add "name".
1445         (usage): Add "-n/--name".
1446         (main): Set MY_NAME with "-n/--name".
1447
1448         * utils/statd/state.c (change_state): Set MY_NAME only if it
1449         is NULL.
1450         
1451         * utils/statd/statd.man: Updated for "-n/--name".
1452
1453 2001-07-26  H.J. Lu <hjl@lucon.org>
1454
1455         * nfs-utils.spec (Release): Set to 8.
1456
1457 2001-07-25  H.J. Lu <hjl@lucon.org>
1458
1459         * etc/redhat/nfs.init: Check if rpc.rquotad exists before doing
1460         anything about it.
1461
1462 2001-06-27  H.J. Lu <hjl@lucon.org>
1463
1464         * etc/redhat/nfs.init: Run rpc.rquotad only if it exists.
1465
1466 2001-06-27  H.J. Lu <hjl@lucon.org>
1467
1468         * utils/rquotad/rquota_server.c: Don't call statfs () for
1469         the block size. Use BLOCK_SIZE instead.
1470
1471 2001-06-27  H.J. Lu <hjl@lucon.org>
1472
1473         * config.mk.in (CC_FOR_BUILD): Renamed from BUILD_CC.
1474         (CFLAGS_FOR_BUILD): New. Don't use @CFLAGS@.
1475
1476         * configure.in (enable_nfsv3): Set to yes by default.
1477         (--enable-rquotad): Added
1478         (AC_PROG_CXX): Removed.
1479         (AC_OUTPUT): Add utils/Makefile.
1480         (CC_FOR_BUILD): Renamed from BUILD_CC.
1481         * configure: Regenerated.
1482
1483         * utils/Makefile: Removed.
1484
1485         * utils/Makefile.in: New.
1486
1487         * nfs-utils.spec.in (rquotad): New. Set to 0 to disable
1488         rquotad.
1489         (CC_FOR_BUILD): Renamed from BUILD_CC.
1490         * nfs-utils.spec: Regenerated.
1491
1492 2001-06-15  Chip Salzenberg  <chip@debian.org>
1493
1494         * debian/changelog: Version 0.3.2-2.
1495         * debian/*.init: Minor fixes.
1496
1497 2001-06-07  Lon H. Hohberger <hohberger@missioncriticallinux.com>
1498
1499         * etc/nodist/nfs-server: Fixed a bug where the script would
1500         disable mounts from NFSv3 clients if NFSv3 is present.
1501
1502 2001-06-05  H.J. Lu <hjl@lucon.org>
1503
1504         * utils/mountd/mountd.c (longopts): Add "descriptors/o".
1505         (main): Support --descriptors/-o to set the limit of the number
1506         of open file descriptors.
1507         (usage): Updated.
1508
1509         * utils/mountd/mountd.man: Updated for --descriptors/-o.
1510
1511 2001-06-04  H.J. Lu <hjl@lucon.org>
1512
1513         * nfs-utils.spec (Release): Set to 6.
1514
1515 2001-05-28  H.J. Lu <hjl@lucon.org>
1516
1517         * utils/lockd/lockd.c (main): chdir to NFS_STATEDIR.
1518         * utils/mountd/mountd.c (main): Likewise.
1519         * utils/nfsd/nfsd.c (main): Likewise.
1520         * utils/rquotad/rquota_svc.c (main): Likewise.
1521
1522 2001-05-06  Anne Milicia <milicia@missioncriticallinux.com>
1523
1524         * support/export/client.c (client_check): Check IP address
1525         againet netgroup.
1526
1527 2001-05-06  Neil Brown <neilb@cse.unsw.edu.au>
1528
1529         * support/export/client.c (client_gettype): Treat `*' as
1530         MCL_ANONYMOUS.
1531
1532 2001-04-22  H.J. Lu <hjl@lucon.org>
1533
1534         * nfs-utils.spec.in: Fix a typo.
1535         * nfs-utils.spec: Regenerated.
1536
1537 2001-04-21  H.J. Lu <hjl@lucon.org>
1538
1539         * nfs-utils.spec.in: Fix cross build.
1540         * nfs-utils.spec: Regenerated.
1541         (Release): Set to 5.
1542
1543 2001-04-18  H.J. Lu <hjl@lucon.org>
1544
1545         * nfs-utils.spec.in: Support cross build.
1546         * nfs-utils.spec: Regenerated.
1547         (Release): Set to 4.
1548
1549         * config.sub: New.
1550         * config.guess: New.
1551
1552         * config.mk.in (BUILD_CC): New.
1553         (CC): Set to $(BUILD_CC) if BUILD is defined.
1554         (AR): Set to @AR@.
1555         (LD): Set to @LD@.
1556         (RANLIB): Set to @RANLIB@.
1557
1558         * configure.in: Check BUILD_CC, RANLIB, AR and LD.
1559         * configure: Regenerated.
1560
1561         * tools/rpcgen/Makefile (BUILD): Set to true.
1562
1563 2001-04-01  Chip Salzenberg  <chip@valinux.com>
1564
1565         * tools/rpcgen/rpc_svcout.c (write_timeout_func): Remove
1566         redundant, and sometimes broken, declaration of svc_fdset;
1567         it may be a macro.
1568         * support/nfs/rpcmisc.c (closedown): Likewise.
1569         
1570 2001-03-21  H.J. Lu <hjl@lucon.org>
1571
1572         * nfs-utils.spec: Regenerated.
1573         (Release): Set to 3.
1574
1575 2001-03-21  Ion Badulescu  <ionut@cs.columbia.edu>
1576
1577         * utils/statd/statd.c (main): make sure file descriptors 0-2
1578         are open to /dev/null.
1579
1580 2001-03-21  H.J. Lu <hjl@lucon.org>
1581
1582         * support/nfs/rpcmisc.c: Restore the change made on 2001-03-10.
1583         * support/nfs/rpcmisc.c: Likewise.
1584         * utils/rquotad/rquota_svc.c: Likewise.
1585         * utils/rquotad/rquotad.man: Likewise.
1586         * utils/statd/Makefile: Likewise.
1587         * utils/statd/rmtcall.c: Likewise.
1588         * utils/statd/simulate.c: Likewise.
1589         * utils/statd/statd.c: Likewise.
1590         * utils/statd/statd.man: Likewise.
1591
1592 2001-03-11  H.J. Lu <hjl@lucon.org>
1593
1594         * configure.in (RELEASE): New. Default to 1, set by
1595         --with-release=XXX. Substitute nfs-utils.spec.
1596         * nfs-utils.spec.in (Release): Set to @RELEASE@.
1597         * configure: Regenerated.
1598         * nfs-utils.spec: Likewise.
1599
1600 2001-03-11  H.J. Lu <hjl@lucon.org>
1601
1602         * utils/rquotad/rquotad.man: Fix a typo.
1603
1604 2001-03-11  H.J. Lu <hjl@lucon.org>
1605
1606         * support/include/rpcmisc.h: Undo the change made on 2001-03-10.
1607         * support/nfs/rpcmisc.c: Likewise.
1608         * utils/rquotad/rquota_svc.c: Likewise.
1609         * utils/rquotad/rquotad.man: Likewise.
1610         * utils/statd/Makefile: Likewise.
1611         * utils/statd/rmtcall.c: Likewise.
1612         * utils/statd/simulate.c: Likewise.
1613         * utils/statd/statd.c: Likewise.
1614         * utils/statd/statd.man: Likewise.
1615
1616 2001-03-10  H.J. Lu <hjl@lucon.org>
1617
1618         * configure.in (VERSION): Set to "0.3.2".
1619         * configure: Regenerated.
1620         * nfs-utils.spec: Likewise.
1621
1622         * README: Updated for 0.3.2.
1623
1624 2001-03-10  Tavis Barr <tavis@boole.isetr.columbia.edu>
1625
1626         * utils/rquotad/rquotad.man: Updated for -p.
1627         * utils/statd/statd.man: Likewise.
1628
1629 2001-03-10  Ion Badulescu  <ionut@cs.columbia.edu>
1630
1631         * support/nfs/rpcmisc.c: export makesock()
1632
1633         * support/include/rpcmisc.h (makesock): Declared.
1634
1635         * utils/rquotad/rquota_svc.c: added longopts, added support for
1636         specifying the port to bind to on the command line.
1637
1638         * utils/statd/statd.c: ditto, also specify port used for
1639         outgoing connections.
1640         (do_regist): Removed.
1641
1642         * utils/statd/rmtcall.c (statd_get_socket): Renamed from
1643         get_socket. Make it extern.
1644
1645         * utils/statd/simulate.c (daemon_simulator): Call rpc_init
1646         instead of do_regist.
1647
1648         * utils/statd/Makefile (LIBS): link with our own libnfs
1649
1650 2001-03-09  H.J. Lu <hjl@lucon.org>
1651
1652         * etc/redhat/nfslock.init: Changed chkconfig line to 60 86.
1653         * etc/nodist/nfs-client: Likewise.
1654
1655 2001-02-26  Chip Salzenberg  <chip@valinux.com>
1656
1657         * debian/changelog: Version 0.3.1-1.
1658         * Mention upstream source and license in copyright file.
1659         * Add build-Depends for debhelper and libwrap0-dev.
1660
1661 2001-02-20  Lon Hohberger <hohberger@missioncriticallinux.com>
1662
1663         * etc/nodist/nfs-server: Changed chkconfig line to 60 20
1664         * etc/nodist/nfs-client: Likewise.
1665
1666 2001-02-18  Lon Hohberger <hohberger@missioncriticallinux.com>
1667
1668         * utils/statd/statd.man: Changed /usr/sbin/rpc.statd to
1669         /sbin/rpc.statd.
1670
1671 2001-02-17  Patrick J. LoPresti <patl@curl.com>
1672
1673         * utils/statd/log.c (log_init): Use LOG_DAEMON instead of
1674         LOG_LOCAL5.
1675
1676 2001-02-14  H.J. Lu <hjl@lucon.org>
1677
1678         * utils/statd/rmtcall.c: Include <time.h>.
1679         * utils/statd/svc_run.c: Likewise.
1680
1681 2001-02-14  H.J. Lu <hjl@lucon.org>
1682
1683         * configure.in (VERSION): Set to "0.3.1".
1684         * configure: Regenerated.
1685         * nfs-utils.spec: Likewise.
1686
1687         * README: Updated for 0.3.1.
1688
1689 2001-02-14  H.J. Lu <hjl@lucon.org>
1690
1691         * support/nfs/rpcmisc.c: Include <time.h>.
1692
1693 2001-02-14  Chip Salzenberg  <chip@valinux.com>
1694
1695         * debian/control: Change priority of nhfsstone package to 'extra'.
1696
1697 2001-02-12  Chip Salzenberg  <chip@valinux.com>
1698
1699         * debian/changelog: Version 0.3-2.
1700
1701 2001-02-02  H.J. Lu <hjl@lucon.org>
1702
1703         * support/include/rpcmisc.h (rpc_init): Remove bufsize.
1704         
1705         * support/nfs/rpcmisc.c (makesock): Remove socksz and comment
1706         out SO_SNDBUF/SO_RCVBUF.
1707         (rpc_init): Remove bufsize and remove socksz in calls to
1708         makesock ().
1709
1710         * utils/mountd/mountd.c (main): Remove bufsize in calls to
1711         rpc_init ().
1712
1713 2001-01-28  Chip Salzenberg  <chip@valinux.com>
1714
1715         * debian/changelog: Version 0.3-1.
1716
1717 2001-01-25  H.J. Lu <hjl@lucon.org>
1718
1719         * configure.in (VERSION): Set to "0.3".
1720         * configure: Regenerated.
1721         * nfs-utils.spec: Likewise.
1722
1723         * README: Updated for 0.3.
1724
1725 2001-01-25  H.J. Lu <hjl@lucon.org>
1726
1727         * utils/lockd/lockd.c (main): Ignore errno == EINVAL.
1728
1729 2001-01-20  Chip Salzenberg  <chip@valinux.com>
1730
1731         * support/include/xio.h (xgetc): Declare to return int.
1732         * support/nfs/xio.c (xgetc): Return int.
1733         (xgettok, xskip, xskipcomment): Use int for value of xgetc.
1734         * utils/statd/statd.c (main): Use int for value of getopt.
1735         * debian/changelog: Version 0.2.1-5.
1736         
1737 2000-12-10  Chip Salzenberg  <chip@valinux.com>
1738
1739         * utils/statd/monitor.c (sm_mon_1_svc): Fix buggy check for
1740         program and procedure numbers of kernel lockd's callback.  Also,
1741         besides the old (and broken) procedure #24, allow #16 per Trond.
1742
1743 2000-12-03  Chip Salzenberg  <chip@valinux.com>
1744
1745         * support/nfs/xio.c (xfopen): Initialize x_line to one, not zero.
1746         * debian/control: Let nhfsstone replace files in nfs-kernel-server.
1747         * debian/changelog: Version 0.2.1-4.
1748
1749 2000-11-27  Tobias Ringstrom <tori@tellus.mine.nu>
1750
1751         * utils/mountd/auth.c (auth_authenticate): Log the bad path
1752         warning.
1753
1754 2000-11-24  Neil Brown <neilb@cse.unsw.edu.au>
1755
1756         * support/nfs/exports.c (getexportent): Check for host name
1757         without option, or options without hostname, and print a warning,
1758         as this is most likely a typo.
1759
1760 2000-11-19  Chip Salzenberg  <chip@valinux.com>
1761
1762         * debian/control: Add dependency on portmap.
1763         * debian/changelog: Version 0.2.1-3.
1764
1765 2000-11-10  H.J. Lu <hjl@lucon.org>
1766
1767         * nfs-utils.spec.in: Don't use libtool.
1768         Add ChangeLog and COPYING to doc.
1769         * nfs-utils.spec: Rebuild.
1770
1771 2000-11-09  H.J. Lu <hjl@lucon.org>
1772
1773         * etc/redhat/nfs.init (start): Back out the last change.
1774
1775 2000-11-09  H.J. Lu <hjl@lucon.org>
1776
1777         * etc/redhat/nfs.init (start): Pass --no-tcp to mountd if
1778         TCP is not supported by kernel.
1779
1780         * support/nfs/rpcmisc.c (rpc_init): Don't set _rpcfdtype to 0.
1781
1782         * utils/mountd/mountd.c (longopts): Add "-n/--no-tcp".
1783         (main): Set to _rpcfdtype to SOCK_DGRAM for "-n/--no-tcp".
1784
1785         * utils/mountd/mountd.man: Updated for "-n/--no-tcp".
1786
1787 2000-10-24  Lon Hohberger <hohberger@missioncriticallinux.com>
1788
1789         * utils/statd/callback.c: Fix bug preventing callbacks to local lockd.
1790         * utils/statd/rmtcall.c: Add some IP address paranoia when doing
1791         callbacks to local lockd.
1792
1793 2000-10-18  Scott McDermott <mcdermot@questra.com>
1794
1795         * utils/exportfs/exports.man: Updated for CIDR netmask.
1796
1797 2000-10-17  Scott McDermott <mcdermot@questra.com>
1798
1799         * support/export/client.c (client_init): Support CIDR netmask
1800         in /etc/exports.
1801
1802 2000-10-11  H.J. Lu <hjl@lucon.org>
1803
1804         * aclocal.m4 (AC_TCP_WRAPPER): Fix a typo.
1805         * configure: Rebuilt.
1806
1807 2000-10-06  Lon Hohberger <hohberger@missioncriticallinux.com>
1808
1809         * utils/statd/statd.man: Change "/var/lib/nfs/sm/state" to
1810         "/var/lib/nfs/state".
1811
1812 2000-10-05  Lon Hohberger <hohberger@missioncriticallinux.com>
1813
1814         * utils/statd/statd.h (run_mode): New global bitmask of runtime
1815         behaviors: fg/bg, logging, etc.
1816         * utils/statd/statd.c: New command line options: -V -h -? -d .
1817         * utils/statd/statd.man: Update for changes to statd.
1818
1819         * utils/statd/log.h (log_init): Remove parameter of function; use
1820         global variable "name_p" instead.
1821         * utils/statd/log.c: Add support for logging to stderr.
1822
1823         * utils/statd/notlist.c: Partially rewrite notify list handling
1824         functions.  Eliminate run-off-end-of-list bug when calling
1825         nlist_insert_timer.  Add lots of comments.
1826         
1827 2000-09-27  H.J. Lu <hjl@lucon.org>
1828
1829         * README: Updated for RedHat 7.0.
1830
1831 2000-09-27  H.J. Lu <hjl@lucon.org>
1832
1833         * nfs-utils.spec: Rebuild.
1834
1835 2000-09-27  H.J. Lu <hjl@lucon.org>
1836
1837         * README: Updated for 0.2.1.
1838
1839 2000-09-27  H.J. Lu <hjl@lucon.org>
1840
1841         * nfs-utils.spec.in: Updated to use rpm macros and support
1842         RedHat 7.0.
1843
1844 2000-09-25  H.J. Lu <hjl@lucon.org>
1845
1846         * configure.in (VERSION): Set to "0.2.1".
1847         * configure: Regenerated.
1848         * nfs-utils.spec: Updated.
1849
1850 2000-09-25  H.J. Lu <hjl@lucon.org>
1851
1852         * utils/mountd/auth.c (auth_authenticate_internal): Make sure a
1853         non-NULL hostent is always returned.
1854
1855 2000-09-11  Ion Badulescu  <ionut@cs.columbia.edu>
1856
1857         * etc/redhat/nfslock.init: don't kill lockd processes that do not
1858         have an executable (i.e. kernel threads)
1859
1860 2000-09-01  H.J. Lu <hjl@lucon.org>
1861
1862         * README: Updated for 0.2.
1863
1864 2000-09-01  Jay Weber <jweber@valinux.com>
1865
1866         * etc/redhat/nfs.init: Added ability for rpc.mountd to default to
1867         supporting version 3 of nfs if available, else it will fall back to
1868         version 2 support only.
1869
1870 2000-08-30  H.J. Lu <hjl@lucon.org>
1871
1872         * configure.in (VERSION): Set to "0.2".
1873         * configure: Regenerated.
1874         * nfs-utils.spec: Updated.
1875
1876 2000-08-25  H.J. Lu <hjl@lucon.org>
1877
1878         * support/misc/tcpwrapper.c (logit): Modify the log output.
1879
1880 2000-08-25  Ion Badulescu  <ionut@cs.columbia.edu>
1881
1882         * utils/rquotad/rquotad.man, utils/statd/statd.man,
1883         utils/mountd/mountd.man: updated
1884         
1885         * utils/mountd/Makefile (LIBS): added -lmisc $(LIBWRAP) $(LIBNSL)
1886         * utils/rquotad/Makefile: fix comment
1887
1888         * support/misc/tcpwrapper.c (logit): added comment about waiting
1889         for the children after fork()
1890         
1891         * utils/mountd/mountd.c (main): ignore SIGCHLD to prevent leaving
1892         zombies behind (from logit()'s fork)
1893         * utils/rquotad/rquota_svc.c (main): ditto
1894         * utils/statd/statd.c (main): ditto
1895
1896         * utils/rquotad/rquota_svc.c (rquotaprog_1): pass RQUOTAPROG
1897         to check_default instead of 0, for prognum
1898
1899         * utils/statd/statd.c (sm_prog_1_wrapper): pass SM_PROG
1900         to check_default instead of 0, for prognum
1901
1902         * utils/mountd/mount_dispatch.c: Include "tcpwrapper.h" if
1903         HAVE_TCP_WRAPPER is defined.
1904         (mount_dispatch): Call check_default () if HAVE_TCP_WRAPPER is
1905         defined. Reject an RPC call if check_default () fails.
1906
1907 2000-08-25  H.J. Lu <hjl@lucon.org>
1908
1909         * support/include/tcpwrapper.h: New for the tcp wrapper
1910         support.
1911         * support/misc/Makefile: Likewise.
1912         * support/misc/from_local.c: Likewise.
1913         * support/misc/tcpwrapper.c: Likewise.
1914
1915         * aclocal.m4 (AC_TCP_WRAPPER): New.
1916         * configure.in: Use it. Substitute LIBWRAP.
1917         * configure: Rebuilt.
1918
1919         * config.mk.in (LIBNSL): New.
1920         (LIBWRAP): Likewise.
1921
1922         * support/Makefile (SUBDIRS): Add misc.
1923
1924         * support/lib/Makefile (LIBS): Add libmisc.a.
1925
1926         * utils/rquotad/Makefile (LIBS): Add
1927         
1928                 -lmisc $(LIBWRAP) $(LIBNSL)
1929
1930         * utils/statd/Makefile (LIBS): Likewise.
1931
1932         * utils/rquotad/rquota_svc.c: Include "tcpwrapper.h" if
1933         HAVE_TCP_WRAPPER is defined.
1934         (rquotaprog_1): Call check_default () if HAVE_TCP_WRAPPER is
1935         defined. Reject an RPC call if check_default () fails.
1936
1937         * utils/statd/statd.c: Include "tcpwrapper.h" if
1938         HAVE_TCP_WRAPPER is defined.
1939         (sm_prog_1_wrapper): New. A wrapper for sm_prog_1. Call
1940         check_default () before calling sm_prog_1 (). Define it as
1941         sm_prog_1_wrapper if HAVE_TCP_WRAPPER is defined.
1942
1943 2000-08-25  Chip Salzenberg  <chip@valinux.com>
1944
1945         * debian/*: Complete Debian build support.
1946         * etc/debian/*: Remove.
1947
1948 2000-08-24  Neil Brown <neilb@cse.unsw.edu.au>
1949
1950         * support/export/client.c(client_check): removed the "dot+1" as a
1951           ypdomain argument to innetgr as this is entirely bogus.
1952           It should always be NULL.
1953         
1954 2000-08-23  Neil Brown <neilb@cse.unsw.edu.au>
1955
1956         * support/export/xtab.c(xtab_read): introduce new mode for
1957            reading xtab. i.e. a list of exports that might be known to the
1958            kernel, or might not.  These are flagged as m_exported == -1
1959         * support/export/xtab.c(xtab_mount_read):  call xtab_read with new
1960            value "2" for xtab, meaning don't trust this too much.
1961         * support/include/exportfs.h(struct mexport): changed m_exported
1962            from one bit to an int so that it can hold new value
1963         * utils/exportfs/exportfs.c(exportfs_ipdate): add an export to the
1964            kernel if it is uncertain whether the kernel knows (m_exported == -1)
1965         * utils/mountd/mountd.c(get_rootfh): similarly export to kernel if
1966            status is uncertain
1967
1968         * support/nfs/xio.c(xflock): added O_CREAT when getting
1969            a write lock so that missing files aren't fatal.
1970
1971         * etc/debian/nfs-common: new file from "potato"
1972         * etc/debian/nfs-kernel-server: new file from "potato" plus fixes.
1973          
1974 2000-08-09  H.J. Lu <hjl@lucon.org>
1975
1976         * etc/redhat/nfs.init: Run /usr/sbin/exportfs first during
1977         startup to ensure all existing clients work fine.
1978
1979         * support/export/xtab.c (xtab_mount_read): Pass 1 instead of 0
1980         to xtab_read () for reading _PATH_XTAB.
1981
1982 2000-08-02  H.J. Lu <hjl@lucon.org>
1983
1984         * utils/mountd/auth.c (auth_authenticate_internal): Try to
1985         avoid the reverse name lookup.
1986
1987 2000-07-04  H.J. Lu <hjl@lucon.org>
1988
1989         * utils/statd/log.c: Include <stdlib.h> for exit ().
1990
1991         * utils/statd/misc.c (xunlink): Add `{' and `}' to quiet the
1992         gcc warning.
1993
1994 2000-07-04  H.J. Lu <hjl@lucon.org>
1995
1996         * configure.in (VERSION): Set to "0.1.9.1".
1997         * configure: Regenerated.
1998         * nfs-utils.spec: Updated.
1999
2000         * README: Updated.
2001
2002 2000-07-04  Neil Brown  <neilb@cse.unsw.edu.au>
2003
2004         * support/export/hostname.c (hostent_dup): Handle the NULL
2005         h_aliases field.
2006
2007 2000-07-03  H.J. Lu <hjl@lucon.org>
2008
2009         * README: Update the util-linux requirement.
2010
2011 2000-07-03  H.J. Lu <hjl@lucon.org>
2012
2013         * configure.in (VERSION): Set to "0.1.9".
2014         * configure: Regenerated.
2015         * nfs-utils.spec: Updated.
2016
2017         * README: Updated.
2018
2019 2000-07-03  H.J. Lu <hjl@lucon.org>
2020
2021         * etc/redhat/nfs.init: Run /usr/sbin/exportfs last during
2022         stop to ensure all clients can still access the server
2023         before it is shutdown.
2024
2025 2000-06-30  Jeff Uphoff <juphoff@transmeta.com>
2026
2027         * tools/rpcgen/rpc_svcout.c (write_msg_out): Generate syslog()
2028         calls with format string.
2029         
2030 2000-06-28  Chip Salzenberg  <chip@valinux.com>
2031
2032         * utils/statd/log.c (log): Call syslog with format string.
2033
2034 2000-06-27  H.J. Lu <hjl@lucon.org>
2035
2036         * utils/statd/statd.c (main): Use sysconf (_SC_OPEN_MAX)
2037         instead of OPEN_MAX.
2038
2039 2000-06-27  H.J. Lu <hjl@lucon.org>
2040
2041         * README: Updated.
2042
2043 2000-06-27  H.J. Lu <hjl@lucon.org>
2044
2045         * etc/redhat/nfs.init: Run /usr/sbin/exportfs last during
2046         startup to ensure all existing clients are exported.
2047
2048         * configure.in (VERSION): Set to "0.1.8.2".
2049         * configure: Regenerated.
2050         * nfs-utils.spec: Updated.
2051
2052 2000-06-06  H.J. Lu <hjl@lucon.org>
2053
2054         * configure.in (VERSION): Set to "0.1.8.1".
2055         * configure: Regenerated.
2056         * nfs-utils.spec: Updated.
2057
2058 2000-06-06  H.J. Lu <hjl@lucon.org>
2059
2060         * utils/mountd/mountd.c (mount_dump_1_svc): Cast svc_getcaller
2061         to "struct sockaddr_in *" for glibc 2.2.
2062         (mount_umnt_1_svc): Likewise.
2063         (mount_umntall_1_svc): Likewise.
2064         (mount_export_1_svc): Likewise.
2065         (mount_exportall_1_svc): Likewise.
2066         (mount_pathconf_2_svc): Likewise.
2067         (get_rootfh): Likewise.
2068
2069 2000-06-04  H.J. Lu <hjl@lucon.org>
2070
2071         * etc/redhat/nfs.init: Fix a typo in comment.
2072
2073 2000-05-31  H.J. Lu <hjl@lucon.org>
2074
2075         * configure.in (VERSION): Set to "0.1.8".
2076         * configure: Regenerated.
2077         * nfs-utils.spec: Updated.
2078
2079         * README: Updated.
2080
2081 2000-05-31  H.J. Lu <hjl@lucon.org>
2082
2083         * configure.in (VERSION): Set to "0.1.7.5".
2084         * configure: Regenerated.
2085         * nfs-utils.spec: Updated.
2086
2087         * support/include/nfslib.h (exportent): Add a new field,
2088         r_count, to count the number of mounts from a client.
2089         (getrmtabent): Take a new argument for position in file.
2090         (putrmtabent): Likewise.
2091         (fgetrmtabent): Likewise.
2092         (fputrmtabent): Likewise.
2093         * support/nfs/rmtab.c (getrmtabent): Handle the new argument
2094         for position in file.
2095         (fgetrmtabent): Likewise.
2096         (putrmtabent): Likewise.
2097         (fputrmtabent): Likewise.
2098
2099         * support/nfs/rmtab.c (fgetrmtabent): Get value for the new
2100         field, r_count.
2101
2102         * support/export/rmtab.c (rmtab_read): Pass NULL as the new
2103         argument to getrmtabent (), fgetrmtabent (), putrmtabent ()
2104         and fputrmtabent ().
2105         * utils/mountd/rmtab.c (mountlist_add): Likewise.
2106         (mountlist_del): Likewise.
2107         (mountlist_del_all): Likewise.
2108         (mountlist_list): Likewise.
2109
2110         * utils/mountd/rmtab.c (mountlist_add): Increment "r_count"
2111         for the existing entry and initialize "r_count" to 1.
2112         (mountlist_del): Decrement "r_count".
2113
2114 2000-05-18  H.J. Lu <hjl@lucon.org>
2115
2116         * configure.in (VERSION): Set to "0.1.7.4".
2117         * configure: Regenerated.
2118         * nfs-utils.spec: Updated.
2119
2120 2000-05-18  H.J. Lu <hjl@lucon.org>
2121
2122         * etc/redhat/nfs.init (restart): Just do stop and start.
2123
2124 2000-05-09  Jay Weber <jweber@valinux.com>
2125
2126         * utils/rquotad/hasquota.c: added support for ext3 recognition
2127         in rquotad.
2128         * utils/rquotad/mntent.h: Likewise.
2129
2130 2000-05-01  H.J. Lu <hjl@lucon.org>
2131
2132         * configure.in (VERSION): Set to "0.1.7.3".
2133         * configure: Regenerated.
2134         * nfs-utils.spec: Updated.
2135
2136 2000-05-01  H.J. Lu <hjl@lucon.org>
2137
2138         * utils/rquotad/rquota_server.c (getquotainfo): Skip bad
2139         mounting poins in /etc/fstab.
2140
2141 2000-05-01  H.J. Lu <hjl@lucon.org>
2142
2143         * configure.in (VERSION): Set to "0.1.7.2".
2144         * configure: Regenerated.
2145         * nfs-utils.spec: Updated.
2146
2147 2000-05-01  H.J. Lu <hjl@lucon.org>
2148
2149         * utils/rquotad/rquota_server.c (getquotainfo): Call stat ()
2150         to check for the mounting point.
2151
2152 2000-04-29  Chip Salzenberg  <chip@valinux.com>
2153             Neil Brown  <neilb@cse.unsw.edu.au>
2154
2155         * Really re-use RPC ports.
2156           (Fixes earlier patch.  Sorry, Neil.)
2157
2158 2000-04-26  H.J. Lu <hjl@lucon.org>
2159
2160         * configure.in (VERSION): Set to "0.1.7.1".
2161         * configure: Regenerated.
2162         * nfs-utils.spec: Updated.
2163
2164 2000-04-26  H.J. Lu <hjl@lucon.org>
2165
2166         * etc/redhat/nfslock.init: Check if lockd exits before killing
2167         it.
2168
2169 2000-04-25  H.J. Lu <hjl@lucon.org>
2170
2171         * README: Require util-linux-2.10f-mount-rpc.patch for mount.
2172
2173 2000-03-21 Michael Weiser <michael@weiser.saale-net.de>
2174
2175         * support/nfs/exports.c (parsesquash): Correctly set the
2176         return pointer.
2177
2178 Tue Mar 21 11:38:48 EST 2000 NeilBrown <neilb@cse.unsw.edu.au>
2179
2180         * support/include/nfs/nfs.h: Removed knowledge of internals of
2181              kernel filehandles (which can change) and defined nfs_fh_size
2182              which has variable size
2183         
2184         * support/nfs/getfh.c: defined getfh_size to use new syscall to
2185              get variable sized file handles, and change getfh{,old} to
2186              use nfs_fh_size        
2187         
2188         * utils/mountd/mountd.c: use nfd_fh_size and call getfh_size for
2189              NFSv3 file handles
2190
2191         * tools/Makefile, tools/nlmtest/nlmtest.c
2192              nlmtest.c depended on internel format of file handles, so now
2193              doesn't work.
2194
2195         
2196 2000-03-12  Chip Salzenberg  <chip@valinux.com>
2197             Neil Brown  <neilb@cse.unsw.edu.au>
2198
2199         * support/nfs/rpcmisc.c (rpc_init): Share transports.
2200
2201 2000-03-13 H.J. Lu <hjl@lucon.org>
2202
2203         * etc/redhat/nfsd.init: Updated.
2204
2205         * etc/redhat/nfslock.init: Updated.
2206
2207         * nfs-utils.spec.in: Updated.
2208
2209         * configure.in (VERSION): Set to "0.1.7".
2210         * configure: Regenerated.
2211         * nfs-utils.spec: Updated.
2212
2213         * README: Updated.
2214
2215 Wed Mar  8 09:42:43 2000 Neil Brown <neilb@cse.unsw.edu.au>
2216
2217         * utils/exportfs/exportfs.c (dump): Included printing of
2218            nohide, no_subtree_check, and insecure_locks
2219
2220 2000-02-26  Chip Salzenberg  <chip@valinux.com>
2221
2222         * config.mk.in (INSTALLSUID): Strip ("-s").
2223         (INSTALLSCRIPT): Define.
2224         * utils/nhfsstone/Makefile: Use it.
2225
2226 2000-02-26  Chip Salzenberg  <chip@valinux.com>
2227
2228         * utils/lockd/lockd.man: Create.
2229         * utils/lockd/Makefile: Install it.
2230         * utils/nhfsstone/nhfs{run,nums,graph}.man: Create.
2231         * utils/nhfsstone/nhfsstone.man: Change suffix from ".1".
2232         * utils/nhfsstone/Makefile: Install the helper scripts and
2233           all four man pages.
2234         * utils/exportfs/exports.man: Fix typo.
2235
2236 2000-02-26  Chip Salzenberg  <chip@valinux.com>
2237
2238         * support/nfs/xio.c (xungetc): Decrement line number when
2239         character to unget is newline.  Make first parameter int, so
2240         it can distinguish EOF from \377.
2241         * support/include/xio.h (xungetc): Adjust prototype.
2242
2243 Fri Feb  4 23:42:23 2000 Neil Brown <neilb@cse.unsw.edu.au>
2244
2245         * support/include/nfs/export.h: added NFSEXP_NOAUTHNLM
2246         * support/nfs/exports.c: added handling for NFSEXP_NOAUTHNLM
2247         * utils/exportfs/exports.man: added documentation for no_auth_nlm.
2248
2249         This is for supporting a new option introduced in 2.3.42
2250
2251 Thu Feb  3 14:55:48 2000 H.J. Lu <hjl@lucon.org>
2252
2253         * COPYING: Added. GPL.
2254
2255 Thu Feb 03 14:40:40 2000 Cristian Gafton <gafton@redhat.com>
2256
2257         * utils/rquotad/rquota_server.c (getquotainfo): Call statfs ()
2258         to get the block size.
2259
2260 Tue Jan 25 11:04:17 2000 H.J. Lu <hjl@lucon.org>
2261
2262         * nfs-utils.spec.in: Update ftp site.
2263
2264 Mon Jan 17 11:48:18 2000 H.J. Lu <hjl@lucon.org>
2265
2266         * README: Update hostnames.
2267
2268 Tue Jan 11 10:06:22 2000 H.J. Lu <hjl@lucon.org>
2269
2270         * configure.in (VERSION): Set to "0.1.6".
2271         * configure: Regenerated.
2272         * nfs-utils.spec: Updated.
2273
2274         * README: Updated.
2275
2276 Mon Jan 10 14:26:33 2000 H.J. Lu <hjl@lucon.org>
2277
2278         * utils/mountd/auth.c (auth_authenticate_internal): Call
2279         xstrdup for hostname before passing it to gethostbyname.
2280
2281         * utils/mountd/mountd.c (get_exportlist): Use xstrdup instead
2282         of strdup.
2283
2284 Sun Dec 19 09:35:01 1999  H.J. Lu <hjl@lucon.org>
2285
2286         * README: Update the mailing list address.
2287
2288 Sun Dec 19 09:22:28 1999  H.J. Lu <hjl@lucon.org>
2289
2290         * configure.in (VERSION): Set to "0.1.5".
2291         * configure: Regenerated.
2292         * nfs-utils.spec: Updated.
2293
2294         * README: Updated.
2295
2296 Mon Dec 13 13:40:20 1999  H.J. Lu <hjl@lucon.org>
2297
2298         * utils/rquotad/hasquota.c (hasquota): Malloc one more char
2299         for '/'.
2300
2301 Mon Dec  6 09:42:45 1999  H.J. Lu <hjl@lucon.org>
2302
2303         * configure.in (VERSION): Set to "0.1.4".
2304         * configure: Regenerated.
2305         * nfs-utils.spec: Updated.
2306
2307         * README: Updated.
2308
2309 Mon Dec  6 09:28:07 1999  H.J. Lu <hjl@lucon.org>
2310
2311         * nfs-utils.spec.in: New file.
2312
2313         * config.mk.in (VERSION): Changed to "nfs-utils @VERSION@".
2314
2315         * configure.in (nfs-utils.spec): Added to AC_OUTPUT.
2316
2317 1999-12-04  Chip Salzenberg  <chip@valinux.com>
2318
2319         * config.mk.in: Use $(CC) as set by configure.
2320
2321 1999-12-04  Chip Salzenberg  <chip@valinux.com>
2322
2323         * rules.mk: Call $(MAKE) with $(MFLAGS).
2324
2325 Mon Nov 29 11:17:35 1999  H.J. Lu <hjl@lucon.org>
2326
2327         * tools/rpcgen/rpc_main.c (h_output): Generate IXDR_GET_INT32,
2328         IXDR_PUT_INT32, IXDR_GET_U_INT32 and IXDR_PUT_U_INT32.
2329
2330 Mon Nov 29 11:17:35 1999  H.J. Lu <hjl@lucon.org>
2331
2332         * nfs-utils.spec (Version): Set to 0.1.3.
2333
2334         * configure.in (VERSION): Set to "nfs-utils 0.1.3".
2335         * configure: Regenerated.
2336
2337         * README: Updated.
2338
2339 Mon Nov 29 11:15:47 1999  H.J. Lu <hjl@lucon.org>
2340
2341         * utils/rquotad/rquota_server.c (nfsmount_to_devname): Removed.
2342         (_PATH_DEV_DSK): Likewise.
2343         (getquotainfo): Match the mounting point from /etc/mtab
2344         instead of calling nfsmount_to_devname ().
2345
2346 1999-11-24  Chip Salzenberg  <chip@valinux.com>
2347
2348         * utils/statd/monitor.c (sm_mon_1_svc): Accept lockd callbacks
2349         to the new port 24 as well as the historical port 100021.
2350
2351 Tue Nov 23 10:21:34 1999 Neil Brown <neilb@cse.unsw.edu.au>
2352
2353         * etc/redhat/nfsd.init (stop): moved exportfs -ua after
2354         stopping nfsd to stop spurious ESTALE on server shutdown.
2355         
2356 Tue Nov 23 10:13:39 1999  Neil Brown <neilb@cse.unsw.edu.au>
2357
2358         * support/nfs/exports.c (parseopts): make copy of opt string
2359         before 'nul'ing out commas so that
2360
2361         # exportfs -o option1,option2 hosta:/fs hostb:/fs
2362
2363         applies both options to both exports.
2364
2365 Thu Oct 28 12:55:42 1999  H.J. Lu <hjl@lucon.org>
2366
2367         * README: Fix a few typos.
2368
2369         * tools/rpcgen/rpc_cout.c (print_header): Use int32_t instead
2370         of long.
2371         * tools/rpcgen/rpc_hout.c (pdefine): Likewise.
2372         * tools/rpcgen/rpc_main.c (c_initialize): Likewise.
2373         * tools/rpcgen/rpc_parse.c (get_type): Likewise.
2374         (unsigned_dec): Likewise.
2375         * tools/rpcgen/rpc_scan.c (symbols): Likewise.
2376         * tools/rpcgen/rpc_util.c (tokstrings): Likewise.
2377
2378         * tools/rpcgen/rpc_cout.c (emit_single_in_line): Use INT32
2379         instead of LONG.
2380         * tools/rpcgen/rpc_parse.c (get_type): Likewise.
2381         (unsigned_dec): Likewise.
2382         * tools/rpcgen/rpc_scan.c (symbols): Likewise.
2383         * tools/rpcgen/rpc_scan.h (tok_kind): Likewise.
2384         * tools/rpcgen/rpc_util.c (tokstrings): Likewise.
2385
2386 Thu Oct 28 11:27:51 1999 Neil Brown <neilb@cse.unsw.edu.au>
2387
2388         * support/include/nfs/export.h addedd NFSEXP_NOSUBTREECHECK
2389         * support/nfs/exports.c: added {no_,}subtree_check and changed
2390           crossmnt to nohide
2391         * utils/exportfs/exports.man: added no_subtree_check and nohide
2392           and removed irrelevant stuff from unfsd.
2393         * support/export/rmtab.c: rmtab_read didn't quite do the right
2394           thing if a pathname from rmtab was a subdirectory of an export-point
2395
2396 Tue Oct 26 17:22:40 1999  H.J. Lu <hjl@lucon.org>
2397
2398         * README: Updated ftp site.
2399
2400 Mon Oct 25 18:12:45 1999  H.J. Lu <hjl@lucon.org>
2401
2402         * nfs-utils.spec (Version): Set to 0.1.2.
2403
2404         * configure.in (VERSION): Set to "nfs-utils 0.1.2".
2405         * configure: Regenerated.
2406
2407         * README: Updated.
2408
2409 Mon Oct 25 18:11:21 1999  H.J. Lu <hjl@lucon.org>
2410
2411         * utils/mountd/auth.c (auth_error): Add "no_forward_dns".
2412         (auth_authenticate_internal): Check for NULL return on forward
2413         DNS lookup.
2414         (auth_authenticate): Handle "no_forward_dns".
2415
2416 Thu Oct 21 16:22:06 1999  H.J. Lu <hjl@lucon.org>
2417
2418         * Version 0.1.1 released.
2419
2420         * nfs-utils.spec (Version): Set to 0.1.1.
2421
2422         * configure.in (VERSION): Set to "nfs-utils 0.1.1".
2423         * configure: Regenerated.
2424
2425         * README: Updated.
2426
2427 Mon Oct 18 17:43:29 1999  H.J. Lu <hjl@lucon.org>
2428
2429         * nfs-utils.spec (Obsoletes): Fixed a typo, change knfsd-client
2430         to knfsd-clients.
2431         (Provides): Likewise.
2432
2433 Mon Oct 18 14:56:22 1999  H.J. Lu <hjl@lucon.org>
2434
2435         * Initial version 0.1 released.
2436
2437         * configure.in (VERSION): Set to "nfs-utils 0.1".
2438         * configure: Regenerated.
2439
2440 Mon Oct 18 14:54:57 1999  H.J. Lu <hjl@lucon.org>
2441
2442         * utils/mountd/mountd.c (get_exportlist): Cleanup.
2443
2444         * utils/exportfs/exportfs.c (unexport_all): Unexport from
2445         kernel only if the entry is exported to kernel.
2446         (unexportfs): Likewise.
2447
2448 Wed Sep 08 16:49:32 1999  Neil Brown <neilb@cse.unsw.edu.au>
2449
2450 1/ utils/mountd/rmtab.c::mountlist_list
2451
2452      This routine stats the rmtab file to see if it has changed.  It
2453      if has, it cleans up it's old copy of the data. But it still
2454      always re-read the file, thus returning multiple copies of the
2455      data on consecutive calls without intervening changes.
2456      "Showmount -a" didn't show this as it appears to sort/unique the
2457      data, but 'strace showmount -a' showed that the size of the
2458      datagram that it received grew.
2459
2460      I moved the getrmtabent loop inside the mtime test.
2461
2462 2/ utils/exportfs/exportfs.c
2463    
2464      Many routines used the m_path field of m_export instead of
2465      e_path.
2466      According to the comment in nfslib.h, m_path should only
2467      be used when processing a mount request (i.e. in mountd)
2468      where the mountpoint may be a subdirectory of the export point.
2469
2470      I changed all occurances of m_path to e_path
2471
2472
2473 3/ utils/exportfs/exportfs.c:main
2474
2475       extra arguments are not meaningful with -a or -r, but
2476       exportfs accepted them and then ignored the -a/-r, expect that
2477       -r would still unexport everything first.
2478
2479       I generate an error if there are extra args and f_all
2480
2481 4/ utils/exportfs/exportfs.c:main
2482      extract dump out as a special case.
2483
2484 5/ utils/exportfs/exportfs.c
2485      made f_reexport a local variable.
2486
2487
2488 6/ utils/exportfs/exportfs.c:main,exportall
2489
2490     support/export/rmtab.c
2491        only  mayexport on newly created entries, don't set xtabent at all
2492
2493 7/ support/include/nfslib.h
2494
2495       add #define _PATH_PROC_EXPORTS to be /proc/fs/nds/exports
2496
2497 8/ support/export/xtab.c
2498
2499       xtab_mount_read loads data from _PATH_PROC_EXPORTS if it exists,
2500       else from xtab
2501
2502
2503 9/ support/export/xtab.c
2504
2505       xtab_mount_read now sets m_exported, and NOT
2506         xtabent and mayexport
2507
2508       removed the append arguement from xtab_write as it was
2509         never used.
2510
2511       added is_export flag to xtab_write similar to xtab_read
2512         if is_export, only write entries with m_xtabent or m_addxtab
2513         if !is_export, only write entries with m_exported
2514      
2515 10/ support/export/export.c::export_allowed_internal
2516
2517       added test for exp->m_mayexport, as the export tree
2518         may have entries that are no longer allowed to be exported,
2519         and so shouldn't caused deduced exported by rmtab_read
2520
2521 11/ utils/exportfs/exportfs.c::main
2522         error checking of flags.
2523
2524 12/ utils/exportfs/exportfs.c
2525
2526         total rewrite of export and unexport logic.
2527         We now:
2528         -  build an exportslist of valid exports, based on
2529            current etab file  and arguments,
2530         -  read rmtab to instantiate relevant wild card entries
2531         -  read etab to find out what is currently exported
2532         -  synchronise intention with reality
2533         -  write out etab and xtab
2534
2535 13/  various
2536         discard the m_addxtab flag
2537         add m_changed flag so we know what to report in exportfs
2538
2539 14/ utils/mountd/auth.c:auth_authenticate
2540
2541         the value returned by gethostbyaddr was trusted.
2542
2543         It now follows this with a call to gethostbyname
2544         and checks that the address is in the list.
2545
2546 15/ support/export/nfsctl.c::cltsetup,expsetup
2547
2548         force client names to lowercase as kernel is
2549         sensitive to case
2550
2551 16/ quietened a few compiler warnings
2552
2553 17/ support/export/client:client_lookup
2554
2555      look for pre-existing client with same name before creating
2556         a new one.
2557
2558 18/ support/include/exportfs.h
2559
2560      The ordering of the MCL_* enum was:
2561         ANONYMOUS, FQDN, SUBNETWORK, WILDCARD, NETGROUP
2562
2563      I moved ANONYMOUS to the end.
2564
2565      The ordering is significant when an export entry is being searched for to 
2566         match a given address.  There are two problems with ANONYMOUS being first.
2567
2568         1/ if a directory is exported rw to a couple of hosts and ro to everyone else,
2569            then the ro case will always be found first and the privileged hosts won't get
2570            their privilege
2571         2/ When mountd gets a request to mount an ANONYMOUSly exported tree, it creates a FQDN
2572            export entry for the specific host, and writes it to xtab.
2573            When another request comes from the same host, the ANONYMOUS entry is found again, 
2574            before the new FQDN entry, so it creates another FQDN entry and writes it to xtab
2575            again.  If causes bloat in xtab.
2576
2577       Putting ANONYMOUS at the end reflects it's nature as a catch-all
2578
2579 19/ utils/exportfs/exportfs.man
2580         many updates to the man page to reflect changes to the code
2581
2582 -----------------------
2583
2584
2585
2586 TODO:
2587
2588 - allow exportfs to modify rmtab file
2589 - make sure kernel never gets two clients with same IP address
2590     - possible kernel should reject
2591     - needs to be some way to lookup client in kernel by IP address
2592 - maybe get kernel to do case-insensitive comparisons on client names
2593 - remove unused clients from kernel
2594
2595 - change etab to xtab and xtab to xtab.active
2596
2597 - timestamp and/or statd-stamp in rmtab for removing old entries.
2598
2599 Mon Oct 18 11:48:07 1999  H.J. Lu <hjl@lucon.org>
2600
2601         * linux-nfs: New directory.
2602         * linux-nfs/ChangeLog: Moved from ..
2603         * linux-nfs/INSTALL: Likewise.
2604         * linux-nfs/KNOWNBUGS: Likewise.
2605         * linux-nfs/NEW: Likewise.
2606         * linux-nfs/README: Likewise.
2607         * linux-nfs/THANKS: Likewise.
2608         * linux-nfs/TODO: Likewise.
2609
2610         * Starting from knfsd 1.4.7.