nfsd: Source files #include cleanups
[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/namei.h>
18 #include <linux/module.h>
19 #include <linux/exportfs.h>
20
21 #include <linux/nfsd/nfsd.h>
22 #include <linux/nfsd/syscall.h>
23 #include <net/ipv6.h>
24
25 #define NFSDDBG_FACILITY        NFSDDBG_EXPORT
26
27 typedef struct auth_domain      svc_client;
28 typedef struct svc_export       svc_export;
29
30 static void             exp_do_unexport(svc_export *unexp);
31 static int              exp_verify_string(char *cp, int max);
32
33 /*
34  * We have two caches.
35  * One maps client+vfsmnt+dentry to export options - the export map
36  * The other maps client+filehandle-fragment to export options. - the expkey map
37  *
38  * The export options are actually stored in the first map, and the
39  * second map contains a reference to the entry in the first map.
40  */
41
42 #define EXPKEY_HASHBITS         8
43 #define EXPKEY_HASHMAX          (1 << EXPKEY_HASHBITS)
44 #define EXPKEY_HASHMASK         (EXPKEY_HASHMAX -1)
45 static struct cache_head *expkey_table[EXPKEY_HASHMAX];
46
47 static void expkey_put(struct kref *ref)
48 {
49         struct svc_expkey *key = container_of(ref, struct svc_expkey, h.ref);
50
51         if (test_bit(CACHE_VALID, &key->h.flags) &&
52             !test_bit(CACHE_NEGATIVE, &key->h.flags))
53                 path_put(&key->ek_path);
54         auth_domain_put(key->ek_client);
55         kfree(key);
56 }
57
58 static void expkey_request(struct cache_detail *cd,
59                            struct cache_head *h,
60                            char **bpp, int *blen)
61 {
62         /* client fsidtype \xfsid */
63         struct svc_expkey *ek = container_of(h, struct svc_expkey, h);
64         char type[5];
65
66         qword_add(bpp, blen, ek->ek_client->name);
67         snprintf(type, 5, "%d", ek->ek_fsidtype);
68         qword_add(bpp, blen, type);
69         qword_addhex(bpp, blen, (char*)ek->ek_fsid, key_len(ek->ek_fsidtype));
70         (*bpp)[-1] = '\n';
71 }
72
73 static int expkey_upcall(struct cache_detail *cd, struct cache_head *h)
74 {
75         return sunrpc_cache_pipe_upcall(cd, h, expkey_request);
76 }
77
78 static struct svc_expkey *svc_expkey_update(struct svc_expkey *new, struct svc_expkey *old);
79 static struct svc_expkey *svc_expkey_lookup(struct svc_expkey *);
80 static struct cache_detail svc_expkey_cache;
81
82 static int expkey_parse(struct cache_detail *cd, char *mesg, int mlen)
83 {
84         /* client fsidtype fsid [path] */
85         char *buf;
86         int len;
87         struct auth_domain *dom = NULL;
88         int err;
89         int fsidtype;
90         char *ep;
91         struct svc_expkey key;
92         struct svc_expkey *ek = NULL;
93
94         if (mesg[mlen-1] != '\n')
95                 return -EINVAL;
96         mesg[mlen-1] = 0;
97
98         buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
99         err = -ENOMEM;
100         if (!buf)
101                 goto out;
102
103         err = -EINVAL;
104         if ((len=qword_get(&mesg, buf, PAGE_SIZE)) <= 0)
105                 goto out;
106
107         err = -ENOENT;
108         dom = auth_domain_find(buf);
109         if (!dom)
110                 goto out;
111         dprintk("found domain %s\n", buf);
112
113         err = -EINVAL;
114         if ((len=qword_get(&mesg, buf, PAGE_SIZE)) <= 0)
115                 goto out;
116         fsidtype = simple_strtoul(buf, &ep, 10);
117         if (*ep)
118                 goto out;
119         dprintk("found fsidtype %d\n", fsidtype);
120         if (key_len(fsidtype)==0) /* invalid type */
121                 goto out;
122         if ((len=qword_get(&mesg, buf, PAGE_SIZE)) <= 0)
123                 goto out;
124         dprintk("found fsid length %d\n", len);
125         if (len != key_len(fsidtype))
126                 goto out;
127
128         /* OK, we seem to have a valid key */
129         key.h.flags = 0;
130         key.h.expiry_time = get_expiry(&mesg);
131         if (key.h.expiry_time == 0)
132                 goto out;
133
134         key.ek_client = dom;    
135         key.ek_fsidtype = fsidtype;
136         memcpy(key.ek_fsid, buf, len);
137
138         ek = svc_expkey_lookup(&key);
139         err = -ENOMEM;
140         if (!ek)
141                 goto out;
142
143         /* now we want a pathname, or empty meaning NEGATIVE  */
144         err = -EINVAL;
145         len = qword_get(&mesg, buf, PAGE_SIZE);
146         if (len < 0)
147                 goto out;
148         dprintk("Path seems to be <%s>\n", buf);
149         err = 0;
150         if (len == 0) {
151                 set_bit(CACHE_NEGATIVE, &key.h.flags);
152                 ek = svc_expkey_update(&key, ek);
153                 if (!ek)
154                         err = -ENOMEM;
155         } else {
156                 err = kern_path(buf, 0, &key.ek_path);
157                 if (err)
158                         goto out;
159
160                 dprintk("Found the path %s\n", buf);
161
162                 ek = svc_expkey_update(&key, ek);
163                 if (!ek)
164                         err = -ENOMEM;
165                 path_put(&key.ek_path);
166         }
167         cache_flush();
168  out:
169         if (ek)
170                 cache_put(&ek->h, &svc_expkey_cache);
171         if (dom)
172                 auth_domain_put(dom);
173         kfree(buf);
174         return err;
175 }
176
177 static int expkey_show(struct seq_file *m,
178                        struct cache_detail *cd,
179                        struct cache_head *h)
180 {
181         struct svc_expkey *ek ;
182         int i;
183
184         if (h ==NULL) {
185                 seq_puts(m, "#domain fsidtype fsid [path]\n");
186                 return 0;
187         }
188         ek = container_of(h, struct svc_expkey, h);
189         seq_printf(m, "%s %d 0x", ek->ek_client->name,
190                    ek->ek_fsidtype);
191         for (i=0; i < key_len(ek->ek_fsidtype)/4; i++)
192                 seq_printf(m, "%08x", ek->ek_fsid[i]);
193         if (test_bit(CACHE_VALID, &h->flags) && 
194             !test_bit(CACHE_NEGATIVE, &h->flags)) {
195                 seq_printf(m, " ");
196                 seq_path(m, &ek->ek_path, "\\ \t\n");
197         }
198         seq_printf(m, "\n");
199         return 0;
200 }
201
202 static inline int expkey_match (struct cache_head *a, struct cache_head *b)
203 {
204         struct svc_expkey *orig = container_of(a, struct svc_expkey, h);
205         struct svc_expkey *new = container_of(b, struct svc_expkey, h);
206
207         if (orig->ek_fsidtype != new->ek_fsidtype ||
208             orig->ek_client != new->ek_client ||
209             memcmp(orig->ek_fsid, new->ek_fsid, key_len(orig->ek_fsidtype)) != 0)
210                 return 0;
211         return 1;
212 }
213
214 static inline void expkey_init(struct cache_head *cnew,
215                                    struct cache_head *citem)
216 {
217         struct svc_expkey *new = container_of(cnew, struct svc_expkey, h);
218         struct svc_expkey *item = container_of(citem, struct svc_expkey, h);
219
220         kref_get(&item->ek_client->ref);
221         new->ek_client = item->ek_client;
222         new->ek_fsidtype = item->ek_fsidtype;
223
224         memcpy(new->ek_fsid, item->ek_fsid, sizeof(new->ek_fsid));
225 }
226
227 static inline void expkey_update(struct cache_head *cnew,
228                                    struct cache_head *citem)
229 {
230         struct svc_expkey *new = container_of(cnew, struct svc_expkey, h);
231         struct svc_expkey *item = container_of(citem, struct svc_expkey, h);
232
233         new->ek_path = item->ek_path;
234         path_get(&item->ek_path);
235 }
236
237 static struct cache_head *expkey_alloc(void)
238 {
239         struct svc_expkey *i = kmalloc(sizeof(*i), GFP_KERNEL);
240         if (i)
241                 return &i->h;
242         else
243                 return NULL;
244 }
245
246 static struct cache_detail svc_expkey_cache = {
247         .owner          = THIS_MODULE,
248         .hash_size      = EXPKEY_HASHMAX,
249         .hash_table     = expkey_table,
250         .name           = "nfsd.fh",
251         .cache_put      = expkey_put,
252         .cache_upcall   = expkey_upcall,
253         .cache_parse    = expkey_parse,
254         .cache_show     = expkey_show,
255         .match          = expkey_match,
256         .init           = expkey_init,
257         .update         = expkey_update,
258         .alloc          = expkey_alloc,
259 };
260
261 static struct svc_expkey *
262 svc_expkey_lookup(struct svc_expkey *item)
263 {
264         struct cache_head *ch;
265         int hash = item->ek_fsidtype;
266         char * cp = (char*)item->ek_fsid;
267         int len = key_len(item->ek_fsidtype);
268
269         hash ^= hash_mem(cp, len, EXPKEY_HASHBITS);
270         hash ^= hash_ptr(item->ek_client, EXPKEY_HASHBITS);
271         hash &= EXPKEY_HASHMASK;
272
273         ch = sunrpc_cache_lookup(&svc_expkey_cache, &item->h,
274                                  hash);
275         if (ch)
276                 return container_of(ch, struct svc_expkey, h);
277         else
278                 return NULL;
279 }
280
281 static struct svc_expkey *
282 svc_expkey_update(struct svc_expkey *new, struct svc_expkey *old)
283 {
284         struct cache_head *ch;
285         int hash = new->ek_fsidtype;
286         char * cp = (char*)new->ek_fsid;
287         int len = key_len(new->ek_fsidtype);
288
289         hash ^= hash_mem(cp, len, EXPKEY_HASHBITS);
290         hash ^= hash_ptr(new->ek_client, EXPKEY_HASHBITS);
291         hash &= EXPKEY_HASHMASK;
292
293         ch = sunrpc_cache_update(&svc_expkey_cache, &new->h,
294                                  &old->h, hash);
295         if (ch)
296                 return container_of(ch, struct svc_expkey, h);
297         else
298                 return NULL;
299 }
300
301
302 #define EXPORT_HASHBITS         8
303 #define EXPORT_HASHMAX          (1<< EXPORT_HASHBITS)
304 #define EXPORT_HASHMASK         (EXPORT_HASHMAX -1)
305
306 static struct cache_head *export_table[EXPORT_HASHMAX];
307
308 static void nfsd4_fslocs_free(struct nfsd4_fs_locations *fsloc)
309 {
310         int i;
311
312         for (i = 0; i < fsloc->locations_count; i++) {
313                 kfree(fsloc->locations[i].path);
314                 kfree(fsloc->locations[i].hosts);
315         }
316         kfree(fsloc->locations);
317 }
318
319 static void svc_export_put(struct kref *ref)
320 {
321         struct svc_export *exp = container_of(ref, struct svc_export, h.ref);
322         path_put(&exp->ex_path);
323         auth_domain_put(exp->ex_client);
324         kfree(exp->ex_pathname);
325         nfsd4_fslocs_free(&exp->ex_fslocs);
326         kfree(exp);
327 }
328
329 static void svc_export_request(struct cache_detail *cd,
330                                struct cache_head *h,
331                                char **bpp, int *blen)
332 {
333         /*  client path */
334         struct svc_export *exp = container_of(h, struct svc_export, h);
335         char *pth;
336
337         qword_add(bpp, blen, exp->ex_client->name);
338         pth = d_path(&exp->ex_path, *bpp, *blen);
339         if (IS_ERR(pth)) {
340                 /* is this correct? */
341                 (*bpp)[0] = '\n';
342                 return;
343         }
344         qword_add(bpp, blen, pth);
345         (*bpp)[-1] = '\n';
346 }
347
348 static int svc_export_upcall(struct cache_detail *cd, struct cache_head *h)
349 {
350         return sunrpc_cache_pipe_upcall(cd, h, svc_export_request);
351 }
352
353 static struct svc_export *svc_export_update(struct svc_export *new,
354                                             struct svc_export *old);
355 static struct svc_export *svc_export_lookup(struct svc_export *);
356
357 static int check_export(struct inode *inode, int flags, unsigned char *uuid)
358 {
359
360         /* We currently export only dirs and regular files.
361          * This is what umountd does.
362          */
363         if (!S_ISDIR(inode->i_mode) &&
364             !S_ISREG(inode->i_mode))
365                 return -ENOTDIR;
366
367         /* There are two requirements on a filesystem to be exportable.
368          * 1:  We must be able to identify the filesystem from a number.
369          *       either a device number (so FS_REQUIRES_DEV needed)
370          *       or an FSID number (so NFSEXP_FSID or ->uuid is needed).
371          * 2:  We must be able to find an inode from a filehandle.
372          *       This means that s_export_op must be set.
373          */
374         if (!(inode->i_sb->s_type->fs_flags & FS_REQUIRES_DEV) &&
375             !(flags & NFSEXP_FSID) &&
376             uuid == NULL) {
377                 dprintk("exp_export: export of non-dev fs without fsid\n");
378                 return -EINVAL;
379         }
380
381         if (!inode->i_sb->s_export_op ||
382             !inode->i_sb->s_export_op->fh_to_dentry) {
383                 dprintk("exp_export: export of invalid fs type.\n");
384                 return -EINVAL;
385         }
386
387         return 0;
388
389 }
390
391 #ifdef CONFIG_NFSD_V4
392
393 static int
394 fsloc_parse(char **mesg, char *buf, struct nfsd4_fs_locations *fsloc)
395 {
396         int len;
397         int migrated, i, err;
398
399         /* listsize */
400         err = get_int(mesg, &fsloc->locations_count);
401         if (err)
402                 return err;
403         if (fsloc->locations_count > MAX_FS_LOCATIONS)
404                 return -EINVAL;
405         if (fsloc->locations_count == 0)
406                 return 0;
407
408         fsloc->locations = kzalloc(fsloc->locations_count
409                         * sizeof(struct nfsd4_fs_location), GFP_KERNEL);
410         if (!fsloc->locations)
411                 return -ENOMEM;
412         for (i=0; i < fsloc->locations_count; i++) {
413                 /* colon separated host list */
414                 err = -EINVAL;
415                 len = qword_get(mesg, buf, PAGE_SIZE);
416                 if (len <= 0)
417                         goto out_free_all;
418                 err = -ENOMEM;
419                 fsloc->locations[i].hosts = kstrdup(buf, GFP_KERNEL);
420                 if (!fsloc->locations[i].hosts)
421                         goto out_free_all;
422                 err = -EINVAL;
423                 /* slash separated path component list */
424                 len = qword_get(mesg, buf, PAGE_SIZE);
425                 if (len <= 0)
426                         goto out_free_all;
427                 err = -ENOMEM;
428                 fsloc->locations[i].path = kstrdup(buf, GFP_KERNEL);
429                 if (!fsloc->locations[i].path)
430                         goto out_free_all;
431         }
432         /* migrated */
433         err = get_int(mesg, &migrated);
434         if (err)
435                 goto out_free_all;
436         err = -EINVAL;
437         if (migrated < 0 || migrated > 1)
438                 goto out_free_all;
439         fsloc->migrated = migrated;
440         return 0;
441 out_free_all:
442         nfsd4_fslocs_free(fsloc);
443         return err;
444 }
445
446 static int secinfo_parse(char **mesg, char *buf, struct svc_export *exp)
447 {
448         int listsize, err;
449         struct exp_flavor_info *f;
450
451         err = get_int(mesg, &listsize);
452         if (err)
453                 return err;
454         if (listsize < 0 || listsize > MAX_SECINFO_LIST)
455                 return -EINVAL;
456
457         for (f = exp->ex_flavors; f < exp->ex_flavors + listsize; f++) {
458                 err = get_int(mesg, &f->pseudoflavor);
459                 if (err)
460                         return err;
461                 /*
462                  * XXX: It would be nice to also check whether this
463                  * pseudoflavor is supported, so we can discover the
464                  * problem at export time instead of when a client fails
465                  * to authenticate.
466                  */
467                 err = get_int(mesg, &f->flags);
468                 if (err)
469                         return err;
470                 /* Only some flags are allowed to differ between flavors: */
471                 if (~NFSEXP_SECINFO_FLAGS & (f->flags ^ exp->ex_flags))
472                         return -EINVAL;
473         }
474         exp->ex_nflavors = listsize;
475         return 0;
476 }
477
478 #else /* CONFIG_NFSD_V4 */
479 static inline int
480 fsloc_parse(char **mesg, char *buf, struct nfsd4_fs_locations *fsloc){return 0;}
481 static inline int
482 secinfo_parse(char **mesg, char *buf, struct svc_export *exp) { return 0; }
483 #endif
484
485 static int svc_export_parse(struct cache_detail *cd, char *mesg, int mlen)
486 {
487         /* client path expiry [flags anonuid anongid fsid] */
488         char *buf;
489         int len;
490         int err;
491         struct auth_domain *dom = NULL;
492         struct svc_export exp = {}, *expp;
493         int an_int;
494
495         if (mesg[mlen-1] != '\n')
496                 return -EINVAL;
497         mesg[mlen-1] = 0;
498
499         buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
500         if (!buf)
501                 return -ENOMEM;
502
503         /* client */
504         err = -EINVAL;
505         len = qword_get(&mesg, buf, PAGE_SIZE);
506         if (len <= 0)
507                 goto out;
508
509         err = -ENOENT;
510         dom = auth_domain_find(buf);
511         if (!dom)
512                 goto out;
513
514         /* path */
515         err = -EINVAL;
516         if ((len = qword_get(&mesg, buf, PAGE_SIZE)) <= 0)
517                 goto out1;
518
519         err = kern_path(buf, 0, &exp.ex_path);
520         if (err)
521                 goto out1;
522
523         exp.ex_client = dom;
524
525         err = -ENOMEM;
526         exp.ex_pathname = kstrdup(buf, GFP_KERNEL);
527         if (!exp.ex_pathname)
528                 goto out2;
529
530         /* expiry */
531         err = -EINVAL;
532         exp.h.expiry_time = get_expiry(&mesg);
533         if (exp.h.expiry_time == 0)
534                 goto out3;
535
536         /* flags */
537         err = get_int(&mesg, &an_int);
538         if (err == -ENOENT) {
539                 err = 0;
540                 set_bit(CACHE_NEGATIVE, &exp.h.flags);
541         } else {
542                 if (err || an_int < 0)
543                         goto out3;
544                 exp.ex_flags= an_int;
545         
546                 /* anon uid */
547                 err = get_int(&mesg, &an_int);
548                 if (err)
549                         goto out3;
550                 exp.ex_anon_uid= an_int;
551
552                 /* anon gid */
553                 err = get_int(&mesg, &an_int);
554                 if (err)
555                         goto out3;
556                 exp.ex_anon_gid= an_int;
557
558                 /* fsid */
559                 err = get_int(&mesg, &an_int);
560                 if (err)
561                         goto out3;
562                 exp.ex_fsid = an_int;
563
564                 while ((len = qword_get(&mesg, buf, PAGE_SIZE)) > 0) {
565                         if (strcmp(buf, "fsloc") == 0)
566                                 err = fsloc_parse(&mesg, buf, &exp.ex_fslocs);
567                         else if (strcmp(buf, "uuid") == 0) {
568                                 /* expect a 16 byte uuid encoded as \xXXXX... */
569                                 len = qword_get(&mesg, buf, PAGE_SIZE);
570                                 if (len != 16)
571                                         err  = -EINVAL;
572                                 else {
573                                         exp.ex_uuid =
574                                                 kmemdup(buf, 16, GFP_KERNEL);
575                                         if (exp.ex_uuid == NULL)
576                                                 err = -ENOMEM;
577                                 }
578                         } else if (strcmp(buf, "secinfo") == 0)
579                                 err = secinfo_parse(&mesg, buf, &exp);
580                         else
581                                 /* quietly ignore unknown words and anything
582                                  * following. Newer user-space can try to set
583                                  * new values, then see what the result was.
584                                  */
585                                 break;
586                         if (err)
587                                 goto out4;
588                 }
589
590                 err = check_export(exp.ex_path.dentry->d_inode, exp.ex_flags,
591                                    exp.ex_uuid);
592                 if (err)
593                         goto out4;
594         }
595
596         expp = svc_export_lookup(&exp);
597         if (expp)
598                 expp = svc_export_update(&exp, expp);
599         else
600                 err = -ENOMEM;
601         cache_flush();
602         if (expp == NULL)
603                 err = -ENOMEM;
604         else
605                 exp_put(expp);
606 out4:
607         nfsd4_fslocs_free(&exp.ex_fslocs);
608         kfree(exp.ex_uuid);
609 out3:
610         kfree(exp.ex_pathname);
611 out2:
612         path_put(&exp.ex_path);
613 out1:
614         auth_domain_put(dom);
615 out:
616         kfree(buf);
617         return err;
618 }
619
620 static void exp_flags(struct seq_file *m, int flag, int fsid,
621                 uid_t anonu, uid_t anong, struct nfsd4_fs_locations *fslocs);
622 static void show_secinfo(struct seq_file *m, struct svc_export *exp);
623
624 static int svc_export_show(struct seq_file *m,
625                            struct cache_detail *cd,
626                            struct cache_head *h)
627 {
628         struct svc_export *exp ;
629
630         if (h ==NULL) {
631                 seq_puts(m, "#path domain(flags)\n");
632                 return 0;
633         }
634         exp = container_of(h, struct svc_export, h);
635         seq_path(m, &exp->ex_path, " \t\n\\");
636         seq_putc(m, '\t');
637         seq_escape(m, exp->ex_client->name, " \t\n\\");
638         seq_putc(m, '(');
639         if (test_bit(CACHE_VALID, &h->flags) && 
640             !test_bit(CACHE_NEGATIVE, &h->flags)) {
641                 exp_flags(m, exp->ex_flags, exp->ex_fsid,
642                           exp->ex_anon_uid, exp->ex_anon_gid, &exp->ex_fslocs);
643                 if (exp->ex_uuid) {
644                         int i;
645                         seq_puts(m, ",uuid=");
646                         for (i=0; i<16; i++) {
647                                 if ((i&3) == 0 && i)
648                                         seq_putc(m, ':');
649                                 seq_printf(m, "%02x", exp->ex_uuid[i]);
650                         }
651                 }
652                 show_secinfo(m, exp);
653         }
654         seq_puts(m, ")\n");
655         return 0;
656 }
657 static int svc_export_match(struct cache_head *a, struct cache_head *b)
658 {
659         struct svc_export *orig = container_of(a, struct svc_export, h);
660         struct svc_export *new = container_of(b, struct svc_export, h);
661         return orig->ex_client == new->ex_client &&
662                 orig->ex_path.dentry == new->ex_path.dentry &&
663                 orig->ex_path.mnt == new->ex_path.mnt;
664 }
665
666 static void svc_export_init(struct cache_head *cnew, struct cache_head *citem)
667 {
668         struct svc_export *new = container_of(cnew, struct svc_export, h);
669         struct svc_export *item = container_of(citem, struct svc_export, h);
670
671         kref_get(&item->ex_client->ref);
672         new->ex_client = item->ex_client;
673         new->ex_path.dentry = dget(item->ex_path.dentry);
674         new->ex_path.mnt = mntget(item->ex_path.mnt);
675         new->ex_pathname = NULL;
676         new->ex_fslocs.locations = NULL;
677         new->ex_fslocs.locations_count = 0;
678         new->ex_fslocs.migrated = 0;
679 }
680
681 static void export_update(struct cache_head *cnew, struct cache_head *citem)
682 {
683         struct svc_export *new = container_of(cnew, struct svc_export, h);
684         struct svc_export *item = container_of(citem, struct svc_export, h);
685         int i;
686
687         new->ex_flags = item->ex_flags;
688         new->ex_anon_uid = item->ex_anon_uid;
689         new->ex_anon_gid = item->ex_anon_gid;
690         new->ex_fsid = item->ex_fsid;
691         new->ex_uuid = item->ex_uuid;
692         item->ex_uuid = NULL;
693         new->ex_pathname = item->ex_pathname;
694         item->ex_pathname = NULL;
695         new->ex_fslocs.locations = item->ex_fslocs.locations;
696         item->ex_fslocs.locations = NULL;
697         new->ex_fslocs.locations_count = item->ex_fslocs.locations_count;
698         item->ex_fslocs.locations_count = 0;
699         new->ex_fslocs.migrated = item->ex_fslocs.migrated;
700         item->ex_fslocs.migrated = 0;
701         new->ex_nflavors = item->ex_nflavors;
702         for (i = 0; i < MAX_SECINFO_LIST; i++) {
703                 new->ex_flavors[i] = item->ex_flavors[i];
704         }
705 }
706
707 static struct cache_head *svc_export_alloc(void)
708 {
709         struct svc_export *i = kmalloc(sizeof(*i), GFP_KERNEL);
710         if (i)
711                 return &i->h;
712         else
713                 return NULL;
714 }
715
716 struct cache_detail svc_export_cache = {
717         .owner          = THIS_MODULE,
718         .hash_size      = EXPORT_HASHMAX,
719         .hash_table     = export_table,
720         .name           = "nfsd.export",
721         .cache_put      = svc_export_put,
722         .cache_upcall   = svc_export_upcall,
723         .cache_parse    = svc_export_parse,
724         .cache_show     = svc_export_show,
725         .match          = svc_export_match,
726         .init           = svc_export_init,
727         .update         = export_update,
728         .alloc          = svc_export_alloc,
729 };
730
731 static struct svc_export *
732 svc_export_lookup(struct svc_export *exp)
733 {
734         struct cache_head *ch;
735         int hash;
736         hash = hash_ptr(exp->ex_client, EXPORT_HASHBITS);
737         hash ^= hash_ptr(exp->ex_path.dentry, EXPORT_HASHBITS);
738         hash ^= hash_ptr(exp->ex_path.mnt, EXPORT_HASHBITS);
739
740         ch = sunrpc_cache_lookup(&svc_export_cache, &exp->h,
741                                  hash);
742         if (ch)
743                 return container_of(ch, struct svc_export, h);
744         else
745                 return NULL;
746 }
747
748 static struct svc_export *
749 svc_export_update(struct svc_export *new, struct svc_export *old)
750 {
751         struct cache_head *ch;
752         int hash;
753         hash = hash_ptr(old->ex_client, EXPORT_HASHBITS);
754         hash ^= hash_ptr(old->ex_path.dentry, EXPORT_HASHBITS);
755         hash ^= hash_ptr(old->ex_path.mnt, EXPORT_HASHBITS);
756
757         ch = sunrpc_cache_update(&svc_export_cache, &new->h,
758                                  &old->h,
759                                  hash);
760         if (ch)
761                 return container_of(ch, struct svc_export, h);
762         else
763                 return NULL;
764 }
765
766
767 static struct svc_expkey *
768 exp_find_key(svc_client *clp, int fsid_type, u32 *fsidv, struct cache_req *reqp)
769 {
770         struct svc_expkey key, *ek;
771         int err;
772         
773         if (!clp)
774                 return ERR_PTR(-ENOENT);
775
776         key.ek_client = clp;
777         key.ek_fsidtype = fsid_type;
778         memcpy(key.ek_fsid, fsidv, key_len(fsid_type));
779
780         ek = svc_expkey_lookup(&key);
781         if (ek == NULL)
782                 return ERR_PTR(-ENOMEM);
783         err = cache_check(&svc_expkey_cache, &ek->h, reqp);
784         if (err)
785                 return ERR_PTR(err);
786         return ek;
787 }
788
789 static int exp_set_key(svc_client *clp, int fsid_type, u32 *fsidv,
790                        struct svc_export *exp)
791 {
792         struct svc_expkey key, *ek;
793
794         key.ek_client = clp;
795         key.ek_fsidtype = fsid_type;
796         memcpy(key.ek_fsid, fsidv, key_len(fsid_type));
797         key.ek_path = exp->ex_path;
798         key.h.expiry_time = NEVER;
799         key.h.flags = 0;
800
801         ek = svc_expkey_lookup(&key);
802         if (ek)
803                 ek = svc_expkey_update(&key,ek);
804         if (ek) {
805                 cache_put(&ek->h, &svc_expkey_cache);
806                 return 0;
807         }
808         return -ENOMEM;
809 }
810
811 /*
812  * Find the client's export entry matching xdev/xino.
813  */
814 static inline struct svc_expkey *
815 exp_get_key(svc_client *clp, dev_t dev, ino_t ino)
816 {
817         u32 fsidv[3];
818         
819         if (old_valid_dev(dev)) {
820                 mk_fsid(FSID_DEV, fsidv, dev, ino, 0, NULL);
821                 return exp_find_key(clp, FSID_DEV, fsidv, NULL);
822         }
823         mk_fsid(FSID_ENCODE_DEV, fsidv, dev, ino, 0, NULL);
824         return exp_find_key(clp, FSID_ENCODE_DEV, fsidv, NULL);
825 }
826
827 /*
828  * Find the client's export entry matching fsid
829  */
830 static inline struct svc_expkey *
831 exp_get_fsid_key(svc_client *clp, int fsid)
832 {
833         u32 fsidv[2];
834
835         mk_fsid(FSID_NUM, fsidv, 0, 0, fsid, NULL);
836
837         return exp_find_key(clp, FSID_NUM, fsidv, NULL);
838 }
839
840 static svc_export *exp_get_by_name(svc_client *clp, const struct path *path,
841                                      struct cache_req *reqp)
842 {
843         struct svc_export *exp, key;
844         int err;
845
846         if (!clp)
847                 return ERR_PTR(-ENOENT);
848
849         key.ex_client = clp;
850         key.ex_path = *path;
851
852         exp = svc_export_lookup(&key);
853         if (exp == NULL)
854                 return ERR_PTR(-ENOMEM);
855         err = cache_check(&svc_export_cache, &exp->h, reqp);
856         if (err)
857                 return ERR_PTR(err);
858         return exp;
859 }
860
861 /*
862  * Find the export entry for a given dentry.
863  */
864 static struct svc_export *exp_parent(svc_client *clp, struct path *path)
865 {
866         struct dentry *saved = dget(path->dentry);
867         svc_export *exp = exp_get_by_name(clp, path, NULL);
868
869         while (PTR_ERR(exp) == -ENOENT && !IS_ROOT(path->dentry)) {
870                 struct dentry *parent = dget_parent(path->dentry);
871                 dput(path->dentry);
872                 path->dentry = parent;
873                 exp = exp_get_by_name(clp, path, NULL);
874         }
875         dput(path->dentry);
876         path->dentry = saved;
877         return exp;
878 }
879
880 /*
881  * Hashtable locking. Write locks are placed only by user processes
882  * wanting to modify export information.
883  * Write locking only done in this file.  Read locking
884  * needed externally.
885  */
886
887 static DECLARE_RWSEM(hash_sem);
888
889 void
890 exp_readlock(void)
891 {
892         down_read(&hash_sem);
893 }
894
895 static inline void
896 exp_writelock(void)
897 {
898         down_write(&hash_sem);
899 }
900
901 void
902 exp_readunlock(void)
903 {
904         up_read(&hash_sem);
905 }
906
907 static inline void
908 exp_writeunlock(void)
909 {
910         up_write(&hash_sem);
911 }
912
913 static void exp_fsid_unhash(struct svc_export *exp)
914 {
915         struct svc_expkey *ek;
916
917         if ((exp->ex_flags & NFSEXP_FSID) == 0)
918                 return;
919
920         ek = exp_get_fsid_key(exp->ex_client, exp->ex_fsid);
921         if (!IS_ERR(ek)) {
922                 ek->h.expiry_time = get_seconds()-1;
923                 cache_put(&ek->h, &svc_expkey_cache);
924         }
925         svc_expkey_cache.nextcheck = get_seconds();
926 }
927
928 static int exp_fsid_hash(svc_client *clp, struct svc_export *exp)
929 {
930         u32 fsid[2];
931  
932         if ((exp->ex_flags & NFSEXP_FSID) == 0)
933                 return 0;
934
935         mk_fsid(FSID_NUM, fsid, 0, 0, exp->ex_fsid, NULL);
936         return exp_set_key(clp, FSID_NUM, fsid, exp);
937 }
938
939 static int exp_hash(struct auth_domain *clp, struct svc_export *exp)
940 {
941         u32 fsid[2];
942         struct inode *inode = exp->ex_path.dentry->d_inode;
943         dev_t dev = inode->i_sb->s_dev;
944
945         if (old_valid_dev(dev)) {
946                 mk_fsid(FSID_DEV, fsid, dev, inode->i_ino, 0, NULL);
947                 return exp_set_key(clp, FSID_DEV, fsid, exp);
948         }
949         mk_fsid(FSID_ENCODE_DEV, fsid, dev, inode->i_ino, 0, NULL);
950         return exp_set_key(clp, FSID_ENCODE_DEV, fsid, exp);
951 }
952
953 static void exp_unhash(struct svc_export *exp)
954 {
955         struct svc_expkey *ek;
956         struct inode *inode = exp->ex_path.dentry->d_inode;
957
958         ek = exp_get_key(exp->ex_client, inode->i_sb->s_dev, inode->i_ino);
959         if (!IS_ERR(ek)) {
960                 ek->h.expiry_time = get_seconds()-1;
961                 cache_put(&ek->h, &svc_expkey_cache);
962         }
963         svc_expkey_cache.nextcheck = get_seconds();
964 }
965         
966 /*
967  * Export a file system.
968  */
969 int
970 exp_export(struct nfsctl_export *nxp)
971 {
972         svc_client      *clp;
973         struct svc_export       *exp = NULL;
974         struct svc_export       new;
975         struct svc_expkey       *fsid_key = NULL;
976         struct path path;
977         int             err;
978
979         /* Consistency check */
980         err = -EINVAL;
981         if (!exp_verify_string(nxp->ex_path, NFS_MAXPATHLEN) ||
982             !exp_verify_string(nxp->ex_client, NFSCLNT_IDMAX))
983                 goto out;
984
985         dprintk("exp_export called for %s:%s (%x/%ld fl %x).\n",
986                         nxp->ex_client, nxp->ex_path,
987                         (unsigned)nxp->ex_dev, (long)nxp->ex_ino,
988                         nxp->ex_flags);
989
990         /* Try to lock the export table for update */
991         exp_writelock();
992
993         /* Look up client info */
994         if (!(clp = auth_domain_find(nxp->ex_client)))
995                 goto out_unlock;
996
997
998         /* Look up the dentry */
999         err = kern_path(nxp->ex_path, 0, &path);
1000         if (err)
1001                 goto out_put_clp;
1002         err = -EINVAL;
1003
1004         exp = exp_get_by_name(clp, &path, NULL);
1005
1006         memset(&new, 0, sizeof(new));
1007
1008         /* must make sure there won't be an ex_fsid clash */
1009         if ((nxp->ex_flags & NFSEXP_FSID) &&
1010             (!IS_ERR(fsid_key = exp_get_fsid_key(clp, nxp->ex_dev))) &&
1011             fsid_key->ek_path.mnt &&
1012             (fsid_key->ek_path.mnt != path.mnt ||
1013              fsid_key->ek_path.dentry != path.dentry))
1014                 goto finish;
1015
1016         if (!IS_ERR(exp)) {
1017                 /* just a flags/id/fsid update */
1018
1019                 exp_fsid_unhash(exp);
1020                 exp->ex_flags    = nxp->ex_flags;
1021                 exp->ex_anon_uid = nxp->ex_anon_uid;
1022                 exp->ex_anon_gid = nxp->ex_anon_gid;
1023                 exp->ex_fsid     = nxp->ex_dev;
1024
1025                 err = exp_fsid_hash(clp, exp);
1026                 goto finish;
1027         }
1028
1029         err = check_export(path.dentry->d_inode, nxp->ex_flags, NULL);
1030         if (err) goto finish;
1031
1032         err = -ENOMEM;
1033
1034         dprintk("nfsd: creating export entry %p for client %p\n", exp, clp);
1035
1036         new.h.expiry_time = NEVER;
1037         new.h.flags = 0;
1038         new.ex_pathname = kstrdup(nxp->ex_path, GFP_KERNEL);
1039         if (!new.ex_pathname)
1040                 goto finish;
1041         new.ex_client = clp;
1042         new.ex_path = path;
1043         new.ex_flags = nxp->ex_flags;
1044         new.ex_anon_uid = nxp->ex_anon_uid;
1045         new.ex_anon_gid = nxp->ex_anon_gid;
1046         new.ex_fsid = nxp->ex_dev;
1047
1048         exp = svc_export_lookup(&new);
1049         if (exp)
1050                 exp = svc_export_update(&new, exp);
1051
1052         if (!exp)
1053                 goto finish;
1054
1055         if (exp_hash(clp, exp) ||
1056             exp_fsid_hash(clp, exp)) {
1057                 /* failed to create at least one index */
1058                 exp_do_unexport(exp);
1059                 cache_flush();
1060         } else
1061                 err = 0;
1062 finish:
1063         kfree(new.ex_pathname);
1064         if (exp)
1065                 exp_put(exp);
1066         if (fsid_key && !IS_ERR(fsid_key))
1067                 cache_put(&fsid_key->h, &svc_expkey_cache);
1068         path_put(&path);
1069 out_put_clp:
1070         auth_domain_put(clp);
1071 out_unlock:
1072         exp_writeunlock();
1073 out:
1074         return err;
1075 }
1076
1077 /*
1078  * Unexport a file system. The export entry has already
1079  * been removed from the client's list of exported fs's.
1080  */
1081 static void
1082 exp_do_unexport(svc_export *unexp)
1083 {
1084         unexp->h.expiry_time = get_seconds()-1;
1085         svc_export_cache.nextcheck = get_seconds();
1086         exp_unhash(unexp);
1087         exp_fsid_unhash(unexp);
1088 }
1089
1090
1091 /*
1092  * unexport syscall.
1093  */
1094 int
1095 exp_unexport(struct nfsctl_export *nxp)
1096 {
1097         struct auth_domain *dom;
1098         svc_export *exp;
1099         struct path path;
1100         int             err;
1101
1102         /* Consistency check */
1103         if (!exp_verify_string(nxp->ex_path, NFS_MAXPATHLEN) ||
1104             !exp_verify_string(nxp->ex_client, NFSCLNT_IDMAX))
1105                 return -EINVAL;
1106
1107         exp_writelock();
1108
1109         err = -EINVAL;
1110         dom = auth_domain_find(nxp->ex_client);
1111         if (!dom) {
1112                 dprintk("nfsd: unexport couldn't find %s\n", nxp->ex_client);
1113                 goto out_unlock;
1114         }
1115
1116         err = kern_path(nxp->ex_path, 0, &path);
1117         if (err)
1118                 goto out_domain;
1119
1120         err = -EINVAL;
1121         exp = exp_get_by_name(dom, &path, NULL);
1122         path_put(&path);
1123         if (IS_ERR(exp))
1124                 goto out_domain;
1125
1126         exp_do_unexport(exp);
1127         exp_put(exp);
1128         err = 0;
1129
1130 out_domain:
1131         auth_domain_put(dom);
1132         cache_flush();
1133 out_unlock:
1134         exp_writeunlock();
1135         return err;
1136 }
1137
1138 /*
1139  * Obtain the root fh on behalf of a client.
1140  * This could be done in user space, but I feel that it adds some safety
1141  * since its harder to fool a kernel module than a user space program.
1142  */
1143 int
1144 exp_rootfh(svc_client *clp, char *name, struct knfsd_fh *f, int maxsize)
1145 {
1146         struct svc_export       *exp;
1147         struct path             path;
1148         struct inode            *inode;
1149         struct svc_fh           fh;
1150         int                     err;
1151
1152         err = -EPERM;
1153         /* NB: we probably ought to check that it's NUL-terminated */
1154         if (kern_path(name, 0, &path)) {
1155                 printk("nfsd: exp_rootfh path not found %s", name);
1156                 return err;
1157         }
1158         inode = path.dentry->d_inode;
1159
1160         dprintk("nfsd: exp_rootfh(%s [%p] %s:%s/%ld)\n",
1161                  name, path.dentry, clp->name,
1162                  inode->i_sb->s_id, inode->i_ino);
1163         exp = exp_parent(clp, &path);
1164         if (IS_ERR(exp)) {
1165                 err = PTR_ERR(exp);
1166                 goto out;
1167         }
1168
1169         /*
1170          * fh must be initialized before calling fh_compose
1171          */
1172         fh_init(&fh, maxsize);
1173         if (fh_compose(&fh, exp, path.dentry, NULL))
1174                 err = -EINVAL;
1175         else
1176                 err = 0;
1177         memcpy(f, &fh.fh_handle, sizeof(struct knfsd_fh));
1178         fh_put(&fh);
1179         exp_put(exp);
1180 out:
1181         path_put(&path);
1182         return err;
1183 }
1184
1185 static struct svc_export *exp_find(struct auth_domain *clp, int fsid_type,
1186                                    u32 *fsidv, struct cache_req *reqp)
1187 {
1188         struct svc_export *exp;
1189         struct svc_expkey *ek = exp_find_key(clp, fsid_type, fsidv, reqp);
1190         if (IS_ERR(ek))
1191                 return ERR_CAST(ek);
1192
1193         exp = exp_get_by_name(clp, &ek->ek_path, reqp);
1194         cache_put(&ek->h, &svc_expkey_cache);
1195
1196         if (IS_ERR(exp))
1197                 return ERR_CAST(exp);
1198         return exp;
1199 }
1200
1201 __be32 check_nfsd_access(struct svc_export *exp, struct svc_rqst *rqstp)
1202 {
1203         struct exp_flavor_info *f;
1204         struct exp_flavor_info *end = exp->ex_flavors + exp->ex_nflavors;
1205
1206         /* legacy gss-only clients are always OK: */
1207         if (exp->ex_client == rqstp->rq_gssclient)
1208                 return 0;
1209         /* ip-address based client; check sec= export option: */
1210         for (f = exp->ex_flavors; f < end; f++) {
1211                 if (f->pseudoflavor == rqstp->rq_flavor)
1212                         return 0;
1213         }
1214         /* defaults in absence of sec= options: */
1215         if (exp->ex_nflavors == 0) {
1216                 if (rqstp->rq_flavor == RPC_AUTH_NULL ||
1217                     rqstp->rq_flavor == RPC_AUTH_UNIX)
1218                         return 0;
1219         }
1220         return nfserr_wrongsec;
1221 }
1222
1223 /*
1224  * Uses rq_client and rq_gssclient to find an export; uses rq_client (an
1225  * auth_unix client) if it's available and has secinfo information;
1226  * otherwise, will try to use rq_gssclient.
1227  *
1228  * Called from functions that handle requests; functions that do work on
1229  * behalf of mountd are passed a single client name to use, and should
1230  * use exp_get_by_name() or exp_find().
1231  */
1232 struct svc_export *
1233 rqst_exp_get_by_name(struct svc_rqst *rqstp, struct path *path)
1234 {
1235         struct svc_export *gssexp, *exp = ERR_PTR(-ENOENT);
1236
1237         if (rqstp->rq_client == NULL)
1238                 goto gss;
1239
1240         /* First try the auth_unix client: */
1241         exp = exp_get_by_name(rqstp->rq_client, path, &rqstp->rq_chandle);
1242         if (PTR_ERR(exp) == -ENOENT)
1243                 goto gss;
1244         if (IS_ERR(exp))
1245                 return exp;
1246         /* If it has secinfo, assume there are no gss/... clients */
1247         if (exp->ex_nflavors > 0)
1248                 return exp;
1249 gss:
1250         /* Otherwise, try falling back on gss client */
1251         if (rqstp->rq_gssclient == NULL)
1252                 return exp;
1253         gssexp = exp_get_by_name(rqstp->rq_gssclient, path, &rqstp->rq_chandle);
1254         if (PTR_ERR(gssexp) == -ENOENT)
1255                 return exp;
1256         if (!IS_ERR(exp))
1257                 exp_put(exp);
1258         return gssexp;
1259 }
1260
1261 struct svc_export *
1262 rqst_exp_find(struct svc_rqst *rqstp, int fsid_type, u32 *fsidv)
1263 {
1264         struct svc_export *gssexp, *exp = ERR_PTR(-ENOENT);
1265
1266         if (rqstp->rq_client == NULL)
1267                 goto gss;
1268
1269         /* First try the auth_unix client: */
1270         exp = exp_find(rqstp->rq_client, fsid_type, fsidv, &rqstp->rq_chandle);
1271         if (PTR_ERR(exp) == -ENOENT)
1272                 goto gss;
1273         if (IS_ERR(exp))
1274                 return exp;
1275         /* If it has secinfo, assume there are no gss/... clients */
1276         if (exp->ex_nflavors > 0)
1277                 return exp;
1278 gss:
1279         /* Otherwise, try falling back on gss client */
1280         if (rqstp->rq_gssclient == NULL)
1281                 return exp;
1282         gssexp = exp_find(rqstp->rq_gssclient, fsid_type, fsidv,
1283                                                 &rqstp->rq_chandle);
1284         if (PTR_ERR(gssexp) == -ENOENT)
1285                 return exp;
1286         if (!IS_ERR(exp))
1287                 exp_put(exp);
1288         return gssexp;
1289 }
1290
1291 struct svc_export *
1292 rqst_exp_parent(struct svc_rqst *rqstp, struct path *path)
1293 {
1294         struct dentry *saved = dget(path->dentry);
1295         struct svc_export *exp = rqst_exp_get_by_name(rqstp, path);
1296
1297         while (PTR_ERR(exp) == -ENOENT && !IS_ROOT(path->dentry)) {
1298                 struct dentry *parent = dget_parent(path->dentry);
1299                 dput(path->dentry);
1300                 path->dentry = parent;
1301                 exp = rqst_exp_get_by_name(rqstp, path);
1302         }
1303         dput(path->dentry);
1304         path->dentry = saved;
1305         return exp;
1306 }
1307
1308 static struct svc_export *find_fsidzero_export(struct svc_rqst *rqstp)
1309 {
1310         struct svc_export *exp;
1311         u32 fsidv[2];
1312
1313         mk_fsid(FSID_NUM, fsidv, 0, 0, 0, NULL);
1314
1315         exp = rqst_exp_find(rqstp, FSID_NUM, fsidv);
1316         /*
1317          * We shouldn't have accepting an nfsv4 request at all if we
1318          * don't have a pseudoexport!:
1319          */
1320         if (IS_ERR(exp) && PTR_ERR(exp) == -ENOENT)
1321                 exp = ERR_PTR(-ESERVERFAULT);
1322         return exp;
1323 }
1324
1325 /*
1326  * Called when we need the filehandle for the root of the pseudofs,
1327  * for a given NFSv4 client.   The root is defined to be the
1328  * export point with fsid==0
1329  */
1330 __be32
1331 exp_pseudoroot(struct svc_rqst *rqstp, struct svc_fh *fhp)
1332 {
1333         struct svc_export *exp;
1334         __be32 rv;
1335
1336         exp = find_fsidzero_export(rqstp);
1337         if (IS_ERR(exp))
1338                 return nfserrno(PTR_ERR(exp));
1339         rv = fh_compose(fhp, exp, exp->ex_path.dentry, NULL);
1340         if (rv)
1341                 goto out;
1342         rv = check_nfsd_access(exp, rqstp);
1343         if (rv)
1344                 fh_put(fhp);
1345 out:
1346         exp_put(exp);
1347         return rv;
1348 }
1349
1350 /* Iterator */
1351
1352 static void *e_start(struct seq_file *m, loff_t *pos)
1353         __acquires(svc_export_cache.hash_lock)
1354 {
1355         loff_t n = *pos;
1356         unsigned hash, export;
1357         struct cache_head *ch;
1358         
1359         exp_readlock();
1360         read_lock(&svc_export_cache.hash_lock);
1361         if (!n--)
1362                 return SEQ_START_TOKEN;
1363         hash = n >> 32;
1364         export = n & ((1LL<<32) - 1);
1365
1366         
1367         for (ch=export_table[hash]; ch; ch=ch->next)
1368                 if (!export--)
1369                         return ch;
1370         n &= ~((1LL<<32) - 1);
1371         do {
1372                 hash++;
1373                 n += 1LL<<32;
1374         } while(hash < EXPORT_HASHMAX && export_table[hash]==NULL);
1375         if (hash >= EXPORT_HASHMAX)
1376                 return NULL;
1377         *pos = n+1;
1378         return export_table[hash];
1379 }
1380
1381 static void *e_next(struct seq_file *m, void *p, loff_t *pos)
1382 {
1383         struct cache_head *ch = p;
1384         int hash = (*pos >> 32);
1385
1386         if (p == SEQ_START_TOKEN)
1387                 hash = 0;
1388         else if (ch->next == NULL) {
1389                 hash++;
1390                 *pos += 1LL<<32;
1391         } else {
1392                 ++*pos;
1393                 return ch->next;
1394         }
1395         *pos &= ~((1LL<<32) - 1);
1396         while (hash < EXPORT_HASHMAX && export_table[hash] == NULL) {
1397                 hash++;
1398                 *pos += 1LL<<32;
1399         }
1400         if (hash >= EXPORT_HASHMAX)
1401                 return NULL;
1402         ++*pos;
1403         return export_table[hash];
1404 }
1405
1406 static void e_stop(struct seq_file *m, void *p)
1407         __releases(svc_export_cache.hash_lock)
1408 {
1409         read_unlock(&svc_export_cache.hash_lock);
1410         exp_readunlock();
1411 }
1412
1413 static struct flags {
1414         int flag;
1415         char *name[2];
1416 } expflags[] = {
1417         { NFSEXP_READONLY, {"ro", "rw"}},
1418         { NFSEXP_INSECURE_PORT, {"insecure", ""}},
1419         { NFSEXP_ROOTSQUASH, {"root_squash", "no_root_squash"}},
1420         { NFSEXP_ALLSQUASH, {"all_squash", ""}},
1421         { NFSEXP_ASYNC, {"async", "sync"}},
1422         { NFSEXP_GATHERED_WRITES, {"wdelay", "no_wdelay"}},
1423         { NFSEXP_NOHIDE, {"nohide", ""}},
1424         { NFSEXP_CROSSMOUNT, {"crossmnt", ""}},
1425         { NFSEXP_NOSUBTREECHECK, {"no_subtree_check", ""}},
1426         { NFSEXP_NOAUTHNLM, {"insecure_locks", ""}},
1427 #ifdef MSNFS
1428         { NFSEXP_MSNFS, {"msnfs", ""}},
1429 #endif
1430         { 0, {"", ""}}
1431 };
1432
1433 static void show_expflags(struct seq_file *m, int flags, int mask)
1434 {
1435         struct flags *flg;
1436         int state, first = 0;
1437
1438         for (flg = expflags; flg->flag; flg++) {
1439                 if (flg->flag & ~mask)
1440                         continue;
1441                 state = (flg->flag & flags) ? 0 : 1;
1442                 if (*flg->name[state])
1443                         seq_printf(m, "%s%s", first++?",":"", flg->name[state]);
1444         }
1445 }
1446
1447 static void show_secinfo_flags(struct seq_file *m, int flags)
1448 {
1449         seq_printf(m, ",");
1450         show_expflags(m, flags, NFSEXP_SECINFO_FLAGS);
1451 }
1452
1453 static void show_secinfo(struct seq_file *m, struct svc_export *exp)
1454 {
1455         struct exp_flavor_info *f;
1456         struct exp_flavor_info *end = exp->ex_flavors + exp->ex_nflavors;
1457         int lastflags = 0, first = 0;
1458
1459         if (exp->ex_nflavors == 0)
1460                 return;
1461         for (f = exp->ex_flavors; f < end; f++) {
1462                 if (first || f->flags != lastflags) {
1463                         if (!first)
1464                                 show_secinfo_flags(m, lastflags);
1465                         seq_printf(m, ",sec=%d", f->pseudoflavor);
1466                         lastflags = f->flags;
1467                 } else {
1468                         seq_printf(m, ":%d", f->pseudoflavor);
1469                 }
1470         }
1471         show_secinfo_flags(m, lastflags);
1472 }
1473
1474 static void exp_flags(struct seq_file *m, int flag, int fsid,
1475                 uid_t anonu, uid_t anong, struct nfsd4_fs_locations *fsloc)
1476 {
1477         show_expflags(m, flag, NFSEXP_ALLFLAGS);
1478         if (flag & NFSEXP_FSID)
1479                 seq_printf(m, ",fsid=%d", fsid);
1480         if (anonu != (uid_t)-2 && anonu != (0x10000-2))
1481                 seq_printf(m, ",anonuid=%u", anonu);
1482         if (anong != (gid_t)-2 && anong != (0x10000-2))
1483                 seq_printf(m, ",anongid=%u", anong);
1484         if (fsloc && fsloc->locations_count > 0) {
1485                 char *loctype = (fsloc->migrated) ? "refer" : "replicas";
1486                 int i;
1487
1488                 seq_printf(m, ",%s=", loctype);
1489                 seq_escape(m, fsloc->locations[0].path, ",;@ \t\n\\");
1490                 seq_putc(m, '@');
1491                 seq_escape(m, fsloc->locations[0].hosts, ",;@ \t\n\\");
1492                 for (i = 1; i < fsloc->locations_count; i++) {
1493                         seq_putc(m, ';');
1494                         seq_escape(m, fsloc->locations[i].path, ",;@ \t\n\\");
1495                         seq_putc(m, '@');
1496                         seq_escape(m, fsloc->locations[i].hosts, ",;@ \t\n\\");
1497                 }
1498         }
1499 }
1500
1501 static int e_show(struct seq_file *m, void *p)
1502 {
1503         struct cache_head *cp = p;
1504         struct svc_export *exp = container_of(cp, struct svc_export, h);
1505
1506         if (p == SEQ_START_TOKEN) {
1507                 seq_puts(m, "# Version 1.1\n");
1508                 seq_puts(m, "# Path Client(Flags) # IPs\n");
1509                 return 0;
1510         }
1511
1512         cache_get(&exp->h);
1513         if (cache_check(&svc_export_cache, &exp->h, NULL))
1514                 return 0;
1515         cache_put(&exp->h, &svc_export_cache);
1516         return svc_export_show(m, &svc_export_cache, cp);
1517 }
1518
1519 const struct seq_operations nfs_exports_op = {
1520         .start  = e_start,
1521         .next   = e_next,
1522         .stop   = e_stop,
1523         .show   = e_show,
1524 };
1525
1526 /*
1527  * Add or modify a client.
1528  * Change requests may involve the list of host addresses. The list of
1529  * exports and possibly existing uid maps are left untouched.
1530  */
1531 int
1532 exp_addclient(struct nfsctl_client *ncp)
1533 {
1534         struct auth_domain      *dom;
1535         int                     i, err;
1536         struct in6_addr addr6;
1537
1538         /* First, consistency check. */
1539         err = -EINVAL;
1540         if (! exp_verify_string(ncp->cl_ident, NFSCLNT_IDMAX))
1541                 goto out;
1542         if (ncp->cl_naddr > NFSCLNT_ADDRMAX)
1543                 goto out;
1544
1545         /* Lock the hashtable */
1546         exp_writelock();
1547
1548         dom = unix_domain_find(ncp->cl_ident);
1549
1550         err = -ENOMEM;
1551         if (!dom)
1552                 goto out_unlock;
1553
1554         /* Insert client into hashtable. */
1555         for (i = 0; i < ncp->cl_naddr; i++) {
1556                 ipv6_addr_set_v4mapped(ncp->cl_addrlist[i].s_addr, &addr6);
1557                 auth_unix_add_addr(&addr6, dom);
1558         }
1559         auth_unix_forget_old(dom);
1560         auth_domain_put(dom);
1561
1562         err = 0;
1563
1564 out_unlock:
1565         exp_writeunlock();
1566 out:
1567         return err;
1568 }
1569
1570 /*
1571  * Delete a client given an identifier.
1572  */
1573 int
1574 exp_delclient(struct nfsctl_client *ncp)
1575 {
1576         int             err;
1577         struct auth_domain *dom;
1578
1579         err = -EINVAL;
1580         if (!exp_verify_string(ncp->cl_ident, NFSCLNT_IDMAX))
1581                 goto out;
1582
1583         /* Lock the hashtable */
1584         exp_writelock();
1585
1586         dom = auth_domain_find(ncp->cl_ident);
1587         /* just make sure that no addresses work 
1588          * and that it will expire soon 
1589          */
1590         if (dom) {
1591                 err = auth_unix_forget_old(dom);
1592                 auth_domain_put(dom);
1593         }
1594
1595         exp_writeunlock();
1596 out:
1597         return err;
1598 }
1599
1600 /*
1601  * Verify that string is non-empty and does not exceed max length.
1602  */
1603 static int
1604 exp_verify_string(char *cp, int max)
1605 {
1606         int     i;
1607
1608         for (i = 0; i < max; i++)
1609                 if (!cp[i])
1610                         return i;
1611         cp[i] = 0;
1612         printk(KERN_NOTICE "nfsd: couldn't validate string %s\n", cp);
1613         return 0;
1614 }
1615
1616 /*
1617  * Initialize the exports module.
1618  */
1619 int
1620 nfsd_export_init(void)
1621 {
1622         int rv;
1623         dprintk("nfsd: initializing export module.\n");
1624
1625         rv = cache_register(&svc_export_cache);
1626         if (rv)
1627                 return rv;
1628         rv = cache_register(&svc_expkey_cache);
1629         if (rv)
1630                 cache_unregister(&svc_export_cache);
1631         return rv;
1632
1633 }
1634
1635 /*
1636  * Flush exports table - called when last nfsd thread is killed
1637  */
1638 void
1639 nfsd_export_flush(void)
1640 {
1641         exp_writelock();
1642         cache_purge(&svc_expkey_cache);
1643         cache_purge(&svc_export_cache);
1644         exp_writeunlock();
1645 }
1646
1647 /*
1648  * Shutdown the exports module.
1649  */
1650 void
1651 nfsd_export_shutdown(void)
1652 {
1653
1654         dprintk("nfsd: shutting down export module.\n");
1655
1656         exp_writelock();
1657
1658         cache_unregister(&svc_expkey_cache);
1659         cache_unregister(&svc_export_cache);
1660         svcauth_unix_purge();
1661
1662         exp_writeunlock();
1663         dprintk("nfsd: export shutdown complete.\n");
1664 }