2 * utils/mountd/mountd.c
4 * Authenticate mount requests and retrieve file handle.
6 * Copyright (C) 1995, 1996 Olaf Kirch <okir@monad.swb.de>
15 #include <netinet/in.h>
16 #include <arpa/inet.h>
23 #include <sys/resource.h>
30 extern void cache_open(void);
31 extern struct nfs_fh_len *cache_get_filehandle(nfs_export *exp, int len, char *p);
32 extern int cache_export(nfs_export *exp, char *path);
34 extern void my_svc_run(void);
36 static void usage(const char *, int exitcode);
37 static exports get_exportlist(void);
38 static struct nfs_fh_len *get_rootfh(struct svc_req *, dirpath *, mountstat3 *, int v3);
40 int reverse_resolve = 0;
45 /* PRC: a high-availability callout program can be specified with -H
46 * When this is done, the program will receive callouts whenever clients
47 * send mount or unmount requests -- the callout is not needed for 2.6 kernel */
48 char *ha_callout_prog = NULL;
50 /* Number of mountd threads to start. Default is 1 and
51 * that's probably enough unless you need hundreds of
52 * clients to be able to mount at once. */
53 static int num_threads = 1;
54 /* Arbitrary limit on number of threads */
55 #define MAX_THREADS 64
57 static struct option longopts[] =
59 { "foreground", 0, 0, 'F' },
60 { "descriptors", 1, 0, 'o' },
61 { "debug", 1, 0, 'd' },
62 { "help", 0, 0, 'h' },
63 { "exports-file", 1, 0, 'f' },
64 { "nfs-version", 1, 0, 'V' },
65 { "no-nfs-version", 1, 0, 'N' },
66 { "version", 0, 0, 'v' },
67 { "port", 1, 0, 'p' },
68 { "no-tcp", 0, 0, 'n' },
69 { "ha-callout", 1, 0, 'H' },
70 { "state-directory-path", 1, 0, 's' },
71 { "num-threads", 1, 0, 't' },
72 { "reverse-lookup", 0, 0, 'r' },
73 { "manage-gids", 0, 0, 'g' },
77 static int nfs_version = -1;
80 unregister_services (void)
82 if (nfs_version & 0x1)
83 pmap_unset (MOUNTPROG, MOUNTVERS);
84 if (nfs_version & (0x1 << 1))
85 pmap_unset (MOUNTPROG, MOUNTVERS_POSIX);
86 if (nfs_version & (0x1 << 2))
87 pmap_unset (MOUNTPROG, MOUNTVERS_NFSV3);
90 /* Wait for all worker child processes to exit and reap them */
92 wait_for_workers (void)
99 pid = waitpid(0, &status, 0);
103 return; /* no more children */
104 xlog(L_FATAL, "mountd: can't wait: %s\n",
108 /* Note: because we SIG_IGN'd SIGCHLD earlier, this
109 * does not happen on 2.6 kernels, and waitpid() blocks
110 * until all the children are dead then returns with
111 * -ECHILD. But, we don't need to do anything on the
112 * death of individual workers, so we don't care. */
113 xlog(L_NOTICE, "mountd: reaped child %d, status %d\n",
118 /* Fork num_threads worker children and wait for them */
125 xlog(L_NOTICE, "mountd: starting %d threads\n", num_threads);
127 for (i = 0 ; i < num_threads ; i++) {
130 xlog(L_FATAL, "mountd: cannot fork: %s\n",
136 /* Re-enable the default action on SIGTERM et al
137 * so that workers die naturally when sent them.
138 * Only the parent unregisters with pmap and
139 * hence needs to do special SIGTERM handling. */
141 sa.sa_handler = SIG_DFL;
143 sigemptyset(&sa.sa_mask);
144 sigaction(SIGHUP, &sa, NULL);
145 sigaction(SIGINT, &sa, NULL);
146 sigaction(SIGTERM, &sa, NULL);
148 /* fall into my_svc_run in caller */
155 unregister_services();
156 xlog(L_NOTICE, "mountd: no more workers, exiting\n");
166 unregister_services();
167 if (num_threads > 1) {
168 /* play Kronos and eat our children */
172 xlog (L_FATAL, "Caught signal %d, un-registering and exiting.", sig);
178 /* don't exit on SIGHUP */
179 xlog (L_NOTICE, "Received SIGHUP... Ignoring.\n", sig);
184 mount_null_1_svc(struct svc_req *rqstp, void *argp, void *resp)
190 mount_mnt_1_svc(struct svc_req *rqstp, dirpath *path, fhstatus *res)
192 struct nfs_fh_len *fh;
194 xlog(D_CALL, "MNT1(%s) called", *path);
195 if ((fh = get_rootfh(rqstp, path, &res->fhs_status, 0)) != NULL)
196 memcpy(&res->fhstatus_u.fhs_fhandle, fh->fh_handle, 32);
201 mount_dump_1_svc(struct svc_req *rqstp, void *argp, mountlist *res)
203 struct sockaddr_in *addr =
204 (struct sockaddr_in *) svc_getcaller(rqstp->rq_xprt);
206 if ((*res = mountlist_list()) == NULL)
207 xlog(L_WARNING, "dump request from %s failed.",
208 inet_ntoa(addr->sin_addr));
214 mount_umnt_1_svc(struct svc_req *rqstp, dirpath *argp, void *resp)
216 struct sockaddr_in *sin
217 = (struct sockaddr_in *) svc_getcaller(rqstp->rq_xprt);
220 char rpath[MAXPATHLEN+1];
225 if (realpath(p, rpath) != NULL) {
226 rpath[sizeof (rpath) - 1] = '\0';
230 if (!(exp = auth_authenticate("unmount", sin, p))) {
237 mountlist_del(inet_ntoa(sin->sin_addr), p);
242 mount_umntall_1_svc(struct svc_req *rqstp, void *argp, void *resp)
244 /* Reload /etc/xtab if necessary */
247 mountlist_del_all((struct sockaddr_in *) svc_getcaller(rqstp->rq_xprt));
252 mount_export_1_svc(struct svc_req *rqstp, void *argp, exports *resp)
254 struct sockaddr_in *addr =
255 (struct sockaddr_in *) svc_getcaller(rqstp->rq_xprt);
257 if ((*resp = get_exportlist()) == NULL)
258 xlog(L_WARNING, "export request from %s failed.",
259 inet_ntoa(addr->sin_addr));
265 mount_exportall_1_svc(struct svc_req *rqstp, void *argp, exports *resp)
267 struct sockaddr_in *addr =
268 (struct sockaddr_in *) svc_getcaller(rqstp->rq_xprt);
270 if ((*resp = get_exportlist()) == NULL)
271 xlog(L_WARNING, "exportall request from %s failed.",
272 inet_ntoa(addr->sin_addr));
277 * MNTv2 pathconf procedure
279 * The protocol doesn't include a status field, so Sun apparently considers
280 * it good practice to let anyone snoop on your system, even if it's
281 * pretty harmless data such as pathconf. We don't.
283 * Besides, many of the pathconf values don't make much sense on NFS volumes.
284 * FIFOs and tty device files represent devices on the *client*, so there's
285 * no point in getting the server's buffer sizes etc.
288 mount_pathconf_2_svc(struct svc_req *rqstp, dirpath *path, ppathcnf *res)
290 struct sockaddr_in *sin
291 = (struct sockaddr_in *) svc_getcaller(rqstp->rq_xprt);
294 char rpath[MAXPATHLEN+1];
297 memset(res, 0, sizeof(*res));
302 /* Reload /etc/xtab if necessary */
305 /* Resolve symlinks */
306 if (realpath(p, rpath) != NULL) {
307 rpath[sizeof (rpath) - 1] = '\0';
311 /* Now authenticate the intruder... */
312 if (!(exp = auth_authenticate("pathconf", sin, p))) {
314 } else if (stat(p, &stb) < 0) {
315 xlog(L_WARNING, "can't stat exported dir %s: %s",
321 res->pc_link_max = pathconf(p, _PC_LINK_MAX);
322 res->pc_max_canon = pathconf(p, _PC_MAX_CANON);
323 res->pc_max_input = pathconf(p, _PC_MAX_INPUT);
324 res->pc_name_max = pathconf(p, _PC_NAME_MAX);
325 res->pc_path_max = pathconf(p, _PC_PATH_MAX);
326 res->pc_pipe_buf = pathconf(p, _PC_PIPE_BUF);
327 res->pc_vdisable = pathconf(p, _PC_VDISABLE);
329 /* Can't figure out what to do with pc_mask */
339 * NFSv3 MOUNT procedure
342 mount_mnt_3_svc(struct svc_req *rqstp, dirpath *path, mountres3 *res)
344 #define AUTH_GSS_KRB5 390003
345 #define AUTH_GSS_KRB5I 390004
346 #define AUTH_GSS_KRB5P 390005
347 static int flavors[] = { AUTH_NULL, AUTH_UNIX, AUTH_GSS_KRB5, AUTH_GSS_KRB5I, AUTH_GSS_KRB5P};
348 struct nfs_fh_len *fh;
350 xlog(D_CALL, "MNT3(%s) called", *path);
351 if ((fh = get_rootfh(rqstp, path, &res->fhs_status, 1)) != NULL) {
352 struct mountres3_ok *ok = &res->mountres3_u.mountinfo;
354 ok->fhandle.fhandle3_len = fh->fh_size;
355 ok->fhandle.fhandle3_val = (char *)fh->fh_handle;
356 ok->auth_flavors.auth_flavors_len
357 = sizeof(flavors)/sizeof(flavors[0]);
358 ok->auth_flavors.auth_flavors_val = flavors;
363 static struct nfs_fh_len *
364 get_rootfh(struct svc_req *rqstp, dirpath *path, mountstat3 *error, int v3)
366 struct sockaddr_in *sin =
367 (struct sockaddr_in *) svc_getcaller(rqstp->rq_xprt);
368 struct stat stb, estb;
370 char rpath[MAXPATHLEN+1];
376 /* Reload /var/lib/nfs/etab if necessary */
379 /* Resolve symlinks */
380 if (realpath(p, rpath) != NULL) {
381 rpath[sizeof (rpath) - 1] = '\0';
385 /* Now authenticate the intruder... */
386 if (!(exp = auth_authenticate("mount", sin, p))) {
387 *error = NFSERR_ACCES;
388 } else if (stat(p, &stb) < 0) {
389 xlog(L_WARNING, "can't stat exported dir %s: %s",
392 *error = NFSERR_NOENT;
394 *error = NFSERR_ACCES;
395 } else if (!S_ISDIR(stb.st_mode) && !S_ISREG(stb.st_mode)) {
396 xlog(L_WARNING, "%s is not a directory or regular file", p);
397 *error = NFSERR_NOTDIR;
398 } else if (stat(exp->m_export.e_path, &estb) < 0) {
399 xlog(L_WARNING, "can't stat export point %s: %s",
401 *error = NFSERR_NOENT;
402 } else if (estb.st_dev != stb.st_dev
403 && (!new_cache || !(exp->m_export.e_flags & NFSEXP_CROSSMOUNT))
405 xlog(L_WARNING, "request to export directory %s below nearest filesystem %s",
406 p, exp->m_export.e_path);
407 *error = NFSERR_ACCES;
408 } else if (exp->m_export.e_mountpoint &&
409 !is_mountpoint(exp->m_export.e_mountpoint[0]?
410 exp->m_export.e_mountpoint:
411 exp->m_export.e_path)) {
412 xlog(L_WARNING, "request to export an unmounted filesystem: %s",
414 *error = NFSERR_NOENT;
415 } else if (new_cache) {
416 /* This will be a static private nfs_export with just one
417 * address. We feed it to kernel then extract the filehandle,
420 struct nfs_fh_len *fh;
422 if (cache_export(exp, p)) {
423 *error = NFSERR_ACCES;
426 fh = cache_get_filehandle(exp, v3?64:32, p);
428 *error = NFSERR_ACCES;
431 mountlist_add(inet_ntoa(sin->sin_addr), p);
435 struct nfs_fh_len *fh;
437 if (exp->m_exported<1)
443 fh = getfh_size ((struct sockaddr *) sin, p, 64);
444 if (!v3 || (fh == NULL && errno == EINVAL)) {
445 /* We first try the new nfs syscall. */
446 fh = getfh ((struct sockaddr *) sin, p);
447 if (fh == NULL && errno == EINVAL)
448 /* Let's try the old one. */
449 fh = getfh_old ((struct sockaddr *) sin,
450 stb.st_dev, stb.st_ino);
453 mountlist_add(inet_ntoa(sin->sin_addr), p);
458 xlog(L_WARNING, "getfh failed: %s", strerror(errno));
459 *error = NFSERR_ACCES;
468 static exports elist = NULL;
469 struct exportnode *e, *ne;
470 struct groupnode *g, *ng, *c, **cp;
473 static unsigned int ecounter;
474 unsigned int acounter;
476 acounter = auth_reload();
477 if (elist && acounter == ecounter)
482 for (e = elist; e != NULL; e = ne) {
484 for (g = e->ex_groups; g != NULL; g = ng) {
494 for (i = 0; i < MCL_MAXTYPES; i++) {
495 for (exp = exportlist[i]; exp; exp = exp->m_next) {
496 for (e = elist; e != NULL; e = e->ex_next) {
497 if (!strcmp(exp->m_export.m_path, e->ex_dir))
501 e = (struct exportnode *) xmalloc(sizeof(*e));
504 e->ex_dir = xstrdup(exp->m_export.m_path);
508 /* We need to check if we should remove
510 if (i == MCL_ANONYMOUS && e->ex_groups) {
511 for (g = e->ex_groups; g; g = ng) {
520 if (i != MCL_FQDN && e->ex_groups) {
524 while ((c = *cp) != NULL) {
525 if (client_gettype (c->gr_name) == MCL_FQDN
526 && (hp = gethostbyname(c->gr_name))) {
527 hp = hostent_dup (hp);
528 if (client_check(exp->m_client, hp)) {
541 if (exp->m_export.e_hostname [0] != '\0') {
542 for (g = e->ex_groups; g; g = g->gr_next)
543 if (strcmp (exp->m_export.e_hostname,
548 g = (struct groupnode *) xmalloc(sizeof(*g));
549 g->gr_name = xstrdup(exp->m_export.e_hostname);
550 g->gr_next = e->ex_groups;
560 main(int argc, char **argv)
562 char *export_file = _PATH_EXPORTS;
563 char *state_dir = NFS_STATEDIR;
571 /* Parse the command line options and arguments. */
573 while ((c = getopt_long(argc, argv, "o:nFd:f:p:P:hH:N:V:vrs:t:g", longopts, NULL)) != EOF)
579 descriptors = atoi(optarg);
580 if (descriptors <= 0) {
581 fprintf(stderr, "%s: bad descriptors: %s\n",
590 xlog_sconfig(optarg, 1);
593 export_file = optarg;
595 case 'H': /* PRC: specify a high-availability callout program */
596 ha_callout_prog = optarg;
601 case 'P': /* XXX for nfs-server compatibility */
604 if (port <= 0 || port > 65535) {
605 fprintf(stderr, "%s: bad port number: %s\n",
611 nfs_version &= ~(1 << (atoi (optarg) - 1));
614 _rpcfdtype = SOCK_DGRAM;
620 if ((state_dir = xstrdup(optarg)) == NULL) {
621 fprintf(stderr, "%s: xstrdup(%s) failed!\n",
627 num_threads = atoi (optarg);
630 nfs_version |= 1 << (atoi (optarg) - 1);
633 printf("kmountd %s\n", VERSION);
642 /* No more arguments allowed. */
643 if (optind != argc || !(nfs_version & 0x7))
646 if (chdir(state_dir)) {
647 fprintf(stderr, "%s: chdir(%s) failed: %s\n",
648 argv [0], state_dir, strerror(errno));
652 if (getrlimit (RLIMIT_NOFILE, &rlim) != 0)
653 fprintf(stderr, "%s: getrlimit (RLIMIT_NOFILE) failed: %s\n",
654 argv [0], strerror(errno));
656 /* glibc sunrpc code dies if getdtablesize > FD_SETSIZE */
657 if ((descriptors == 0 && rlim.rlim_cur > FD_SETSIZE) ||
658 descriptors > FD_SETSIZE)
659 descriptors = FD_SETSIZE;
661 rlim.rlim_cur = descriptors;
662 if (setrlimit (RLIMIT_NOFILE, &rlim) != 0) {
663 fprintf(stderr, "%s: setrlimit (RLIMIT_NOFILE) failed: %s\n",
664 argv [0], strerror(errno));
669 /* Initialize logging. */
670 if (!foreground) xlog_stderr(0);
673 sa.sa_handler = SIG_IGN;
675 sigemptyset(&sa.sa_mask);
676 sigaction(SIGHUP, &sa, NULL);
677 sigaction(SIGINT, &sa, NULL);
678 sigaction(SIGTERM, &sa, NULL);
679 sigaction(SIGPIPE, &sa, NULL);
680 /* WARNING: the following works on Linux and SysV, but not BSD! */
681 sigaction(SIGCHLD, &sa, NULL);
683 /* Daemons should close all extra filehandles ... *before* RPC init. */
687 new_cache = check_new_cache();
691 if (nfs_version & 0x1)
692 rpc_init("mountd", MOUNTPROG, MOUNTVERS,
693 mount_dispatch, port);
694 if (nfs_version & (0x1 << 1))
695 rpc_init("mountd", MOUNTPROG, MOUNTVERS_POSIX,
696 mount_dispatch, port);
697 if (nfs_version & (0x1 << 2))
698 rpc_init("mountd", MOUNTPROG, MOUNTVERS_NFSV3,
699 mount_dispatch, port);
701 sa.sa_handler = killer;
702 sigaction(SIGINT, &sa, NULL);
703 sigaction(SIGTERM, &sa, NULL);
704 sa.sa_handler = sig_hup;
705 sigaction(SIGHUP, &sa, NULL);
707 auth_init(export_file);
710 /* We first fork off a child. */
711 if ((c = fork()) > 0)
714 xlog(L_FATAL, "mountd: cannot fork: %s\n",
717 /* Now we remove ourselves from the foreground.
718 Redirect stdin/stdout/stderr first. */
720 int fd = open("/dev/null", O_RDWR);
724 if (fd > 2) (void) close(fd);
729 /* silently bounds check num_threads */
732 else if (num_threads < 1)
734 else if (num_threads > MAX_THREADS)
735 num_threads = MAX_THREADS;
742 xlog(L_ERROR, "Ack! Gack! svc_run returned!\n");
747 usage(const char *prog, int n)
750 "Usage: %s [-F|--foreground] [-h|--help] [-v|--version] [-d kind|--debug kind]\n"
751 " [-o num|--descriptors num] [-f exports-file|--exports-file=file]\n"
752 " [-p|--port port] [-V version|--nfs-version version]\n"
753 " [-N version|--no-nfs-version version] [-n|--no-tcp]\n"
754 " [-H ha-callout-prog] [-s|--state-directory-path path]\n"
755 " [-g|--manage-gids] [-t num|--num-threads=num]\n", prog);