cp: make "cp file /dev/node" special case; explained in comments
[oweals/busybox.git] / util-linux / mount.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini mount implementation for busybox
4  *
5  * Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>.
6  * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
7  * Copyright (C) 2005-2006 by Rob Landley <rob@landley.net>
8  *
9  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
10  */
11
12 /* Design notes: There is no spec for mount.  Remind me to write one.
13
14    mount_main() calls singlemount() which calls mount_it_now().
15
16    mount_main() can loop through /etc/fstab for mount -a
17    singlemount() can loop through /etc/filesystems for fstype detection.
18    mount_it_now() does the actual mount.
19 */
20
21 #include "libbb.h"
22 #include <mntent.h>
23
24 /* Needed for nfs support only... */
25 #include <syslog.h>
26 #include <sys/utsname.h>
27 #undef TRUE
28 #undef FALSE
29 #include <rpc/rpc.h>
30 #include <rpc/pmap_prot.h>
31 #include <rpc/pmap_clnt.h>
32
33
34 #if defined(__dietlibc__)
35 /* 16.12.2006, Sampo Kellomaki (sampo@iki.fi)
36  * dietlibc-0.30 does not have implementation of getmntent_r() */
37 /* OTOH: why we use getmntent_r instead of getmntent? TODO... */
38 struct mntent *getmntent_r(FILE* stream, struct mntent* result, char* buffer, int bufsize)
39 {
40         /* *** XXX FIXME WARNING: This hack is NOT thread safe. --Sampo */
41         struct mntent* ment = getmntent(stream);
42         memcpy(result, ment, sizeof(struct mntent));
43         return result;
44 }
45 #endif
46
47
48 // Not real flags, but we want to be able to check for this.
49 enum {
50         MOUNT_USERS  = (1<<28)*ENABLE_DESKTOP,
51         MOUNT_NOAUTO = (1<<29),
52         MOUNT_SWAP   = (1<<30),
53 };
54 // TODO: more "user" flag compatibility.
55 // "user" option (from mount manpage):
56 // Only the user that mounted a filesystem can unmount it again.
57 // If any user should be able to unmount, then use users instead of user
58 // in the fstab line.  The owner option is similar to the user option,
59 // with the restriction that the user must be the owner of the special file.
60 // This may be useful e.g. for /dev/fd if a login script makes
61 // the console user owner of this device.
62
63 /* Standard mount options (from -o options or --options), with corresponding
64  * flags */
65
66 struct {
67         const char *name;
68         long flags;
69 } static mount_options[] = {
70         // MS_FLAGS set a bit.  ~MS_FLAGS disable that bit.  0 flags are NOPs.
71
72         USE_FEATURE_MOUNT_LOOP(
73                 {"loop", 0},
74         )
75
76         USE_FEATURE_MOUNT_FSTAB(
77                 {"defaults", 0},
78                 /* {"quiet", 0}, - do not filter out, vfat wants to see it */
79                 {"noauto", MOUNT_NOAUTO},
80                 {"sw", MOUNT_SWAP},
81                 {"swap", MOUNT_SWAP},
82                 USE_DESKTOP({"user",  MOUNT_USERS},)
83                 USE_DESKTOP({"users", MOUNT_USERS},)
84         )
85
86         USE_FEATURE_MOUNT_FLAGS(
87                 // vfs flags
88                 {"nosuid", MS_NOSUID},
89                 {"suid", ~MS_NOSUID},
90                 {"dev", ~MS_NODEV},
91                 {"nodev", MS_NODEV},
92                 {"exec", ~MS_NOEXEC},
93                 {"noexec", MS_NOEXEC},
94                 {"sync", MS_SYNCHRONOUS},
95                 {"async", ~MS_SYNCHRONOUS},
96                 {"atime", ~MS_NOATIME},
97                 {"noatime", MS_NOATIME},
98                 {"diratime", ~MS_NODIRATIME},
99                 {"nodiratime", MS_NODIRATIME},
100                 {"loud", ~MS_SILENT},
101
102                 // action flags
103
104                 {"bind", MS_BIND},
105                 {"move", MS_MOVE},
106                 {"shared", MS_SHARED},
107                 {"slave", MS_SLAVE},
108                 {"private", MS_PRIVATE},
109                 {"unbindable", MS_UNBINDABLE},
110                 {"rshared", MS_SHARED|MS_RECURSIVE},
111                 {"rslave", MS_SLAVE|MS_RECURSIVE},
112                 {"rprivate", MS_SLAVE|MS_RECURSIVE},
113                 {"runbindable", MS_UNBINDABLE|MS_RECURSIVE},
114         )
115
116         // Always understood.
117
118         {"ro", MS_RDONLY},        // vfs flag
119         {"rw", ~MS_RDONLY},       // vfs flag
120         {"remount", MS_REMOUNT},  // action flag
121 };
122
123
124 /* Append mount options to string */
125 static void append_mount_options(char **oldopts, const char *newopts)
126 {
127         if (*oldopts && **oldopts) {
128                 /* do not insert options which are already there */
129                 while (newopts[0]) {
130                         char *p;
131                         int len = strlen(newopts);
132                         p = strchr(newopts, ',');
133                         if (p) len = p - newopts;
134                         p = *oldopts;
135                         while (1) {
136                                 if (!strncmp(p, newopts, len)
137                                  && (p[len]==',' || p[len]==0))
138                                         goto skip;
139                                 p = strchr(p,',');
140                                 if (!p) break;
141                                 p++;
142                         }
143                         p = xasprintf("%s,%.*s", *oldopts, len, newopts);
144                         free(*oldopts);
145                         *oldopts = p;
146 skip:
147                         newopts += len;
148                         while (newopts[0] == ',') newopts++;
149                 }
150         } else {
151                 if (ENABLE_FEATURE_CLEAN_UP) free(*oldopts);
152                 *oldopts = xstrdup(newopts);
153         }
154 }
155
156 /* Use the mount_options list to parse options into flags.
157  * Also return list of unrecognized options if unrecognized!=NULL */
158 static int parse_mount_options(char *options, char **unrecognized)
159 {
160         int flags = MS_SILENT;
161
162         // Loop through options
163         for (;;) {
164                 int i;
165                 char *comma = strchr(options, ',');
166
167                 if (comma) *comma = 0;
168
169                 // Find this option in mount_options
170                 for (i = 0; i < ARRAY_SIZE(mount_options); i++) {
171                         if (!strcasecmp(mount_options[i].name, options)) {
172                                 long fl = mount_options[i].flags;
173                                 if (fl < 0) flags &= fl;
174                                 else flags |= fl;
175                                 break;
176                         }
177                 }
178                 // If unrecognized not NULL, append unrecognized mount options */
179                 if (unrecognized && i == ARRAY_SIZE(mount_options)) {
180                         // Add it to strflags, to pass on to kernel
181                         i = *unrecognized ? strlen(*unrecognized) : 0;
182                         *unrecognized = xrealloc(*unrecognized, i+strlen(options)+2);
183
184                         // Comma separated if it's not the first one
185                         if (i) (*unrecognized)[i++] = ',';
186                         strcpy((*unrecognized)+i, options);
187                 }
188
189                 // Advance to next option, or finish
190                 if (comma) {
191                         *comma = ',';
192                         options = ++comma;
193                 } else break;
194         }
195
196         return flags;
197 }
198
199 // Return a list of all block device backed filesystems
200
201 static llist_t *get_block_backed_filesystems(void)
202 {
203         static const char filesystems[2][sizeof("/proc/filesystems")] = {
204                 "/etc/filesystems",
205                 "/proc/filesystems",
206         };
207         char *fs, *buf;
208         llist_t *list = 0;
209         int i;
210         FILE *f;
211
212         for (i = 0; i < 2; i++) {
213                 f = fopen(filesystems[i], "r");
214                 if (!f) continue;
215
216                 while ((buf = xmalloc_getline(f)) != 0) {
217                         if (!strncmp(buf, "nodev", 5) && isspace(buf[5]))
218                                 continue;
219                         fs = skip_whitespace(buf);
220                         if (*fs=='#' || *fs=='*' || !*fs) continue;
221
222                         llist_add_to_end(&list, xstrdup(fs));
223                         free(buf);
224                 }
225                 if (ENABLE_FEATURE_CLEAN_UP) fclose(f);
226         }
227
228         return list;
229 }
230
231 llist_t *fslist = 0;
232
233 #if ENABLE_FEATURE_CLEAN_UP
234 static void delete_block_backed_filesystems(void)
235 {
236         llist_free(fslist, free);
237 }
238 #else
239 void delete_block_backed_filesystems(void);
240 #endif
241
242 #if ENABLE_FEATURE_MTAB_SUPPORT
243 static int useMtab = 1;
244 static int fakeIt;
245 #else
246 #define useMtab 0
247 #define fakeIt 0
248 #endif
249
250 // Perform actual mount of specific filesystem at specific location.
251 // NB: mp->xxx fields may be trashed on exit
252 static int mount_it_now(struct mntent *mp, int vfsflags, char *filteropts)
253 {
254         int rc = 0;
255
256         if (fakeIt) goto mtab;
257
258         // Mount, with fallback to read-only if necessary.
259
260         for (;;) {
261                 rc = mount(mp->mnt_fsname, mp->mnt_dir, mp->mnt_type,
262                                 vfsflags, filteropts);
263                 if (!rc || (vfsflags&MS_RDONLY) || (errno!=EACCES && errno!=EROFS))
264                         break;
265                 bb_error_msg("%s is write-protected, mounting read-only",
266                                 mp->mnt_fsname);
267                 vfsflags |= MS_RDONLY;
268         }
269
270         // Abort entirely if permission denied.
271
272         if (rc && errno == EPERM)
273                 bb_error_msg_and_die(bb_msg_perm_denied_are_you_root);
274
275         /* If the mount was successful, and we're maintaining an old-style
276          * mtab file by hand, add the new entry to it now. */
277  mtab:
278         if (ENABLE_FEATURE_MTAB_SUPPORT && useMtab && !rc && !(vfsflags & MS_REMOUNT)) {
279                 char *fsname;
280                 FILE *mountTable = setmntent(bb_path_mtab_file, "a+");
281                 int i;
282
283                 if (!mountTable) {
284                         bb_error_msg("no %s",bb_path_mtab_file);
285                         goto ret;
286                 }
287
288                 // Add vfs string flags
289
290                 for (i=0; mount_options[i].flags != MS_REMOUNT; i++)
291                         if (mount_options[i].flags > 0 && (mount_options[i].flags & vfsflags))
292                                 append_mount_options(&(mp->mnt_opts), mount_options[i].name);
293
294                 // Remove trailing / (if any) from directory we mounted on
295
296                 i = strlen(mp->mnt_dir) - 1;
297                 if (i > 0 && mp->mnt_dir[i] == '/') mp->mnt_dir[i] = 0;
298
299                 // Convert to canonical pathnames as needed
300
301                 mp->mnt_dir = bb_simplify_path(mp->mnt_dir);
302                 fsname = 0;
303                 if (!mp->mnt_type || !*mp->mnt_type) { /* bind mount */
304                         mp->mnt_fsname = fsname = bb_simplify_path(mp->mnt_fsname);
305                         mp->mnt_type = (char*)"bind";
306                 }
307                 mp->mnt_freq = mp->mnt_passno = 0;
308
309                 // Write and close.
310
311                 addmntent(mountTable, mp);
312                 endmntent(mountTable);
313                 if (ENABLE_FEATURE_CLEAN_UP) {
314                         free(mp->mnt_dir);
315                         free(fsname);
316                 }
317         }
318  ret:
319         return rc;
320 }
321
322 #if ENABLE_FEATURE_MOUNT_NFS
323
324 /*
325  * Linux NFS mount
326  * Copyright (C) 1993 Rick Sladkey <jrs@world.std.com>
327  *
328  * Licensed under GPLv2, see file LICENSE in this tarball for details.
329  *
330  * Wed Feb  8 12:51:48 1995, biro@yggdrasil.com (Ross Biro): allow all port
331  * numbers to be specified on the command line.
332  *
333  * Fri, 8 Mar 1996 18:01:39, Swen Thuemmler <swen@uni-paderborn.de>:
334  * Omit the call to connect() for Linux version 1.3.11 or later.
335  *
336  * Wed Oct  1 23:55:28 1997: Dick Streefland <dick_streefland@tasking.com>
337  * Implemented the "bg", "fg" and "retry" mount options for NFS.
338  *
339  * 1999-02-22 Arkadiusz Mi¶kiewicz <misiek@misiek.eu.org>
340  * - added Native Language Support
341  *
342  * Modified by Olaf Kirch and Trond Myklebust for new NFS code,
343  * plus NFSv3 stuff.
344  */
345
346 /* This is just a warning of a common mistake.  Possibly this should be a
347  * uclibc faq entry rather than in busybox... */
348 #if defined(__UCLIBC__) && ! defined(__UCLIBC_HAS_RPC__)
349 #error "You need to build uClibc with UCLIBC_HAS_RPC for NFS support."
350 #endif
351
352 #define MOUNTPORT 635
353 #define MNTPATHLEN 1024
354 #define MNTNAMLEN 255
355 #define FHSIZE 32
356 #define FHSIZE3 64
357
358 typedef char fhandle[FHSIZE];
359
360 typedef struct {
361         unsigned int fhandle3_len;
362         char *fhandle3_val;
363 } fhandle3;
364
365 enum mountstat3 {
366         MNT_OK = 0,
367         MNT3ERR_PERM = 1,
368         MNT3ERR_NOENT = 2,
369         MNT3ERR_IO = 5,
370         MNT3ERR_ACCES = 13,
371         MNT3ERR_NOTDIR = 20,
372         MNT3ERR_INVAL = 22,
373         MNT3ERR_NAMETOOLONG = 63,
374         MNT3ERR_NOTSUPP = 10004,
375         MNT3ERR_SERVERFAULT = 10006,
376 };
377 typedef enum mountstat3 mountstat3;
378
379 struct fhstatus {
380         unsigned int fhs_status;
381         union {
382                 fhandle fhs_fhandle;
383         } fhstatus_u;
384 };
385 typedef struct fhstatus fhstatus;
386
387 struct mountres3_ok {
388         fhandle3 fhandle;
389         struct {
390                 unsigned int auth_flavours_len;
391                 char *auth_flavours_val;
392         } auth_flavours;
393 };
394 typedef struct mountres3_ok mountres3_ok;
395
396 struct mountres3 {
397         mountstat3 fhs_status;
398         union {
399                 mountres3_ok mountinfo;
400         } mountres3_u;
401 };
402 typedef struct mountres3 mountres3;
403
404 typedef char *dirpath;
405
406 typedef char *name;
407
408 typedef struct mountbody *mountlist;
409
410 struct mountbody {
411         name ml_hostname;
412         dirpath ml_directory;
413         mountlist ml_next;
414 };
415 typedef struct mountbody mountbody;
416
417 typedef struct groupnode *groups;
418
419 struct groupnode {
420         name gr_name;
421         groups gr_next;
422 };
423 typedef struct groupnode groupnode;
424
425 typedef struct exportnode *exports;
426
427 struct exportnode {
428         dirpath ex_dir;
429         groups ex_groups;
430         exports ex_next;
431 };
432 typedef struct exportnode exportnode;
433
434 struct ppathcnf {
435         int pc_link_max;
436         short pc_max_canon;
437         short pc_max_input;
438         short pc_name_max;
439         short pc_path_max;
440         short pc_pipe_buf;
441         uint8_t pc_vdisable;
442         char pc_xxx;
443         short pc_mask[2];
444 };
445 typedef struct ppathcnf ppathcnf;
446
447 #define MOUNTPROG 100005
448 #define MOUNTVERS 1
449
450 #define MOUNTPROC_NULL 0
451 #define MOUNTPROC_MNT 1
452 #define MOUNTPROC_DUMP 2
453 #define MOUNTPROC_UMNT 3
454 #define MOUNTPROC_UMNTALL 4
455 #define MOUNTPROC_EXPORT 5
456 #define MOUNTPROC_EXPORTALL 6
457
458 #define MOUNTVERS_POSIX 2
459
460 #define MOUNTPROC_PATHCONF 7
461
462 #define MOUNT_V3 3
463
464 #define MOUNTPROC3_NULL 0
465 #define MOUNTPROC3_MNT 1
466 #define MOUNTPROC3_DUMP 2
467 #define MOUNTPROC3_UMNT 3
468 #define MOUNTPROC3_UMNTALL 4
469 #define MOUNTPROC3_EXPORT 5
470
471 enum {
472 #ifndef NFS_FHSIZE
473         NFS_FHSIZE = 32,
474 #endif
475 #ifndef NFS_PORT
476         NFS_PORT = 2049
477 #endif
478 };
479
480 /*
481  * We want to be able to compile mount on old kernels in such a way
482  * that the binary will work well on more recent kernels.
483  * Thus, if necessary we teach nfsmount.c the structure of new fields
484  * that will come later.
485  *
486  * Moreover, the new kernel includes conflict with glibc includes
487  * so it is easiest to ignore the kernel altogether (at compile time).
488  */
489
490 struct nfs2_fh {
491         char                    data[32];
492 };
493 struct nfs3_fh {
494         unsigned short          size;
495         unsigned char           data[64];
496 };
497
498 struct nfs_mount_data {
499         int             version;                /* 1 */
500         int             fd;                     /* 1 */
501         struct nfs2_fh  old_root;               /* 1 */
502         int             flags;                  /* 1 */
503         int             rsize;                  /* 1 */
504         int             wsize;                  /* 1 */
505         int             timeo;                  /* 1 */
506         int             retrans;                /* 1 */
507         int             acregmin;               /* 1 */
508         int             acregmax;               /* 1 */
509         int             acdirmin;               /* 1 */
510         int             acdirmax;               /* 1 */
511         struct sockaddr_in addr;                /* 1 */
512         char            hostname[256];          /* 1 */
513         int             namlen;                 /* 2 */
514         unsigned int    bsize;                  /* 3 */
515         struct nfs3_fh  root;                   /* 4 */
516 };
517
518 /* bits in the flags field */
519 enum {
520         NFS_MOUNT_SOFT = 0x0001,        /* 1 */
521         NFS_MOUNT_INTR = 0x0002,        /* 1 */
522         NFS_MOUNT_SECURE = 0x0004,      /* 1 */
523         NFS_MOUNT_POSIX = 0x0008,       /* 1 */
524         NFS_MOUNT_NOCTO = 0x0010,       /* 1 */
525         NFS_MOUNT_NOAC = 0x0020,        /* 1 */
526         NFS_MOUNT_TCP = 0x0040,         /* 2 */
527         NFS_MOUNT_VER3 = 0x0080,        /* 3 */
528         NFS_MOUNT_KERBEROS = 0x0100,    /* 3 */
529         NFS_MOUNT_NONLM = 0x0200        /* 3 */
530 };
531
532
533 /*
534  * We need to translate between nfs status return values and
535  * the local errno values which may not be the same.
536  *
537  * Andreas Schwab <schwab@LS5.informatik.uni-dortmund.de>: change errno:
538  * "after #include <errno.h> the symbol errno is reserved for any use,
539  *  it cannot even be used as a struct tag or field name".
540  */
541
542 #ifndef EDQUOT
543 #define EDQUOT  ENOSPC
544 #endif
545
546 // Convert each NFSERR_BLAH into EBLAH
547
548 static const struct {
549         int stat;
550         int errnum;
551 } nfs_errtbl[] = {
552         {0,0}, {1,EPERM}, {2,ENOENT}, {5,EIO}, {6,ENXIO}, {13,EACCES}, {17,EEXIST},
553         {19,ENODEV}, {20,ENOTDIR}, {21,EISDIR}, {22,EINVAL}, {27,EFBIG},
554         {28,ENOSPC}, {30,EROFS}, {63,ENAMETOOLONG}, {66,ENOTEMPTY}, {69,EDQUOT},
555         {70,ESTALE}, {71,EREMOTE}, {-1,EIO}
556 };
557
558 static char *nfs_strerror(int status)
559 {
560         int i;
561         static char buf[sizeof("unknown nfs status return value: ") + sizeof(int)*3];
562
563         for (i = 0; nfs_errtbl[i].stat != -1; i++) {
564                 if (nfs_errtbl[i].stat == status)
565                         return strerror(nfs_errtbl[i].errnum);
566         }
567         sprintf(buf, "unknown nfs status return value: %d", status);
568         return buf;
569 }
570
571 static bool_t xdr_fhandle(XDR *xdrs, fhandle objp)
572 {
573         if (!xdr_opaque(xdrs, objp, FHSIZE))
574                  return FALSE;
575         return TRUE;
576 }
577
578 static bool_t xdr_fhstatus(XDR *xdrs, fhstatus *objp)
579 {
580         if (!xdr_u_int(xdrs, &objp->fhs_status))
581                  return FALSE;
582         switch (objp->fhs_status) {
583         case 0:
584                 if (!xdr_fhandle(xdrs, objp->fhstatus_u.fhs_fhandle))
585                          return FALSE;
586                 break;
587         default:
588                 break;
589         }
590         return TRUE;
591 }
592
593 static bool_t xdr_dirpath(XDR *xdrs, dirpath *objp)
594 {
595         if (!xdr_string(xdrs, objp, MNTPATHLEN))
596                  return FALSE;
597         return TRUE;
598 }
599
600 static bool_t xdr_fhandle3(XDR *xdrs, fhandle3 *objp)
601 {
602         if (!xdr_bytes(xdrs, (char **)&objp->fhandle3_val, (unsigned int *) &objp->fhandle3_len, FHSIZE3))
603                  return FALSE;
604         return TRUE;
605 }
606
607 static bool_t xdr_mountres3_ok(XDR *xdrs, mountres3_ok *objp)
608 {
609         if (!xdr_fhandle3(xdrs, &objp->fhandle))
610                 return FALSE;
611         if (!xdr_array(xdrs, &(objp->auth_flavours.auth_flavours_val), &(objp->auth_flavours.auth_flavours_len), ~0,
612                                 sizeof (int), (xdrproc_t) xdr_int))
613                 return FALSE;
614         return TRUE;
615 }
616
617 static bool_t xdr_mountstat3(XDR *xdrs, mountstat3 *objp)
618 {
619         if (!xdr_enum(xdrs, (enum_t *) objp))
620                  return FALSE;
621         return TRUE;
622 }
623
624 static bool_t xdr_mountres3(XDR *xdrs, mountres3 *objp)
625 {
626         if (!xdr_mountstat3(xdrs, &objp->fhs_status))
627                 return FALSE;
628         switch (objp->fhs_status) {
629         case MNT_OK:
630                 if (!xdr_mountres3_ok(xdrs, &objp->mountres3_u.mountinfo))
631                          return FALSE;
632                 break;
633         default:
634                 break;
635         }
636         return TRUE;
637 }
638
639 #define MAX_NFSPROT ((nfs_mount_version >= 4) ? 3 : 2)
640
641 /*
642  * nfs_mount_version according to the sources seen at compile time.
643  */
644 static int nfs_mount_version;
645 static int kernel_version;
646
647 /*
648  * Unfortunately, the kernel prints annoying console messages
649  * in case of an unexpected nfs mount version (instead of
650  * just returning some error).  Therefore we'll have to try
651  * and figure out what version the kernel expects.
652  *
653  * Variables:
654  *      KERNEL_NFS_MOUNT_VERSION: kernel sources at compile time
655  *      NFS_MOUNT_VERSION: these nfsmount sources at compile time
656  *      nfs_mount_version: version this source and running kernel can handle
657  */
658 static void
659 find_kernel_nfs_mount_version(void)
660 {
661         if (kernel_version)
662                 return;
663
664         nfs_mount_version = 4; /* default */
665
666         kernel_version = get_linux_version_code();
667         if (kernel_version) {
668                 if (kernel_version < KERNEL_VERSION(2,1,32))
669                         nfs_mount_version = 1;
670                 else if (kernel_version < KERNEL_VERSION(2,2,18) ||
671                                 (kernel_version >= KERNEL_VERSION(2,3,0) &&
672                                  kernel_version < KERNEL_VERSION(2,3,99)))
673                         nfs_mount_version = 3;
674                 /* else v4 since 2.3.99pre4 */
675         }
676 }
677
678 static struct pmap *
679 get_mountport(struct sockaddr_in *server_addr,
680         long unsigned prog,
681         long unsigned version,
682         long unsigned proto,
683         long unsigned port)
684 {
685         struct pmaplist *pmap;
686         static struct pmap p = {0, 0, 0, 0};
687
688         server_addr->sin_port = PMAPPORT;
689 /* glibc 2.4 (still) has pmap_getmaps(struct sockaddr_in *).
690  * I understand it like "IPv6 for this is not 100% ready" */
691         pmap = pmap_getmaps(server_addr);
692
693         if (version > MAX_NFSPROT)
694                 version = MAX_NFSPROT;
695         if (!prog)
696                 prog = MOUNTPROG;
697         p.pm_prog = prog;
698         p.pm_vers = version;
699         p.pm_prot = proto;
700         p.pm_port = port;
701
702         while (pmap) {
703                 if (pmap->pml_map.pm_prog != prog)
704                         goto next;
705                 if (!version && p.pm_vers > pmap->pml_map.pm_vers)
706                         goto next;
707                 if (version > 2 && pmap->pml_map.pm_vers != version)
708                         goto next;
709                 if (version && version <= 2 && pmap->pml_map.pm_vers > 2)
710                         goto next;
711                 if (pmap->pml_map.pm_vers > MAX_NFSPROT ||
712                     (proto && p.pm_prot && pmap->pml_map.pm_prot != proto) ||
713                     (port && pmap->pml_map.pm_port != port))
714                         goto next;
715                 memcpy(&p, &pmap->pml_map, sizeof(p));
716 next:
717                 pmap = pmap->pml_next;
718         }
719         if (!p.pm_vers)
720                 p.pm_vers = MOUNTVERS;
721         if (!p.pm_port)
722                 p.pm_port = MOUNTPORT;
723         if (!p.pm_prot)
724                 p.pm_prot = IPPROTO_TCP;
725         return &p;
726 }
727
728 #if BB_MMU
729 static int daemonize(void)
730 {
731         int fd;
732         int pid = fork();
733         if (pid < 0) /* error */
734                 return -errno;
735         if (pid > 0) /* parent */
736                 return 0;
737         /* child */
738         fd = xopen(bb_dev_null, O_RDWR);
739         dup2(fd, 0);
740         dup2(fd, 1);
741         dup2(fd, 2);
742         while (fd > 2) close(fd--);
743         setsid();
744         openlog(applet_name, LOG_PID, LOG_DAEMON);
745         logmode = LOGMODE_SYSLOG;
746         return 1;
747 }
748 #else
749 static inline int daemonize(void) { return -ENOSYS; }
750 #endif
751
752 // TODO
753 static inline int we_saw_this_host_before(const char *hostname)
754 {
755         return 0;
756 }
757
758 /* RPC strerror analogs are terminally idiotic:
759  * *mandatory* prefix and \n at end.
760  * This hopefully helps. Usage:
761  * error_msg_rpc(clnt_*error*(" ")) */
762 static void error_msg_rpc(const char *msg)
763 {
764         int len;
765         while (msg[0] == ' ' || msg[0] == ':') msg++;
766         len = strlen(msg);
767         while (len && msg[len-1] == '\n') len--;
768         bb_error_msg("%.*s", len, msg);
769 }
770
771 // NB: mp->xxx fields may be trashed on exit
772 static int nfsmount(struct mntent *mp, int vfsflags, char *filteropts)
773 {
774         CLIENT *mclient;
775         char *hostname;
776         char *pathname;
777         char *mounthost;
778         struct nfs_mount_data data;
779         char *opt;
780         struct hostent *hp;
781         struct sockaddr_in server_addr;
782         struct sockaddr_in mount_server_addr;
783         int msock, fsock;
784         union {
785                 struct fhstatus nfsv2;
786                 struct mountres3 nfsv3;
787         } status;
788         int daemonized;
789         char *s;
790         int port;
791         int mountport;
792         int proto;
793 #if BB_MMU
794         int bg = 0;
795 #else
796         enum { bg = 0 };
797 #endif
798         int soft;
799         int intr;
800         int posix;
801         int nocto;
802         int noac;
803         int nolock;
804         int retry;
805         int tcp;
806         int mountprog;
807         int mountvers;
808         int nfsprog;
809         int nfsvers;
810         int retval;
811
812         find_kernel_nfs_mount_version();
813
814         daemonized = 0;
815         mounthost = NULL;
816         retval = ETIMEDOUT;
817         msock = fsock = -1;
818         mclient = NULL;
819
820         /* NB: hostname, mounthost, filteropts must be free()d prior to return */
821
822         filteropts = xstrdup(filteropts); /* going to trash it later... */
823
824         hostname = xstrdup(mp->mnt_fsname);
825         /* mount_main() guarantees that ':' is there */
826         s = strchr(hostname, ':');
827         pathname = s + 1;
828         *s = '\0';
829         /* Ignore all but first hostname in replicated mounts
830            until they can be fully supported. (mack@sgi.com) */
831         s = strchr(hostname, ',');
832         if (s) {
833                 *s = '\0';
834                 bb_error_msg("warning: multiple hostnames not supported");
835         }
836
837         server_addr.sin_family = AF_INET;
838         if (!inet_aton(hostname, &server_addr.sin_addr)) {
839                 hp = gethostbyname(hostname);
840                 if (hp == NULL) {
841                         bb_herror_msg("%s", hostname);
842                         goto fail;
843                 }
844                 if (hp->h_length > sizeof(struct in_addr)) {
845                         bb_error_msg("got bad hp->h_length");
846                         hp->h_length = sizeof(struct in_addr);
847                 }
848                 memcpy(&server_addr.sin_addr,
849                                 hp->h_addr, hp->h_length);
850         }
851
852         memcpy(&mount_server_addr, &server_addr, sizeof(mount_server_addr));
853
854         /* add IP address to mtab options for use when unmounting */
855
856         if (!mp->mnt_opts) { /* TODO: actually mp->mnt_opts is never NULL */
857                 mp->mnt_opts = xasprintf("addr=%s", inet_ntoa(server_addr.sin_addr));
858         } else {
859                 char *tmp = xasprintf("%s%saddr=%s", mp->mnt_opts,
860                                         mp->mnt_opts[0] ? "," : "",
861                                         inet_ntoa(server_addr.sin_addr));
862                 free(mp->mnt_opts);
863                 mp->mnt_opts = tmp;
864         }
865
866         /* Set default options.
867          * rsize/wsize (and bsize, for ver >= 3) are left 0 in order to
868          * let the kernel decide.
869          * timeo is filled in after we know whether it'll be TCP or UDP. */
870         memset(&data, 0, sizeof(data));
871         data.retrans    = 3;
872         data.acregmin   = 3;
873         data.acregmax   = 60;
874         data.acdirmin   = 30;
875         data.acdirmax   = 60;
876         data.namlen     = NAME_MAX;
877
878         soft = 0;
879         intr = 0;
880         posix = 0;
881         nocto = 0;
882         nolock = 0;
883         noac = 0;
884         retry = 10000;          /* 10000 minutes ~ 1 week */
885         tcp = 0;
886
887         mountprog = MOUNTPROG;
888         mountvers = 0;
889         port = 0;
890         mountport = 0;
891         nfsprog = 100003;
892         nfsvers = 0;
893
894         /* parse options */
895         if (filteropts) for (opt = strtok(filteropts, ","); opt; opt = strtok(NULL, ",")) {
896                 char *opteq = strchr(opt, '=');
897                 if (opteq) {
898                         static const char options[] ALIGN1 =
899                                 /* 0 */ "rsize\0"
900                                 /* 1 */ "wsize\0"
901                                 /* 2 */ "timeo\0"
902                                 /* 3 */ "retrans\0"
903                                 /* 4 */ "acregmin\0"
904                                 /* 5 */ "acregmax\0"
905                                 /* 6 */ "acdirmin\0"
906                                 /* 7 */ "acdirmax\0"
907                                 /* 8 */ "actimeo\0"
908                                 /* 9 */ "retry\0"
909                                 /* 10 */ "port\0"
910                                 /* 11 */ "mountport\0"
911                                 /* 12 */ "mounthost\0"
912                                 /* 13 */ "mountprog\0"
913                                 /* 14 */ "mountvers\0"
914                                 /* 15 */ "nfsprog\0"
915                                 /* 16 */ "nfsvers\0"
916                                 /* 17 */ "vers\0"
917                                 /* 18 */ "proto\0"
918                                 /* 19 */ "namlen\0"
919                                 /* 20 */ "addr\0";
920                         int val = xatoi_u(opteq + 1);
921                         *opteq = '\0';
922                         switch (index_in_strings(options, opt)) {
923                         case 0: // "rsize"
924                                 data.rsize = val;
925                                 break;
926                         case 1: // "wsize"
927                                 data.wsize = val;
928                                 break;
929                         case 2: // "timeo"
930                                 data.timeo = val;
931                                 break;
932                         case 3: // "retrans"
933                                 data.retrans = val;
934                                 break;
935                         case 4: // "acregmin"
936                                 data.acregmin = val;
937                                 break;
938                         case 5: // "acregmax"
939                                 data.acregmax = val;
940                                 break;
941                         case 6: // "acdirmin"
942                                 data.acdirmin = val;
943                                 break;
944                         case 7: // "acdirmax"
945                                 data.acdirmax = val;
946                                 break;
947                         case 8: // "actimeo"
948                                 data.acregmin = val;
949                                 data.acregmax = val;
950                                 data.acdirmin = val;
951                                 data.acdirmax = val;
952                                 break;
953                         case 9: // "retry"
954                                 retry = val;
955                                 break;
956                         case 10: // "port"
957                                 port = val;
958                                 break;
959                         case 11: // "mountport"
960                                 mountport = val;
961                                 break;
962                         case 12: // "mounthost"
963                                 mounthost = xstrndup(opteq+1,
964                                                 strcspn(opteq+1," \t\n\r,"));
965                                 break;
966                         case 13: // "mountprog"
967                                 mountprog = val;
968                                 break;
969                         case 14: // "mountvers"
970                                 mountvers = val;
971                                 break;
972                         case 15: // "nfsprog"
973                                 nfsprog = val;
974                                 break;
975                         case 16: // "nfsvers"
976                         case 17: // "vers"
977                                 nfsvers = val;
978                                 break;
979                         case 18: // "proto"
980                                 if (!strncmp(opteq+1, "tcp", 3))
981                                         tcp = 1;
982                                 else if (!strncmp(opteq+1, "udp", 3))
983                                         tcp = 0;
984                                 else
985                                         bb_error_msg("warning: unrecognized proto= option");
986                                 break;
987                         case 19: // "namlen"
988                                 if (nfs_mount_version >= 2)
989                                         data.namlen = val;
990                                 else
991                                         bb_error_msg("warning: option namlen is not supported\n");
992                                 break;
993                         case 20: // "addr" - ignore
994                                 break;
995                         default:
996                                 bb_error_msg("unknown nfs mount parameter: %s=%d", opt, val);
997                                 goto fail;
998                         }
999                 }
1000                 else {
1001                         static const char options[] ALIGN1 =
1002                                 "bg\0"
1003                                 "fg\0"
1004                                 "soft\0"
1005                                 "hard\0"
1006                                 "intr\0"
1007                                 "posix\0"
1008                                 "cto\0"
1009                                 "ac\0"
1010                                 "tcp\0"
1011                                 "udp\0"
1012                                 "lock\0";
1013                         int val = 1;
1014                         if (!strncmp(opt, "no", 2)) {
1015                                 val = 0;
1016                                 opt += 2;
1017                         }
1018                         switch (index_in_strings(options, opt)) {
1019                         case 0: // "bg"
1020 #if BB_MMU
1021                                 bg = val;
1022 #endif
1023                                 break;
1024                         case 1: // "fg"
1025 #if BB_MMU
1026                                 bg = !val;
1027 #endif
1028                                 break;
1029                         case 2: // "soft"
1030                                 soft = val;
1031                                 break;
1032                         case 3: // "hard"
1033                                 soft = !val;
1034                                 break;
1035                         case 4: // "intr"
1036                                 intr = val;
1037                                 break;
1038                         case 5: // "posix"
1039                                 posix = val;
1040                                 break;
1041                         case 6: // "cto"
1042                                 nocto = !val;
1043                                 break;
1044                         case 7: // "ac"
1045                                 noac = !val;
1046                                 break;
1047                         case 8: // "tcp"
1048                                 tcp = val;
1049                                 break;
1050                         case 9: // "udp"
1051                                 tcp = !val;
1052                                 break;
1053                         case 10: // "lock"
1054                                 if (nfs_mount_version >= 3)
1055                                         nolock = !val;
1056                                 else
1057                                         bb_error_msg("warning: option nolock is not supported");
1058                                 break;
1059                         default:
1060                                 bb_error_msg("unknown nfs mount option: %s%s", val ? "" : "no", opt);
1061                                 goto fail;
1062                         }
1063                 }
1064         }
1065         proto = (tcp) ? IPPROTO_TCP : IPPROTO_UDP;
1066
1067         data.flags = (soft ? NFS_MOUNT_SOFT : 0)
1068                 | (intr ? NFS_MOUNT_INTR : 0)
1069                 | (posix ? NFS_MOUNT_POSIX : 0)
1070                 | (nocto ? NFS_MOUNT_NOCTO : 0)
1071                 | (noac ? NFS_MOUNT_NOAC : 0);
1072         if (nfs_mount_version >= 2)
1073                 data.flags |= (tcp ? NFS_MOUNT_TCP : 0);
1074         if (nfs_mount_version >= 3)
1075                 data.flags |= (nolock ? NFS_MOUNT_NONLM : 0);
1076         if (nfsvers > MAX_NFSPROT || mountvers > MAX_NFSPROT) {
1077                 bb_error_msg("NFSv%d not supported", nfsvers);
1078                 goto fail;
1079         }
1080         if (nfsvers && !mountvers)
1081                 mountvers = (nfsvers < 3) ? 1 : nfsvers;
1082         if (nfsvers && nfsvers < mountvers) {
1083                 mountvers = nfsvers;
1084         }
1085
1086         /* Adjust options if none specified */
1087         if (!data.timeo)
1088                 data.timeo = tcp ? 70 : 7;
1089
1090         data.version = nfs_mount_version;
1091
1092         if (vfsflags & MS_REMOUNT)
1093                 goto do_mount;
1094
1095         /*
1096          * If the previous mount operation on the same host was
1097          * backgrounded, and the "bg" for this mount is also set,
1098          * give up immediately, to avoid the initial timeout.
1099          */
1100         if (bg && we_saw_this_host_before(hostname)) {
1101                 daemonized = daemonize();
1102                 if (daemonized <= 0) { /* parent or error */
1103                         retval = -daemonized;
1104                         goto ret;
1105                 }
1106         }
1107
1108         /* create mount daemon client */
1109         /* See if the nfs host = mount host. */
1110         if (mounthost) {
1111                 if (mounthost[0] >= '0' && mounthost[0] <= '9') {
1112                         mount_server_addr.sin_family = AF_INET;
1113                         mount_server_addr.sin_addr.s_addr = inet_addr(hostname);
1114                 } else {
1115                         hp = gethostbyname(mounthost);
1116                         if (hp == NULL) {
1117                                 bb_herror_msg("%s", mounthost);
1118                                 goto fail;
1119                         } else {
1120                                 if (hp->h_length > sizeof(struct in_addr)) {
1121                                         bb_error_msg("got bad hp->h_length?");
1122                                         hp->h_length = sizeof(struct in_addr);
1123                                 }
1124                                 mount_server_addr.sin_family = AF_INET;
1125                                 memcpy(&mount_server_addr.sin_addr,
1126                                                 hp->h_addr, hp->h_length);
1127                         }
1128                 }
1129         }
1130
1131         /*
1132          * The following loop implements the mount retries. When the mount
1133          * times out, and the "bg" option is set, we background ourself
1134          * and continue trying.
1135          *
1136          * The case where the mount point is not present and the "bg"
1137          * option is set, is treated as a timeout. This is done to
1138          * support nested mounts.
1139          *
1140          * The "retry" count specified by the user is the number of
1141          * minutes to retry before giving up.
1142          */
1143         {
1144                 struct timeval total_timeout;
1145                 struct timeval retry_timeout;
1146                 struct pmap* pm_mnt;
1147                 time_t t;
1148                 time_t prevt;
1149                 time_t timeout;
1150
1151                 retry_timeout.tv_sec = 3;
1152                 retry_timeout.tv_usec = 0;
1153                 total_timeout.tv_sec = 20;
1154                 total_timeout.tv_usec = 0;
1155                 timeout = time(NULL) + 60 * retry;
1156                 prevt = 0;
1157                 t = 30;
1158 retry:
1159                 /* be careful not to use too many CPU cycles */
1160                 if (t - prevt < 30)
1161                         sleep(30);
1162
1163                 pm_mnt = get_mountport(&mount_server_addr,
1164                                 mountprog,
1165                                 mountvers,
1166                                 proto,
1167                                 mountport);
1168                 nfsvers = (pm_mnt->pm_vers < 2) ? 2 : pm_mnt->pm_vers;
1169
1170                 /* contact the mount daemon via TCP */
1171                 mount_server_addr.sin_port = htons(pm_mnt->pm_port);
1172                 msock = RPC_ANYSOCK;
1173
1174                 switch (pm_mnt->pm_prot) {
1175                 case IPPROTO_UDP:
1176                         mclient = clntudp_create(&mount_server_addr,
1177                                                  pm_mnt->pm_prog,
1178                                                  pm_mnt->pm_vers,
1179                                                  retry_timeout,
1180                                                  &msock);
1181                         if (mclient)
1182                                 break;
1183                         mount_server_addr.sin_port = htons(pm_mnt->pm_port);
1184                         msock = RPC_ANYSOCK;
1185                 case IPPROTO_TCP:
1186                         mclient = clnttcp_create(&mount_server_addr,
1187                                                  pm_mnt->pm_prog,
1188                                                  pm_mnt->pm_vers,
1189                                                  &msock, 0, 0);
1190                         break;
1191                 default:
1192                         mclient = NULL;
1193                 }
1194                 if (!mclient) {
1195                         if (!daemonized && prevt == 0)
1196                                 error_msg_rpc(clnt_spcreateerror(" "));
1197                 } else {
1198                         enum clnt_stat clnt_stat;
1199                         /* try to mount hostname:pathname */
1200                         mclient->cl_auth = authunix_create_default();
1201
1202                         /* make pointers in xdr_mountres3 NULL so
1203                          * that xdr_array allocates memory for us
1204                          */
1205                         memset(&status, 0, sizeof(status));
1206
1207                         if (pm_mnt->pm_vers == 3)
1208                                 clnt_stat = clnt_call(mclient, MOUNTPROC3_MNT,
1209                                               (xdrproc_t) xdr_dirpath,
1210                                               (caddr_t) &pathname,
1211                                               (xdrproc_t) xdr_mountres3,
1212                                               (caddr_t) &status,
1213                                               total_timeout);
1214                         else
1215                                 clnt_stat = clnt_call(mclient, MOUNTPROC_MNT,
1216                                               (xdrproc_t) xdr_dirpath,
1217                                               (caddr_t) &pathname,
1218                                               (xdrproc_t) xdr_fhstatus,
1219                                               (caddr_t) &status,
1220                                               total_timeout);
1221
1222                         if (clnt_stat == RPC_SUCCESS)
1223                                 goto prepare_kernel_data; /* we're done */
1224                         if (errno != ECONNREFUSED) {
1225                                 error_msg_rpc(clnt_sperror(mclient, " "));
1226                                 goto fail;      /* don't retry */
1227                         }
1228                         /* Connection refused */
1229                         if (!daemonized && prevt == 0) /* print just once */
1230                                 error_msg_rpc(clnt_sperror(mclient, " "));
1231                         auth_destroy(mclient->cl_auth);
1232                         clnt_destroy(mclient);
1233                         mclient = NULL;
1234                         close(msock);
1235                         msock = -1;
1236                 }
1237
1238                 /* Timeout. We are going to retry... maybe */
1239
1240                 if (!bg)
1241                         goto fail;
1242                 if (!daemonized) {
1243                         daemonized = daemonize();
1244                         if (daemonized <= 0) { /* parent or error */
1245                                 retval = -daemonized;
1246                                 goto ret;
1247                         }
1248                 }
1249                 prevt = t;
1250                 t = time(NULL);
1251                 if (t >= timeout)
1252                         /* TODO error message */
1253                         goto fail;
1254
1255                 goto retry;
1256         }
1257
1258 prepare_kernel_data:
1259
1260         if (nfsvers == 2) {
1261                 if (status.nfsv2.fhs_status != 0) {
1262                         bb_error_msg("%s:%s failed, reason given by server: %s",
1263                                 hostname, pathname,
1264                                 nfs_strerror(status.nfsv2.fhs_status));
1265                         goto fail;
1266                 }
1267                 memcpy(data.root.data,
1268                                 (char *) status.nfsv2.fhstatus_u.fhs_fhandle,
1269                                 NFS_FHSIZE);
1270                 data.root.size = NFS_FHSIZE;
1271                 memcpy(data.old_root.data,
1272                                 (char *) status.nfsv2.fhstatus_u.fhs_fhandle,
1273                                 NFS_FHSIZE);
1274         } else {
1275                 fhandle3 *my_fhandle;
1276                 if (status.nfsv3.fhs_status != 0) {
1277                         bb_error_msg("%s:%s failed, reason given by server: %s",
1278                                 hostname, pathname,
1279                                 nfs_strerror(status.nfsv3.fhs_status));
1280                         goto fail;
1281                 }
1282                 my_fhandle = &status.nfsv3.mountres3_u.mountinfo.fhandle;
1283                 memset(data.old_root.data, 0, NFS_FHSIZE);
1284                 memset(&data.root, 0, sizeof(data.root));
1285                 data.root.size = my_fhandle->fhandle3_len;
1286                 memcpy(data.root.data,
1287                                 (char *) my_fhandle->fhandle3_val,
1288                                 my_fhandle->fhandle3_len);
1289
1290                 data.flags |= NFS_MOUNT_VER3;
1291         }
1292
1293         /* create nfs socket for kernel */
1294
1295         if (tcp) {
1296                 if (nfs_mount_version < 3) {
1297                         bb_error_msg("NFS over TCP is not supported");
1298                         goto fail;
1299                 }
1300                 fsock = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
1301         } else
1302                 fsock = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP);
1303         if (fsock < 0) {
1304                 bb_perror_msg("nfs socket");
1305                 goto fail;
1306         }
1307         if (bindresvport(fsock, 0) < 0) {
1308                 bb_perror_msg("nfs bindresvport");
1309                 goto fail;
1310         }
1311         if (port == 0) {
1312                 server_addr.sin_port = PMAPPORT;
1313                 port = pmap_getport(&server_addr, nfsprog, nfsvers,
1314                                         tcp ? IPPROTO_TCP : IPPROTO_UDP);
1315                 if (port == 0)
1316                         port = NFS_PORT;
1317         }
1318         server_addr.sin_port = htons(port);
1319
1320         /* prepare data structure for kernel */
1321
1322         data.fd = fsock;
1323         memcpy((char *) &data.addr, (char *) &server_addr, sizeof(data.addr));
1324         strncpy(data.hostname, hostname, sizeof(data.hostname));
1325
1326         /* clean up */
1327
1328         auth_destroy(mclient->cl_auth);
1329         clnt_destroy(mclient);
1330         close(msock);
1331         msock = -1;
1332
1333         if (bg) {
1334                 /* We must wait until mount directory is available */
1335                 struct stat statbuf;
1336                 int delay = 1;
1337                 while (stat(mp->mnt_dir, &statbuf) == -1) {
1338                         if (!daemonized) {
1339                                 daemonized = daemonize();
1340                                 if (daemonized <= 0) { /* parent or error */
1341         // FIXME: parent doesn't close fsock - ??!
1342                                         retval = -daemonized;
1343                                         goto ret;
1344                                 }
1345                         }
1346                         sleep(delay);   /* 1, 2, 4, 8, 16, 30, ... */
1347                         delay *= 2;
1348                         if (delay > 30)
1349                                 delay = 30;
1350                 }
1351         }
1352
1353 do_mount: /* perform actual mount */
1354
1355         mp->mnt_type = (char*)"nfs";
1356         retval = mount_it_now(mp, vfsflags, (char*)&data);
1357         goto ret;
1358
1359 fail:   /* abort */
1360
1361         if (msock >= 0) {
1362                 if (mclient) {
1363                         auth_destroy(mclient->cl_auth);
1364                         clnt_destroy(mclient);
1365                 }
1366                 close(msock);
1367         }
1368         if (fsock >= 0)
1369                 close(fsock);
1370
1371 ret:
1372         free(hostname);
1373         free(mounthost);
1374         free(filteropts);
1375         return retval;
1376 }
1377
1378 #else /* !ENABLE_FEATURE_MOUNT_NFS */
1379
1380 /* Never called. Call should be optimized out. */
1381 int nfsmount(struct mntent *mp, int vfsflags, char *filteropts);
1382
1383 #endif /* !ENABLE_FEATURE_MOUNT_NFS */
1384
1385 // Mount one directory.  Handles CIFS, NFS, loopback, autobind, and filesystem
1386 // type detection.  Returns 0 for success, nonzero for failure.
1387 // NB: mp->xxx fields may be trashed on exit
1388 static int singlemount(struct mntent *mp, int ignore_busy)
1389 {
1390         int rc = -1, vfsflags;
1391         char *loopFile = 0, *filteropts = 0;
1392         llist_t *fl = 0;
1393         struct stat st;
1394
1395         vfsflags = parse_mount_options(mp->mnt_opts, &filteropts);
1396
1397         // Treat fstype "auto" as unspecified.
1398
1399         if (mp->mnt_type && strcmp(mp->mnt_type,"auto") == 0)
1400                 mp->mnt_type = 0;
1401
1402         // Might this be an CIFS filesystem?
1403
1404         if (ENABLE_FEATURE_MOUNT_CIFS
1405          && (!mp->mnt_type || strcmp(mp->mnt_type,"cifs") == 0)
1406          && (mp->mnt_fsname[0]=='/' || mp->mnt_fsname[0]=='\\')
1407          && mp->mnt_fsname[0]==mp->mnt_fsname[1]
1408         ) {
1409                 len_and_sockaddr *lsa;
1410                 char *ip, *dotted;
1411                 char *s;
1412
1413                 rc = 1;
1414                 // Replace '/' with '\' and verify that unc points to "//server/share".
1415
1416                 for (s = mp->mnt_fsname; *s; ++s)
1417                         if (*s == '/') *s = '\\';
1418
1419                 // get server IP
1420
1421                 s = strrchr(mp->mnt_fsname, '\\');
1422                 if (s <= mp->mnt_fsname+1) goto report_error;
1423                 *s = '\0';
1424                 lsa = host2sockaddr(mp->mnt_fsname+2, 0);
1425                 *s = '\\';
1426                 if (!lsa) goto report_error;
1427
1428                 // insert ip=... option into string flags.
1429
1430                 dotted = xmalloc_sockaddr2dotted_noport(&lsa->sa);
1431                 ip = xasprintf("ip=%s", dotted);
1432                 parse_mount_options(ip, &filteropts);
1433
1434                 // compose new unc '\\server-ip\share'
1435                 // (s => slash after hostname)
1436
1437                 mp->mnt_fsname = xasprintf("\\\\%s%s", dotted, s);
1438
1439                 // lock is required
1440                 vfsflags |= MS_MANDLOCK;
1441
1442                 mp->mnt_type = (char*)"cifs";
1443                 rc = mount_it_now(mp, vfsflags, filteropts);
1444                 if (ENABLE_FEATURE_CLEAN_UP) {
1445                         free(mp->mnt_fsname);
1446                         free(ip);
1447                         free(dotted);
1448                         free(lsa);
1449                 }
1450                 goto report_error;
1451         }
1452
1453         // Might this be an NFS filesystem?
1454
1455         if (ENABLE_FEATURE_MOUNT_NFS
1456          && (!mp->mnt_type || !strcmp(mp->mnt_type, "nfs"))
1457          && strchr(mp->mnt_fsname, ':') != NULL
1458         ) {
1459                 rc = nfsmount(mp, vfsflags, filteropts);
1460                 goto report_error;
1461         }
1462
1463         // Look at the file.  (Not found isn't a failure for remount, or for
1464         // a synthetic filesystem like proc or sysfs.)
1465         // (We use stat, not lstat, in order to allow
1466         // mount symlink_to_file_or_blkdev dir)
1467
1468         if (!stat(mp->mnt_fsname, &st)
1469          && !(vfsflags & (MS_REMOUNT | MS_BIND | MS_MOVE))
1470         ) {
1471                 // Do we need to allocate a loopback device for it?
1472
1473                 if (ENABLE_FEATURE_MOUNT_LOOP && S_ISREG(st.st_mode)) {
1474                         loopFile = bb_simplify_path(mp->mnt_fsname);
1475                         mp->mnt_fsname = NULL; /* will receive malloced loop dev name */
1476                         if (set_loop(&(mp->mnt_fsname), loopFile, 0) < 0) {
1477                                 if (errno == EPERM || errno == EACCES)
1478                                         bb_error_msg(bb_msg_perm_denied_are_you_root);
1479                                 else
1480                                         bb_perror_msg("cannot setup loop device");
1481                                 return errno;
1482                         }
1483
1484                 // Autodetect bind mounts
1485
1486                 } else if (S_ISDIR(st.st_mode) && !mp->mnt_type)
1487                         vfsflags |= MS_BIND;
1488         }
1489
1490         /* If we know the fstype (or don't need to), jump straight
1491          * to the actual mount. */
1492
1493         if (mp->mnt_type || (vfsflags & (MS_REMOUNT | MS_BIND | MS_MOVE)))
1494                 rc = mount_it_now(mp, vfsflags, filteropts);
1495         else {
1496                 // Loop through filesystem types until mount succeeds
1497                 // or we run out
1498
1499                 /* Initialize list of block backed filesystems.  This has to be
1500                  * done here so that during "mount -a", mounts after /proc shows up
1501                  * can autodetect. */
1502
1503                 if (!fslist) {
1504                         fslist = get_block_backed_filesystems();
1505                         if (ENABLE_FEATURE_CLEAN_UP && fslist)
1506                                 atexit(delete_block_backed_filesystems);
1507                 }
1508
1509                 for (fl = fslist; fl; fl = fl->link) {
1510                         mp->mnt_type = fl->data;
1511                         rc = mount_it_now(mp, vfsflags, filteropts);
1512                         if (!rc) break;
1513                 }
1514         }
1515
1516         // If mount failed, clean up loop file (if any).
1517
1518         if (ENABLE_FEATURE_MOUNT_LOOP && rc && loopFile) {
1519                 del_loop(mp->mnt_fsname);
1520                 if (ENABLE_FEATURE_CLEAN_UP) {
1521                         free(loopFile);
1522                         free(mp->mnt_fsname);
1523                 }
1524         }
1525
1526  report_error:
1527         if (ENABLE_FEATURE_CLEAN_UP)
1528                 free(filteropts);
1529
1530         if (errno == EBUSY && ignore_busy)
1531                 return 0;
1532         if (rc < 0)
1533                 bb_perror_msg("mounting %s on %s failed", mp->mnt_fsname, mp->mnt_dir);
1534         return rc;
1535 }
1536
1537 // Parse options, if necessary parse fstab/mtab, and call singlemount for
1538 // each directory to be mounted.
1539
1540 static const char must_be_root[] ALIGN1 = "you must be root";
1541
1542 int mount_main(int argc, char **argv);
1543 int mount_main(int argc, char **argv)
1544 {
1545         enum { OPT_ALL = 0x10 };
1546
1547         char *cmdopts = xstrdup(""), *fstype=0, *storage_path=0;
1548         char *opt_o;
1549         const char *fstabname;
1550         FILE *fstab;
1551         int i, j, rc = 0;
1552         unsigned opt;
1553         struct mntent mtpair[2], *mtcur = mtpair;
1554         SKIP_DESKTOP(const int nonroot = 0;)
1555         USE_DESKTOP( int nonroot = (getuid() != 0);)
1556
1557         /* parse long options, like --bind and --move.  Note that -o option
1558          * and --option are synonymous.  Yes, this means --remount,rw works. */
1559
1560         for (i = j = 0; i < argc; i++) {
1561                 if (argv[i][0] == '-' && argv[i][1] == '-') {
1562                         append_mount_options(&cmdopts, argv[i]+2);
1563                 } else argv[j++] = argv[i];
1564         }
1565         argv[j] = 0;
1566         argc = j;
1567
1568         // Parse remaining options
1569
1570         opt = getopt32(argv, "o:t:rwanfvsi", &opt_o, &fstype);
1571         if (opt & 0x1) append_mount_options(&cmdopts, opt_o); // -o
1572         //if (opt & 0x2) // -t
1573         if (opt & 0x4) append_mount_options(&cmdopts, "ro"); // -r
1574         if (opt & 0x8) append_mount_options(&cmdopts, "rw"); // -w
1575         //if (opt & 0x10) // -a
1576         if (opt & 0x20) USE_FEATURE_MTAB_SUPPORT(useMtab = 0); // -n
1577         if (opt & 0x40) USE_FEATURE_MTAB_SUPPORT(fakeIt = 1); // -f
1578         //if (opt & 0x80) // -v: verbose (ignore)
1579         //if (opt & 0x100) // -s: sloppy (ignore)
1580         //if (opt & 0x200) // -i: don't call mount.<fstype> (ignore)
1581         argv += optind;
1582         argc -= optind;
1583
1584         // Three or more non-option arguments?  Die with a usage message.
1585
1586         if (argc > 2) bb_show_usage();
1587
1588         // If we have no arguments, show currently mounted filesystems
1589
1590         if (!argc) {
1591                 if (!(opt & OPT_ALL)) {
1592                         FILE *mountTable = setmntent(bb_path_mtab_file, "r");
1593
1594                         if (!mountTable) bb_error_msg_and_die("no %s", bb_path_mtab_file);
1595
1596                         while (getmntent_r(mountTable, mtpair, bb_common_bufsiz1,
1597                                                                 sizeof(bb_common_bufsiz1)))
1598                         {
1599                                 // Don't show rootfs. FIXME: why??
1600                                 // util-linux 2.12a happily shows rootfs...
1601                                 //if (!strcmp(mtpair->mnt_fsname, "rootfs")) continue;
1602
1603                                 if (!fstype || !strcmp(mtpair->mnt_type, fstype))
1604                                         printf("%s on %s type %s (%s)\n", mtpair->mnt_fsname,
1605                                                         mtpair->mnt_dir, mtpair->mnt_type,
1606                                                         mtpair->mnt_opts);
1607                         }
1608                         if (ENABLE_FEATURE_CLEAN_UP) endmntent(mountTable);
1609                         return EXIT_SUCCESS;
1610                 }
1611         } else storage_path = bb_simplify_path(argv[0]);
1612
1613         // When we have two arguments, the second is the directory and we can
1614         // skip looking at fstab entirely.  We can always abspath() the directory
1615         // argument when we get it.
1616
1617         if (argc == 2) {
1618                 if (nonroot)
1619                         bb_error_msg_and_die(must_be_root);
1620                 mtpair->mnt_fsname = argv[0];
1621                 mtpair->mnt_dir = argv[1];
1622                 mtpair->mnt_type = fstype;
1623                 mtpair->mnt_opts = cmdopts;
1624                 rc = singlemount(mtpair, 0);
1625                 goto clean_up;
1626         }
1627
1628         i = parse_mount_options(cmdopts, 0);
1629         if (nonroot && (i & ~MS_SILENT)) // Non-root users cannot specify flags
1630                 bb_error_msg_and_die(must_be_root);
1631
1632         // If we have a shared subtree flag, don't worry about fstab or mtab.
1633
1634         if (ENABLE_FEATURE_MOUNT_FLAGS
1635          && (i & (MS_SHARED | MS_PRIVATE | MS_SLAVE | MS_UNBINDABLE))
1636         ) {
1637                 rc = mount("", argv[0], "", i, "");
1638                 if (rc) bb_perror_msg_and_die("%s", argv[0]);
1639                 goto clean_up;
1640         }
1641
1642         // Open either fstab or mtab
1643
1644         fstabname = "/etc/fstab";
1645         if (i & MS_REMOUNT) {
1646                 fstabname = bb_path_mtab_file;
1647         }
1648         fstab = setmntent(fstabname, "r");
1649         if (!fstab)
1650                 bb_perror_msg_and_die("cannot read %s", fstabname);
1651
1652         // Loop through entries until we find what we're looking for.
1653
1654         memset(mtpair, 0, sizeof(mtpair));
1655         for (;;) {
1656                 struct mntent *mtnext = (mtcur==mtpair ? mtpair+1 : mtpair);
1657
1658                 // Get next fstab entry
1659
1660                 if (!getmntent_r(fstab, mtcur, bb_common_bufsiz1
1661                                         + (mtcur==mtpair ? sizeof(bb_common_bufsiz1)/2 : 0),
1662                                 sizeof(bb_common_bufsiz1)/2))
1663                 {
1664                         // Were we looking for something specific?
1665
1666                         if (argc) {
1667
1668                                 // If we didn't find anything, complain.
1669
1670                                 if (!mtnext->mnt_fsname)
1671                                         bb_error_msg_and_die("can't find %s in %s",
1672                                                 argv[0], fstabname);
1673
1674                                 mtcur = mtnext;
1675                                 if (nonroot) {
1676                                         // fstab must have "users" or "user"
1677                                         if (!(parse_mount_options(mtcur->mnt_opts, 0) & MOUNT_USERS))
1678                                                 bb_error_msg_and_die(must_be_root);
1679                                 }
1680
1681                                 // Mount the last thing we found.
1682
1683                                 mtcur->mnt_opts = xstrdup(mtcur->mnt_opts);
1684                                 append_mount_options(&(mtcur->mnt_opts), cmdopts);
1685                                 rc = singlemount(mtcur, 0);
1686                                 free(mtcur->mnt_opts);
1687                         }
1688                         goto clean_up;
1689                 }
1690
1691                 /* If we're trying to mount something specific and this isn't it,
1692                  * skip it.  Note we must match both the exact text in fstab (ala
1693                  * "proc") or a full path from root */
1694
1695                 if (argc) {
1696
1697                         // Is this what we're looking for?
1698
1699                         if (strcmp(argv[0], mtcur->mnt_fsname) &&
1700                            strcmp(storage_path, mtcur->mnt_fsname) &&
1701                            strcmp(argv[0], mtcur->mnt_dir) &&
1702                            strcmp(storage_path, mtcur->mnt_dir)) continue;
1703
1704                         // Remember this entry.  Something later may have overmounted
1705                         // it, and we want the _last_ match.
1706
1707                         mtcur = mtnext;
1708
1709                 // If we're mounting all.
1710
1711                 } else {
1712                         // Do we need to match a filesystem type?
1713                         if (fstype && match_fstype(mtcur, fstype)) continue;
1714
1715                         // Skip noauto and swap anyway.
1716
1717                         if (parse_mount_options(mtcur->mnt_opts, 0)
1718                                 & (MOUNT_NOAUTO | MOUNT_SWAP)) continue;
1719
1720                         // No, mount -a won't mount anything,
1721                         // even user mounts, for mere humans.
1722
1723                         if (nonroot)
1724                                 bb_error_msg_and_die(must_be_root);
1725
1726                         // Mount this thing.
1727
1728                         // NFS mounts want this to be xrealloc-able
1729                         mtcur->mnt_opts = xstrdup(mtcur->mnt_opts);
1730                         if (singlemount(mtcur, 1)) {
1731                                 /* Count number of failed mounts */
1732                                 rc++;
1733                         }
1734                         free(mtcur->mnt_opts);
1735                 }
1736         }
1737         if (ENABLE_FEATURE_CLEAN_UP) endmntent(fstab);
1738
1739 clean_up:
1740
1741         if (ENABLE_FEATURE_CLEAN_UP) {
1742                 free(storage_path);
1743                 free(cmdopts);
1744         }
1745
1746         return rc;
1747 }