1 #define MSNFS /* HACK HACK */
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/sched.h>
20 #include <linux/stat.h>
22 #include <linux/seq_file.h>
23 #include <linux/syscalls.h>
24 #include <linux/rwsem.h>
25 #include <linux/dcache.h>
26 #include <linux/namei.h>
27 #include <linux/mount.h>
28 #include <linux/hash.h>
29 #include <linux/module.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>
37 #define NFSDDBG_FACILITY NFSDDBG_EXPORT
38 #define NFSD_PARANOIA 1
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
);
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 inline int svc_expkey_hash(struct svc_expkey
*item
)
62 int hash
= item
->ek_fsidtype
;
63 char * cp
= (char*)item
->ek_fsid
;
64 int len
= key_len(item
->ek_fsidtype
);
66 hash
^= hash_mem(cp
, len
, EXPKEY_HASHBITS
);
67 hash
^= hash_ptr(item
->ek_client
, EXPKEY_HASHBITS
);
68 return hash
& EXPKEY_HASHMASK
;
71 void expkey_put(struct cache_head
*item
, struct cache_detail
*cd
)
73 if (cache_put(item
, cd
)) {
74 struct svc_expkey
*key
= container_of(item
, struct svc_expkey
, h
);
75 if (test_bit(CACHE_VALID
, &item
->flags
) &&
76 !test_bit(CACHE_NEGATIVE
, &item
->flags
))
77 exp_put(key
->ek_export
);
78 auth_domain_put(key
->ek_client
);
83 static void expkey_request(struct cache_detail
*cd
,
85 char **bpp
, int *blen
)
87 /* client fsidtype \xfsid */
88 struct svc_expkey
*ek
= container_of(h
, struct svc_expkey
, h
);
91 qword_add(bpp
, blen
, ek
->ek_client
->name
);
92 snprintf(type
, 5, "%d", ek
->ek_fsidtype
);
93 qword_add(bpp
, blen
, type
);
94 qword_addhex(bpp
, blen
, (char*)ek
->ek_fsid
, key_len(ek
->ek_fsidtype
));
98 static struct svc_expkey
*svc_expkey_lookup(struct svc_expkey
*, int);
99 static int expkey_parse(struct cache_detail
*cd
, char *mesg
, int mlen
)
101 /* client fsidtype fsid [path] */
104 struct auth_domain
*dom
= NULL
;
108 struct svc_expkey key
;
110 if (mesg
[mlen
-1] != '\n')
114 buf
= kmalloc(PAGE_SIZE
, GFP_KERNEL
);
119 if ((len
=qword_get(&mesg
, buf
, PAGE_SIZE
)) <= 0)
123 dom
= auth_domain_find(buf
);
126 dprintk("found domain %s\n", buf
);
129 if ((len
=qword_get(&mesg
, buf
, PAGE_SIZE
)) <= 0)
131 fsidtype
= simple_strtoul(buf
, &ep
, 10);
134 dprintk("found fsidtype %d\n", fsidtype
);
137 if ((len
=qword_get(&mesg
, buf
, PAGE_SIZE
)) <= 0)
139 dprintk("found fsid length %d\n", len
);
140 if (len
!= key_len(fsidtype
))
143 /* OK, we seem to have a valid key */
145 key
.h
.expiry_time
= get_expiry(&mesg
);
146 if (key
.h
.expiry_time
== 0)
150 key
.ek_fsidtype
= fsidtype
;
151 memcpy(key
.ek_fsid
, buf
, len
);
153 /* now we want a pathname, or empty meaning NEGATIVE */
154 if ((len
=qword_get(&mesg
, buf
, PAGE_SIZE
)) < 0)
156 dprintk("Path seems to be <%s>\n", buf
);
159 struct svc_expkey
*ek
;
160 set_bit(CACHE_NEGATIVE
, &key
.h
.flags
);
161 ek
= svc_expkey_lookup(&key
, 1);
163 expkey_put(&ek
->h
, &svc_expkey_cache
);
166 struct svc_expkey
*ek
;
167 struct svc_export
*exp
;
168 err
= path_lookup(buf
, 0, &nd
);
172 dprintk("Found the path %s\n", buf
);
173 exp
= exp_get_by_name(dom
, nd
.mnt
, nd
.dentry
, NULL
);
179 dprintk("And found export\n");
181 ek
= svc_expkey_lookup(&key
, 1);
183 expkey_put(&ek
->h
, &svc_expkey_cache
);
192 auth_domain_put(dom
);
198 static int expkey_show(struct seq_file
*m
,
199 struct cache_detail
*cd
,
200 struct cache_head
*h
)
202 struct svc_expkey
*ek
;
205 seq_puts(m
, "#domain fsidtype fsid [path]\n");
208 ek
= container_of(h
, struct svc_expkey
, h
);
209 seq_printf(m
, "%s %d 0x%08x", ek
->ek_client
->name
,
210 ek
->ek_fsidtype
, ek
->ek_fsid
[0]);
211 if (ek
->ek_fsidtype
!= 1)
212 seq_printf(m
, "%08x", ek
->ek_fsid
[1]);
213 if (ek
->ek_fsidtype
== 2)
214 seq_printf(m
, "%08x", ek
->ek_fsid
[2]);
215 if (test_bit(CACHE_VALID
, &h
->flags
) &&
216 !test_bit(CACHE_NEGATIVE
, &h
->flags
)) {
218 seq_path(m
, ek
->ek_export
->ex_mnt
, ek
->ek_export
->ex_dentry
, "\\ \t\n");
224 struct cache_detail svc_expkey_cache
= {
225 .owner
= THIS_MODULE
,
226 .hash_size
= EXPKEY_HASHMAX
,
227 .hash_table
= expkey_table
,
229 .cache_put
= expkey_put
,
230 .cache_request
= expkey_request
,
231 .cache_parse
= expkey_parse
,
232 .cache_show
= expkey_show
,
235 static inline int svc_expkey_match (struct svc_expkey
*a
, struct svc_expkey
*b
)
237 if (a
->ek_fsidtype
!= b
->ek_fsidtype
||
238 a
->ek_client
!= b
->ek_client
||
239 memcmp(a
->ek_fsid
, b
->ek_fsid
, key_len(a
->ek_fsidtype
)) != 0)
244 static inline void svc_expkey_init(struct svc_expkey
*new, struct svc_expkey
*item
)
246 cache_get(&item
->ek_client
->h
);
247 new->ek_client
= item
->ek_client
;
248 new->ek_fsidtype
= item
->ek_fsidtype
;
249 new->ek_fsid
[0] = item
->ek_fsid
[0];
250 new->ek_fsid
[1] = item
->ek_fsid
[1];
251 new->ek_fsid
[2] = item
->ek_fsid
[2];
254 static inline void svc_expkey_update(struct svc_expkey
*new, struct svc_expkey
*item
)
256 cache_get(&item
->ek_export
->h
);
257 new->ek_export
= item
->ek_export
;
260 static DefineSimpleCacheLookup(svc_expkey
,0) /* no inplace updates */
262 #define EXPORT_HASHBITS 8
263 #define EXPORT_HASHMAX (1<< EXPORT_HASHBITS)
264 #define EXPORT_HASHMASK (EXPORT_HASHMAX -1)
266 static struct cache_head
*export_table
[EXPORT_HASHMAX
];
268 static inline int svc_export_hash(struct svc_export
*item
)
272 rv
= hash_ptr(item
->ex_client
, EXPORT_HASHBITS
);
273 rv
^= hash_ptr(item
->ex_dentry
, EXPORT_HASHBITS
);
274 rv
^= hash_ptr(item
->ex_mnt
, EXPORT_HASHBITS
);
278 void svc_export_put(struct cache_head
*item
, struct cache_detail
*cd
)
280 if (cache_put(item
, cd
)) {
281 struct svc_export
*exp
= container_of(item
, struct svc_export
, h
);
282 dput(exp
->ex_dentry
);
284 auth_domain_put(exp
->ex_client
);
289 static void svc_export_request(struct cache_detail
*cd
,
290 struct cache_head
*h
,
291 char **bpp
, int *blen
)
294 struct svc_export
*exp
= container_of(h
, struct svc_export
, h
);
297 qword_add(bpp
, blen
, exp
->ex_client
->name
);
298 pth
= d_path(exp
->ex_dentry
, exp
->ex_mnt
, *bpp
, *blen
);
300 /* is this correct? */
304 qword_add(bpp
, blen
, pth
);
308 static struct svc_export
*svc_export_lookup(struct svc_export
*, int);
310 static int check_export(struct inode
*inode
, int flags
)
313 /* We currently export only dirs and regular files.
314 * This is what umountd does.
316 if (!S_ISDIR(inode
->i_mode
) &&
317 !S_ISREG(inode
->i_mode
))
320 /* There are two requirements on a filesystem to be exportable.
321 * 1: We must be able to identify the filesystem from a number.
322 * either a device number (so FS_REQUIRES_DEV needed)
323 * or an FSID number (so NFSEXP_FSID needed).
324 * 2: We must be able to find an inode from a filehandle.
325 * This means that s_export_op must be set.
327 if (!(inode
->i_sb
->s_type
->fs_flags
& FS_REQUIRES_DEV
) &&
328 !(flags
& NFSEXP_FSID
)) {
329 dprintk("exp_export: export of non-dev fs without fsid");
332 if (!inode
->i_sb
->s_export_op
) {
333 dprintk("exp_export: export of invalid fs type.\n");
337 /* Ok, we can export it */;
338 if (!inode
->i_sb
->s_export_op
->find_exported_dentry
)
339 inode
->i_sb
->s_export_op
->find_exported_dentry
=
340 find_exported_dentry
;
345 static int svc_export_parse(struct cache_detail
*cd
, char *mesg
, int mlen
)
347 /* client path expiry [flags anonuid anongid fsid] */
351 struct auth_domain
*dom
= NULL
;
353 struct svc_export exp
, *expp
;
358 if (mesg
[mlen
-1] != '\n')
362 buf
= kmalloc(PAGE_SIZE
, GFP_KERNEL
);
367 len
= qword_get(&mesg
, buf
, PAGE_SIZE
);
369 if (len
<= 0) goto out
;
372 dom
= auth_domain_find(buf
);
378 if ((len
=qword_get(&mesg
, buf
, PAGE_SIZE
)) <= 0)
380 err
= path_lookup(buf
, 0, &nd
);
386 exp
.ex_dentry
= nd
.dentry
;
390 exp
.h
.expiry_time
= get_expiry(&mesg
);
391 if (exp
.h
.expiry_time
== 0)
395 err
= get_int(&mesg
, &an_int
);
397 set_bit(CACHE_NEGATIVE
, &exp
.h
.flags
);
399 if (err
|| an_int
< 0) goto out
;
400 exp
.ex_flags
= an_int
;
403 err
= get_int(&mesg
, &an_int
);
405 exp
.ex_anon_uid
= an_int
;
408 err
= get_int(&mesg
, &an_int
);
410 exp
.ex_anon_gid
= an_int
;
413 err
= get_int(&mesg
, &an_int
);
415 exp
.ex_fsid
= an_int
;
417 err
= check_export(nd
.dentry
->d_inode
, exp
.ex_flags
);
421 expp
= svc_export_lookup(&exp
, 1);
430 auth_domain_put(dom
);
436 static void exp_flags(struct seq_file
*m
, int flag
, int fsid
, uid_t anonu
, uid_t anong
);
438 static int svc_export_show(struct seq_file
*m
,
439 struct cache_detail
*cd
,
440 struct cache_head
*h
)
442 struct svc_export
*exp
;
445 seq_puts(m
, "#path domain(flags)\n");
448 exp
= container_of(h
, struct svc_export
, h
);
449 seq_path(m
, exp
->ex_mnt
, exp
->ex_dentry
, " \t\n\\");
451 seq_escape(m
, exp
->ex_client
->name
, " \t\n\\");
453 if (test_bit(CACHE_VALID
, &h
->flags
) &&
454 !test_bit(CACHE_NEGATIVE
, &h
->flags
))
455 exp_flags(m
, exp
->ex_flags
, exp
->ex_fsid
,
456 exp
->ex_anon_uid
, exp
->ex_anon_gid
);
460 struct cache_detail svc_export_cache
= {
461 .owner
= THIS_MODULE
,
462 .hash_size
= EXPORT_HASHMAX
,
463 .hash_table
= export_table
,
464 .name
= "nfsd.export",
465 .cache_put
= svc_export_put
,
466 .cache_request
= svc_export_request
,
467 .cache_parse
= svc_export_parse
,
468 .cache_show
= svc_export_show
,
471 static inline int svc_export_match(struct svc_export
*a
, struct svc_export
*b
)
473 return a
->ex_client
== b
->ex_client
&&
474 a
->ex_dentry
== b
->ex_dentry
&&
475 a
->ex_mnt
== b
->ex_mnt
;
477 static inline void svc_export_init(struct svc_export
*new, struct svc_export
*item
)
479 cache_get(&item
->ex_client
->h
);
480 new->ex_client
= item
->ex_client
;
481 new->ex_dentry
= dget(item
->ex_dentry
);
482 new->ex_mnt
= mntget(item
->ex_mnt
);
485 static inline void svc_export_update(struct svc_export
*new, struct svc_export
*item
)
487 new->ex_flags
= item
->ex_flags
;
488 new->ex_anon_uid
= item
->ex_anon_uid
;
489 new->ex_anon_gid
= item
->ex_anon_gid
;
490 new->ex_fsid
= item
->ex_fsid
;
493 static DefineSimpleCacheLookup(svc_export
,1) /* allow inplace updates */
497 exp_find_key(svc_client
*clp
, int fsid_type
, u32
*fsidv
, struct cache_req
*reqp
)
499 struct svc_expkey key
, *ek
;
506 key
.ek_fsidtype
= fsid_type
;
507 memcpy(key
.ek_fsid
, fsidv
, key_len(fsid_type
));
509 ek
= svc_expkey_lookup(&key
, 0);
511 if ((err
= cache_check(&svc_expkey_cache
, &ek
->h
, reqp
)))
516 static int exp_set_key(svc_client
*clp
, int fsid_type
, u32
*fsidv
,
517 struct svc_export
*exp
)
519 struct svc_expkey key
, *ek
;
522 key
.ek_fsidtype
= fsid_type
;
523 memcpy(key
.ek_fsid
, fsidv
, key_len(fsid_type
));
525 key
.h
.expiry_time
= NEVER
;
528 ek
= svc_expkey_lookup(&key
, 1);
530 expkey_put(&ek
->h
, &svc_expkey_cache
);
537 * Find the client's export entry matching xdev/xino.
539 static inline struct svc_expkey
*
540 exp_get_key(svc_client
*clp
, dev_t dev
, ino_t ino
)
544 if (old_valid_dev(dev
)) {
545 mk_fsid_v0(fsidv
, dev
, ino
);
546 return exp_find_key(clp
, 0, fsidv
, NULL
);
548 mk_fsid_v3(fsidv
, dev
, ino
);
549 return exp_find_key(clp
, 3, fsidv
, NULL
);
553 * Find the client's export entry matching fsid
555 static inline struct svc_expkey
*
556 exp_get_fsid_key(svc_client
*clp
, int fsid
)
560 mk_fsid_v1(fsidv
, fsid
);
562 return exp_find_key(clp
, 1, fsidv
, NULL
);
566 exp_get_by_name(svc_client
*clp
, struct vfsmount
*mnt
, struct dentry
*dentry
,
567 struct cache_req
*reqp
)
569 struct svc_export
*exp
, key
;
576 key
.ex_dentry
= dentry
;
578 exp
= svc_export_lookup(&key
, 0);
580 switch (cache_check(&svc_export_cache
, &exp
->h
, reqp
)) {
583 exp
= ERR_PTR(-EAGAIN
);
593 * Find the export entry for a given dentry.
596 exp_parent(svc_client
*clp
, struct vfsmount
*mnt
, struct dentry
*dentry
,
597 struct cache_req
*reqp
)
602 exp
= exp_get_by_name(clp
, mnt
, dentry
, reqp
);
604 while (exp
== NULL
&& !IS_ROOT(dentry
)) {
605 struct dentry
*parent
;
607 parent
= dget_parent(dentry
);
610 exp
= exp_get_by_name(clp
, mnt
, dentry
, reqp
);
617 * Hashtable locking. Write locks are placed only by user processes
618 * wanting to modify export information.
619 * Write locking only done in this file. Read locking
623 static DECLARE_RWSEM(hash_sem
);
628 down_read(&hash_sem
);
634 down_write(&hash_sem
);
644 exp_writeunlock(void)
649 static void exp_fsid_unhash(struct svc_export
*exp
)
651 struct svc_expkey
*ek
;
653 if ((exp
->ex_flags
& NFSEXP_FSID
) == 0)
656 ek
= exp_get_fsid_key(exp
->ex_client
, exp
->ex_fsid
);
657 if (ek
&& !IS_ERR(ek
)) {
658 ek
->h
.expiry_time
= get_seconds()-1;
659 expkey_put(&ek
->h
, &svc_expkey_cache
);
661 svc_expkey_cache
.nextcheck
= get_seconds();
664 static int exp_fsid_hash(svc_client
*clp
, struct svc_export
*exp
)
668 if ((exp
->ex_flags
& NFSEXP_FSID
) == 0)
671 mk_fsid_v1(fsid
, exp
->ex_fsid
);
672 return exp_set_key(clp
, 1, fsid
, exp
);
675 static int exp_hash(struct auth_domain
*clp
, struct svc_export
*exp
)
678 struct inode
*inode
= exp
->ex_dentry
->d_inode
;
679 dev_t dev
= inode
->i_sb
->s_dev
;
681 if (old_valid_dev(dev
)) {
682 mk_fsid_v0(fsid
, dev
, inode
->i_ino
);
683 return exp_set_key(clp
, 0, fsid
, exp
);
685 mk_fsid_v3(fsid
, dev
, inode
->i_ino
);
686 return exp_set_key(clp
, 3, fsid
, exp
);
689 static void exp_unhash(struct svc_export
*exp
)
691 struct svc_expkey
*ek
;
692 struct inode
*inode
= exp
->ex_dentry
->d_inode
;
694 ek
= exp_get_key(exp
->ex_client
, inode
->i_sb
->s_dev
, inode
->i_ino
);
695 if (ek
&& !IS_ERR(ek
)) {
696 ek
->h
.expiry_time
= get_seconds()-1;
697 expkey_put(&ek
->h
, &svc_expkey_cache
);
699 svc_expkey_cache
.nextcheck
= get_seconds();
703 * Export a file system.
706 exp_export(struct nfsctl_export
*nxp
)
709 struct svc_export
*exp
= NULL
;
710 struct svc_export
new;
711 struct svc_expkey
*fsid_key
= NULL
;
715 /* Consistency check */
717 if (!exp_verify_string(nxp
->ex_path
, NFS_MAXPATHLEN
) ||
718 !exp_verify_string(nxp
->ex_client
, NFSCLNT_IDMAX
))
721 dprintk("exp_export called for %s:%s (%x/%ld fl %x).\n",
722 nxp
->ex_client
, nxp
->ex_path
,
723 (unsigned)nxp
->ex_dev
, (long)nxp
->ex_ino
,
726 /* Try to lock the export table for update */
729 /* Look up client info */
730 if (!(clp
= auth_domain_find(nxp
->ex_client
)))
734 /* Look up the dentry */
735 err
= path_lookup(nxp
->ex_path
, 0, &nd
);
740 exp
= exp_get_by_name(clp
, nd
.mnt
, nd
.dentry
, NULL
);
742 /* must make sure there won't be an ex_fsid clash */
743 if ((nxp
->ex_flags
& NFSEXP_FSID
) &&
744 (fsid_key
= exp_get_fsid_key(clp
, nxp
->ex_dev
)) &&
746 fsid_key
->ek_export
&&
747 fsid_key
->ek_export
!= exp
)
751 /* just a flags/id/fsid update */
753 exp_fsid_unhash(exp
);
754 exp
->ex_flags
= nxp
->ex_flags
;
755 exp
->ex_anon_uid
= nxp
->ex_anon_uid
;
756 exp
->ex_anon_gid
= nxp
->ex_anon_gid
;
757 exp
->ex_fsid
= nxp
->ex_dev
;
759 err
= exp_fsid_hash(clp
, exp
);
763 err
= check_export(nd
.dentry
->d_inode
, nxp
->ex_flags
);
764 if (err
) goto finish
;
768 dprintk("nfsd: creating export entry %p for client %p\n", exp
, clp
);
770 new.h
.expiry_time
= NEVER
;
774 new.ex_dentry
= nd
.dentry
;
775 new.ex_flags
= nxp
->ex_flags
;
776 new.ex_anon_uid
= nxp
->ex_anon_uid
;
777 new.ex_anon_gid
= nxp
->ex_anon_gid
;
778 new.ex_fsid
= nxp
->ex_dev
;
780 exp
= svc_export_lookup(&new, 1);
787 if (exp_hash(clp
, exp
) ||
788 exp_fsid_hash(clp
, exp
)) {
789 /* failed to create at least one index */
790 exp_do_unexport(exp
);
798 if (fsid_key
&& !IS_ERR(fsid_key
))
799 expkey_put(&fsid_key
->h
, &svc_expkey_cache
);
801 auth_domain_put(clp
);
810 * Unexport a file system. The export entry has already
811 * been removed from the client's list of exported fs's.
814 exp_do_unexport(svc_export
*unexp
)
816 unexp
->h
.expiry_time
= get_seconds()-1;
817 svc_export_cache
.nextcheck
= get_seconds();
819 exp_fsid_unhash(unexp
);
827 exp_unexport(struct nfsctl_export
*nxp
)
829 struct auth_domain
*dom
;
834 /* Consistency check */
835 if (!exp_verify_string(nxp
->ex_path
, NFS_MAXPATHLEN
) ||
836 !exp_verify_string(nxp
->ex_client
, NFSCLNT_IDMAX
))
842 dom
= auth_domain_find(nxp
->ex_client
);
844 dprintk("nfsd: unexport couldn't find %s\n", nxp
->ex_client
);
848 err
= path_lookup(nxp
->ex_path
, 0, &nd
);
853 exp
= exp_get_by_name(dom
, nd
.mnt
, nd
.dentry
, NULL
);
858 exp_do_unexport(exp
);
863 auth_domain_put(dom
);
871 * Obtain the root fh on behalf of a client.
872 * This could be done in user space, but I feel that it adds some safety
873 * since its harder to fool a kernel module than a user space program.
876 exp_rootfh(svc_client
*clp
, char *path
, struct knfsd_fh
*f
, int maxsize
)
878 struct svc_export
*exp
;
885 /* NB: we probably ought to check that it's NUL-terminated */
886 if (path_lookup(path
, 0, &nd
)) {
887 printk("nfsd: exp_rootfh path not found %s", path
);
890 inode
= nd
.dentry
->d_inode
;
892 dprintk("nfsd: exp_rootfh(%s [%p] %s:%s/%ld)\n",
893 path
, nd
.dentry
, clp
->name
,
894 inode
->i_sb
->s_id
, inode
->i_ino
);
895 exp
= exp_parent(clp
, nd
.mnt
, nd
.dentry
, NULL
);
897 dprintk("nfsd: exp_rootfh export not found.\n");
902 * fh must be initialized before calling fh_compose
904 fh_init(&fh
, maxsize
);
905 if (fh_compose(&fh
, exp
, nd
.dentry
, NULL
))
909 memcpy(f
, &fh
.fh_handle
, sizeof(struct knfsd_fh
));
918 * Called when we need the filehandle for the root of the pseudofs,
919 * for a given NFSv4 client. The root is defined to be the
920 * export point with fsid==0
923 exp_pseudoroot(struct auth_domain
*clp
, struct svc_fh
*fhp
,
924 struct cache_req
*creq
)
926 struct svc_expkey
*fsid_key
;
930 mk_fsid_v1(fsidv
, 0);
932 fsid_key
= exp_find_key(clp
, 1, fsidv
, creq
);
933 if (IS_ERR(fsid_key
) && PTR_ERR(fsid_key
) == -EAGAIN
)
934 return nfserr_dropit
;
935 if (!fsid_key
|| IS_ERR(fsid_key
))
938 rv
= fh_compose(fhp
, fsid_key
->ek_export
,
939 fsid_key
->ek_export
->ex_dentry
, NULL
);
940 expkey_put(&fsid_key
->h
, &svc_expkey_cache
);
946 static void *e_start(struct seq_file
*m
, loff_t
*pos
)
949 unsigned hash
, export
;
950 struct cache_head
*ch
;
953 read_lock(&svc_export_cache
.hash_lock
);
957 export
= n
& ((1LL<<32) - 1);
960 for (ch
=export_table
[hash
]; ch
; ch
=ch
->next
)
963 n
&= ~((1LL<<32) - 1);
967 } while(hash
< EXPORT_HASHMAX
&& export_table
[hash
]==NULL
);
968 if (hash
>= EXPORT_HASHMAX
)
971 return export_table
[hash
];
974 static void *e_next(struct seq_file
*m
, void *p
, loff_t
*pos
)
976 struct cache_head
*ch
= p
;
977 int hash
= (*pos
>> 32);
981 else if (ch
->next
== NULL
) {
988 *pos
&= ~((1LL<<32) - 1);
989 while (hash
< EXPORT_HASHMAX
&& export_table
[hash
] == NULL
) {
993 if (hash
>= EXPORT_HASHMAX
)
996 return export_table
[hash
];
999 static void e_stop(struct seq_file
*m
, void *p
)
1001 read_unlock(&svc_export_cache
.hash_lock
);
1005 static struct flags
{
1009 { NFSEXP_READONLY
, {"ro", "rw"}},
1010 { NFSEXP_INSECURE_PORT
, {"insecure", ""}},
1011 { NFSEXP_ROOTSQUASH
, {"root_squash", "no_root_squash"}},
1012 { NFSEXP_ALLSQUASH
, {"all_squash", ""}},
1013 { NFSEXP_ASYNC
, {"async", "sync"}},
1014 { NFSEXP_GATHERED_WRITES
, {"wdelay", "no_wdelay"}},
1015 { NFSEXP_NOHIDE
, {"nohide", ""}},
1016 { NFSEXP_CROSSMOUNT
, {"crossmnt", ""}},
1017 { NFSEXP_NOSUBTREECHECK
, {"no_subtree_check", ""}},
1018 { NFSEXP_NOAUTHNLM
, {"insecure_locks", ""}},
1020 { NFSEXP_MSNFS
, {"msnfs", ""}},
1025 static void exp_flags(struct seq_file
*m
, int flag
, int fsid
, uid_t anonu
, uid_t anong
)
1030 for (flg
= expflags
; flg
->flag
; flg
++) {
1031 int state
= (flg
->flag
& flag
)?0:1;
1032 if (*flg
->name
[state
])
1033 seq_printf(m
, "%s%s", first
++?",":"", flg
->name
[state
]);
1035 if (flag
& NFSEXP_FSID
)
1036 seq_printf(m
, "%sfsid=%d", first
++?",":"", fsid
);
1037 if (anonu
!= (uid_t
)-2 && anonu
!= (0x10000-2))
1038 seq_printf(m
, "%sanonuid=%d", first
++?",":"", anonu
);
1039 if (anong
!= (gid_t
)-2 && anong
!= (0x10000-2))
1040 seq_printf(m
, "%sanongid=%d", first
++?",":"", anong
);
1043 static int e_show(struct seq_file
*m
, void *p
)
1045 struct cache_head
*cp
= p
;
1046 struct svc_export
*exp
= container_of(cp
, struct svc_export
, h
);
1049 if (p
== (void *)1) {
1050 seq_puts(m
, "# Version 1.1\n");
1051 seq_puts(m
, "# Path Client(Flags) # IPs\n");
1055 clp
= exp
->ex_client
;
1057 if (cache_check(&svc_export_cache
, &exp
->h
, NULL
))
1059 if (cache_put(&exp
->h
, &svc_export_cache
)) BUG();
1060 return svc_export_show(m
, &svc_export_cache
, cp
);
1063 struct seq_operations nfs_exports_op
= {
1071 * Add or modify a client.
1072 * Change requests may involve the list of host addresses. The list of
1073 * exports and possibly existing uid maps are left untouched.
1076 exp_addclient(struct nfsctl_client
*ncp
)
1078 struct auth_domain
*dom
;
1081 /* First, consistency check. */
1083 if (! exp_verify_string(ncp
->cl_ident
, NFSCLNT_IDMAX
))
1085 if (ncp
->cl_naddr
> NFSCLNT_ADDRMAX
)
1088 /* Lock the hashtable */
1091 dom
= unix_domain_find(ncp
->cl_ident
);
1097 /* Insert client into hashtable. */
1098 for (i
= 0; i
< ncp
->cl_naddr
; i
++)
1099 auth_unix_add_addr(ncp
->cl_addrlist
[i
], dom
);
1101 auth_unix_forget_old(dom
);
1102 auth_domain_put(dom
);
1113 * Delete a client given an identifier.
1116 exp_delclient(struct nfsctl_client
*ncp
)
1119 struct auth_domain
*dom
;
1122 if (!exp_verify_string(ncp
->cl_ident
, NFSCLNT_IDMAX
))
1125 /* Lock the hashtable */
1128 dom
= auth_domain_find(ncp
->cl_ident
);
1129 /* just make sure that no addresses work
1130 * and that it will expire soon
1133 err
= auth_unix_forget_old(dom
);
1134 dom
->h
.expiry_time
= get_seconds();
1135 auth_domain_put(dom
);
1144 * Verify that string is non-empty and does not exceed max length.
1147 exp_verify_string(char *cp
, int max
)
1151 for (i
= 0; i
< max
; i
++)
1155 printk(KERN_NOTICE
"nfsd: couldn't validate string %s\n", cp
);
1160 * Initialize the exports module.
1163 nfsd_export_init(void)
1165 dprintk("nfsd: initializing export module.\n");
1167 cache_register(&svc_export_cache
);
1168 cache_register(&svc_expkey_cache
);
1173 * Flush exports table - called when last nfsd thread is killed
1176 nfsd_export_flush(void)
1179 cache_purge(&svc_expkey_cache
);
1180 cache_purge(&svc_export_cache
);
1185 * Shutdown the exports module.
1188 nfsd_export_shutdown(void)
1191 dprintk("nfsd: shutting down export module.\n");
1195 if (cache_unregister(&svc_expkey_cache
))
1196 printk(KERN_ERR
"nfsd: failed to unregister expkey cache\n");
1197 if (cache_unregister(&svc_export_cache
))
1198 printk(KERN_ERR
"nfsd: failed to unregister export cache\n");
1199 svcauth_unix_purge();
1202 dprintk("nfsd: export shutdown complete.\n");