1 1.2 pgoyette /* $NetBSD: nfs_nfssvc.c,v 1.2 2016/12/13 22:41:46 pgoyette Exp $ */ 2 1.1 dholland /*- 3 1.1 dholland * Copyright (c) 1989, 1993 4 1.1 dholland * The Regents of the University of California. All rights reserved. 5 1.1 dholland * 6 1.1 dholland * This code is derived from software contributed to Berkeley by 7 1.1 dholland * Rick Macklem at The University of Guelph. 8 1.1 dholland * 9 1.1 dholland * Redistribution and use in source and binary forms, with or without 10 1.1 dholland * modification, are permitted provided that the following conditions 11 1.1 dholland * are met: 12 1.1 dholland * 1. Redistributions of source code must retain the above copyright 13 1.1 dholland * notice, this list of conditions and the following disclaimer. 14 1.1 dholland * 2. Redistributions in binary form must reproduce the above copyright 15 1.1 dholland * notice, this list of conditions and the following disclaimer in the 16 1.1 dholland * documentation and/or other materials provided with the distribution. 17 1.1 dholland * 4. Neither the name of the University nor the names of its contributors 18 1.1 dholland * may be used to endorse or promote products derived from this software 19 1.1 dholland * without specific prior written permission. 20 1.1 dholland * 21 1.1 dholland * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 22 1.1 dholland * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 23 1.1 dholland * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 24 1.1 dholland * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 25 1.1 dholland * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 26 1.1 dholland * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 27 1.1 dholland * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 28 1.1 dholland * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 29 1.1 dholland * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 30 1.1 dholland * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 31 1.1 dholland * SUCH DAMAGE. 32 1.1 dholland * 33 1.1 dholland */ 34 1.1 dholland 35 1.1 dholland #include <sys/cdefs.h> 36 1.2 pgoyette /* __FBSDID("FreeBSD: head/sys/nfs/nfs_nfssvc.c 298788 2016-04-29 16:07:25Z pfg "); */ 37 1.2 pgoyette __RCSID("$NetBSD: nfs_nfssvc.c,v 1.2 2016/12/13 22:41:46 pgoyette Exp $"); 38 1.1 dholland 39 1.2 pgoyette #ifdef _KERNEL_OPT 40 1.2 pgoyette #include "opt_newnfs.h" 41 1.2 pgoyette #endif 42 1.1 dholland 43 1.1 dholland #include <sys/param.h> 44 1.1 dholland #include <sys/systm.h> 45 1.1 dholland #include <sys/sysproto.h> 46 1.1 dholland #include <sys/kernel.h> 47 1.1 dholland #include <sys/sysctl.h> 48 1.1 dholland #include <sys/priv.h> 49 1.1 dholland #include <sys/proc.h> 50 1.1 dholland #include <sys/lock.h> 51 1.1 dholland #include <sys/mutex.h> 52 1.1 dholland #include <sys/module.h> 53 1.1 dholland #include <sys/sysent.h> 54 1.1 dholland #include <sys/syscall.h> 55 1.1 dholland 56 1.1 dholland #include <security/audit/audit.h> 57 1.1 dholland 58 1.2 pgoyette #include <fs/nfs/common/nfssvc.h> 59 1.1 dholland 60 1.1 dholland static int nfssvc_offset = SYS_nfssvc; 61 1.1 dholland static struct sysent nfssvc_prev_sysent; 62 1.1 dholland MAKE_SYSENT(nfssvc); 63 1.1 dholland 64 1.1 dholland /* 65 1.1 dholland * This tiny module simply handles the nfssvc() system call. The other 66 1.1 dholland * nfs modules that use the system call register themselves by setting 67 1.1 dholland * the nfsd_call_xxx function pointers non-NULL. 68 1.1 dholland */ 69 1.1 dholland 70 1.1 dholland int (*nfsd_call_nfsserver)(struct thread *, struct nfssvc_args *) = NULL; 71 1.1 dholland int (*nfsd_call_nfscommon)(struct thread *, struct nfssvc_args *) = NULL; 72 1.1 dholland int (*nfsd_call_nfscl)(struct thread *, struct nfssvc_args *) = NULL; 73 1.1 dholland int (*nfsd_call_nfsd)(struct thread *, struct nfssvc_args *) = NULL; 74 1.1 dholland 75 1.1 dholland /* 76 1.2 pgoyette * Nfs server pseudo system call for the nfsd's 77 1.1 dholland */ 78 1.1 dholland int 79 1.1 dholland sys_nfssvc(struct thread *td, struct nfssvc_args *uap) 80 1.1 dholland { 81 1.1 dholland int error; 82 1.1 dholland 83 1.1 dholland KASSERT(!mtx_owned(&Giant), ("nfssvc(): called with Giant")); 84 1.1 dholland 85 1.1 dholland AUDIT_ARG_CMD(uap->flag); 86 1.1 dholland 87 1.1 dholland /* Allow anyone to get the stats. */ 88 1.1 dholland if ((uap->flag & ~NFSSVC_GETSTATS) != 0) { 89 1.1 dholland error = priv_check(td, PRIV_NFS_DAEMON); 90 1.1 dholland if (error != 0) 91 1.1 dholland return (error); 92 1.1 dholland } 93 1.1 dholland error = EINVAL; 94 1.1 dholland if ((uap->flag & (NFSSVC_ADDSOCK | NFSSVC_OLDNFSD | NFSSVC_NFSD)) && 95 1.1 dholland nfsd_call_nfsserver != NULL) 96 1.1 dholland error = (*nfsd_call_nfsserver)(td, uap); 97 1.1 dholland else if ((uap->flag & (NFSSVC_CBADDSOCK | NFSSVC_NFSCBD | 98 1.1 dholland NFSSVC_DUMPMNTOPTS)) && nfsd_call_nfscl != NULL) 99 1.1 dholland error = (*nfsd_call_nfscl)(td, uap); 100 1.1 dholland else if ((uap->flag & (NFSSVC_IDNAME | NFSSVC_GETSTATS | 101 1.1 dholland NFSSVC_GSSDADDPORT | NFSSVC_GSSDADDFIRST | NFSSVC_GSSDDELETEALL | 102 1.1 dholland NFSSVC_NFSUSERDPORT | NFSSVC_NFSUSERDDELPORT)) && 103 1.1 dholland nfsd_call_nfscommon != NULL) 104 1.1 dholland error = (*nfsd_call_nfscommon)(td, uap); 105 1.1 dholland else if ((uap->flag & (NFSSVC_NFSDNFSD | NFSSVC_NFSDADDSOCK | 106 1.1 dholland NFSSVC_PUBLICFH | NFSSVC_V4ROOTEXPORT | NFSSVC_NOPUBLICFH | 107 1.1 dholland NFSSVC_STABLERESTART | NFSSVC_ADMINREVOKE | 108 1.1 dholland NFSSVC_DUMPCLIENTS | NFSSVC_DUMPLOCKS | NFSSVC_BACKUPSTABLE | 109 1.1 dholland NFSSVC_SUSPENDNFSD | NFSSVC_RESUMENFSD)) && 110 1.1 dholland nfsd_call_nfsd != NULL) 111 1.1 dholland error = (*nfsd_call_nfsd)(td, uap); 112 1.1 dholland if (error == EINTR || error == ERESTART) 113 1.1 dholland error = 0; 114 1.1 dholland return (error); 115 1.1 dholland } 116 1.1 dholland 117 1.1 dholland /* 118 1.1 dholland * Called once to initialize data structures... 119 1.1 dholland */ 120 1.1 dholland static int 121 1.1 dholland nfssvc_modevent(module_t mod, int type, void *data) 122 1.1 dholland { 123 1.1 dholland static int registered; 124 1.1 dholland int error = 0; 125 1.1 dholland 126 1.1 dholland switch (type) { 127 1.1 dholland case MOD_LOAD: 128 1.1 dholland error = syscall_register(&nfssvc_offset, &nfssvc_sysent, 129 1.2 pgoyette &nfssvc_prev_sysent, SY_THR_STATIC_KLD); 130 1.1 dholland if (error) 131 1.1 dholland break; 132 1.1 dholland registered = 1; 133 1.1 dholland break; 134 1.1 dholland 135 1.1 dholland case MOD_UNLOAD: 136 1.1 dholland if (nfsd_call_nfsserver != NULL || nfsd_call_nfscommon != NULL 137 1.1 dholland || nfsd_call_nfscl != NULL || nfsd_call_nfsd != NULL) { 138 1.1 dholland error = EBUSY; 139 1.1 dholland break; 140 1.1 dholland } 141 1.1 dholland if (registered) 142 1.1 dholland syscall_deregister(&nfssvc_offset, &nfssvc_prev_sysent); 143 1.1 dholland registered = 0; 144 1.1 dholland break; 145 1.1 dholland default: 146 1.1 dholland error = EOPNOTSUPP; 147 1.1 dholland break; 148 1.1 dholland } 149 1.1 dholland return error; 150 1.1 dholland } 151 1.1 dholland static moduledata_t nfssvc_mod = { 152 1.1 dholland "nfssvc", 153 1.1 dholland nfssvc_modevent, 154 1.1 dholland NULL, 155 1.1 dholland }; 156 1.1 dholland DECLARE_MODULE(nfssvc, nfssvc_mod, SI_SUB_VFS, SI_ORDER_ANY); 157 1.1 dholland 158 1.1 dholland /* So that loader and kldload(2) can find us, wherever we are.. */ 159 1.1 dholland MODULE_VERSION(nfssvc, 1); 160 1.1 dholland 161