Remove trailing whitespace. Update copyright to include 2004.
[platform/upstream/busybox.git] / util-linux / nfsmount.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * nfsmount.c -- Linux NFS mount
4  * Copyright (C) 1993 Rick Sladkey <jrs@world.std.com>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2, or (at your option)
9  * any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * Wed Feb  8 12:51:48 1995, biro@yggdrasil.com (Ross Biro): allow all port
17  * numbers to be specified on the command line.
18  *
19  * Fri, 8 Mar 1996 18:01:39, Swen Thuemmler <swen@uni-paderborn.de>:
20  * Omit the call to connect() for Linux version 1.3.11 or later.
21  *
22  * Wed Oct  1 23:55:28 1997: Dick Streefland <dick_streefland@tasking.com>
23  * Implemented the "bg", "fg" and "retry" mount options for NFS.
24  *
25  * 1999-02-22 Arkadiusz Mi¶kiewicz <misiek@misiek.eu.org>
26  * - added Native Language Support
27  *
28  * Modified by Olaf Kirch and Trond Myklebust for new NFS code,
29  * plus NFSv3 stuff.
30  */
31
32 /*
33  * nfsmount.c,v 1.1.1.1 1993/11/18 08:40:51 jrs Exp
34  */
35
36 #include <unistd.h>
37 #include <stdio.h>
38 #include <string.h>
39 #include <errno.h>
40 #include <netdb.h>
41 #include <sys/socket.h>
42 #include <time.h>
43 #include <sys/utsname.h>
44 #include <netinet/in.h>
45 #include <arpa/inet.h>
46 #include <stdlib.h>
47 #include "busybox.h"
48 #undef TRUE
49 #undef FALSE
50 #include <rpc/rpc.h>
51 #include <rpc/pmap_prot.h>
52 #include <rpc/pmap_clnt.h>
53 #include "nfsmount.h"
54
55
56 /*
57  * NFS stats. The good thing with these values is that NFSv3 errors are
58  * a superset of NFSv2 errors (with the exception of NFSERR_WFLUSH which
59  * no-one uses anyway), so we can happily mix code as long as we make sure
60  * no NFSv3 errors are returned to NFSv2 clients.
61  * Error codes that have a `--' in the v2 column are not part of the
62  * standard, but seem to be widely used nevertheless.
63  */
64 enum nfs_stat {
65         NFS_OK = 0,                     /* v2 v3 */
66         NFSERR_PERM = 1,                /* v2 v3 */
67         NFSERR_NOENT = 2,               /* v2 v3 */
68         NFSERR_IO = 5,                  /* v2 v3 */
69         NFSERR_NXIO = 6,                /* v2 v3 */
70         NFSERR_EAGAIN = 11,             /* v2 v3 */
71         NFSERR_ACCES = 13,              /* v2 v3 */
72         NFSERR_EXIST = 17,              /* v2 v3 */
73         NFSERR_XDEV = 18,               /*    v3 */
74         NFSERR_NODEV = 19,              /* v2 v3 */
75         NFSERR_NOTDIR = 20,             /* v2 v3 */
76         NFSERR_ISDIR = 21,              /* v2 v3 */
77         NFSERR_INVAL = 22,              /* v2 v3 that Sun forgot */
78         NFSERR_FBIG = 27,               /* v2 v3 */
79         NFSERR_NOSPC = 28,              /* v2 v3 */
80         NFSERR_ROFS = 30,               /* v2 v3 */
81         NFSERR_MLINK = 31,              /*    v3 */
82         NFSERR_OPNOTSUPP = 45,          /* v2 v3 */
83         NFSERR_NAMETOOLONG = 63,        /* v2 v3 */
84         NFSERR_NOTEMPTY = 66,           /* v2 v3 */
85         NFSERR_DQUOT = 69,              /* v2 v3 */
86         NFSERR_STALE = 70,              /* v2 v3 */
87         NFSERR_REMOTE = 71,             /* v2 v3 */
88         NFSERR_WFLUSH = 99,             /* v2    */
89         NFSERR_BADHANDLE = 10001,       /*    v3 */
90         NFSERR_NOT_SYNC = 10002,        /*    v3 */
91         NFSERR_BAD_COOKIE = 10003,      /*    v3 */
92         NFSERR_NOTSUPP = 10004,         /*    v3 */
93         NFSERR_TOOSMALL = 10005,        /*    v3 */
94         NFSERR_SERVERFAULT = 10006,     /*    v3 */
95         NFSERR_BADTYPE = 10007,         /*    v3 */
96         NFSERR_JUKEBOX = 10008          /*    v3 */
97 };
98
99 #define NFS_PROGRAM     100003
100
101
102
103 #ifndef NFS_FHSIZE
104 static const int NFS_FHSIZE = 32;
105 #endif
106 #ifndef NFS_PORT
107 static const int NFS_PORT = 2049;
108 #endif
109
110 /* Disable the nls stuff */
111 # undef bindtextdomain
112 # define bindtextdomain(Domain, Directory) /* empty */
113 # undef textdomain
114 # define textdomain(Domain) /* empty */
115 # define _(Text) (Text)
116 # define N_(Text) (Text)
117
118 static const int MS_MGC_VAL = 0xc0ed0000; /* Magic number indicatng "new" flags */
119 static const int MS_RDONLY = 1;      /* Mount read-only */
120 static const int MS_NOSUID = 2;      /* Ignore suid and sgid bits */
121 static const int MS_NODEV = 4;      /* Disallow access to device special files */
122 static const int MS_NOEXEC = 8;      /* Disallow program execution */
123 static const int MS_SYNCHRONOUS = 16;      /* Writes are synced at once */
124 static const int MS_REMOUNT = 32;      /* Alter flags of a mounted FS */
125 static const int MS_MANDLOCK = 64;      /* Allow mandatory locks on an FS */
126 static const int S_QUOTA = 128;     /* Quota initialized for file/directory/symlink */
127 static const int S_APPEND = 256;     /* Append-only file */
128 static const int S_IMMUTABLE = 512;     /* Immutable file */
129 static const int MS_NOATIME = 1024;    /* Do not update access times. */
130 static const int MS_NODIRATIME = 2048;    /* Do not update directory access times */
131
132
133 /*
134  * We want to be able to compile mount on old kernels in such a way
135  * that the binary will work well on more recent kernels.
136  * Thus, if necessary we teach nfsmount.c the structure of new fields
137  * that will come later.
138  *
139  * Moreover, the new kernel includes conflict with glibc includes
140  * so it is easiest to ignore the kernel altogether (at compile time).
141  */
142
143 /* NOTE: Do not make this into a 'static const int' because the pre-processor
144  * needs to test this value in some #if statements. */
145 #define NFS_MOUNT_VERSION 4
146
147 struct nfs2_fh {
148         char                    data[32];
149 };
150 struct nfs3_fh {
151         unsigned short          size;
152         unsigned char           data[64];
153 };
154
155 struct nfs_mount_data {
156         int             version;                /* 1 */
157         int             fd;                     /* 1 */
158         struct nfs2_fh  old_root;               /* 1 */
159         int             flags;                  /* 1 */
160         int             rsize;                  /* 1 */
161         int             wsize;                  /* 1 */
162         int             timeo;                  /* 1 */
163         int             retrans;                /* 1 */
164         int             acregmin;               /* 1 */
165         int             acregmax;               /* 1 */
166         int             acdirmin;               /* 1 */
167         int             acdirmax;               /* 1 */
168         struct sockaddr_in addr;                /* 1 */
169         char            hostname[256];          /* 1 */
170         int             namlen;                 /* 2 */
171         unsigned int    bsize;                  /* 3 */
172         struct nfs3_fh  root;                   /* 4 */
173 };
174
175 /* bits in the flags field */
176
177 static const int NFS_MOUNT_SOFT = 0x0001;       /* 1 */
178 static const int NFS_MOUNT_INTR = 0x0002;       /* 1 */
179 static const int NFS_MOUNT_SECURE = 0x0004;     /* 1 */
180 static const int NFS_MOUNT_POSIX = 0x0008;      /* 1 */
181 static const int NFS_MOUNT_NOCTO = 0x0010;      /* 1 */
182 static const int NFS_MOUNT_NOAC = 0x0020;       /* 1 */
183 static const int NFS_MOUNT_TCP = 0x0040;        /* 2 */
184 static const int NFS_MOUNT_VER3 = 0x0080;       /* 3 */
185 static const int NFS_MOUNT_KERBEROS = 0x0100;   /* 3 */
186 static const int NFS_MOUNT_NONLM = 0x0200;      /* 3 */
187
188
189 #define UTIL_LINUX_VERSION "2.10m"
190 #define util_linux_version "util-linux-2.10m"
191
192 #define HAVE_inet_aton
193 #define HAVE_scsi_h
194 #define HAVE_blkpg_h
195 #define HAVE_kd_h
196 #define HAVE_termcap
197 #define HAVE_locale_h
198 #define HAVE_libintl_h
199 #define ENABLE_NLS
200 #define HAVE_langinfo_h
201 #define HAVE_progname
202 #define HAVE_openpty
203 #define HAVE_nanosleep
204 #define HAVE_personality
205 #define HAVE_tm_gmtoff
206
207 static char *nfs_strerror(int status);
208
209 #define MAKE_VERSION(p,q,r)     (65536*(p) + 256*(q) + (r))
210 #define MAX_NFSPROT ((nfs_mount_version >= 4) ? 3 : 2)
211
212 static const int EX_FAIL = 32;       /* mount failure */
213 static const int EX_BG = 256;       /* retry in background (internal only) */
214
215
216 /*
217  * nfs_mount_version according to the sources seen at compile time.
218  */
219 static int nfs_mount_version;
220
221 /*
222  * Unfortunately, the kernel prints annoying console messages
223  * in case of an unexpected nfs mount version (instead of
224  * just returning some error).  Therefore we'll have to try
225  * and figure out what version the kernel expects.
226  *
227  * Variables:
228  *      KERNEL_NFS_MOUNT_VERSION: kernel sources at compile time
229  *      NFS_MOUNT_VERSION: these nfsmount sources at compile time
230  *      nfs_mount_version: version this source and running kernel can handle
231  */
232 static void
233 find_kernel_nfs_mount_version(void)
234 {
235         static int kernel_version = 0;
236
237         if (kernel_version)
238                 return;
239
240         nfs_mount_version = NFS_MOUNT_VERSION; /* default */
241
242         kernel_version = get_kernel_revision();
243         if (kernel_version) {
244                 if (kernel_version < MAKE_VERSION(2,1,32))
245                         nfs_mount_version = 1;
246                 else if (kernel_version < MAKE_VERSION(2,2,18) ||
247                                 (kernel_version >=   MAKE_VERSION(2,3,0) &&
248                                  kernel_version < MAKE_VERSION(2,3,99)))
249                         nfs_mount_version = 3;
250                 else
251                         nfs_mount_version = 4; /* since 2.3.99pre4 */
252         }
253         if (nfs_mount_version > NFS_MOUNT_VERSION)
254                 nfs_mount_version = NFS_MOUNT_VERSION;
255 }
256
257 static struct pmap *
258 get_mountport(struct sockaddr_in *server_addr,
259       long unsigned prog,
260       long unsigned version,
261       long unsigned proto,
262       long unsigned port)
263 {
264 struct pmaplist *pmap;
265 static struct pmap p = {0, 0, 0, 0};
266
267 server_addr->sin_port = PMAPPORT;
268 pmap = pmap_getmaps(server_addr);
269
270 if (version > MAX_NFSPROT)
271         version = MAX_NFSPROT;
272 if (!prog)
273         prog = MOUNTPROG;
274 p.pm_prog = prog;
275 p.pm_vers = version;
276 p.pm_prot = proto;
277 p.pm_port = port;
278
279 while (pmap) {
280         if (pmap->pml_map.pm_prog != prog)
281                 goto next;
282         if (!version && p.pm_vers > pmap->pml_map.pm_vers)
283                 goto next;
284         if (version > 2 && pmap->pml_map.pm_vers != version)
285                 goto next;
286         if (version && version <= 2 && pmap->pml_map.pm_vers > 2)
287                 goto next;
288         if (pmap->pml_map.pm_vers > MAX_NFSPROT ||
289             (proto && p.pm_prot && pmap->pml_map.pm_prot != proto) ||
290             (port && pmap->pml_map.pm_port != port))
291                 goto next;
292         memcpy(&p, &pmap->pml_map, sizeof(p));
293 next:
294         pmap = pmap->pml_next;
295 }
296 if (!p.pm_vers)
297         p.pm_vers = MOUNTVERS;
298 if (!p.pm_port)
299         p.pm_port = MOUNTPORT;
300 if (!p.pm_prot)
301         p.pm_prot = IPPROTO_TCP;
302 return &p;
303 }
304
305 int nfsmount(const char *spec, const char *node, int *flags,
306              char **extra_opts, char **mount_opts, int running_bg)
307 {
308         static char *prev_bg_host;
309         char hostdir[1024];
310         CLIENT *mclient;
311         char *hostname;
312         char *pathname;
313         char *old_opts;
314         char *mounthost=NULL;
315         char new_opts[1024];
316         struct timeval total_timeout;
317         enum clnt_stat clnt_stat;
318         static struct nfs_mount_data data;
319         char *opt, *opteq;
320         int val;
321         struct hostent *hp;
322         struct sockaddr_in server_addr;
323         struct sockaddr_in mount_server_addr;
324         struct pmap* pm_mnt;
325         int msock, fsock;
326         struct timeval retry_timeout;
327         union {
328                 struct fhstatus nfsv2;
329                 struct mountres3 nfsv3;
330         } status;
331         struct stat statbuf;
332         char *s;
333         int port;
334         int mountport;
335         int proto;
336         int bg;
337         int soft;
338         int intr;
339         int posix;
340         int nocto;
341         int noac;
342         int nolock;
343         int retry;
344         int tcp;
345         int mountprog;
346         int mountvers;
347         int nfsprog;
348         int nfsvers;
349         int retval;
350         time_t t;
351         time_t prevt;
352         time_t timeout;
353
354         find_kernel_nfs_mount_version();
355
356         retval = EX_FAIL;
357         msock = fsock = -1;
358         mclient = NULL;
359         if (strlen(spec) >= sizeof(hostdir)) {
360                 bb_error_msg("excessively long host:dir argument");
361                 goto fail;
362         }
363         strcpy(hostdir, spec);
364         if ((s = strchr(hostdir, ':'))) {
365                 hostname = hostdir;
366                 pathname = s + 1;
367                 *s = '\0';
368                 /* Ignore all but first hostname in replicated mounts
369                    until they can be fully supported. (mack@sgi.com) */
370                 if ((s = strchr(hostdir, ','))) {
371                         *s = '\0';
372                         bb_error_msg("warning: multiple hostnames not supported");
373                 }
374         } else {
375                 bb_error_msg("directory to mount not in host:dir format");
376                 goto fail;
377         }
378
379         server_addr.sin_family = AF_INET;
380 #ifdef HAVE_inet_aton
381         if (!inet_aton(hostname, &server_addr.sin_addr))
382 #endif
383         {
384                 if ((hp = gethostbyname(hostname)) == NULL) {
385                         bb_herror_msg("%s", hostname);
386                         goto fail;
387                 } else {
388                         if (hp->h_length > sizeof(struct in_addr)) {
389                                 bb_error_msg("got bad hp->h_length");
390                                 hp->h_length = sizeof(struct in_addr);
391                         }
392                         memcpy(&server_addr.sin_addr,
393                                hp->h_addr, hp->h_length);
394                 }
395         }
396
397         memcpy (&mount_server_addr, &server_addr, sizeof (mount_server_addr));
398
399         /* add IP address to mtab options for use when unmounting */
400
401         s = inet_ntoa(server_addr.sin_addr);
402         old_opts = *extra_opts;
403         if (!old_opts)
404                 old_opts = "";
405         if (strlen(old_opts) + strlen(s) + 10 >= sizeof(new_opts)) {
406                 bb_error_msg("excessively long option argument");
407                 goto fail;
408         }
409         sprintf(new_opts, "%s%saddr=%s",
410                 old_opts, *old_opts ? "," : "", s);
411         *extra_opts = bb_xstrdup(new_opts);
412
413         /* Set default options.
414          * rsize/wsize (and bsize, for ver >= 3) are left 0 in order to
415          * let the kernel decide.
416          * timeo is filled in after we know whether it'll be TCP or UDP. */
417         memset(&data, 0, sizeof(data));
418         data.retrans    = 3;
419         data.acregmin   = 3;
420         data.acregmax   = 60;
421         data.acdirmin   = 30;
422         data.acdirmax   = 60;
423 #if NFS_MOUNT_VERSION >= 2
424         data.namlen     = NAME_MAX;
425 #endif
426
427         bg = 0;
428         soft = 0;
429         intr = 0;
430         posix = 0;
431         nocto = 0;
432         nolock = 0;
433         noac = 0;
434         retry = 10000;          /* 10000 minutes ~ 1 week */
435         tcp = 0;
436
437         mountprog = MOUNTPROG;
438         mountvers = 0;
439         port = 0;
440         mountport = 0;
441         nfsprog = NFS_PROGRAM;
442         nfsvers = 0;
443
444         /* parse options */
445
446         for (opt = strtok(old_opts, ","); opt; opt = strtok(NULL, ",")) {
447                 if ((opteq = strchr(opt, '='))) {
448                         val = atoi(opteq + 1);
449                         *opteq = '\0';
450                         if (!strcmp(opt, "rsize"))
451                                 data.rsize = val;
452                         else if (!strcmp(opt, "wsize"))
453                                 data.wsize = val;
454                         else if (!strcmp(opt, "timeo"))
455                                 data.timeo = val;
456                         else if (!strcmp(opt, "retrans"))
457                                 data.retrans = val;
458                         else if (!strcmp(opt, "acregmin"))
459                                 data.acregmin = val;
460                         else if (!strcmp(opt, "acregmax"))
461                                 data.acregmax = val;
462                         else if (!strcmp(opt, "acdirmin"))
463                                 data.acdirmin = val;
464                         else if (!strcmp(opt, "acdirmax"))
465                                 data.acdirmax = val;
466                         else if (!strcmp(opt, "actimeo")) {
467                                 data.acregmin = val;
468                                 data.acregmax = val;
469                                 data.acdirmin = val;
470                                 data.acdirmax = val;
471                         }
472                         else if (!strcmp(opt, "retry"))
473                                 retry = val;
474                         else if (!strcmp(opt, "port"))
475                                 port = val;
476                         else if (!strcmp(opt, "mountport"))
477                                 mountport = val;
478                         else if (!strcmp(opt, "mounthost"))
479                                 mounthost=bb_xstrndup(opteq+1,
480                                                   strcspn(opteq+1," \t\n\r,"));
481                         else if (!strcmp(opt, "mountprog"))
482                                 mountprog = val;
483                         else if (!strcmp(opt, "mountvers"))
484                                 mountvers = val;
485                         else if (!strcmp(opt, "nfsprog"))
486                                 nfsprog = val;
487                         else if (!strcmp(opt, "nfsvers") ||
488                                  !strcmp(opt, "vers"))
489                                 nfsvers = val;
490                         else if (!strcmp(opt, "proto")) {
491                                 if (!strncmp(opteq+1, "tcp", 3))
492                                         tcp = 1;
493                                 else if (!strncmp(opteq+1, "udp", 3))
494                                         tcp = 0;
495                                 else
496                                         printf(_("Warning: Unrecognized proto= option.\n"));
497                         } else if (!strcmp(opt, "namlen")) {
498 #if NFS_MOUNT_VERSION >= 2
499                                 if (nfs_mount_version >= 2)
500                                         data.namlen = val;
501                                 else
502 #endif
503                                 printf(_("Warning: Option namlen is not supported.\n"));
504                         } else if (!strcmp(opt, "addr"))
505                                 /* ignore */;
506                         else {
507                                 printf(_("unknown nfs mount parameter: "
508                                        "%s=%d\n"), opt, val);
509                                 goto fail;
510                         }
511                 }
512                 else {
513                         val = 1;
514                         if (!strncmp(opt, "no", 2)) {
515                                 val = 0;
516                                 opt += 2;
517                         }
518                         if (!strcmp(opt, "bg"))
519                                 bg = val;
520                         else if (!strcmp(opt, "fg"))
521                                 bg = !val;
522                         else if (!strcmp(opt, "soft"))
523                                 soft = val;
524                         else if (!strcmp(opt, "hard"))
525                                 soft = !val;
526                         else if (!strcmp(opt, "intr"))
527                                 intr = val;
528                         else if (!strcmp(opt, "posix"))
529                                 posix = val;
530                         else if (!strcmp(opt, "cto"))
531                                 nocto = !val;
532                         else if (!strcmp(opt, "ac"))
533                                 noac = !val;
534                         else if (!strcmp(opt, "tcp"))
535                                 tcp = val;
536                         else if (!strcmp(opt, "udp"))
537                                 tcp = !val;
538                         else if (!strcmp(opt, "lock")) {
539                                 if (nfs_mount_version >= 3)
540                                         nolock = !val;
541                                 else
542                                         printf(_("Warning: option nolock is not supported.\n"));
543                         } else {
544                                 printf(_("unknown nfs mount option: "
545                                            "%s%s\n"), val ? "" : "no", opt);
546                                 goto fail;
547                         }
548                 }
549         }
550         proto = (tcp) ? IPPROTO_TCP : IPPROTO_UDP;
551
552         data.flags = (soft ? NFS_MOUNT_SOFT : 0)
553                 | (intr ? NFS_MOUNT_INTR : 0)
554                 | (posix ? NFS_MOUNT_POSIX : 0)
555                 | (nocto ? NFS_MOUNT_NOCTO : 0)
556                 | (noac ? NFS_MOUNT_NOAC : 0);
557 #if NFS_MOUNT_VERSION >= 2
558         if (nfs_mount_version >= 2)
559                 data.flags |= (tcp ? NFS_MOUNT_TCP : 0);
560 #endif
561 #if NFS_MOUNT_VERSION >= 3
562         if (nfs_mount_version >= 3)
563                 data.flags |= (nolock ? NFS_MOUNT_NONLM : 0);
564 #endif
565         if (nfsvers > MAX_NFSPROT) {
566                 bb_error_msg("NFSv%d not supported!", nfsvers);
567                 return 0;
568         }
569         if (mountvers > MAX_NFSPROT) {
570                 bb_error_msg("NFSv%d not supported!", nfsvers);
571                 return 0;
572         }
573         if (nfsvers && !mountvers)
574                 mountvers = (nfsvers < 3) ? 1 : nfsvers;
575         if (nfsvers && nfsvers < mountvers) {
576                 mountvers = nfsvers;
577         }
578
579         /* Adjust options if none specified */
580         if (!data.timeo)
581                 data.timeo = tcp ? 70 : 7;
582
583 #ifdef NFS_MOUNT_DEBUG
584         printf("rsize = %d, wsize = %d, timeo = %d, retrans = %d\n",
585                 data.rsize, data.wsize, data.timeo, data.retrans);
586         printf("acreg (min, max) = (%d, %d), acdir (min, max) = (%d, %d)\n",
587                 data.acregmin, data.acregmax, data.acdirmin, data.acdirmax);
588         printf("port = %d, bg = %d, retry = %d, flags = %.8x\n",
589                 port, bg, retry, data.flags);
590         printf("mountprog = %d, mountvers = %d, nfsprog = %d, nfsvers = %d\n",
591                 mountprog, mountvers, nfsprog, nfsvers);
592         printf("soft = %d, intr = %d, posix = %d, nocto = %d, noac = %d\n",
593                 (data.flags & NFS_MOUNT_SOFT) != 0,
594                 (data.flags & NFS_MOUNT_INTR) != 0,
595                 (data.flags & NFS_MOUNT_POSIX) != 0,
596                 (data.flags & NFS_MOUNT_NOCTO) != 0,
597                 (data.flags & NFS_MOUNT_NOAC) != 0);
598 #if NFS_MOUNT_VERSION >= 2
599         printf("tcp = %d\n",
600                 (data.flags & NFS_MOUNT_TCP) != 0);
601 #endif
602 #endif
603
604         data.version = nfs_mount_version;
605         *mount_opts = (char *) &data;
606
607         if (*flags & MS_REMOUNT)
608                 return 0;
609
610         /*
611          * If the previous mount operation on the same host was
612          * backgrounded, and the "bg" for this mount is also set,
613          * give up immediately, to avoid the initial timeout.
614          */
615         if (bg && !running_bg &&
616             prev_bg_host && strcmp(hostname, prev_bg_host) == 0) {
617                 if (retry > 0)
618                         retval = EX_BG;
619                 return retval;
620         }
621
622         /* create mount deamon client */
623         /* See if the nfs host = mount host. */
624         if (mounthost) {
625           if (mounthost[0] >= '0' && mounthost[0] <= '9') {
626             mount_server_addr.sin_family = AF_INET;
627             mount_server_addr.sin_addr.s_addr = inet_addr(hostname);
628           } else {
629                   if ((hp = gethostbyname(mounthost)) == NULL) {
630                           bb_herror_msg("%s", mounthost);
631                           goto fail;
632                   } else {
633                           if (hp->h_length > sizeof(struct in_addr)) {
634                                   bb_error_msg("got bad hp->h_length?");
635                                   hp->h_length = sizeof(struct in_addr);
636                           }
637                           mount_server_addr.sin_family = AF_INET;
638                           memcpy(&mount_server_addr.sin_addr,
639                                  hp->h_addr, hp->h_length);
640                   }
641           }
642         }
643
644         /*
645          * The following loop implements the mount retries. On the first
646          * call, "running_bg" is 0. When the mount times out, and the
647          * "bg" option is set, the exit status EX_BG will be returned.
648          * For a backgrounded mount, there will be a second call by the
649          * child process with "running_bg" set to 1.
650          *
651          * The case where the mount point is not present and the "bg"
652          * option is set, is treated as a timeout. This is done to
653          * support nested mounts.
654          *
655          * The "retry" count specified by the user is the number of
656          * minutes to retry before giving up.
657          *
658          * Only the first error message will be displayed.
659          */
660         retry_timeout.tv_sec = 3;
661         retry_timeout.tv_usec = 0;
662         total_timeout.tv_sec = 20;
663         total_timeout.tv_usec = 0;
664         timeout = time(NULL) + 60 * retry;
665         prevt = 0;
666         t = 30;
667         val = 1;
668         for (;;) {
669                 if (bg && stat(node, &statbuf) == -1) {
670                         if (running_bg) {
671                                 sleep(val);     /* 1, 2, 4, 8, 16, 30, ... */
672                                 val *= 2;
673                                 if (val > 30)
674                                         val = 30;
675                         }
676                 } else {
677                         /* be careful not to use too many CPU cycles */
678                         if (t - prevt < 30)
679                                 sleep(30);
680
681                         pm_mnt = get_mountport(&mount_server_addr,
682                                        mountprog,
683                                        mountvers,
684                                        proto,
685                                        mountport);
686
687                         /* contact the mount daemon via TCP */
688                         mount_server_addr.sin_port = htons(pm_mnt->pm_port);
689                         msock = RPC_ANYSOCK;
690
691                         switch (pm_mnt->pm_prot) {
692                         case IPPROTO_UDP:
693                                 mclient = clntudp_create(&mount_server_addr,
694                                                  pm_mnt->pm_prog,
695                                                  pm_mnt->pm_vers,
696                                                  retry_timeout,
697                                                  &msock);
698                   if (mclient)
699                           break;
700                   mount_server_addr.sin_port = htons(pm_mnt->pm_port);
701                   msock = RPC_ANYSOCK;
702                 case IPPROTO_TCP:
703                         mclient = clnttcp_create(&mount_server_addr,
704                                                  pm_mnt->pm_prog,
705                                                  pm_mnt->pm_vers,
706                                                  &msock, 0, 0);
707                         break;
708                 default:
709                         mclient = 0;
710                         }
711                         if (mclient) {
712                                 /* try to mount hostname:pathname */
713                                 mclient->cl_auth = authunix_create_default();
714
715                         /* make pointers in xdr_mountres3 NULL so
716                          * that xdr_array allocates memory for us
717                          */
718                         memset(&status, 0, sizeof(status));
719
720                         if (pm_mnt->pm_vers == 3)
721                                 clnt_stat = clnt_call(mclient, MOUNTPROC3_MNT,
722                                                       (xdrproc_t) xdr_dirpath,
723                                                       (caddr_t) &pathname,
724                                                       (xdrproc_t) xdr_mountres3,
725                                                       (caddr_t) &status,
726                                         total_timeout);
727                         else
728                                 clnt_stat = clnt_call(mclient, MOUNTPROC_MNT,
729                                                       (xdrproc_t) xdr_dirpath,
730                                                       (caddr_t) &pathname,
731                                                       (xdrproc_t) xdr_fhstatus,
732                                                       (caddr_t) &status,
733                                                       total_timeout);
734
735                                 if (clnt_stat == RPC_SUCCESS)
736                                         break;          /* we're done */
737                                 if (errno != ECONNREFUSED) {
738                                         clnt_perror(mclient, "mount");
739                                         goto fail;      /* don't retry */
740                                 }
741                                 if (!running_bg && prevt == 0)
742                                         clnt_perror(mclient, "mount");
743                                 auth_destroy(mclient->cl_auth);
744                                 clnt_destroy(mclient);
745                                 mclient = 0;
746                                 close(msock);
747                         } else {
748                                 if (!running_bg && prevt == 0)
749                                         clnt_pcreateerror("mount");
750                         }
751                         prevt = t;
752                 }
753                 if (!bg)
754                         goto fail;
755                 if (!running_bg) {
756                         prev_bg_host = bb_xstrdup(hostname);
757                         if (retry > 0)
758                                 retval = EX_BG;
759                         goto fail;
760                 }
761                 t = time(NULL);
762                 if (t >= timeout)
763                         goto fail;
764         }
765         nfsvers = (pm_mnt->pm_vers < 2) ? 2 : pm_mnt->pm_vers;
766
767         if (nfsvers == 2) {
768                 if (status.nfsv2.fhs_status != 0) {
769                         bb_error_msg("%s:%s failed, reason given by server: %s",
770                                 hostname, pathname,
771                                 nfs_strerror(status.nfsv2.fhs_status));
772                         goto fail;
773                 }
774                 memcpy(data.root.data,
775                        (char *) status.nfsv2.fhstatus_u.fhs_fhandle,
776                        NFS_FHSIZE);
777 #if NFS_MOUNT_VERSION >= 4
778                 data.root.size = NFS_FHSIZE;
779                 memcpy(data.old_root.data,
780                        (char *) status.nfsv2.fhstatus_u.fhs_fhandle,
781                        NFS_FHSIZE);
782 #endif
783         } else {
784 #if NFS_MOUNT_VERSION >= 4
785                 fhandle3 *my_fhandle;
786                 if (status.nfsv3.fhs_status != 0) {
787                         bb_error_msg("%s:%s failed, reason given by server: %s",
788                                 hostname, pathname,
789                                 nfs_strerror(status.nfsv3.fhs_status));
790                         goto fail;
791                 }
792                 my_fhandle = &status.nfsv3.mountres3_u.mountinfo.fhandle;
793                 memset(data.old_root.data, 0, NFS_FHSIZE);
794                 memset(&data.root, 0, sizeof(data.root));
795                 data.root.size = my_fhandle->fhandle3_len;
796                 memcpy(data.root.data,
797                        (char *) my_fhandle->fhandle3_val,
798                        my_fhandle->fhandle3_len);
799
800                 data.flags |= NFS_MOUNT_VER3;
801 #endif
802         }
803
804         /* create nfs socket for kernel */
805
806         if (tcp) {
807                 if (nfs_mount_version < 3) {
808                         printf(_("NFS over TCP is not supported.\n"));
809                         goto fail;
810                 }
811                 fsock = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
812         } else
813                 fsock = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP);
814         if (fsock < 0) {
815                 perror(_("nfs socket"));
816                 goto fail;
817         }
818         if (bindresvport(fsock, 0) < 0) {
819                 perror(_("nfs bindresvport"));
820                 goto fail;
821         }
822         if (port == 0) {
823                 server_addr.sin_port = PMAPPORT;
824                 port = pmap_getport(&server_addr, nfsprog, nfsvers,
825                         tcp ? IPPROTO_TCP : IPPROTO_UDP);
826                 if (port == 0)
827                         port = NFS_PORT;
828 #ifdef NFS_MOUNT_DEBUG
829                 else
830                         printf(_("used portmapper to find NFS port\n"));
831 #endif
832         }
833 #ifdef NFS_MOUNT_DEBUG
834         printf(_("using port %d for nfs deamon\n"), port);
835 #endif
836         server_addr.sin_port = htons(port);
837          /*
838           * connect() the socket for kernels 1.3.10 and below only,
839           * to avoid problems with multihomed hosts.
840           * --Swen
841           */
842         if (get_kernel_revision() <= 66314
843             && connect(fsock, (struct sockaddr *) &server_addr,
844                        sizeof (server_addr)) < 0) {
845                 perror(_("nfs connect"));
846                 goto fail;
847         }
848
849         /* prepare data structure for kernel */
850
851         data.fd = fsock;
852         memcpy((char *) &data.addr, (char *) &server_addr, sizeof(data.addr));
853         strncpy(data.hostname, hostname, sizeof(data.hostname));
854
855         /* clean up */
856
857         auth_destroy(mclient->cl_auth);
858         clnt_destroy(mclient);
859         close(msock);
860         return 0;
861
862         /* abort */
863
864 fail:
865         if (msock != -1) {
866                 if (mclient) {
867                         auth_destroy(mclient->cl_auth);
868                         clnt_destroy(mclient);
869                 }
870                 close(msock);
871         }
872         if (fsock != -1)
873                 close(fsock);
874         return retval;
875 }
876
877 /*
878  * We need to translate between nfs status return values and
879  * the local errno values which may not be the same.
880  *
881  * Andreas Schwab <schwab@LS5.informatik.uni-dortmund.de>: change errno:
882  * "after #include <errno.h> the symbol errno is reserved for any use,
883  *  it cannot even be used as a struct tag or field name".
884  */
885
886 #ifndef EDQUOT
887 #define EDQUOT  ENOSPC
888 #endif
889
890 static struct {
891         enum nfs_stat stat;
892         int errnum;
893 } nfs_errtbl[] = {
894         { NFS_OK,               0               },
895         { NFSERR_PERM,          EPERM           },
896         { NFSERR_NOENT,         ENOENT          },
897         { NFSERR_IO,            EIO             },
898         { NFSERR_NXIO,          ENXIO           },
899         { NFSERR_ACCES,         EACCES          },
900         { NFSERR_EXIST,         EEXIST          },
901         { NFSERR_NODEV,         ENODEV          },
902         { NFSERR_NOTDIR,        ENOTDIR         },
903         { NFSERR_ISDIR,         EISDIR          },
904 #ifdef NFSERR_INVAL
905         { NFSERR_INVAL,         EINVAL          },      /* that Sun forgot */
906 #endif
907         { NFSERR_FBIG,          EFBIG           },
908         { NFSERR_NOSPC,         ENOSPC          },
909         { NFSERR_ROFS,          EROFS           },
910         { NFSERR_NAMETOOLONG,   ENAMETOOLONG    },
911         { NFSERR_NOTEMPTY,      ENOTEMPTY       },
912         { NFSERR_DQUOT,         EDQUOT          },
913         { NFSERR_STALE,         ESTALE          },
914 #ifdef EWFLUSH
915         { NFSERR_WFLUSH,        EWFLUSH         },
916 #endif
917         /* Throw in some NFSv3 values for even more fun (HP returns these) */
918         { 71,                   EREMOTE         },
919
920         { -1,                   EIO             }
921 };
922
923 static char *nfs_strerror(int status)
924 {
925         int i;
926         static char buf[256];
927
928         for (i = 0; nfs_errtbl[i].stat != -1; i++) {
929                 if (nfs_errtbl[i].stat == status)
930                         return strerror(nfs_errtbl[i].errnum);
931         }
932         sprintf(buf, _("unknown nfs status return value: %d"), status);
933         return buf;
934 }
935
936 static bool_t
937 xdr_fhandle (XDR *xdrs, fhandle objp)
938 {
939         //register int32_t *buf;
940
941          if (!xdr_opaque (xdrs, objp, FHSIZE))
942                  return FALSE;
943         return TRUE;
944 }
945
946 bool_t
947 xdr_fhstatus (XDR *xdrs, fhstatus *objp)
948 {
949         //register int32_t *buf;
950
951          if (!xdr_u_int (xdrs, &objp->fhs_status))
952                  return FALSE;
953         switch (objp->fhs_status) {
954         case 0:
955                  if (!xdr_fhandle (xdrs, objp->fhstatus_u.fhs_fhandle))
956                          return FALSE;
957                 break;
958         default:
959                 break;
960         }
961         return TRUE;
962 }
963
964 bool_t
965 xdr_dirpath (XDR *xdrs, dirpath *objp)
966 {
967         //register int32_t *buf;
968
969          if (!xdr_string (xdrs, objp, MNTPATHLEN))
970                  return FALSE;
971         return TRUE;
972 }
973
974 bool_t
975 xdr_fhandle3 (XDR *xdrs, fhandle3 *objp)
976 {
977         //register int32_t *buf;
978
979          if (!xdr_bytes (xdrs, (char **)&objp->fhandle3_val, (unsigned int *) &objp->fhandle3_len, FHSIZE3))
980                  return FALSE;
981         return TRUE;
982 }
983
984 bool_t
985 xdr_mountres3_ok (XDR *xdrs, mountres3_ok *objp)
986 {
987         //register int32_t *buf;
988
989          if (!xdr_fhandle3 (xdrs, &objp->fhandle))
990                  return FALSE;
991          if (!xdr_array (xdrs, (char **)&objp->auth_flavours.auth_flavours_val, (unsigned int *) &objp->auth_flavours.auth_flavours_len, ~0,
992                 sizeof (int), (xdrproc_t) xdr_int))
993                  return FALSE;
994         return TRUE;
995 }
996
997 bool_t
998 xdr_mountstat3 (XDR *xdrs, mountstat3 *objp)
999 {
1000         //register int32_t *buf;
1001
1002          if (!xdr_enum (xdrs, (enum_t *) objp))
1003                  return FALSE;
1004         return TRUE;
1005 }
1006
1007 bool_t
1008 xdr_mountres3 (XDR *xdrs, mountres3 *objp)
1009 {
1010         //register int32_t *buf;
1011
1012          if (!xdr_mountstat3 (xdrs, &objp->fhs_status))
1013                  return FALSE;
1014         switch (objp->fhs_status) {
1015         case MNT_OK:
1016                  if (!xdr_mountres3_ok (xdrs, &objp->mountres3_u.mountinfo))
1017                          return FALSE;
1018                 break;
1019         default:
1020                 break;
1021         }
1022         return TRUE;
1023 }
1024