allow coexistance of N build and AC build.
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / fs / nfsd / export.c
blob144db61848d1e62154b01314d769641465eef83f
1 #define MSNFS /* HACK HACK */
2 /*
3 * linux/fs/nfsd/export.c
5 * NFS exporting and validation.
7 * We maintain a list of clients, each of which has a list of
8 * exports. To export an fs to a given client, you first have
9 * to create the client entry with NFSCTL_ADDCLIENT, which
10 * creates a client control block and adds it to the hash
11 * table. Then, you call NFSCTL_EXPORT for each fs.
14 * Copyright (C) 1995, 1996 Olaf Kirch, <okir@monad.swb.de>
17 #include <linux/unistd.h>
18 #include <linux/slab.h>
19 #include <linux/stat.h>
20 #include <linux/in.h>
21 #include <linux/seq_file.h>
22 #include <linux/syscalls.h>
23 #include <linux/rwsem.h>
24 #include <linux/dcache.h>
25 #include <linux/namei.h>
26 #include <linux/mount.h>
27 #include <linux/hash.h>
28 #include <linux/module.h>
29 #include <linux/exportfs.h>
31 #include <linux/sunrpc/svc.h>
32 #include <linux/nfsd/nfsd.h>
33 #include <linux/nfsd/nfsfh.h>
34 #include <linux/nfsd/syscall.h>
35 #include <linux/lockd/bind.h>
36 #include <net/ipv6.h>
38 #define NFSDDBG_FACILITY NFSDDBG_EXPORT
40 typedef struct auth_domain svc_client;
41 typedef struct svc_export svc_export;
43 static void exp_do_unexport(svc_export *unexp);
44 static int exp_verify_string(char *cp, int max);
47 * We have two caches.
48 * One maps client+vfsmnt+dentry to export options - the export map
49 * The other maps client+filehandle-fragment to export options. - the expkey map
51 * The export options are actually stored in the first map, and the
52 * second map contains a reference to the entry in the first map.
55 #define EXPKEY_HASHBITS 8
56 #define EXPKEY_HASHMAX (1 << EXPKEY_HASHBITS)
57 #define EXPKEY_HASHMASK (EXPKEY_HASHMAX -1)
58 static struct cache_head *expkey_table[EXPKEY_HASHMAX];
60 static void expkey_put(struct kref *ref)
62 struct svc_expkey *key = container_of(ref, struct svc_expkey, h.ref);
64 if (test_bit(CACHE_VALID, &key->h.flags) &&
65 !test_bit(CACHE_NEGATIVE, &key->h.flags)) {
66 dput(key->ek_dentry);
67 mntput(key->ek_mnt);
69 auth_domain_put(key->ek_client);
70 kfree(key);
73 static void expkey_request(struct cache_detail *cd,
74 struct cache_head *h,
75 char **bpp, int *blen)
77 /* client fsidtype \xfsid */
78 struct svc_expkey *ek = container_of(h, struct svc_expkey, h);
79 char type[5];
81 qword_add(bpp, blen, ek->ek_client->name);
82 snprintf(type, 5, "%d", ek->ek_fsidtype);
83 qword_add(bpp, blen, type);
84 qword_addhex(bpp, blen, (char*)ek->ek_fsid, key_len(ek->ek_fsidtype));
85 (*bpp)[-1] = '\n';
88 static struct svc_expkey *svc_expkey_update(struct svc_expkey *new, struct svc_expkey *old);
89 static struct svc_expkey *svc_expkey_lookup(struct svc_expkey *);
90 static struct cache_detail svc_expkey_cache;
92 static int expkey_parse(struct cache_detail *cd, char *mesg, int mlen)
94 /* client fsidtype fsid [path] */
95 char *buf;
96 int len;
97 struct auth_domain *dom = NULL;
98 int err;
99 int fsidtype;
100 char *ep;
101 struct svc_expkey key;
102 struct svc_expkey *ek;
104 if (mesg[mlen-1] != '\n')
105 return -EINVAL;
106 mesg[mlen-1] = 0;
108 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
109 err = -ENOMEM;
110 if (!buf) goto out;
112 err = -EINVAL;
113 if ((len=qword_get(&mesg, buf, PAGE_SIZE)) <= 0)
114 goto out;
116 err = -ENOENT;
117 dom = auth_domain_find(buf);
118 if (!dom)
119 goto out;
120 dprintk("found domain %s\n", buf);
122 err = -EINVAL;
123 if ((len=qword_get(&mesg, buf, PAGE_SIZE)) <= 0)
124 goto out;
125 fsidtype = simple_strtoul(buf, &ep, 10);
126 if (*ep)
127 goto out;
128 dprintk("found fsidtype %d\n", fsidtype);
129 if (key_len(fsidtype)==0) /* invalid type */
130 goto out;
131 if ((len=qword_get(&mesg, buf, PAGE_SIZE)) <= 0)
132 goto out;
133 dprintk("found fsid length %d\n", len);
134 if (len != key_len(fsidtype))
135 goto out;
137 /* OK, we seem to have a valid key */
138 key.h.flags = 0;
139 key.h.expiry_time = get_expiry(&mesg);
140 if (key.h.expiry_time == 0)
141 goto out;
143 key.ek_client = dom;
144 key.ek_fsidtype = fsidtype;
145 memcpy(key.ek_fsid, buf, len);
147 ek = svc_expkey_lookup(&key);
148 err = -ENOMEM;
149 if (!ek)
150 goto out;
152 /* now we want a pathname, or empty meaning NEGATIVE */
153 err = -EINVAL;
154 if ((len=qword_get(&mesg, buf, PAGE_SIZE)) < 0)
155 goto out;
156 dprintk("Path seems to be <%s>\n", buf);
157 err = 0;
158 if (len == 0) {
159 set_bit(CACHE_NEGATIVE, &key.h.flags);
160 ek = svc_expkey_update(&key, ek);
161 if (ek)
162 cache_put(&ek->h, &svc_expkey_cache);
163 else err = -ENOMEM;
164 } else {
165 struct nameidata nd;
166 err = path_lookup(buf, 0, &nd);
167 if (err)
168 goto out;
170 dprintk("Found the path %s\n", buf);
171 key.ek_mnt = nd.mnt;
172 key.ek_dentry = nd.dentry;
174 ek = svc_expkey_update(&key, ek);
175 if (ek)
176 cache_put(&ek->h, &svc_expkey_cache);
177 else
178 err = -ENOMEM;
179 path_release(&nd);
181 cache_flush();
182 out:
183 if (dom)
184 auth_domain_put(dom);
185 kfree(buf);
186 return err;
189 static int expkey_show(struct seq_file *m,
190 struct cache_detail *cd,
191 struct cache_head *h)
193 struct svc_expkey *ek ;
194 int i;
196 if (h ==NULL) {
197 seq_puts(m, "#domain fsidtype fsid [path]\n");
198 return 0;
200 ek = container_of(h, struct svc_expkey, h);
201 seq_printf(m, "%s %d 0x", ek->ek_client->name,
202 ek->ek_fsidtype);
203 for (i=0; i < key_len(ek->ek_fsidtype)/4; i++)
204 seq_printf(m, "%08x", ek->ek_fsid[i]);
205 if (test_bit(CACHE_VALID, &h->flags) &&
206 !test_bit(CACHE_NEGATIVE, &h->flags)) {
207 seq_printf(m, " ");
208 seq_path(m, ek->ek_mnt, ek->ek_dentry, "\\ \t\n");
210 seq_printf(m, "\n");
211 return 0;
214 static inline int expkey_match (struct cache_head *a, struct cache_head *b)
216 struct svc_expkey *orig = container_of(a, struct svc_expkey, h);
217 struct svc_expkey *new = container_of(b, struct svc_expkey, h);
219 if (orig->ek_fsidtype != new->ek_fsidtype ||
220 orig->ek_client != new->ek_client ||
221 memcmp(orig->ek_fsid, new->ek_fsid, key_len(orig->ek_fsidtype)) != 0)
222 return 0;
223 return 1;
226 static inline void expkey_init(struct cache_head *cnew,
227 struct cache_head *citem)
229 struct svc_expkey *new = container_of(cnew, struct svc_expkey, h);
230 struct svc_expkey *item = container_of(citem, struct svc_expkey, h);
232 kref_get(&item->ek_client->ref);
233 new->ek_client = item->ek_client;
234 new->ek_fsidtype = item->ek_fsidtype;
236 memcpy(new->ek_fsid, item->ek_fsid, sizeof(new->ek_fsid));
239 static inline void expkey_update(struct cache_head *cnew,
240 struct cache_head *citem)
242 struct svc_expkey *new = container_of(cnew, struct svc_expkey, h);
243 struct svc_expkey *item = container_of(citem, struct svc_expkey, h);
245 new->ek_mnt = mntget(item->ek_mnt);
246 new->ek_dentry = dget(item->ek_dentry);
249 static struct cache_head *expkey_alloc(void)
251 struct svc_expkey *i = kmalloc(sizeof(*i), GFP_KERNEL);
252 if (i)
253 return &i->h;
254 else
255 return NULL;
258 static struct cache_detail svc_expkey_cache = {
259 .owner = THIS_MODULE,
260 .hash_size = EXPKEY_HASHMAX,
261 .hash_table = expkey_table,
262 .name = "nfsd.fh",
263 .cache_put = expkey_put,
264 .cache_request = expkey_request,
265 .cache_parse = expkey_parse,
266 .cache_show = expkey_show,
267 .match = expkey_match,
268 .init = expkey_init,
269 .update = expkey_update,
270 .alloc = expkey_alloc,
273 static struct svc_expkey *
274 svc_expkey_lookup(struct svc_expkey *item)
276 struct cache_head *ch;
277 int hash = item->ek_fsidtype;
278 char * cp = (char*)item->ek_fsid;
279 int len = key_len(item->ek_fsidtype);
281 hash ^= hash_mem(cp, len, EXPKEY_HASHBITS);
282 hash ^= hash_ptr(item->ek_client, EXPKEY_HASHBITS);
283 hash &= EXPKEY_HASHMASK;
285 ch = sunrpc_cache_lookup(&svc_expkey_cache, &item->h,
286 hash);
287 if (ch)
288 return container_of(ch, struct svc_expkey, h);
289 else
290 return NULL;
293 static struct svc_expkey *
294 svc_expkey_update(struct svc_expkey *new, struct svc_expkey *old)
296 struct cache_head *ch;
297 int hash = new->ek_fsidtype;
298 char * cp = (char*)new->ek_fsid;
299 int len = key_len(new->ek_fsidtype);
301 hash ^= hash_mem(cp, len, EXPKEY_HASHBITS);
302 hash ^= hash_ptr(new->ek_client, EXPKEY_HASHBITS);
303 hash &= EXPKEY_HASHMASK;
305 ch = sunrpc_cache_update(&svc_expkey_cache, &new->h,
306 &old->h, hash);
307 if (ch)
308 return container_of(ch, struct svc_expkey, h);
309 else
310 return NULL;
314 #define EXPORT_HASHBITS 8
315 #define EXPORT_HASHMAX (1<< EXPORT_HASHBITS)
316 #define EXPORT_HASHMASK (EXPORT_HASHMAX -1)
318 static struct cache_head *export_table[EXPORT_HASHMAX];
320 static void nfsd4_fslocs_free(struct nfsd4_fs_locations *fsloc)
322 int i;
324 for (i = 0; i < fsloc->locations_count; i++) {
325 kfree(fsloc->locations[i].path);
326 kfree(fsloc->locations[i].hosts);
328 kfree(fsloc->locations);
331 static void svc_export_put(struct kref *ref)
333 struct svc_export *exp = container_of(ref, struct svc_export, h.ref);
334 dput(exp->ex_dentry);
335 mntput(exp->ex_mnt);
336 auth_domain_put(exp->ex_client);
337 kfree(exp->ex_path);
338 nfsd4_fslocs_free(&exp->ex_fslocs);
339 kfree(exp);
342 static void svc_export_request(struct cache_detail *cd,
343 struct cache_head *h,
344 char **bpp, int *blen)
346 /* client path */
347 struct svc_export *exp = container_of(h, struct svc_export, h);
348 char *pth;
350 qword_add(bpp, blen, exp->ex_client->name);
351 pth = d_path(exp->ex_dentry, exp->ex_mnt, *bpp, *blen);
352 if (IS_ERR(pth)) {
353 /* is this correct? */
354 (*bpp)[0] = '\n';
355 return;
357 qword_add(bpp, blen, pth);
358 (*bpp)[-1] = '\n';
361 static struct svc_export *svc_export_update(struct svc_export *new,
362 struct svc_export *old);
363 static struct svc_export *svc_export_lookup(struct svc_export *);
365 static int check_export(struct inode *inode, int flags, unsigned char *uuid)
368 /* We currently export only dirs and regular files.
369 * This is what umountd does.
371 if (!S_ISDIR(inode->i_mode) &&
372 !S_ISREG(inode->i_mode))
373 return -ENOTDIR;
375 /* There are two requirements on a filesystem to be exportable.
376 * 1: We must be able to identify the filesystem from a number.
377 * either a device number (so FS_REQUIRES_DEV needed)
378 * or an FSID number (so NFSEXP_FSID or ->uuid is needed).
379 * 2: We must be able to find an inode from a filehandle.
380 * This means that s_export_op must be set.
382 if (!(inode->i_sb->s_type->fs_flags & FS_REQUIRES_DEV) &&
383 !(flags & NFSEXP_FSID) &&
384 uuid == NULL) {
385 dprintk("exp_export: export of non-dev fs without fsid\n");
386 return -EINVAL;
389 if (!inode->i_sb->s_export_op ||
390 !inode->i_sb->s_export_op->fh_to_dentry) {
391 dprintk("exp_export: export of invalid fs type.\n");
392 return -EINVAL;
395 return 0;
399 #ifdef CONFIG_NFSD_V4
401 static int
402 fsloc_parse(char **mesg, char *buf, struct nfsd4_fs_locations *fsloc)
404 int len;
405 int migrated, i, err;
407 /* listsize */
408 err = get_int(mesg, &fsloc->locations_count);
409 if (err)
410 return err;
411 if (fsloc->locations_count > MAX_FS_LOCATIONS)
412 return -EINVAL;
413 if (fsloc->locations_count == 0)
414 return 0;
416 fsloc->locations = kzalloc(fsloc->locations_count
417 * sizeof(struct nfsd4_fs_location), GFP_KERNEL);
418 if (!fsloc->locations)
419 return -ENOMEM;
420 for (i=0; i < fsloc->locations_count; i++) {
421 /* colon separated host list */
422 err = -EINVAL;
423 len = qword_get(mesg, buf, PAGE_SIZE);
424 if (len <= 0)
425 goto out_free_all;
426 err = -ENOMEM;
427 fsloc->locations[i].hosts = kstrdup(buf, GFP_KERNEL);
428 if (!fsloc->locations[i].hosts)
429 goto out_free_all;
430 err = -EINVAL;
431 /* slash separated path component list */
432 len = qword_get(mesg, buf, PAGE_SIZE);
433 if (len <= 0)
434 goto out_free_all;
435 err = -ENOMEM;
436 fsloc->locations[i].path = kstrdup(buf, GFP_KERNEL);
437 if (!fsloc->locations[i].path)
438 goto out_free_all;
440 /* migrated */
441 err = get_int(mesg, &migrated);
442 if (err)
443 goto out_free_all;
444 err = -EINVAL;
445 if (migrated < 0 || migrated > 1)
446 goto out_free_all;
447 fsloc->migrated = migrated;
448 return 0;
449 out_free_all:
450 nfsd4_fslocs_free(fsloc);
451 return err;
454 #else /* CONFIG_NFSD_V4 */
455 static inline int fsloc_parse(char **mesg, char *buf, struct nfsd4_fs_locations *fsloc) { return 0; }
456 #endif
458 static int svc_export_parse(struct cache_detail *cd, char *mesg, int mlen)
460 /* client path expiry [flags anonuid anongid fsid] */
461 char *buf;
462 int len;
463 int err;
464 struct auth_domain *dom = NULL;
465 struct nameidata nd;
466 struct svc_export exp, *expp;
467 int an_int;
469 nd.dentry = NULL;
470 exp.ex_path = NULL;
472 /* fs locations */
473 exp.ex_fslocs.locations = NULL;
474 exp.ex_fslocs.locations_count = 0;
475 exp.ex_fslocs.migrated = 0;
477 exp.ex_uuid = NULL;
479 if (mesg[mlen-1] != '\n')
480 return -EINVAL;
481 mesg[mlen-1] = 0;
483 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
484 err = -ENOMEM;
485 if (!buf) goto out;
487 /* client */
488 len = qword_get(&mesg, buf, PAGE_SIZE);
489 err = -EINVAL;
490 if (len <= 0) goto out;
492 err = -ENOENT;
493 dom = auth_domain_find(buf);
494 if (!dom)
495 goto out;
497 /* path */
498 err = -EINVAL;
499 if ((len=qword_get(&mesg, buf, PAGE_SIZE)) <= 0)
500 goto out;
501 err = path_lookup(buf, 0, &nd);
502 if (err) goto out_no_path;
504 exp.h.flags = 0;
505 exp.ex_client = dom;
506 exp.ex_mnt = nd.mnt;
507 exp.ex_dentry = nd.dentry;
508 exp.ex_path = kstrdup(buf, GFP_KERNEL);
509 err = -ENOMEM;
510 if (!exp.ex_path)
511 goto out;
513 /* expiry */
514 err = -EINVAL;
515 exp.h.expiry_time = get_expiry(&mesg);
516 if (exp.h.expiry_time == 0)
517 goto out;
519 /* flags */
520 err = get_int(&mesg, &an_int);
521 if (err == -ENOENT)
522 set_bit(CACHE_NEGATIVE, &exp.h.flags);
523 else {
524 if (err || an_int < 0) goto out;
525 exp.ex_flags= an_int;
527 /* anon uid */
528 err = get_int(&mesg, &an_int);
529 if (err) goto out;
530 exp.ex_anon_uid= an_int;
532 /* anon gid */
533 err = get_int(&mesg, &an_int);
534 if (err) goto out;
535 exp.ex_anon_gid= an_int;
537 /* fsid */
538 err = get_int(&mesg, &an_int);
539 if (err) goto out;
540 exp.ex_fsid = an_int;
542 while ((len = qword_get(&mesg, buf, PAGE_SIZE)) > 0) {
543 if (strcmp(buf, "fsloc") == 0)
544 err = fsloc_parse(&mesg, buf, &exp.ex_fslocs);
545 else if (strcmp(buf, "uuid") == 0) {
546 /* expect a 16 byte uuid encoded as \xXXXX... */
547 len = qword_get(&mesg, buf, PAGE_SIZE);
548 if (len != 16)
549 err = -EINVAL;
550 else {
551 exp.ex_uuid =
552 kmemdup(buf, 16, GFP_KERNEL);
553 if (exp.ex_uuid == NULL)
554 err = -ENOMEM;
556 } else
557 /* quietly ignore unknown words and anything
558 * following. Newer user-space can try to set
559 * new values, then see what the result was.
561 break;
562 if (err)
563 goto out;
566 err = check_export(nd.dentry->d_inode, exp.ex_flags,
567 exp.ex_uuid);
568 if (err) goto out;
571 expp = svc_export_lookup(&exp);
572 if (expp)
573 expp = svc_export_update(&exp, expp);
574 else
575 err = -ENOMEM;
576 cache_flush();
577 if (expp == NULL)
578 err = -ENOMEM;
579 else
580 exp_put(expp);
581 out:
582 nfsd4_fslocs_free(&exp.ex_fslocs);
583 kfree(exp.ex_uuid);
584 kfree(exp.ex_path);
585 if (nd.dentry)
586 path_release(&nd);
587 out_no_path:
588 if (dom)
589 auth_domain_put(dom);
590 kfree(buf);
591 return err;
594 static void exp_flags(struct seq_file *m, int flag, int fsid,
595 uid_t anonu, uid_t anong, struct nfsd4_fs_locations *fslocs);
597 static int svc_export_show(struct seq_file *m,
598 struct cache_detail *cd,
599 struct cache_head *h)
601 struct svc_export *exp ;
603 if (h ==NULL) {
604 seq_puts(m, "#path domain(flags)\n");
605 return 0;
607 exp = container_of(h, struct svc_export, h);
608 seq_path(m, exp->ex_mnt, exp->ex_dentry, " \t\n\\");
609 seq_putc(m, '\t');
610 seq_escape(m, exp->ex_client->name, " \t\n\\");
611 seq_putc(m, '(');
612 if (test_bit(CACHE_VALID, &h->flags) &&
613 !test_bit(CACHE_NEGATIVE, &h->flags)) {
614 exp_flags(m, exp->ex_flags, exp->ex_fsid,
615 exp->ex_anon_uid, exp->ex_anon_gid, &exp->ex_fslocs);
616 if (exp->ex_uuid) {
617 int i;
618 seq_puts(m, ",uuid=");
619 for (i=0; i<16; i++) {
620 if ((i&3) == 0 && i)
621 seq_putc(m, ':');
622 seq_printf(m, "%02x", exp->ex_uuid[i]);
626 seq_puts(m, ")\n");
627 return 0;
629 static int svc_export_match(struct cache_head *a, struct cache_head *b)
631 struct svc_export *orig = container_of(a, struct svc_export, h);
632 struct svc_export *new = container_of(b, struct svc_export, h);
633 return orig->ex_client == new->ex_client &&
634 orig->ex_dentry == new->ex_dentry &&
635 orig->ex_mnt == new->ex_mnt;
638 static void svc_export_init(struct cache_head *cnew, struct cache_head *citem)
640 struct svc_export *new = container_of(cnew, struct svc_export, h);
641 struct svc_export *item = container_of(citem, struct svc_export, h);
643 kref_get(&item->ex_client->ref);
644 new->ex_client = item->ex_client;
645 new->ex_dentry = dget(item->ex_dentry);
646 new->ex_mnt = mntget(item->ex_mnt);
647 new->ex_path = NULL;
648 new->ex_fslocs.locations = NULL;
649 new->ex_fslocs.locations_count = 0;
650 new->ex_fslocs.migrated = 0;
653 static void export_update(struct cache_head *cnew, struct cache_head *citem)
655 struct svc_export *new = container_of(cnew, struct svc_export, h);
656 struct svc_export *item = container_of(citem, struct svc_export, h);
658 new->ex_flags = item->ex_flags;
659 new->ex_anon_uid = item->ex_anon_uid;
660 new->ex_anon_gid = item->ex_anon_gid;
661 new->ex_fsid = item->ex_fsid;
662 new->ex_uuid = item->ex_uuid;
663 item->ex_uuid = NULL;
664 new->ex_path = item->ex_path;
665 item->ex_path = NULL;
666 new->ex_fslocs.locations = item->ex_fslocs.locations;
667 item->ex_fslocs.locations = NULL;
668 new->ex_fslocs.locations_count = item->ex_fslocs.locations_count;
669 item->ex_fslocs.locations_count = 0;
670 new->ex_fslocs.migrated = item->ex_fslocs.migrated;
671 item->ex_fslocs.migrated = 0;
674 static struct cache_head *svc_export_alloc(void)
676 struct svc_export *i = kmalloc(sizeof(*i), GFP_KERNEL);
677 if (i)
678 return &i->h;
679 else
680 return NULL;
683 struct cache_detail svc_export_cache = {
684 .owner = THIS_MODULE,
685 .hash_size = EXPORT_HASHMAX,
686 .hash_table = export_table,
687 .name = "nfsd.export",
688 .cache_put = svc_export_put,
689 .cache_request = svc_export_request,
690 .cache_parse = svc_export_parse,
691 .cache_show = svc_export_show,
692 .match = svc_export_match,
693 .init = svc_export_init,
694 .update = export_update,
695 .alloc = svc_export_alloc,
698 static struct svc_export *
699 svc_export_lookup(struct svc_export *exp)
701 struct cache_head *ch;
702 int hash;
703 hash = hash_ptr(exp->ex_client, EXPORT_HASHBITS);
704 hash ^= hash_ptr(exp->ex_dentry, EXPORT_HASHBITS);
705 hash ^= hash_ptr(exp->ex_mnt, EXPORT_HASHBITS);
707 ch = sunrpc_cache_lookup(&svc_export_cache, &exp->h,
708 hash);
709 if (ch)
710 return container_of(ch, struct svc_export, h);
711 else
712 return NULL;
715 static struct svc_export *
716 svc_export_update(struct svc_export *new, struct svc_export *old)
718 struct cache_head *ch;
719 int hash;
720 hash = hash_ptr(old->ex_client, EXPORT_HASHBITS);
721 hash ^= hash_ptr(old->ex_dentry, EXPORT_HASHBITS);
722 hash ^= hash_ptr(old->ex_mnt, EXPORT_HASHBITS);
724 ch = sunrpc_cache_update(&svc_export_cache, &new->h,
725 &old->h,
726 hash);
727 if (ch)
728 return container_of(ch, struct svc_export, h);
729 else
730 return NULL;
734 static struct svc_expkey *
735 exp_find_key(svc_client *clp, int fsid_type, u32 *fsidv, struct cache_req *reqp)
737 struct svc_expkey key, *ek;
738 int err;
740 if (!clp)
741 return ERR_PTR(-ENOENT);
743 key.ek_client = clp;
744 key.ek_fsidtype = fsid_type;
745 memcpy(key.ek_fsid, fsidv, key_len(fsid_type));
747 ek = svc_expkey_lookup(&key);
748 if (ek == NULL)
749 return ERR_PTR(-ENOMEM);
750 err = cache_check(&svc_expkey_cache, &ek->h, reqp);
751 if (err)
752 return ERR_PTR(err);
753 return ek;
756 static int exp_set_key(svc_client *clp, int fsid_type, u32 *fsidv,
757 struct svc_export *exp)
759 struct svc_expkey key, *ek;
761 key.ek_client = clp;
762 key.ek_fsidtype = fsid_type;
763 memcpy(key.ek_fsid, fsidv, key_len(fsid_type));
764 key.ek_mnt = exp->ex_mnt;
765 key.ek_dentry = exp->ex_dentry;
766 key.h.expiry_time = NEVER;
767 key.h.flags = 0;
769 ek = svc_expkey_lookup(&key);
770 if (ek)
771 ek = svc_expkey_update(&key,ek);
772 if (ek) {
773 cache_put(&ek->h, &svc_expkey_cache);
774 return 0;
776 return -ENOMEM;
780 * Find the client's export entry matching xdev/xino.
782 static inline struct svc_expkey *
783 exp_get_key(svc_client *clp, dev_t dev, ino_t ino)
785 u32 fsidv[3];
787 if (old_valid_dev(dev)) {
788 mk_fsid(FSID_DEV, fsidv, dev, ino, 0, NULL);
789 return exp_find_key(clp, FSID_DEV, fsidv, NULL);
791 mk_fsid(FSID_ENCODE_DEV, fsidv, dev, ino, 0, NULL);
792 return exp_find_key(clp, FSID_ENCODE_DEV, fsidv, NULL);
796 * Find the client's export entry matching fsid
798 static inline struct svc_expkey *
799 exp_get_fsid_key(svc_client *clp, int fsid)
801 u32 fsidv[2];
803 mk_fsid(FSID_NUM, fsidv, 0, 0, fsid, NULL);
805 return exp_find_key(clp, FSID_NUM, fsidv, NULL);
808 svc_export *
809 exp_get_by_name(svc_client *clp, struct vfsmount *mnt, struct dentry *dentry,
810 struct cache_req *reqp)
812 struct svc_export *exp, key;
813 int err;
815 if (!clp)
816 return ERR_PTR(-ENOENT);
818 key.ex_client = clp;
819 key.ex_mnt = mnt;
820 key.ex_dentry = dentry;
822 exp = svc_export_lookup(&key);
823 if (exp == NULL)
824 return ERR_PTR(-ENOMEM);
825 err = cache_check(&svc_export_cache, &exp->h, reqp);
826 if (err)
827 return ERR_PTR(err);
828 return exp;
832 * Find the export entry for a given dentry.
834 struct svc_export *
835 exp_parent(svc_client *clp, struct vfsmount *mnt, struct dentry *dentry,
836 struct cache_req *reqp)
838 svc_export *exp;
840 dget(dentry);
841 exp = exp_get_by_name(clp, mnt, dentry, reqp);
843 while (PTR_ERR(exp) == -ENOENT && !IS_ROOT(dentry)) {
844 struct dentry *parent;
846 parent = dget_parent(dentry);
847 dput(dentry);
848 dentry = parent;
849 exp = exp_get_by_name(clp, mnt, dentry, reqp);
851 dput(dentry);
852 return exp;
856 * Hashtable locking. Write locks are placed only by user processes
857 * wanting to modify export information.
858 * Write locking only done in this file. Read locking
859 * needed externally.
862 static DECLARE_RWSEM(hash_sem);
864 void
865 exp_readlock(void)
867 down_read(&hash_sem);
870 static inline void
871 exp_writelock(void)
873 down_write(&hash_sem);
876 void
877 exp_readunlock(void)
879 up_read(&hash_sem);
882 static inline void
883 exp_writeunlock(void)
885 up_write(&hash_sem);
888 static void exp_fsid_unhash(struct svc_export *exp)
890 struct svc_expkey *ek;
892 if ((exp->ex_flags & NFSEXP_FSID) == 0)
893 return;
895 ek = exp_get_fsid_key(exp->ex_client, exp->ex_fsid);
896 if (!IS_ERR(ek)) {
897 ek->h.expiry_time = get_seconds()-1;
898 cache_put(&ek->h, &svc_expkey_cache);
900 svc_expkey_cache.nextcheck = get_seconds();
903 static int exp_fsid_hash(svc_client *clp, struct svc_export *exp)
905 u32 fsid[2];
907 if ((exp->ex_flags & NFSEXP_FSID) == 0)
908 return 0;
910 mk_fsid(FSID_NUM, fsid, 0, 0, exp->ex_fsid, NULL);
911 return exp_set_key(clp, FSID_NUM, fsid, exp);
914 static int exp_hash(struct auth_domain *clp, struct svc_export *exp)
916 u32 fsid[2];
917 struct inode *inode = exp->ex_dentry->d_inode;
918 dev_t dev = inode->i_sb->s_dev;
920 if (old_valid_dev(dev)) {
921 mk_fsid(FSID_DEV, fsid, dev, inode->i_ino, 0, NULL);
922 return exp_set_key(clp, FSID_DEV, fsid, exp);
924 mk_fsid(FSID_ENCODE_DEV, fsid, dev, inode->i_ino, 0, NULL);
925 return exp_set_key(clp, FSID_ENCODE_DEV, fsid, exp);
928 static void exp_unhash(struct svc_export *exp)
930 struct svc_expkey *ek;
931 struct inode *inode = exp->ex_dentry->d_inode;
933 ek = exp_get_key(exp->ex_client, inode->i_sb->s_dev, inode->i_ino);
934 if (!IS_ERR(ek)) {
935 ek->h.expiry_time = get_seconds()-1;
936 cache_put(&ek->h, &svc_expkey_cache);
938 svc_expkey_cache.nextcheck = get_seconds();
942 * Export a file system.
945 exp_export(struct nfsctl_export *nxp)
947 svc_client *clp;
948 struct svc_export *exp = NULL;
949 struct svc_export new;
950 struct svc_expkey *fsid_key = NULL;
951 struct nameidata nd;
952 int err;
954 /* Consistency check */
955 err = -EINVAL;
956 if (!exp_verify_string(nxp->ex_path, NFS_MAXPATHLEN) ||
957 !exp_verify_string(nxp->ex_client, NFSCLNT_IDMAX))
958 goto out;
960 dprintk("exp_export called for %s:%s (%x/%ld fl %x).\n",
961 nxp->ex_client, nxp->ex_path,
962 (unsigned)nxp->ex_dev, (long)nxp->ex_ino,
963 nxp->ex_flags);
965 /* Try to lock the export table for update */
966 exp_writelock();
968 /* Look up client info */
969 if (!(clp = auth_domain_find(nxp->ex_client)))
970 goto out_unlock;
973 /* Look up the dentry */
974 err = path_lookup(nxp->ex_path, 0, &nd);
975 if (err)
976 goto out_unlock;
977 err = -EINVAL;
979 exp = exp_get_by_name(clp, nd.mnt, nd.dentry, NULL);
981 memset(&new, 0, sizeof(new));
983 /* must make sure there won't be an ex_fsid clash */
984 if ((nxp->ex_flags & NFSEXP_FSID) &&
985 (!IS_ERR(fsid_key = exp_get_fsid_key(clp, nxp->ex_dev))) &&
986 fsid_key->ek_mnt &&
987 (fsid_key->ek_mnt != nd.mnt || fsid_key->ek_dentry != nd.dentry) )
988 goto finish;
990 if (!IS_ERR(exp)) {
991 /* just a flags/id/fsid update */
993 exp_fsid_unhash(exp);
994 exp->ex_flags = nxp->ex_flags;
995 exp->ex_anon_uid = nxp->ex_anon_uid;
996 exp->ex_anon_gid = nxp->ex_anon_gid;
997 exp->ex_fsid = nxp->ex_dev;
999 err = exp_fsid_hash(clp, exp);
1000 goto finish;
1003 err = check_export(nd.dentry->d_inode, nxp->ex_flags, NULL);
1004 if (err) goto finish;
1006 err = -ENOMEM;
1008 dprintk("nfsd: creating export entry %p for client %p\n", exp, clp);
1010 new.h.expiry_time = NEVER;
1011 new.h.flags = 0;
1012 new.ex_path = kstrdup(nxp->ex_path, GFP_KERNEL);
1013 if (!new.ex_path)
1014 goto finish;
1015 new.ex_client = clp;
1016 new.ex_mnt = nd.mnt;
1017 new.ex_dentry = nd.dentry;
1018 new.ex_flags = nxp->ex_flags;
1019 new.ex_anon_uid = nxp->ex_anon_uid;
1020 new.ex_anon_gid = nxp->ex_anon_gid;
1021 new.ex_fsid = nxp->ex_dev;
1023 exp = svc_export_lookup(&new);
1024 if (exp)
1025 exp = svc_export_update(&new, exp);
1027 if (!exp)
1028 goto finish;
1030 if (exp_hash(clp, exp) ||
1031 exp_fsid_hash(clp, exp)) {
1032 /* failed to create at least one index */
1033 exp_do_unexport(exp);
1034 cache_flush();
1035 } else
1036 err = 0;
1037 finish:
1038 if (new.ex_path)
1039 kfree(new.ex_path);
1040 if (exp)
1041 exp_put(exp);
1042 if (fsid_key && !IS_ERR(fsid_key))
1043 cache_put(&fsid_key->h, &svc_expkey_cache);
1044 if (clp)
1045 auth_domain_put(clp);
1046 path_release(&nd);
1047 out_unlock:
1048 exp_writeunlock();
1049 out:
1050 return err;
1054 * Unexport a file system. The export entry has already
1055 * been removed from the client's list of exported fs's.
1057 static void
1058 exp_do_unexport(svc_export *unexp)
1060 unexp->h.expiry_time = get_seconds()-1;
1061 svc_export_cache.nextcheck = get_seconds();
1062 exp_unhash(unexp);
1063 exp_fsid_unhash(unexp);
1068 * unexport syscall.
1071 exp_unexport(struct nfsctl_export *nxp)
1073 struct auth_domain *dom;
1074 svc_export *exp;
1075 struct nameidata nd;
1076 int err;
1078 /* Consistency check */
1079 if (!exp_verify_string(nxp->ex_path, NFS_MAXPATHLEN) ||
1080 !exp_verify_string(nxp->ex_client, NFSCLNT_IDMAX))
1081 return -EINVAL;
1083 exp_writelock();
1085 err = -EINVAL;
1086 dom = auth_domain_find(nxp->ex_client);
1087 if (!dom) {
1088 dprintk("nfsd: unexport couldn't find %s\n", nxp->ex_client);
1089 goto out_unlock;
1092 err = path_lookup(nxp->ex_path, 0, &nd);
1093 if (err)
1094 goto out_domain;
1096 err = -EINVAL;
1097 exp = exp_get_by_name(dom, nd.mnt, nd.dentry, NULL);
1098 path_release(&nd);
1099 if (IS_ERR(exp))
1100 goto out_domain;
1102 exp_do_unexport(exp);
1103 exp_put(exp);
1104 err = 0;
1106 out_domain:
1107 auth_domain_put(dom);
1108 cache_flush();
1109 out_unlock:
1110 exp_writeunlock();
1111 return err;
1115 * Obtain the root fh on behalf of a client.
1116 * This could be done in user space, but I feel that it adds some safety
1117 * since its harder to fool a kernel module than a user space program.
1120 exp_rootfh(svc_client *clp, char *path, struct knfsd_fh *f, int maxsize)
1122 struct svc_export *exp;
1123 struct nameidata nd;
1124 struct inode *inode;
1125 struct svc_fh fh;
1126 int err;
1128 err = -EPERM;
1129 /* NB: we probably ought to check that it's NUL-terminated */
1130 if (path_lookup(path, 0, &nd)) {
1131 printk("nfsd: exp_rootfh path not found %s", path);
1132 return err;
1134 inode = nd.dentry->d_inode;
1136 dprintk("nfsd: exp_rootfh(%s [%p] %s:%s/%ld)\n",
1137 path, nd.dentry, clp->name,
1138 inode->i_sb->s_id, inode->i_ino);
1139 exp = exp_parent(clp, nd.mnt, nd.dentry, NULL);
1140 if (IS_ERR(exp)) {
1141 err = PTR_ERR(exp);
1142 goto out;
1146 * fh must be initialized before calling fh_compose
1148 fh_init(&fh, maxsize);
1149 if (fh_compose(&fh, exp, nd.dentry, NULL))
1150 err = -EINVAL;
1151 else
1152 err = 0;
1153 memcpy(f, &fh.fh_handle, sizeof(struct knfsd_fh));
1154 fh_put(&fh);
1155 exp_put(exp);
1156 out:
1157 path_release(&nd);
1158 return err;
1161 struct svc_export *
1162 exp_find(struct auth_domain *clp, int fsid_type, u32 *fsidv,
1163 struct cache_req *reqp)
1165 struct svc_export *exp;
1166 struct svc_expkey *ek = exp_find_key(clp, fsid_type, fsidv, reqp);
1167 if (IS_ERR(ek))
1168 return ERR_PTR(PTR_ERR(ek));
1170 exp = exp_get_by_name(clp, ek->ek_mnt, ek->ek_dentry, reqp);
1171 cache_put(&ek->h, &svc_expkey_cache);
1173 if (IS_ERR(exp))
1174 return ERR_PTR(PTR_ERR(exp));
1175 return exp;
1179 * Called from functions that handle requests; functions that do work on
1180 * behalf of mountd are passed a single client name to use, and should
1181 * use exp_get_by_name() or exp_find().
1183 struct svc_export *
1184 rqst_exp_get_by_name(struct svc_rqst *rqstp, struct vfsmount *mnt,
1185 struct dentry *dentry)
1187 struct auth_domain *clp;
1189 clp = rqstp->rq_gssclient ? rqstp->rq_gssclient : rqstp->rq_client;
1190 return exp_get_by_name(clp, mnt, dentry, &rqstp->rq_chandle);
1193 struct svc_export *
1194 rqst_exp_find(struct svc_rqst *rqstp, int fsid_type, u32 *fsidv)
1196 struct auth_domain *clp;
1198 clp = rqstp->rq_gssclient ? rqstp->rq_gssclient : rqstp->rq_client;
1199 return exp_find(clp, fsid_type, fsidv, &rqstp->rq_chandle);
1202 struct svc_export *
1203 rqst_exp_parent(struct svc_rqst *rqstp, struct vfsmount *mnt,
1204 struct dentry *dentry)
1206 struct auth_domain *clp;
1208 clp = rqstp->rq_gssclient ? rqstp->rq_gssclient : rqstp->rq_client;
1209 return exp_parent(rqstp->rq_client, mnt, dentry, &rqstp->rq_chandle);
1213 * Called when we need the filehandle for the root of the pseudofs,
1214 * for a given NFSv4 client. The root is defined to be the
1215 * export point with fsid==0
1217 __be32
1218 exp_pseudoroot(struct svc_rqst *rqstp, struct svc_fh *fhp)
1220 struct svc_export *exp;
1221 __be32 rv;
1222 u32 fsidv[2];
1224 mk_fsid(FSID_NUM, fsidv, 0, 0, 0, NULL);
1226 exp = rqst_exp_find(rqstp, FSID_NUM, fsidv);
1227 if (PTR_ERR(exp) == -ENOENT)
1228 return nfserr_perm;
1229 if (IS_ERR(exp))
1230 return nfserrno(PTR_ERR(exp));
1231 rv = fh_compose(fhp, exp, exp->ex_dentry, NULL);
1232 exp_put(exp);
1233 return rv;
1236 /* Iterator */
1238 static void *e_start(struct seq_file *m, loff_t *pos)
1239 __acquires(svc_export_cache.hash_lock)
1241 loff_t n = *pos;
1242 unsigned hash, export;
1243 struct cache_head *ch;
1245 exp_readlock();
1246 read_lock(&svc_export_cache.hash_lock);
1247 if (!n--)
1248 return SEQ_START_TOKEN;
1249 hash = n >> 32;
1250 export = n & ((1LL<<32) - 1);
1253 for (ch=export_table[hash]; ch; ch=ch->next)
1254 if (!export--)
1255 return ch;
1256 n &= ~((1LL<<32) - 1);
1257 do {
1258 hash++;
1259 n += 1LL<<32;
1260 } while(hash < EXPORT_HASHMAX && export_table[hash]==NULL);
1261 if (hash >= EXPORT_HASHMAX)
1262 return NULL;
1263 *pos = n+1;
1264 return export_table[hash];
1267 static void *e_next(struct seq_file *m, void *p, loff_t *pos)
1269 struct cache_head *ch = p;
1270 int hash = (*pos >> 32);
1272 if (p == SEQ_START_TOKEN)
1273 hash = 0;
1274 else if (ch->next == NULL) {
1275 hash++;
1276 *pos += 1LL<<32;
1277 } else {
1278 ++*pos;
1279 return ch->next;
1281 *pos &= ~((1LL<<32) - 1);
1282 while (hash < EXPORT_HASHMAX && export_table[hash] == NULL) {
1283 hash++;
1284 *pos += 1LL<<32;
1286 if (hash >= EXPORT_HASHMAX)
1287 return NULL;
1288 ++*pos;
1289 return export_table[hash];
1292 static void e_stop(struct seq_file *m, void *p)
1293 __releases(svc_export_cache.hash_lock)
1295 read_unlock(&svc_export_cache.hash_lock);
1296 exp_readunlock();
1299 static struct flags {
1300 int flag;
1301 char *name[2];
1302 } expflags[] = {
1303 { NFSEXP_READONLY, {"ro", "rw"}},
1304 { NFSEXP_INSECURE_PORT, {"insecure", ""}},
1305 { NFSEXP_ROOTSQUASH, {"root_squash", "no_root_squash"}},
1306 { NFSEXP_ALLSQUASH, {"all_squash", ""}},
1307 { NFSEXP_ASYNC, {"async", "sync"}},
1308 { NFSEXP_GATHERED_WRITES, {"wdelay", "no_wdelay"}},
1309 { NFSEXP_NOHIDE, {"nohide", ""}},
1310 { NFSEXP_CROSSMOUNT, {"crossmnt", ""}},
1311 { NFSEXP_NOSUBTREECHECK, {"no_subtree_check", ""}},
1312 { NFSEXP_NOAUTHNLM, {"insecure_locks", ""}},
1313 #ifdef MSNFS
1314 { NFSEXP_MSNFS, {"msnfs", ""}},
1315 #endif
1316 { 0, {"", ""}}
1319 static void exp_flags(struct seq_file *m, int flag, int fsid,
1320 uid_t anonu, uid_t anong, struct nfsd4_fs_locations *fsloc)
1322 int first = 0;
1323 struct flags *flg;
1325 for (flg = expflags; flg->flag; flg++) {
1326 int state = (flg->flag & flag)?0:1;
1327 if (*flg->name[state])
1328 seq_printf(m, "%s%s", first++?",":"", flg->name[state]);
1330 if (flag & NFSEXP_FSID)
1331 seq_printf(m, "%sfsid=%d", first++?",":"", fsid);
1332 if (anonu != (uid_t)-2 && anonu != (0x10000-2))
1333 seq_printf(m, "%sanonuid=%d", first++?",":"", anonu);
1334 if (anong != (gid_t)-2 && anong != (0x10000-2))
1335 seq_printf(m, "%sanongid=%d", first++?",":"", anong);
1336 if (fsloc && fsloc->locations_count > 0) {
1337 char *loctype = (fsloc->migrated) ? "refer" : "replicas";
1338 int i;
1340 seq_printf(m, "%s%s=", first++?",":"", loctype);
1341 seq_escape(m, fsloc->locations[0].path, ",;@ \t\n\\");
1342 seq_putc(m, '@');
1343 seq_escape(m, fsloc->locations[0].hosts, ",;@ \t\n\\");
1344 for (i = 1; i < fsloc->locations_count; i++) {
1345 seq_putc(m, ';');
1346 seq_escape(m, fsloc->locations[i].path, ",;@ \t\n\\");
1347 seq_putc(m, '@');
1348 seq_escape(m, fsloc->locations[i].hosts, ",;@ \t\n\\");
1353 static int e_show(struct seq_file *m, void *p)
1355 struct cache_head *cp = p;
1356 struct svc_export *exp = container_of(cp, struct svc_export, h);
1358 if (p == SEQ_START_TOKEN) {
1359 seq_puts(m, "# Version 1.1\n");
1360 seq_puts(m, "# Path Client(Flags) # IPs\n");
1361 return 0;
1364 cache_get(&exp->h);
1365 if (cache_check(&svc_export_cache, &exp->h, NULL))
1366 return 0;
1367 cache_put(&exp->h, &svc_export_cache);
1368 return svc_export_show(m, &svc_export_cache, cp);
1371 struct seq_operations nfs_exports_op = {
1372 .start = e_start,
1373 .next = e_next,
1374 .stop = e_stop,
1375 .show = e_show,
1379 * Add or modify a client.
1380 * Change requests may involve the list of host addresses. The list of
1381 * exports and possibly existing uid maps are left untouched.
1384 exp_addclient(struct nfsctl_client *ncp)
1386 struct auth_domain *dom;
1387 int i, err;
1388 struct in6_addr addr6;
1390 /* First, consistency check. */
1391 err = -EINVAL;
1392 if (! exp_verify_string(ncp->cl_ident, NFSCLNT_IDMAX))
1393 goto out;
1394 if (ncp->cl_naddr > NFSCLNT_ADDRMAX)
1395 goto out;
1397 /* Lock the hashtable */
1398 exp_writelock();
1400 dom = unix_domain_find(ncp->cl_ident);
1402 err = -ENOMEM;
1403 if (!dom)
1404 goto out_unlock;
1406 /* Insert client into hashtable. */
1407 for (i = 0; i < ncp->cl_naddr; i++) {
1408 ipv6_addr_set_v4mapped(ncp->cl_addrlist[i].s_addr, &addr6);
1409 auth_unix_add_addr(&addr6, dom);
1411 auth_unix_forget_old(dom);
1412 auth_domain_put(dom);
1414 err = 0;
1416 out_unlock:
1417 exp_writeunlock();
1418 out:
1419 return err;
1423 * Delete a client given an identifier.
1426 exp_delclient(struct nfsctl_client *ncp)
1428 int err;
1429 struct auth_domain *dom;
1431 err = -EINVAL;
1432 if (!exp_verify_string(ncp->cl_ident, NFSCLNT_IDMAX))
1433 goto out;
1435 /* Lock the hashtable */
1436 exp_writelock();
1438 dom = auth_domain_find(ncp->cl_ident);
1439 /* just make sure that no addresses work
1440 * and that it will expire soon
1442 if (dom) {
1443 err = auth_unix_forget_old(dom);
1444 auth_domain_put(dom);
1447 exp_writeunlock();
1448 out:
1449 return err;
1453 * Verify that string is non-empty and does not exceed max length.
1455 static int
1456 exp_verify_string(char *cp, int max)
1458 int i;
1460 for (i = 0; i < max; i++)
1461 if (!cp[i])
1462 return i;
1463 cp[i] = 0;
1464 printk(KERN_NOTICE "nfsd: couldn't validate string %s\n", cp);
1465 return 0;
1469 * Initialize the exports module.
1471 void
1472 nfsd_export_init(void)
1474 dprintk("nfsd: initializing export module.\n");
1476 cache_register(&svc_export_cache);
1477 cache_register(&svc_expkey_cache);
1482 * Flush exports table - called when last nfsd thread is killed
1484 void
1485 nfsd_export_flush(void)
1487 exp_writelock();
1488 cache_purge(&svc_expkey_cache);
1489 cache_purge(&svc_export_cache);
1490 exp_writeunlock();
1494 * Shutdown the exports module.
1496 void
1497 nfsd_export_shutdown(void)
1500 dprintk("nfsd: shutting down export module.\n");
1502 exp_writelock();
1504 if (cache_unregister(&svc_expkey_cache))
1505 printk(KERN_ERR "nfsd: failed to unregister expkey cache\n");
1506 if (cache_unregister(&svc_export_cache))
1507 printk(KERN_ERR "nfsd: failed to unregister export cache\n");
1508 svcauth_unix_purge();
1510 exp_writeunlock();
1511 dprintk("nfsd: export shutdown complete.\n");