Home | History | Annotate | Line # | Download | only in mountd
mountd.c revision 1.46
      1  1.46      ross /*	$NetBSD: mountd.c,v 1.46 1998/10/29 00:12:11 ross Exp $	*/
      2  1.19       cgd 
      3   1.1       cgd /*
      4  1.12   mycroft  * Copyright (c) 1989, 1993
      5  1.12   mycroft  *	The Regents of the University of California.  All rights reserved.
      6   1.1       cgd  *
      7   1.1       cgd  * This code is derived from software contributed to Berkeley by
      8  1.12   mycroft  * Herb Hasler and Rick Macklem at The University of Guelph.
      9   1.1       cgd  *
     10   1.1       cgd  * Redistribution and use in source and binary forms, with or without
     11   1.1       cgd  * modification, are permitted provided that the following conditions
     12   1.1       cgd  * are met:
     13   1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     14   1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     15   1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     16   1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     17   1.1       cgd  *    documentation and/or other materials provided with the distribution.
     18   1.1       cgd  * 3. All advertising materials mentioning features or use of this software
     19   1.1       cgd  *    must display the following acknowledgement:
     20   1.1       cgd  *	This product includes software developed by the University of
     21   1.1       cgd  *	California, Berkeley and its contributors.
     22   1.1       cgd  * 4. Neither the name of the University nor the names of its contributors
     23   1.1       cgd  *    may be used to endorse or promote products derived from this software
     24   1.1       cgd  *    without specific prior written permission.
     25   1.1       cgd  *
     26   1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     27   1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     28   1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     29   1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     30   1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     31   1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     32   1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     33   1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     34   1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     35   1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     36   1.1       cgd  * SUCH DAMAGE.
     37   1.1       cgd  */
     38   1.1       cgd 
     39  1.36      fvdl 
     40  1.36      fvdl /*
     41  1.36      fvdl  * XXX The ISO support can't possibly work..
     42  1.36      fvdl  */
     43  1.36      fvdl 
     44  1.41     lukem #include <sys/cdefs.h>
     45   1.1       cgd #ifndef lint
     46  1.41     lukem __COPYRIGHT("@(#) Copyright (c) 1989, 1993\n\
     47  1.41     lukem 	The Regents of the University of California.  All rights reserved.\n");
     48  1.23       cgd #endif /* not lint */
     49   1.1       cgd 
     50   1.1       cgd #ifndef lint
     51  1.19       cgd #if 0
     52  1.31      fvdl static char sccsid[] = "@(#)mountd.c  8.15 (Berkeley) 5/1/95";
     53  1.19       cgd #else
     54  1.46      ross __RCSID("$NetBSD: mountd.c,v 1.46 1998/10/29 00:12:11 ross Exp $");
     55  1.19       cgd #endif
     56  1.23       cgd #endif /* not lint */
     57   1.1       cgd 
     58   1.1       cgd #include <sys/param.h>
     59  1.12   mycroft #include <sys/file.h>
     60   1.1       cgd #include <sys/ioctl.h>
     61   1.1       cgd #include <sys/mount.h>
     62   1.1       cgd #include <sys/socket.h>
     63  1.12   mycroft #include <sys/stat.h>
     64  1.21       jtc #include <syslog.h>
     65  1.12   mycroft #include <sys/ucred.h>
     66  1.12   mycroft 
     67   1.1       cgd #include <rpc/rpc.h>
     68   1.1       cgd #include <rpc/pmap_clnt.h>
     69   1.1       cgd #include <rpc/pmap_prot.h>
     70  1.45  christos #include <rpcsvc/mount.h>
     71  1.12   mycroft #ifdef ISO
     72  1.12   mycroft #include <netiso/iso.h>
     73  1.12   mycroft #endif
     74  1.12   mycroft #include <nfs/rpcv2.h>
     75  1.31      fvdl #include <nfs/nfsproto.h>
     76  1.43      fvdl #include <nfs/nfs.h>
     77  1.43      fvdl #include <nfs/nfsmount.h>
     78  1.43      fvdl 
     79  1.43      fvdl #include <ufs/ufs/ufsmount.h>
     80  1.43      fvdl #include <isofs/cd9660/cd9660_mount.h>
     81  1.43      fvdl #include <msdosfs/msdosfsmount.h>
     82  1.43      fvdl #include <adosfs/adosfs.h>
     83  1.12   mycroft 
     84  1.12   mycroft #include <arpa/inet.h>
     85  1.12   mycroft 
     86  1.12   mycroft #include <ctype.h>
     87  1.12   mycroft #include <errno.h>
     88  1.12   mycroft #include <grp.h>
     89  1.12   mycroft #include <netdb.h>
     90  1.12   mycroft #include <pwd.h>
     91  1.41     lukem #include <netgroup.h>
     92  1.12   mycroft #include <signal.h>
     93  1.12   mycroft #include <stdio.h>
     94  1.12   mycroft #include <stdlib.h>
     95  1.12   mycroft #include <string.h>
     96  1.12   mycroft #include <unistd.h>
     97   1.1       cgd #include "pathnames.h"
     98  1.45  christos #ifdef KERBEROS
     99  1.45  christos #include <kerberosIV/krb.h>
    100  1.45  christos #include "kuid.h"
    101  1.45  christos #endif
    102   1.1       cgd 
    103  1.12   mycroft #include <stdarg.h>
    104  1.12   mycroft 
    105   1.1       cgd /*
    106   1.1       cgd  * Structures for keeping the mount list and export list
    107   1.1       cgd  */
    108   1.1       cgd struct mountlist {
    109   1.1       cgd 	struct mountlist *ml_next;
    110  1.12   mycroft 	char	ml_host[RPCMNT_NAMELEN+1];
    111  1.12   mycroft 	char	ml_dirp[RPCMNT_PATHLEN+1];
    112  1.36      fvdl 	int	ml_flag;		/* XXX more flags (same as dp_flag) */
    113   1.1       cgd };
    114   1.1       cgd 
    115  1.12   mycroft struct dirlist {
    116  1.12   mycroft 	struct dirlist	*dp_left;
    117  1.12   mycroft 	struct dirlist	*dp_right;
    118  1.12   mycroft 	int		dp_flag;
    119  1.12   mycroft 	struct hostlist	*dp_hosts;	/* List of hosts this dir exported to */
    120  1.12   mycroft 	char		dp_dirp[1];	/* Actually malloc'd to size of dir */
    121  1.12   mycroft };
    122  1.12   mycroft /* dp_flag bits */
    123  1.12   mycroft #define	DP_DEFSET	0x1
    124  1.31      fvdl #define DP_HOSTSET	0x2
    125  1.31      fvdl #define DP_KERB		0x4
    126  1.37      fvdl #define DP_NORESMNT	0x8
    127  1.12   mycroft 
    128   1.1       cgd struct exportlist {
    129   1.1       cgd 	struct exportlist *ex_next;
    130  1.12   mycroft 	struct dirlist	*ex_dirl;
    131  1.12   mycroft 	struct dirlist	*ex_defdir;
    132  1.12   mycroft 	int		ex_flag;
    133  1.12   mycroft 	fsid_t		ex_fs;
    134  1.12   mycroft 	char		*ex_fsdir;
    135  1.38      fvdl 	char		*ex_indexfile;
    136  1.12   mycroft };
    137  1.12   mycroft /* ex_flag bits */
    138  1.12   mycroft #define	EX_LINKED	0x1
    139  1.12   mycroft 
    140  1.12   mycroft struct netmsk {
    141  1.36      fvdl 	u_int32_t	nt_net;
    142  1.36      fvdl 	u_int32_t	nt_mask;
    143  1.12   mycroft 	char *nt_name;
    144  1.12   mycroft };
    145  1.12   mycroft 
    146  1.12   mycroft union grouptypes {
    147  1.12   mycroft 	struct hostent *gt_hostent;
    148  1.12   mycroft 	struct netmsk	gt_net;
    149  1.12   mycroft #ifdef ISO
    150  1.12   mycroft 	struct sockaddr_iso *gt_isoaddr;
    151  1.12   mycroft #endif
    152   1.1       cgd };
    153   1.1       cgd 
    154   1.1       cgd struct grouplist {
    155  1.12   mycroft 	int gr_type;
    156  1.12   mycroft 	union grouptypes gr_ptr;
    157   1.1       cgd 	struct grouplist *gr_next;
    158  1.12   mycroft };
    159  1.12   mycroft /* Group types */
    160  1.12   mycroft #define	GT_NULL		0x0
    161  1.12   mycroft #define	GT_HOST		0x1
    162  1.12   mycroft #define	GT_NET		0x2
    163  1.12   mycroft #define	GT_ISO		0x4
    164  1.12   mycroft 
    165  1.12   mycroft struct hostlist {
    166  1.31      fvdl 	int		 ht_flag;	/* Uses DP_xx bits */
    167  1.12   mycroft 	struct grouplist *ht_grp;
    168  1.12   mycroft 	struct hostlist	 *ht_next;
    169   1.1       cgd };
    170   1.1       cgd 
    171  1.31      fvdl struct fhreturn {
    172  1.31      fvdl 	int	fhr_flag;
    173  1.31      fvdl 	int	fhr_vers;
    174  1.31      fvdl 	nfsfh_t	fhr_fh;
    175  1.31      fvdl };
    176  1.31      fvdl 
    177   1.1       cgd /* Global defs */
    178  1.12   mycroft char	*add_expdir __P((struct dirlist **, char *, int));
    179  1.12   mycroft void	add_dlist __P((struct dirlist **, struct dirlist *,
    180  1.31      fvdl 				struct grouplist *, int));
    181  1.36      fvdl void	add_mlist __P((char *, char *, int));
    182  1.12   mycroft int	check_dirpath __P((char *));
    183  1.12   mycroft int	check_options __P((struct dirlist *));
    184  1.36      fvdl int	chk_host __P((struct dirlist *, u_int32_t, int *, int *));
    185  1.36      fvdl int	del_mlist __P((char *, char *, struct sockaddr *));
    186  1.12   mycroft struct dirlist *dirp_search __P((struct dirlist *, char *));
    187  1.12   mycroft int	do_mount __P((struct exportlist *, struct grouplist *, int,
    188  1.31      fvdl 		struct ucred *, char *, int, struct statfs *));
    189  1.12   mycroft int	do_opt __P((char **, char **, struct exportlist *, struct grouplist *,
    190  1.12   mycroft 				int *, int *, struct ucred *));
    191  1.12   mycroft struct	exportlist *ex_search __P((fsid_t *));
    192  1.12   mycroft struct	exportlist *get_exp __P((void));
    193  1.12   mycroft void	free_dir __P((struct dirlist *));
    194  1.12   mycroft void	free_exp __P((struct exportlist *));
    195  1.12   mycroft void	free_grp __P((struct grouplist *));
    196  1.12   mycroft void	free_host __P((struct hostlist *));
    197  1.45  christos void	get_exportlist __P((int));
    198  1.41     lukem int	get_host __P((const char *, struct grouplist *));
    199  1.31      fvdl int	get_num __P((char *));
    200  1.12   mycroft struct hostlist *get_ht __P((void));
    201  1.12   mycroft int	get_line __P((void));
    202  1.12   mycroft void	get_mountlist __P((void));
    203  1.12   mycroft int	get_net __P((char *, struct netmsk *, int));
    204  1.12   mycroft void	getexp_err __P((struct exportlist *, struct grouplist *));
    205  1.12   mycroft struct grouplist *get_grp __P((void));
    206  1.12   mycroft void	hang_dirp __P((struct dirlist *, struct grouplist *,
    207  1.12   mycroft 				struct exportlist *, int));
    208  1.41     lukem int	main __P((int, char *[]));
    209  1.12   mycroft void	mntsrv __P((struct svc_req *, SVCXPRT *));
    210  1.12   mycroft void	nextfield __P((char **, char **));
    211  1.12   mycroft void	out_of_mem __P((void));
    212  1.12   mycroft void	parsecred __P((char *, struct ucred *));
    213  1.12   mycroft int	put_exlist __P((struct dirlist *, XDR *, struct dirlist *, int *));
    214  1.36      fvdl int	scan_tree __P((struct dirlist *, u_int32_t));
    215  1.45  christos void	send_umntall __P((int));
    216  1.12   mycroft int	umntall_each __P((caddr_t, struct sockaddr_in *));
    217  1.12   mycroft int	xdr_dir __P((XDR *, char *));
    218  1.12   mycroft int	xdr_explist __P((XDR *, caddr_t));
    219  1.31      fvdl int	xdr_fhs __P((XDR *, caddr_t));
    220  1.12   mycroft int	xdr_mlist __P((XDR *, caddr_t));
    221  1.12   mycroft 
    222  1.12   mycroft struct exportlist *exphead;
    223   1.1       cgd struct mountlist *mlhead;
    224  1.12   mycroft struct grouplist *grphead;
    225  1.44       mrg char *exname;
    226  1.12   mycroft struct ucred def_anon = {
    227  1.12   mycroft 	1,
    228  1.12   mycroft 	(uid_t) -2,
    229  1.23       cgd 	(gid_t) -2,
    230  1.23       cgd 	0,
    231  1.24   mycroft 	{ }
    232  1.12   mycroft };
    233  1.12   mycroft int opt_flags;
    234  1.12   mycroft /* Bits for above */
    235  1.37      fvdl #define	OP_MAPROOT	0x001
    236  1.37      fvdl #define	OP_MAPALL	0x002
    237  1.37      fvdl #define	OP_KERB		0x004
    238  1.37      fvdl #define	OP_MASK		0x008
    239  1.37      fvdl #define	OP_NET		0x010
    240  1.37      fvdl #define	OP_ISO		0x020
    241  1.37      fvdl #define	OP_ALLDIRS	0x040
    242  1.37      fvdl #define OP_NORESPORT	0x080
    243  1.37      fvdl #define OP_NORESMNT	0x100
    244  1.12   mycroft 
    245  1.28   thorpej int debug = 0;
    246  1.12   mycroft void	SYSLOG __P((int, const char *, ...));
    247  1.45  christos int	main __P((int, char *[]));
    248   1.1       cgd 
    249   1.1       cgd /*
    250   1.1       cgd  * Mountd server for NFS mount protocol as described in:
    251   1.1       cgd  * NFS: Network File System Protocol Specification, RFC1094, Appendix A
    252   1.1       cgd  * The optional arguments are the exports file name
    253   1.1       cgd  * default: _PATH_EXPORTS
    254  1.28   thorpej  * "-d" to enable debugging
    255   1.1       cgd  * and "-n" to allow nonroot mount.
    256   1.1       cgd  */
    257  1.12   mycroft int
    258   1.1       cgd main(argc, argv)
    259   1.1       cgd 	int argc;
    260   1.1       cgd 	char **argv;
    261   1.1       cgd {
    262  1.16   mycroft 	SVCXPRT *udptransp, *tcptransp;
    263  1.44       mrg 	FILE *pidfile;
    264   1.6    brezak 	int c;
    265   1.1       cgd 
    266  1.41     lukem 	while ((c = getopt(argc, argv, "dnr")) != -1)
    267   1.1       cgd 		switch (c) {
    268  1.28   thorpej 		case 'd':
    269  1.28   thorpej 			debug = 1;
    270  1.28   thorpej 			break;
    271  1.44       mrg 			/* Compatibility */
    272   1.1       cgd 		case 'n':
    273  1.31      fvdl 		case 'r':
    274  1.31      fvdl 			break;
    275   1.1       cgd 		default:
    276  1.44       mrg 			fprintf(stderr, "Usage: mountd [-d] [export_file]\n");
    277   1.1       cgd 			exit(1);
    278   1.1       cgd 		};
    279   1.1       cgd 	argc -= optind;
    280   1.1       cgd 	argv += optind;
    281  1.12   mycroft 	grphead = (struct grouplist *)NULL;
    282  1.12   mycroft 	exphead = (struct exportlist *)NULL;
    283  1.12   mycroft 	mlhead = (struct mountlist *)NULL;
    284  1.44       mrg 	if (argc == 1)
    285  1.44       mrg 		exname = *argv;
    286  1.44       mrg 	else
    287  1.44       mrg 		exname = _PATH_EXPORTS;
    288  1.12   mycroft 	openlog("mountd", LOG_PID, LOG_DAEMON);
    289  1.12   mycroft 	if (debug)
    290  1.32       mrg 		fprintf(stderr, "Getting export list.\n");
    291  1.45  christos 	get_exportlist(0);
    292  1.12   mycroft 	if (debug)
    293  1.32       mrg 		fprintf(stderr, "Getting mount list.\n");
    294  1.12   mycroft 	get_mountlist();
    295  1.12   mycroft 	if (debug)
    296  1.32       mrg 		fprintf(stderr, "Here we go.\n");
    297  1.12   mycroft 	if (debug == 0) {
    298   1.1       cgd 		daemon(0, 0);
    299   1.1       cgd 		signal(SIGINT, SIG_IGN);
    300   1.1       cgd 		signal(SIGQUIT, SIG_IGN);
    301   1.1       cgd 	}
    302  1.45  christos 	(void)signal(SIGHUP, get_exportlist);
    303  1.45  christos 	(void)signal(SIGTERM, send_umntall);
    304  1.44       mrg 	pidfile = fopen(_PATH_MOUNTDPID, "w");
    305  1.44       mrg 	if (pidfile != NULL) {
    306  1.12   mycroft 		fprintf(pidfile, "%d\n", getpid());
    307  1.12   mycroft 		fclose(pidfile);
    308  1.12   mycroft 	}
    309  1.16   mycroft 	if ((udptransp = svcudp_create(RPC_ANYSOCK)) == NULL ||
    310  1.16   mycroft 	    (tcptransp = svctcp_create(RPC_ANYSOCK, 0, 0)) == NULL) {
    311  1.12   mycroft 		syslog(LOG_ERR, "Can't create socket");
    312   1.1       cgd 		exit(1);
    313   1.1       cgd 	}
    314  1.12   mycroft 	pmap_unset(RPCPROG_MNT, RPCMNT_VER1);
    315  1.31      fvdl 	pmap_unset(RPCPROG_MNT, RPCMNT_VER3);
    316  1.16   mycroft 	if (!svc_register(udptransp, RPCPROG_MNT, RPCMNT_VER1, mntsrv,
    317  1.31      fvdl 		IPPROTO_UDP) ||
    318  1.31      fvdl 	    !svc_register(udptransp, RPCPROG_MNT, RPCMNT_VER3, mntsrv,
    319  1.31      fvdl 		IPPROTO_UDP) ||
    320  1.16   mycroft 	    !svc_register(tcptransp, RPCPROG_MNT, RPCMNT_VER1, mntsrv,
    321  1.31      fvdl 		IPPROTO_TCP) ||
    322  1.31      fvdl 	    !svc_register(tcptransp, RPCPROG_MNT, RPCMNT_VER3, mntsrv,
    323  1.31      fvdl 		IPPROTO_TCP)) {
    324   1.1       cgd 		syslog(LOG_ERR, "Can't register mount");
    325   1.1       cgd 		exit(1);
    326   1.1       cgd 	}
    327  1.45  christos 
    328  1.45  christos #ifdef KERBEROS
    329  1.45  christos 	kuidinit();
    330  1.45  christos #endif
    331   1.1       cgd 	svc_run();
    332   1.1       cgd 	syslog(LOG_ERR, "Mountd died");
    333   1.1       cgd 	exit(1);
    334   1.1       cgd }
    335   1.1       cgd 
    336   1.1       cgd /*
    337   1.1       cgd  * The mount rpc service
    338   1.1       cgd  */
    339   1.6    brezak void
    340   1.1       cgd mntsrv(rqstp, transp)
    341  1.12   mycroft 	struct svc_req *rqstp;
    342  1.12   mycroft 	SVCXPRT *transp;
    343   1.1       cgd {
    344  1.12   mycroft 	struct exportlist *ep;
    345  1.12   mycroft 	struct dirlist *dp;
    346  1.31      fvdl 	struct fhreturn fhr;
    347   1.1       cgd 	struct stat stb;
    348  1.12   mycroft 	struct statfs fsb;
    349   1.1       cgd 	struct hostent *hp;
    350  1.36      fvdl 	struct in_addr saddr;
    351  1.14       cgd 	u_short sport;
    352  1.12   mycroft 	char rpcpath[RPCMNT_PATHLEN+1], dirpath[MAXPATHLEN];
    353  1.40     lukem 	long bad = EACCES;
    354  1.36      fvdl 	int defset, hostset, ret;
    355  1.31      fvdl 	sigset_t sighup_mask;
    356   1.1       cgd 
    357  1.31      fvdl 	sigemptyset(&sighup_mask);
    358  1.31      fvdl 	sigaddset(&sighup_mask, SIGHUP);
    359  1.36      fvdl 	saddr = transp->xp_raddr.sin_addr;
    360  1.14       cgd 	sport = ntohs(transp->xp_raddr.sin_port);
    361  1.12   mycroft 	hp = (struct hostent *)NULL;
    362  1.45  christos #ifdef KERBEROS
    363  1.45  christos 	kuidreset();
    364  1.45  christos #endif
    365  1.41     lukem 	ret = 0;
    366   1.1       cgd 	switch (rqstp->rq_proc) {
    367   1.1       cgd 	case NULLPROC:
    368  1.12   mycroft 		if (!svc_sendreply(transp, xdr_void, (caddr_t)NULL))
    369   1.1       cgd 			syslog(LOG_ERR, "Can't send reply");
    370   1.1       cgd 		return;
    371  1.45  christos 	case MOUNTPROC_MNT:
    372  1.12   mycroft 		if (!svc_getargs(transp, xdr_dir, rpcpath)) {
    373   1.1       cgd 			svcerr_decode(transp);
    374   1.1       cgd 			return;
    375   1.1       cgd 		}
    376   1.1       cgd 
    377  1.12   mycroft 		/*
    378  1.14       cgd 		 * Get the real pathname and make sure it is a file or
    379  1.14       cgd 		 * directory that exists.
    380  1.12   mycroft 		 */
    381  1.12   mycroft 		if (realpath(rpcpath, dirpath) == 0 ||
    382  1.12   mycroft 		    stat(dirpath, &stb) < 0 ||
    383  1.12   mycroft 		    (!S_ISDIR(stb.st_mode) && !S_ISREG(stb.st_mode)) ||
    384  1.12   mycroft 		    statfs(dirpath, &fsb) < 0) {
    385  1.12   mycroft 			chdir("/");	/* Just in case realpath doesn't */
    386  1.12   mycroft 			if (debug)
    387  1.12   mycroft 				fprintf(stderr, "stat failed on %s\n", dirpath);
    388   1.1       cgd 			if (!svc_sendreply(transp, xdr_long, (caddr_t)&bad))
    389   1.1       cgd 				syslog(LOG_ERR, "Can't send reply");
    390   1.1       cgd 			return;
    391   1.1       cgd 		}
    392   1.1       cgd 
    393   1.1       cgd 		/* Check in the exports list */
    394  1.31      fvdl 		sigprocmask(SIG_BLOCK, &sighup_mask, NULL);
    395  1.12   mycroft 		ep = ex_search(&fsb.f_fsid);
    396  1.31      fvdl 		hostset = defset = 0;
    397  1.36      fvdl 		if (ep && (chk_host(ep->ex_defdir, saddr.s_addr, &defset,
    398  1.36      fvdl 		    &hostset) || ((dp = dirp_search(ep->ex_dirl, dirpath)) &&
    399  1.36      fvdl 		     chk_host(dp, saddr.s_addr, &defset, &hostset)) ||
    400  1.36      fvdl 		     (defset && scan_tree(ep->ex_defdir, saddr.s_addr) == 0 &&
    401  1.36      fvdl 		      scan_tree(ep->ex_dirl, saddr.s_addr) == 0))) {
    402  1.36      fvdl 			if (sport >= IPPORT_RESERVED &&
    403  1.37      fvdl 			    !(hostset & DP_NORESMNT)) {
    404  1.36      fvdl 				syslog(LOG_NOTICE,
    405  1.36      fvdl 				       "Refused mount RPC from host %s port %d",
    406  1.36      fvdl 				       inet_ntoa(saddr), sport);
    407  1.36      fvdl 				svcerr_weakauth(transp);
    408  1.44       mrg 				goto out;
    409  1.36      fvdl 			}
    410  1.31      fvdl 			if (hostset & DP_HOSTSET)
    411  1.31      fvdl 				fhr.fhr_flag = hostset;
    412  1.31      fvdl 			else
    413  1.31      fvdl 				fhr.fhr_flag = defset;
    414  1.31      fvdl 			fhr.fhr_vers = rqstp->rq_vers;
    415  1.12   mycroft 			/* Get the file handle */
    416  1.31      fvdl 			memset(&fhr.fhr_fh, 0, sizeof(nfsfh_t));
    417  1.31      fvdl 			if (getfh(dirpath, (fhandle_t *)&fhr.fhr_fh) < 0) {
    418  1.12   mycroft 				bad = errno;
    419  1.12   mycroft 				syslog(LOG_ERR, "Can't get fh for %s", dirpath);
    420  1.12   mycroft 				if (!svc_sendreply(transp, xdr_long,
    421  1.12   mycroft 				    (caddr_t)&bad))
    422  1.12   mycroft 					syslog(LOG_ERR, "Can't send reply");
    423  1.44       mrg 				goto out;
    424   1.1       cgd 			}
    425  1.31      fvdl 			if (!svc_sendreply(transp, xdr_fhs, (caddr_t)&fhr))
    426  1.12   mycroft 				syslog(LOG_ERR, "Can't send reply");
    427  1.12   mycroft 			if (hp == NULL)
    428  1.12   mycroft 				hp = gethostbyaddr((caddr_t)&saddr,
    429  1.12   mycroft 				    sizeof(saddr), AF_INET);
    430  1.12   mycroft 			if (hp)
    431  1.36      fvdl 				add_mlist(hp->h_name, dirpath, hostset);
    432  1.12   mycroft 			else
    433  1.12   mycroft 				add_mlist(inet_ntoa(transp->xp_raddr.sin_addr),
    434  1.36      fvdl 					dirpath, hostset);
    435  1.12   mycroft 			if (debug)
    436  1.34   thorpej 				fprintf(stderr, "Mount successful.\n");
    437  1.12   mycroft 		} else {
    438   1.1       cgd 			if (!svc_sendreply(transp, xdr_long, (caddr_t)&bad))
    439   1.1       cgd 				syslog(LOG_ERR, "Can't send reply");
    440   1.1       cgd 		}
    441  1.44       mrg out:
    442  1.31      fvdl 		sigprocmask(SIG_UNBLOCK, &sighup_mask, NULL);
    443   1.1       cgd 		return;
    444  1.45  christos 	case MOUNTPROC_DUMP:
    445  1.12   mycroft 		if (!svc_sendreply(transp, xdr_mlist, (caddr_t)NULL))
    446   1.1       cgd 			syslog(LOG_ERR, "Can't send reply");
    447   1.1       cgd 		return;
    448  1.45  christos 	case MOUNTPROC_UMNT:
    449  1.36      fvdl 		if (!svc_getargs(transp, xdr_dir, dirpath)) {
    450  1.36      fvdl 			svcerr_decode(transp);
    451   1.1       cgd 			return;
    452   1.1       cgd 		}
    453  1.36      fvdl 		hp = gethostbyaddr((caddr_t)&saddr, sizeof(saddr), AF_INET);
    454  1.36      fvdl 		if (hp)
    455  1.36      fvdl 			ret = del_mlist(hp->h_name, dirpath,
    456  1.36      fvdl 			    (struct sockaddr *)&transp->xp_raddr);
    457  1.36      fvdl 		ret |= del_mlist(inet_ntoa(transp->xp_raddr.sin_addr), dirpath,
    458  1.36      fvdl 			    (struct sockaddr *)&transp->xp_raddr);
    459  1.36      fvdl 		if (ret) {
    460  1.36      fvdl 			svcerr_weakauth(transp);
    461   1.1       cgd 			return;
    462   1.1       cgd 		}
    463  1.12   mycroft 		if (!svc_sendreply(transp, xdr_void, (caddr_t)NULL))
    464   1.1       cgd 			syslog(LOG_ERR, "Can't send reply");
    465  1.36      fvdl 		return;
    466  1.45  christos 	case MOUNTPROC_UMNTALL:
    467   1.1       cgd 		hp = gethostbyaddr((caddr_t)&saddr, sizeof(saddr), AF_INET);
    468   1.1       cgd 		if (hp)
    469  1.36      fvdl 			ret = del_mlist(hp->h_name, (char *)NULL,
    470  1.36      fvdl 			    (struct sockaddr *)&transp->xp_raddr);
    471  1.36      fvdl 		ret |= del_mlist(inet_ntoa(transp->xp_raddr.sin_addr),
    472  1.36      fvdl 			    (char *)NULL,
    473  1.36      fvdl 			    (struct sockaddr *)&transp->xp_raddr);
    474  1.36      fvdl 		if (ret) {
    475   1.1       cgd 			svcerr_weakauth(transp);
    476   1.1       cgd 			return;
    477   1.1       cgd 		}
    478  1.36      fvdl 
    479  1.12   mycroft 		if (!svc_sendreply(transp, xdr_void, (caddr_t)NULL))
    480   1.1       cgd 			syslog(LOG_ERR, "Can't send reply");
    481   1.1       cgd 		return;
    482  1.45  christos 	case MOUNTPROC_EXPORT:
    483  1.45  christos 	case MOUNTPROC_EXPORTALL:
    484  1.12   mycroft 		if (!svc_sendreply(transp, xdr_explist, (caddr_t)NULL))
    485   1.1       cgd 			syslog(LOG_ERR, "Can't send reply");
    486   1.1       cgd 		return;
    487  1.45  christos 
    488  1.45  christos #ifdef KERBEROS
    489  1.45  christos 	case MOUNTPROC_KUIDMAP:
    490  1.45  christos 	case MOUNTPROC_KUIDUMAP:
    491  1.45  christos 	case MOUNTPROC_KUIDPURGE:
    492  1.45  christos 	case MOUNTPROC_KUIDUPURGE:
    493  1.45  christos 		kuidops(rqstp, transp);
    494  1.45  christos 		return;
    495  1.45  christos #endif
    496  1.45  christos 
    497   1.1       cgd 	default:
    498   1.1       cgd 		svcerr_noproc(transp);
    499   1.1       cgd 		return;
    500   1.1       cgd 	}
    501   1.1       cgd }
    502   1.1       cgd 
    503   1.1       cgd /*
    504   1.1       cgd  * Xdr conversion for a dirpath string
    505   1.1       cgd  */
    506  1.12   mycroft int
    507   1.1       cgd xdr_dir(xdrsp, dirp)
    508   1.1       cgd 	XDR *xdrsp;
    509   1.1       cgd 	char *dirp;
    510   1.1       cgd {
    511  1.44       mrg 
    512  1.12   mycroft 	return (xdr_string(xdrsp, &dirp, RPCMNT_PATHLEN));
    513   1.1       cgd }
    514   1.1       cgd 
    515   1.1       cgd /*
    516  1.31      fvdl  * Xdr routine to generate file handle reply
    517   1.1       cgd  */
    518  1.12   mycroft int
    519  1.31      fvdl xdr_fhs(xdrsp, cp)
    520   1.1       cgd 	XDR *xdrsp;
    521  1.31      fvdl 	caddr_t cp;
    522   1.1       cgd {
    523  1.44       mrg 	struct fhreturn *fhrp = (struct fhreturn *)cp;
    524  1.31      fvdl 	long ok = 0, len, auth;
    525   1.1       cgd 
    526   1.1       cgd 	if (!xdr_long(xdrsp, &ok))
    527   1.1       cgd 		return (0);
    528  1.31      fvdl 	switch (fhrp->fhr_vers) {
    529  1.31      fvdl 	case 1:
    530  1.31      fvdl 		return (xdr_opaque(xdrsp, (caddr_t)&fhrp->fhr_fh, NFSX_V2FH));
    531  1.31      fvdl 	case 3:
    532  1.31      fvdl 		len = NFSX_V3FH;
    533  1.31      fvdl 		if (!xdr_long(xdrsp, &len))
    534  1.31      fvdl 			return (0);
    535  1.31      fvdl 		if (!xdr_opaque(xdrsp, (caddr_t)&fhrp->fhr_fh, len))
    536  1.31      fvdl 			return (0);
    537  1.31      fvdl 		if (fhrp->fhr_flag & DP_KERB)
    538  1.31      fvdl 			auth = RPCAUTH_KERB4;
    539  1.31      fvdl 		else
    540  1.31      fvdl 			auth = RPCAUTH_UNIX;
    541  1.31      fvdl 		len = 1;
    542  1.31      fvdl 		if (!xdr_long(xdrsp, &len))
    543  1.31      fvdl 			return (0);
    544  1.31      fvdl 		return (xdr_long(xdrsp, &auth));
    545  1.31      fvdl 	};
    546  1.31      fvdl 	return (0);
    547   1.1       cgd }
    548   1.1       cgd 
    549  1.12   mycroft int
    550   1.1       cgd xdr_mlist(xdrsp, cp)
    551   1.1       cgd 	XDR *xdrsp;
    552   1.1       cgd 	caddr_t cp;
    553   1.1       cgd {
    554  1.12   mycroft 	struct mountlist *mlp;
    555   1.1       cgd 	int true = 1;
    556   1.1       cgd 	int false = 0;
    557   1.1       cgd 	char *strp;
    558   1.1       cgd 
    559   1.1       cgd 	mlp = mlhead;
    560   1.1       cgd 	while (mlp) {
    561   1.1       cgd 		if (!xdr_bool(xdrsp, &true))
    562   1.1       cgd 			return (0);
    563   1.1       cgd 		strp = &mlp->ml_host[0];
    564  1.12   mycroft 		if (!xdr_string(xdrsp, &strp, RPCMNT_NAMELEN))
    565   1.1       cgd 			return (0);
    566   1.1       cgd 		strp = &mlp->ml_dirp[0];
    567  1.12   mycroft 		if (!xdr_string(xdrsp, &strp, RPCMNT_PATHLEN))
    568   1.1       cgd 			return (0);
    569   1.1       cgd 		mlp = mlp->ml_next;
    570   1.1       cgd 	}
    571   1.1       cgd 	if (!xdr_bool(xdrsp, &false))
    572   1.1       cgd 		return (0);
    573   1.1       cgd 	return (1);
    574   1.1       cgd }
    575   1.1       cgd 
    576   1.1       cgd /*
    577   1.1       cgd  * Xdr conversion for export list
    578   1.1       cgd  */
    579  1.12   mycroft int
    580   1.1       cgd xdr_explist(xdrsp, cp)
    581   1.1       cgd 	XDR *xdrsp;
    582   1.1       cgd 	caddr_t cp;
    583   1.1       cgd {
    584  1.12   mycroft 	struct exportlist *ep;
    585   1.1       cgd 	int false = 0;
    586  1.20   mycroft 	int putdef;
    587  1.31      fvdl 	sigset_t sighup_mask;
    588   1.1       cgd 
    589  1.31      fvdl 	sigemptyset(&sighup_mask);
    590  1.31      fvdl 	sigaddset(&sighup_mask, SIGHUP);
    591  1.31      fvdl 	sigprocmask(SIG_BLOCK, &sighup_mask, NULL);
    592  1.12   mycroft 	ep = exphead;
    593  1.12   mycroft 	while (ep) {
    594  1.12   mycroft 		putdef = 0;
    595  1.12   mycroft 		if (put_exlist(ep->ex_dirl, xdrsp, ep->ex_defdir, &putdef))
    596   1.1       cgd 			goto errout;
    597  1.12   mycroft 		if (ep->ex_defdir && putdef == 0 &&
    598  1.12   mycroft 			put_exlist(ep->ex_defdir, xdrsp, (struct dirlist *)NULL,
    599  1.12   mycroft 			&putdef))
    600   1.1       cgd 			goto errout;
    601   1.1       cgd 		ep = ep->ex_next;
    602   1.1       cgd 	}
    603  1.31      fvdl 	sigprocmask(SIG_UNBLOCK, &sighup_mask, NULL);
    604   1.1       cgd 	if (!xdr_bool(xdrsp, &false))
    605   1.1       cgd 		return (0);
    606   1.1       cgd 	return (1);
    607   1.1       cgd errout:
    608  1.31      fvdl 	sigprocmask(SIG_UNBLOCK, &sighup_mask, NULL);
    609   1.1       cgd 	return (0);
    610   1.1       cgd }
    611   1.1       cgd 
    612  1.12   mycroft /*
    613  1.12   mycroft  * Called from xdr_explist() to traverse the tree and export the
    614  1.44       mrg  * directory paths.  Assumes SIGHUP has already been masked.
    615  1.12   mycroft  */
    616  1.12   mycroft int
    617  1.12   mycroft put_exlist(dp, xdrsp, adp, putdefp)
    618  1.12   mycroft 	struct dirlist *dp;
    619  1.12   mycroft 	XDR *xdrsp;
    620  1.12   mycroft 	struct dirlist *adp;
    621  1.12   mycroft 	int *putdefp;
    622  1.12   mycroft {
    623  1.12   mycroft 	struct grouplist *grp;
    624  1.12   mycroft 	struct hostlist *hp;
    625  1.12   mycroft 	int true = 1;
    626  1.12   mycroft 	int false = 0;
    627  1.12   mycroft 	int gotalldir = 0;
    628  1.12   mycroft 	char *strp;
    629  1.12   mycroft 
    630  1.12   mycroft 	if (dp) {
    631  1.12   mycroft 		if (put_exlist(dp->dp_left, xdrsp, adp, putdefp))
    632  1.12   mycroft 			return (1);
    633  1.12   mycroft 		if (!xdr_bool(xdrsp, &true))
    634  1.12   mycroft 			return (1);
    635  1.12   mycroft 		strp = dp->dp_dirp;
    636  1.12   mycroft 		if (!xdr_string(xdrsp, &strp, RPCMNT_PATHLEN))
    637  1.12   mycroft 			return (1);
    638  1.12   mycroft 		if (adp && !strcmp(dp->dp_dirp, adp->dp_dirp)) {
    639  1.12   mycroft 			gotalldir = 1;
    640  1.12   mycroft 			*putdefp = 1;
    641  1.12   mycroft 		}
    642  1.12   mycroft 		if ((dp->dp_flag & DP_DEFSET) == 0 &&
    643  1.12   mycroft 		    (gotalldir == 0 || (adp->dp_flag & DP_DEFSET) == 0)) {
    644  1.12   mycroft 			hp = dp->dp_hosts;
    645  1.12   mycroft 			while (hp) {
    646  1.12   mycroft 				grp = hp->ht_grp;
    647  1.12   mycroft 				if (grp->gr_type == GT_HOST) {
    648  1.12   mycroft 					if (!xdr_bool(xdrsp, &true))
    649  1.12   mycroft 						return (1);
    650  1.12   mycroft 					strp = grp->gr_ptr.gt_hostent->h_name;
    651  1.12   mycroft 					if (!xdr_string(xdrsp, &strp,
    652  1.12   mycroft 					    RPCMNT_NAMELEN))
    653  1.12   mycroft 						return (1);
    654  1.12   mycroft 				} else if (grp->gr_type == GT_NET) {
    655  1.12   mycroft 					if (!xdr_bool(xdrsp, &true))
    656  1.12   mycroft 						return (1);
    657  1.12   mycroft 					strp = grp->gr_ptr.gt_net.nt_name;
    658  1.12   mycroft 					if (!xdr_string(xdrsp, &strp,
    659  1.12   mycroft 					    RPCMNT_NAMELEN))
    660  1.12   mycroft 						return (1);
    661  1.12   mycroft 				}
    662  1.12   mycroft 				hp = hp->ht_next;
    663  1.12   mycroft 				if (gotalldir && hp == (struct hostlist *)NULL) {
    664  1.12   mycroft 					hp = adp->dp_hosts;
    665  1.12   mycroft 					gotalldir = 0;
    666  1.12   mycroft 				}
    667  1.12   mycroft 			}
    668  1.12   mycroft 		}
    669  1.12   mycroft 		if (!xdr_bool(xdrsp, &false))
    670  1.12   mycroft 			return (1);
    671  1.12   mycroft 		if (put_exlist(dp->dp_right, xdrsp, adp, putdefp))
    672  1.12   mycroft 			return (1);
    673  1.12   mycroft 	}
    674  1.12   mycroft 	return (0);
    675  1.12   mycroft }
    676  1.12   mycroft 
    677  1.46      ross static char *
    678  1.46      ross intern(char *str)
    679  1.46      ross {
    680  1.46      ross 	return strcpy(malloc(strlen(str) + 1), str);
    681  1.46      ross }
    682  1.46      ross 
    683   1.1       cgd #define LINESIZ	10240
    684   1.1       cgd char line[LINESIZ];
    685  1.12   mycroft FILE *exp_file;
    686   1.1       cgd 
    687   1.1       cgd /*
    688   1.1       cgd  * Get the export list
    689   1.1       cgd  */
    690  1.45  christos /*ARGSUSED*/
    691   1.1       cgd void
    692  1.45  christos get_exportlist(n)
    693  1.45  christos 	int n;
    694   1.1       cgd {
    695  1.12   mycroft 	struct exportlist *ep, *ep2;
    696  1.12   mycroft 	struct grouplist *grp, *tgrp;
    697  1.12   mycroft 	struct exportlist **epp;
    698  1.12   mycroft 	struct dirlist *dirhead;
    699  1.12   mycroft 	struct statfs fsb, *fsp;
    700  1.12   mycroft 	struct hostent *hpe;
    701  1.12   mycroft 	struct ucred anon;
    702  1.41     lukem 	char *cp, *endcp, *dirp, savedc;
    703  1.41     lukem 	const char *hst, *usr, *dom;
    704  1.12   mycroft 	int len, has_host, exflags, got_nondir, dirplen, num, i, netgrp;
    705  1.12   mycroft 
    706   1.1       cgd 	/*
    707   1.1       cgd 	 * First, get rid of the old list
    708   1.1       cgd 	 */
    709  1.12   mycroft 	ep = exphead;
    710  1.12   mycroft 	while (ep) {
    711   1.1       cgd 		ep2 = ep;
    712   1.1       cgd 		ep = ep->ex_next;
    713   1.1       cgd 		free_exp(ep2);
    714   1.1       cgd 	}
    715  1.12   mycroft 	exphead = (struct exportlist *)NULL;
    716  1.12   mycroft 
    717  1.41     lukem 	dirp = NULL;
    718  1.41     lukem 	dirplen = 0;
    719  1.12   mycroft 	grp = grphead;
    720  1.12   mycroft 	while (grp) {
    721  1.12   mycroft 		tgrp = grp;
    722  1.12   mycroft 		grp = grp->gr_next;
    723  1.12   mycroft 		free_grp(tgrp);
    724  1.12   mycroft 	}
    725  1.12   mycroft 	grphead = (struct grouplist *)NULL;
    726  1.12   mycroft 
    727  1.12   mycroft 	/*
    728  1.12   mycroft 	 * And delete exports that are in the kernel for all local
    729  1.12   mycroft 	 * file systems.
    730  1.12   mycroft 	 * XXX: Should know how to handle all local exportable file systems
    731  1.30       jtc 	 *      instead of just MOUNT_FFS.
    732  1.12   mycroft 	 */
    733  1.12   mycroft 	num = getmntinfo(&fsp, MNT_NOWAIT);
    734  1.12   mycroft 	for (i = 0; i < num; i++) {
    735  1.12   mycroft 		union {
    736  1.12   mycroft 			struct ufs_args ua;
    737  1.12   mycroft 			struct iso_args ia;
    738  1.12   mycroft 			struct mfs_args ma;
    739  1.13        ws 			struct msdosfs_args da;
    740  1.27    chopps 			struct adosfs_args aa;
    741  1.12   mycroft 		} targs;
    742  1.12   mycroft 
    743  1.25       cgd 		if (!strncmp(fsp->f_fstypename, MOUNT_MFS, MFSNAMELEN) ||
    744  1.30       jtc 		    !strncmp(fsp->f_fstypename, MOUNT_FFS, MFSNAMELEN) ||
    745  1.39    bouyer 		    !strncmp(fsp->f_fstypename, MOUNT_EXT2FS, MFSNAMELEN) ||
    746  1.25       cgd 		    !strncmp(fsp->f_fstypename, MOUNT_MSDOS, MFSNAMELEN) ||
    747  1.27    chopps 		    !strncmp(fsp->f_fstypename, MOUNT_ADOSFS, MFSNAMELEN) ||
    748  1.25       cgd 		    !strncmp(fsp->f_fstypename, MOUNT_CD9660, MFSNAMELEN)) {
    749  1.29   thorpej 			bzero((char *)&targs, sizeof(targs));
    750  1.12   mycroft 			targs.ua.fspec = NULL;
    751  1.12   mycroft 			targs.ua.export.ex_flags = MNT_DELEXPORT;
    752  1.12   mycroft 			if (mount(fsp->f_fstypename, fsp->f_mntonname,
    753  1.12   mycroft 				  fsp->f_flags | MNT_UPDATE,
    754  1.12   mycroft 				  (caddr_t)&targs) < 0)
    755  1.12   mycroft 				syslog(LOG_ERR, "Can't delete exports for %s",
    756  1.12   mycroft 				       fsp->f_mntonname);
    757  1.12   mycroft 		}
    758  1.12   mycroft 		fsp++;
    759  1.12   mycroft 	}
    760   1.1       cgd 
    761   1.1       cgd 	/*
    762   1.1       cgd 	 * Read in the exports file and build the list, calling
    763  1.12   mycroft 	 * mount() as we go along to push the export rules into the kernel.
    764   1.1       cgd 	 */
    765  1.12   mycroft 	if ((exp_file = fopen(exname, "r")) == NULL) {
    766  1.32       mrg 		syslog(LOG_ERR, "Can't open %s: %m", exname);
    767   1.1       cgd 		exit(2);
    768   1.1       cgd 	}
    769  1.12   mycroft 	dirhead = (struct dirlist *)NULL;
    770  1.12   mycroft 	while (get_line()) {
    771  1.12   mycroft 		if (debug)
    772  1.32       mrg 			fprintf(stderr, "Got line %s\n", line);
    773   1.1       cgd 		cp = line;
    774   1.1       cgd 		nextfield(&cp, &endcp);
    775  1.12   mycroft 		if (*cp == '#')
    776  1.12   mycroft 			goto nextline;
    777   1.1       cgd 
    778   1.1       cgd 		/*
    779  1.12   mycroft 		 * Set defaults.
    780   1.1       cgd 		 */
    781  1.12   mycroft 		has_host = FALSE;
    782  1.12   mycroft 		anon = def_anon;
    783  1.12   mycroft 		exflags = MNT_EXPORTED;
    784  1.12   mycroft 		got_nondir = 0;
    785  1.12   mycroft 		opt_flags = 0;
    786  1.12   mycroft 		ep = (struct exportlist *)NULL;
    787   1.1       cgd 
    788   1.1       cgd 		/*
    789   1.1       cgd 		 * Create new exports list entry
    790   1.1       cgd 		 */
    791   1.1       cgd 		len = endcp-cp;
    792  1.12   mycroft 		tgrp = grp = get_grp();
    793   1.1       cgd 		while (len > 0) {
    794  1.12   mycroft 			if (len > RPCMNT_NAMELEN) {
    795  1.12   mycroft 			    getexp_err(ep, tgrp);
    796  1.12   mycroft 			    goto nextline;
    797  1.12   mycroft 			}
    798   1.1       cgd 			if (*cp == '-') {
    799  1.12   mycroft 			    if (ep == (struct exportlist *)NULL) {
    800  1.12   mycroft 				getexp_err(ep, tgrp);
    801  1.12   mycroft 				goto nextline;
    802  1.12   mycroft 			    }
    803  1.12   mycroft 			    if (debug)
    804  1.12   mycroft 				fprintf(stderr, "doing opt %s\n", cp);
    805  1.12   mycroft 			    got_nondir = 1;
    806  1.12   mycroft 			    if (do_opt(&cp, &endcp, ep, grp, &has_host,
    807  1.12   mycroft 				&exflags, &anon)) {
    808  1.12   mycroft 				getexp_err(ep, tgrp);
    809  1.12   mycroft 				goto nextline;
    810  1.12   mycroft 			    }
    811  1.12   mycroft 			} else if (*cp == '/') {
    812  1.12   mycroft 			    savedc = *endcp;
    813  1.12   mycroft 			    *endcp = '\0';
    814  1.12   mycroft 			    if (check_dirpath(cp) &&
    815  1.12   mycroft 				statfs(cp, &fsb) >= 0) {
    816  1.12   mycroft 				if (got_nondir) {
    817  1.12   mycroft 				    syslog(LOG_ERR, "Dirs must be first");
    818  1.12   mycroft 				    getexp_err(ep, tgrp);
    819  1.12   mycroft 				    goto nextline;
    820  1.12   mycroft 				}
    821  1.12   mycroft 				if (ep) {
    822  1.12   mycroft 				    if (ep->ex_fs.val[0] != fsb.f_fsid.val[0] ||
    823  1.12   mycroft 					ep->ex_fs.val[1] != fsb.f_fsid.val[1]) {
    824  1.12   mycroft 					getexp_err(ep, tgrp);
    825  1.12   mycroft 					goto nextline;
    826  1.12   mycroft 				    }
    827  1.12   mycroft 				} else {
    828  1.12   mycroft 				    /*
    829  1.12   mycroft 				     * See if this directory is already
    830  1.12   mycroft 				     * in the list.
    831  1.12   mycroft 				     */
    832  1.12   mycroft 				    ep = ex_search(&fsb.f_fsid);
    833  1.12   mycroft 				    if (ep == (struct exportlist *)NULL) {
    834  1.12   mycroft 					ep = get_exp();
    835  1.12   mycroft 					ep->ex_fs = fsb.f_fsid;
    836  1.12   mycroft 					ep->ex_fsdir = (char *)
    837  1.12   mycroft 					    malloc(strlen(fsb.f_mntonname) + 1);
    838  1.12   mycroft 					if (ep->ex_fsdir)
    839  1.12   mycroft 					    strcpy(ep->ex_fsdir,
    840  1.12   mycroft 						fsb.f_mntonname);
    841  1.12   mycroft 					else
    842  1.12   mycroft 					    out_of_mem();
    843  1.12   mycroft 					if (debug)
    844  1.12   mycroft 					  fprintf(stderr,
    845  1.12   mycroft 					      "Making new ep fs=0x%x,0x%x\n",
    846  1.12   mycroft 					      fsb.f_fsid.val[0],
    847  1.12   mycroft 					      fsb.f_fsid.val[1]);
    848  1.12   mycroft 				    } else if (debug)
    849  1.12   mycroft 					fprintf(stderr,
    850  1.12   mycroft 					    "Found ep fs=0x%x,0x%x\n",
    851  1.12   mycroft 					    fsb.f_fsid.val[0],
    852  1.12   mycroft 					    fsb.f_fsid.val[1]);
    853  1.12   mycroft 				}
    854  1.12   mycroft 
    855  1.12   mycroft 				/*
    856  1.12   mycroft 				 * Add dirpath to export mount point.
    857  1.12   mycroft 				 */
    858  1.12   mycroft 				dirp = add_expdir(&dirhead, cp, len);
    859  1.12   mycroft 				dirplen = len;
    860  1.12   mycroft 			    } else {
    861  1.12   mycroft 				getexp_err(ep, tgrp);
    862  1.12   mycroft 				goto nextline;
    863  1.12   mycroft 			    }
    864  1.12   mycroft 			    *endcp = savedc;
    865  1.12   mycroft 			} else {
    866  1.12   mycroft 			    savedc = *endcp;
    867  1.12   mycroft 			    *endcp = '\0';
    868  1.12   mycroft 			    got_nondir = 1;
    869  1.12   mycroft 			    if (ep == (struct exportlist *)NULL) {
    870  1.12   mycroft 				getexp_err(ep, tgrp);
    871  1.12   mycroft 				goto nextline;
    872  1.12   mycroft 			    }
    873  1.12   mycroft 
    874  1.12   mycroft 			    /*
    875  1.12   mycroft 			     * Get the host or netgroup.
    876  1.12   mycroft 			     */
    877  1.12   mycroft 			    setnetgrent(cp);
    878  1.12   mycroft 			    netgrp = getnetgrent(&hst, &usr, &dom);
    879  1.12   mycroft 			    do {
    880  1.12   mycroft 				if (has_host) {
    881  1.12   mycroft 				    grp->gr_next = get_grp();
    882  1.12   mycroft 				    grp = grp->gr_next;
    883   1.1       cgd 				}
    884  1.12   mycroft 				if (netgrp) {
    885  1.45  christos 				    if (hst == NULL || get_host(hst, grp)) {
    886  1.45  christos 					syslog(LOG_ERR, "%s netgroup %s",
    887  1.45  christos 					    hst ? "Bad" : "No host in", cp);
    888  1.12   mycroft 					getexp_err(ep, tgrp);
    889  1.31      fvdl 					endnetgrent();
    890  1.12   mycroft 					goto nextline;
    891  1.12   mycroft 				    }
    892  1.12   mycroft 				} else if (get_host(cp, grp)) {
    893  1.12   mycroft 				    getexp_err(ep, tgrp);
    894  1.12   mycroft 				    goto nextline;
    895  1.12   mycroft 				}
    896  1.12   mycroft 				has_host = TRUE;
    897  1.12   mycroft 			    } while (netgrp && getnetgrent(&hst, &usr, &dom));
    898  1.12   mycroft 			    endnetgrent();
    899  1.12   mycroft 			    *endcp = savedc;
    900   1.1       cgd 			}
    901   1.1       cgd 			cp = endcp;
    902   1.1       cgd 			nextfield(&cp, &endcp);
    903   1.1       cgd 			len = endcp - cp;
    904   1.1       cgd 		}
    905  1.12   mycroft 		if (check_options(dirhead)) {
    906  1.12   mycroft 			getexp_err(ep, tgrp);
    907  1.12   mycroft 			goto nextline;
    908  1.12   mycroft 		}
    909  1.12   mycroft 		if (!has_host) {
    910  1.12   mycroft 			grp->gr_type = GT_HOST;
    911  1.12   mycroft 			if (debug)
    912  1.32       mrg 				fprintf(stderr, "Adding a default entry\n");
    913  1.12   mycroft 			/* add a default group and make the grp list NULL */
    914  1.12   mycroft 			hpe = (struct hostent *)malloc(sizeof(struct hostent));
    915  1.12   mycroft 			if (hpe == (struct hostent *)NULL)
    916  1.12   mycroft 				out_of_mem();
    917  1.46      ross 			hpe->h_name = intern("Default");
    918  1.12   mycroft 			hpe->h_addrtype = AF_INET;
    919  1.35       cgd 			hpe->h_length = sizeof (u_int32_t);
    920  1.12   mycroft 			hpe->h_addr_list = (char **)NULL;
    921  1.12   mycroft 			grp->gr_ptr.gt_hostent = hpe;
    922  1.12   mycroft 
    923  1.12   mycroft 		/*
    924  1.12   mycroft 		 * Don't allow a network export coincide with a list of
    925  1.12   mycroft 		 * host(s) on the same line.
    926  1.12   mycroft 		 */
    927  1.12   mycroft 		} else if ((opt_flags & OP_NET) && tgrp->gr_next) {
    928  1.12   mycroft 			getexp_err(ep, tgrp);
    929  1.12   mycroft 			goto nextline;
    930  1.12   mycroft 		}
    931  1.12   mycroft 
    932  1.12   mycroft 		/*
    933  1.12   mycroft 		 * Loop through hosts, pushing the exports into the kernel.
    934  1.12   mycroft 		 * After loop, tgrp points to the start of the list and
    935  1.12   mycroft 		 * grp points to the last entry in the list.
    936  1.12   mycroft 		 */
    937  1.12   mycroft 		grp = tgrp;
    938  1.12   mycroft 		do {
    939  1.12   mycroft 		    if (do_mount(ep, grp, exflags, &anon, dirp,
    940  1.12   mycroft 			dirplen, &fsb)) {
    941  1.12   mycroft 			getexp_err(ep, tgrp);
    942  1.12   mycroft 			goto nextline;
    943  1.12   mycroft 		    }
    944  1.12   mycroft 		} while (grp->gr_next && (grp = grp->gr_next));
    945  1.12   mycroft 
    946  1.12   mycroft 		/*
    947  1.12   mycroft 		 * Success. Update the data structures.
    948  1.12   mycroft 		 */
    949  1.12   mycroft 		if (has_host) {
    950  1.31      fvdl 			hang_dirp(dirhead, tgrp, ep, opt_flags);
    951  1.12   mycroft 			grp->gr_next = grphead;
    952  1.12   mycroft 			grphead = tgrp;
    953  1.12   mycroft 		} else {
    954  1.12   mycroft 			hang_dirp(dirhead, (struct grouplist *)NULL, ep,
    955  1.31      fvdl 				opt_flags);
    956  1.12   mycroft 			free_grp(grp);
    957  1.12   mycroft 		}
    958  1.12   mycroft 		dirhead = (struct dirlist *)NULL;
    959  1.12   mycroft 		if ((ep->ex_flag & EX_LINKED) == 0) {
    960  1.12   mycroft 			ep2 = exphead;
    961  1.12   mycroft 			epp = &exphead;
    962  1.12   mycroft 
    963  1.12   mycroft 			/*
    964  1.12   mycroft 			 * Insert in the list in alphabetical order.
    965  1.12   mycroft 			 */
    966  1.12   mycroft 			while (ep2 && strcmp(ep2->ex_fsdir, ep->ex_fsdir) < 0) {
    967  1.12   mycroft 				epp = &ep2->ex_next;
    968  1.12   mycroft 				ep2 = ep2->ex_next;
    969  1.12   mycroft 			}
    970  1.12   mycroft 			if (ep2)
    971  1.12   mycroft 				ep->ex_next = ep2;
    972  1.12   mycroft 			*epp = ep;
    973  1.12   mycroft 			ep->ex_flag |= EX_LINKED;
    974  1.12   mycroft 		}
    975  1.12   mycroft nextline:
    976  1.12   mycroft 		if (dirhead) {
    977  1.12   mycroft 			free_dir(dirhead);
    978  1.12   mycroft 			dirhead = (struct dirlist *)NULL;
    979  1.12   mycroft 		}
    980  1.12   mycroft 	}
    981  1.12   mycroft 	fclose(exp_file);
    982  1.12   mycroft }
    983  1.12   mycroft 
    984  1.12   mycroft /*
    985  1.12   mycroft  * Allocate an export list element
    986  1.12   mycroft  */
    987  1.12   mycroft struct exportlist *
    988  1.12   mycroft get_exp()
    989  1.12   mycroft {
    990  1.12   mycroft 	struct exportlist *ep;
    991  1.12   mycroft 
    992  1.12   mycroft 	ep = (struct exportlist *)malloc(sizeof (struct exportlist));
    993  1.12   mycroft 	if (ep == (struct exportlist *)NULL)
    994  1.12   mycroft 		out_of_mem();
    995  1.15   mycroft 	memset(ep, 0, sizeof(struct exportlist));
    996  1.12   mycroft 	return (ep);
    997  1.12   mycroft }
    998  1.12   mycroft 
    999  1.12   mycroft /*
   1000  1.12   mycroft  * Allocate a group list element
   1001  1.12   mycroft  */
   1002  1.12   mycroft struct grouplist *
   1003  1.12   mycroft get_grp()
   1004  1.12   mycroft {
   1005  1.12   mycroft 	struct grouplist *gp;
   1006  1.12   mycroft 
   1007  1.12   mycroft 	gp = (struct grouplist *)malloc(sizeof (struct grouplist));
   1008  1.12   mycroft 	if (gp == (struct grouplist *)NULL)
   1009  1.12   mycroft 		out_of_mem();
   1010  1.15   mycroft 	memset(gp, 0, sizeof(struct grouplist));
   1011  1.12   mycroft 	return (gp);
   1012  1.12   mycroft }
   1013  1.12   mycroft 
   1014  1.12   mycroft /*
   1015  1.12   mycroft  * Clean up upon an error in get_exportlist().
   1016  1.12   mycroft  */
   1017  1.12   mycroft void
   1018  1.12   mycroft getexp_err(ep, grp)
   1019  1.12   mycroft 	struct exportlist *ep;
   1020  1.12   mycroft 	struct grouplist *grp;
   1021  1.12   mycroft {
   1022  1.12   mycroft 	struct grouplist *tgrp;
   1023  1.12   mycroft 
   1024  1.12   mycroft 	syslog(LOG_ERR, "Bad exports list line %s", line);
   1025  1.12   mycroft 	if (ep && (ep->ex_flag & EX_LINKED) == 0)
   1026  1.12   mycroft 		free_exp(ep);
   1027  1.12   mycroft 	while (grp) {
   1028  1.12   mycroft 		tgrp = grp;
   1029  1.12   mycroft 		grp = grp->gr_next;
   1030  1.12   mycroft 		free_grp(tgrp);
   1031  1.12   mycroft 	}
   1032  1.12   mycroft }
   1033  1.12   mycroft 
   1034  1.12   mycroft /*
   1035  1.12   mycroft  * Search the export list for a matching fs.
   1036  1.12   mycroft  */
   1037  1.12   mycroft struct exportlist *
   1038  1.12   mycroft ex_search(fsid)
   1039  1.12   mycroft 	fsid_t *fsid;
   1040  1.12   mycroft {
   1041  1.12   mycroft 	struct exportlist *ep;
   1042  1.12   mycroft 
   1043  1.12   mycroft 	ep = exphead;
   1044  1.12   mycroft 	while (ep) {
   1045  1.12   mycroft 		if (ep->ex_fs.val[0] == fsid->val[0] &&
   1046  1.12   mycroft 		    ep->ex_fs.val[1] == fsid->val[1])
   1047  1.12   mycroft 			return (ep);
   1048  1.12   mycroft 		ep = ep->ex_next;
   1049  1.12   mycroft 	}
   1050  1.12   mycroft 	return (ep);
   1051  1.12   mycroft }
   1052  1.12   mycroft 
   1053  1.12   mycroft /*
   1054  1.12   mycroft  * Add a directory path to the list.
   1055  1.12   mycroft  */
   1056  1.12   mycroft char *
   1057  1.12   mycroft add_expdir(dpp, cp, len)
   1058  1.12   mycroft 	struct dirlist **dpp;
   1059  1.12   mycroft 	char *cp;
   1060  1.12   mycroft 	int len;
   1061  1.12   mycroft {
   1062  1.12   mycroft 	struct dirlist *dp;
   1063  1.12   mycroft 
   1064  1.12   mycroft 	dp = (struct dirlist *)malloc(sizeof (struct dirlist) + len);
   1065  1.12   mycroft 	dp->dp_left = *dpp;
   1066  1.12   mycroft 	dp->dp_right = (struct dirlist *)NULL;
   1067  1.12   mycroft 	dp->dp_flag = 0;
   1068  1.12   mycroft 	dp->dp_hosts = (struct hostlist *)NULL;
   1069  1.12   mycroft 	strcpy(dp->dp_dirp, cp);
   1070  1.12   mycroft 	*dpp = dp;
   1071  1.12   mycroft 	return (dp->dp_dirp);
   1072  1.12   mycroft }
   1073  1.12   mycroft 
   1074  1.12   mycroft /*
   1075  1.12   mycroft  * Hang the dir list element off the dirpath binary tree as required
   1076  1.12   mycroft  * and update the entry for host.
   1077  1.12   mycroft  */
   1078  1.12   mycroft void
   1079  1.31      fvdl hang_dirp(dp, grp, ep, flags)
   1080  1.12   mycroft 	struct dirlist *dp;
   1081  1.12   mycroft 	struct grouplist *grp;
   1082  1.12   mycroft 	struct exportlist *ep;
   1083  1.31      fvdl 	int flags;
   1084  1.12   mycroft {
   1085  1.12   mycroft 	struct hostlist *hp;
   1086  1.12   mycroft 	struct dirlist *dp2;
   1087  1.12   mycroft 
   1088  1.31      fvdl 	if (flags & OP_ALLDIRS) {
   1089  1.12   mycroft 		if (ep->ex_defdir)
   1090  1.12   mycroft 			free((caddr_t)dp);
   1091  1.12   mycroft 		else
   1092  1.12   mycroft 			ep->ex_defdir = dp;
   1093  1.31      fvdl 		if (grp == (struct grouplist *)NULL) {
   1094  1.12   mycroft 			ep->ex_defdir->dp_flag |= DP_DEFSET;
   1095  1.31      fvdl 			if (flags & OP_KERB)
   1096  1.31      fvdl 				ep->ex_defdir->dp_flag |= DP_KERB;
   1097  1.37      fvdl 			if (flags & OP_NORESMNT)
   1098  1.37      fvdl 				ep->ex_defdir->dp_flag |= DP_NORESMNT;
   1099  1.31      fvdl 		} else while (grp) {
   1100  1.12   mycroft 			hp = get_ht();
   1101  1.31      fvdl 			if (flags & OP_KERB)
   1102  1.31      fvdl 				hp->ht_flag |= DP_KERB;
   1103  1.37      fvdl 			if (flags & OP_NORESMNT)
   1104  1.37      fvdl 				hp->ht_flag |= DP_NORESMNT;
   1105  1.12   mycroft 			hp->ht_grp = grp;
   1106  1.12   mycroft 			hp->ht_next = ep->ex_defdir->dp_hosts;
   1107  1.12   mycroft 			ep->ex_defdir->dp_hosts = hp;
   1108  1.12   mycroft 			grp = grp->gr_next;
   1109  1.12   mycroft 		}
   1110  1.12   mycroft 	} else {
   1111  1.12   mycroft 
   1112  1.12   mycroft 		/*
   1113  1.12   mycroft 		 * Loop throught the directories adding them to the tree.
   1114  1.12   mycroft 		 */
   1115  1.12   mycroft 		while (dp) {
   1116  1.12   mycroft 			dp2 = dp->dp_left;
   1117  1.31      fvdl 			add_dlist(&ep->ex_dirl, dp, grp, flags);
   1118  1.12   mycroft 			dp = dp2;
   1119  1.12   mycroft 		}
   1120  1.12   mycroft 	}
   1121  1.12   mycroft }
   1122  1.12   mycroft 
   1123  1.12   mycroft /*
   1124  1.12   mycroft  * Traverse the binary tree either updating a node that is already there
   1125  1.12   mycroft  * for the new directory or adding the new node.
   1126  1.12   mycroft  */
   1127  1.12   mycroft void
   1128  1.31      fvdl add_dlist(dpp, newdp, grp, flags)
   1129  1.12   mycroft 	struct dirlist **dpp;
   1130  1.12   mycroft 	struct dirlist *newdp;
   1131  1.12   mycroft 	struct grouplist *grp;
   1132  1.31      fvdl 	int flags;
   1133  1.12   mycroft {
   1134  1.12   mycroft 	struct dirlist *dp;
   1135  1.12   mycroft 	struct hostlist *hp;
   1136  1.12   mycroft 	int cmp;
   1137  1.12   mycroft 
   1138  1.12   mycroft 	dp = *dpp;
   1139  1.12   mycroft 	if (dp) {
   1140  1.12   mycroft 		cmp = strcmp(dp->dp_dirp, newdp->dp_dirp);
   1141  1.12   mycroft 		if (cmp > 0) {
   1142  1.31      fvdl 			add_dlist(&dp->dp_left, newdp, grp, flags);
   1143  1.12   mycroft 			return;
   1144  1.12   mycroft 		} else if (cmp < 0) {
   1145  1.31      fvdl 			add_dlist(&dp->dp_right, newdp, grp, flags);
   1146  1.12   mycroft 			return;
   1147  1.12   mycroft 		} else
   1148  1.12   mycroft 			free((caddr_t)newdp);
   1149  1.12   mycroft 	} else {
   1150  1.12   mycroft 		dp = newdp;
   1151  1.12   mycroft 		dp->dp_left = (struct dirlist *)NULL;
   1152  1.12   mycroft 		*dpp = dp;
   1153  1.12   mycroft 	}
   1154  1.12   mycroft 	if (grp) {
   1155  1.12   mycroft 
   1156  1.12   mycroft 		/*
   1157  1.12   mycroft 		 * Hang all of the host(s) off of the directory point.
   1158  1.12   mycroft 		 */
   1159  1.12   mycroft 		do {
   1160  1.12   mycroft 			hp = get_ht();
   1161  1.31      fvdl 			if (flags & OP_KERB)
   1162  1.31      fvdl 				hp->ht_flag |= DP_KERB;
   1163  1.37      fvdl 			if (flags & OP_NORESMNT)
   1164  1.37      fvdl 				hp->ht_flag |= DP_NORESMNT;
   1165  1.12   mycroft 			hp->ht_grp = grp;
   1166  1.12   mycroft 			hp->ht_next = dp->dp_hosts;
   1167  1.12   mycroft 			dp->dp_hosts = hp;
   1168  1.12   mycroft 			grp = grp->gr_next;
   1169  1.12   mycroft 		} while (grp);
   1170  1.31      fvdl 	} else {
   1171  1.12   mycroft 		dp->dp_flag |= DP_DEFSET;
   1172  1.31      fvdl 		if (flags & OP_KERB)
   1173  1.31      fvdl 			dp->dp_flag |= DP_KERB;
   1174  1.37      fvdl 		if (flags & OP_NORESMNT)
   1175  1.37      fvdl 			dp->dp_flag |= DP_NORESMNT;
   1176  1.31      fvdl 	}
   1177  1.12   mycroft }
   1178  1.12   mycroft 
   1179  1.12   mycroft /*
   1180  1.12   mycroft  * Search for a dirpath on the export point.
   1181  1.12   mycroft  */
   1182  1.12   mycroft struct dirlist *
   1183  1.45  christos dirp_search(dp, dirp)
   1184  1.12   mycroft 	struct dirlist *dp;
   1185  1.45  christos 	char *dirp;
   1186  1.12   mycroft {
   1187  1.12   mycroft 	int cmp;
   1188  1.12   mycroft 
   1189  1.12   mycroft 	if (dp) {
   1190  1.45  christos 		cmp = strcmp(dp->dp_dirp, dirp);
   1191  1.12   mycroft 		if (cmp > 0)
   1192  1.45  christos 			return (dirp_search(dp->dp_left, dirp));
   1193  1.12   mycroft 		else if (cmp < 0)
   1194  1.45  christos 			return (dirp_search(dp->dp_right, dirp));
   1195  1.12   mycroft 		else
   1196  1.12   mycroft 			return (dp);
   1197  1.12   mycroft 	}
   1198  1.12   mycroft 	return (dp);
   1199  1.12   mycroft }
   1200  1.12   mycroft 
   1201  1.12   mycroft /*
   1202  1.12   mycroft  * Scan for a host match in a directory tree.
   1203  1.12   mycroft  */
   1204  1.12   mycroft int
   1205  1.31      fvdl chk_host(dp, saddr, defsetp, hostsetp)
   1206  1.12   mycroft 	struct dirlist *dp;
   1207  1.36      fvdl 	u_int32_t saddr;
   1208  1.12   mycroft 	int *defsetp;
   1209  1.31      fvdl 	int *hostsetp;
   1210  1.12   mycroft {
   1211  1.12   mycroft 	struct hostlist *hp;
   1212  1.12   mycroft 	struct grouplist *grp;
   1213  1.35       cgd 	u_int32_t **addrp;
   1214  1.12   mycroft 
   1215  1.12   mycroft 	if (dp) {
   1216  1.12   mycroft 		if (dp->dp_flag & DP_DEFSET)
   1217  1.31      fvdl 			*defsetp = dp->dp_flag;
   1218  1.12   mycroft 		hp = dp->dp_hosts;
   1219  1.12   mycroft 		while (hp) {
   1220  1.12   mycroft 			grp = hp->ht_grp;
   1221  1.12   mycroft 			switch (grp->gr_type) {
   1222  1.12   mycroft 			case GT_HOST:
   1223  1.35       cgd 			    addrp = (u_int32_t **)
   1224  1.12   mycroft 				grp->gr_ptr.gt_hostent->h_addr_list;
   1225  1.12   mycroft 			    while (*addrp) {
   1226  1.31      fvdl 				if (**addrp == saddr) {
   1227  1.31      fvdl 				    *hostsetp = (hp->ht_flag | DP_HOSTSET);
   1228  1.12   mycroft 				    return (1);
   1229  1.31      fvdl 				}
   1230  1.12   mycroft 				addrp++;
   1231  1.12   mycroft 			    }
   1232  1.12   mycroft 			    break;
   1233  1.12   mycroft 			case GT_NET:
   1234  1.12   mycroft 			    if ((saddr & grp->gr_ptr.gt_net.nt_mask) ==
   1235  1.31      fvdl 				grp->gr_ptr.gt_net.nt_net) {
   1236  1.31      fvdl 				*hostsetp = (hp->ht_flag | DP_HOSTSET);
   1237  1.12   mycroft 				return (1);
   1238  1.31      fvdl 			    }
   1239  1.12   mycroft 			    break;
   1240  1.12   mycroft 			};
   1241  1.12   mycroft 			hp = hp->ht_next;
   1242  1.12   mycroft 		}
   1243  1.12   mycroft 	}
   1244  1.12   mycroft 	return (0);
   1245  1.12   mycroft }
   1246  1.12   mycroft 
   1247  1.12   mycroft /*
   1248  1.12   mycroft  * Scan tree for a host that matches the address.
   1249  1.12   mycroft  */
   1250  1.12   mycroft int
   1251  1.12   mycroft scan_tree(dp, saddr)
   1252  1.12   mycroft 	struct dirlist *dp;
   1253  1.36      fvdl 	u_int32_t saddr;
   1254  1.12   mycroft {
   1255  1.31      fvdl 	int defset, hostset;
   1256  1.12   mycroft 
   1257  1.12   mycroft 	if (dp) {
   1258  1.12   mycroft 		if (scan_tree(dp->dp_left, saddr))
   1259  1.12   mycroft 			return (1);
   1260  1.31      fvdl 		if (chk_host(dp, saddr, &defset, &hostset))
   1261  1.12   mycroft 			return (1);
   1262  1.12   mycroft 		if (scan_tree(dp->dp_right, saddr))
   1263  1.12   mycroft 			return (1);
   1264  1.12   mycroft 	}
   1265  1.12   mycroft 	return (0);
   1266  1.12   mycroft }
   1267  1.12   mycroft 
   1268  1.12   mycroft /*
   1269  1.12   mycroft  * Traverse the dirlist tree and free it up.
   1270  1.12   mycroft  */
   1271  1.12   mycroft void
   1272  1.12   mycroft free_dir(dp)
   1273  1.12   mycroft 	struct dirlist *dp;
   1274  1.12   mycroft {
   1275  1.12   mycroft 
   1276  1.12   mycroft 	if (dp) {
   1277  1.12   mycroft 		free_dir(dp->dp_left);
   1278  1.12   mycroft 		free_dir(dp->dp_right);
   1279  1.12   mycroft 		free_host(dp->dp_hosts);
   1280  1.12   mycroft 		free((caddr_t)dp);
   1281  1.12   mycroft 	}
   1282  1.12   mycroft }
   1283  1.12   mycroft 
   1284  1.12   mycroft /*
   1285  1.12   mycroft  * Parse the option string and update fields.
   1286  1.12   mycroft  * Option arguments may either be -<option>=<value> or
   1287  1.12   mycroft  * -<option> <value>
   1288  1.12   mycroft  */
   1289  1.12   mycroft int
   1290  1.12   mycroft do_opt(cpp, endcpp, ep, grp, has_hostp, exflagsp, cr)
   1291  1.12   mycroft 	char **cpp, **endcpp;
   1292  1.12   mycroft 	struct exportlist *ep;
   1293  1.12   mycroft 	struct grouplist *grp;
   1294  1.12   mycroft 	int *has_hostp;
   1295  1.12   mycroft 	int *exflagsp;
   1296  1.12   mycroft 	struct ucred *cr;
   1297  1.12   mycroft {
   1298  1.12   mycroft 	char *cpoptarg, *cpoptend;
   1299  1.12   mycroft 	char *cp, *endcp, *cpopt, savedc, savedc2;
   1300  1.12   mycroft 	int allflag, usedarg;
   1301  1.12   mycroft 
   1302  1.12   mycroft 	cpopt = *cpp;
   1303  1.12   mycroft 	cpopt++;
   1304  1.12   mycroft 	cp = *endcpp;
   1305  1.12   mycroft 	savedc = *cp;
   1306  1.12   mycroft 	*cp = '\0';
   1307  1.12   mycroft 	while (cpopt && *cpopt) {
   1308  1.12   mycroft 		allflag = 1;
   1309  1.12   mycroft 		usedarg = -2;
   1310  1.41     lukem 		savedc2 = '\0';
   1311  1.41     lukem 		if ((cpoptend = strchr(cpopt, ',')) != NULL) {
   1312  1.12   mycroft 			*cpoptend++ = '\0';
   1313  1.41     lukem 			if ((cpoptarg = strchr(cpopt, '=')) != NULL)
   1314  1.12   mycroft 				*cpoptarg++ = '\0';
   1315  1.12   mycroft 		} else {
   1316  1.41     lukem 			if ((cpoptarg = strchr(cpopt, '=')) != NULL)
   1317  1.12   mycroft 				*cpoptarg++ = '\0';
   1318  1.12   mycroft 			else {
   1319  1.12   mycroft 				*cp = savedc;
   1320  1.12   mycroft 				nextfield(&cp, &endcp);
   1321  1.12   mycroft 				**endcpp = '\0';
   1322  1.12   mycroft 				if (endcp > cp && *cp != '-') {
   1323  1.12   mycroft 					cpoptarg = cp;
   1324  1.12   mycroft 					savedc2 = *endcp;
   1325  1.12   mycroft 					*endcp = '\0';
   1326  1.12   mycroft 					usedarg = 0;
   1327   1.1       cgd 				}
   1328   1.1       cgd 			}
   1329  1.12   mycroft 		}
   1330  1.12   mycroft 		if (!strcmp(cpopt, "ro") || !strcmp(cpopt, "o")) {
   1331  1.12   mycroft 			*exflagsp |= MNT_EXRDONLY;
   1332  1.12   mycroft 		} else if (cpoptarg && (!strcmp(cpopt, "maproot") ||
   1333  1.12   mycroft 		    !(allflag = strcmp(cpopt, "mapall")) ||
   1334  1.12   mycroft 		    !strcmp(cpopt, "root") || !strcmp(cpopt, "r"))) {
   1335  1.12   mycroft 			usedarg++;
   1336  1.12   mycroft 			parsecred(cpoptarg, cr);
   1337  1.12   mycroft 			if (allflag == 0) {
   1338  1.12   mycroft 				*exflagsp |= MNT_EXPORTANON;
   1339  1.12   mycroft 				opt_flags |= OP_MAPALL;
   1340  1.12   mycroft 			} else
   1341  1.12   mycroft 				opt_flags |= OP_MAPROOT;
   1342  1.12   mycroft 		} else if (!strcmp(cpopt, "kerb") || !strcmp(cpopt, "k")) {
   1343  1.12   mycroft 			*exflagsp |= MNT_EXKERB;
   1344  1.12   mycroft 			opt_flags |= OP_KERB;
   1345  1.12   mycroft 		} else if (cpoptarg && (!strcmp(cpopt, "mask") ||
   1346  1.12   mycroft 			!strcmp(cpopt, "m"))) {
   1347  1.12   mycroft 			if (get_net(cpoptarg, &grp->gr_ptr.gt_net, 1)) {
   1348  1.12   mycroft 				syslog(LOG_ERR, "Bad mask: %s", cpoptarg);
   1349  1.12   mycroft 				return (1);
   1350  1.12   mycroft 			}
   1351  1.12   mycroft 			usedarg++;
   1352  1.12   mycroft 			opt_flags |= OP_MASK;
   1353  1.12   mycroft 		} else if (cpoptarg && (!strcmp(cpopt, "network") ||
   1354  1.12   mycroft 			!strcmp(cpopt, "n"))) {
   1355  1.12   mycroft 			if (grp->gr_type != GT_NULL) {
   1356  1.12   mycroft 				syslog(LOG_ERR, "Network/host conflict");
   1357  1.12   mycroft 				return (1);
   1358  1.12   mycroft 			} else if (get_net(cpoptarg, &grp->gr_ptr.gt_net, 0)) {
   1359  1.12   mycroft 				syslog(LOG_ERR, "Bad net: %s", cpoptarg);
   1360  1.12   mycroft 				return (1);
   1361  1.12   mycroft 			}
   1362  1.12   mycroft 			grp->gr_type = GT_NET;
   1363  1.12   mycroft 			*has_hostp = 1;
   1364  1.12   mycroft 			usedarg++;
   1365  1.12   mycroft 			opt_flags |= OP_NET;
   1366  1.12   mycroft 		} else if (!strcmp(cpopt, "alldirs")) {
   1367  1.12   mycroft 			opt_flags |= OP_ALLDIRS;
   1368  1.37      fvdl 		} else if (!strcmp(cpopt, "noresvmnt")) {
   1369  1.37      fvdl 			opt_flags |= OP_NORESMNT;
   1370  1.37      fvdl 		} else if (!strcmp(cpopt, "noresvport")) {
   1371  1.36      fvdl 			opt_flags |= OP_NORESPORT;
   1372  1.36      fvdl 			*exflagsp |= MNT_EXNORESPORT;
   1373  1.38      fvdl 		} else if (!strcmp(cpopt, "public")) {
   1374  1.38      fvdl 			*exflagsp |= (MNT_EXNORESPORT|MNT_EXPUBLIC);
   1375  1.38      fvdl 			opt_flags |= OP_NORESPORT;
   1376  1.38      fvdl 		} else if (!strcmp(cpopt, "webnfs")) {
   1377  1.38      fvdl 			*exflagsp |= (MNT_EXNORESPORT|MNT_EXPUBLIC|MNT_EXRDONLY|
   1378  1.38      fvdl 				      MNT_EXPORTANON);
   1379  1.38      fvdl 			opt_flags |= (OP_MAPALL|OP_NORESPORT);
   1380  1.38      fvdl 		} else if (cpoptarg && !strcmp(cpopt, "index")) {
   1381  1.38      fvdl 			ep->ex_indexfile = strdup(cpoptarg);
   1382  1.12   mycroft #ifdef ISO
   1383  1.12   mycroft 		} else if (cpoptarg && !strcmp(cpopt, "iso")) {
   1384  1.12   mycroft 			if (get_isoaddr(cpoptarg, grp)) {
   1385  1.12   mycroft 				syslog(LOG_ERR, "Bad iso addr: %s", cpoptarg);
   1386  1.12   mycroft 				return (1);
   1387  1.12   mycroft 			}
   1388  1.12   mycroft 			*has_hostp = 1;
   1389  1.12   mycroft 			usedarg++;
   1390  1.12   mycroft 			opt_flags |= OP_ISO;
   1391  1.12   mycroft #endif /* ISO */
   1392  1.12   mycroft 		} else {
   1393  1.12   mycroft 			syslog(LOG_ERR, "Bad opt %s", cpopt);
   1394  1.12   mycroft 			return (1);
   1395  1.12   mycroft 		}
   1396  1.12   mycroft 		if (usedarg >= 0) {
   1397  1.12   mycroft 			*endcp = savedc2;
   1398  1.12   mycroft 			**endcpp = savedc;
   1399  1.12   mycroft 			if (usedarg > 0) {
   1400  1.12   mycroft 				*cpp = cp;
   1401  1.12   mycroft 				*endcpp = endcp;
   1402  1.12   mycroft 			}
   1403  1.12   mycroft 			return (0);
   1404  1.12   mycroft 		}
   1405  1.12   mycroft 		cpopt = cpoptend;
   1406  1.12   mycroft 	}
   1407  1.12   mycroft 	**endcpp = savedc;
   1408  1.12   mycroft 	return (0);
   1409  1.12   mycroft }
   1410  1.12   mycroft 
   1411  1.12   mycroft /*
   1412  1.12   mycroft  * Translate a character string to the corresponding list of network
   1413  1.12   mycroft  * addresses for a hostname.
   1414  1.12   mycroft  */
   1415  1.12   mycroft int
   1416  1.12   mycroft get_host(cp, grp)
   1417  1.41     lukem 	const char *cp;
   1418  1.12   mycroft 	struct grouplist *grp;
   1419  1.12   mycroft {
   1420  1.12   mycroft 	struct hostent *hp, *nhp;
   1421  1.12   mycroft 	char **addrp, **naddrp;
   1422  1.12   mycroft 	struct hostent t_host;
   1423  1.12   mycroft 	int i;
   1424  1.36      fvdl 	u_int32_t saddr;
   1425  1.12   mycroft 	char *aptr[2];
   1426  1.12   mycroft 
   1427  1.12   mycroft 	if (grp->gr_type != GT_NULL)
   1428  1.12   mycroft 		return (1);
   1429  1.12   mycroft 	if ((hp = gethostbyname(cp)) == NULL) {
   1430  1.12   mycroft 		if (isdigit(*cp)) {
   1431  1.12   mycroft 			saddr = inet_addr(cp);
   1432  1.12   mycroft 			if (saddr == -1) {
   1433  1.32       mrg 				syslog(LOG_ERR, "inet_addr failed for %s", cp);
   1434  1.12   mycroft 				return (1);
   1435  1.12   mycroft 			}
   1436  1.12   mycroft 			if ((hp = gethostbyaddr((caddr_t)&saddr, sizeof (saddr),
   1437  1.12   mycroft 				AF_INET)) == NULL) {
   1438  1.12   mycroft 				hp = &t_host;
   1439  1.41     lukem 				hp->h_name = (char *)cp;
   1440  1.12   mycroft 				hp->h_addrtype = AF_INET;
   1441  1.35       cgd 				hp->h_length = sizeof (u_int32_t);
   1442  1.12   mycroft 				hp->h_addr_list = aptr;
   1443  1.12   mycroft 				aptr[0] = (char *)&saddr;
   1444  1.12   mycroft 				aptr[1] = (char *)NULL;
   1445  1.12   mycroft 			}
   1446  1.12   mycroft 		} else {
   1447  1.32       mrg 			syslog(LOG_ERR, "gethostbyname failed for %s: %s", cp,
   1448  1.32       mrg 				hstrerror(h_errno));
   1449  1.12   mycroft 			return (1);
   1450  1.12   mycroft 		}
   1451  1.12   mycroft 	}
   1452  1.12   mycroft 	grp->gr_type = GT_HOST;
   1453  1.12   mycroft 	nhp = grp->gr_ptr.gt_hostent = (struct hostent *)
   1454  1.12   mycroft 		malloc(sizeof(struct hostent));
   1455  1.12   mycroft 	if (nhp == (struct hostent *)NULL)
   1456  1.12   mycroft 		out_of_mem();
   1457  1.15   mycroft 	memcpy(nhp, hp, sizeof(struct hostent));
   1458  1.12   mycroft 	i = strlen(hp->h_name)+1;
   1459  1.12   mycroft 	nhp->h_name = (char *)malloc(i);
   1460  1.12   mycroft 	if (nhp->h_name == (char *)NULL)
   1461  1.12   mycroft 		out_of_mem();
   1462  1.15   mycroft 	memcpy(nhp->h_name, hp->h_name, i);
   1463  1.12   mycroft 	addrp = hp->h_addr_list;
   1464  1.12   mycroft 	i = 1;
   1465  1.12   mycroft 	while (*addrp++)
   1466  1.12   mycroft 		i++;
   1467  1.12   mycroft 	naddrp = nhp->h_addr_list = (char **)
   1468  1.12   mycroft 		malloc(i*sizeof(char *));
   1469  1.12   mycroft 	if (naddrp == (char **)NULL)
   1470  1.12   mycroft 		out_of_mem();
   1471  1.12   mycroft 	addrp = hp->h_addr_list;
   1472  1.12   mycroft 	while (*addrp) {
   1473  1.12   mycroft 		*naddrp = (char *)
   1474  1.12   mycroft 		    malloc(hp->h_length);
   1475  1.12   mycroft 		if (*naddrp == (char *)NULL)
   1476  1.12   mycroft 		    out_of_mem();
   1477  1.15   mycroft 		memcpy(*naddrp, *addrp, hp->h_length);
   1478  1.12   mycroft 		addrp++;
   1479  1.12   mycroft 		naddrp++;
   1480  1.12   mycroft 	}
   1481  1.12   mycroft 	*naddrp = (char *)NULL;
   1482  1.12   mycroft 	if (debug)
   1483  1.12   mycroft 		fprintf(stderr, "got host %s\n", hp->h_name);
   1484  1.12   mycroft 	return (0);
   1485  1.12   mycroft }
   1486  1.12   mycroft 
   1487  1.12   mycroft /*
   1488  1.12   mycroft  * Free up an exports list component
   1489  1.12   mycroft  */
   1490  1.12   mycroft void
   1491  1.12   mycroft free_exp(ep)
   1492  1.12   mycroft 	struct exportlist *ep;
   1493  1.12   mycroft {
   1494  1.12   mycroft 
   1495  1.12   mycroft 	if (ep->ex_defdir) {
   1496  1.12   mycroft 		free_host(ep->ex_defdir->dp_hosts);
   1497  1.12   mycroft 		free((caddr_t)ep->ex_defdir);
   1498  1.12   mycroft 	}
   1499  1.12   mycroft 	if (ep->ex_fsdir)
   1500  1.12   mycroft 		free(ep->ex_fsdir);
   1501  1.38      fvdl 	if (ep->ex_indexfile)
   1502  1.38      fvdl 		free(ep->ex_indexfile);
   1503  1.12   mycroft 	free_dir(ep->ex_dirl);
   1504  1.12   mycroft 	free((caddr_t)ep);
   1505  1.12   mycroft }
   1506  1.12   mycroft 
   1507  1.12   mycroft /*
   1508  1.12   mycroft  * Free hosts.
   1509  1.12   mycroft  */
   1510  1.12   mycroft void
   1511  1.12   mycroft free_host(hp)
   1512  1.12   mycroft 	struct hostlist *hp;
   1513  1.12   mycroft {
   1514  1.12   mycroft 	struct hostlist *hp2;
   1515  1.12   mycroft 
   1516  1.12   mycroft 	while (hp) {
   1517  1.12   mycroft 		hp2 = hp;
   1518  1.12   mycroft 		hp = hp->ht_next;
   1519  1.12   mycroft 		free((caddr_t)hp2);
   1520  1.12   mycroft 	}
   1521  1.12   mycroft }
   1522  1.12   mycroft 
   1523  1.12   mycroft struct hostlist *
   1524  1.12   mycroft get_ht()
   1525  1.12   mycroft {
   1526  1.12   mycroft 	struct hostlist *hp;
   1527  1.12   mycroft 
   1528  1.12   mycroft 	hp = (struct hostlist *)malloc(sizeof (struct hostlist));
   1529  1.12   mycroft 	if (hp == (struct hostlist *)NULL)
   1530  1.12   mycroft 		out_of_mem();
   1531  1.12   mycroft 	hp->ht_next = (struct hostlist *)NULL;
   1532  1.31      fvdl 	hp->ht_flag = 0;
   1533  1.12   mycroft 	return (hp);
   1534  1.12   mycroft }
   1535  1.12   mycroft 
   1536  1.12   mycroft #ifdef ISO
   1537  1.12   mycroft /*
   1538  1.12   mycroft  * Translate an iso address.
   1539  1.12   mycroft  */
   1540  1.12   mycroft get_isoaddr(cp, grp)
   1541  1.12   mycroft 	char *cp;
   1542  1.12   mycroft 	struct grouplist *grp;
   1543  1.12   mycroft {
   1544  1.12   mycroft 	struct iso_addr *isop;
   1545  1.12   mycroft 	struct sockaddr_iso *isoaddr;
   1546  1.12   mycroft 
   1547  1.12   mycroft 	if (grp->gr_type != GT_NULL)
   1548  1.12   mycroft 		return (1);
   1549  1.12   mycroft 	if ((isop = iso_addr(cp)) == NULL) {
   1550  1.12   mycroft 		syslog(LOG_ERR,
   1551  1.12   mycroft 		    "iso_addr failed, ignored");
   1552  1.12   mycroft 		return (1);
   1553  1.12   mycroft 	}
   1554  1.12   mycroft 	isoaddr = (struct sockaddr_iso *)
   1555  1.12   mycroft 	    malloc(sizeof (struct sockaddr_iso));
   1556  1.12   mycroft 	if (isoaddr == (struct sockaddr_iso *)NULL)
   1557  1.12   mycroft 		out_of_mem();
   1558  1.15   mycroft 	memset(isoaddr, 0, sizeof(struct sockaddr_iso));
   1559  1.15   mycroft 	memcpy(&isoaddr->siso_addr, isop, sizeof(struct iso_addr));
   1560  1.15   mycroft 	isoaddr->siso_len = sizeof(struct sockaddr_iso);
   1561  1.12   mycroft 	isoaddr->siso_family = AF_ISO;
   1562  1.12   mycroft 	grp->gr_type = GT_ISO;
   1563  1.12   mycroft 	grp->gr_ptr.gt_isoaddr = isoaddr;
   1564  1.12   mycroft 	return (0);
   1565  1.12   mycroft }
   1566  1.12   mycroft #endif	/* ISO */
   1567  1.12   mycroft 
   1568  1.12   mycroft /*
   1569  1.12   mycroft  * Out of memory, fatal
   1570  1.12   mycroft  */
   1571  1.12   mycroft void
   1572  1.12   mycroft out_of_mem()
   1573  1.12   mycroft {
   1574  1.12   mycroft 
   1575  1.12   mycroft 	syslog(LOG_ERR, "Out of memory");
   1576  1.12   mycroft 	exit(2);
   1577  1.12   mycroft }
   1578  1.12   mycroft 
   1579  1.12   mycroft /*
   1580  1.12   mycroft  * Do the mount syscall with the update flag to push the export info into
   1581  1.12   mycroft  * the kernel.
   1582  1.12   mycroft  */
   1583  1.12   mycroft int
   1584  1.12   mycroft do_mount(ep, grp, exflags, anoncrp, dirp, dirplen, fsb)
   1585  1.12   mycroft 	struct exportlist *ep;
   1586  1.12   mycroft 	struct grouplist *grp;
   1587  1.12   mycroft 	int exflags;
   1588  1.12   mycroft 	struct ucred *anoncrp;
   1589  1.12   mycroft 	char *dirp;
   1590  1.12   mycroft 	int dirplen;
   1591  1.12   mycroft 	struct statfs *fsb;
   1592  1.12   mycroft {
   1593  1.12   mycroft 	char *cp = (char *)NULL;
   1594  1.35       cgd 	u_int32_t **addrp;
   1595  1.12   mycroft 	int done;
   1596  1.12   mycroft 	char savedc = '\0';
   1597  1.12   mycroft 	struct sockaddr_in sin, imask;
   1598  1.12   mycroft 	union {
   1599  1.12   mycroft 		struct ufs_args ua;
   1600  1.12   mycroft 		struct iso_args ia;
   1601  1.12   mycroft 		struct mfs_args ma;
   1602  1.13        ws 		struct msdosfs_args da;
   1603  1.27    chopps 		struct adosfs_args aa;
   1604  1.12   mycroft 	} args;
   1605  1.36      fvdl 	u_int32_t net;
   1606  1.12   mycroft 
   1607  1.12   mycroft 	args.ua.fspec = 0;
   1608  1.12   mycroft 	args.ua.export.ex_flags = exflags;
   1609  1.12   mycroft 	args.ua.export.ex_anon = *anoncrp;
   1610  1.38      fvdl 	args.ua.export.ex_indexfile = ep->ex_indexfile;
   1611  1.15   mycroft 	memset(&sin, 0, sizeof(sin));
   1612  1.15   mycroft 	memset(&imask, 0, sizeof(imask));
   1613  1.12   mycroft 	sin.sin_family = AF_INET;
   1614  1.12   mycroft 	sin.sin_len = sizeof(sin);
   1615  1.12   mycroft 	imask.sin_family = AF_INET;
   1616  1.12   mycroft 	imask.sin_len = sizeof(sin);
   1617  1.12   mycroft 	if (grp->gr_type == GT_HOST)
   1618  1.35       cgd 		addrp = (u_int32_t **)grp->gr_ptr.gt_hostent->h_addr_list;
   1619  1.12   mycroft 	else
   1620  1.35       cgd 		addrp = (u_int32_t **)NULL;
   1621  1.12   mycroft 	done = FALSE;
   1622  1.12   mycroft 	while (!done) {
   1623  1.12   mycroft 		switch (grp->gr_type) {
   1624  1.12   mycroft 		case GT_HOST:
   1625  1.12   mycroft 			if (addrp) {
   1626  1.12   mycroft 				sin.sin_addr.s_addr = **addrp;
   1627  1.12   mycroft 				args.ua.export.ex_addrlen = sizeof(sin);
   1628  1.12   mycroft 			} else
   1629  1.12   mycroft 				args.ua.export.ex_addrlen = 0;
   1630  1.12   mycroft 			args.ua.export.ex_addr = (struct sockaddr *)&sin;
   1631  1.12   mycroft 			args.ua.export.ex_masklen = 0;
   1632  1.12   mycroft 			break;
   1633  1.12   mycroft 		case GT_NET:
   1634  1.12   mycroft 			if (grp->gr_ptr.gt_net.nt_mask)
   1635  1.12   mycroft 			    imask.sin_addr.s_addr = grp->gr_ptr.gt_net.nt_mask;
   1636  1.12   mycroft 			else {
   1637  1.12   mycroft 			    net = ntohl(grp->gr_ptr.gt_net.nt_net);
   1638  1.12   mycroft 			    if (IN_CLASSA(net))
   1639  1.12   mycroft 				imask.sin_addr.s_addr = inet_addr("255.0.0.0");
   1640  1.12   mycroft 			    else if (IN_CLASSB(net))
   1641  1.12   mycroft 				imask.sin_addr.s_addr =
   1642  1.12   mycroft 				    inet_addr("255.255.0.0");
   1643  1.12   mycroft 			    else
   1644  1.12   mycroft 				imask.sin_addr.s_addr =
   1645  1.12   mycroft 				    inet_addr("255.255.255.0");
   1646  1.12   mycroft 			    grp->gr_ptr.gt_net.nt_mask = imask.sin_addr.s_addr;
   1647  1.12   mycroft 			}
   1648  1.12   mycroft 			sin.sin_addr.s_addr = grp->gr_ptr.gt_net.nt_net;
   1649  1.12   mycroft 			args.ua.export.ex_addr = (struct sockaddr *)&sin;
   1650  1.12   mycroft 			args.ua.export.ex_addrlen = sizeof (sin);
   1651  1.12   mycroft 			args.ua.export.ex_mask = (struct sockaddr *)&imask;
   1652  1.12   mycroft 			args.ua.export.ex_masklen = sizeof (imask);
   1653  1.12   mycroft 			break;
   1654  1.12   mycroft #ifdef ISO
   1655  1.12   mycroft 		case GT_ISO:
   1656  1.12   mycroft 			args.ua.export.ex_addr =
   1657  1.12   mycroft 				(struct sockaddr *)grp->gr_ptr.gt_isoaddr;
   1658  1.12   mycroft 			args.ua.export.ex_addrlen =
   1659  1.12   mycroft 				sizeof(struct sockaddr_iso);
   1660  1.12   mycroft 			args.ua.export.ex_masklen = 0;
   1661  1.12   mycroft 			break;
   1662  1.12   mycroft #endif	/* ISO */
   1663  1.12   mycroft 		default:
   1664  1.12   mycroft 			syslog(LOG_ERR, "Bad grouptype");
   1665   1.1       cgd 			if (cp)
   1666   1.1       cgd 				*cp = savedc;
   1667  1.12   mycroft 			return (1);
   1668  1.12   mycroft 		};
   1669  1.12   mycroft 
   1670  1.12   mycroft 		/*
   1671  1.12   mycroft 		 * XXX:
   1672  1.12   mycroft 		 * Maybe I should just use the fsb->f_mntonname path instead
   1673  1.12   mycroft 		 * of looping back up the dirp to the mount point??
   1674  1.12   mycroft 		 * Also, needs to know how to export all types of local
   1675  1.30       jtc 		 * exportable file systems and not just MOUNT_FFS.
   1676  1.12   mycroft 		 */
   1677  1.12   mycroft 		while (mount(fsb->f_fstypename, dirp,
   1678  1.12   mycroft 		       fsb->f_flags | MNT_UPDATE, (caddr_t)&args) < 0) {
   1679  1.12   mycroft 			if (cp)
   1680  1.12   mycroft 				*cp-- = savedc;
   1681  1.12   mycroft 			else
   1682  1.12   mycroft 				cp = dirp + dirplen - 1;
   1683  1.12   mycroft 			if (errno == EPERM) {
   1684  1.12   mycroft 				syslog(LOG_ERR,
   1685  1.32       mrg 				    "Can't change attributes for %s to %s.\n",
   1686  1.32       mrg 				    dirp, (grp->gr_type == GT_HOST) ?
   1687  1.32       mrg 					grp->gr_ptr.gt_hostent->h_name :
   1688  1.32       mrg 				    (grp->gr_type == GT_NET) ?
   1689  1.32       mrg 					grp->gr_ptr.gt_net.nt_name :
   1690  1.32       mrg 					"Unknown");
   1691  1.12   mycroft 				return (1);
   1692  1.12   mycroft 			}
   1693  1.12   mycroft 			if (opt_flags & OP_ALLDIRS) {
   1694  1.31      fvdl 				syslog(LOG_ERR, "Could not remount %s: %m",
   1695  1.31      fvdl 					dirp);
   1696  1.12   mycroft 				return (1);
   1697  1.12   mycroft 			}
   1698  1.12   mycroft 			/* back up over the last component */
   1699  1.12   mycroft 			while (*cp == '/' && cp > dirp)
   1700  1.12   mycroft 				cp--;
   1701  1.12   mycroft 			while (*(cp - 1) != '/' && cp > dirp)
   1702  1.12   mycroft 				cp--;
   1703  1.12   mycroft 			if (cp == dirp) {
   1704  1.12   mycroft 				if (debug)
   1705  1.12   mycroft 					fprintf(stderr,"mnt unsucc\n");
   1706  1.12   mycroft 				syslog(LOG_ERR, "Can't export %s", dirp);
   1707  1.12   mycroft 				return (1);
   1708  1.12   mycroft 			}
   1709  1.12   mycroft 			savedc = *cp;
   1710  1.12   mycroft 			*cp = '\0';
   1711  1.12   mycroft 		}
   1712  1.12   mycroft 		if (addrp) {
   1713  1.12   mycroft 			++addrp;
   1714  1.35       cgd 			if (*addrp == (u_int32_t *)NULL)
   1715  1.12   mycroft 				done = TRUE;
   1716  1.12   mycroft 		} else
   1717  1.12   mycroft 			done = TRUE;
   1718  1.12   mycroft 	}
   1719  1.12   mycroft 	if (cp)
   1720  1.12   mycroft 		*cp = savedc;
   1721  1.12   mycroft 	return (0);
   1722  1.12   mycroft }
   1723  1.12   mycroft 
   1724  1.12   mycroft /*
   1725  1.12   mycroft  * Translate a net address.
   1726  1.12   mycroft  */
   1727  1.12   mycroft int
   1728  1.12   mycroft get_net(cp, net, maskflg)
   1729  1.12   mycroft 	char *cp;
   1730  1.12   mycroft 	struct netmsk *net;
   1731  1.12   mycroft 	int maskflg;
   1732  1.12   mycroft {
   1733  1.12   mycroft 	struct netent *np;
   1734  1.12   mycroft 	long netaddr;
   1735  1.12   mycroft 	struct in_addr inetaddr, inetaddr2;
   1736  1.12   mycroft 	char *name;
   1737  1.12   mycroft 
   1738  1.41     lukem 	if ((np = getnetbyname(cp)) != NULL)
   1739  1.12   mycroft 		inetaddr = inet_makeaddr(np->n_net, 0);
   1740  1.12   mycroft 	else if (isdigit(*cp)) {
   1741  1.12   mycroft 		if ((netaddr = inet_network(cp)) == -1)
   1742  1.12   mycroft 			return (1);
   1743  1.12   mycroft 		inetaddr = inet_makeaddr(netaddr, 0);
   1744  1.12   mycroft 		/*
   1745  1.12   mycroft 		 * Due to arbritrary subnet masks, you don't know how many
   1746  1.12   mycroft 		 * bits to shift the address to make it into a network,
   1747  1.12   mycroft 		 * however you do know how to make a network address into
   1748  1.12   mycroft 		 * a host with host == 0 and then compare them.
   1749  1.12   mycroft 		 * (What a pest)
   1750  1.12   mycroft 		 */
   1751  1.12   mycroft 		if (!maskflg) {
   1752  1.12   mycroft 			setnetent(0);
   1753  1.41     lukem 			while ((np = getnetent()) != NULL) {
   1754  1.12   mycroft 				inetaddr2 = inet_makeaddr(np->n_net, 0);
   1755  1.12   mycroft 				if (inetaddr2.s_addr == inetaddr.s_addr)
   1756  1.12   mycroft 					break;
   1757   1.9        ws 			}
   1758  1.12   mycroft 			endnetent();
   1759  1.11        ws 		}
   1760  1.12   mycroft 	} else
   1761  1.12   mycroft 		return (1);
   1762  1.12   mycroft 	if (maskflg)
   1763  1.12   mycroft 		net->nt_mask = inetaddr.s_addr;
   1764  1.12   mycroft 	else {
   1765  1.12   mycroft 		if (np)
   1766  1.12   mycroft 			name = np->n_name;
   1767  1.12   mycroft 		else
   1768  1.12   mycroft 			name = inet_ntoa(inetaddr);
   1769  1.12   mycroft 		net->nt_name = (char *)malloc(strlen(name) + 1);
   1770  1.12   mycroft 		if (net->nt_name == (char *)NULL)
   1771  1.12   mycroft 			out_of_mem();
   1772  1.12   mycroft 		strcpy(net->nt_name, name);
   1773  1.12   mycroft 		net->nt_net = inetaddr.s_addr;
   1774   1.1       cgd 	}
   1775  1.12   mycroft 	return (0);
   1776   1.1       cgd }
   1777   1.1       cgd 
   1778   1.1       cgd /*
   1779   1.1       cgd  * Parse out the next white space separated field
   1780   1.1       cgd  */
   1781  1.12   mycroft void
   1782   1.1       cgd nextfield(cp, endcp)
   1783   1.1       cgd 	char **cp;
   1784   1.1       cgd 	char **endcp;
   1785   1.1       cgd {
   1786  1.12   mycroft 	char *p;
   1787   1.1       cgd 
   1788   1.1       cgd 	p = *cp;
   1789   1.1       cgd 	while (*p == ' ' || *p == '\t')
   1790   1.1       cgd 		p++;
   1791  1.12   mycroft 	if (*p == '\n' || *p == '\0')
   1792   1.1       cgd 		*cp = *endcp = p;
   1793  1.12   mycroft 	else {
   1794  1.12   mycroft 		*cp = p++;
   1795  1.12   mycroft 		while (*p != ' ' && *p != '\t' && *p != '\n' && *p != '\0')
   1796  1.12   mycroft 			p++;
   1797  1.12   mycroft 		*endcp = p;
   1798   1.1       cgd 	}
   1799   1.1       cgd }
   1800   1.1       cgd 
   1801   1.1       cgd /*
   1802  1.12   mycroft  * Get an exports file line. Skip over blank lines and handle line
   1803  1.12   mycroft  * continuations.
   1804  1.12   mycroft  */
   1805  1.12   mycroft int
   1806  1.12   mycroft get_line()
   1807  1.12   mycroft {
   1808  1.12   mycroft 	char *p, *cp;
   1809  1.12   mycroft 	int len;
   1810  1.12   mycroft 	int totlen, cont_line;
   1811  1.12   mycroft 
   1812  1.12   mycroft 	/*
   1813  1.12   mycroft 	 * Loop around ignoring blank lines and getting all continuation lines.
   1814  1.12   mycroft 	 */
   1815  1.12   mycroft 	p = line;
   1816  1.12   mycroft 	totlen = 0;
   1817  1.12   mycroft 	do {
   1818  1.12   mycroft 		if (fgets(p, LINESIZ - totlen, exp_file) == NULL)
   1819  1.12   mycroft 			return (0);
   1820  1.12   mycroft 		len = strlen(p);
   1821  1.12   mycroft 		cp = p + len - 1;
   1822  1.12   mycroft 		cont_line = 0;
   1823  1.12   mycroft 		while (cp >= p &&
   1824  1.12   mycroft 		    (*cp == ' ' || *cp == '\t' || *cp == '\n' || *cp == '\\')) {
   1825  1.12   mycroft 			if (*cp == '\\')
   1826  1.12   mycroft 				cont_line = 1;
   1827  1.12   mycroft 			cp--;
   1828  1.12   mycroft 			len--;
   1829  1.12   mycroft 		}
   1830  1.12   mycroft 		*++cp = '\0';
   1831  1.12   mycroft 		if (len > 0) {
   1832  1.12   mycroft 			totlen += len;
   1833  1.12   mycroft 			if (totlen >= LINESIZ) {
   1834  1.12   mycroft 				syslog(LOG_ERR, "Exports line too long");
   1835  1.12   mycroft 				exit(2);
   1836  1.12   mycroft 			}
   1837  1.12   mycroft 			p = cp;
   1838  1.12   mycroft 		}
   1839  1.12   mycroft 	} while (totlen == 0 || cont_line);
   1840  1.12   mycroft 	return (1);
   1841  1.12   mycroft }
   1842  1.12   mycroft 
   1843  1.12   mycroft /*
   1844  1.12   mycroft  * Parse a description of a credential.
   1845   1.1       cgd  */
   1846  1.12   mycroft void
   1847  1.12   mycroft parsecred(namelist, cr)
   1848  1.12   mycroft 	char *namelist;
   1849  1.12   mycroft 	struct ucred *cr;
   1850   1.1       cgd {
   1851  1.12   mycroft 	char *name;
   1852  1.12   mycroft 	int cnt;
   1853  1.12   mycroft 	char *names;
   1854  1.12   mycroft 	struct passwd *pw;
   1855  1.12   mycroft 	struct group *gr;
   1856  1.12   mycroft 	int ngroups, groups[NGROUPS + 1];
   1857   1.1       cgd 
   1858  1.12   mycroft 	/*
   1859  1.12   mycroft 	 * Set up the unpriviledged user.
   1860  1.12   mycroft 	 */
   1861  1.12   mycroft 	cr->cr_ref = 1;
   1862  1.12   mycroft 	cr->cr_uid = -2;
   1863  1.22   mycroft 	cr->cr_gid = -2;
   1864  1.22   mycroft 	cr->cr_ngroups = 0;
   1865  1.12   mycroft 	/*
   1866  1.12   mycroft 	 * Get the user's password table entry.
   1867  1.12   mycroft 	 */
   1868  1.12   mycroft 	names = strsep(&namelist, " \t\n");
   1869  1.12   mycroft 	name = strsep(&names, ":");
   1870  1.12   mycroft 	if (isdigit(*name) || *name == '-')
   1871  1.12   mycroft 		pw = getpwuid(atoi(name));
   1872  1.12   mycroft 	else
   1873  1.12   mycroft 		pw = getpwnam(name);
   1874  1.12   mycroft 	/*
   1875  1.12   mycroft 	 * Credentials specified as those of a user.
   1876  1.12   mycroft 	 */
   1877  1.12   mycroft 	if (names == NULL) {
   1878  1.12   mycroft 		if (pw == NULL) {
   1879  1.12   mycroft 			syslog(LOG_ERR, "Unknown user: %s", name);
   1880  1.12   mycroft 			return;
   1881  1.12   mycroft 		}
   1882  1.12   mycroft 		cr->cr_uid = pw->pw_uid;
   1883  1.12   mycroft 		ngroups = NGROUPS + 1;
   1884  1.12   mycroft 		if (getgrouplist(pw->pw_name, pw->pw_gid, groups, &ngroups))
   1885  1.12   mycroft 			syslog(LOG_ERR, "Too many groups");
   1886  1.12   mycroft 		/*
   1887  1.12   mycroft 		 * Convert from int's to gid_t's and compress out duplicate
   1888  1.12   mycroft 		 */
   1889  1.12   mycroft 		cr->cr_ngroups = ngroups - 1;
   1890  1.22   mycroft 		cr->cr_gid = groups[0];
   1891  1.22   mycroft 		for (cnt = 1; cnt < ngroups; cnt++)
   1892  1.12   mycroft 			cr->cr_groups[cnt - 1] = groups[cnt];
   1893  1.12   mycroft 		return;
   1894  1.12   mycroft 	}
   1895  1.12   mycroft 	/*
   1896  1.12   mycroft 	 * Explicit credential specified as a colon separated list:
   1897  1.12   mycroft 	 *	uid:gid:gid:...
   1898  1.12   mycroft 	 */
   1899  1.12   mycroft 	if (pw != NULL)
   1900  1.12   mycroft 		cr->cr_uid = pw->pw_uid;
   1901  1.12   mycroft 	else if (isdigit(*name) || *name == '-')
   1902  1.12   mycroft 		cr->cr_uid = atoi(name);
   1903  1.12   mycroft 	else {
   1904  1.12   mycroft 		syslog(LOG_ERR, "Unknown user: %s", name);
   1905  1.12   mycroft 		return;
   1906  1.12   mycroft 	}
   1907  1.12   mycroft 	cr->cr_ngroups = 0;
   1908  1.12   mycroft 	while (names != NULL && *names != '\0' && cr->cr_ngroups < NGROUPS) {
   1909  1.12   mycroft 		name = strsep(&names, ":");
   1910  1.12   mycroft 		if (isdigit(*name) || *name == '-') {
   1911  1.12   mycroft 			cr->cr_groups[cr->cr_ngroups++] = atoi(name);
   1912  1.12   mycroft 		} else {
   1913  1.12   mycroft 			if ((gr = getgrnam(name)) == NULL) {
   1914  1.12   mycroft 				syslog(LOG_ERR, "Unknown group: %s", name);
   1915  1.12   mycroft 				continue;
   1916  1.12   mycroft 			}
   1917  1.12   mycroft 			cr->cr_groups[cr->cr_ngroups++] = gr->gr_gid;
   1918  1.12   mycroft 		}
   1919   1.1       cgd 	}
   1920  1.12   mycroft 	if (names != NULL && *names != '\0' && cr->cr_ngroups == NGROUPS)
   1921  1.12   mycroft 		syslog(LOG_ERR, "Too many groups");
   1922   1.1       cgd }
   1923   1.1       cgd 
   1924  1.12   mycroft #define	STRSIZ	(RPCMNT_NAMELEN+RPCMNT_PATHLEN+50)
   1925   1.1       cgd /*
   1926   1.1       cgd  * Routines that maintain the remote mounttab
   1927   1.1       cgd  */
   1928  1.12   mycroft void
   1929  1.12   mycroft get_mountlist()
   1930   1.1       cgd {
   1931  1.12   mycroft 	struct mountlist *mlp, **mlpp;
   1932  1.15   mycroft 	char *host, *dirp, *cp;
   1933   1.1       cgd 	char str[STRSIZ];
   1934   1.1       cgd 	FILE *mlfile;
   1935   1.1       cgd 
   1936  1.11        ws 	if ((mlfile = fopen(_PATH_RMOUNTLIST, "r")) == NULL) {
   1937  1.32       mrg 		syslog(LOG_ERR, "Can't open %s: %m", _PATH_RMOUNTLIST);
   1938   1.1       cgd 		return;
   1939   1.1       cgd 	}
   1940   1.1       cgd 	mlpp = &mlhead;
   1941   1.1       cgd 	while (fgets(str, STRSIZ, mlfile) != NULL) {
   1942  1.15   mycroft 		cp = str;
   1943  1.15   mycroft 		host = strsep(&cp, " \t\n");
   1944  1.15   mycroft 		dirp = strsep(&cp, " \t\n");
   1945  1.15   mycroft 		if (host == NULL || dirp == NULL)
   1946   1.1       cgd 			continue;
   1947   1.1       cgd 		mlp = (struct mountlist *)malloc(sizeof (*mlp));
   1948  1.15   mycroft 		strncpy(mlp->ml_host, host, RPCMNT_NAMELEN);
   1949  1.15   mycroft 		mlp->ml_host[RPCMNT_NAMELEN] = '\0';
   1950  1.15   mycroft 		strncpy(mlp->ml_dirp, dirp, RPCMNT_PATHLEN);
   1951  1.15   mycroft 		mlp->ml_dirp[RPCMNT_PATHLEN] = '\0';
   1952  1.12   mycroft 		mlp->ml_next = (struct mountlist *)NULL;
   1953   1.1       cgd 		*mlpp = mlp;
   1954   1.1       cgd 		mlpp = &mlp->ml_next;
   1955   1.1       cgd 	}
   1956   1.1       cgd 	fclose(mlfile);
   1957   1.1       cgd }
   1958   1.1       cgd 
   1959  1.36      fvdl int
   1960  1.36      fvdl del_mlist(hostp, dirp, saddr)
   1961  1.12   mycroft 	char *hostp, *dirp;
   1962  1.36      fvdl 	struct sockaddr *saddr;
   1963   1.1       cgd {
   1964  1.12   mycroft 	struct mountlist *mlp, **mlpp;
   1965  1.12   mycroft 	struct mountlist *mlp2;
   1966  1.36      fvdl 	struct sockaddr_in *sin = (struct sockaddr_in *)saddr;
   1967   1.1       cgd 	FILE *mlfile;
   1968  1.36      fvdl 	int fnd = 0, ret = 0;
   1969   1.1       cgd 
   1970   1.1       cgd 	mlpp = &mlhead;
   1971   1.1       cgd 	mlp = mlhead;
   1972   1.1       cgd 	while (mlp) {
   1973   1.1       cgd 		if (!strcmp(mlp->ml_host, hostp) &&
   1974   1.1       cgd 		    (!dirp || !strcmp(mlp->ml_dirp, dirp))) {
   1975  1.37      fvdl 			if (!(mlp->ml_flag & DP_NORESMNT) &&
   1976  1.36      fvdl 			    ntohs(sin->sin_port) >= IPPORT_RESERVED) {
   1977  1.36      fvdl 				syslog(LOG_NOTICE,
   1978  1.36      fvdl 				   "Umount request for %s:%s from %s refused\n",
   1979  1.36      fvdl 				   mlp->ml_host, mlp->ml_dirp,
   1980  1.36      fvdl 			 	   inet_ntoa(sin->sin_addr));
   1981  1.36      fvdl 				ret = -1;
   1982  1.42      fvdl 				goto cont;
   1983  1.36      fvdl 			}
   1984   1.1       cgd 			fnd = 1;
   1985  1.12   mycroft 			mlp2 = mlp;
   1986  1.12   mycroft 			*mlpp = mlp = mlp->ml_next;
   1987  1.12   mycroft 			free((caddr_t)mlp2);
   1988  1.12   mycroft 		} else {
   1989  1.42      fvdl cont:
   1990  1.12   mycroft 			mlpp = &mlp->ml_next;
   1991  1.12   mycroft 			mlp = mlp->ml_next;
   1992   1.1       cgd 		}
   1993   1.1       cgd 	}
   1994   1.1       cgd 	if (fnd) {
   1995   1.1       cgd 		if ((mlfile = fopen(_PATH_RMOUNTLIST, "w")) == NULL) {
   1996  1.32       mrg 			syslog(LOG_ERR,"Can't update %s: %m", _PATH_RMOUNTLIST);
   1997  1.41     lukem 			return ret;
   1998   1.1       cgd 		}
   1999   1.1       cgd 		mlp = mlhead;
   2000   1.1       cgd 		while (mlp) {
   2001   1.1       cgd 			fprintf(mlfile, "%s %s\n", mlp->ml_host, mlp->ml_dirp);
   2002   1.1       cgd 			mlp = mlp->ml_next;
   2003   1.1       cgd 		}
   2004   1.1       cgd 		fclose(mlfile);
   2005   1.1       cgd 	}
   2006  1.36      fvdl 	return ret;
   2007   1.1       cgd }
   2008   1.1       cgd 
   2009  1.12   mycroft void
   2010  1.36      fvdl add_mlist(hostp, dirp, flags)
   2011  1.12   mycroft 	char *hostp, *dirp;
   2012  1.36      fvdl 	int flags;
   2013   1.1       cgd {
   2014  1.12   mycroft 	struct mountlist *mlp, **mlpp;
   2015   1.1       cgd 	FILE *mlfile;
   2016   1.1       cgd 
   2017   1.1       cgd 	mlpp = &mlhead;
   2018   1.1       cgd 	mlp = mlhead;
   2019   1.1       cgd 	while (mlp) {
   2020   1.1       cgd 		if (!strcmp(mlp->ml_host, hostp) && !strcmp(mlp->ml_dirp, dirp))
   2021   1.1       cgd 			return;
   2022   1.1       cgd 		mlpp = &mlp->ml_next;
   2023   1.1       cgd 		mlp = mlp->ml_next;
   2024   1.1       cgd 	}
   2025   1.1       cgd 	mlp = (struct mountlist *)malloc(sizeof (*mlp));
   2026  1.12   mycroft 	strncpy(mlp->ml_host, hostp, RPCMNT_NAMELEN);
   2027  1.12   mycroft 	mlp->ml_host[RPCMNT_NAMELEN] = '\0';
   2028  1.12   mycroft 	strncpy(mlp->ml_dirp, dirp, RPCMNT_PATHLEN);
   2029  1.12   mycroft 	mlp->ml_dirp[RPCMNT_PATHLEN] = '\0';
   2030  1.36      fvdl 	mlp->ml_flag = flags;
   2031  1.12   mycroft 	mlp->ml_next = (struct mountlist *)NULL;
   2032   1.1       cgd 	*mlpp = mlp;
   2033   1.1       cgd 	if ((mlfile = fopen(_PATH_RMOUNTLIST, "a")) == NULL) {
   2034  1.32       mrg 		syslog(LOG_ERR, "Can't update %s: %m", _PATH_RMOUNTLIST);
   2035   1.1       cgd 		return;
   2036   1.1       cgd 	}
   2037   1.1       cgd 	fprintf(mlfile, "%s %s\n", mlp->ml_host, mlp->ml_dirp);
   2038   1.1       cgd 	fclose(mlfile);
   2039   1.1       cgd }
   2040   1.1       cgd 
   2041   1.1       cgd /*
   2042   1.1       cgd  * This function is called via. SIGTERM when the system is going down.
   2043   1.1       cgd  * It sends a broadcast RPCMNT_UMNTALL.
   2044   1.1       cgd  */
   2045  1.45  christos /*ARGSUSED*/
   2046   1.1       cgd void
   2047  1.45  christos send_umntall(n)
   2048  1.45  christos 	int n;
   2049   1.1       cgd {
   2050  1.12   mycroft 	(void) clnt_broadcast(RPCPROG_MNT, RPCMNT_VER1, RPCMNT_UMNTALL,
   2051   1.1       cgd 		xdr_void, (caddr_t)0, xdr_void, (caddr_t)0, umntall_each);
   2052  1.12   mycroft 	exit(0);
   2053   1.1       cgd }
   2054   1.1       cgd 
   2055  1.12   mycroft int
   2056   1.1       cgd umntall_each(resultsp, raddr)
   2057   1.1       cgd 	caddr_t resultsp;
   2058   1.1       cgd 	struct sockaddr_in *raddr;
   2059   1.1       cgd {
   2060   1.1       cgd 	return (1);
   2061   1.1       cgd }
   2062   1.1       cgd 
   2063   1.1       cgd /*
   2064  1.12   mycroft  * Free up a group list.
   2065  1.12   mycroft  */
   2066  1.12   mycroft void
   2067  1.12   mycroft free_grp(grp)
   2068  1.12   mycroft 	struct grouplist *grp;
   2069  1.12   mycroft {
   2070  1.12   mycroft 	char **addrp;
   2071  1.12   mycroft 
   2072  1.12   mycroft 	if (grp->gr_type == GT_HOST) {
   2073  1.12   mycroft 		if (grp->gr_ptr.gt_hostent->h_name) {
   2074  1.12   mycroft 			addrp = grp->gr_ptr.gt_hostent->h_addr_list;
   2075  1.46      ross 			if (addrp) {
   2076  1.46      ross 				while (*addrp) {
   2077  1.46      ross 					free(*addrp++);
   2078  1.46      ross 				}
   2079  1.46      ross 				free(grp->gr_ptr.gt_hostent->h_addr_list);
   2080  1.46      ross 			}
   2081  1.12   mycroft 			free(grp->gr_ptr.gt_hostent->h_name);
   2082  1.12   mycroft 		}
   2083  1.12   mycroft 		free((caddr_t)grp->gr_ptr.gt_hostent);
   2084  1.12   mycroft 	} else if (grp->gr_type == GT_NET) {
   2085  1.12   mycroft 		if (grp->gr_ptr.gt_net.nt_name)
   2086  1.12   mycroft 			free(grp->gr_ptr.gt_net.nt_name);
   2087  1.12   mycroft 	}
   2088  1.12   mycroft #ifdef ISO
   2089  1.12   mycroft 	else if (grp->gr_type == GT_ISO)
   2090  1.12   mycroft 		free((caddr_t)grp->gr_ptr.gt_isoaddr);
   2091  1.12   mycroft #endif
   2092  1.12   mycroft 	free((caddr_t)grp);
   2093  1.12   mycroft }
   2094  1.12   mycroft 
   2095  1.12   mycroft void
   2096  1.12   mycroft SYSLOG(int pri, const char *fmt, ...)
   2097  1.12   mycroft {
   2098  1.12   mycroft 	va_list ap;
   2099  1.12   mycroft 
   2100  1.12   mycroft 	va_start(ap, fmt);
   2101  1.28   thorpej 
   2102  1.28   thorpej 	if (debug)
   2103  1.28   thorpej 		vfprintf(stderr, fmt, ap);
   2104  1.28   thorpej 	else
   2105  1.28   thorpej 		vsyslog(pri, fmt, ap);
   2106  1.28   thorpej 
   2107  1.12   mycroft 	va_end(ap);
   2108  1.12   mycroft }
   2109  1.12   mycroft 
   2110  1.12   mycroft /*
   2111  1.12   mycroft  * Check options for consistency.
   2112  1.12   mycroft  */
   2113  1.12   mycroft int
   2114  1.12   mycroft check_options(dp)
   2115  1.12   mycroft 	struct dirlist *dp;
   2116  1.12   mycroft {
   2117  1.12   mycroft 
   2118  1.12   mycroft 	if (dp == (struct dirlist *)NULL)
   2119  1.12   mycroft 	    return (1);
   2120  1.12   mycroft 	if ((opt_flags & (OP_MAPROOT | OP_MAPALL)) == (OP_MAPROOT | OP_MAPALL) ||
   2121  1.12   mycroft 	    (opt_flags & (OP_MAPROOT | OP_KERB)) == (OP_MAPROOT | OP_KERB) ||
   2122  1.12   mycroft 	    (opt_flags & (OP_MAPALL | OP_KERB)) == (OP_MAPALL | OP_KERB)) {
   2123  1.12   mycroft 	    syslog(LOG_ERR, "-mapall, -maproot and -kerb mutually exclusive");
   2124  1.12   mycroft 	    return (1);
   2125  1.12   mycroft 	}
   2126  1.12   mycroft 	if ((opt_flags & OP_MASK) && (opt_flags & OP_NET) == 0) {
   2127  1.12   mycroft 	    syslog(LOG_ERR, "-mask requires -net");
   2128  1.12   mycroft 	    return (1);
   2129  1.12   mycroft 	}
   2130  1.12   mycroft 	if ((opt_flags & (OP_NET | OP_ISO)) == (OP_NET | OP_ISO)) {
   2131  1.12   mycroft 	    syslog(LOG_ERR, "-net and -iso mutually exclusive");
   2132  1.12   mycroft 	    return (1);
   2133  1.12   mycroft 	}
   2134  1.12   mycroft 	if ((opt_flags & OP_ALLDIRS) && dp->dp_left) {
   2135  1.12   mycroft 	    syslog(LOG_ERR, "-alldir has multiple directories");
   2136  1.12   mycroft 	    return (1);
   2137  1.12   mycroft 	}
   2138  1.12   mycroft 	return (0);
   2139  1.12   mycroft }
   2140  1.12   mycroft 
   2141  1.12   mycroft /*
   2142  1.12   mycroft  * Check an absolute directory path for any symbolic links. Return true
   2143  1.12   mycroft  * if no symbolic links are found.
   2144   1.1       cgd  */
   2145  1.12   mycroft int
   2146  1.12   mycroft check_dirpath(dirp)
   2147  1.12   mycroft 	char *dirp;
   2148   1.1       cgd {
   2149  1.12   mycroft 	char *cp;
   2150  1.12   mycroft 	int ret = 1;
   2151  1.12   mycroft 	struct stat sb;
   2152  1.12   mycroft 
   2153  1.12   mycroft 	cp = dirp + 1;
   2154  1.12   mycroft 	while (*cp && ret) {
   2155  1.12   mycroft 		if (*cp == '/') {
   2156  1.12   mycroft 			*cp = '\0';
   2157  1.12   mycroft 			if (lstat(dirp, &sb) < 0 || !S_ISDIR(sb.st_mode))
   2158  1.12   mycroft 				ret = 0;
   2159  1.12   mycroft 			*cp = '/';
   2160  1.12   mycroft 		}
   2161  1.12   mycroft 		cp++;
   2162   1.1       cgd 	}
   2163  1.26   mycroft 	if (lstat(dirp, &sb) < 0 ||
   2164  1.26   mycroft 	    (!S_ISDIR(sb.st_mode) && !S_ISREG(sb.st_mode)))
   2165  1.12   mycroft 		ret = 0;
   2166  1.12   mycroft 	return (ret);
   2167   1.1       cgd }
   2168