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