/* * Copyright (c) 1999-2001 Ion Badulescu * Copyright (c) 1997-2002 Erez Zadok * Copyright (c) 1990 Jan-Simon Pendry * Copyright (c) 1990 Imperial College of Science, Technology & Medicine * Copyright (c) 1990 The Regents of the University of California. * All rights reserved. * * This code is derived from software contributed to Berkeley by * Jan-Simon Pendry at Imperial College, London. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgment: * This product includes software developed by the University of * California, Berkeley and its contributors. * 4. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * * $Id: autofs_linux.c,v 1.1.1.1 2002/05/15 01:22:05 jkh Exp $ * */ /* * Automounter filesystem */ #ifdef HAVE_CONFIG_H # include #endif /* HAVE_CONFIG_H */ #include #include /* * MACROS: */ #define AUTOFS_MIN_VERSION 3 #define AUTOFS_MAX_VERSION 4 /* * STRUCTURES: */ /* * VARIABLES: */ static int autofs_max_fds; static am_node **hash; static int *list; static int numfds = 0; static int bind_works = 1; static void hash_init(void) { int i; struct rlimit rlim; if (getrlimit(RLIMIT_NOFILE, &rlim) < 0) { plog(XLOG_ERROR, "getrlimit failed, defaulting to 256 fd's"); autofs_max_fds = 256; } else { autofs_max_fds = (rlim.rlim_cur > 1024) ? 1024 : rlim.rlim_cur; plog(XLOG_INFO, "%d fd's available for autofs", autofs_max_fds); } list = malloc(autofs_max_fds * sizeof(*list)); hash = malloc(autofs_max_fds * sizeof(*hash)); for (i = 0 ; i < autofs_max_fds; i++) hash[i] = 0, list[i] = -1; } static void hash_insert(int fd, am_node *mp) { if (hash[fd] != 0) plog(XLOG_ERROR, "file descriptor %d already in the hash", fd); hash[fd] = mp; list[numfds] = fd; numfds++; } static void hash_delete(int fd) { int i; if (hash[fd] == 0) plog(XLOG_WARNING, "file descriptor %d not in the hash", fd); hash[fd] = 0; numfds--; for (i = 0; i < numfds; i++) if (list[i] == fd) { list[i] = list[numfds]; break; } } autofs_fh_t * autofs_get_fh(am_node *mp) { int fds[2]; autofs_fh_t *fh; plog(XLOG_DEBUG, "autofs_get_fh for %s", mp->am_path); if (pipe(fds) < 0) return 0; /* sanity check */ if (fds[0] > autofs_max_fds) return 0; fh = ALLOC(autofs_fh_t); fh->fd = fds[0]; fh->kernelfd = fds[1]; fh->ioctlfd = -1; fh->pending = NULL; hash_insert(fh->fd, mp); return fh; } void autofs_mounted(mntfs *mf) { autofs_fh_t *fh = mf->mf_autofs_fh; close(fh->kernelfd); fh->kernelfd = -1; fh->ioctlfd = open(mf->mf_mount, O_RDONLY); /* Get autofs protocol version */ if (ioctl(fh->ioctlfd, AUTOFS_IOC_PROTOVER, &fh->version) < 0) { plog(XLOG_ERROR, "AUTOFS_IOC_PROTOVER: %s", strerror(errno)); fh->version = AUTOFS_MIN_VERSION; plog(XLOG_ERROR, "autofs: assuming protocol version %d", fh->version); } else plog(XLOG_INFO, "autofs: using protocol version %d", fh->version); if (fh->version < 4) { /* no support for subdirs */ plog(XLOG_INFO, "Turning off autofs support for host filesystems"); amfs_host_ops.nfs_fs_flags &= ~FS_AUTOFS; amfs_host_ops.autofs_fs_flags &= ~FS_AUTOFS; } } void autofs_release_fh(autofs_fh_t *fh) { if (fh) { hash_delete(fh->fd); /* * if a mount succeeded, the kernel fd was closed on * the amd side, so it might have been reused. * we set it to -1 after closing it, to avoid the problem. */ if (fh->kernelfd >= 0) close(fh->kernelfd); if (fh->ioctlfd >= 0) { /* * Tell the kernel we're catatonic */ ioctl(fh->ioctlfd, AUTOFS_IOC_CATATONIC, 0); close(fh->ioctlfd); } if (fh->fd >= 0) close(fh->fd); XFREE(fh); } } void autofs_add_fdset(fd_set *readfds) { int i; for (i = 0; i < numfds; i++) FD_SET(list[i], readfds); } static int autofs_get_pkt(int fd, char *buf, int bytes) { int i; do { i = read(fd, buf, bytes); if (i <= 0) break; buf += i; bytes -= i; } while (bytes); return bytes; } static void autofs_lookup_failed(am_node *mp, char *name) { autofs_fh_t *fh = mp->am_mnt->mf_autofs_fh; struct autofs_pending_mount **pp, *p; pp = &fh->pending; while (*pp && !STREQ((*pp)->name, name)) pp = &(*pp)->next; /* sanity check */ if (*pp == NULL) return; p = *pp; plog(XLOG_INFO, "autofs: lookup of %s failed", name); if ( ioctl(fh->ioctlfd, AUTOFS_IOC_FAIL, p->wait_queue_token) < 0 ) plog(XLOG_ERROR, "AUTOFS_IOC_FAIL: %s", strerror(errno)); XFREE(p->name); *pp = p->next; XFREE(p); } /* XXX not implemented */ static void autofs_handle_expire(am_node *mp, struct autofs_packet_expire *pkt) { } static void autofs_handle_missing(am_node *mp, struct autofs_packet_missing *pkt) { autofs_fh_t *fh; mntfs *mf; am_node *ap; struct autofs_pending_mount *p; int error; mf = mp->am_mnt; fh = mf->mf_autofs_fh; p = fh->pending; while (p && p->wait_queue_token != pkt->wait_queue_token) p = p->next; if (p) { /* already pending */ dlog("Mounting of %s/%s already pending", mp->am_path, pkt->name); amd_stats.d_drops++; return; } p = ALLOC(struct autofs_pending_mount); p->wait_queue_token = pkt->wait_queue_token; p->name = strdup(pkt->name); p->next = fh->pending; fh->pending = p; amuDebug(D_TRACE) plog(XLOG_DEBUG, "\tlookup(%s, %s)", mp->am_path, pkt->name); ap = mf->mf_ops->lookup_child(mp, pkt->name, &error, VLOOK_CREATE); if (ap && error < 0) ap = mf->mf_ops->mount_child(ap, &error); /* some of the rest can be done in amfs_auto_cont */ if (ap == 0) { if (error < 0) { dlog("Mount still pending, not sending autofs reply yet"); return; } autofs_lookup_failed(mp, pkt->name); } mp->am_stats.s_lookup++; } int autofs_handle_fdset(fd_set *readfds, int nsel) { int i; union autofs_packet_union pkt; autofs_fh_t *fh; am_node *mp; for (i = 0; nsel && i < numfds; i++) { if (!FD_ISSET(list[i], readfds)) continue; nsel--; FD_CLR(list[i], readfds); mp = hash[list[i]]; fh = mp->am_mnt->mf_autofs_fh; if (autofs_get_pkt(fh->fd, (char *) &pkt, sizeof(union autofs_packet_union))) continue; switch (pkt.hdr.type) { case autofs_ptype_missing: autofs_handle_missing(mp, &pkt.missing); break; case autofs_ptype_expire: autofs_handle_expire(mp, &pkt.expire); break; default: plog(XLOG_ERROR, "Unknown autofs packet type %d", pkt.hdr.type); } } return nsel; } int create_autofs_service(void) { hash_init(); /* not the best place, but... */ if (linux_version_code() < KERNEL_VERSION(2,4,0)) bind_works = 0; /* we need to turn on FS_MKMNT for amfs_auto */ amfs_auto_ops.autofs_fs_flags |= FS_MKMNT; /* we also need to turn on FS_MBACKGROUND for amfs_link */ amfs_link_ops.autofs_fs_flags |= FS_MBACKGROUND; return 0; } int destroy_autofs_service(void) { return 0; } int autofs_link_mount(am_node *mp) { int err = -1; #ifdef MNT2_GEN_OPT_BIND if (bind_works) { mntent_t mnt; struct stat buf; /* * we need to stat() the destination, because the bind mount does not * follow symlinks and/or allow for non-existent destinations. * we fall back to symlinks if there are problems. * * we need to temporarily change pgrp, otherwise our stat() won't * trigger whatever cascading mounts are needed. * * WARNING: we will deadlock if this function is called from the master * amd process and it happens to trigger another auto mount. Therefore, * this function should be called only from a child amd process, or * at the very least is should not be called from the parent unless we * know for sure that it won't cause a recursive mount. We refuse to * cause the recursive mount anyway if called from the parent amd. */ if (!foreground) { pid_t pgrp = getpgrp(); setpgrp(); err = stat(mp->am_link, &buf); if (setpgid(0, pgrp)) { plog(XLOG_ERROR, "autofs: cannot restore pgrp: %s", strerror(errno)); plog(XLOG_ERROR, "autofs: aborting the mount"); return errno; } if (err) goto use_symlink; } if ((err = lstat(mp->am_link, &buf))) goto use_symlink; if (S_ISLNK(buf.st_mode)) goto use_symlink; plog(XLOG_INFO, "autofs: bind-mounting %s -> %s", mp->am_path, mp->am_link); memset(&mnt, 0, sizeof(mnt)); mnt.mnt_dir = mp->am_path; mnt.mnt_fsname = mp->am_link; mnt.mnt_type = "bind"; mnt.mnt_opts = ""; mkdirs(mp->am_path, 0555); err = mount_fs(&mnt, MNT2_GEN_OPT_BIND, NULL, 0, "bind", 0, NULL, mnttab_file_name); if (err) rmdir(mp->am_path); } use_symlink: #endif /* MNT2_GEN_OPT_BIND */ if (err) { plog(XLOG_INFO, "autofs: symlinking %s -> %s", mp->am_path, mp->am_link); err = symlink(mp->am_link, mp->am_path); } if (err) return errno; return 0; } int autofs_link_umount(am_node *mp) { struct stat buf; int err; if ((err = lstat(mp->am_path, &buf))) return errno; if (S_ISDIR(buf.st_mode)) { plog(XLOG_INFO, "autofs: un-bind-mounting %s", mp->am_path); err = umount_fs(mp->am_path, mnttab_file_name); } else { plog(XLOG_INFO, "autofs: deleting symlink %s", mp->am_path); err = unlink(mp->am_path); } if (err) return errno; return err; } int autofs_umount_succeeded(am_node *mp) { /* * If we remove the mount point of a pending mount, any queued access * to it will fail. So don't do it. */ if (!(mp->am_flags & AMF_REMOUNT)) { plog(XLOG_INFO, "autofs: removing mountpoint directory %s", mp->am_path); rmdirs(mp->am_path); } return 0; } int autofs_umount_failed(am_node *mp) { /* nothing to do */ return 0; } void autofs_mount_succeeded(am_node *mp) { autofs_fh_t *fh = mp->am_parent->am_mnt->mf_autofs_fh; struct autofs_pending_mount **pp, *p; pp = &fh->pending; while (*pp && !STREQ((*pp)->name, mp->am_name)) pp = &(*pp)->next; /* sanity check */ if (*pp == NULL) return; p = *pp; plog(XLOG_INFO, "autofs: mounting %s succeeded", mp->am_path); if ( ioctl(fh->ioctlfd, AUTOFS_IOC_READY, p->wait_queue_token) < 0 ) plog(XLOG_ERROR, "AUTOFS_IOC_READY: %s", strerror(errno)); XFREE(p->name); *pp = p->next; XFREE(p); } void autofs_mount_failed(am_node *mp) { autofs_fh_t *fh = mp->am_parent->am_mnt->mf_autofs_fh; struct autofs_pending_mount **pp, *p; pp = &fh->pending; while (*pp && !STREQ((*pp)->name, mp->am_name)) pp = &(*pp)->next; /* sanity check */ if (*pp == NULL) return; rmdirs(mp->am_path); p = *pp; plog(XLOG_INFO, "autofs: mounting %s failed", mp->am_path); if ( ioctl(fh->ioctlfd, AUTOFS_IOC_FAIL, p->wait_queue_token) < 0 ) plog(XLOG_ERROR, "AUTOFS_IOC_FAIL: %s", strerror(errno)); XFREE(p->name); *pp = p->next; XFREE(p); } void autofs_get_opts(char *opts, autofs_fh_t *fh) { sprintf(opts, "fd=%d,minproto=%d,maxproto=%d", fh->kernelfd, AUTOFS_MIN_VERSION, AUTOFS_MAX_VERSION); } int autofs_compute_mount_flags(mntent_t *mnt) { return 0; }