blob: 676201dbdf84308a22c479e2523d2e8401388676 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#define MSNFS /* HACK HACK */
2/*
3 * linux/fs/nfsd/export.c
4 *
5 * NFS exporting and validation.
6 *
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.
12 *
13 *
14 * Copyright (C) 1995, 1996 Olaf Kirch, <okir@monad.swb.de>
15 */
16
17#include <linux/unistd.h>
18#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#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>
Bruce Allanf35279d2005-09-06 15:17:08 -070028#include <linux/module.h>
Christoph Hellwiga5694252007-07-17 04:04:28 -070029#include <linux/exportfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
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>
Andy Adamsone677bfe2007-07-17 04:04:42 -070036#include <linux/sunrpc/msg_prot.h>
37#include <linux/sunrpc/gss_api.h>
Aurélien Charbonf15364b2008-01-18 15:50:56 +010038#include <net/ipv6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40#define NFSDDBG_FACILITY NFSDDBG_EXPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42typedef struct auth_domain svc_client;
43typedef struct svc_export svc_export;
44
45static void exp_do_unexport(svc_export *unexp);
46static int exp_verify_string(char *cp, int max);
47
48/*
49 * We have two caches.
50 * One maps client+vfsmnt+dentry to export options - the export map
51 * The other maps client+filehandle-fragment to export options. - the expkey map
52 *
53 * The export options are actually stored in the first map, and the
54 * second map contains a reference to the entry in the first map.
55 */
56
57#define EXPKEY_HASHBITS 8
58#define EXPKEY_HASHMAX (1 << EXPKEY_HASHBITS)
59#define EXPKEY_HASHMASK (EXPKEY_HASHMAX -1)
60static struct cache_head *expkey_table[EXPKEY_HASHMAX];
61
Adrian Bunk74cae612006-03-27 01:15:10 -080062static void expkey_put(struct kref *ref)
Linus Torvalds1da177e2005-04-16 15:20:36 -070063{
NeilBrownbaab9352006-03-27 01:15:09 -080064 struct svc_expkey *key = container_of(ref, struct svc_expkey, h.ref);
65
66 if (test_bit(CACHE_VALID, &key->h.flags) &&
Jan Bluncke83aece2008-02-14 19:38:41 -080067 !test_bit(CACHE_NEGATIVE, &key->h.flags))
68 path_put(&key->ek_path);
NeilBrownbaab9352006-03-27 01:15:09 -080069 auth_domain_put(key->ek_client);
70 kfree(key);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071}
72
73static void expkey_request(struct cache_detail *cd,
74 struct cache_head *h,
75 char **bpp, int *blen)
76{
77 /* client fsidtype \xfsid */
78 struct svc_expkey *ek = container_of(h, struct svc_expkey, h);
79 char type[5];
80
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';
86}
87
NeilBrown8d270f7f2006-03-27 01:15:04 -080088static struct svc_expkey *svc_expkey_update(struct svc_expkey *new, struct svc_expkey *old);
89static struct svc_expkey *svc_expkey_lookup(struct svc_expkey *);
Adrian Bunk74cae612006-03-27 01:15:10 -080090static struct cache_detail svc_expkey_cache;
91
Linus Torvalds1da177e2005-04-16 15:20:36 -070092static int expkey_parse(struct cache_detail *cd, char *mesg, int mlen)
93{
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;
NeilBrown8d270f7f2006-03-27 01:15:04 -0800102 struct svc_expkey *ek;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
104 if (mesg[mlen-1] != '\n')
105 return -EINVAL;
106 mesg[mlen-1] = 0;
107
108 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
109 err = -ENOMEM;
110 if (!buf) goto out;
111
112 err = -EINVAL;
113 if ((len=qword_get(&mesg, buf, PAGE_SIZE)) <= 0)
114 goto out;
115
116 err = -ENOENT;
117 dom = auth_domain_find(buf);
118 if (!dom)
119 goto out;
120 dprintk("found domain %s\n", buf);
121
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);
Frank Filz4bdff8c2006-06-30 01:56:11 -0700129 if (key_len(fsidtype)==0) /* invalid type */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 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;
136
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;
142
143 key.ek_client = dom;
144 key.ek_fsidtype = fsidtype;
145 memcpy(key.ek_fsid, buf, len);
146
NeilBrown8d270f7f2006-03-27 01:15:04 -0800147 ek = svc_expkey_lookup(&key);
148 err = -ENOMEM;
149 if (!ek)
150 goto out;
151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 /* now we want a pathname, or empty meaning NEGATIVE */
NeilBrown8d270f7f2006-03-27 01:15:04 -0800153 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 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) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 set_bit(CACHE_NEGATIVE, &key.h.flags);
NeilBrown8d270f7f2006-03-27 01:15:04 -0800160 ek = svc_expkey_update(&key, ek);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 if (ek)
NeilBrownbaab9352006-03-27 01:15:09 -0800162 cache_put(&ek->h, &svc_expkey_cache);
NeilBrown8d270f7f2006-03-27 01:15:04 -0800163 else err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 } else {
Al Viroa63bb992008-08-02 01:03:36 -0400165 err = kern_path(buf, 0, &key.ek_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 if (err)
167 goto out;
168
169 dprintk("Found the path %s\n", buf);
Jan Bluncke83aece2008-02-14 19:38:41 -0800170
NeilBrown8d270f7f2006-03-27 01:15:04 -0800171 ek = svc_expkey_update(&key, ek);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 if (ek)
NeilBrownbaab9352006-03-27 01:15:09 -0800173 cache_put(&ek->h, &svc_expkey_cache);
NeilBrown8d270f7f2006-03-27 01:15:04 -0800174 else
175 err = -ENOMEM;
Al Viroa63bb992008-08-02 01:03:36 -0400176 path_put(&key.ek_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 }
178 cache_flush();
179 out:
180 if (dom)
181 auth_domain_put(dom);
Jesper Juhlf99d49a2005-11-07 01:01:34 -0800182 kfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 return err;
184}
185
186static int expkey_show(struct seq_file *m,
187 struct cache_detail *cd,
188 struct cache_head *h)
189{
190 struct svc_expkey *ek ;
NeilBrownaf6a4e22007-02-14 00:33:12 -0800191 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
193 if (h ==NULL) {
194 seq_puts(m, "#domain fsidtype fsid [path]\n");
195 return 0;
196 }
197 ek = container_of(h, struct svc_expkey, h);
NeilBrownaf6a4e22007-02-14 00:33:12 -0800198 seq_printf(m, "%s %d 0x", ek->ek_client->name,
199 ek->ek_fsidtype);
200 for (i=0; i < key_len(ek->ek_fsidtype)/4; i++)
201 seq_printf(m, "%08x", ek->ek_fsid[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 if (test_bit(CACHE_VALID, &h->flags) &&
203 !test_bit(CACHE_NEGATIVE, &h->flags)) {
204 seq_printf(m, " ");
Jan Blunckc32c2f62008-02-14 19:38:43 -0800205 seq_path(m, &ek->ek_path, "\\ \t\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 }
207 seq_printf(m, "\n");
208 return 0;
209}
NeilBrown8d270f7f2006-03-27 01:15:04 -0800210
211static inline int expkey_match (struct cache_head *a, struct cache_head *b)
212{
213 struct svc_expkey *orig = container_of(a, struct svc_expkey, h);
214 struct svc_expkey *new = container_of(b, struct svc_expkey, h);
215
216 if (orig->ek_fsidtype != new->ek_fsidtype ||
217 orig->ek_client != new->ek_client ||
218 memcmp(orig->ek_fsid, new->ek_fsid, key_len(orig->ek_fsidtype)) != 0)
219 return 0;
220 return 1;
221}
222
223static inline void expkey_init(struct cache_head *cnew,
224 struct cache_head *citem)
225{
226 struct svc_expkey *new = container_of(cnew, struct svc_expkey, h);
227 struct svc_expkey *item = container_of(citem, struct svc_expkey, h);
228
229 kref_get(&item->ek_client->ref);
230 new->ek_client = item->ek_client;
231 new->ek_fsidtype = item->ek_fsidtype;
NeilBrownaf6a4e22007-02-14 00:33:12 -0800232
233 memcpy(new->ek_fsid, item->ek_fsid, sizeof(new->ek_fsid));
NeilBrown8d270f7f2006-03-27 01:15:04 -0800234}
235
236static inline void expkey_update(struct cache_head *cnew,
237 struct cache_head *citem)
238{
239 struct svc_expkey *new = container_of(cnew, struct svc_expkey, h);
240 struct svc_expkey *item = container_of(citem, struct svc_expkey, h);
241
Jan Bluncke83aece2008-02-14 19:38:41 -0800242 new->ek_path = item->ek_path;
243 path_get(&item->ek_path);
NeilBrown8d270f7f2006-03-27 01:15:04 -0800244}
245
246static struct cache_head *expkey_alloc(void)
247{
248 struct svc_expkey *i = kmalloc(sizeof(*i), GFP_KERNEL);
249 if (i)
250 return &i->h;
251 else
252 return NULL;
253}
254
Adrian Bunk74cae612006-03-27 01:15:10 -0800255static struct cache_detail svc_expkey_cache = {
Bruce Allanf35279d2005-09-06 15:17:08 -0700256 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 .hash_size = EXPKEY_HASHMAX,
258 .hash_table = expkey_table,
259 .name = "nfsd.fh",
260 .cache_put = expkey_put,
261 .cache_request = expkey_request,
262 .cache_parse = expkey_parse,
263 .cache_show = expkey_show,
NeilBrown8d270f7f2006-03-27 01:15:04 -0800264 .match = expkey_match,
265 .init = expkey_init,
266 .update = expkey_update,
267 .alloc = expkey_alloc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268};
269
NeilBrown8d270f7f2006-03-27 01:15:04 -0800270static struct svc_expkey *
271svc_expkey_lookup(struct svc_expkey *item)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272{
NeilBrown8d270f7f2006-03-27 01:15:04 -0800273 struct cache_head *ch;
274 int hash = item->ek_fsidtype;
275 char * cp = (char*)item->ek_fsid;
276 int len = key_len(item->ek_fsidtype);
277
278 hash ^= hash_mem(cp, len, EXPKEY_HASHBITS);
279 hash ^= hash_ptr(item->ek_client, EXPKEY_HASHBITS);
280 hash &= EXPKEY_HASHMASK;
281
282 ch = sunrpc_cache_lookup(&svc_expkey_cache, &item->h,
283 hash);
284 if (ch)
285 return container_of(ch, struct svc_expkey, h);
286 else
287 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288}
289
NeilBrown8d270f7f2006-03-27 01:15:04 -0800290static struct svc_expkey *
291svc_expkey_update(struct svc_expkey *new, struct svc_expkey *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292{
NeilBrown8d270f7f2006-03-27 01:15:04 -0800293 struct cache_head *ch;
294 int hash = new->ek_fsidtype;
295 char * cp = (char*)new->ek_fsid;
296 int len = key_len(new->ek_fsidtype);
297
298 hash ^= hash_mem(cp, len, EXPKEY_HASHBITS);
299 hash ^= hash_ptr(new->ek_client, EXPKEY_HASHBITS);
300 hash &= EXPKEY_HASHMASK;
301
302 ch = sunrpc_cache_update(&svc_expkey_cache, &new->h,
303 &old->h, hash);
304 if (ch)
305 return container_of(ch, struct svc_expkey, h);
306 else
307 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308}
309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
311#define EXPORT_HASHBITS 8
312#define EXPORT_HASHMAX (1<< EXPORT_HASHBITS)
313#define EXPORT_HASHMASK (EXPORT_HASHMAX -1)
314
315static struct cache_head *export_table[EXPORT_HASHMAX];
316
Manoj Naik933469192006-10-04 02:16:18 -0700317static void nfsd4_fslocs_free(struct nfsd4_fs_locations *fsloc)
318{
319 int i;
320
321 for (i = 0; i < fsloc->locations_count; i++) {
322 kfree(fsloc->locations[i].path);
323 kfree(fsloc->locations[i].hosts);
324 }
325 kfree(fsloc->locations);
326}
327
NeilBrownbaab9352006-03-27 01:15:09 -0800328static void svc_export_put(struct kref *ref)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329{
NeilBrownbaab9352006-03-27 01:15:09 -0800330 struct svc_export *exp = container_of(ref, struct svc_export, h.ref);
Jan Blunck54775492008-02-14 19:38:39 -0800331 path_put(&exp->ex_path);
NeilBrownbaab9352006-03-27 01:15:09 -0800332 auth_domain_put(exp->ex_client);
Jan Blunck54775492008-02-14 19:38:39 -0800333 kfree(exp->ex_pathname);
Manoj Naik933469192006-10-04 02:16:18 -0700334 nfsd4_fslocs_free(&exp->ex_fslocs);
NeilBrownbaab9352006-03-27 01:15:09 -0800335 kfree(exp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336}
337
338static void svc_export_request(struct cache_detail *cd,
339 struct cache_head *h,
340 char **bpp, int *blen)
341{
342 /* client path */
343 struct svc_export *exp = container_of(h, struct svc_export, h);
344 char *pth;
345
346 qword_add(bpp, blen, exp->ex_client->name);
Jan Blunckcf28b482008-02-14 19:38:44 -0800347 pth = d_path(&exp->ex_path, *bpp, *blen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 if (IS_ERR(pth)) {
349 /* is this correct? */
350 (*bpp)[0] = '\n';
351 return;
352 }
353 qword_add(bpp, blen, pth);
354 (*bpp)[-1] = '\n';
355}
356
Adrian Bunk74cae612006-03-27 01:15:10 -0800357static struct svc_export *svc_export_update(struct svc_export *new,
358 struct svc_export *old);
NeilBrown4f7774c2006-03-27 01:15:03 -0800359static struct svc_export *svc_export_lookup(struct svc_export *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
NeilBrownaf6a4e22007-02-14 00:33:12 -0800361static int check_export(struct inode *inode, int flags, unsigned char *uuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362{
363
364 /* We currently export only dirs and regular files.
365 * This is what umountd does.
366 */
367 if (!S_ISDIR(inode->i_mode) &&
368 !S_ISREG(inode->i_mode))
369 return -ENOTDIR;
370
371 /* There are two requirements on a filesystem to be exportable.
372 * 1: We must be able to identify the filesystem from a number.
373 * either a device number (so FS_REQUIRES_DEV needed)
NeilBrownaf6a4e22007-02-14 00:33:12 -0800374 * or an FSID number (so NFSEXP_FSID or ->uuid is needed).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 * 2: We must be able to find an inode from a filehandle.
376 * This means that s_export_op must be set.
377 */
378 if (!(inode->i_sb->s_type->fs_flags & FS_REQUIRES_DEV) &&
NeilBrownaf6a4e22007-02-14 00:33:12 -0800379 !(flags & NFSEXP_FSID) &&
380 uuid == NULL) {
Greg Banks3e3b4802006-10-02 02:17:41 -0700381 dprintk("exp_export: export of non-dev fs without fsid\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 return -EINVAL;
383 }
Christoph Hellwigcfaea782007-10-21 16:42:16 -0700384
385 if (!inode->i_sb->s_export_op ||
386 !inode->i_sb->s_export_op->fh_to_dentry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 dprintk("exp_export: export of invalid fs type.\n");
388 return -EINVAL;
389 }
390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 return 0;
392
393}
394
Manoj Naik933469192006-10-04 02:16:18 -0700395#ifdef CONFIG_NFSD_V4
396
397static int
398fsloc_parse(char **mesg, char *buf, struct nfsd4_fs_locations *fsloc)
399{
400 int len;
401 int migrated, i, err;
402
Manoj Naik933469192006-10-04 02:16:18 -0700403 /* listsize */
404 err = get_int(mesg, &fsloc->locations_count);
405 if (err)
406 return err;
407 if (fsloc->locations_count > MAX_FS_LOCATIONS)
408 return -EINVAL;
409 if (fsloc->locations_count == 0)
410 return 0;
411
412 fsloc->locations = kzalloc(fsloc->locations_count
413 * sizeof(struct nfsd4_fs_location), GFP_KERNEL);
414 if (!fsloc->locations)
415 return -ENOMEM;
416 for (i=0; i < fsloc->locations_count; i++) {
417 /* colon separated host list */
418 err = -EINVAL;
419 len = qword_get(mesg, buf, PAGE_SIZE);
420 if (len <= 0)
421 goto out_free_all;
422 err = -ENOMEM;
423 fsloc->locations[i].hosts = kstrdup(buf, GFP_KERNEL);
424 if (!fsloc->locations[i].hosts)
425 goto out_free_all;
426 err = -EINVAL;
427 /* slash separated path component list */
428 len = qword_get(mesg, buf, PAGE_SIZE);
429 if (len <= 0)
430 goto out_free_all;
431 err = -ENOMEM;
432 fsloc->locations[i].path = kstrdup(buf, GFP_KERNEL);
433 if (!fsloc->locations[i].path)
434 goto out_free_all;
435 }
436 /* migrated */
437 err = get_int(mesg, &migrated);
438 if (err)
439 goto out_free_all;
440 err = -EINVAL;
441 if (migrated < 0 || migrated > 1)
442 goto out_free_all;
443 fsloc->migrated = migrated;
444 return 0;
445out_free_all:
446 nfsd4_fslocs_free(fsloc);
447 return err;
448}
449
Andy Adamsone677bfe2007-07-17 04:04:42 -0700450static int secinfo_parse(char **mesg, char *buf, struct svc_export *exp)
451{
452 int listsize, err;
453 struct exp_flavor_info *f;
454
455 err = get_int(mesg, &listsize);
456 if (err)
457 return err;
458 if (listsize < 0 || listsize > MAX_SECINFO_LIST)
459 return -EINVAL;
460
461 for (f = exp->ex_flavors; f < exp->ex_flavors + listsize; f++) {
462 err = get_int(mesg, &f->pseudoflavor);
463 if (err)
464 return err;
465 /*
466 * Just a quick sanity check; we could also try to check
467 * whether this pseudoflavor is supported, but at worst
468 * an unsupported pseudoflavor on the export would just
469 * be a pseudoflavor that won't match the flavor of any
470 * authenticated request. The administrator will
471 * probably discover the problem when someone fails to
472 * authenticate.
473 */
474 if (f->pseudoflavor < 0)
475 return -EINVAL;
476 err = get_int(mesg, &f->flags);
477 if (err)
478 return err;
479 /* Only some flags are allowed to differ between flavors: */
480 if (~NFSEXP_SECINFO_FLAGS & (f->flags ^ exp->ex_flags))
481 return -EINVAL;
482 }
483 exp->ex_nflavors = listsize;
484 return 0;
485}
486
Manoj Naik933469192006-10-04 02:16:18 -0700487#else /* CONFIG_NFSD_V4 */
Andy Adamsone677bfe2007-07-17 04:04:42 -0700488static inline int
489fsloc_parse(char **mesg, char *buf, struct nfsd4_fs_locations *fsloc){return 0;}
490static inline int
491secinfo_parse(char **mesg, char *buf, struct svc_export *exp) { return 0; }
Manoj Naik933469192006-10-04 02:16:18 -0700492#endif
493
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494static int svc_export_parse(struct cache_detail *cd, char *mesg, int mlen)
495{
496 /* client path expiry [flags anonuid anongid fsid] */
497 char *buf;
498 int len;
499 int err;
500 struct auth_domain *dom = NULL;
Al Viroc1a2a472008-08-02 01:01:02 -0400501 struct svc_export exp = {}, *expp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 int an_int;
503
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 if (mesg[mlen-1] != '\n')
505 return -EINVAL;
506 mesg[mlen-1] = 0;
507
508 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Al Viroc1a2a472008-08-02 01:01:02 -0400509 if (!buf)
510 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
512 /* client */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 err = -EINVAL;
Al Viroc1a2a472008-08-02 01:01:02 -0400514 len = qword_get(&mesg, buf, PAGE_SIZE);
515 if (len <= 0)
516 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
518 err = -ENOENT;
519 dom = auth_domain_find(buf);
520 if (!dom)
521 goto out;
522
523 /* path */
524 err = -EINVAL;
Al Viroc1a2a472008-08-02 01:01:02 -0400525 if ((len = qword_get(&mesg, buf, PAGE_SIZE)) <= 0)
526 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
Al Viroc1a2a472008-08-02 01:01:02 -0400528 err = kern_path(buf, 0, &exp.ex_path);
529 if (err)
530 goto out1;
531
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 exp.ex_client = dom;
Al Viroc1a2a472008-08-02 01:01:02 -0400533
J.Bruce Fieldsb009a872006-10-04 02:16:17 -0700534 err = -ENOMEM;
Al Viroc1a2a472008-08-02 01:01:02 -0400535 exp.ex_pathname = kstrdup(buf, GFP_KERNEL);
Jan Blunck54775492008-02-14 19:38:39 -0800536 if (!exp.ex_pathname)
Al Viroc1a2a472008-08-02 01:01:02 -0400537 goto out2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
539 /* expiry */
540 err = -EINVAL;
541 exp.h.expiry_time = get_expiry(&mesg);
542 if (exp.h.expiry_time == 0)
Al Viroc1a2a472008-08-02 01:01:02 -0400543 goto out3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
545 /* flags */
546 err = get_int(&mesg, &an_int);
J. Bruce Fields4a4b8832007-07-31 00:37:53 -0700547 if (err == -ENOENT) {
548 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 set_bit(CACHE_NEGATIVE, &exp.h.flags);
J. Bruce Fields4a4b8832007-07-31 00:37:53 -0700550 } else {
Al Viroc1a2a472008-08-02 01:01:02 -0400551 if (err || an_int < 0)
552 goto out3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 exp.ex_flags= an_int;
554
555 /* anon uid */
556 err = get_int(&mesg, &an_int);
Al Viroc1a2a472008-08-02 01:01:02 -0400557 if (err)
558 goto out3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 exp.ex_anon_uid= an_int;
560
561 /* anon gid */
562 err = get_int(&mesg, &an_int);
Al Viroc1a2a472008-08-02 01:01:02 -0400563 if (err)
564 goto out3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 exp.ex_anon_gid= an_int;
566
567 /* fsid */
568 err = get_int(&mesg, &an_int);
Al Viroc1a2a472008-08-02 01:01:02 -0400569 if (err)
570 goto out3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 exp.ex_fsid = an_int;
572
NeilBrownaf6a4e22007-02-14 00:33:12 -0800573 while ((len = qword_get(&mesg, buf, PAGE_SIZE)) > 0) {
574 if (strcmp(buf, "fsloc") == 0)
575 err = fsloc_parse(&mesg, buf, &exp.ex_fslocs);
576 else if (strcmp(buf, "uuid") == 0) {
577 /* expect a 16 byte uuid encoded as \xXXXX... */
578 len = qword_get(&mesg, buf, PAGE_SIZE);
579 if (len != 16)
580 err = -EINVAL;
581 else {
582 exp.ex_uuid =
583 kmemdup(buf, 16, GFP_KERNEL);
584 if (exp.ex_uuid == NULL)
585 err = -ENOMEM;
586 }
Andy Adamsone677bfe2007-07-17 04:04:42 -0700587 } else if (strcmp(buf, "secinfo") == 0)
588 err = secinfo_parse(&mesg, buf, &exp);
589 else
NeilBrownaf6a4e22007-02-14 00:33:12 -0800590 /* quietly ignore unknown words and anything
591 * following. Newer user-space can try to set
592 * new values, then see what the result was.
593 */
594 break;
595 if (err)
Al Viroc1a2a472008-08-02 01:01:02 -0400596 goto out4;
NeilBrownaf6a4e22007-02-14 00:33:12 -0800597 }
Manoj Naik933469192006-10-04 02:16:18 -0700598
Al Viroc1a2a472008-08-02 01:01:02 -0400599 err = check_export(exp.ex_path.dentry->d_inode, exp.ex_flags,
NeilBrownaf6a4e22007-02-14 00:33:12 -0800600 exp.ex_uuid);
Al Viroc1a2a472008-08-02 01:01:02 -0400601 if (err)
602 goto out4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 }
604
NeilBrown4f7774c2006-03-27 01:15:03 -0800605 expp = svc_export_lookup(&exp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 if (expp)
NeilBrown4f7774c2006-03-27 01:15:03 -0800607 expp = svc_export_update(&exp, expp);
608 else
609 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 cache_flush();
NeilBrown4f7774c2006-03-27 01:15:03 -0800611 if (expp == NULL)
612 err = -ENOMEM;
613 else
614 exp_put(expp);
Al Viroc1a2a472008-08-02 01:01:02 -0400615out4:
NeilBrownaf6a4e22007-02-14 00:33:12 -0800616 nfsd4_fslocs_free(&exp.ex_fslocs);
617 kfree(exp.ex_uuid);
Al Viroc1a2a472008-08-02 01:01:02 -0400618out3:
Jan Blunck54775492008-02-14 19:38:39 -0800619 kfree(exp.ex_pathname);
Al Viroc1a2a472008-08-02 01:01:02 -0400620out2:
621 path_put(&exp.ex_path);
622out1:
623 auth_domain_put(dom);
624out:
Jesper Juhlf99d49a2005-11-07 01:01:34 -0800625 kfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 return err;
627}
628
Manoj Naik933469192006-10-04 02:16:18 -0700629static void exp_flags(struct seq_file *m, int flag, int fsid,
630 uid_t anonu, uid_t anong, struct nfsd4_fs_locations *fslocs);
J. Bruce Fields91fe39d2007-07-17 04:04:49 -0700631static void show_secinfo(struct seq_file *m, struct svc_export *exp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
633static int svc_export_show(struct seq_file *m,
634 struct cache_detail *cd,
635 struct cache_head *h)
636{
637 struct svc_export *exp ;
638
639 if (h ==NULL) {
640 seq_puts(m, "#path domain(flags)\n");
641 return 0;
642 }
643 exp = container_of(h, struct svc_export, h);
Jan Blunckc32c2f62008-02-14 19:38:43 -0800644 seq_path(m, &exp->ex_path, " \t\n\\");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 seq_putc(m, '\t');
646 seq_escape(m, exp->ex_client->name, " \t\n\\");
647 seq_putc(m, '(');
648 if (test_bit(CACHE_VALID, &h->flags) &&
NeilBrownaf6a4e22007-02-14 00:33:12 -0800649 !test_bit(CACHE_NEGATIVE, &h->flags)) {
Manoj Naik933469192006-10-04 02:16:18 -0700650 exp_flags(m, exp->ex_flags, exp->ex_fsid,
651 exp->ex_anon_uid, exp->ex_anon_gid, &exp->ex_fslocs);
NeilBrownaf6a4e22007-02-14 00:33:12 -0800652 if (exp->ex_uuid) {
653 int i;
654 seq_puts(m, ",uuid=");
655 for (i=0; i<16; i++) {
656 if ((i&3) == 0 && i)
657 seq_putc(m, ':');
658 seq_printf(m, "%02x", exp->ex_uuid[i]);
659 }
660 }
J. Bruce Fields91fe39d2007-07-17 04:04:49 -0700661 show_secinfo(m, exp);
NeilBrownaf6a4e22007-02-14 00:33:12 -0800662 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 seq_puts(m, ")\n");
664 return 0;
665}
NeilBrown4f7774c2006-03-27 01:15:03 -0800666static int svc_export_match(struct cache_head *a, struct cache_head *b)
667{
668 struct svc_export *orig = container_of(a, struct svc_export, h);
669 struct svc_export *new = container_of(b, struct svc_export, h);
670 return orig->ex_client == new->ex_client &&
Jan Blunck54775492008-02-14 19:38:39 -0800671 orig->ex_path.dentry == new->ex_path.dentry &&
672 orig->ex_path.mnt == new->ex_path.mnt;
NeilBrown4f7774c2006-03-27 01:15:03 -0800673}
674
675static void svc_export_init(struct cache_head *cnew, struct cache_head *citem)
676{
677 struct svc_export *new = container_of(cnew, struct svc_export, h);
678 struct svc_export *item = container_of(citem, struct svc_export, h);
679
680 kref_get(&item->ex_client->ref);
681 new->ex_client = item->ex_client;
Jan Blunck54775492008-02-14 19:38:39 -0800682 new->ex_path.dentry = dget(item->ex_path.dentry);
683 new->ex_path.mnt = mntget(item->ex_path.mnt);
684 new->ex_pathname = NULL;
Manoj Naik933469192006-10-04 02:16:18 -0700685 new->ex_fslocs.locations = NULL;
686 new->ex_fslocs.locations_count = 0;
687 new->ex_fslocs.migrated = 0;
NeilBrown4f7774c2006-03-27 01:15:03 -0800688}
689
690static void export_update(struct cache_head *cnew, struct cache_head *citem)
691{
692 struct svc_export *new = container_of(cnew, struct svc_export, h);
693 struct svc_export *item = container_of(citem, struct svc_export, h);
Andy Adamsone677bfe2007-07-17 04:04:42 -0700694 int i;
NeilBrown4f7774c2006-03-27 01:15:03 -0800695
696 new->ex_flags = item->ex_flags;
697 new->ex_anon_uid = item->ex_anon_uid;
698 new->ex_anon_gid = item->ex_anon_gid;
699 new->ex_fsid = item->ex_fsid;
NeilBrownaf6a4e22007-02-14 00:33:12 -0800700 new->ex_uuid = item->ex_uuid;
701 item->ex_uuid = NULL;
Jan Blunck54775492008-02-14 19:38:39 -0800702 new->ex_pathname = item->ex_pathname;
703 item->ex_pathname = NULL;
Manoj Naik933469192006-10-04 02:16:18 -0700704 new->ex_fslocs.locations = item->ex_fslocs.locations;
705 item->ex_fslocs.locations = NULL;
706 new->ex_fslocs.locations_count = item->ex_fslocs.locations_count;
707 item->ex_fslocs.locations_count = 0;
708 new->ex_fslocs.migrated = item->ex_fslocs.migrated;
709 item->ex_fslocs.migrated = 0;
Andy Adamsone677bfe2007-07-17 04:04:42 -0700710 new->ex_nflavors = item->ex_nflavors;
711 for (i = 0; i < MAX_SECINFO_LIST; i++) {
712 new->ex_flavors[i] = item->ex_flavors[i];
713 }
NeilBrown4f7774c2006-03-27 01:15:03 -0800714}
715
716static struct cache_head *svc_export_alloc(void)
717{
718 struct svc_export *i = kmalloc(sizeof(*i), GFP_KERNEL);
719 if (i)
720 return &i->h;
721 else
722 return NULL;
723}
724
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725struct cache_detail svc_export_cache = {
Bruce Allanf35279d2005-09-06 15:17:08 -0700726 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 .hash_size = EXPORT_HASHMAX,
728 .hash_table = export_table,
729 .name = "nfsd.export",
730 .cache_put = svc_export_put,
731 .cache_request = svc_export_request,
732 .cache_parse = svc_export_parse,
733 .cache_show = svc_export_show,
NeilBrown4f7774c2006-03-27 01:15:03 -0800734 .match = svc_export_match,
735 .init = svc_export_init,
736 .update = export_update,
737 .alloc = svc_export_alloc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738};
739
NeilBrown4f7774c2006-03-27 01:15:03 -0800740static struct svc_export *
741svc_export_lookup(struct svc_export *exp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742{
NeilBrown4f7774c2006-03-27 01:15:03 -0800743 struct cache_head *ch;
744 int hash;
745 hash = hash_ptr(exp->ex_client, EXPORT_HASHBITS);
Jan Blunck54775492008-02-14 19:38:39 -0800746 hash ^= hash_ptr(exp->ex_path.dentry, EXPORT_HASHBITS);
747 hash ^= hash_ptr(exp->ex_path.mnt, EXPORT_HASHBITS);
NeilBrown4f7774c2006-03-27 01:15:03 -0800748
749 ch = sunrpc_cache_lookup(&svc_export_cache, &exp->h,
750 hash);
751 if (ch)
752 return container_of(ch, struct svc_export, h);
753 else
754 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755}
756
Adrian Bunk74cae612006-03-27 01:15:10 -0800757static struct svc_export *
NeilBrown4f7774c2006-03-27 01:15:03 -0800758svc_export_update(struct svc_export *new, struct svc_export *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759{
NeilBrown4f7774c2006-03-27 01:15:03 -0800760 struct cache_head *ch;
761 int hash;
762 hash = hash_ptr(old->ex_client, EXPORT_HASHBITS);
Jan Blunck54775492008-02-14 19:38:39 -0800763 hash ^= hash_ptr(old->ex_path.dentry, EXPORT_HASHBITS);
764 hash ^= hash_ptr(old->ex_path.mnt, EXPORT_HASHBITS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
NeilBrown4f7774c2006-03-27 01:15:03 -0800766 ch = sunrpc_cache_update(&svc_export_cache, &new->h,
767 &old->h,
768 hash);
769 if (ch)
770 return container_of(ch, struct svc_export, h);
771 else
772 return NULL;
773}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
775
Adrian Bunk74cae612006-03-27 01:15:10 -0800776static struct svc_expkey *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777exp_find_key(svc_client *clp, int fsid_type, u32 *fsidv, struct cache_req *reqp)
778{
779 struct svc_expkey key, *ek;
780 int err;
781
782 if (!clp)
J. Bruce Fields2d3bb252007-07-17 04:04:40 -0700783 return ERR_PTR(-ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
785 key.ek_client = clp;
786 key.ek_fsidtype = fsid_type;
787 memcpy(key.ek_fsid, fsidv, key_len(fsid_type));
788
NeilBrown8d270f7f2006-03-27 01:15:04 -0800789 ek = svc_expkey_lookup(&key);
J. Bruce Fields2d3bb252007-07-17 04:04:40 -0700790 if (ek == NULL)
791 return ERR_PTR(-ENOMEM);
792 err = cache_check(&svc_expkey_cache, &ek->h, reqp);
793 if (err)
794 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 return ek;
796}
797
798static int exp_set_key(svc_client *clp, int fsid_type, u32 *fsidv,
799 struct svc_export *exp)
800{
801 struct svc_expkey key, *ek;
802
803 key.ek_client = clp;
804 key.ek_fsidtype = fsid_type;
805 memcpy(key.ek_fsid, fsidv, key_len(fsid_type));
Jan Bluncke83aece2008-02-14 19:38:41 -0800806 key.ek_path = exp->ex_path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 key.h.expiry_time = NEVER;
808 key.h.flags = 0;
809
NeilBrown8d270f7f2006-03-27 01:15:04 -0800810 ek = svc_expkey_lookup(&key);
811 if (ek)
812 ek = svc_expkey_update(&key,ek);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 if (ek) {
NeilBrownbaab9352006-03-27 01:15:09 -0800814 cache_put(&ek->h, &svc_expkey_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 return 0;
816 }
817 return -ENOMEM;
818}
819
820/*
821 * Find the client's export entry matching xdev/xino.
822 */
823static inline struct svc_expkey *
824exp_get_key(svc_client *clp, dev_t dev, ino_t ino)
825{
826 u32 fsidv[3];
827
828 if (old_valid_dev(dev)) {
NeilBrownaf6a4e22007-02-14 00:33:12 -0800829 mk_fsid(FSID_DEV, fsidv, dev, ino, 0, NULL);
830 return exp_find_key(clp, FSID_DEV, fsidv, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 }
NeilBrownaf6a4e22007-02-14 00:33:12 -0800832 mk_fsid(FSID_ENCODE_DEV, fsidv, dev, ino, 0, NULL);
833 return exp_find_key(clp, FSID_ENCODE_DEV, fsidv, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834}
835
836/*
837 * Find the client's export entry matching fsid
838 */
839static inline struct svc_expkey *
840exp_get_fsid_key(svc_client *clp, int fsid)
841{
842 u32 fsidv[2];
843
NeilBrownaf6a4e22007-02-14 00:33:12 -0800844 mk_fsid(FSID_NUM, fsidv, 0, 0, fsid, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
NeilBrownaf6a4e22007-02-14 00:33:12 -0800846 return exp_find_key(clp, FSID_NUM, fsidv, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847}
848
Adrian Bunkcce76f92007-10-16 01:27:52 -0700849static svc_export *exp_get_by_name(svc_client *clp, struct vfsmount *mnt,
850 struct dentry *dentry,
851 struct cache_req *reqp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852{
853 struct svc_export *exp, key;
J. Bruce Fields2d3bb252007-07-17 04:04:40 -0700854 int err;
Jan Bluncke83aece2008-02-14 19:38:41 -0800855
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 if (!clp)
J. Bruce Fields2d3bb252007-07-17 04:04:40 -0700857 return ERR_PTR(-ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
859 key.ex_client = clp;
Jan Blunck54775492008-02-14 19:38:39 -0800860 key.ex_path.mnt = mnt;
861 key.ex_path.dentry = dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
NeilBrown4f7774c2006-03-27 01:15:03 -0800863 exp = svc_export_lookup(&key);
J. Bruce Fields2d3bb252007-07-17 04:04:40 -0700864 if (exp == NULL)
865 return ERR_PTR(-ENOMEM);
866 err = cache_check(&svc_export_cache, &exp->h, reqp);
867 if (err)
868 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 return exp;
870}
871
872/*
873 * Find the export entry for a given dentry.
874 */
Adrian Bunkcce76f92007-10-16 01:27:52 -0700875static struct svc_export *exp_parent(svc_client *clp, struct vfsmount *mnt,
876 struct dentry *dentry,
877 struct cache_req *reqp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878{
879 svc_export *exp;
880
881 dget(dentry);
882 exp = exp_get_by_name(clp, mnt, dentry, reqp);
883
J. Bruce Fields2d3bb252007-07-17 04:04:40 -0700884 while (PTR_ERR(exp) == -ENOENT && !IS_ROOT(dentry)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 struct dentry *parent;
886
887 parent = dget_parent(dentry);
888 dput(dentry);
889 dentry = parent;
890 exp = exp_get_by_name(clp, mnt, dentry, reqp);
891 }
892 dput(dentry);
893 return exp;
894}
895
896/*
897 * Hashtable locking. Write locks are placed only by user processes
898 * wanting to modify export information.
899 * Write locking only done in this file. Read locking
900 * needed externally.
901 */
902
903static DECLARE_RWSEM(hash_sem);
904
905void
906exp_readlock(void)
907{
908 down_read(&hash_sem);
909}
910
911static inline void
912exp_writelock(void)
913{
914 down_write(&hash_sem);
915}
916
917void
918exp_readunlock(void)
919{
920 up_read(&hash_sem);
921}
922
923static inline void
924exp_writeunlock(void)
925{
926 up_write(&hash_sem);
927}
928
929static void exp_fsid_unhash(struct svc_export *exp)
930{
931 struct svc_expkey *ek;
932
933 if ((exp->ex_flags & NFSEXP_FSID) == 0)
934 return;
935
936 ek = exp_get_fsid_key(exp->ex_client, exp->ex_fsid);
J. Bruce Fields2d3bb252007-07-17 04:04:40 -0700937 if (!IS_ERR(ek)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 ek->h.expiry_time = get_seconds()-1;
NeilBrownbaab9352006-03-27 01:15:09 -0800939 cache_put(&ek->h, &svc_expkey_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 }
941 svc_expkey_cache.nextcheck = get_seconds();
942}
943
944static int exp_fsid_hash(svc_client *clp, struct svc_export *exp)
945{
946 u32 fsid[2];
947
948 if ((exp->ex_flags & NFSEXP_FSID) == 0)
949 return 0;
950
NeilBrownaf6a4e22007-02-14 00:33:12 -0800951 mk_fsid(FSID_NUM, fsid, 0, 0, exp->ex_fsid, NULL);
952 return exp_set_key(clp, FSID_NUM, fsid, exp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953}
954
955static int exp_hash(struct auth_domain *clp, struct svc_export *exp)
956{
957 u32 fsid[2];
Jan Blunck54775492008-02-14 19:38:39 -0800958 struct inode *inode = exp->ex_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 dev_t dev = inode->i_sb->s_dev;
960
961 if (old_valid_dev(dev)) {
NeilBrownaf6a4e22007-02-14 00:33:12 -0800962 mk_fsid(FSID_DEV, fsid, dev, inode->i_ino, 0, NULL);
963 return exp_set_key(clp, FSID_DEV, fsid, exp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 }
NeilBrownaf6a4e22007-02-14 00:33:12 -0800965 mk_fsid(FSID_ENCODE_DEV, fsid, dev, inode->i_ino, 0, NULL);
966 return exp_set_key(clp, FSID_ENCODE_DEV, fsid, exp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967}
968
969static void exp_unhash(struct svc_export *exp)
970{
971 struct svc_expkey *ek;
Jan Blunck54775492008-02-14 19:38:39 -0800972 struct inode *inode = exp->ex_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
974 ek = exp_get_key(exp->ex_client, inode->i_sb->s_dev, inode->i_ino);
J. Bruce Fields2d3bb252007-07-17 04:04:40 -0700975 if (!IS_ERR(ek)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 ek->h.expiry_time = get_seconds()-1;
NeilBrownbaab9352006-03-27 01:15:09 -0800977 cache_put(&ek->h, &svc_expkey_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 }
979 svc_expkey_cache.nextcheck = get_seconds();
980}
981
982/*
983 * Export a file system.
984 */
985int
986exp_export(struct nfsctl_export *nxp)
987{
988 svc_client *clp;
989 struct svc_export *exp = NULL;
990 struct svc_export new;
991 struct svc_expkey *fsid_key = NULL;
Al Viroa63bb992008-08-02 01:03:36 -0400992 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 int err;
994
995 /* Consistency check */
996 err = -EINVAL;
997 if (!exp_verify_string(nxp->ex_path, NFS_MAXPATHLEN) ||
998 !exp_verify_string(nxp->ex_client, NFSCLNT_IDMAX))
999 goto out;
1000
1001 dprintk("exp_export called for %s:%s (%x/%ld fl %x).\n",
1002 nxp->ex_client, nxp->ex_path,
1003 (unsigned)nxp->ex_dev, (long)nxp->ex_ino,
1004 nxp->ex_flags);
1005
1006 /* Try to lock the export table for update */
1007 exp_writelock();
1008
1009 /* Look up client info */
1010 if (!(clp = auth_domain_find(nxp->ex_client)))
1011 goto out_unlock;
1012
1013
1014 /* Look up the dentry */
Al Viroa63bb992008-08-02 01:03:36 -04001015 err = kern_path(nxp->ex_path, 0, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 if (err)
Julia Lawall53e6d8d2008-07-25 22:08:09 +02001017 goto out_put_clp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 err = -EINVAL;
1019
Al Viroa63bb992008-08-02 01:03:36 -04001020 exp = exp_get_by_name(clp, path.mnt, path.dentry, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021
NeilBrownf9884432006-12-13 00:35:45 -08001022 memset(&new, 0, sizeof(new));
1023
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 /* must make sure there won't be an ex_fsid clash */
1025 if ((nxp->ex_flags & NFSEXP_FSID) &&
J. Bruce Fields2d3bb252007-07-17 04:04:40 -07001026 (!IS_ERR(fsid_key = exp_get_fsid_key(clp, nxp->ex_dev))) &&
Jan Bluncke83aece2008-02-14 19:38:41 -08001027 fsid_key->ek_path.mnt &&
Al Viroa63bb992008-08-02 01:03:36 -04001028 (fsid_key->ek_path.mnt != path.mnt ||
1029 fsid_key->ek_path.dentry != path.dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 goto finish;
1031
J. Bruce Fields2d3bb252007-07-17 04:04:40 -07001032 if (!IS_ERR(exp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 /* just a flags/id/fsid update */
1034
1035 exp_fsid_unhash(exp);
1036 exp->ex_flags = nxp->ex_flags;
1037 exp->ex_anon_uid = nxp->ex_anon_uid;
1038 exp->ex_anon_gid = nxp->ex_anon_gid;
1039 exp->ex_fsid = nxp->ex_dev;
1040
1041 err = exp_fsid_hash(clp, exp);
1042 goto finish;
1043 }
1044
Al Viroa63bb992008-08-02 01:03:36 -04001045 err = check_export(path.dentry->d_inode, nxp->ex_flags, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 if (err) goto finish;
1047
1048 err = -ENOMEM;
1049
1050 dprintk("nfsd: creating export entry %p for client %p\n", exp, clp);
1051
1052 new.h.expiry_time = NEVER;
1053 new.h.flags = 0;
Jan Blunck54775492008-02-14 19:38:39 -08001054 new.ex_pathname = kstrdup(nxp->ex_path, GFP_KERNEL);
1055 if (!new.ex_pathname)
NeilBrownf9884432006-12-13 00:35:45 -08001056 goto finish;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 new.ex_client = clp;
Al Viroa63bb992008-08-02 01:03:36 -04001058 new.ex_path = path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 new.ex_flags = nxp->ex_flags;
1060 new.ex_anon_uid = nxp->ex_anon_uid;
1061 new.ex_anon_gid = nxp->ex_anon_gid;
1062 new.ex_fsid = nxp->ex_dev;
1063
NeilBrown4f7774c2006-03-27 01:15:03 -08001064 exp = svc_export_lookup(&new);
1065 if (exp)
1066 exp = svc_export_update(&new, exp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067
NeilBrown4f7774c2006-03-27 01:15:03 -08001068 if (!exp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 goto finish;
1070
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 if (exp_hash(clp, exp) ||
1072 exp_fsid_hash(clp, exp)) {
1073 /* failed to create at least one index */
1074 exp_do_unexport(exp);
1075 cache_flush();
NeilBrownf9884432006-12-13 00:35:45 -08001076 } else
1077 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078finish:
Jan Blunck54775492008-02-14 19:38:39 -08001079 kfree(new.ex_pathname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 if (exp)
1081 exp_put(exp);
1082 if (fsid_key && !IS_ERR(fsid_key))
NeilBrownbaab9352006-03-27 01:15:09 -08001083 cache_put(&fsid_key->h, &svc_expkey_cache);
Al Viroa63bb992008-08-02 01:03:36 -04001084 path_put(&path);
Julia Lawall53e6d8d2008-07-25 22:08:09 +02001085out_put_clp:
1086 auth_domain_put(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087out_unlock:
1088 exp_writeunlock();
1089out:
1090 return err;
1091}
1092
1093/*
1094 * Unexport a file system. The export entry has already
1095 * been removed from the client's list of exported fs's.
1096 */
1097static void
1098exp_do_unexport(svc_export *unexp)
1099{
1100 unexp->h.expiry_time = get_seconds()-1;
1101 svc_export_cache.nextcheck = get_seconds();
1102 exp_unhash(unexp);
1103 exp_fsid_unhash(unexp);
1104}
1105
1106
1107/*
1108 * unexport syscall.
1109 */
1110int
1111exp_unexport(struct nfsctl_export *nxp)
1112{
1113 struct auth_domain *dom;
1114 svc_export *exp;
Al Viroa63bb992008-08-02 01:03:36 -04001115 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 int err;
1117
1118 /* Consistency check */
1119 if (!exp_verify_string(nxp->ex_path, NFS_MAXPATHLEN) ||
1120 !exp_verify_string(nxp->ex_client, NFSCLNT_IDMAX))
1121 return -EINVAL;
1122
1123 exp_writelock();
1124
1125 err = -EINVAL;
1126 dom = auth_domain_find(nxp->ex_client);
1127 if (!dom) {
1128 dprintk("nfsd: unexport couldn't find %s\n", nxp->ex_client);
1129 goto out_unlock;
1130 }
1131
Al Viroa63bb992008-08-02 01:03:36 -04001132 err = kern_path(nxp->ex_path, 0, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 if (err)
1134 goto out_domain;
1135
1136 err = -EINVAL;
Al Viroa63bb992008-08-02 01:03:36 -04001137 exp = exp_get_by_name(dom, path.mnt, path.dentry, NULL);
1138 path_put(&path);
J. Bruce Fields2d3bb252007-07-17 04:04:40 -07001139 if (IS_ERR(exp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 goto out_domain;
1141
1142 exp_do_unexport(exp);
1143 exp_put(exp);
1144 err = 0;
1145
1146out_domain:
1147 auth_domain_put(dom);
1148 cache_flush();
1149out_unlock:
1150 exp_writeunlock();
1151 return err;
1152}
1153
1154/*
1155 * Obtain the root fh on behalf of a client.
1156 * This could be done in user space, but I feel that it adds some safety
1157 * since its harder to fool a kernel module than a user space program.
1158 */
1159int
Al Viroa63bb992008-08-02 01:03:36 -04001160exp_rootfh(svc_client *clp, char *name, struct knfsd_fh *f, int maxsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161{
1162 struct svc_export *exp;
Al Viroa63bb992008-08-02 01:03:36 -04001163 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 struct inode *inode;
1165 struct svc_fh fh;
1166 int err;
1167
1168 err = -EPERM;
1169 /* NB: we probably ought to check that it's NUL-terminated */
Al Viroa63bb992008-08-02 01:03:36 -04001170 if (kern_path(name, 0, &path)) {
1171 printk("nfsd: exp_rootfh path not found %s", name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 return err;
1173 }
Al Viroa63bb992008-08-02 01:03:36 -04001174 inode = path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175
1176 dprintk("nfsd: exp_rootfh(%s [%p] %s:%s/%ld)\n",
Al Viroa63bb992008-08-02 01:03:36 -04001177 name, path.dentry, clp->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 inode->i_sb->s_id, inode->i_ino);
Al Viroa63bb992008-08-02 01:03:36 -04001179 exp = exp_parent(clp, path.mnt, path.dentry, NULL);
J.Bruce Fields4b41bd82006-12-13 00:35:21 -08001180 if (IS_ERR(exp)) {
1181 err = PTR_ERR(exp);
1182 goto out;
1183 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184
1185 /*
1186 * fh must be initialized before calling fh_compose
1187 */
1188 fh_init(&fh, maxsize);
Al Viroa63bb992008-08-02 01:03:36 -04001189 if (fh_compose(&fh, exp, path.dentry, NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 err = -EINVAL;
1191 else
1192 err = 0;
1193 memcpy(f, &fh.fh_handle, sizeof(struct knfsd_fh));
1194 fh_put(&fh);
1195 exp_put(exp);
1196out:
Al Viroa63bb992008-08-02 01:03:36 -04001197 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 return err;
1199}
1200
Adrian Bunkcce76f92007-10-16 01:27:52 -07001201static struct svc_export *exp_find(struct auth_domain *clp, int fsid_type,
1202 u32 *fsidv, struct cache_req *reqp)
NeilBrowneab7e2e2006-03-27 01:15:00 -08001203{
1204 struct svc_export *exp;
1205 struct svc_expkey *ek = exp_find_key(clp, fsid_type, fsidv, reqp);
J. Bruce Fields2d3bb252007-07-17 04:04:40 -07001206 if (IS_ERR(ek))
David Howellse231c2e2008-02-07 00:15:26 -08001207 return ERR_CAST(ek);
NeilBrowneab7e2e2006-03-27 01:15:00 -08001208
Jan Bluncke83aece2008-02-14 19:38:41 -08001209 exp = exp_get_by_name(clp, ek->ek_path.mnt, ek->ek_path.dentry, reqp);
NeilBrownbaab9352006-03-27 01:15:09 -08001210 cache_put(&ek->h, &svc_expkey_cache);
NeilBrowneab7e2e2006-03-27 01:15:00 -08001211
J. Bruce Fields2d3bb252007-07-17 04:04:40 -07001212 if (IS_ERR(exp))
David Howellse231c2e2008-02-07 00:15:26 -08001213 return ERR_CAST(exp);
NeilBrowneab7e2e2006-03-27 01:15:00 -08001214 return exp;
1215}
1216
Andy Adamson32c1eb02007-07-17 04:04:48 -07001217__be32 check_nfsd_access(struct svc_export *exp, struct svc_rqst *rqstp)
1218{
1219 struct exp_flavor_info *f;
1220 struct exp_flavor_info *end = exp->ex_flavors + exp->ex_nflavors;
1221
1222 /* legacy gss-only clients are always OK: */
1223 if (exp->ex_client == rqstp->rq_gssclient)
1224 return 0;
1225 /* ip-address based client; check sec= export option: */
1226 for (f = exp->ex_flavors; f < end; f++) {
1227 if (f->pseudoflavor == rqstp->rq_flavor)
1228 return 0;
1229 }
1230 /* defaults in absence of sec= options: */
1231 if (exp->ex_nflavors == 0) {
1232 if (rqstp->rq_flavor == RPC_AUTH_NULL ||
1233 rqstp->rq_flavor == RPC_AUTH_UNIX)
1234 return 0;
1235 }
1236 return nfserr_wrongsec;
1237}
1238
J. Bruce Fields0989a782007-07-17 04:04:44 -07001239/*
J. Bruce Fields2ea22092007-07-17 04:04:46 -07001240 * Uses rq_client and rq_gssclient to find an export; uses rq_client (an
1241 * auth_unix client) if it's available and has secinfo information;
1242 * otherwise, will try to use rq_gssclient.
1243 *
J. Bruce Fields0989a782007-07-17 04:04:44 -07001244 * Called from functions that handle requests; functions that do work on
1245 * behalf of mountd are passed a single client name to use, and should
1246 * use exp_get_by_name() or exp_find().
1247 */
1248struct svc_export *
1249rqst_exp_get_by_name(struct svc_rqst *rqstp, struct vfsmount *mnt,
1250 struct dentry *dentry)
1251{
J. Bruce Fields9a25b962007-07-19 01:49:18 -07001252 struct svc_export *gssexp, *exp = ERR_PTR(-ENOENT);
J. Bruce Fields3ab4d8b2007-07-17 04:04:46 -07001253
J. Bruce Fields2ea22092007-07-17 04:04:46 -07001254 if (rqstp->rq_client == NULL)
1255 goto gss;
1256
1257 /* First try the auth_unix client: */
1258 exp = exp_get_by_name(rqstp->rq_client, mnt, dentry,
1259 &rqstp->rq_chandle);
1260 if (PTR_ERR(exp) == -ENOENT)
1261 goto gss;
1262 if (IS_ERR(exp))
1263 return exp;
1264 /* If it has secinfo, assume there are no gss/... clients */
1265 if (exp->ex_nflavors > 0)
1266 return exp;
1267gss:
1268 /* Otherwise, try falling back on gss client */
1269 if (rqstp->rq_gssclient == NULL)
1270 return exp;
1271 gssexp = exp_get_by_name(rqstp->rq_gssclient, mnt, dentry,
1272 &rqstp->rq_chandle);
1273 if (PTR_ERR(gssexp) == -ENOENT)
1274 return exp;
J. Bruce Fields9a25b962007-07-19 01:49:18 -07001275 if (!IS_ERR(exp))
J. Bruce Fields2ea22092007-07-17 04:04:46 -07001276 exp_put(exp);
1277 return gssexp;
J. Bruce Fields0989a782007-07-17 04:04:44 -07001278}
1279
1280struct svc_export *
1281rqst_exp_find(struct svc_rqst *rqstp, int fsid_type, u32 *fsidv)
1282{
J. Bruce Fields9a25b962007-07-19 01:49:18 -07001283 struct svc_export *gssexp, *exp = ERR_PTR(-ENOENT);
J. Bruce Fields3ab4d8b2007-07-17 04:04:46 -07001284
J. Bruce Fields2ea22092007-07-17 04:04:46 -07001285 if (rqstp->rq_client == NULL)
1286 goto gss;
1287
1288 /* First try the auth_unix client: */
1289 exp = exp_find(rqstp->rq_client, fsid_type, fsidv, &rqstp->rq_chandle);
1290 if (PTR_ERR(exp) == -ENOENT)
1291 goto gss;
1292 if (IS_ERR(exp))
1293 return exp;
1294 /* If it has secinfo, assume there are no gss/... clients */
1295 if (exp->ex_nflavors > 0)
1296 return exp;
1297gss:
1298 /* Otherwise, try falling back on gss client */
1299 if (rqstp->rq_gssclient == NULL)
1300 return exp;
1301 gssexp = exp_find(rqstp->rq_gssclient, fsid_type, fsidv,
1302 &rqstp->rq_chandle);
1303 if (PTR_ERR(gssexp) == -ENOENT)
1304 return exp;
J. Bruce Fields9a25b962007-07-19 01:49:18 -07001305 if (!IS_ERR(exp))
J. Bruce Fields2ea22092007-07-17 04:04:46 -07001306 exp_put(exp);
1307 return gssexp;
J. Bruce Fields0989a782007-07-17 04:04:44 -07001308}
1309
1310struct svc_export *
1311rqst_exp_parent(struct svc_rqst *rqstp, struct vfsmount *mnt,
1312 struct dentry *dentry)
1313{
J. Bruce Fields2ea22092007-07-17 04:04:46 -07001314 struct svc_export *exp;
J. Bruce Fields3ab4d8b2007-07-17 04:04:46 -07001315
J. Bruce Fields2ea22092007-07-17 04:04:46 -07001316 dget(dentry);
1317 exp = rqst_exp_get_by_name(rqstp, mnt, dentry);
1318
1319 while (PTR_ERR(exp) == -ENOENT && !IS_ROOT(dentry)) {
1320 struct dentry *parent;
1321
1322 parent = dget_parent(dentry);
1323 dput(dentry);
1324 dentry = parent;
1325 exp = rqst_exp_get_by_name(rqstp, mnt, dentry);
1326 }
1327 dput(dentry);
1328 return exp;
J. Bruce Fields0989a782007-07-17 04:04:44 -07001329}
NeilBrowneab7e2e2006-03-27 01:15:00 -08001330
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331/*
1332 * Called when we need the filehandle for the root of the pseudofs,
1333 * for a given NFSv4 client. The root is defined to be the
1334 * export point with fsid==0
1335 */
Al Viroc7afef12006-10-19 23:29:02 -07001336__be32
J. Bruce Fieldsdf547ef2007-07-17 04:04:43 -07001337exp_pseudoroot(struct svc_rqst *rqstp, struct svc_fh *fhp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338{
NeilBrowneab7e2e2006-03-27 01:15:00 -08001339 struct svc_export *exp;
Al Viroc7afef12006-10-19 23:29:02 -07001340 __be32 rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 u32 fsidv[2];
1342
NeilBrownaf6a4e22007-02-14 00:33:12 -08001343 mk_fsid(FSID_NUM, fsidv, 0, 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344
J. Bruce Fields0989a782007-07-17 04:04:44 -07001345 exp = rqst_exp_find(rqstp, FSID_NUM, fsidv);
J.Bruce Fields68993202006-12-13 00:35:23 -08001346 if (IS_ERR(exp))
1347 return nfserrno(PTR_ERR(exp));
Jan Blunck54775492008-02-14 19:38:39 -08001348 rv = fh_compose(fhp, exp, exp->ex_path.dentry, NULL);
Andy Adamson32c1eb02007-07-17 04:04:48 -07001349 if (rv)
1350 goto out;
1351 rv = check_nfsd_access(exp, rqstp);
1352out:
J.Bruce Fieldsd0ebd9c2006-10-04 02:16:10 -07001353 exp_put(exp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 return rv;
1355}
1356
1357/* Iterator */
1358
1359static void *e_start(struct seq_file *m, loff_t *pos)
Josh Triplett896440d2006-10-02 02:17:50 -07001360 __acquires(svc_export_cache.hash_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361{
1362 loff_t n = *pos;
1363 unsigned hash, export;
1364 struct cache_head *ch;
1365
1366 exp_readlock();
1367 read_lock(&svc_export_cache.hash_lock);
1368 if (!n--)
Greg Banksbc6f02e2006-10-02 02:17:49 -07001369 return SEQ_START_TOKEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 hash = n >> 32;
1371 export = n & ((1LL<<32) - 1);
1372
1373
1374 for (ch=export_table[hash]; ch; ch=ch->next)
1375 if (!export--)
1376 return ch;
1377 n &= ~((1LL<<32) - 1);
1378 do {
1379 hash++;
1380 n += 1LL<<32;
1381 } while(hash < EXPORT_HASHMAX && export_table[hash]==NULL);
1382 if (hash >= EXPORT_HASHMAX)
1383 return NULL;
1384 *pos = n+1;
1385 return export_table[hash];
1386}
1387
1388static void *e_next(struct seq_file *m, void *p, loff_t *pos)
1389{
1390 struct cache_head *ch = p;
1391 int hash = (*pos >> 32);
1392
Greg Banksbc6f02e2006-10-02 02:17:49 -07001393 if (p == SEQ_START_TOKEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 hash = 0;
1395 else if (ch->next == NULL) {
1396 hash++;
1397 *pos += 1LL<<32;
1398 } else {
1399 ++*pos;
1400 return ch->next;
1401 }
1402 *pos &= ~((1LL<<32) - 1);
1403 while (hash < EXPORT_HASHMAX && export_table[hash] == NULL) {
1404 hash++;
1405 *pos += 1LL<<32;
1406 }
1407 if (hash >= EXPORT_HASHMAX)
1408 return NULL;
1409 ++*pos;
1410 return export_table[hash];
1411}
1412
1413static void e_stop(struct seq_file *m, void *p)
Josh Triplett896440d2006-10-02 02:17:50 -07001414 __releases(svc_export_cache.hash_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415{
1416 read_unlock(&svc_export_cache.hash_lock);
1417 exp_readunlock();
1418}
1419
1420static struct flags {
1421 int flag;
1422 char *name[2];
1423} expflags[] = {
1424 { NFSEXP_READONLY, {"ro", "rw"}},
1425 { NFSEXP_INSECURE_PORT, {"insecure", ""}},
1426 { NFSEXP_ROOTSQUASH, {"root_squash", "no_root_squash"}},
1427 { NFSEXP_ALLSQUASH, {"all_squash", ""}},
1428 { NFSEXP_ASYNC, {"async", "sync"}},
1429 { NFSEXP_GATHERED_WRITES, {"wdelay", "no_wdelay"}},
1430 { NFSEXP_NOHIDE, {"nohide", ""}},
1431 { NFSEXP_CROSSMOUNT, {"crossmnt", ""}},
1432 { NFSEXP_NOSUBTREECHECK, {"no_subtree_check", ""}},
1433 { NFSEXP_NOAUTHNLM, {"insecure_locks", ""}},
1434#ifdef MSNFS
1435 { NFSEXP_MSNFS, {"msnfs", ""}},
1436#endif
1437 { 0, {"", ""}}
1438};
1439
J. Bruce Fieldsac34cdb2007-07-17 04:04:49 -07001440static void show_expflags(struct seq_file *m, int flags, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 struct flags *flg;
J. Bruce Fieldsac34cdb2007-07-17 04:04:49 -07001443 int state, first = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444
1445 for (flg = expflags; flg->flag; flg++) {
J. Bruce Fieldsac34cdb2007-07-17 04:04:49 -07001446 if (flg->flag & ~mask)
1447 continue;
1448 state = (flg->flag & flags) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 if (*flg->name[state])
1450 seq_printf(m, "%s%s", first++?",":"", flg->name[state]);
1451 }
J. Bruce Fieldsac34cdb2007-07-17 04:04:49 -07001452}
1453
J. Bruce Fields91fe39d2007-07-17 04:04:49 -07001454static void show_secinfo_flags(struct seq_file *m, int flags)
1455{
1456 seq_printf(m, ",");
1457 show_expflags(m, flags, NFSEXP_SECINFO_FLAGS);
1458}
1459
1460static void show_secinfo(struct seq_file *m, struct svc_export *exp)
1461{
1462 struct exp_flavor_info *f;
1463 struct exp_flavor_info *end = exp->ex_flavors + exp->ex_nflavors;
1464 int lastflags = 0, first = 0;
1465
1466 if (exp->ex_nflavors == 0)
1467 return;
1468 for (f = exp->ex_flavors; f < end; f++) {
1469 if (first || f->flags != lastflags) {
1470 if (!first)
1471 show_secinfo_flags(m, lastflags);
1472 seq_printf(m, ",sec=%d", f->pseudoflavor);
1473 lastflags = f->flags;
1474 } else {
1475 seq_printf(m, ":%d", f->pseudoflavor);
1476 }
1477 }
1478 show_secinfo_flags(m, lastflags);
1479}
1480
J. Bruce Fieldsac34cdb2007-07-17 04:04:49 -07001481static void exp_flags(struct seq_file *m, int flag, int fsid,
1482 uid_t anonu, uid_t anong, struct nfsd4_fs_locations *fsloc)
1483{
1484 show_expflags(m, flag, NFSEXP_ALLFLAGS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 if (flag & NFSEXP_FSID)
J. Bruce Fieldsac34cdb2007-07-17 04:04:49 -07001486 seq_printf(m, ",fsid=%d", fsid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 if (anonu != (uid_t)-2 && anonu != (0x10000-2))
J. Bruce Fields3e635162007-07-21 04:37:30 -07001488 seq_printf(m, ",anonuid=%u", anonu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 if (anong != (gid_t)-2 && anong != (0x10000-2))
J. Bruce Fields3e635162007-07-21 04:37:30 -07001490 seq_printf(m, ",anongid=%u", anong);
Manoj Naik933469192006-10-04 02:16:18 -07001491 if (fsloc && fsloc->locations_count > 0) {
1492 char *loctype = (fsloc->migrated) ? "refer" : "replicas";
1493 int i;
1494
J. Bruce Fieldsac34cdb2007-07-17 04:04:49 -07001495 seq_printf(m, ",%s=", loctype);
Manoj Naik933469192006-10-04 02:16:18 -07001496 seq_escape(m, fsloc->locations[0].path, ",;@ \t\n\\");
1497 seq_putc(m, '@');
1498 seq_escape(m, fsloc->locations[0].hosts, ",;@ \t\n\\");
1499 for (i = 1; i < fsloc->locations_count; i++) {
1500 seq_putc(m, ';');
1501 seq_escape(m, fsloc->locations[i].path, ",;@ \t\n\\");
1502 seq_putc(m, '@');
1503 seq_escape(m, fsloc->locations[i].hosts, ",;@ \t\n\\");
1504 }
1505 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506}
1507
1508static int e_show(struct seq_file *m, void *p)
1509{
1510 struct cache_head *cp = p;
1511 struct svc_export *exp = container_of(cp, struct svc_export, h);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512
Greg Banksbc6f02e2006-10-02 02:17:49 -07001513 if (p == SEQ_START_TOKEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 seq_puts(m, "# Version 1.1\n");
1515 seq_puts(m, "# Path Client(Flags) # IPs\n");
1516 return 0;
1517 }
1518
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 cache_get(&exp->h);
1520 if (cache_check(&svc_export_cache, &exp->h, NULL))
1521 return 0;
NeilBrownbaab9352006-03-27 01:15:09 -08001522 cache_put(&exp->h, &svc_export_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 return svc_export_show(m, &svc_export_cache, cp);
1524}
1525
1526struct seq_operations nfs_exports_op = {
1527 .start = e_start,
1528 .next = e_next,
1529 .stop = e_stop,
1530 .show = e_show,
1531};
1532
1533/*
1534 * Add or modify a client.
1535 * Change requests may involve the list of host addresses. The list of
1536 * exports and possibly existing uid maps are left untouched.
1537 */
1538int
1539exp_addclient(struct nfsctl_client *ncp)
1540{
1541 struct auth_domain *dom;
1542 int i, err;
Aurélien Charbonf15364b2008-01-18 15:50:56 +01001543 struct in6_addr addr6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
1545 /* First, consistency check. */
1546 err = -EINVAL;
1547 if (! exp_verify_string(ncp->cl_ident, NFSCLNT_IDMAX))
1548 goto out;
1549 if (ncp->cl_naddr > NFSCLNT_ADDRMAX)
1550 goto out;
1551
1552 /* Lock the hashtable */
1553 exp_writelock();
1554
1555 dom = unix_domain_find(ncp->cl_ident);
1556
1557 err = -ENOMEM;
1558 if (!dom)
1559 goto out_unlock;
1560
1561 /* Insert client into hashtable. */
Aurélien Charbonf15364b2008-01-18 15:50:56 +01001562 for (i = 0; i < ncp->cl_naddr; i++) {
1563 ipv6_addr_set_v4mapped(ncp->cl_addrlist[i].s_addr, &addr6);
1564 auth_unix_add_addr(&addr6, dom);
1565 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 auth_unix_forget_old(dom);
1567 auth_domain_put(dom);
1568
1569 err = 0;
1570
1571out_unlock:
1572 exp_writeunlock();
1573out:
1574 return err;
1575}
1576
1577/*
1578 * Delete a client given an identifier.
1579 */
1580int
1581exp_delclient(struct nfsctl_client *ncp)
1582{
1583 int err;
1584 struct auth_domain *dom;
1585
1586 err = -EINVAL;
1587 if (!exp_verify_string(ncp->cl_ident, NFSCLNT_IDMAX))
1588 goto out;
1589
1590 /* Lock the hashtable */
1591 exp_writelock();
1592
1593 dom = auth_domain_find(ncp->cl_ident);
1594 /* just make sure that no addresses work
1595 * and that it will expire soon
1596 */
1597 if (dom) {
1598 err = auth_unix_forget_old(dom);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 auth_domain_put(dom);
1600 }
1601
1602 exp_writeunlock();
1603out:
1604 return err;
1605}
1606
1607/*
1608 * Verify that string is non-empty and does not exceed max length.
1609 */
1610static int
1611exp_verify_string(char *cp, int max)
1612{
1613 int i;
1614
1615 for (i = 0; i < max; i++)
1616 if (!cp[i])
1617 return i;
1618 cp[i] = 0;
1619 printk(KERN_NOTICE "nfsd: couldn't validate string %s\n", cp);
1620 return 0;
1621}
1622
1623/*
1624 * Initialize the exports module.
1625 */
J. Bruce Fieldsdbf847e2007-11-08 17:20:34 -05001626int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627nfsd_export_init(void)
1628{
J. Bruce Fieldsdbf847e2007-11-08 17:20:34 -05001629 int rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 dprintk("nfsd: initializing export module.\n");
1631
J. Bruce Fieldsdbf847e2007-11-08 17:20:34 -05001632 rv = cache_register(&svc_export_cache);
1633 if (rv)
1634 return rv;
1635 rv = cache_register(&svc_expkey_cache);
1636 if (rv)
1637 cache_unregister(&svc_export_cache);
1638 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639
1640}
1641
1642/*
1643 * Flush exports table - called when last nfsd thread is killed
1644 */
1645void
1646nfsd_export_flush(void)
1647{
1648 exp_writelock();
1649 cache_purge(&svc_expkey_cache);
1650 cache_purge(&svc_export_cache);
1651 exp_writeunlock();
1652}
1653
1654/*
1655 * Shutdown the exports module.
1656 */
1657void
1658nfsd_export_shutdown(void)
1659{
1660
1661 dprintk("nfsd: shutting down export module.\n");
1662
1663 exp_writelock();
1664
J. Bruce Fieldsdf95a9d2007-11-08 16:09:59 -05001665 cache_unregister(&svc_expkey_cache);
1666 cache_unregister(&svc_export_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 svcauth_unix_purge();
1668
1669 exp_writeunlock();
1670 dprintk("nfsd: export shutdown complete.\n");
1671}