]> git.decadent.org.uk Git - nfs-utils.git/blob - utils/mountd/cache.c
Support sec= option to specify export security
[nfs-utils.git] / utils / mountd / cache.c
1
2 /*
3  * Handle communication with knfsd internal cache
4  *
5  * We open /proc/net/rpc/{auth.unix.ip,nfsd.export,nfsd.fh}/channel
6  * and listen for requests (using my_svc_run)
7  * 
8  */
9
10 #ifdef HAVE_CONFIG_H
11 #include <config.h>
12 #endif
13
14 #include <sys/types.h>
15 #include <sys/select.h>
16 #include <sys/stat.h>
17 #include <time.h>
18 #include <netinet/in.h>
19 #include <arpa/inet.h>
20 #include <unistd.h>
21 #include <fcntl.h>
22 #include <errno.h>
23 #include <ctype.h>
24 #include <pwd.h>
25 #include <grp.h>
26 #include <mntent.h>
27 #include "misc.h"
28 #include "nfslib.h"
29 #include "exportfs.h"
30 #include "mountd.h"
31 #include "xmalloc.h"
32 #include "fsloc.h"
33 #include "pseudoflavors.h"
34
35 #ifdef USE_BLKID
36 #include "blkid/blkid.h"
37 #endif
38
39
40 enum nfsd_fsid {
41         FSID_DEV = 0,
42         FSID_NUM,
43         FSID_MAJOR_MINOR,
44         FSID_ENCODE_DEV,
45         FSID_UUID4_INUM,
46         FSID_UUID8,
47         FSID_UUID16,
48         FSID_UUID16_INUM,
49 };
50
51 /*
52  * Support routines for text-based upcalls.
53  * Fields are separated by spaces.
54  * Fields are either mangled to quote space tab newline slosh with slosh
55  * or a hexified with a leading \x
56  * Record is terminated with newline.
57  *
58  */
59 int cache_export_ent(char *domain, struct exportent *exp, char *p);
60
61
62 char *lbuf  = NULL;
63 int lbuflen = 0;
64
65 void auth_unix_ip(FILE *f)
66 {
67         /* requests are
68          *  class IP-ADDR
69          * Ignore if class != "nfsd"
70          * Otherwise find domainname and write back:
71          *
72          *  "nfsd" IP-ADDR expiry domainname
73          */
74         char *cp;
75         char class[20];
76         char ipaddr[20];
77         char *client;
78         struct in_addr addr;
79         if (readline(fileno(f), &lbuf, &lbuflen) != 1)
80                 return;
81
82         cp = lbuf;
83
84         if (qword_get(&cp, class, 20) <= 0 ||
85             strcmp(class, "nfsd") != 0)
86                 return;
87
88         if (qword_get(&cp, ipaddr, 20) <= 0)
89                 return;
90
91         if (inet_aton(ipaddr, &addr)==0)
92                 return;
93
94         auth_reload();
95
96         /* addr is a valid, interesting address, find the domain name... */
97         client = client_compose(addr);
98
99         
100         qword_print(f, "nfsd");
101         qword_print(f, ipaddr);
102         qword_printint(f, time(0)+30*60);
103         if (client)
104                 qword_print(f, *client?client:"DEFAULT");
105         qword_eol(f);
106
107         if (client) free(client);
108         
109 }
110
111 void auth_unix_gid(FILE *f)
112 {
113         /* Request are
114          *  uid
115          * reply is
116          *  uid expiry count list of group ids
117          */
118         int uid;
119         struct passwd *pw;
120         gid_t glist[100], *groups = glist;
121         int ngroups = 100;
122         int rv, i;
123         char *cp;
124
125         if (readline(fileno(f), &lbuf, &lbuflen) != 1)
126                 return;
127
128         cp = lbuf;
129         if (qword_get_int(&cp, &uid) != 0)
130                 return;
131
132         pw = getpwuid(uid);
133         if (!pw)
134                 rv = -1;
135         else {
136                 rv = getgrouplist(pw->pw_name, pw->pw_gid, groups, &ngroups);
137                 if (rv == -1 && ngroups >= 100) {
138                         groups = malloc(sizeof(gid_t)*ngroups);
139                         if (!groups)
140                                 rv = -1;
141                         else
142                                 rv = getgrouplist(pw->pw_name, pw->pw_gid,
143                                                   groups, &ngroups);
144                 }
145         }
146         qword_printint(f, uid);
147         qword_printint(f, time(0)+30*60);
148         if (rv >= 0) {
149                 qword_printint(f, ngroups);
150                 for (i=0; i<ngroups; i++)
151                         qword_printint(f, groups[i]);
152         }
153         qword_eol(f);
154         if (groups != glist)
155                 free(groups);
156 }
157
158 #if USE_BLKID
159 int get_uuid(char *path, char *uuid, int uuidlen, char *u)
160 {
161         /* extract hex digits from uuidstr and compose a uuid
162          * of the given length (max 16), xoring bytes to make
163          * a smaller uuid.  Then compare with uuid
164          */
165         int i = 0;
166         const char *val;
167
168         if (path) {
169                 static blkid_cache cache = NULL;
170                 struct stat stb;
171                 char *devname;
172                 blkid_tag_iterate iter;
173                 blkid_dev dev;
174                 const char *type;
175                 if (cache == NULL)
176                         blkid_get_cache(&cache, NULL);
177
178                 blkid_probe_all_new(cache);
179
180                 if (stat(path, &stb) != 0)
181                         return 0;
182                 devname = blkid_devno_to_devname(stb.st_dev);
183                 if (!devname)
184                         return 0;
185                 dev = blkid_get_dev(cache, devname, BLKID_DEV_NORMAL);
186                 free(devname);
187                 if (!dev)
188                         return 0;
189                 iter = blkid_tag_iterate_begin(dev);
190                 if (!iter)
191                         return 0;
192                 while (blkid_tag_next(iter, &type, &val) == 0)
193                         if (strcmp(type, "UUID") == 0)
194                                 break;
195                 blkid_tag_iterate_end(iter);
196                 if (!type)
197                         return 0;
198         } else {
199                 val = uuid;
200         }
201         
202         memset(u, 0, uuidlen);
203         for ( ; *val ; val++) {
204                 char c = *val;
205                 if (!isxdigit(c))
206                         continue;
207                 if (isalpha(c)) {
208                         if (isupper(c))
209                                 c = c - 'A' + 10;
210                         else
211                                 c = c - 'a' + 10;
212                 } else
213                         c = c - '0' + 0;
214                 if ((i&1) == 0)
215                         c <<= 4;
216                 u[i/2] ^= c;
217                 i++;
218                 if (i == uuidlen*2)
219                         i = 0;
220         }
221         return 1;
222 }
223 #endif
224
225 /* Iterate through /etc/mtab, finding mountpoints
226  * at or below a given path
227  */
228 static char *next_mnt(void **v, char *p)
229 {
230         FILE *f;
231         struct mntent *me;
232         int l = strlen(p);
233         if (*v == NULL) {
234                 f = setmntent("/etc/mtab", "r");
235                 *v = f;
236         } else
237                 f = *v;
238         while ((me = getmntent(f)) != NULL &&
239                (strncmp(me->mnt_dir, p, l) != 0 ||
240                 me->mnt_dir[l] != '/'))
241                 ;
242         if (me == NULL) {
243                 endmntent(f);
244                 *v = NULL;
245                 return NULL;
246         }
247         return me->mnt_dir;
248 }
249
250 void nfsd_fh(FILE *f)
251 {
252         /* request are:
253          *  domain fsidtype fsid
254          * interpret fsid, find export point and options, and write:
255          *  domain fsidtype fsid expiry path
256          */
257         char *cp;
258         char *dom;
259         int fsidtype;
260         int fsidlen;
261         unsigned int dev, major=0, minor=0;
262         unsigned int inode=0;
263         unsigned long long inode64;
264         unsigned int fsidnum=0;
265         char fsid[32];
266         struct exportent *found = NULL;
267         char *found_path = NULL;
268         nfs_export *exp;
269         int i;
270         int dev_missing = 0;
271         int uuidlen = 0;
272         char *fhuuid = NULL;
273
274         if (readline(fileno(f), &lbuf, &lbuflen) != 1)
275                 return;
276
277         cp = lbuf;
278
279         dom = malloc(strlen(cp));
280         if (dom == NULL)
281                 return;
282         if (qword_get(&cp, dom, strlen(cp)) <= 0)
283                 goto out;
284         if (qword_get_int(&cp, &fsidtype) != 0)
285                 goto out;
286         if (fsidtype < 0 || fsidtype > 7)
287                 goto out; /* unknown type */
288         if ((fsidlen = qword_get(&cp, fsid, 32)) <= 0)
289                 goto out;
290         switch(fsidtype) {
291         case FSID_DEV: /* 4 bytes: 2 major, 2 minor, 4 inode */
292                 if (fsidlen != 8)
293                         goto out;
294                 memcpy(&dev, fsid, 4);
295                 memcpy(&inode, fsid+4, 4);
296                 major = ntohl(dev)>>16;
297                 minor = ntohl(dev) & 0xFFFF;
298                 break;
299
300         case FSID_NUM: /* 4 bytes - fsid */
301                 if (fsidlen != 4)
302                         goto out;
303                 memcpy(&fsidnum, fsid, 4);
304                 break;
305
306         case FSID_MAJOR_MINOR: /* 12 bytes: 4 major, 4 minor, 4 inode 
307                  * This format is never actually used but was
308                  * an historical accident
309                  */
310                 if (fsidlen != 12)
311                         goto out;
312                 memcpy(&dev, fsid, 4); major = ntohl(dev);
313                 memcpy(&dev, fsid+4, 4); minor = ntohl(dev);
314                 memcpy(&inode, fsid+8, 4);
315                 break;
316
317         case FSID_ENCODE_DEV: /* 8 bytes: 4 byte packed device number, 4 inode */
318                 /* This is *host* endian, not net-byte-order, because
319                  * no-one outside this host has any business interpreting it
320                  */
321                 if (fsidlen != 8)
322                         goto out;
323                 memcpy(&dev, fsid, 4);
324                 memcpy(&inode, fsid+4, 4);
325                 major = (dev & 0xfff00) >> 8;
326                 minor = (dev & 0xff) | ((dev >> 12) & 0xfff00);
327                 break;
328
329         case FSID_UUID4_INUM: /* 4 byte inode number and 4 byte uuid */
330                 if (fsidlen != 8)
331                         goto out;
332                 memcpy(&inode, fsid, 4);
333                 uuidlen = 4;
334                 fhuuid = fsid+4;
335                 break;
336         case FSID_UUID8: /* 8 byte uuid */
337                 if (fsidlen != 8)
338                         goto out;
339                 uuidlen = 8;
340                 fhuuid = fsid;
341                 break;
342         case FSID_UUID16: /* 16 byte uuid */
343                 if (fsidlen != 16)
344                         goto out;
345                 uuidlen = 16;
346                 fhuuid = fsid;
347                 break;
348         case FSID_UUID16_INUM: /* 8 byte inode number and 16 byte uuid */
349                 if (fsidlen != 24)
350                         goto out;
351                 memcpy(&inode64, fsid, 8);
352                 inode = inode64;
353                 uuidlen = 16;
354                 fhuuid = fsid+8;
355                 break;
356         }
357
358         auth_reload();
359
360         /* Now determine export point for this fsid/domain */
361         for (i=0 ; i < MCL_MAXTYPES; i++) {
362                 nfs_export *next_exp;
363                 for (exp = exportlist[i]; exp; exp = next_exp) {
364                         struct stat stb;
365                         char u[16];
366                         char *path;
367
368                         if (exp->m_export.e_flags & NFSEXP_CROSSMOUNT) {
369                                 static nfs_export *prev = NULL;
370                                 static void *mnt = NULL;
371                                 
372                                 if (prev == exp) {
373                                         /* try a submount */
374                                         path = next_mnt(&mnt, exp->m_export.e_path);
375                                         if (!path) {
376                                                 next_exp = exp->m_next;
377                                                 prev = NULL;
378                                                 continue;
379                                         }
380                                         next_exp = exp;
381                                 } else {
382                                         prev = exp;
383                                         mnt = NULL;
384                                         path = exp->m_export.e_path;
385                                         next_exp = exp;
386                                 }
387                         } else {
388                                 path = exp->m_export.e_path;
389                                 next_exp = exp->m_next;
390                         }
391
392                         if (!client_member(dom, exp->m_client->m_hostname))
393                                 continue;
394                         if (exp->m_export.e_mountpoint &&
395                             !is_mountpoint(exp->m_export.e_mountpoint[0]?
396                                            exp->m_export.e_mountpoint:
397                                            exp->m_export.e_path))
398                                 dev_missing ++;
399                         if (stat(path, &stb) != 0)
400                                 continue;
401                         if (!S_ISDIR(stb.st_mode) && !S_ISREG(stb.st_mode)) {
402                                 continue;
403                         }
404                         switch(fsidtype){
405                         case FSID_DEV:
406                         case FSID_MAJOR_MINOR:
407                         case FSID_ENCODE_DEV:
408                                 if (stb.st_ino != inode)
409                                         continue;
410                                 if (major != major(stb.st_dev) ||
411                                     minor != minor(stb.st_dev))
412                                         continue;
413                                 break;
414                         case FSID_NUM:
415                                 if (((exp->m_export.e_flags & NFSEXP_FSID) == 0 ||
416                                      exp->m_export.e_fsid != fsidnum))
417                                         continue;
418                                 break;
419                         case FSID_UUID4_INUM:
420                         case FSID_UUID16_INUM:
421                                 if (stb.st_ino != inode)
422                                         continue;
423                                 goto check_uuid;
424                         case FSID_UUID8:
425                         case FSID_UUID16:
426                                 if (!is_mountpoint(path))
427                                         continue;
428                         check_uuid:
429 #if USE_BLKID
430                                 if (exp->m_export.e_uuid)
431                                         get_uuid(NULL, exp->m_export.e_uuid,
432                                                  uuidlen, u);
433                                 else if (get_uuid(path, NULL,
434                                                   uuidlen, u) == 0)
435                                         continue;
436
437                                 if (memcmp(u, fhuuid, uuidlen) != 0)
438                                         continue;
439                                 break;
440 #else
441                                 continue;
442 #endif
443                         }
444                         /* It's a match !! */
445                         if (!found) {
446                                 found = &exp->m_export;
447                                 found_path = strdup(path);
448                         } else if (strcmp(found->e_path, exp->m_export.e_path)!= 0)
449                         {
450                                 xlog(L_WARNING, "%s and %s have same filehandle for %s, using first",
451                                      found_path, path, dom);
452                         }
453                 }
454         }
455         if (found && 
456             found->e_mountpoint &&
457             !is_mountpoint(found->e_mountpoint[0]?
458                            found->e_mountpoint:
459                            found->e_path)) {
460                 /* Cannot export this yet 
461                  * should log a warning, but need to rate limit
462                    xlog(L_WARNING, "%s not exported as %d not a mountpoint",
463                    found->e_path, found->e_mountpoint);
464                  */
465                 /* FIXME we need to make sure we re-visit this later */
466                 goto out;
467         }
468         if (!found && dev_missing) {
469                 /* The missing dev could be what we want, so just be
470                  * quite rather than returning stale yet
471                  */
472                 goto out;
473         }
474
475         if (found)
476                 if (cache_export_ent(dom, found, found_path) < 0)
477                         found = 0;
478
479         qword_print(f, dom);
480         qword_printint(f, fsidtype);
481         qword_printhex(f, fsid, fsidlen);
482         /* The fsid -> path lookup can be quite expensive as it
483          * potentially stats and reads lots of devices, and some of those
484          * might have spun-down.  The Answer is not likely to
485          * change underneath us, and an 'exportfs -f' can always
486          * remove this from the kernel, so use a really log
487          * timeout.  Maybe this should be configurable on the command
488          * line.
489          */
490         qword_printint(f, 0x7fffffff);
491         if (found)
492                 qword_print(f, found->e_path);
493         qword_eol(f);
494  out:
495         free(dom);
496         return;         
497 }
498
499 static void write_fsloc(FILE *f, struct exportent *ep, char *path)
500 {
501         struct servers *servers;
502
503         if (ep->e_fslocmethod == FSLOC_NONE)
504                 return;
505
506         servers = replicas_lookup(ep->e_fslocmethod, ep->e_fslocdata, path);
507         if (!servers)
508                 return;
509         qword_print(f, "fsloc");
510         qword_printint(f, servers->h_num);
511         if (servers->h_num >= 0) {
512                 int i;
513                 for (i=0; i<servers->h_num; i++) {
514                         qword_print(f, servers->h_mp[i]->h_host);
515                         qword_print(f, servers->h_mp[i]->h_path);
516                 }
517         }
518         qword_printint(f, servers->h_referral);
519         release_replicas(servers);
520 }
521
522 static void write_secinfo(FILE *f, struct exportent *ep)
523 {
524         struct sec_entry *p;
525
526         for (p = ep->e_secinfo; p->flav; p++)
527                 ; /* Do nothing */
528         if (p == ep->e_secinfo) {
529                 /* There was no sec= option */
530                 return;
531         }
532         qword_print(f, "secinfo");
533         qword_printint(f, p - ep->e_secinfo);
534         for (p = ep->e_secinfo; p->flav; p++) {
535                 qword_printint(f, p->flav->fnum);
536                 qword_printint(f, p->flags);
537         }
538
539 }
540
541 static int dump_to_cache(FILE *f, char *domain, char *path, struct exportent *exp)
542 {
543         qword_print(f, domain);
544         qword_print(f, path);
545         qword_printint(f, time(0)+30*60);
546         if (exp) {
547                 qword_printint(f, exp->e_flags);
548                 qword_printint(f, exp->e_anonuid);
549                 qword_printint(f, exp->e_anongid);
550                 qword_printint(f, exp->e_fsid);
551                 write_fsloc(f, exp, path);
552                 write_secinfo(f, exp);
553 #if USE_BLKID
554                 if (exp->e_uuid == NULL) {
555                         char u[16];
556                         if (get_uuid(path, NULL, 16, u)) {
557                                 qword_print(f, "uuid");
558                                 qword_printhex(f, u, 16);
559                         }
560                 } else if (exp->e_uuid) {
561                         qword_print(f, "uuid");
562                         qword_printhex(f, exp->e_uuid, 16);
563                 }
564 #endif
565         }
566         return qword_eol(f);
567 }
568
569 void nfsd_export(FILE *f)
570 {
571         /* requests are:
572          *  domain path
573          * determine export options and return:
574          *  domain path expiry flags anonuid anongid fsid
575          */
576
577         char *cp;
578         int i;
579         char *dom, *path;
580         nfs_export *exp, *found = NULL;
581         int found_type = 0;
582
583
584         if (readline(fileno(f), &lbuf, &lbuflen) != 1)
585                 return;
586
587         cp = lbuf;
588         dom = malloc(strlen(cp));
589         path = malloc(strlen(cp));
590
591         if (!dom || !path)
592                 goto out;
593
594         if (qword_get(&cp, dom, strlen(lbuf)) <= 0)
595                 goto out;
596         if (qword_get(&cp, path, strlen(lbuf)) <= 0)
597                 goto out;
598
599         auth_reload();
600
601         /* now find flags for this export point in this domain */
602         for (i=0 ; i < MCL_MAXTYPES; i++) {
603                 for (exp = exportlist[i]; exp; exp = exp->m_next) {
604                         if (!client_member(dom, exp->m_client->m_hostname))
605                                 continue;
606                         if (exp->m_export.e_flags & NFSEXP_CROSSMOUNT) {
607                                 /* if path is a mountpoint below e_path, then OK */
608                                 int l = strlen(exp->m_export.e_path);
609                                 if (strcmp(path, exp->m_export.e_path) == 0 ||
610                                     (strncmp(path, exp->m_export.e_path, l) == 0 &&
611                                      path[l] == '/' &&
612                                      is_mountpoint(path)))
613                                         /* ok */;
614                                 else
615                                         continue;
616                         } else if (strcmp(path, exp->m_export.e_path) != 0)
617                                 continue;
618                         if (!found) {
619                                 found = exp;
620                                 found_type = i;
621                                 continue;
622                         }
623                         /* If one is a CROSSMOUNT, then prefer the longest path */
624                         if (((found->m_export.e_flags & NFSEXP_CROSSMOUNT) ||
625                              (found->m_export.e_flags & NFSEXP_CROSSMOUNT)) &&
626                             strlen(found->m_export.e_path) !=
627                             strlen(found->m_export.e_path)) {
628
629                                 if (strlen(exp->m_export.e_path) >
630                                     strlen(found->m_export.e_path)) {
631                                         found = exp;
632                                         found_type = i;
633                                 }
634                                 continue;
635
636                         } else if (found_type == i && found->m_warned == 0) {
637                                 xlog(L_WARNING, "%s exported to both %s and %s, "
638                                      "arbitrarily choosing options from first",
639                                      path, found->m_client->m_hostname, exp->m_client->m_hostname,
640                                      dom);
641                                 found->m_warned = 1;
642                         }
643                 }
644         }
645
646         if (found) {
647                 if (dump_to_cache(f, dom, path, &found->m_export) < 0) {
648                         xlog(L_WARNING,
649                              "Cannot export %s, possibly unsupported filesystem"
650                              " or fsid= required", path);
651                         dump_to_cache(f, dom, path, NULL);
652                 } else
653                         mountlist_add(dom, path);
654         } else {
655                 dump_to_cache(f, dom, path, NULL);
656         }
657  out:
658         if (dom) free(dom);
659         if (path) free(path);
660 }
661
662
663 struct {
664         char *cache_name;
665         void (*cache_handle)(FILE *f);
666         FILE *f;
667 } cachelist[] = {
668         { "auth.unix.ip", auth_unix_ip},
669         { "auth.unix.gid", auth_unix_gid},
670         { "nfsd.export", nfsd_export},
671         { "nfsd.fh", nfsd_fh},
672         { NULL, NULL }
673 };
674
675 extern int manage_gids;
676 void cache_open(void) 
677 {
678         int i;
679         for (i=0; cachelist[i].cache_name; i++ ) {
680                 char path[100];
681                 if (!manage_gids && cachelist[i].cache_handle == auth_unix_gid)
682                         continue;
683                 sprintf(path, "/proc/net/rpc/%s/channel", cachelist[i].cache_name);
684                 cachelist[i].f = fopen(path, "r+");
685         }
686 }
687
688 void cache_set_fds(fd_set *fdset)
689 {
690         int i;
691         for (i=0; cachelist[i].cache_name; i++) {
692                 if (cachelist[i].f)
693                         FD_SET(fileno(cachelist[i].f), fdset);
694         }
695 }
696
697 int cache_process_req(fd_set *readfds) 
698 {
699         int i;
700         int cnt = 0;
701         for (i=0; cachelist[i].cache_name; i++) {
702                 if (cachelist[i].f != NULL &&
703                     FD_ISSET(fileno(cachelist[i].f), readfds)) {
704                         cnt++;
705                         cachelist[i].cache_handle(cachelist[i].f);
706                         FD_CLR(fileno(cachelist[i].f), readfds);
707                 }
708         }
709         return cnt;
710 }
711
712
713 /*
714  * Give IP->domain and domain+path->options to kernel
715  * % echo nfsd $IP  $[now+30*60] $domain > /proc/net/rpc/auth.unix.ip/channel
716  * % echo $domain $path $[now+30*60] $options $anonuid $anongid $fsid > /proc/net/rpc/nfsd.export/channel
717  */
718
719 int cache_export_ent(char *domain, struct exportent *exp, char *path)
720 {
721         int err;
722         FILE *f = fopen("/proc/net/rpc/nfsd.export/channel", "w");
723         if (!f)
724                 return -1;
725
726         err = dump_to_cache(f, domain, exp->e_path, exp);
727         if (err) {
728                 xlog(L_WARNING,
729                      "Cannot export %s, possibly unsupported filesystem or"
730                      " fsid= required", exp->e_path);
731         }
732         mountlist_add(domain, exp->e_path);
733
734         while (err == 0 && (exp->e_flags & NFSEXP_CROSSMOUNT) && path) {
735                 /* really an 'if', but we can break out of
736                  * a 'while' more easily */
737                 /* Look along 'path' for other filesystems
738                  * and export them with the same options
739                  */
740                 struct stat stb;
741                 int l = strlen(exp->e_path);
742                 int dev;
743
744                 if (strlen(path) <= l || path[l] != '/' ||
745                     strncmp(exp->e_path, path, l) != 0)
746                         break;
747                 if (stat(exp->e_path, &stb) != 0)
748                         break;
749                 dev = stb.st_dev;
750                 while(path[l] == '/') {
751                         char c;
752                         /* errors for submount should fail whole filesystem */
753                         int err2;
754
755                         l++;
756                         while (path[l] != '/' && path[l])
757                                 l++;
758                         c = path[l];
759                         path[l] = 0;
760                         err2 = lstat(path, &stb);
761                         path[l] = c;
762                         if (err2 < 0)
763                                 break;
764                         if (stb.st_dev == dev)
765                                 continue;
766                         dev = stb.st_dev;
767                         path[l] = 0;
768                         dump_to_cache(f, domain, path, exp);
769                         path[l] = c;
770                 }
771                 break;
772         }
773
774         fclose(f);
775         return err;
776 }
777
778 int cache_export(nfs_export *exp, char *path)
779 {
780         int err;
781         FILE *f;
782
783         f = fopen("/proc/net/rpc/auth.unix.ip/channel", "w");
784         if (!f)
785                 return -1;
786
787         qword_print(f, "nfsd");
788         qword_print(f, inet_ntoa(exp->m_client->m_addrlist[0]));
789         qword_printint(f, time(0)+30*60);
790         qword_print(f, exp->m_client->m_hostname);
791         err = qword_eol(f);
792         
793         fclose(f);
794
795         err = cache_export_ent(exp->m_client->m_hostname, &exp->m_export, path)
796                 || err;
797         return err;
798 }
799
800 /* Get a filehandle.
801  * { 
802  *   echo $domain $path $length 
803  *   read filehandle <&0
804  * } <> /proc/fs/nfsd/filehandle
805  */
806 struct nfs_fh_len *
807 cache_get_filehandle(nfs_export *exp, int len, char *p)
808 {
809         FILE *f = fopen("/proc/fs/nfsd/filehandle", "r+");
810         char buf[200];
811         char *bp = buf;
812         int failed;
813         static struct nfs_fh_len fh;
814
815         if (!f)
816                 f = fopen("/proc/fs/nfs/filehandle", "r+");
817         if (!f)
818                 return NULL;
819
820         qword_print(f, exp->m_client->m_hostname);
821         qword_print(f, p);
822         qword_printint(f, len); 
823         failed = qword_eol(f);
824         
825         if (!failed)
826                 failed = (fgets(buf, sizeof(buf), f) == NULL);
827         fclose(f);
828         if (failed)
829                 return NULL;
830         memset(fh.fh_handle, 0, sizeof(fh.fh_handle));
831         fh.fh_size = qword_get(&bp, (char *)fh.fh_handle, NFS3_FHSIZE);
832         return &fh;
833 }
834