1 /*-
2 * Copyright (c) 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Rick Macklem at The University of Guelph.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 4. Neither the name of the University nor the names of its contributors
17 * may be used to endorse or promote products derived from this software
18 * without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 *
32 */
33
34 #include <sys/cdefs.h>
35 __FBSDID("$FreeBSD: stable/9/sys/fs/nfs/nfs_commonport.c 282677 2015-05-09 12:10:59Z rmacklem $");
36
37 /*
38 * Functions that need to be different for different versions of BSD
39 * kernel should be kept here, along with any global storage specific
40 * to this BSD variant.
41 */
42 #include <fs/nfs/nfsport.h>
43 #include <sys/sysctl.h>
44 #include <vm/vm.h>
45 #include <vm/vm_object.h>
46 #include <vm/vm_page.h>
47 #include <vm/vm_param.h>
48 #include <vm/vm_map.h>
49 #include <vm/vm_kern.h>
50 #include <vm/vm_extern.h>
51 #include <vm/uma.h>
52
53 extern int nfscl_ticks;
54 extern int nfsrv_nfsuserd;
55 extern struct nfssockreq nfsrv_nfsuserdsock;
56 extern void (*nfsd_call_recall)(struct vnode *, int, struct ucred *,
57 struct thread *);
58 extern int nfsrv_useacl;
59 struct mount nfsv4root_mnt;
60 int newnfs_numnfsd = 0;
61 struct nfsstats newnfsstats;
62 int nfs_numnfscbd = 0;
63 int nfscl_debuglevel = 0;
64 char nfsv4_callbackaddr[INET6_ADDRSTRLEN];
65 struct callout newnfsd_callout;
66 void (*nfsd_call_servertimer)(void) = NULL;
67 void (*ncl_call_invalcaches)(struct vnode *) = NULL;
68
69 static int nfs_realign_test;
70 static int nfs_realign_count;
71
72 SYSCTL_NODE(_vfs, OID_AUTO, nfs, CTLFLAG_RW, 0, "New NFS filesystem");
73 SYSCTL_INT(_vfs_nfs, OID_AUTO, realign_test, CTLFLAG_RW, &nfs_realign_test,
74 0, "Number of realign tests done");
75 SYSCTL_INT(_vfs_nfs, OID_AUTO, realign_count, CTLFLAG_RW, &nfs_realign_count,
76 0, "Number of mbuf realignments done");
77 SYSCTL_STRING(_vfs_nfs, OID_AUTO, callback_addr, CTLFLAG_RW,
78 nfsv4_callbackaddr, sizeof(nfsv4_callbackaddr),
79 "NFSv4 callback addr for server to use");
80 SYSCTL_INT(_vfs_nfs, OID_AUTO, debuglevel, CTLFLAG_RW, &nfscl_debuglevel,
81 0, "Debug level for new nfs client");
82
83 /*
84 * Defines for malloc
85 * (Here for FreeBSD, since they allocate storage.)
86 */
87 MALLOC_DEFINE(M_NEWNFSRVCACHE, "NFSD srvcache", "NFSD Server Request Cache");
88 MALLOC_DEFINE(M_NEWNFSDCLIENT, "NFSD V4client", "NFSD V4 Client Id");
89 MALLOC_DEFINE(M_NEWNFSDSTATE, "NFSD V4state",
90 "NFSD V4 State (Openowner, Open, Lockowner, Delegation");
91 MALLOC_DEFINE(M_NEWNFSDLOCK, "NFSD V4lock", "NFSD V4 byte range lock");
92 MALLOC_DEFINE(M_NEWNFSDLOCKFILE, "NFSD lckfile", "NFSD Open/Lock file");
93 MALLOC_DEFINE(M_NEWNFSSTRING, "NFSD string", "NFSD V4 long string");
94 MALLOC_DEFINE(M_NEWNFSUSERGROUP, "NFSD usrgroup", "NFSD V4 User/group map");
95 MALLOC_DEFINE(M_NEWNFSDREQ, "NFS req", "NFS request header");
96 MALLOC_DEFINE(M_NEWNFSFH, "NFS fh", "NFS file handle");
97 MALLOC_DEFINE(M_NEWNFSCLOWNER, "NFSCL owner", "NFSCL Open Owner");
98 MALLOC_DEFINE(M_NEWNFSCLOPEN, "NFSCL open", "NFSCL Open");
99 MALLOC_DEFINE(M_NEWNFSCLDELEG, "NFSCL deleg", "NFSCL Delegation");
100 MALLOC_DEFINE(M_NEWNFSCLCLIENT, "NFSCL client", "NFSCL Client");
101 MALLOC_DEFINE(M_NEWNFSCLLOCKOWNER, "NFSCL lckown", "NFSCL Lock Owner");
102 MALLOC_DEFINE(M_NEWNFSCLLOCK, "NFSCL lck", "NFSCL Lock");
103 MALLOC_DEFINE(M_NEWNFSV4NODE, "NEWNFSnode", "New nfs vnode");
104 MALLOC_DEFINE(M_NEWNFSDIRECTIO, "NEWdirectio", "New nfs Direct IO buffer");
105 MALLOC_DEFINE(M_NEWNFSDIROFF, "NFSCL diroffdiroff",
106 "New NFS directory offset data");
107 MALLOC_DEFINE(M_NEWNFSDROLLBACK, "NFSD rollback",
108 "New NFS local lock rollback");
109
110 /*
111 * Definition of mutex locks.
112 * newnfsd_mtx is used in nfsrvd_nfsd() to protect the nfs socket list
113 * and assorted other nfsd structures.
114 */
115 struct mtx newnfsd_mtx;
116 struct mtx nfs_sockl_mutex;
117 struct mtx nfs_state_mutex;
118 struct mtx nfs_nameid_mutex;
119 struct mtx nfs_req_mutex;
120 struct mtx nfs_slock_mutex;
121
122 /* local functions */
123 static int nfssvc_call(struct thread *, struct nfssvc_args *, struct ucred *);
124
125 #ifdef __NO_STRICT_ALIGNMENT
126 /*
127 * These architectures don't need re-alignment, so just return.
128 */
129 int
newnfs_realign(struct mbuf ** pm,int how)130 newnfs_realign(struct mbuf **pm, int how)
131 {
132
133 return (0);
134 }
135 #else /* !__NO_STRICT_ALIGNMENT */
136 /*
137 * newnfs_realign:
138 *
139 * Check for badly aligned mbuf data and realign by copying the unaligned
140 * portion of the data into a new mbuf chain and freeing the portions
141 * of the old chain that were replaced.
142 *
143 * We cannot simply realign the data within the existing mbuf chain
144 * because the underlying buffers may contain other rpc commands and
145 * we cannot afford to overwrite them.
146 *
147 * We would prefer to avoid this situation entirely. The situation does
148 * not occur with NFS/UDP and is supposed to only occassionally occur
149 * with TCP. Use vfs.nfs.realign_count and realign_test to check this.
150 *
151 */
152 int
newnfs_realign(struct mbuf ** pm,int how)153 newnfs_realign(struct mbuf **pm, int how)
154 {
155 struct mbuf *m, *n;
156 int off, space;
157
158 ++nfs_realign_test;
159 while ((m = *pm) != NULL) {
160 if ((m->m_len & 0x3) || (mtod(m, intptr_t) & 0x3)) {
161 /*
162 * NB: we can't depend on m_pkthdr.len to help us
163 * decide what to do here. May not be worth doing
164 * the m_length calculation as m_copyback will
165 * expand the mbuf chain below as needed.
166 */
167 space = m_length(m, NULL);
168 if (space >= MINCLSIZE) {
169 /* NB: m_copyback handles space > MCLBYTES */
170 n = m_getcl(how, MT_DATA, 0);
171 } else
172 n = m_get(how, MT_DATA);
173 if (n == NULL)
174 return (ENOMEM);
175 /*
176 * Align the remainder of the mbuf chain.
177 */
178 n->m_len = 0;
179 off = 0;
180 while (m != NULL) {
181 m_copyback(n, off, m->m_len, mtod(m, caddr_t));
182 off += m->m_len;
183 m = m->m_next;
184 }
185 m_freem(*pm);
186 *pm = n;
187 ++nfs_realign_count;
188 break;
189 }
190 pm = &m->m_next;
191 }
192
193 return (0);
194 }
195 #endif /* __NO_STRICT_ALIGNMENT */
196
197 #ifdef notdef
198 static void
nfsrv_object_create(struct vnode * vp,struct thread * td)199 nfsrv_object_create(struct vnode *vp, struct thread *td)
200 {
201
202 if (vp == NULL || vp->v_type != VREG)
203 return;
204 (void) vfs_object_create(vp, td, td->td_ucred);
205 }
206 #endif
207
208 /*
209 * Look up a file name. Basically just initialize stuff and call namei().
210 */
211 int
nfsrv_lookupfilename(struct nameidata * ndp,char * fname,NFSPROC_T * p)212 nfsrv_lookupfilename(struct nameidata *ndp, char *fname, NFSPROC_T *p)
213 {
214 int error;
215
216 NDINIT(ndp, LOOKUP, FOLLOW | LOCKLEAF | MPSAFE, UIO_USERSPACE, fname,
217 p);
218 error = namei(ndp);
219 if (!error) {
220 NDFREE(ndp, NDF_ONLY_PNBUF);
221 }
222 return (error);
223 }
224
225 /*
226 * Copy NFS uid, gids to the cred structure.
227 */
228 void
newnfs_copycred(struct nfscred * nfscr,struct ucred * cr)229 newnfs_copycred(struct nfscred *nfscr, struct ucred *cr)
230 {
231
232 KASSERT(nfscr->nfsc_ngroups >= 0,
233 ("newnfs_copycred: negative nfsc_ngroups"));
234 cr->cr_uid = nfscr->nfsc_uid;
235 crsetgroups(cr, nfscr->nfsc_ngroups, nfscr->nfsc_groups);
236 }
237
238 /*
239 * Map args from nfsmsleep() to msleep().
240 */
241 int
nfsmsleep(void * chan,void * mutex,int prio,const char * wmesg,struct timespec * ts)242 nfsmsleep(void *chan, void *mutex, int prio, const char *wmesg,
243 struct timespec *ts)
244 {
245 u_int64_t nsecval;
246 int error, timeo;
247
248 if (ts) {
249 timeo = hz * ts->tv_sec;
250 nsecval = (u_int64_t)ts->tv_nsec;
251 nsecval = ((nsecval * ((u_int64_t)hz)) + 500000000) /
252 1000000000;
253 timeo += (int)nsecval;
254 } else {
255 timeo = 0;
256 }
257 error = msleep(chan, (struct mtx *)mutex, prio, wmesg, timeo);
258 return (error);
259 }
260
261 /*
262 * Get the file system info for the server. For now, just assume FFS.
263 */
264 void
nfsvno_getfs(struct nfsfsinfo * sip,int isdgram)265 nfsvno_getfs(struct nfsfsinfo *sip, int isdgram)
266 {
267 int pref;
268
269 /*
270 * XXX
271 * There should be file system VFS OP(s) to get this information.
272 * For now, assume ufs.
273 */
274 if (isdgram)
275 pref = NFS_MAXDGRAMDATA;
276 else
277 pref = NFS_SRVMAXIO;
278 sip->fs_rtmax = NFS_SRVMAXIO;
279 sip->fs_rtpref = pref;
280 sip->fs_rtmult = NFS_FABLKSIZE;
281 sip->fs_wtmax = NFS_SRVMAXIO;
282 sip->fs_wtpref = pref;
283 sip->fs_wtmult = NFS_FABLKSIZE;
284 sip->fs_dtpref = pref;
285 sip->fs_maxfilesize = 0xffffffffffffffffull;
286 sip->fs_timedelta.tv_sec = 0;
287 sip->fs_timedelta.tv_nsec = 1;
288 sip->fs_properties = (NFSV3FSINFO_LINK |
289 NFSV3FSINFO_SYMLINK | NFSV3FSINFO_HOMOGENEOUS |
290 NFSV3FSINFO_CANSETTIME);
291 }
292
293 /*
294 * Do the pathconf vnode op.
295 */
296 int
nfsvno_pathconf(struct vnode * vp,int flag,register_t * retf,struct ucred * cred,struct thread * p)297 nfsvno_pathconf(struct vnode *vp, int flag, register_t *retf,
298 struct ucred *cred, struct thread *p)
299 {
300 int error;
301
302 error = VOP_PATHCONF(vp, flag, retf);
303 if (error == EOPNOTSUPP || error == EINVAL) {
304 /*
305 * Some file systems return EINVAL for name arguments not
306 * supported and some return EOPNOTSUPP for this case.
307 * So the NFSv3 Pathconf RPC doesn't fail for these cases,
308 * just fake them.
309 */
310 switch (flag) {
311 case _PC_LINK_MAX:
312 *retf = LINK_MAX;
313 break;
314 case _PC_NAME_MAX:
315 *retf = NAME_MAX;
316 break;
317 case _PC_CHOWN_RESTRICTED:
318 *retf = 1;
319 break;
320 case _PC_NO_TRUNC:
321 *retf = 1;
322 break;
323 default:
324 /*
325 * Only happens if a _PC_xxx is added to the server,
326 * but this isn't updated.
327 */
328 *retf = 0;
329 printf("nfsrvd pathconf flag=%d not supp\n", flag);
330 };
331 error = 0;
332 }
333 NFSEXITCODE(error);
334 return (error);
335 }
336
337 /* Fake nfsrv_atroot. Just return 0 */
338 int
nfsrv_atroot(struct vnode * vp,long * retp)339 nfsrv_atroot(struct vnode *vp, long *retp)
340 {
341
342 return (0);
343 }
344
345 /*
346 * Set the credentials to refer to root.
347 * If only the various BSDen could agree on whether cr_gid is a separate
348 * field or cr_groups[0]...
349 */
350 void
newnfs_setroot(struct ucred * cred)351 newnfs_setroot(struct ucred *cred)
352 {
353
354 cred->cr_uid = 0;
355 cred->cr_groups[0] = 0;
356 cred->cr_ngroups = 1;
357 }
358
359 /*
360 * Get the client credential. Used for Renew and recovery.
361 */
362 struct ucred *
newnfs_getcred(void)363 newnfs_getcred(void)
364 {
365 struct ucred *cred;
366 struct thread *td = curthread;
367
368 cred = crdup(td->td_ucred);
369 newnfs_setroot(cred);
370 return (cred);
371 }
372
373 /*
374 * Nfs timer routine
375 * Call the nfsd's timer function once/sec.
376 */
377 void
newnfs_timer(void * arg)378 newnfs_timer(void *arg)
379 {
380 static time_t lasttime = 0;
381 /*
382 * Call the server timer, if set up.
383 * The argument indicates if it is the next second and therefore
384 * leases should be checked.
385 */
386 if (lasttime != NFSD_MONOSEC) {
387 lasttime = NFSD_MONOSEC;
388 if (nfsd_call_servertimer != NULL)
389 (*nfsd_call_servertimer)();
390 }
391 callout_reset(&newnfsd_callout, nfscl_ticks, newnfs_timer, NULL);
392 }
393
394
395 /*
396 * Sleep for a short period of time unless errval == NFSERR_GRACE, where
397 * the sleep should be for 5 seconds.
398 * Since lbolt doesn't exist in FreeBSD-CURRENT, just use a timeout on
399 * an event that never gets a wakeup. Only return EINTR or 0.
400 */
401 int
nfs_catnap(int prio,int errval,const char * wmesg)402 nfs_catnap(int prio, int errval, const char *wmesg)
403 {
404 static int non_event;
405 int ret;
406
407 if (errval == NFSERR_GRACE)
408 ret = tsleep(&non_event, prio, wmesg, 5 * hz);
409 else
410 ret = tsleep(&non_event, prio, wmesg, 1);
411 if (ret != EINTR)
412 ret = 0;
413 return (ret);
414 }
415
416 /*
417 * Get referral. For now, just fail.
418 */
419 struct nfsreferral *
nfsv4root_getreferral(struct vnode * vp,struct vnode * dvp,u_int32_t fileno)420 nfsv4root_getreferral(struct vnode *vp, struct vnode *dvp, u_int32_t fileno)
421 {
422
423 return (NULL);
424 }
425
426 static int
nfssvc_nfscommon(struct thread * td,struct nfssvc_args * uap)427 nfssvc_nfscommon(struct thread *td, struct nfssvc_args *uap)
428 {
429 int error;
430
431 error = nfssvc_call(td, uap, td->td_ucred);
432 NFSEXITCODE(error);
433 return (error);
434 }
435
436 static int
nfssvc_call(struct thread * p,struct nfssvc_args * uap,struct ucred * cred)437 nfssvc_call(struct thread *p, struct nfssvc_args *uap, struct ucred *cred)
438 {
439 int error = EINVAL;
440 struct nfsd_idargs nid;
441
442 if (uap->flag & NFSSVC_IDNAME) {
443 error = copyin(uap->argp, (caddr_t)&nid, sizeof (nid));
444 if (error)
445 goto out;
446 error = nfssvc_idname(&nid);
447 goto out;
448 } else if (uap->flag & NFSSVC_GETSTATS) {
449 error = copyout(&newnfsstats,
450 CAST_USER_ADDR_T(uap->argp), sizeof (newnfsstats));
451 if (error == 0) {
452 if ((uap->flag & NFSSVC_ZEROCLTSTATS) != 0) {
453 newnfsstats.attrcache_hits = 0;
454 newnfsstats.attrcache_misses = 0;
455 newnfsstats.lookupcache_hits = 0;
456 newnfsstats.lookupcache_misses = 0;
457 newnfsstats.direofcache_hits = 0;
458 newnfsstats.direofcache_misses = 0;
459 newnfsstats.accesscache_hits = 0;
460 newnfsstats.accesscache_misses = 0;
461 newnfsstats.biocache_reads = 0;
462 newnfsstats.read_bios = 0;
463 newnfsstats.read_physios = 0;
464 newnfsstats.biocache_writes = 0;
465 newnfsstats.write_bios = 0;
466 newnfsstats.write_physios = 0;
467 newnfsstats.biocache_readlinks = 0;
468 newnfsstats.readlink_bios = 0;
469 newnfsstats.biocache_readdirs = 0;
470 newnfsstats.readdir_bios = 0;
471 newnfsstats.rpcretries = 0;
472 newnfsstats.rpcrequests = 0;
473 newnfsstats.rpctimeouts = 0;
474 newnfsstats.rpcunexpected = 0;
475 newnfsstats.rpcinvalid = 0;
476 bzero(newnfsstats.rpccnt,
477 sizeof(newnfsstats.rpccnt));
478 }
479 if ((uap->flag & NFSSVC_ZEROSRVSTATS) != 0) {
480 newnfsstats.srvrpc_errs = 0;
481 newnfsstats.srv_errs = 0;
482 newnfsstats.srvcache_inproghits = 0;
483 newnfsstats.srvcache_idemdonehits = 0;
484 newnfsstats.srvcache_nonidemdonehits = 0;
485 newnfsstats.srvcache_misses = 0;
486 newnfsstats.srvcache_tcppeak = 0;
487 newnfsstats.srvclients = 0;
488 newnfsstats.srvopenowners = 0;
489 newnfsstats.srvopens = 0;
490 newnfsstats.srvlockowners = 0;
491 newnfsstats.srvlocks = 0;
492 newnfsstats.srvdelegates = 0;
493 newnfsstats.clopenowners = 0;
494 newnfsstats.clopens = 0;
495 newnfsstats.cllockowners = 0;
496 newnfsstats.cllocks = 0;
497 newnfsstats.cldelegates = 0;
498 newnfsstats.cllocalopenowners = 0;
499 newnfsstats.cllocalopens = 0;
500 newnfsstats.cllocallockowners = 0;
501 newnfsstats.cllocallocks = 0;
502 bzero(newnfsstats.srvrpccnt,
503 sizeof(newnfsstats.srvrpccnt));
504 bzero(newnfsstats.cbrpccnt,
505 sizeof(newnfsstats.cbrpccnt));
506 }
507 }
508 goto out;
509 } else if (uap->flag & NFSSVC_NFSUSERDPORT) {
510 u_short sockport;
511
512 error = copyin(uap->argp, (caddr_t)&sockport,
513 sizeof (u_short));
514 if (!error)
515 error = nfsrv_nfsuserdport(sockport, p);
516 } else if (uap->flag & NFSSVC_NFSUSERDDELPORT) {
517 nfsrv_nfsuserddelport();
518 error = 0;
519 }
520
521 out:
522 NFSEXITCODE(error);
523 return (error);
524 }
525
526 /*
527 * called by all three modevent routines, so that it gets things
528 * initialized soon enough.
529 */
530 void
newnfs_portinit(void)531 newnfs_portinit(void)
532 {
533 static int inited = 0;
534
535 if (inited)
536 return;
537 inited = 1;
538 /* Initialize SMP locks used by both client and server. */
539 mtx_init(&newnfsd_mtx, "newnfsd_mtx", NULL, MTX_DEF);
540 mtx_init(&nfs_state_mutex, "nfs_state_mutex", NULL, MTX_DEF);
541 }
542
543 /*
544 * Determine if the file system supports NFSv4 ACLs.
545 * Return 1 if it does, 0 otherwise.
546 */
547 int
nfs_supportsnfsv4acls(struct vnode * vp)548 nfs_supportsnfsv4acls(struct vnode *vp)
549 {
550 int error;
551 register_t retval;
552
553 ASSERT_VOP_LOCKED(vp, "nfs supports nfsv4acls");
554
555 if (nfsrv_useacl == 0)
556 return (0);
557 error = VOP_PATHCONF(vp, _PC_ACL_NFS4, &retval);
558 if (error == 0 && retval != 0)
559 return (1);
560 return (0);
561 }
562
563 extern int (*nfsd_call_nfscommon)(struct thread *, struct nfssvc_args *);
564
565 /*
566 * Called once to initialize data structures...
567 */
568 static int
nfscommon_modevent(module_t mod,int type,void * data)569 nfscommon_modevent(module_t mod, int type, void *data)
570 {
571 int error = 0;
572 static int loaded = 0;
573
574 switch (type) {
575 case MOD_LOAD:
576 if (loaded)
577 goto out;
578 newnfs_portinit();
579 mtx_init(&nfs_nameid_mutex, "nfs_nameid_mutex", NULL, MTX_DEF);
580 mtx_init(&nfs_sockl_mutex, "nfs_sockl_mutex", NULL, MTX_DEF);
581 mtx_init(&nfs_slock_mutex, "nfs_slock_mutex", NULL, MTX_DEF);
582 mtx_init(&nfs_req_mutex, "nfs_req_mutex", NULL, MTX_DEF);
583 mtx_init(&nfsrv_nfsuserdsock.nr_mtx, "nfsuserd", NULL,
584 MTX_DEF);
585 callout_init(&newnfsd_callout, CALLOUT_MPSAFE);
586 newnfs_init();
587 nfsd_call_nfscommon = nfssvc_nfscommon;
588 loaded = 1;
589 break;
590
591 case MOD_UNLOAD:
592 if (newnfs_numnfsd != 0 || nfsrv_nfsuserd != 0 ||
593 nfs_numnfscbd != 0) {
594 error = EBUSY;
595 break;
596 }
597
598 nfsd_call_nfscommon = NULL;
599 callout_drain(&newnfsd_callout);
600 /* and get rid of the mutexes */
601 mtx_destroy(&nfs_nameid_mutex);
602 mtx_destroy(&newnfsd_mtx);
603 mtx_destroy(&nfs_state_mutex);
604 mtx_destroy(&nfs_sockl_mutex);
605 mtx_destroy(&nfs_slock_mutex);
606 mtx_destroy(&nfs_req_mutex);
607 mtx_destroy(&nfsrv_nfsuserdsock.nr_mtx);
608 loaded = 0;
609 break;
610 default:
611 error = EOPNOTSUPP;
612 break;
613 }
614
615 out:
616 NFSEXITCODE(error);
617 return error;
618 }
619 static moduledata_t nfscommon_mod = {
620 "nfscommon",
621 nfscommon_modevent,
622 NULL,
623 };
624 DECLARE_MODULE(nfscommon, nfscommon_mod, SI_SUB_VFS, SI_ORDER_ANY);
625
626 /* So that loader and kldload(2) can find us, wherever we are.. */
627 MODULE_VERSION(nfscommon, 1);
628 MODULE_DEPEND(nfscommon, nfssvc, 1, 1, 1);
629 MODULE_DEPEND(nfscommon, krpc, 1, 1, 1);
630
631