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