blob: ba55d2480159a8b2c17f937950b5eb30c2d0b789 [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().
Eric Andersen9601a1c2006-03-20 18:07:50 +000019
Rob Landleydc0955b2006-03-14 18:16:25 +000020 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
Eric Andersen9601a1c2006-03-20 18:07:50 +000065 // vfs flags
Rob Landleydc0955b2006-03-14 18:16:25 +000066
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},
Eric Andersen9601a1c2006-03-20 18:07:50 +000082
Rob Landleydc0955b2006-03-14 18:16:25 +000083 // 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)))
Eric Andersen9601a1c2006-03-20 18:07:50 +0000130 {
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);
Eric Andersen9601a1c2006-03-20 18:07:50 +0000134
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 }
Eric Andersen9601a1c2006-03-20 18:07:50 +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 }
Eric Andersen9601a1c2006-03-20 18:07:50 +0000146
Rob Landleydc0955b2006-03-14 18:16:25 +0000147 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;
Eric Andersen9601a1c2006-03-20 18:07:50 +0000162
Rob Landleydc0955b2006-03-14 18:16:25 +0000163 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;
Eric Andersen9601a1c2006-03-20 18:07:50 +0000167
Rob Landleydc0955b2006-03-14 18:16:25 +0000168 while(isspace(*fs)) fs++;
169 if(*fs=='#' || *fs=='*') continue;
170 if(!*fs) continue;
Eric Andersen9601a1c2006-03-20 18:07:50 +0000171
Rob Landleydc0955b2006-03-14 18:16:25 +0000172 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
Rob Landleydc0955b2006-03-14 18:16:25 +0000182#if ENABLE_FEATURE_CLEAN_UP
183static void delete_block_backed_filesystems(void)
184{
185 llist_free(fslist);
186}
Rob Landleyfe908fd2006-03-29 14:30:49 +0000187#else
188void delete_block_backed_filesystems(void);
Rob Landleydc0955b2006-03-14 18:16:25 +0000189#endif
190
191#if ENABLE_FEATURE_MTAB_SUPPORT
192static int useMtab;
Eric Andersen19b5b8f2006-03-20 18:07:13 +0000193static int fakeIt;
Rob Landleydc0955b2006-03-14 18:16:25 +0000194#else
195#define useMtab 0
Eric Andersen19b5b8f2006-03-20 18:07:13 +0000196#define fakeIt 0
Rob Landleydc0955b2006-03-14 18:16:25 +0000197#endif
198
199// Perform actual mount of specific filesystem at specific location.
200
Rob Landleyfe908fd2006-03-29 14:30:49 +0000201static int mount_it_now(struct mntent *mp, int vfsflags, char *filteropts)
Rob Landleydc0955b2006-03-14 18:16:25 +0000202{
203 int rc;
Rob Landleyeaa34ca2006-03-18 02:58:11 +0000204
Eric Andersen19b5b8f2006-03-20 18:07:13 +0000205 if (fakeIt) { return 0; }
206
Rob Landleydc0955b2006-03-14 18:16:25 +0000207 // Mount, with fallback to read-only if necessary.
208
209 for(;;) {
210 rc = mount(mp->mnt_fsname, mp->mnt_dir, mp->mnt_type,
211 vfsflags, filteropts);
212 if(!rc || (vfsflags&MS_RDONLY) || (errno!=EACCES && errno!=EROFS))
213 break;
214 bb_error_msg("%s is write-protected, mounting read-only",
215 mp->mnt_fsname);
216 vfsflags |= MS_RDONLY;
217 }
218
Rob Landleydc0955b2006-03-14 18:16:25 +0000219 // 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. */
Eric Andersen9601a1c2006-03-20 18:07:50 +0000226
Rob Landleydc0955b2006-03-14 18:16:25 +0000227 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 }
Eric Andersen9601a1c2006-03-20 18:07:50 +0000255
Rob Landleydc0955b2006-03-14 18:16:25 +0000256 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 Landleyfe908fd2006-03-29 14:30:49 +0000266 char *loopFile = 0, *filteropts = 0;
Rob Landleydc0955b2006-03-14 18:16:25 +0000267 llist_t *fl = 0;
268 struct stat st;
269
Rob Landleyfe908fd2006-03-29 14:30:49 +0000270 vfsflags = parse_mount_options(mp->mnt_opts, &filteropts);
Rob Landleydc0955b2006-03-14 18:16:25 +0000271
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 {
Rob Landleyfe908fd2006-03-29 14:30:49 +0000282 if (nfsmount(mp->mnt_fsname, mp->mnt_dir, &vfsflags, &filteropts, 1)) {
Rob Landleydc0955b2006-03-14 18:16:25 +0000283 bb_perror_msg("nfsmount failed");
284 return 1;
Rob Landleyfe908fd2006-03-29 14:30:49 +0000285 } else {
286 // Strangely enough, nfsmount() doesn't actually mount() anything.
287 rc = mount_it_now(mp, vfsflags, filteropts);
288 if (ENABLE_FEATURE_CLEAN_UP) free(filteropts);
289
290 return rc;
Rob Landleydc0955b2006-03-14 18:16:25 +0000291 }
Rob Landleydc0955b2006-03-14 18:16:25 +0000292 }
293
Rob Landleyab873602006-04-04 16:56:04 +0000294 // Look at the file. (Not found isn't a failure for remount, or for
295 // a synthetic filesystem like proc or sysfs.)
Rob Landleydc0955b2006-03-14 18:16:25 +0000296
297 if (lstat(mp->mnt_fsname, &st));
Rob Landleyab873602006-04-04 16:56:04 +0000298 else if (!(vfsflags & (MS_REMOUNT | MS_BIND | MS_MOVE))) {
Rob Landleydc0955b2006-03-14 18:16:25 +0000299 // Do we need to allocate a loopback device for it?
Eric Andersen9601a1c2006-03-20 18:07:50 +0000300
Rob Landleydc0955b2006-03-14 18:16:25 +0000301 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)))
Rob Landleyfe908fd2006-03-29 14:30:49 +0000324 rc = mount_it_now(mp, vfsflags, filteropts);
Rob Landleydc0955b2006-03-14 18:16:25 +0000325
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 }
Eric Andersen9601a1c2006-03-20 18:07:50 +0000339
Rob Landleyeaa34ca2006-03-18 02:58:11 +0000340 for (fl = fslist; fl; fl = fl->link) {
341 mp->mnt_type = fl->data;
342
Rob Landleyfe908fd2006-03-29 14:30:49 +0000343 if (!(rc = mount_it_now(mp,vfsflags, filteropts))) break;
Rob Landleyeaa34ca2006-03-18 02:58:11 +0000344
345 mp->mnt_type = 0;
346 }
Rob Landleydc0955b2006-03-14 18:16:25 +0000347 }
348
Rob Landleyfe908fd2006-03-29 14:30:49 +0000349 if (ENABLE_FEATURE_CLEAN_UP) free(filteropts);
350
351 // If mount failed, clean up loop file (if any).
352
Rob Landleydc0955b2006-03-14 18:16:25 +0000353 if (rc && loopFile) {
354 del_loop(mp->mnt_fsname);
Rob Landleyfe908fd2006-03-29 14:30:49 +0000355 if (ENABLE_FEATURE_CLEAN_UP) {
Rob Landleyeaa34ca2006-03-18 02:58:11 +0000356 free(loopFile);
357 free(mp->mnt_fsname);
358 }
Rob Landleydc0955b2006-03-14 18:16:25 +0000359 }
360 return rc;
361}
362
363
364// Parse options, if necessary parse fstab/mtab, and call singlemount for
365// each directory to be mounted.
366
367int mount_main(int argc, char **argv)
368{
369 char *cmdopts = bb_xstrdup(""), *fstabname, *fstype=0, *storage_path=0;
370 FILE *fstab;
371 int i, opt, all = FALSE, rc = 1;
372 struct mntent mtpair[2], *mtcur = mtpair;
Eric Andersen9601a1c2006-03-20 18:07:50 +0000373
Rob Landley6a6798b2005-08-10 20:35:54 +0000374 /* parse long options, like --bind and --move. Note that -o option
375 * and --option are synonymous. Yes, this means --remount,rw works. */
376
Rob Landleydc0955b2006-03-14 18:16:25 +0000377 for (i = opt = 0; i < argc; i++) {
378 if (argv[i][0] == '-' && argv[i][1] == '-') {
Eric Andersen9601a1c2006-03-20 18:07:50 +0000379 append_mount_options(&cmdopts,argv[i]+2);
Rob Landleydc0955b2006-03-14 18:16:25 +0000380 } else argv[opt++] = argv[i];
Rob Landley6a6798b2005-08-10 20:35:54 +0000381 }
382 argc = opt;
383
384 // Parse remaining options
385
Rob Landleydc0955b2006-03-14 18:16:25 +0000386 while ((opt = getopt(argc, argv, "o:t:rwavnf")) > 0) {
Matt Kraaia3045df2001-04-17 04:48:51 +0000387 switch (opt) {
Rob Landleydc0955b2006-03-14 18:16:25 +0000388 case 'o':
389 append_mount_options(&cmdopts, optarg);
390 break;
391 case 't':
392 fstype = optarg;
393 break;
394 case 'r':
395 append_mount_options(&cmdopts, "ro");
396 break;
397 case 'w':
398 append_mount_options(&cmdopts, "rw");
399 break;
400 case 'a':
401 all = TRUE;
402 break;
403 case 'n':
404 USE_FEATURE_MTAB_SUPPORT(useMtab = FALSE;)
405 break;
406 case 'f':
407 USE_FEATURE_MTAB_SUPPORT(fakeIt = FALSE;)
408 break;
409 case 'v':
410 break; // ignore -v
411 default:
412 bb_show_usage();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000413 }
Matt Kraaia3045df2001-04-17 04:48:51 +0000414 }
Eric Andersen9601a1c2006-03-20 18:07:50 +0000415
Rob Landleydc0955b2006-03-14 18:16:25 +0000416 // Three or more non-option arguments? Die with a usage message.
417
418 if (optind-argc>2) bb_show_usage();
Eric Andersen9601a1c2006-03-20 18:07:50 +0000419
Rob Landley6a6798b2005-08-10 20:35:54 +0000420 // If we have no arguments, show currently mounted filesystems
421
Rob Landleydc0955b2006-03-14 18:16:25 +0000422 if (optind == argc) {
423 if (!all) {
424 FILE *mountTable = setmntent(bb_path_mtab_file, "r");
Rob Landley6a6798b2005-08-10 20:35:54 +0000425
Rob Landleydc0955b2006-03-14 18:16:25 +0000426 if(!mountTable) bb_error_msg_and_die("No %s",bb_path_mtab_file);
Rob Landley6a6798b2005-08-10 20:35:54 +0000427
Rob Landleydc0955b2006-03-14 18:16:25 +0000428 while (getmntent_r(mountTable,mtpair,bb_common_bufsiz1,
429 sizeof(bb_common_bufsiz1)))
430 {
431 // Don't show rootfs.
432 if (!strcmp(mtpair->mnt_fsname, "rootfs")) continue;
Rob Landley6a6798b2005-08-10 20:35:54 +0000433
Rob Landleydc0955b2006-03-14 18:16:25 +0000434 if (!fstype || !strcmp(mtpair->mnt_type, fstype))
435 printf("%s on %s type %s (%s)\n", mtpair->mnt_fsname,
436 mtpair->mnt_dir, mtpair->mnt_type,
437 mtpair->mnt_opts);
438 }
439 if (ENABLE_FEATURE_CLEAN_UP) endmntent(mountTable);
440 return EXIT_SUCCESS;
Rob Landley6a6798b2005-08-10 20:35:54 +0000441 }
Glenn L McGrath8042f652002-08-23 06:17:46 +0000442 }
Matt Kraai12400822001-04-17 04:32:50 +0000443
Rob Landleydc0955b2006-03-14 18:16:25 +0000444 // When we have two arguments, the second is the directory and we can
445 // skip looking at fstab entirely. We can always abspath() the directory
446 // argument when we get it.
Rob Landley6a6798b2005-08-10 20:35:54 +0000447
Rob Landleydc0955b2006-03-14 18:16:25 +0000448 if (optind+2 == argc) {
449 mtpair->mnt_fsname = argv[optind];
450 mtpair->mnt_dir = argv[optind+1];
451 mtpair->mnt_type = fstype;
452 mtpair->mnt_opts = cmdopts;
453 rc = singlemount(mtpair);
454 goto clean_up;
455 }
Rob Landley6a6798b2005-08-10 20:35:54 +0000456
Rob Landleydc0955b2006-03-14 18:16:25 +0000457 // If we have at least one argument, it's the storage location
Eric Andersen9601a1c2006-03-20 18:07:50 +0000458
Rob Landleydc0955b2006-03-14 18:16:25 +0000459 if (optind < argc) storage_path = bb_simplify_path(argv[optind]);
Eric Andersen9601a1c2006-03-20 18:07:50 +0000460
Rob Landleydc0955b2006-03-14 18:16:25 +0000461 // Open either fstab or mtab
Rob Landley6a6798b2005-08-10 20:35:54 +0000462
Rob Landleydc0955b2006-03-14 18:16:25 +0000463 if (parse_mount_options(cmdopts,0) & MS_REMOUNT)
464 fstabname = (char *)bb_path_mtab_file; // Again with the evil const.
465 else fstabname="/etc/fstab";
Eric Andersen9601a1c2006-03-20 18:07:50 +0000466
Rob Landleydc0955b2006-03-14 18:16:25 +0000467 if (!(fstab=setmntent(fstabname,"r")))
468 bb_perror_msg_and_die("Cannot read %s",fstabname);
Eric Andersen9601a1c2006-03-20 18:07:50 +0000469
Rob Landleydc0955b2006-03-14 18:16:25 +0000470 // Loop through entries until we find what we're looking for.
Rob Landley6a6798b2005-08-10 20:35:54 +0000471
Rob Landleydc0955b2006-03-14 18:16:25 +0000472 memset(mtpair,0,sizeof(mtpair));
473 for (;;) {
474 struct mntent *mtnext = mtpair + (mtcur==mtpair ? 1 : 0);
Rob Landley6a6798b2005-08-10 20:35:54 +0000475
476 // Get next fstab entry
477
Rob Landley20fef962006-04-01 17:32:52 +0000478 if (!getmntent_r(fstab, mtcur, bb_common_bufsiz1
479 + (mtcur==mtpair ? sizeof(bb_common_bufsiz1)/2 : 0),
480 sizeof(bb_common_bufsiz1)/2))
Rob Landleydc0955b2006-03-14 18:16:25 +0000481 {
482 // Were we looking for something specific?
483
484 if (optind != argc) {
485
486 // If we didn't find anything, complain.
487
488 if (!mtnext->mnt_fsname)
489 bb_error_msg_and_die("Can't find %s in %s",
490 argv[optind], fstabname);
Eric Andersen9601a1c2006-03-20 18:07:50 +0000491
Rob Landleydc0955b2006-03-14 18:16:25 +0000492 // Mount the last thing we found.
493
494 mtcur = mtnext;
495 mtcur->mnt_opts=bb_xstrdup(mtcur->mnt_opts);
496 append_mount_options(&(mtcur->mnt_opts),cmdopts);
497 rc = singlemount(mtcur);
498 free(mtcur->mnt_opts);
499 }
Rob Landley6a6798b2005-08-10 20:35:54 +0000500 break;
501 }
Rob Landleyeaa34ca2006-03-18 02:58:11 +0000502
Rob Landleydc0955b2006-03-14 18:16:25 +0000503 /* If we're trying to mount something specific and this isn't it,
504 * skip it. Note we must match both the exact text in fstab (ala
505 * "proc") or a full path from root */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000506
Rob Landleydc0955b2006-03-14 18:16:25 +0000507 if (optind != argc) {
Rob Landley6a6798b2005-08-10 20:35:54 +0000508
Rob Landleydc0955b2006-03-14 18:16:25 +0000509 // Is this what we're looking for?
Rob Landley6a6798b2005-08-10 20:35:54 +0000510
Rob Landleydc0955b2006-03-14 18:16:25 +0000511 if(strcmp(argv[optind],mtcur->mnt_fsname) &&
512 strcmp(storage_path,mtcur->mnt_fsname) &&
513 strcmp(argv[optind],mtcur->mnt_dir) &&
514 strcmp(storage_path,mtcur->mnt_dir)) continue;
Rob Landley6a6798b2005-08-10 20:35:54 +0000515
Rob Landleydc0955b2006-03-14 18:16:25 +0000516 // Remember this entry. Something later may have overmounted
517 // it, and we want the _last_ match.
Rob Landley6a6798b2005-08-10 20:35:54 +0000518
Rob Landleydc0955b2006-03-14 18:16:25 +0000519 mtcur = mtnext;
Eric Andersen9601a1c2006-03-20 18:07:50 +0000520
Rob Landleydc0955b2006-03-14 18:16:25 +0000521 // If we're mounting all.
Rob Landley6a6798b2005-08-10 20:35:54 +0000522
Glenn L McGrath3aae1002001-05-07 01:38:03 +0000523 } else {
Eric Andersen9601a1c2006-03-20 18:07:50 +0000524
Rob Landleydc0955b2006-03-14 18:16:25 +0000525 // Do we need to match a filesystem type?
526 if (fstype && strcmp(mtcur->mnt_type,fstype)) continue;
Eric Andersen9601a1c2006-03-20 18:07:50 +0000527
Rob Landleydc0955b2006-03-14 18:16:25 +0000528 // Skip noauto and swap anyway.
529
530 if (parse_mount_options(mtcur->mnt_opts,0)
531 & (MOUNT_NOAUTO | MOUNT_SWAP)) continue;
532
533 // Mount this thing.
534
535 rc = singlemount(mtcur);
536 if (rc) {
537 // Don't whine about already mounted fs when mounting all.
538 if (errno == EBUSY) rc = 0;
539 else break;
540 }
Glenn L McGrath3aae1002001-05-07 01:38:03 +0000541 }
Eric Andersenfdd51032000-08-02 18:48:26 +0000542 }
Rob Landleydc0955b2006-03-14 18:16:25 +0000543 if (ENABLE_FEATURE_CLEAN_UP) endmntent(fstab);
Glenn L McGrath9fef17d2002-08-22 18:41:20 +0000544
Rob Landleydc0955b2006-03-14 18:16:25 +0000545clean_up:
546
547 if (ENABLE_FEATURE_CLEAN_UP) {
548 free(storage_path);
549 free(cmdopts);
Rob Landley7b363fd2005-12-20 17:18:01 +0000550 }
Eric Andersen9601a1c2006-03-20 18:07:50 +0000551
Rob Landleydc0955b2006-03-14 18:16:25 +0000552 if(rc)
553 bb_perror_msg("Mounting %s on %s failed",
554 mtcur->mnt_fsname, mtcur->mnt_dir);
Rob Landley6a6798b2005-08-10 20:35:54 +0000555
Rob Landley6e985212005-08-14 18:46:34 +0000556 return rc;
Eric Andersencc8ed391999-10-05 16:24:54 +0000557}