blob: 5ddf54cb1ab5d535640e1008190a74b73e438b46 [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
Eric Andersencc8ed391999-10-05 16:24:54 +00002/*
Eric Andersen596e5461999-10-07 08:30:23 +00003 * Mini mount implementation for busybox
4 *
Eric Andersenc4996011999-10-20 22:08:37 +00005 * Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>.
Eric Andersenc7bda1c2004-03-15 08:29:22 +00006 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Rob Landleydc0955b2006-03-14 18:16:25 +00007 * Copyright (C) 2005-2006 by Rob Landley <rob@landley.net>
Eric Andersen596e5461999-10-07 08:30:23 +00008 *
Rob Landley7b363fd2005-12-20 17:18:01 +00009 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Erik Andersenb7cc49d2000-01-13 06:38:14 +000010 */
Eric Andersencc8ed391999-10-05 16:24:54 +000011
Rob Landleydc0955b2006-03-14 18:16:25 +000012/* todo:
13 * bb_getopt_ulflags();
14 */
15
16/* Design notes: There is no spec for this. 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
Matt Kraai34251112001-05-02 21:17:38 +000025#include <limits.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000026#include <stdlib.h>
27#include <unistd.h>
28#include <errno.h>
29#include <string.h>
30#include <stdio.h>
31#include <mntent.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000032#include <ctype.h>
Rob Landley6a6798b2005-08-10 20:35:54 +000033#include <sys/mount.h>
34#include <fcntl.h> // for CONFIG_FEATURE_MOUNT_LOOP
35#include <sys/ioctl.h> // for CONFIG_FEATURE_MOUNT_LOOP
Eric Andersencbe31da2001-02-20 06:14:08 +000036#include "busybox.h"
Eric Andersenbd22ed82000-07-08 18:55:24 +000037
Rob Landley6a6798b2005-08-10 20:35:54 +000038// These two aren't always defined in old headers
39#ifndef MS_BIND
40#define MS_BIND 4096
41#endif
42#ifndef MS_MOVE
43#define MS_MOVE 8192
Eric Andersend9fe9582003-07-22 08:25:37 +000044#endif
Rob Landleydc0955b2006-03-14 18:16:25 +000045#ifndef MS_SILENT
46#define MS_SILENT 32768
47#endif
Eric Andersend9fe9582003-07-22 08:25:37 +000048
Rob Landleydc0955b2006-03-14 18:16:25 +000049// Not real flags, but we want to be able to check for this.
50#define MOUNT_NOAUTO (1<<29)
51#define MOUNT_SWAP (1<<30)
52/* Standard mount options (from -o options or --options), with corresponding
53 * flags */
Eric Andersencc8ed391999-10-05 16:24:54 +000054
Rob Landley6a6798b2005-08-10 20:35:54 +000055struct {
Erik Andersene49d5ec2000-02-08 19:58:47 +000056 const char *name;
Rob Landley6a6798b2005-08-10 20:35:54 +000057 long flags;
Rob Landleydc0955b2006-03-14 18:16:25 +000058} static const mount_options[] = {
59 // NOP flags.
60
Rob Landley6a6798b2005-08-10 20:35:54 +000061 {"loop", 0},
62 {"defaults", 0},
Rob Landleydc0955b2006-03-14 18:16:25 +000063 {"quiet", 0},
64
65 // vfs flags
66
Rob Landley6a6798b2005-08-10 20:35:54 +000067 {"ro", MS_RDONLY},
68 {"rw", ~MS_RDONLY},
69 {"nosuid", MS_NOSUID},
70 {"suid", ~MS_NOSUID},
71 {"dev", ~MS_NODEV},
72 {"nodev", MS_NODEV},
73 {"exec", ~MS_NOEXEC},
74 {"noexec", MS_NOEXEC},
75 {"sync", MS_SYNCHRONOUS},
76 {"async", ~MS_SYNCHRONOUS},
Rob Landley8b0efdb2006-01-10 02:37:20 +000077 {"atime", ~MS_NOATIME},
Rob Landley6a6798b2005-08-10 20:35:54 +000078 {"noatime", MS_NOATIME},
Rob Landley8b0efdb2006-01-10 02:37:20 +000079 {"diratime", ~MS_NODIRATIME},
Rob Landley6a6798b2005-08-10 20:35:54 +000080 {"nodiratime", MS_NODIRATIME},
Rob Landleydc0955b2006-03-14 18:16:25 +000081 {"loud", ~MS_SILENT},
82
83 // action flags
84
85 {"remount", MS_REMOUNT},
Rob Landley6a6798b2005-08-10 20:35:54 +000086 {"bind", MS_BIND},
Rob Landleydc0955b2006-03-14 18:16:25 +000087 {"move", MS_MOVE},
88 {"noauto",MOUNT_NOAUTO},
89 {"swap",MOUNT_SWAP}
Eric Andersencc8ed391999-10-05 16:24:54 +000090};
91
Rob Landleydc0955b2006-03-14 18:16:25 +000092/* Append mount options to string */
93static void append_mount_options(char **oldopts, char *newopts)
Eric Andersencc8ed391999-10-05 16:24:54 +000094{
Rob Landleydc0955b2006-03-14 18:16:25 +000095 if(*oldopts && **oldopts) {
96 char *temp=bb_xasprintf("%s,%s",*oldopts,newopts);
97 free(*oldopts);
98 *oldopts=temp;
99 } else {
100 if (ENABLE_FEATURE_CLEAN_UP) free(*oldopts);
101 *oldopts = bb_xstrdup(newopts);
102 }
103}
104
105/* Use the mount_options list to parse options into flags.
106 * Return list of unrecognized options in *strflags if strflags!=NULL */
107static int parse_mount_options(char *options, char **unrecognized)
108{
109 int flags = MS_SILENT;
110
Rob Landley6a6798b2005-08-10 20:35:54 +0000111 // Loop through options
Rob Landleydc0955b2006-03-14 18:16:25 +0000112 for (;;) {
Rob Landley6a6798b2005-08-10 20:35:54 +0000113 int i;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000114 char *comma = strchr(options, ',');
Eric Andersencc8ed391999-10-05 16:24:54 +0000115
Rob Landleydc0955b2006-03-14 18:16:25 +0000116 if (comma) *comma = 0;
Eric Andersen3ae0c781999-11-04 01:13:21 +0000117
Rob Landley6a6798b2005-08-10 20:35:54 +0000118 // Find this option in mount_options
Rob Landleydc0955b2006-03-14 18:16:25 +0000119 for (i = 0; i < (sizeof(mount_options) / sizeof(*mount_options)); i++) {
120 if (!strcasecmp(mount_options[i].name, options)) {
Rob Landley6a6798b2005-08-10 20:35:54 +0000121 long fl = mount_options[i].flags;
Rob Landleydc0955b2006-03-14 18:16:25 +0000122 if(fl < 0) flags &= fl;
123 else flags |= fl;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000124 break;
125 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000126 }
Rob Landleydc0955b2006-03-14 18:16:25 +0000127 // If unrecognized not NULL, append unrecognized mount options */
128 if (unrecognized
129 && i == (sizeof(mount_options) / sizeof(*mount_options)))
130 {
Rob Landley6a6798b2005-08-10 20:35:54 +0000131 // Add it to strflags, to pass on to kernel
Rob Landleydc0955b2006-03-14 18:16:25 +0000132 i = *unrecognized ? strlen(*unrecognized) : 0;
133 *unrecognized = xrealloc(*unrecognized, i+strlen(options)+2);
134
Rob Landley6a6798b2005-08-10 20:35:54 +0000135 // Comma separated if it's not the first one
Rob Landleydc0955b2006-03-14 18:16:25 +0000136 if (i) (*unrecognized)[i++] = ',';
137 strcpy((*unrecognized)+i, options);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000138 }
Rob Landleydc0955b2006-03-14 18:16:25 +0000139
Rob Landley6a6798b2005-08-10 20:35:54 +0000140 // Advance to next option, or finish
141 if(comma) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000142 *comma = ',';
143 options = ++comma;
Rob Landley6a6798b2005-08-10 20:35:54 +0000144 } else break;
Eric Andersencc8ed391999-10-05 16:24:54 +0000145 }
Rob Landleydc0955b2006-03-14 18:16:25 +0000146
147 return flags;
Eric Andersencc8ed391999-10-05 16:24:54 +0000148}
149
Rob Landleydc0955b2006-03-14 18:16:25 +0000150// Return a list of all block device backed filesystems
Matt Kraai12400822001-04-17 04:32:50 +0000151
Rob Landleydc0955b2006-03-14 18:16:25 +0000152static llist_t *get_block_backed_filesystems(void)
Eric Andersencc8ed391999-10-05 16:24:54 +0000153{
Rob Landleydc0955b2006-03-14 18:16:25 +0000154 char *fs, *buf,
155 *filesystems[] = {"/etc/filesystems", "/proc/filesystems", 0};
156 llist_t *list = 0;
157 int i;
158 FILE *f;
Eric Andersencc8ed391999-10-05 16:24:54 +0000159
Rob Landleydc0955b2006-03-14 18:16:25 +0000160 for(i = 0; filesystems[i]; i++) {
161 if(!(f = fopen(filesystems[i], "r"))) continue;
162
163 for(fs = buf = 0; (fs = buf = bb_get_chomped_line_from_file(f));
164 free(buf))
165 {
166 if(!strncmp(buf,"nodev",5) && isspace(buf[5])) continue;
167
168 while(isspace(*fs)) fs++;
169 if(*fs=='#' || *fs=='*') continue;
170 if(!*fs) continue;
171
172 list=llist_add_to_end(list,bb_xstrdup(fs));
173 }
174 if (ENABLE_FEATURE_CLEAN_UP) fclose(f);
175 }
176
177 return list;
178}
179
180llist_t *fslist = 0;
181
182void delete_block_backed_filesystems(void);
183#if ENABLE_FEATURE_CLEAN_UP
184static void delete_block_backed_filesystems(void)
185{
186 llist_free(fslist);
187}
188#endif
189
190#if ENABLE_FEATURE_MTAB_SUPPORT
191static int useMtab;
192#else
193#define useMtab 0
194#endif
195
196// Perform actual mount of specific filesystem at specific location.
197
198static int mount_it_now(struct mntent *mp, int vfsflags)
199{
200 int rc;
201 char *filteropts = 0;
202
203 parse_mount_options(mp->mnt_opts, &filteropts);
Rob Landleyeaa34ca2006-03-18 02:58:11 +0000204
Rob Landleydc0955b2006-03-14 18:16:25 +0000205 // Mount, with fallback to read-only if necessary.
206
207 for(;;) {
208 rc = mount(mp->mnt_fsname, mp->mnt_dir, mp->mnt_type,
209 vfsflags, filteropts);
210 if(!rc || (vfsflags&MS_RDONLY) || (errno!=EACCES && errno!=EROFS))
211 break;
212 bb_error_msg("%s is write-protected, mounting read-only",
213 mp->mnt_fsname);
214 vfsflags |= MS_RDONLY;
215 }
216
217 free(filteropts);
218
219 // Abort entirely if permission denied.
220
221 if (rc && errno == EPERM)
222 bb_error_msg_and_die(bb_msg_perm_denied_are_you_root);
223
224 /* If the mount was successful, and we're maintaining an old-style
225 * mtab file by hand, add the new entry to it now. */
226
227 if(ENABLE_FEATURE_MTAB_SUPPORT && useMtab && !rc) {
228 FILE *mountTable = setmntent(bb_path_mtab_file, "a+");
229 int i;
230
231 if(!mountTable)
232 bb_error_msg("No %s\n",bb_path_mtab_file);
233
234 // Add vfs string flags
235
236 for(i=0; mount_options[i].flags != MS_REMOUNT; i++)
237 if (mount_options[i].flags > 0)
238 append_mount_options(&(mp->mnt_opts),
239// Shut up about the darn const. It's not important. I don't care.
240 (char *)mount_options[i].name);
241
242 // Remove trailing / (if any) from directory we mounted on
243
244 i = strlen(mp->mnt_dir);
245 if(i>1 && mp->mnt_dir[i-1] == '/') mp->mnt_dir[i-1] = 0;
246
247 // Write and close.
248
249 if(!mp->mnt_type || !*mp->mnt_type) mp->mnt_type="--bind";
250 addmntent(mountTable, mp);
251 endmntent(mountTable);
252 if (ENABLE_FEATURE_CLEAN_UP)
253 if(strcmp(mp->mnt_type,"--bind")) mp->mnt_type = 0;
254 }
255
256 return rc;
257}
258
259
260// Mount one directory. Handles NFS, loopback, autobind, and filesystem type
261// detection. Returns 0 for success, nonzero for failure.
262
263static int singlemount(struct mntent *mp)
264{
Rob Landleyeaa34ca2006-03-18 02:58:11 +0000265 int rc = 1, vfsflags;
Rob Landleydc0955b2006-03-14 18:16:25 +0000266 char *loopFile = 0;
267 llist_t *fl = 0;
268 struct stat st;
269
270 vfsflags = parse_mount_options(mp->mnt_opts, 0);
271
Rob Landleyeaa34ca2006-03-18 02:58:11 +0000272 // Treat fstype "auto" as unspecified.
273
274 if (mp->mnt_type && !strcmp(mp->mnt_type,"auto")) mp->mnt_type = 0;
275
Rob Landleydc0955b2006-03-14 18:16:25 +0000276 // Might this be an NFS filesystem?
277
278 if (ENABLE_FEATURE_MOUNT_NFS &&
279 (!mp->mnt_type || !strcmp(mp->mnt_type,"nfs")) &&
280 strchr(mp->mnt_fsname, ':') != NULL)
281 {
282 char *options=0;
283 parse_mount_options(mp->mnt_opts, &options);
284 if (nfsmount(mp->mnt_fsname, mp->mnt_dir, &vfsflags, &options, 1)) {
285 bb_perror_msg("nfsmount failed");
286 return 1;
287 }
288
289 // Strangely enough, nfsmount() doesn't actually mount() anything.
290
291 else return mount_it_now(mp, vfsflags);
292 }
293
294 // Look at the file. (Not found isn't a failure for remount.)
295
296 if (lstat(mp->mnt_fsname, &st));
297
298 if (!(vfsflags & (MS_REMOUNT | MS_BIND | MS_MOVE))) {
299 // Do we need to allocate a loopback device for it?
300
301 if (ENABLE_FEATURE_MOUNT_LOOP && S_ISREG(st.st_mode)) {
Rob Landleyeaa34ca2006-03-18 02:58:11 +0000302 loopFile = bb_simplify_path(mp->mnt_fsname);
Rob Landleydc0955b2006-03-14 18:16:25 +0000303 mp->mnt_fsname = 0;
304 switch(set_loop(&(mp->mnt_fsname), loopFile, 0)) {
305 case 0:
306 case 1:
307 break;
308 default:
309 bb_error_msg( errno == EPERM || errno == EACCES
310 ? bb_msg_perm_denied_are_you_root
311 : "Couldn't setup loop device");
312 return errno;
313 }
Rob Landleyeaa34ca2006-03-18 02:58:11 +0000314
Rob Landleydc0955b2006-03-14 18:16:25 +0000315 // Autodetect bind mounts
316
317 } else if (S_ISDIR(st.st_mode) && !mp->mnt_type) vfsflags |= MS_BIND;
318 }
319
320 /* If we know the fstype (or don't need to), jump straight
321 * to the actual mount. */
322
323 if (mp->mnt_type || (vfsflags & (MS_REMOUNT | MS_BIND | MS_MOVE)))
324 rc = mount_it_now(mp, vfsflags);
325
326 // Loop through filesystem types until mount succeeds or we run out
327
Rob Landleyeaa34ca2006-03-18 02:58:11 +0000328 else {
Rob Landleydc0955b2006-03-14 18:16:25 +0000329
Rob Landleyeaa34ca2006-03-18 02:58:11 +0000330 /* Initialize list of block backed filesystems. This has to be
331 * done here so that during "mount -a", mounts after /proc shows up
332 * can autodetect. */
Rob Landleydc0955b2006-03-14 18:16:25 +0000333
Rob Landleyeaa34ca2006-03-18 02:58:11 +0000334 if (!fslist) {
335 fslist = get_block_backed_filesystems();
336 if (ENABLE_FEATURE_CLEAN_UP && fslist)
337 atexit(delete_block_backed_filesystems);
338 }
339
340 for (fl = fslist; fl; fl = fl->link) {
341 mp->mnt_type = fl->data;
342
343 if (!(rc = mount_it_now(mp,vfsflags))) break;
344
345 mp->mnt_type = 0;
346 }
Rob Landleydc0955b2006-03-14 18:16:25 +0000347 }
348
349 // Mount failed. Clean up
350 if (rc && loopFile) {
351 del_loop(mp->mnt_fsname);
Rob Landleyeaa34ca2006-03-18 02:58:11 +0000352 if(ENABLE_FEATURE_CLEAN_UP) {
353 free(loopFile);
354 free(mp->mnt_fsname);
355 }
Rob Landleydc0955b2006-03-14 18:16:25 +0000356 }
357 return rc;
358}
359
360
361// Parse options, if necessary parse fstab/mtab, and call singlemount for
362// each directory to be mounted.
363
364int mount_main(int argc, char **argv)
365{
366 char *cmdopts = bb_xstrdup(""), *fstabname, *fstype=0, *storage_path=0;
367 FILE *fstab;
368 int i, opt, all = FALSE, rc = 1;
369 struct mntent mtpair[2], *mtcur = mtpair;
370
Rob Landley6a6798b2005-08-10 20:35:54 +0000371 /* parse long options, like --bind and --move. Note that -o option
372 * and --option are synonymous. Yes, this means --remount,rw works. */
373
Rob Landleydc0955b2006-03-14 18:16:25 +0000374 for (i = opt = 0; i < argc; i++) {
375 if (argv[i][0] == '-' && argv[i][1] == '-') {
376 append_mount_options(&cmdopts,argv[i]+2);
377 } else argv[opt++] = argv[i];
Rob Landley6a6798b2005-08-10 20:35:54 +0000378 }
379 argc = opt;
380
381 // Parse remaining options
382
Rob Landleydc0955b2006-03-14 18:16:25 +0000383 while ((opt = getopt(argc, argv, "o:t:rwavnf")) > 0) {
Matt Kraaia3045df2001-04-17 04:48:51 +0000384 switch (opt) {
Rob Landleydc0955b2006-03-14 18:16:25 +0000385 case 'o':
386 append_mount_options(&cmdopts, optarg);
387 break;
388 case 't':
389 fstype = optarg;
390 break;
391 case 'r':
392 append_mount_options(&cmdopts, "ro");
393 break;
394 case 'w':
395 append_mount_options(&cmdopts, "rw");
396 break;
397 case 'a':
398 all = TRUE;
399 break;
400 case 'n':
401 USE_FEATURE_MTAB_SUPPORT(useMtab = FALSE;)
402 break;
403 case 'f':
404 USE_FEATURE_MTAB_SUPPORT(fakeIt = FALSE;)
405 break;
406 case 'v':
407 break; // ignore -v
408 default:
409 bb_show_usage();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000410 }
Matt Kraaia3045df2001-04-17 04:48:51 +0000411 }
Rob Landleydc0955b2006-03-14 18:16:25 +0000412
Rob Landleydc0955b2006-03-14 18:16:25 +0000413 // Three or more non-option arguments? Die with a usage message.
414
415 if (optind-argc>2) bb_show_usage();
416
Rob Landley6a6798b2005-08-10 20:35:54 +0000417 // If we have no arguments, show currently mounted filesystems
418
Rob Landleydc0955b2006-03-14 18:16:25 +0000419 if (optind == argc) {
420 if (!all) {
421 FILE *mountTable = setmntent(bb_path_mtab_file, "r");
Rob Landley6a6798b2005-08-10 20:35:54 +0000422
Rob Landleydc0955b2006-03-14 18:16:25 +0000423 if(!mountTable) bb_error_msg_and_die("No %s",bb_path_mtab_file);
Rob Landley6a6798b2005-08-10 20:35:54 +0000424
Rob Landleydc0955b2006-03-14 18:16:25 +0000425 while (getmntent_r(mountTable,mtpair,bb_common_bufsiz1,
426 sizeof(bb_common_bufsiz1)))
427 {
428 // Don't show rootfs.
429 if (!strcmp(mtpair->mnt_fsname, "rootfs")) continue;
Rob Landley6a6798b2005-08-10 20:35:54 +0000430
Rob Landleydc0955b2006-03-14 18:16:25 +0000431 if (!fstype || !strcmp(mtpair->mnt_type, fstype))
432 printf("%s on %s type %s (%s)\n", mtpair->mnt_fsname,
433 mtpair->mnt_dir, mtpair->mnt_type,
434 mtpair->mnt_opts);
435 }
436 if (ENABLE_FEATURE_CLEAN_UP) endmntent(mountTable);
437 return EXIT_SUCCESS;
Rob Landley6a6798b2005-08-10 20:35:54 +0000438 }
Glenn L McGrath8042f652002-08-23 06:17:46 +0000439 }
Matt Kraai12400822001-04-17 04:32:50 +0000440
Rob Landleydc0955b2006-03-14 18:16:25 +0000441 // When we have two arguments, the second is the directory and we can
442 // skip looking at fstab entirely. We can always abspath() the directory
443 // argument when we get it.
Rob Landley6a6798b2005-08-10 20:35:54 +0000444
Rob Landleydc0955b2006-03-14 18:16:25 +0000445 if (optind+2 == argc) {
446 mtpair->mnt_fsname = argv[optind];
447 mtpair->mnt_dir = argv[optind+1];
448 mtpair->mnt_type = fstype;
449 mtpair->mnt_opts = cmdopts;
450 rc = singlemount(mtpair);
451 goto clean_up;
452 }
Rob Landley6a6798b2005-08-10 20:35:54 +0000453
Rob Landleydc0955b2006-03-14 18:16:25 +0000454 // If we have at least one argument, it's the storage location
455
456 if (optind < argc) storage_path = bb_simplify_path(argv[optind]);
457
458 // Open either fstab or mtab
Rob Landley6a6798b2005-08-10 20:35:54 +0000459
Rob Landleydc0955b2006-03-14 18:16:25 +0000460 if (parse_mount_options(cmdopts,0) & MS_REMOUNT)
461 fstabname = (char *)bb_path_mtab_file; // Again with the evil const.
462 else fstabname="/etc/fstab";
463
464 if (!(fstab=setmntent(fstabname,"r")))
465 bb_perror_msg_and_die("Cannot read %s",fstabname);
466
467 // Loop through entries until we find what we're looking for.
Rob Landley6a6798b2005-08-10 20:35:54 +0000468
Rob Landleydc0955b2006-03-14 18:16:25 +0000469 memset(mtpair,0,sizeof(mtpair));
470 for (;;) {
471 struct mntent *mtnext = mtpair + (mtcur==mtpair ? 1 : 0);
Rob Landley6a6798b2005-08-10 20:35:54 +0000472
473 // Get next fstab entry
474
Rob Landleydc0955b2006-03-14 18:16:25 +0000475 if (!getmntent_r(fstab, mtcur, bb_common_bufsiz1,
476 sizeof(bb_common_bufsiz1)))
477 {
478 // Were we looking for something specific?
479
480 if (optind != argc) {
481
482 // If we didn't find anything, complain.
483
484 if (!mtnext->mnt_fsname)
485 bb_error_msg_and_die("Can't find %s in %s",
486 argv[optind], fstabname);
487
488 // Mount the last thing we found.
489
490 mtcur = mtnext;
491 mtcur->mnt_opts=bb_xstrdup(mtcur->mnt_opts);
492 append_mount_options(&(mtcur->mnt_opts),cmdopts);
493 rc = singlemount(mtcur);
494 free(mtcur->mnt_opts);
495 }
Rob Landley6a6798b2005-08-10 20:35:54 +0000496 break;
497 }
Rob Landleyeaa34ca2006-03-18 02:58:11 +0000498
Rob Landleydc0955b2006-03-14 18:16:25 +0000499 /* If we're trying to mount something specific and this isn't it,
500 * skip it. Note we must match both the exact text in fstab (ala
501 * "proc") or a full path from root */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000502
Rob Landleydc0955b2006-03-14 18:16:25 +0000503 if (optind != argc) {
Rob Landley6a6798b2005-08-10 20:35:54 +0000504
Rob Landleydc0955b2006-03-14 18:16:25 +0000505 // Is this what we're looking for?
Rob Landley6a6798b2005-08-10 20:35:54 +0000506
Rob Landleydc0955b2006-03-14 18:16:25 +0000507 if(strcmp(argv[optind],mtcur->mnt_fsname) &&
508 strcmp(storage_path,mtcur->mnt_fsname) &&
509 strcmp(argv[optind],mtcur->mnt_dir) &&
510 strcmp(storage_path,mtcur->mnt_dir)) continue;
Rob Landley6a6798b2005-08-10 20:35:54 +0000511
Rob Landleydc0955b2006-03-14 18:16:25 +0000512 // Remember this entry. Something later may have overmounted
513 // it, and we want the _last_ match.
Rob Landley6a6798b2005-08-10 20:35:54 +0000514
Rob Landleydc0955b2006-03-14 18:16:25 +0000515 mtcur = mtnext;
516
517 // If we're mounting all.
Rob Landley6a6798b2005-08-10 20:35:54 +0000518
Glenn L McGrath3aae1002001-05-07 01:38:03 +0000519 } else {
Rob Landleydc0955b2006-03-14 18:16:25 +0000520
521 // Do we need to match a filesystem type?
522 if (fstype && strcmp(mtcur->mnt_type,fstype)) continue;
523
524 // Skip noauto and swap anyway.
525
526 if (parse_mount_options(mtcur->mnt_opts,0)
527 & (MOUNT_NOAUTO | MOUNT_SWAP)) continue;
528
529 // Mount this thing.
530
531 rc = singlemount(mtcur);
532 if (rc) {
533 // Don't whine about already mounted fs when mounting all.
534 if (errno == EBUSY) rc = 0;
535 else break;
536 }
Glenn L McGrath3aae1002001-05-07 01:38:03 +0000537 }
Eric Andersenfdd51032000-08-02 18:48:26 +0000538 }
Rob Landleydc0955b2006-03-14 18:16:25 +0000539 if (ENABLE_FEATURE_CLEAN_UP) endmntent(fstab);
Glenn L McGrath9fef17d2002-08-22 18:41:20 +0000540
Rob Landleydc0955b2006-03-14 18:16:25 +0000541clean_up:
542
543 if (ENABLE_FEATURE_CLEAN_UP) {
544 free(storage_path);
545 free(cmdopts);
546 free(fstype);
Rob Landley7b363fd2005-12-20 17:18:01 +0000547 }
Rob Landleydc0955b2006-03-14 18:16:25 +0000548
549 if(rc)
550 bb_perror_msg("Mounting %s on %s failed",
551 mtcur->mnt_fsname, mtcur->mnt_dir);
Rob Landley6a6798b2005-08-10 20:35:54 +0000552
Rob Landley6e985212005-08-14 18:46:34 +0000553 return rc;
Eric Andersencc8ed391999-10-05 16:24:54 +0000554}