[PATCH] switch nfsd to kern_path()
[safe/jmp/linux-2.6] / fs / nfsd / export.c
1 #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>
19 #include <linux/stat.h>
20 #include <linux/in.h>
21 #include <linux/seq_file.h>
22 #include <linux/syscalls.h>
23 #include <linux/rwsem.h>
24 #include <linux/dcache.h>
25 #include <linux/namei.h>
26 #include <linux/mount.h>
27 #include <linux/hash.h>
28 #include <linux/module.h>
29 #include <linux/exportfs.h>
30
31 #include <linux/sunrpc/svc.h>
32 #include <linux/nfsd/nfsd.h>
33 #include <linux/nfsd/nfsfh.h>
34 #include <linux/nfsd/syscall.h>
35 #include <linux/lockd/bind.h>
36 #include <linux/sunrpc/msg_prot.h>
37 #include <linux/sunrpc/gss_api.h>
38 #include <net/ipv6.h>
39
40 #define NFSDDBG_FACILITY        NFSDDBG_EXPORT
41
42 typedef struct auth_domain      svc_client;
43 typedef struct svc_export       svc_export;
44
45 static void             exp_do_unexport(svc_export *unexp);
46 static 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)
60 static struct cache_head *expkey_table[EXPKEY_HASHMAX];
61
62 static void expkey_put(struct kref *ref)
63 {
64         struct svc_expkey *key = container_of(ref, struct svc_expkey, h.ref);
65
66         if (test_bit(CACHE_VALID, &key->h.flags) &&
67             !test_bit(CACHE_NEGATIVE, &key->h.flags))
68                 path_put(&key->ek_path);
69         auth_domain_put(key->ek_client);
70         kfree(key);
71 }
72
73 static 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
88 static struct svc_expkey *svc_expkey_update(struct svc_expkey *new, struct svc_expkey *old);
89 static struct svc_expkey *svc_expkey_lookup(struct svc_expkey *);
90 static struct cache_detail svc_expkey_cache;
91
92 static 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;
102         struct svc_expkey *ek;
103
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);
129         if (key_len(fsidtype)==0) /* invalid type */
130                 goto out;
131         if ((len=qword_get(&mesg, buf, PAGE_SIZE)) <= 0)
132                 goto out;
133         dprintk("found fsid length %d\n", len);
134         if (len != key_len(fsidtype))
135                 goto out;
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
147         ek = svc_expkey_lookup(&key);
148         err = -ENOMEM;
149         if (!ek)
150                 goto out;
151
152         /* now we want a pathname, or empty meaning NEGATIVE  */
153         err = -EINVAL;
154         if ((len=qword_get(&mesg, buf, PAGE_SIZE)) < 0)
155                 goto out;
156         dprintk("Path seems to be <%s>\n", buf);
157         err = 0;
158         if (len == 0) {
159                 set_bit(CACHE_NEGATIVE, &key.h.flags);
160                 ek = svc_expkey_update(&key, ek);
161                 if (ek)
162                         cache_put(&ek->h, &svc_expkey_cache);
163                 else err = -ENOMEM;
164         } else {
165                 err = kern_path(buf, 0, &key.ek_path);
166                 if (err)
167                         goto out;
168
169                 dprintk("Found the path %s\n", buf);
170
171                 ek = svc_expkey_update(&key, ek);
172                 if (ek)
173                         cache_put(&ek->h, &svc_expkey_cache);
174                 else
175                         err = -ENOMEM;
176                 path_put(&key.ek_path);
177         }
178         cache_flush();
179  out:
180         if (dom)
181                 auth_domain_put(dom);
182         kfree(buf);
183         return err;
184 }
185
186 static int expkey_show(struct seq_file *m,
187                        struct cache_detail *cd,
188                        struct cache_head *h)
189 {
190         struct svc_expkey *ek ;
191         int i;
192
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);
198         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]);
202         if (test_bit(CACHE_VALID, &h->flags) && 
203             !test_bit(CACHE_NEGATIVE, &h->flags)) {
204                 seq_printf(m, " ");
205                 seq_path(m, &ek->ek_path, "\\ \t\n");
206         }
207         seq_printf(m, "\n");
208         return 0;
209 }
210
211 static 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
223 static 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;
232
233         memcpy(new->ek_fsid, item->ek_fsid, sizeof(new->ek_fsid));
234 }
235
236 static 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
242         new->ek_path = item->ek_path;
243         path_get(&item->ek_path);
244 }
245
246 static 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
255 static struct cache_detail svc_expkey_cache = {
256         .owner          = THIS_MODULE,
257         .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,
264         .match          = expkey_match,
265         .init           = expkey_init,
266         .update         = expkey_update,
267         .alloc          = expkey_alloc,
268 };
269
270 static struct svc_expkey *
271 svc_expkey_lookup(struct svc_expkey *item)
272 {
273         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;
288 }
289
290 static struct svc_expkey *
291 svc_expkey_update(struct svc_expkey *new, struct svc_expkey *old)
292 {
293         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;
308 }
309
310
311 #define EXPORT_HASHBITS         8
312 #define EXPORT_HASHMAX          (1<< EXPORT_HASHBITS)
313 #define EXPORT_HASHMASK         (EXPORT_HASHMAX -1)
314
315 static struct cache_head *export_table[EXPORT_HASHMAX];
316
317 static 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
328 static void svc_export_put(struct kref *ref)
329 {
330         struct svc_export *exp = container_of(ref, struct svc_export, h.ref);
331         path_put(&exp->ex_path);
332         auth_domain_put(exp->ex_client);
333         kfree(exp->ex_pathname);
334         nfsd4_fslocs_free(&exp->ex_fslocs);
335         kfree(exp);
336 }
337
338 static 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);
347         pth = d_path(&exp->ex_path, *bpp, *blen);
348         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
357 static struct svc_export *svc_export_update(struct svc_export *new,
358                                             struct svc_export *old);
359 static struct svc_export *svc_export_lookup(struct svc_export *);
360
361 static int check_export(struct inode *inode, int flags, unsigned char *uuid)
362 {
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)
374          *       or an FSID number (so NFSEXP_FSID or ->uuid is needed).
375          * 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) &&
379             !(flags & NFSEXP_FSID) &&
380             uuid == NULL) {
381                 dprintk("exp_export: export of non-dev fs without fsid\n");
382                 return -EINVAL;
383         }
384
385         if (!inode->i_sb->s_export_op ||
386             !inode->i_sb->s_export_op->fh_to_dentry) {
387                 dprintk("exp_export: export of invalid fs type.\n");
388                 return -EINVAL;
389         }
390
391         return 0;
392
393 }
394
395 #ifdef CONFIG_NFSD_V4
396
397 static int
398 fsloc_parse(char **mesg, char *buf, struct nfsd4_fs_locations *fsloc)
399 {
400         int len;
401         int migrated, i, err;
402
403         /* 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;
445 out_free_all:
446         nfsd4_fslocs_free(fsloc);
447         return err;
448 }
449
450 static 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
487 #else /* CONFIG_NFSD_V4 */
488 static inline int
489 fsloc_parse(char **mesg, char *buf, struct nfsd4_fs_locations *fsloc){return 0;}
490 static inline int
491 secinfo_parse(char **mesg, char *buf, struct svc_export *exp) { return 0; }
492 #endif
493
494 static 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;
501         struct svc_export exp = {}, *expp;
502         int an_int;
503
504         if (mesg[mlen-1] != '\n')
505                 return -EINVAL;
506         mesg[mlen-1] = 0;
507
508         buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
509         if (!buf)
510                 return -ENOMEM;
511
512         /* client */
513         err = -EINVAL;
514         len = qword_get(&mesg, buf, PAGE_SIZE);
515         if (len <= 0)
516                 goto out;
517
518         err = -ENOENT;
519         dom = auth_domain_find(buf);
520         if (!dom)
521                 goto out;
522
523         /* path */
524         err = -EINVAL;
525         if ((len = qword_get(&mesg, buf, PAGE_SIZE)) <= 0)
526                 goto out1;
527
528         err = kern_path(buf, 0, &exp.ex_path);
529         if (err)
530                 goto out1;
531
532         exp.ex_client = dom;
533
534         err = -ENOMEM;
535         exp.ex_pathname = kstrdup(buf, GFP_KERNEL);
536         if (!exp.ex_pathname)
537                 goto out2;
538
539         /* expiry */
540         err = -EINVAL;
541         exp.h.expiry_time = get_expiry(&mesg);
542         if (exp.h.expiry_time == 0)
543                 goto out3;
544
545         /* flags */
546         err = get_int(&mesg, &an_int);
547         if (err == -ENOENT) {
548                 err = 0;
549                 set_bit(CACHE_NEGATIVE, &exp.h.flags);
550         } else {
551                 if (err || an_int < 0)
552                         goto out3;
553                 exp.ex_flags= an_int;
554         
555                 /* anon uid */
556                 err = get_int(&mesg, &an_int);
557                 if (err)
558                         goto out3;
559                 exp.ex_anon_uid= an_int;
560
561                 /* anon gid */
562                 err = get_int(&mesg, &an_int);
563                 if (err)
564                         goto out3;
565                 exp.ex_anon_gid= an_int;
566
567                 /* fsid */
568                 err = get_int(&mesg, &an_int);
569                 if (err)
570                         goto out3;
571                 exp.ex_fsid = an_int;
572
573                 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                                 }
587                         } else if (strcmp(buf, "secinfo") == 0)
588                                 err = secinfo_parse(&mesg, buf, &exp);
589                         else
590                                 /* 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)
596                                 goto out4;
597                 }
598
599                 err = check_export(exp.ex_path.dentry->d_inode, exp.ex_flags,
600                                    exp.ex_uuid);
601                 if (err)
602                         goto out4;
603         }
604
605         expp = svc_export_lookup(&exp);
606         if (expp)
607                 expp = svc_export_update(&exp, expp);
608         else
609                 err = -ENOMEM;
610         cache_flush();
611         if (expp == NULL)
612                 err = -ENOMEM;
613         else
614                 exp_put(expp);
615 out4:
616         nfsd4_fslocs_free(&exp.ex_fslocs);
617         kfree(exp.ex_uuid);
618 out3:
619         kfree(exp.ex_pathname);
620 out2:
621         path_put(&exp.ex_path);
622 out1:
623         auth_domain_put(dom);
624 out:
625         kfree(buf);
626         return err;
627 }
628
629 static void exp_flags(struct seq_file *m, int flag, int fsid,
630                 uid_t anonu, uid_t anong, struct nfsd4_fs_locations *fslocs);
631 static void show_secinfo(struct seq_file *m, struct svc_export *exp);
632
633 static 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);
644         seq_path(m, &exp->ex_path, " \t\n\\");
645         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) && 
649             !test_bit(CACHE_NEGATIVE, &h->flags)) {
650                 exp_flags(m, exp->ex_flags, exp->ex_fsid,
651                           exp->ex_anon_uid, exp->ex_anon_gid, &exp->ex_fslocs);
652                 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                 }
661                 show_secinfo(m, exp);
662         }
663         seq_puts(m, ")\n");
664         return 0;
665 }
666 static 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 &&
671                 orig->ex_path.dentry == new->ex_path.dentry &&
672                 orig->ex_path.mnt == new->ex_path.mnt;
673 }
674
675 static 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;
682         new->ex_path.dentry = dget(item->ex_path.dentry);
683         new->ex_path.mnt = mntget(item->ex_path.mnt);
684         new->ex_pathname = NULL;
685         new->ex_fslocs.locations = NULL;
686         new->ex_fslocs.locations_count = 0;
687         new->ex_fslocs.migrated = 0;
688 }
689
690 static 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);
694         int i;
695
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;
700         new->ex_uuid = item->ex_uuid;
701         item->ex_uuid = NULL;
702         new->ex_pathname = item->ex_pathname;
703         item->ex_pathname = NULL;
704         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;
710         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         }
714 }
715
716 static 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
725 struct cache_detail svc_export_cache = {
726         .owner          = THIS_MODULE,
727         .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,
734         .match          = svc_export_match,
735         .init           = svc_export_init,
736         .update         = export_update,
737         .alloc          = svc_export_alloc,
738 };
739
740 static struct svc_export *
741 svc_export_lookup(struct svc_export *exp)
742 {
743         struct cache_head *ch;
744         int hash;
745         hash = hash_ptr(exp->ex_client, EXPORT_HASHBITS);
746         hash ^= hash_ptr(exp->ex_path.dentry, EXPORT_HASHBITS);
747         hash ^= hash_ptr(exp->ex_path.mnt, EXPORT_HASHBITS);
748
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;
755 }
756
757 static struct svc_export *
758 svc_export_update(struct svc_export *new, struct svc_export *old)
759 {
760         struct cache_head *ch;
761         int hash;
762         hash = hash_ptr(old->ex_client, EXPORT_HASHBITS);
763         hash ^= hash_ptr(old->ex_path.dentry, EXPORT_HASHBITS);
764         hash ^= hash_ptr(old->ex_path.mnt, EXPORT_HASHBITS);
765
766         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 }
774
775
776 static struct svc_expkey *
777 exp_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)
783                 return ERR_PTR(-ENOENT);
784
785         key.ek_client = clp;
786         key.ek_fsidtype = fsid_type;
787         memcpy(key.ek_fsid, fsidv, key_len(fsid_type));
788
789         ek = svc_expkey_lookup(&key);
790         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);
795         return ek;
796 }
797
798 static 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));
806         key.ek_path = exp->ex_path;
807         key.h.expiry_time = NEVER;
808         key.h.flags = 0;
809
810         ek = svc_expkey_lookup(&key);
811         if (ek)
812                 ek = svc_expkey_update(&key,ek);
813         if (ek) {
814                 cache_put(&ek->h, &svc_expkey_cache);
815                 return 0;
816         }
817         return -ENOMEM;
818 }
819
820 /*
821  * Find the client's export entry matching xdev/xino.
822  */
823 static inline struct svc_expkey *
824 exp_get_key(svc_client *clp, dev_t dev, ino_t ino)
825 {
826         u32 fsidv[3];
827         
828         if (old_valid_dev(dev)) {
829                 mk_fsid(FSID_DEV, fsidv, dev, ino, 0, NULL);
830                 return exp_find_key(clp, FSID_DEV, fsidv, NULL);
831         }
832         mk_fsid(FSID_ENCODE_DEV, fsidv, dev, ino, 0, NULL);
833         return exp_find_key(clp, FSID_ENCODE_DEV, fsidv, NULL);
834 }
835
836 /*
837  * Find the client's export entry matching fsid
838  */
839 static inline struct svc_expkey *
840 exp_get_fsid_key(svc_client *clp, int fsid)
841 {
842         u32 fsidv[2];
843
844         mk_fsid(FSID_NUM, fsidv, 0, 0, fsid, NULL);
845
846         return exp_find_key(clp, FSID_NUM, fsidv, NULL);
847 }
848
849 static svc_export *exp_get_by_name(svc_client *clp, struct vfsmount *mnt,
850                                    struct dentry *dentry,
851                                    struct cache_req *reqp)
852 {
853         struct svc_export *exp, key;
854         int err;
855
856         if (!clp)
857                 return ERR_PTR(-ENOENT);
858
859         key.ex_client = clp;
860         key.ex_path.mnt = mnt;
861         key.ex_path.dentry = dentry;
862
863         exp = svc_export_lookup(&key);
864         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);
869         return exp;
870 }
871
872 /*
873  * Find the export entry for a given dentry.
874  */
875 static struct svc_export *exp_parent(svc_client *clp, struct vfsmount *mnt,
876                                      struct dentry *dentry,
877                                      struct cache_req *reqp)
878 {
879         svc_export *exp;
880
881         dget(dentry);
882         exp = exp_get_by_name(clp, mnt, dentry, reqp);
883
884         while (PTR_ERR(exp) == -ENOENT && !IS_ROOT(dentry)) {
885                 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
903 static DECLARE_RWSEM(hash_sem);
904
905 void
906 exp_readlock(void)
907 {
908         down_read(&hash_sem);
909 }
910
911 static inline void
912 exp_writelock(void)
913 {
914         down_write(&hash_sem);
915 }
916
917 void
918 exp_readunlock(void)
919 {
920         up_read(&hash_sem);
921 }
922
923 static inline void
924 exp_writeunlock(void)
925 {
926         up_write(&hash_sem);
927 }
928
929 static 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);
937         if (!IS_ERR(ek)) {
938                 ek->h.expiry_time = get_seconds()-1;
939                 cache_put(&ek->h, &svc_expkey_cache);
940         }
941         svc_expkey_cache.nextcheck = get_seconds();
942 }
943
944 static 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
951         mk_fsid(FSID_NUM, fsid, 0, 0, exp->ex_fsid, NULL);
952         return exp_set_key(clp, FSID_NUM, fsid, exp);
953 }
954
955 static int exp_hash(struct auth_domain *clp, struct svc_export *exp)
956 {
957         u32 fsid[2];
958         struct inode *inode = exp->ex_path.dentry->d_inode;
959         dev_t dev = inode->i_sb->s_dev;
960
961         if (old_valid_dev(dev)) {
962                 mk_fsid(FSID_DEV, fsid, dev, inode->i_ino, 0, NULL);
963                 return exp_set_key(clp, FSID_DEV, fsid, exp);
964         }
965         mk_fsid(FSID_ENCODE_DEV, fsid, dev, inode->i_ino, 0, NULL);
966         return exp_set_key(clp, FSID_ENCODE_DEV, fsid, exp);
967 }
968
969 static void exp_unhash(struct svc_export *exp)
970 {
971         struct svc_expkey *ek;
972         struct inode *inode = exp->ex_path.dentry->d_inode;
973
974         ek = exp_get_key(exp->ex_client, inode->i_sb->s_dev, inode->i_ino);
975         if (!IS_ERR(ek)) {
976                 ek->h.expiry_time = get_seconds()-1;
977                 cache_put(&ek->h, &svc_expkey_cache);
978         }
979         svc_expkey_cache.nextcheck = get_seconds();
980 }
981         
982 /*
983  * Export a file system.
984  */
985 int
986 exp_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;
992         struct path path;
993         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 */
1015         err = kern_path(nxp->ex_path, 0, &path);
1016         if (err)
1017                 goto out_put_clp;
1018         err = -EINVAL;
1019
1020         exp = exp_get_by_name(clp, path.mnt, path.dentry, NULL);
1021
1022         memset(&new, 0, sizeof(new));
1023
1024         /* must make sure there won't be an ex_fsid clash */
1025         if ((nxp->ex_flags & NFSEXP_FSID) &&
1026             (!IS_ERR(fsid_key = exp_get_fsid_key(clp, nxp->ex_dev))) &&
1027             fsid_key->ek_path.mnt &&
1028             (fsid_key->ek_path.mnt != path.mnt ||
1029              fsid_key->ek_path.dentry != path.dentry))
1030                 goto finish;
1031
1032         if (!IS_ERR(exp)) {
1033                 /* 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
1045         err = check_export(path.dentry->d_inode, nxp->ex_flags, NULL);
1046         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;
1054         new.ex_pathname = kstrdup(nxp->ex_path, GFP_KERNEL);
1055         if (!new.ex_pathname)
1056                 goto finish;
1057         new.ex_client = clp;
1058         new.ex_path = path;
1059         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
1064         exp = svc_export_lookup(&new);
1065         if (exp)
1066                 exp = svc_export_update(&new, exp);
1067
1068         if (!exp)
1069                 goto finish;
1070
1071         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();
1076         } else
1077                 err = 0;
1078 finish:
1079         kfree(new.ex_pathname);
1080         if (exp)
1081                 exp_put(exp);
1082         if (fsid_key && !IS_ERR(fsid_key))
1083                 cache_put(&fsid_key->h, &svc_expkey_cache);
1084         path_put(&path);
1085 out_put_clp:
1086         auth_domain_put(clp);
1087 out_unlock:
1088         exp_writeunlock();
1089 out:
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  */
1097 static void
1098 exp_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  */
1110 int
1111 exp_unexport(struct nfsctl_export *nxp)
1112 {
1113         struct auth_domain *dom;
1114         svc_export *exp;
1115         struct path path;
1116         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
1132         err = kern_path(nxp->ex_path, 0, &path);
1133         if (err)
1134                 goto out_domain;
1135
1136         err = -EINVAL;
1137         exp = exp_get_by_name(dom, path.mnt, path.dentry, NULL);
1138         path_put(&path);
1139         if (IS_ERR(exp))
1140                 goto out_domain;
1141
1142         exp_do_unexport(exp);
1143         exp_put(exp);
1144         err = 0;
1145
1146 out_domain:
1147         auth_domain_put(dom);
1148         cache_flush();
1149 out_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  */
1159 int
1160 exp_rootfh(svc_client *clp, char *name, struct knfsd_fh *f, int maxsize)
1161 {
1162         struct svc_export       *exp;
1163         struct path             path;
1164         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 */
1170         if (kern_path(name, 0, &path)) {
1171                 printk("nfsd: exp_rootfh path not found %s", name);
1172                 return err;
1173         }
1174         inode = path.dentry->d_inode;
1175
1176         dprintk("nfsd: exp_rootfh(%s [%p] %s:%s/%ld)\n",
1177                  name, path.dentry, clp->name,
1178                  inode->i_sb->s_id, inode->i_ino);
1179         exp = exp_parent(clp, path.mnt, path.dentry, NULL);
1180         if (IS_ERR(exp)) {
1181                 err = PTR_ERR(exp);
1182                 goto out;
1183         }
1184
1185         /*
1186          * fh must be initialized before calling fh_compose
1187          */
1188         fh_init(&fh, maxsize);
1189         if (fh_compose(&fh, exp, path.dentry, NULL))
1190                 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);
1196 out:
1197         path_put(&path);
1198         return err;
1199 }
1200
1201 static struct svc_export *exp_find(struct auth_domain *clp, int fsid_type,
1202                                    u32 *fsidv, struct cache_req *reqp)
1203 {
1204         struct svc_export *exp;
1205         struct svc_expkey *ek = exp_find_key(clp, fsid_type, fsidv, reqp);
1206         if (IS_ERR(ek))
1207                 return ERR_CAST(ek);
1208
1209         exp = exp_get_by_name(clp, ek->ek_path.mnt, ek->ek_path.dentry, reqp);
1210         cache_put(&ek->h, &svc_expkey_cache);
1211
1212         if (IS_ERR(exp))
1213                 return ERR_CAST(exp);
1214         return exp;
1215 }
1216
1217 __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
1239 /*
1240  * 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  *
1244  * 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  */
1248 struct svc_export *
1249 rqst_exp_get_by_name(struct svc_rqst *rqstp, struct vfsmount *mnt,
1250                 struct dentry *dentry)
1251 {
1252         struct svc_export *gssexp, *exp = ERR_PTR(-ENOENT);
1253
1254         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;
1267 gss:
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;
1275         if (!IS_ERR(exp))
1276                 exp_put(exp);
1277         return gssexp;
1278 }
1279
1280 struct svc_export *
1281 rqst_exp_find(struct svc_rqst *rqstp, int fsid_type, u32 *fsidv)
1282 {
1283         struct svc_export *gssexp, *exp = ERR_PTR(-ENOENT);
1284
1285         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;
1297 gss:
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;
1305         if (!IS_ERR(exp))
1306                 exp_put(exp);
1307         return gssexp;
1308 }
1309
1310 struct svc_export *
1311 rqst_exp_parent(struct svc_rqst *rqstp, struct vfsmount *mnt,
1312                 struct dentry *dentry)
1313 {
1314         struct svc_export *exp;
1315
1316         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;
1329 }
1330
1331 /*
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  */
1336 __be32
1337 exp_pseudoroot(struct svc_rqst *rqstp, struct svc_fh *fhp)
1338 {
1339         struct svc_export *exp;
1340         __be32 rv;
1341         u32 fsidv[2];
1342
1343         mk_fsid(FSID_NUM, fsidv, 0, 0, 0, NULL);
1344
1345         exp = rqst_exp_find(rqstp, FSID_NUM, fsidv);
1346         if (IS_ERR(exp))
1347                 return nfserrno(PTR_ERR(exp));
1348         rv = fh_compose(fhp, exp, exp->ex_path.dentry, NULL);
1349         if (rv)
1350                 goto out;
1351         rv = check_nfsd_access(exp, rqstp);
1352 out:
1353         exp_put(exp);
1354         return rv;
1355 }
1356
1357 /* Iterator */
1358
1359 static void *e_start(struct seq_file *m, loff_t *pos)
1360         __acquires(svc_export_cache.hash_lock)
1361 {
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--)
1369                 return SEQ_START_TOKEN;
1370         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
1388 static 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
1393         if (p == SEQ_START_TOKEN)
1394                 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
1413 static void e_stop(struct seq_file *m, void *p)
1414         __releases(svc_export_cache.hash_lock)
1415 {
1416         read_unlock(&svc_export_cache.hash_lock);
1417         exp_readunlock();
1418 }
1419
1420 static 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
1440 static void show_expflags(struct seq_file *m, int flags, int mask)
1441 {
1442         struct flags *flg;
1443         int state, first = 0;
1444
1445         for (flg = expflags; flg->flag; flg++) {
1446                 if (flg->flag & ~mask)
1447                         continue;
1448                 state = (flg->flag & flags) ? 0 : 1;
1449                 if (*flg->name[state])
1450                         seq_printf(m, "%s%s", first++?",":"", flg->name[state]);
1451         }
1452 }
1453
1454 static 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
1460 static 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
1481 static 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);
1485         if (flag & NFSEXP_FSID)
1486                 seq_printf(m, ",fsid=%d", fsid);
1487         if (anonu != (uid_t)-2 && anonu != (0x10000-2))
1488                 seq_printf(m, ",anonuid=%u", anonu);
1489         if (anong != (gid_t)-2 && anong != (0x10000-2))
1490                 seq_printf(m, ",anongid=%u", anong);
1491         if (fsloc && fsloc->locations_count > 0) {
1492                 char *loctype = (fsloc->migrated) ? "refer" : "replicas";
1493                 int i;
1494
1495                 seq_printf(m, ",%s=", loctype);
1496                 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         }
1506 }
1507
1508 static 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);
1512
1513         if (p == SEQ_START_TOKEN) {
1514                 seq_puts(m, "# Version 1.1\n");
1515                 seq_puts(m, "# Path Client(Flags) # IPs\n");
1516                 return 0;
1517         }
1518
1519         cache_get(&exp->h);
1520         if (cache_check(&svc_export_cache, &exp->h, NULL))
1521                 return 0;
1522         cache_put(&exp->h, &svc_export_cache);
1523         return svc_export_show(m, &svc_export_cache, cp);
1524 }
1525
1526 struct 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  */
1538 int
1539 exp_addclient(struct nfsctl_client *ncp)
1540 {
1541         struct auth_domain      *dom;
1542         int                     i, err;
1543         struct in6_addr addr6;
1544
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. */
1562         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         }
1566         auth_unix_forget_old(dom);
1567         auth_domain_put(dom);
1568
1569         err = 0;
1570
1571 out_unlock:
1572         exp_writeunlock();
1573 out:
1574         return err;
1575 }
1576
1577 /*
1578  * Delete a client given an identifier.
1579  */
1580 int
1581 exp_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);
1599                 auth_domain_put(dom);
1600         }
1601
1602         exp_writeunlock();
1603 out:
1604         return err;
1605 }
1606
1607 /*
1608  * Verify that string is non-empty and does not exceed max length.
1609  */
1610 static int
1611 exp_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  */
1626 int
1627 nfsd_export_init(void)
1628 {
1629         int rv;
1630         dprintk("nfsd: initializing export module.\n");
1631
1632         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;
1639
1640 }
1641
1642 /*
1643  * Flush exports table - called when last nfsd thread is killed
1644  */
1645 void
1646 nfsd_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  */
1657 void
1658 nfsd_export_shutdown(void)
1659 {
1660
1661         dprintk("nfsd: shutting down export module.\n");
1662
1663         exp_writelock();
1664
1665         cache_unregister(&svc_expkey_cache);
1666         cache_unregister(&svc_export_cache);
1667         svcauth_unix_purge();
1668
1669         exp_writeunlock();
1670         dprintk("nfsd: export shutdown complete.\n");
1671 }