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