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