blob: d4accdcb53a2563168523c504563ef2e09e5f240 [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>
36
37#define NFSDDBG_FACILITY NFSDDBG_EXPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39typedef struct auth_domain svc_client;
40typedef struct svc_export svc_export;
41
42static void exp_do_unexport(svc_export *unexp);
43static int exp_verify_string(char *cp, int max);
44
45/*
46 * We have two caches.
47 * One maps client+vfsmnt+dentry to export options - the export map
48 * The other maps client+filehandle-fragment to export options. - the expkey map
49 *
50 * The export options are actually stored in the first map, and the
51 * second map contains a reference to the entry in the first map.
52 */
53
54#define EXPKEY_HASHBITS 8
55#define EXPKEY_HASHMAX (1 << EXPKEY_HASHBITS)
56#define EXPKEY_HASHMASK (EXPKEY_HASHMAX -1)
57static struct cache_head *expkey_table[EXPKEY_HASHMAX];
58
Adrian Bunk74cae612006-03-27 01:15:10 -080059static void expkey_put(struct kref *ref)
Linus Torvalds1da177e2005-04-16 15:20:36 -070060{
NeilBrownbaab9352006-03-27 01:15:09 -080061 struct svc_expkey *key = container_of(ref, struct svc_expkey, h.ref);
62
63 if (test_bit(CACHE_VALID, &key->h.flags) &&
64 !test_bit(CACHE_NEGATIVE, &key->h.flags)) {
65 dput(key->ek_dentry);
66 mntput(key->ek_mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 }
NeilBrownbaab9352006-03-27 01:15:09 -080068 auth_domain_put(key->ek_client);
69 kfree(key);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070}
71
72static void expkey_request(struct cache_detail *cd,
73 struct cache_head *h,
74 char **bpp, int *blen)
75{
76 /* client fsidtype \xfsid */
77 struct svc_expkey *ek = container_of(h, struct svc_expkey, h);
78 char type[5];
79
80 qword_add(bpp, blen, ek->ek_client->name);
81 snprintf(type, 5, "%d", ek->ek_fsidtype);
82 qword_add(bpp, blen, type);
83 qword_addhex(bpp, blen, (char*)ek->ek_fsid, key_len(ek->ek_fsidtype));
84 (*bpp)[-1] = '\n';
85}
86
NeilBrown8d270f7f2006-03-27 01:15:04 -080087static struct svc_expkey *svc_expkey_update(struct svc_expkey *new, struct svc_expkey *old);
88static struct svc_expkey *svc_expkey_lookup(struct svc_expkey *);
Adrian Bunk74cae612006-03-27 01:15:10 -080089static struct cache_detail svc_expkey_cache;
90
Linus Torvalds1da177e2005-04-16 15:20:36 -070091static int expkey_parse(struct cache_detail *cd, char *mesg, int mlen)
92{
93 /* client fsidtype fsid [path] */
94 char *buf;
95 int len;
96 struct auth_domain *dom = NULL;
97 int err;
98 int fsidtype;
99 char *ep;
100 struct svc_expkey key;
NeilBrown8d270f7f2006-03-27 01:15:04 -0800101 struct svc_expkey *ek;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
103 if (mesg[mlen-1] != '\n')
104 return -EINVAL;
105 mesg[mlen-1] = 0;
106
107 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
108 err = -ENOMEM;
109 if (!buf) goto out;
110
111 err = -EINVAL;
112 if ((len=qword_get(&mesg, buf, PAGE_SIZE)) <= 0)
113 goto out;
114
115 err = -ENOENT;
116 dom = auth_domain_find(buf);
117 if (!dom)
118 goto out;
119 dprintk("found domain %s\n", buf);
120
121 err = -EINVAL;
122 if ((len=qword_get(&mesg, buf, PAGE_SIZE)) <= 0)
123 goto out;
124 fsidtype = simple_strtoul(buf, &ep, 10);
125 if (*ep)
126 goto out;
127 dprintk("found fsidtype %d\n", fsidtype);
Frank Filz4bdff8c2006-06-30 01:56:11 -0700128 if (key_len(fsidtype)==0) /* invalid type */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 goto out;
130 if ((len=qword_get(&mesg, buf, PAGE_SIZE)) <= 0)
131 goto out;
132 dprintk("found fsid length %d\n", len);
133 if (len != key_len(fsidtype))
134 goto out;
135
136 /* OK, we seem to have a valid key */
137 key.h.flags = 0;
138 key.h.expiry_time = get_expiry(&mesg);
139 if (key.h.expiry_time == 0)
140 goto out;
141
142 key.ek_client = dom;
143 key.ek_fsidtype = fsidtype;
144 memcpy(key.ek_fsid, buf, len);
145
NeilBrown8d270f7f2006-03-27 01:15:04 -0800146 ek = svc_expkey_lookup(&key);
147 err = -ENOMEM;
148 if (!ek)
149 goto out;
150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 /* now we want a pathname, or empty meaning NEGATIVE */
NeilBrown8d270f7f2006-03-27 01:15:04 -0800152 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 if ((len=qword_get(&mesg, buf, PAGE_SIZE)) < 0)
154 goto out;
155 dprintk("Path seems to be <%s>\n", buf);
156 err = 0;
157 if (len == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 set_bit(CACHE_NEGATIVE, &key.h.flags);
NeilBrown8d270f7f2006-03-27 01:15:04 -0800159 ek = svc_expkey_update(&key, ek);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 if (ek)
NeilBrownbaab9352006-03-27 01:15:09 -0800161 cache_put(&ek->h, &svc_expkey_cache);
NeilBrown8d270f7f2006-03-27 01:15:04 -0800162 else err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 } else {
164 struct nameidata nd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 err = path_lookup(buf, 0, &nd);
166 if (err)
167 goto out;
168
169 dprintk("Found the path %s\n", buf);
NeilBrowneab7e2e2006-03-27 01:15:00 -0800170 key.ek_mnt = nd.mnt;
171 key.ek_dentry = nd.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
NeilBrown8d270f7f2006-03-27 01:15:04 -0800173 ek = svc_expkey_update(&key, ek);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 if (ek)
NeilBrownbaab9352006-03-27 01:15:09 -0800175 cache_put(&ek->h, &svc_expkey_cache);
NeilBrown8d270f7f2006-03-27 01:15:04 -0800176 else
177 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 path_release(&nd);
179 }
180 cache_flush();
181 out:
182 if (dom)
183 auth_domain_put(dom);
Jesper Juhlf99d49a2005-11-07 01:01:34 -0800184 kfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 return err;
186}
187
188static int expkey_show(struct seq_file *m,
189 struct cache_detail *cd,
190 struct cache_head *h)
191{
192 struct svc_expkey *ek ;
NeilBrownaf6a4e22007-02-14 00:33:12 -0800193 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
195 if (h ==NULL) {
196 seq_puts(m, "#domain fsidtype fsid [path]\n");
197 return 0;
198 }
199 ek = container_of(h, struct svc_expkey, h);
NeilBrownaf6a4e22007-02-14 00:33:12 -0800200 seq_printf(m, "%s %d 0x", ek->ek_client->name,
201 ek->ek_fsidtype);
202 for (i=0; i < key_len(ek->ek_fsidtype)/4; i++)
203 seq_printf(m, "%08x", ek->ek_fsid[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 if (test_bit(CACHE_VALID, &h->flags) &&
205 !test_bit(CACHE_NEGATIVE, &h->flags)) {
206 seq_printf(m, " ");
NeilBrowneab7e2e2006-03-27 01:15:00 -0800207 seq_path(m, ek->ek_mnt, ek->ek_dentry, "\\ \t\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 }
209 seq_printf(m, "\n");
210 return 0;
211}
NeilBrown8d270f7f2006-03-27 01:15:04 -0800212
213static inline int expkey_match (struct cache_head *a, struct cache_head *b)
214{
215 struct svc_expkey *orig = container_of(a, struct svc_expkey, h);
216 struct svc_expkey *new = container_of(b, struct svc_expkey, h);
217
218 if (orig->ek_fsidtype != new->ek_fsidtype ||
219 orig->ek_client != new->ek_client ||
220 memcmp(orig->ek_fsid, new->ek_fsid, key_len(orig->ek_fsidtype)) != 0)
221 return 0;
222 return 1;
223}
224
225static inline void expkey_init(struct cache_head *cnew,
226 struct cache_head *citem)
227{
228 struct svc_expkey *new = container_of(cnew, struct svc_expkey, h);
229 struct svc_expkey *item = container_of(citem, struct svc_expkey, h);
230
231 kref_get(&item->ek_client->ref);
232 new->ek_client = item->ek_client;
233 new->ek_fsidtype = item->ek_fsidtype;
NeilBrownaf6a4e22007-02-14 00:33:12 -0800234
235 memcpy(new->ek_fsid, item->ek_fsid, sizeof(new->ek_fsid));
NeilBrown8d270f7f2006-03-27 01:15:04 -0800236}
237
238static inline void expkey_update(struct cache_head *cnew,
239 struct cache_head *citem)
240{
241 struct svc_expkey *new = container_of(cnew, struct svc_expkey, h);
242 struct svc_expkey *item = container_of(citem, struct svc_expkey, h);
243
244 new->ek_mnt = mntget(item->ek_mnt);
245 new->ek_dentry = dget(item->ek_dentry);
246}
247
248static struct cache_head *expkey_alloc(void)
249{
250 struct svc_expkey *i = kmalloc(sizeof(*i), GFP_KERNEL);
251 if (i)
252 return &i->h;
253 else
254 return NULL;
255}
256
Adrian Bunk74cae612006-03-27 01:15:10 -0800257static struct cache_detail svc_expkey_cache = {
Bruce Allanf35279d2005-09-06 15:17:08 -0700258 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 .hash_size = EXPKEY_HASHMAX,
260 .hash_table = expkey_table,
261 .name = "nfsd.fh",
262 .cache_put = expkey_put,
263 .cache_request = expkey_request,
264 .cache_parse = expkey_parse,
265 .cache_show = expkey_show,
NeilBrown8d270f7f2006-03-27 01:15:04 -0800266 .match = expkey_match,
267 .init = expkey_init,
268 .update = expkey_update,
269 .alloc = expkey_alloc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270};
271
NeilBrown8d270f7f2006-03-27 01:15:04 -0800272static struct svc_expkey *
273svc_expkey_lookup(struct svc_expkey *item)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274{
NeilBrown8d270f7f2006-03-27 01:15:04 -0800275 struct cache_head *ch;
276 int hash = item->ek_fsidtype;
277 char * cp = (char*)item->ek_fsid;
278 int len = key_len(item->ek_fsidtype);
279
280 hash ^= hash_mem(cp, len, EXPKEY_HASHBITS);
281 hash ^= hash_ptr(item->ek_client, EXPKEY_HASHBITS);
282 hash &= EXPKEY_HASHMASK;
283
284 ch = sunrpc_cache_lookup(&svc_expkey_cache, &item->h,
285 hash);
286 if (ch)
287 return container_of(ch, struct svc_expkey, h);
288 else
289 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290}
291
NeilBrown8d270f7f2006-03-27 01:15:04 -0800292static struct svc_expkey *
293svc_expkey_update(struct svc_expkey *new, struct svc_expkey *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294{
NeilBrown8d270f7f2006-03-27 01:15:04 -0800295 struct cache_head *ch;
296 int hash = new->ek_fsidtype;
297 char * cp = (char*)new->ek_fsid;
298 int len = key_len(new->ek_fsidtype);
299
300 hash ^= hash_mem(cp, len, EXPKEY_HASHBITS);
301 hash ^= hash_ptr(new->ek_client, EXPKEY_HASHBITS);
302 hash &= EXPKEY_HASHMASK;
303
304 ch = sunrpc_cache_update(&svc_expkey_cache, &new->h,
305 &old->h, hash);
306 if (ch)
307 return container_of(ch, struct svc_expkey, h);
308 else
309 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310}
311
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
313#define EXPORT_HASHBITS 8
314#define EXPORT_HASHMAX (1<< EXPORT_HASHBITS)
315#define EXPORT_HASHMASK (EXPORT_HASHMAX -1)
316
317static struct cache_head *export_table[EXPORT_HASHMAX];
318
Manoj Naik933469192006-10-04 02:16:18 -0700319static void nfsd4_fslocs_free(struct nfsd4_fs_locations *fsloc)
320{
321 int i;
322
323 for (i = 0; i < fsloc->locations_count; i++) {
324 kfree(fsloc->locations[i].path);
325 kfree(fsloc->locations[i].hosts);
326 }
327 kfree(fsloc->locations);
328}
329
NeilBrownbaab9352006-03-27 01:15:09 -0800330static void svc_export_put(struct kref *ref)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331{
NeilBrownbaab9352006-03-27 01:15:09 -0800332 struct svc_export *exp = container_of(ref, struct svc_export, h.ref);
333 dput(exp->ex_dentry);
334 mntput(exp->ex_mnt);
335 auth_domain_put(exp->ex_client);
J.Bruce Fieldsb009a872006-10-04 02:16:17 -0700336 kfree(exp->ex_path);
Manoj Naik933469192006-10-04 02:16:18 -0700337 nfsd4_fslocs_free(&exp->ex_fslocs);
NeilBrownbaab9352006-03-27 01:15:09 -0800338 kfree(exp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339}
340
341static void svc_export_request(struct cache_detail *cd,
342 struct cache_head *h,
343 char **bpp, int *blen)
344{
345 /* client path */
346 struct svc_export *exp = container_of(h, struct svc_export, h);
347 char *pth;
348
349 qword_add(bpp, blen, exp->ex_client->name);
350 pth = d_path(exp->ex_dentry, exp->ex_mnt, *bpp, *blen);
351 if (IS_ERR(pth)) {
352 /* is this correct? */
353 (*bpp)[0] = '\n';
354 return;
355 }
356 qword_add(bpp, blen, pth);
357 (*bpp)[-1] = '\n';
358}
359
Adrian Bunk74cae612006-03-27 01:15:10 -0800360static struct svc_export *svc_export_update(struct svc_export *new,
361 struct svc_export *old);
NeilBrown4f7774c2006-03-27 01:15:03 -0800362static struct svc_export *svc_export_lookup(struct svc_export *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
NeilBrownaf6a4e22007-02-14 00:33:12 -0800364static int check_export(struct inode *inode, int flags, unsigned char *uuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365{
366
367 /* We currently export only dirs and regular files.
368 * This is what umountd does.
369 */
370 if (!S_ISDIR(inode->i_mode) &&
371 !S_ISREG(inode->i_mode))
372 return -ENOTDIR;
373
374 /* There are two requirements on a filesystem to be exportable.
375 * 1: We must be able to identify the filesystem from a number.
376 * either a device number (so FS_REQUIRES_DEV needed)
NeilBrownaf6a4e22007-02-14 00:33:12 -0800377 * or an FSID number (so NFSEXP_FSID or ->uuid is needed).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 * 2: We must be able to find an inode from a filehandle.
379 * This means that s_export_op must be set.
380 */
381 if (!(inode->i_sb->s_type->fs_flags & FS_REQUIRES_DEV) &&
NeilBrownaf6a4e22007-02-14 00:33:12 -0800382 !(flags & NFSEXP_FSID) &&
383 uuid == NULL) {
Greg Banks3e3b4802006-10-02 02:17:41 -0700384 dprintk("exp_export: export of non-dev fs without fsid\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 return -EINVAL;
386 }
387 if (!inode->i_sb->s_export_op) {
388 dprintk("exp_export: export of invalid fs type.\n");
389 return -EINVAL;
390 }
391
392 /* Ok, we can export it */;
393 if (!inode->i_sb->s_export_op->find_exported_dentry)
394 inode->i_sb->s_export_op->find_exported_dentry =
395 find_exported_dentry;
396 return 0;
397
398}
399
Manoj Naik933469192006-10-04 02:16:18 -0700400#ifdef CONFIG_NFSD_V4
401
402static int
403fsloc_parse(char **mesg, char *buf, struct nfsd4_fs_locations *fsloc)
404{
405 int len;
406 int migrated, i, err;
407
Manoj Naik933469192006-10-04 02:16:18 -0700408 /* listsize */
409 err = get_int(mesg, &fsloc->locations_count);
410 if (err)
411 return err;
412 if (fsloc->locations_count > MAX_FS_LOCATIONS)
413 return -EINVAL;
414 if (fsloc->locations_count == 0)
415 return 0;
416
417 fsloc->locations = kzalloc(fsloc->locations_count
418 * sizeof(struct nfsd4_fs_location), GFP_KERNEL);
419 if (!fsloc->locations)
420 return -ENOMEM;
421 for (i=0; i < fsloc->locations_count; i++) {
422 /* colon separated host list */
423 err = -EINVAL;
424 len = qword_get(mesg, buf, PAGE_SIZE);
425 if (len <= 0)
426 goto out_free_all;
427 err = -ENOMEM;
428 fsloc->locations[i].hosts = kstrdup(buf, GFP_KERNEL);
429 if (!fsloc->locations[i].hosts)
430 goto out_free_all;
431 err = -EINVAL;
432 /* slash separated path component list */
433 len = qword_get(mesg, buf, PAGE_SIZE);
434 if (len <= 0)
435 goto out_free_all;
436 err = -ENOMEM;
437 fsloc->locations[i].path = kstrdup(buf, GFP_KERNEL);
438 if (!fsloc->locations[i].path)
439 goto out_free_all;
440 }
441 /* migrated */
442 err = get_int(mesg, &migrated);
443 if (err)
444 goto out_free_all;
445 err = -EINVAL;
446 if (migrated < 0 || migrated > 1)
447 goto out_free_all;
448 fsloc->migrated = migrated;
449 return 0;
450out_free_all:
451 nfsd4_fslocs_free(fsloc);
452 return err;
453}
454
455#else /* CONFIG_NFSD_V4 */
456static inline int fsloc_parse(char **mesg, char *buf, struct nfsd4_fs_locations *fsloc) { return 0; }
457#endif
458
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459static int svc_export_parse(struct cache_detail *cd, char *mesg, int mlen)
460{
461 /* client path expiry [flags anonuid anongid fsid] */
462 char *buf;
463 int len;
464 int err;
465 struct auth_domain *dom = NULL;
466 struct nameidata nd;
467 struct svc_export exp, *expp;
468 int an_int;
469
470 nd.dentry = NULL;
J.Bruce Fieldsb009a872006-10-04 02:16:17 -0700471 exp.ex_path = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
NeilBrown402acd22007-05-09 02:34:52 -0700473 /* fs locations */
474 exp.ex_fslocs.locations = NULL;
475 exp.ex_fslocs.locations_count = 0;
476 exp.ex_fslocs.migrated = 0;
477
478 exp.ex_uuid = NULL;
479
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 if (mesg[mlen-1] != '\n')
481 return -EINVAL;
482 mesg[mlen-1] = 0;
483
484 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
485 err = -ENOMEM;
486 if (!buf) goto out;
487
488 /* client */
489 len = qword_get(&mesg, buf, PAGE_SIZE);
490 err = -EINVAL;
491 if (len <= 0) goto out;
492
493 err = -ENOENT;
494 dom = auth_domain_find(buf);
495 if (!dom)
496 goto out;
497
498 /* path */
499 err = -EINVAL;
500 if ((len=qword_get(&mesg, buf, PAGE_SIZE)) <= 0)
501 goto out;
502 err = path_lookup(buf, 0, &nd);
NeilBrowncd156542006-04-10 22:55:27 -0700503 if (err) goto out_no_path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
505 exp.h.flags = 0;
506 exp.ex_client = dom;
507 exp.ex_mnt = nd.mnt;
508 exp.ex_dentry = nd.dentry;
J.Bruce Fieldsb009a872006-10-04 02:16:17 -0700509 exp.ex_path = kstrdup(buf, GFP_KERNEL);
510 err = -ENOMEM;
511 if (!exp.ex_path)
512 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
514 /* expiry */
515 err = -EINVAL;
516 exp.h.expiry_time = get_expiry(&mesg);
517 if (exp.h.expiry_time == 0)
518 goto out;
519
520 /* flags */
521 err = get_int(&mesg, &an_int);
522 if (err == -ENOENT)
523 set_bit(CACHE_NEGATIVE, &exp.h.flags);
524 else {
525 if (err || an_int < 0) goto out;
526 exp.ex_flags= an_int;
527
528 /* anon uid */
529 err = get_int(&mesg, &an_int);
530 if (err) goto out;
531 exp.ex_anon_uid= an_int;
532
533 /* anon gid */
534 err = get_int(&mesg, &an_int);
535 if (err) goto out;
536 exp.ex_anon_gid= an_int;
537
538 /* fsid */
539 err = get_int(&mesg, &an_int);
540 if (err) goto out;
541 exp.ex_fsid = an_int;
542
NeilBrownaf6a4e22007-02-14 00:33:12 -0800543 while ((len = qword_get(&mesg, buf, PAGE_SIZE)) > 0) {
544 if (strcmp(buf, "fsloc") == 0)
545 err = fsloc_parse(&mesg, buf, &exp.ex_fslocs);
546 else if (strcmp(buf, "uuid") == 0) {
547 /* expect a 16 byte uuid encoded as \xXXXX... */
548 len = qword_get(&mesg, buf, PAGE_SIZE);
549 if (len != 16)
550 err = -EINVAL;
551 else {
552 exp.ex_uuid =
553 kmemdup(buf, 16, GFP_KERNEL);
554 if (exp.ex_uuid == NULL)
555 err = -ENOMEM;
556 }
557 } else
558 /* quietly ignore unknown words and anything
559 * following. Newer user-space can try to set
560 * new values, then see what the result was.
561 */
562 break;
563 if (err)
564 goto out;
565 }
Manoj Naik933469192006-10-04 02:16:18 -0700566
NeilBrownaf6a4e22007-02-14 00:33:12 -0800567 err = check_export(nd.dentry->d_inode, exp.ex_flags,
568 exp.ex_uuid);
569 if (err) goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 }
571
NeilBrown4f7774c2006-03-27 01:15:03 -0800572 expp = svc_export_lookup(&exp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 if (expp)
NeilBrown4f7774c2006-03-27 01:15:03 -0800574 expp = svc_export_update(&exp, expp);
575 else
576 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 cache_flush();
NeilBrown4f7774c2006-03-27 01:15:03 -0800578 if (expp == NULL)
579 err = -ENOMEM;
580 else
581 exp_put(expp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 out:
NeilBrownaf6a4e22007-02-14 00:33:12 -0800583 nfsd4_fslocs_free(&exp.ex_fslocs);
584 kfree(exp.ex_uuid);
J.Bruce Fieldsb009a872006-10-04 02:16:17 -0700585 kfree(exp.ex_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 if (nd.dentry)
587 path_release(&nd);
NeilBrowncd156542006-04-10 22:55:27 -0700588 out_no_path:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 if (dom)
590 auth_domain_put(dom);
Jesper Juhlf99d49a2005-11-07 01:01:34 -0800591 kfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 return err;
593}
594
Manoj Naik933469192006-10-04 02:16:18 -0700595static void exp_flags(struct seq_file *m, int flag, int fsid,
596 uid_t anonu, uid_t anong, struct nfsd4_fs_locations *fslocs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
598static int svc_export_show(struct seq_file *m,
599 struct cache_detail *cd,
600 struct cache_head *h)
601{
602 struct svc_export *exp ;
603
604 if (h ==NULL) {
605 seq_puts(m, "#path domain(flags)\n");
606 return 0;
607 }
608 exp = container_of(h, struct svc_export, h);
609 seq_path(m, exp->ex_mnt, exp->ex_dentry, " \t\n\\");
610 seq_putc(m, '\t');
611 seq_escape(m, exp->ex_client->name, " \t\n\\");
612 seq_putc(m, '(');
613 if (test_bit(CACHE_VALID, &h->flags) &&
NeilBrownaf6a4e22007-02-14 00:33:12 -0800614 !test_bit(CACHE_NEGATIVE, &h->flags)) {
Manoj Naik933469192006-10-04 02:16:18 -0700615 exp_flags(m, exp->ex_flags, exp->ex_fsid,
616 exp->ex_anon_uid, exp->ex_anon_gid, &exp->ex_fslocs);
NeilBrownaf6a4e22007-02-14 00:33:12 -0800617 if (exp->ex_uuid) {
618 int i;
619 seq_puts(m, ",uuid=");
620 for (i=0; i<16; i++) {
621 if ((i&3) == 0 && i)
622 seq_putc(m, ':');
623 seq_printf(m, "%02x", exp->ex_uuid[i]);
624 }
625 }
626 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 seq_puts(m, ")\n");
628 return 0;
629}
NeilBrown4f7774c2006-03-27 01:15:03 -0800630static int svc_export_match(struct cache_head *a, struct cache_head *b)
631{
632 struct svc_export *orig = container_of(a, struct svc_export, h);
633 struct svc_export *new = container_of(b, struct svc_export, h);
634 return orig->ex_client == new->ex_client &&
635 orig->ex_dentry == new->ex_dentry &&
636 orig->ex_mnt == new->ex_mnt;
637}
638
639static void svc_export_init(struct cache_head *cnew, struct cache_head *citem)
640{
641 struct svc_export *new = container_of(cnew, struct svc_export, h);
642 struct svc_export *item = container_of(citem, struct svc_export, h);
643
644 kref_get(&item->ex_client->ref);
645 new->ex_client = item->ex_client;
646 new->ex_dentry = dget(item->ex_dentry);
647 new->ex_mnt = mntget(item->ex_mnt);
J.Bruce Fieldsb009a872006-10-04 02:16:17 -0700648 new->ex_path = NULL;
Manoj Naik933469192006-10-04 02:16:18 -0700649 new->ex_fslocs.locations = NULL;
650 new->ex_fslocs.locations_count = 0;
651 new->ex_fslocs.migrated = 0;
NeilBrown4f7774c2006-03-27 01:15:03 -0800652}
653
654static void export_update(struct cache_head *cnew, struct cache_head *citem)
655{
656 struct svc_export *new = container_of(cnew, struct svc_export, h);
657 struct svc_export *item = container_of(citem, struct svc_export, h);
658
659 new->ex_flags = item->ex_flags;
660 new->ex_anon_uid = item->ex_anon_uid;
661 new->ex_anon_gid = item->ex_anon_gid;
662 new->ex_fsid = item->ex_fsid;
NeilBrownaf6a4e22007-02-14 00:33:12 -0800663 new->ex_uuid = item->ex_uuid;
664 item->ex_uuid = NULL;
J.Bruce Fieldsb009a872006-10-04 02:16:17 -0700665 new->ex_path = item->ex_path;
666 item->ex_path = NULL;
Manoj Naik933469192006-10-04 02:16:18 -0700667 new->ex_fslocs.locations = item->ex_fslocs.locations;
668 item->ex_fslocs.locations = NULL;
669 new->ex_fslocs.locations_count = item->ex_fslocs.locations_count;
670 item->ex_fslocs.locations_count = 0;
671 new->ex_fslocs.migrated = item->ex_fslocs.migrated;
672 item->ex_fslocs.migrated = 0;
NeilBrown4f7774c2006-03-27 01:15:03 -0800673}
674
675static struct cache_head *svc_export_alloc(void)
676{
677 struct svc_export *i = kmalloc(sizeof(*i), GFP_KERNEL);
678 if (i)
679 return &i->h;
680 else
681 return NULL;
682}
683
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684struct cache_detail svc_export_cache = {
Bruce Allanf35279d2005-09-06 15:17:08 -0700685 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 .hash_size = EXPORT_HASHMAX,
687 .hash_table = export_table,
688 .name = "nfsd.export",
689 .cache_put = svc_export_put,
690 .cache_request = svc_export_request,
691 .cache_parse = svc_export_parse,
692 .cache_show = svc_export_show,
NeilBrown4f7774c2006-03-27 01:15:03 -0800693 .match = svc_export_match,
694 .init = svc_export_init,
695 .update = export_update,
696 .alloc = svc_export_alloc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697};
698
NeilBrown4f7774c2006-03-27 01:15:03 -0800699static struct svc_export *
700svc_export_lookup(struct svc_export *exp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701{
NeilBrown4f7774c2006-03-27 01:15:03 -0800702 struct cache_head *ch;
703 int hash;
704 hash = hash_ptr(exp->ex_client, EXPORT_HASHBITS);
705 hash ^= hash_ptr(exp->ex_dentry, EXPORT_HASHBITS);
706 hash ^= hash_ptr(exp->ex_mnt, EXPORT_HASHBITS);
707
708 ch = sunrpc_cache_lookup(&svc_export_cache, &exp->h,
709 hash);
710 if (ch)
711 return container_of(ch, struct svc_export, h);
712 else
713 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714}
715
Adrian Bunk74cae612006-03-27 01:15:10 -0800716static struct svc_export *
NeilBrown4f7774c2006-03-27 01:15:03 -0800717svc_export_update(struct svc_export *new, struct svc_export *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718{
NeilBrown4f7774c2006-03-27 01:15:03 -0800719 struct cache_head *ch;
720 int hash;
721 hash = hash_ptr(old->ex_client, EXPORT_HASHBITS);
722 hash ^= hash_ptr(old->ex_dentry, EXPORT_HASHBITS);
723 hash ^= hash_ptr(old->ex_mnt, EXPORT_HASHBITS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
NeilBrown4f7774c2006-03-27 01:15:03 -0800725 ch = sunrpc_cache_update(&svc_export_cache, &new->h,
726 &old->h,
727 hash);
728 if (ch)
729 return container_of(ch, struct svc_export, h);
730 else
731 return NULL;
732}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
734
Adrian Bunk74cae612006-03-27 01:15:10 -0800735static struct svc_expkey *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736exp_find_key(svc_client *clp, int fsid_type, u32 *fsidv, struct cache_req *reqp)
737{
738 struct svc_expkey key, *ek;
739 int err;
740
741 if (!clp)
J. Bruce Fields2d3bb252007-07-17 04:04:40 -0700742 return ERR_PTR(-ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
744 key.ek_client = clp;
745 key.ek_fsidtype = fsid_type;
746 memcpy(key.ek_fsid, fsidv, key_len(fsid_type));
747
NeilBrown8d270f7f2006-03-27 01:15:04 -0800748 ek = svc_expkey_lookup(&key);
J. Bruce Fields2d3bb252007-07-17 04:04:40 -0700749 if (ek == NULL)
750 return ERR_PTR(-ENOMEM);
751 err = cache_check(&svc_expkey_cache, &ek->h, reqp);
752 if (err)
753 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 return ek;
755}
756
757static int exp_set_key(svc_client *clp, int fsid_type, u32 *fsidv,
758 struct svc_export *exp)
759{
760 struct svc_expkey key, *ek;
761
762 key.ek_client = clp;
763 key.ek_fsidtype = fsid_type;
764 memcpy(key.ek_fsid, fsidv, key_len(fsid_type));
NeilBrowneab7e2e2006-03-27 01:15:00 -0800765 key.ek_mnt = exp->ex_mnt;
766 key.ek_dentry = exp->ex_dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 key.h.expiry_time = NEVER;
768 key.h.flags = 0;
769
NeilBrown8d270f7f2006-03-27 01:15:04 -0800770 ek = svc_expkey_lookup(&key);
771 if (ek)
772 ek = svc_expkey_update(&key,ek);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 if (ek) {
NeilBrownbaab9352006-03-27 01:15:09 -0800774 cache_put(&ek->h, &svc_expkey_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 return 0;
776 }
777 return -ENOMEM;
778}
779
780/*
781 * Find the client's export entry matching xdev/xino.
782 */
783static inline struct svc_expkey *
784exp_get_key(svc_client *clp, dev_t dev, ino_t ino)
785{
786 u32 fsidv[3];
787
788 if (old_valid_dev(dev)) {
NeilBrownaf6a4e22007-02-14 00:33:12 -0800789 mk_fsid(FSID_DEV, fsidv, dev, ino, 0, NULL);
790 return exp_find_key(clp, FSID_DEV, fsidv, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 }
NeilBrownaf6a4e22007-02-14 00:33:12 -0800792 mk_fsid(FSID_ENCODE_DEV, fsidv, dev, ino, 0, NULL);
793 return exp_find_key(clp, FSID_ENCODE_DEV, fsidv, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794}
795
796/*
797 * Find the client's export entry matching fsid
798 */
799static inline struct svc_expkey *
800exp_get_fsid_key(svc_client *clp, int fsid)
801{
802 u32 fsidv[2];
803
NeilBrownaf6a4e22007-02-14 00:33:12 -0800804 mk_fsid(FSID_NUM, fsidv, 0, 0, fsid, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
NeilBrownaf6a4e22007-02-14 00:33:12 -0800806 return exp_find_key(clp, FSID_NUM, fsidv, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807}
808
809svc_export *
810exp_get_by_name(svc_client *clp, struct vfsmount *mnt, struct dentry *dentry,
811 struct cache_req *reqp)
812{
813 struct svc_export *exp, key;
J. Bruce Fields2d3bb252007-07-17 04:04:40 -0700814 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
816 if (!clp)
J. Bruce Fields2d3bb252007-07-17 04:04:40 -0700817 return ERR_PTR(-ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
819 key.ex_client = clp;
820 key.ex_mnt = mnt;
821 key.ex_dentry = dentry;
822
NeilBrown4f7774c2006-03-27 01:15:03 -0800823 exp = svc_export_lookup(&key);
J. Bruce Fields2d3bb252007-07-17 04:04:40 -0700824 if (exp == NULL)
825 return ERR_PTR(-ENOMEM);
826 err = cache_check(&svc_export_cache, &exp->h, reqp);
827 if (err)
828 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 return exp;
830}
831
832/*
833 * Find the export entry for a given dentry.
834 */
835struct svc_export *
836exp_parent(svc_client *clp, struct vfsmount *mnt, struct dentry *dentry,
837 struct cache_req *reqp)
838{
839 svc_export *exp;
840
841 dget(dentry);
842 exp = exp_get_by_name(clp, mnt, dentry, reqp);
843
J. Bruce Fields2d3bb252007-07-17 04:04:40 -0700844 while (PTR_ERR(exp) == -ENOENT && !IS_ROOT(dentry)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 struct dentry *parent;
846
847 parent = dget_parent(dentry);
848 dput(dentry);
849 dentry = parent;
850 exp = exp_get_by_name(clp, mnt, dentry, reqp);
851 }
852 dput(dentry);
853 return exp;
854}
855
856/*
857 * Hashtable locking. Write locks are placed only by user processes
858 * wanting to modify export information.
859 * Write locking only done in this file. Read locking
860 * needed externally.
861 */
862
863static DECLARE_RWSEM(hash_sem);
864
865void
866exp_readlock(void)
867{
868 down_read(&hash_sem);
869}
870
871static inline void
872exp_writelock(void)
873{
874 down_write(&hash_sem);
875}
876
877void
878exp_readunlock(void)
879{
880 up_read(&hash_sem);
881}
882
883static inline void
884exp_writeunlock(void)
885{
886 up_write(&hash_sem);
887}
888
889static void exp_fsid_unhash(struct svc_export *exp)
890{
891 struct svc_expkey *ek;
892
893 if ((exp->ex_flags & NFSEXP_FSID) == 0)
894 return;
895
896 ek = exp_get_fsid_key(exp->ex_client, exp->ex_fsid);
J. Bruce Fields2d3bb252007-07-17 04:04:40 -0700897 if (!IS_ERR(ek)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 ek->h.expiry_time = get_seconds()-1;
NeilBrownbaab9352006-03-27 01:15:09 -0800899 cache_put(&ek->h, &svc_expkey_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 }
901 svc_expkey_cache.nextcheck = get_seconds();
902}
903
904static int exp_fsid_hash(svc_client *clp, struct svc_export *exp)
905{
906 u32 fsid[2];
907
908 if ((exp->ex_flags & NFSEXP_FSID) == 0)
909 return 0;
910
NeilBrownaf6a4e22007-02-14 00:33:12 -0800911 mk_fsid(FSID_NUM, fsid, 0, 0, exp->ex_fsid, NULL);
912 return exp_set_key(clp, FSID_NUM, fsid, exp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913}
914
915static int exp_hash(struct auth_domain *clp, struct svc_export *exp)
916{
917 u32 fsid[2];
918 struct inode *inode = exp->ex_dentry->d_inode;
919 dev_t dev = inode->i_sb->s_dev;
920
921 if (old_valid_dev(dev)) {
NeilBrownaf6a4e22007-02-14 00:33:12 -0800922 mk_fsid(FSID_DEV, fsid, dev, inode->i_ino, 0, NULL);
923 return exp_set_key(clp, FSID_DEV, fsid, exp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 }
NeilBrownaf6a4e22007-02-14 00:33:12 -0800925 mk_fsid(FSID_ENCODE_DEV, fsid, dev, inode->i_ino, 0, NULL);
926 return exp_set_key(clp, FSID_ENCODE_DEV, fsid, exp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927}
928
929static void exp_unhash(struct svc_export *exp)
930{
931 struct svc_expkey *ek;
932 struct inode *inode = exp->ex_dentry->d_inode;
933
934 ek = exp_get_key(exp->ex_client, inode->i_sb->s_dev, inode->i_ino);
J. Bruce Fields2d3bb252007-07-17 04:04:40 -0700935 if (!IS_ERR(ek)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 ek->h.expiry_time = get_seconds()-1;
NeilBrownbaab9352006-03-27 01:15:09 -0800937 cache_put(&ek->h, &svc_expkey_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 }
939 svc_expkey_cache.nextcheck = get_seconds();
940}
941
942/*
943 * Export a file system.
944 */
945int
946exp_export(struct nfsctl_export *nxp)
947{
948 svc_client *clp;
949 struct svc_export *exp = NULL;
950 struct svc_export new;
951 struct svc_expkey *fsid_key = NULL;
952 struct nameidata nd;
953 int err;
954
955 /* Consistency check */
956 err = -EINVAL;
957 if (!exp_verify_string(nxp->ex_path, NFS_MAXPATHLEN) ||
958 !exp_verify_string(nxp->ex_client, NFSCLNT_IDMAX))
959 goto out;
960
961 dprintk("exp_export called for %s:%s (%x/%ld fl %x).\n",
962 nxp->ex_client, nxp->ex_path,
963 (unsigned)nxp->ex_dev, (long)nxp->ex_ino,
964 nxp->ex_flags);
965
966 /* Try to lock the export table for update */
967 exp_writelock();
968
969 /* Look up client info */
970 if (!(clp = auth_domain_find(nxp->ex_client)))
971 goto out_unlock;
972
973
974 /* Look up the dentry */
975 err = path_lookup(nxp->ex_path, 0, &nd);
976 if (err)
977 goto out_unlock;
978 err = -EINVAL;
979
980 exp = exp_get_by_name(clp, nd.mnt, nd.dentry, NULL);
981
NeilBrownf9884432006-12-13 00:35:45 -0800982 memset(&new, 0, sizeof(new));
983
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 /* must make sure there won't be an ex_fsid clash */
985 if ((nxp->ex_flags & NFSEXP_FSID) &&
J. Bruce Fields2d3bb252007-07-17 04:04:40 -0700986 (!IS_ERR(fsid_key = exp_get_fsid_key(clp, nxp->ex_dev))) &&
NeilBrowneab7e2e2006-03-27 01:15:00 -0800987 fsid_key->ek_mnt &&
988 (fsid_key->ek_mnt != nd.mnt || fsid_key->ek_dentry != nd.dentry) )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 goto finish;
990
J. Bruce Fields2d3bb252007-07-17 04:04:40 -0700991 if (!IS_ERR(exp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 /* just a flags/id/fsid update */
993
994 exp_fsid_unhash(exp);
995 exp->ex_flags = nxp->ex_flags;
996 exp->ex_anon_uid = nxp->ex_anon_uid;
997 exp->ex_anon_gid = nxp->ex_anon_gid;
998 exp->ex_fsid = nxp->ex_dev;
999
1000 err = exp_fsid_hash(clp, exp);
1001 goto finish;
1002 }
1003
NeilBrownaf6a4e22007-02-14 00:33:12 -08001004 err = check_export(nd.dentry->d_inode, nxp->ex_flags, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 if (err) goto finish;
1006
1007 err = -ENOMEM;
1008
1009 dprintk("nfsd: creating export entry %p for client %p\n", exp, clp);
1010
1011 new.h.expiry_time = NEVER;
1012 new.h.flags = 0;
NeilBrownf9884432006-12-13 00:35:45 -08001013 new.ex_path = kstrdup(nxp->ex_path, GFP_KERNEL);
1014 if (!new.ex_path)
1015 goto finish;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 new.ex_client = clp;
1017 new.ex_mnt = nd.mnt;
1018 new.ex_dentry = nd.dentry;
1019 new.ex_flags = nxp->ex_flags;
1020 new.ex_anon_uid = nxp->ex_anon_uid;
1021 new.ex_anon_gid = nxp->ex_anon_gid;
1022 new.ex_fsid = nxp->ex_dev;
1023
NeilBrown4f7774c2006-03-27 01:15:03 -08001024 exp = svc_export_lookup(&new);
1025 if (exp)
1026 exp = svc_export_update(&new, exp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
NeilBrown4f7774c2006-03-27 01:15:03 -08001028 if (!exp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 goto finish;
1030
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 if (exp_hash(clp, exp) ||
1032 exp_fsid_hash(clp, exp)) {
1033 /* failed to create at least one index */
1034 exp_do_unexport(exp);
1035 cache_flush();
NeilBrownf9884432006-12-13 00:35:45 -08001036 } else
1037 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038finish:
NeilBrownf9884432006-12-13 00:35:45 -08001039 if (new.ex_path)
1040 kfree(new.ex_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 if (exp)
1042 exp_put(exp);
1043 if (fsid_key && !IS_ERR(fsid_key))
NeilBrownbaab9352006-03-27 01:15:09 -08001044 cache_put(&fsid_key->h, &svc_expkey_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 if (clp)
1046 auth_domain_put(clp);
1047 path_release(&nd);
1048out_unlock:
1049 exp_writeunlock();
1050out:
1051 return err;
1052}
1053
1054/*
1055 * Unexport a file system. The export entry has already
1056 * been removed from the client's list of exported fs's.
1057 */
1058static void
1059exp_do_unexport(svc_export *unexp)
1060{
1061 unexp->h.expiry_time = get_seconds()-1;
1062 svc_export_cache.nextcheck = get_seconds();
1063 exp_unhash(unexp);
1064 exp_fsid_unhash(unexp);
1065}
1066
1067
1068/*
1069 * unexport syscall.
1070 */
1071int
1072exp_unexport(struct nfsctl_export *nxp)
1073{
1074 struct auth_domain *dom;
1075 svc_export *exp;
1076 struct nameidata nd;
1077 int err;
1078
1079 /* Consistency check */
1080 if (!exp_verify_string(nxp->ex_path, NFS_MAXPATHLEN) ||
1081 !exp_verify_string(nxp->ex_client, NFSCLNT_IDMAX))
1082 return -EINVAL;
1083
1084 exp_writelock();
1085
1086 err = -EINVAL;
1087 dom = auth_domain_find(nxp->ex_client);
1088 if (!dom) {
1089 dprintk("nfsd: unexport couldn't find %s\n", nxp->ex_client);
1090 goto out_unlock;
1091 }
1092
1093 err = path_lookup(nxp->ex_path, 0, &nd);
1094 if (err)
1095 goto out_domain;
1096
1097 err = -EINVAL;
1098 exp = exp_get_by_name(dom, nd.mnt, nd.dentry, NULL);
1099 path_release(&nd);
J. Bruce Fields2d3bb252007-07-17 04:04:40 -07001100 if (IS_ERR(exp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 goto out_domain;
1102
1103 exp_do_unexport(exp);
1104 exp_put(exp);
1105 err = 0;
1106
1107out_domain:
1108 auth_domain_put(dom);
1109 cache_flush();
1110out_unlock:
1111 exp_writeunlock();
1112 return err;
1113}
1114
1115/*
1116 * Obtain the root fh on behalf of a client.
1117 * This could be done in user space, but I feel that it adds some safety
1118 * since its harder to fool a kernel module than a user space program.
1119 */
1120int
1121exp_rootfh(svc_client *clp, char *path, struct knfsd_fh *f, int maxsize)
1122{
1123 struct svc_export *exp;
1124 struct nameidata nd;
1125 struct inode *inode;
1126 struct svc_fh fh;
1127 int err;
1128
1129 err = -EPERM;
1130 /* NB: we probably ought to check that it's NUL-terminated */
1131 if (path_lookup(path, 0, &nd)) {
1132 printk("nfsd: exp_rootfh path not found %s", path);
1133 return err;
1134 }
1135 inode = nd.dentry->d_inode;
1136
1137 dprintk("nfsd: exp_rootfh(%s [%p] %s:%s/%ld)\n",
1138 path, nd.dentry, clp->name,
1139 inode->i_sb->s_id, inode->i_ino);
1140 exp = exp_parent(clp, nd.mnt, nd.dentry, NULL);
J.Bruce Fields4b41bd82006-12-13 00:35:21 -08001141 if (IS_ERR(exp)) {
1142 err = PTR_ERR(exp);
1143 goto out;
1144 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
1146 /*
1147 * fh must be initialized before calling fh_compose
1148 */
1149 fh_init(&fh, maxsize);
1150 if (fh_compose(&fh, exp, nd.dentry, NULL))
1151 err = -EINVAL;
1152 else
1153 err = 0;
1154 memcpy(f, &fh.fh_handle, sizeof(struct knfsd_fh));
1155 fh_put(&fh);
1156 exp_put(exp);
1157out:
1158 path_release(&nd);
1159 return err;
1160}
1161
NeilBrowneab7e2e2006-03-27 01:15:00 -08001162struct svc_export *
1163exp_find(struct auth_domain *clp, int fsid_type, u32 *fsidv,
1164 struct cache_req *reqp)
1165{
1166 struct svc_export *exp;
1167 struct svc_expkey *ek = exp_find_key(clp, fsid_type, fsidv, reqp);
J. Bruce Fields2d3bb252007-07-17 04:04:40 -07001168 if (IS_ERR(ek))
NeilBrowneab7e2e2006-03-27 01:15:00 -08001169 return ERR_PTR(PTR_ERR(ek));
1170
1171 exp = exp_get_by_name(clp, ek->ek_mnt, ek->ek_dentry, reqp);
NeilBrownbaab9352006-03-27 01:15:09 -08001172 cache_put(&ek->h, &svc_expkey_cache);
NeilBrowneab7e2e2006-03-27 01:15:00 -08001173
J. Bruce Fields2d3bb252007-07-17 04:04:40 -07001174 if (IS_ERR(exp))
NeilBrowneab7e2e2006-03-27 01:15:00 -08001175 return ERR_PTR(PTR_ERR(exp));
1176 return exp;
1177}
1178
1179
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180/*
1181 * Called when we need the filehandle for the root of the pseudofs,
1182 * for a given NFSv4 client. The root is defined to be the
1183 * export point with fsid==0
1184 */
Al Viroc7afef12006-10-19 23:29:02 -07001185__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186exp_pseudoroot(struct auth_domain *clp, struct svc_fh *fhp,
1187 struct cache_req *creq)
1188{
NeilBrowneab7e2e2006-03-27 01:15:00 -08001189 struct svc_export *exp;
Al Viroc7afef12006-10-19 23:29:02 -07001190 __be32 rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 u32 fsidv[2];
1192
NeilBrownaf6a4e22007-02-14 00:33:12 -08001193 mk_fsid(FSID_NUM, fsidv, 0, 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194
NeilBrownaf6a4e22007-02-14 00:33:12 -08001195 exp = exp_find(clp, FSID_NUM, fsidv, creq);
J. Bruce Fields2d3bb252007-07-17 04:04:40 -07001196 if (PTR_ERR(exp) == -ENOENT)
1197 return nfserr_perm;
J.Bruce Fields68993202006-12-13 00:35:23 -08001198 if (IS_ERR(exp))
1199 return nfserrno(PTR_ERR(exp));
J.Bruce Fieldsd0ebd9c2006-10-04 02:16:10 -07001200 rv = fh_compose(fhp, exp, exp->ex_dentry, NULL);
1201 exp_put(exp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 return rv;
1203}
1204
1205/* Iterator */
1206
1207static void *e_start(struct seq_file *m, loff_t *pos)
Josh Triplett896440d2006-10-02 02:17:50 -07001208 __acquires(svc_export_cache.hash_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209{
1210 loff_t n = *pos;
1211 unsigned hash, export;
1212 struct cache_head *ch;
1213
1214 exp_readlock();
1215 read_lock(&svc_export_cache.hash_lock);
1216 if (!n--)
Greg Banksbc6f02e2006-10-02 02:17:49 -07001217 return SEQ_START_TOKEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 hash = n >> 32;
1219 export = n & ((1LL<<32) - 1);
1220
1221
1222 for (ch=export_table[hash]; ch; ch=ch->next)
1223 if (!export--)
1224 return ch;
1225 n &= ~((1LL<<32) - 1);
1226 do {
1227 hash++;
1228 n += 1LL<<32;
1229 } while(hash < EXPORT_HASHMAX && export_table[hash]==NULL);
1230 if (hash >= EXPORT_HASHMAX)
1231 return NULL;
1232 *pos = n+1;
1233 return export_table[hash];
1234}
1235
1236static void *e_next(struct seq_file *m, void *p, loff_t *pos)
1237{
1238 struct cache_head *ch = p;
1239 int hash = (*pos >> 32);
1240
Greg Banksbc6f02e2006-10-02 02:17:49 -07001241 if (p == SEQ_START_TOKEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 hash = 0;
1243 else if (ch->next == NULL) {
1244 hash++;
1245 *pos += 1LL<<32;
1246 } else {
1247 ++*pos;
1248 return ch->next;
1249 }
1250 *pos &= ~((1LL<<32) - 1);
1251 while (hash < EXPORT_HASHMAX && export_table[hash] == NULL) {
1252 hash++;
1253 *pos += 1LL<<32;
1254 }
1255 if (hash >= EXPORT_HASHMAX)
1256 return NULL;
1257 ++*pos;
1258 return export_table[hash];
1259}
1260
1261static void e_stop(struct seq_file *m, void *p)
Josh Triplett896440d2006-10-02 02:17:50 -07001262 __releases(svc_export_cache.hash_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263{
1264 read_unlock(&svc_export_cache.hash_lock);
1265 exp_readunlock();
1266}
1267
1268static struct flags {
1269 int flag;
1270 char *name[2];
1271} expflags[] = {
1272 { NFSEXP_READONLY, {"ro", "rw"}},
1273 { NFSEXP_INSECURE_PORT, {"insecure", ""}},
1274 { NFSEXP_ROOTSQUASH, {"root_squash", "no_root_squash"}},
1275 { NFSEXP_ALLSQUASH, {"all_squash", ""}},
1276 { NFSEXP_ASYNC, {"async", "sync"}},
1277 { NFSEXP_GATHERED_WRITES, {"wdelay", "no_wdelay"}},
1278 { NFSEXP_NOHIDE, {"nohide", ""}},
1279 { NFSEXP_CROSSMOUNT, {"crossmnt", ""}},
1280 { NFSEXP_NOSUBTREECHECK, {"no_subtree_check", ""}},
1281 { NFSEXP_NOAUTHNLM, {"insecure_locks", ""}},
1282#ifdef MSNFS
1283 { NFSEXP_MSNFS, {"msnfs", ""}},
1284#endif
1285 { 0, {"", ""}}
1286};
1287
Manoj Naik933469192006-10-04 02:16:18 -07001288static void exp_flags(struct seq_file *m, int flag, int fsid,
1289 uid_t anonu, uid_t anong, struct nfsd4_fs_locations *fsloc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290{
1291 int first = 0;
1292 struct flags *flg;
1293
1294 for (flg = expflags; flg->flag; flg++) {
1295 int state = (flg->flag & flag)?0:1;
1296 if (*flg->name[state])
1297 seq_printf(m, "%s%s", first++?",":"", flg->name[state]);
1298 }
1299 if (flag & NFSEXP_FSID)
1300 seq_printf(m, "%sfsid=%d", first++?",":"", fsid);
1301 if (anonu != (uid_t)-2 && anonu != (0x10000-2))
1302 seq_printf(m, "%sanonuid=%d", first++?",":"", anonu);
1303 if (anong != (gid_t)-2 && anong != (0x10000-2))
1304 seq_printf(m, "%sanongid=%d", first++?",":"", anong);
Manoj Naik933469192006-10-04 02:16:18 -07001305 if (fsloc && fsloc->locations_count > 0) {
1306 char *loctype = (fsloc->migrated) ? "refer" : "replicas";
1307 int i;
1308
1309 seq_printf(m, "%s%s=", first++?",":"", loctype);
1310 seq_escape(m, fsloc->locations[0].path, ",;@ \t\n\\");
1311 seq_putc(m, '@');
1312 seq_escape(m, fsloc->locations[0].hosts, ",;@ \t\n\\");
1313 for (i = 1; i < fsloc->locations_count; i++) {
1314 seq_putc(m, ';');
1315 seq_escape(m, fsloc->locations[i].path, ",;@ \t\n\\");
1316 seq_putc(m, '@');
1317 seq_escape(m, fsloc->locations[i].hosts, ",;@ \t\n\\");
1318 }
1319 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320}
1321
1322static int e_show(struct seq_file *m, void *p)
1323{
1324 struct cache_head *cp = p;
1325 struct svc_export *exp = container_of(cp, struct svc_export, h);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
Greg Banksbc6f02e2006-10-02 02:17:49 -07001327 if (p == SEQ_START_TOKEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 seq_puts(m, "# Version 1.1\n");
1329 seq_puts(m, "# Path Client(Flags) # IPs\n");
1330 return 0;
1331 }
1332
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 cache_get(&exp->h);
1334 if (cache_check(&svc_export_cache, &exp->h, NULL))
1335 return 0;
NeilBrownbaab9352006-03-27 01:15:09 -08001336 cache_put(&exp->h, &svc_export_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 return svc_export_show(m, &svc_export_cache, cp);
1338}
1339
1340struct seq_operations nfs_exports_op = {
1341 .start = e_start,
1342 .next = e_next,
1343 .stop = e_stop,
1344 .show = e_show,
1345};
1346
1347/*
1348 * Add or modify a client.
1349 * Change requests may involve the list of host addresses. The list of
1350 * exports and possibly existing uid maps are left untouched.
1351 */
1352int
1353exp_addclient(struct nfsctl_client *ncp)
1354{
1355 struct auth_domain *dom;
1356 int i, err;
1357
1358 /* First, consistency check. */
1359 err = -EINVAL;
1360 if (! exp_verify_string(ncp->cl_ident, NFSCLNT_IDMAX))
1361 goto out;
1362 if (ncp->cl_naddr > NFSCLNT_ADDRMAX)
1363 goto out;
1364
1365 /* Lock the hashtable */
1366 exp_writelock();
1367
1368 dom = unix_domain_find(ncp->cl_ident);
1369
1370 err = -ENOMEM;
1371 if (!dom)
1372 goto out_unlock;
1373
1374 /* Insert client into hashtable. */
1375 for (i = 0; i < ncp->cl_naddr; i++)
1376 auth_unix_add_addr(ncp->cl_addrlist[i], dom);
1377
1378 auth_unix_forget_old(dom);
1379 auth_domain_put(dom);
1380
1381 err = 0;
1382
1383out_unlock:
1384 exp_writeunlock();
1385out:
1386 return err;
1387}
1388
1389/*
1390 * Delete a client given an identifier.
1391 */
1392int
1393exp_delclient(struct nfsctl_client *ncp)
1394{
1395 int err;
1396 struct auth_domain *dom;
1397
1398 err = -EINVAL;
1399 if (!exp_verify_string(ncp->cl_ident, NFSCLNT_IDMAX))
1400 goto out;
1401
1402 /* Lock the hashtable */
1403 exp_writelock();
1404
1405 dom = auth_domain_find(ncp->cl_ident);
1406 /* just make sure that no addresses work
1407 * and that it will expire soon
1408 */
1409 if (dom) {
1410 err = auth_unix_forget_old(dom);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 auth_domain_put(dom);
1412 }
1413
1414 exp_writeunlock();
1415out:
1416 return err;
1417}
1418
1419/*
1420 * Verify that string is non-empty and does not exceed max length.
1421 */
1422static int
1423exp_verify_string(char *cp, int max)
1424{
1425 int i;
1426
1427 for (i = 0; i < max; i++)
1428 if (!cp[i])
1429 return i;
1430 cp[i] = 0;
1431 printk(KERN_NOTICE "nfsd: couldn't validate string %s\n", cp);
1432 return 0;
1433}
1434
1435/*
1436 * Initialize the exports module.
1437 */
1438void
1439nfsd_export_init(void)
1440{
1441 dprintk("nfsd: initializing export module.\n");
1442
1443 cache_register(&svc_export_cache);
1444 cache_register(&svc_expkey_cache);
1445
1446}
1447
1448/*
1449 * Flush exports table - called when last nfsd thread is killed
1450 */
1451void
1452nfsd_export_flush(void)
1453{
1454 exp_writelock();
1455 cache_purge(&svc_expkey_cache);
1456 cache_purge(&svc_export_cache);
1457 exp_writeunlock();
1458}
1459
1460/*
1461 * Shutdown the exports module.
1462 */
1463void
1464nfsd_export_shutdown(void)
1465{
1466
1467 dprintk("nfsd: shutting down export module.\n");
1468
1469 exp_writelock();
1470
1471 if (cache_unregister(&svc_expkey_cache))
1472 printk(KERN_ERR "nfsd: failed to unregister expkey cache\n");
1473 if (cache_unregister(&svc_export_cache))
1474 printk(KERN_ERR "nfsd: failed to unregister export cache\n");
1475 svcauth_unix_purge();
1476
1477 exp_writeunlock();
1478 dprintk("nfsd: export shutdown complete.\n");
1479}