blob: 5798a8bfac3df9ffb0110cb422c7e7c747eb9acf [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
Rob Landley22d26fc2006-06-15 15:49:36 +000016/* Design notes: There is no spec for mount. Remind me to write one.
Rob Landleydc0955b2006-03-14 18:16:25 +000017
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
Rob Landley22d26fc2006-06-15 15:49:36 +000025#include "busybox.h"
Eric Andersencc8ed391999-10-05 16:24:54 +000026#include <mntent.h>
Eric Andersenbd22ed82000-07-08 18:55:24 +000027
Rob Landleydc0955b2006-03-14 18:16:25 +000028// Not real flags, but we want to be able to check for this.
29#define MOUNT_NOAUTO (1<<29)
30#define MOUNT_SWAP (1<<30)
31/* Standard mount options (from -o options or --options), with corresponding
32 * flags */
Eric Andersencc8ed391999-10-05 16:24:54 +000033
Rob Landley6a6798b2005-08-10 20:35:54 +000034struct {
Rob Landleye3781b72006-08-08 01:39:49 +000035 char *name;
Rob Landley6a6798b2005-08-10 20:35:54 +000036 long flags;
Rob Landleye3781b72006-08-08 01:39:49 +000037} static mount_options[] = {
38 // MS_FLAGS set a bit. ~MS_FLAGS disable that bit. 0 flags are NOPs.
Rob Landleydc0955b2006-03-14 18:16:25 +000039
Rob Landleye3781b72006-08-08 01:39:49 +000040 USE_FEATURE_MOUNT_LOOP(
41 {"loop", 0},
42 )
Rob Landleydc0955b2006-03-14 18:16:25 +000043
Rob Landleye3781b72006-08-08 01:39:49 +000044 USE_FEATURE_MOUNT_FSTAB(
45 {"defaults", 0},
46 {"quiet", 0},
47 {"noauto",MOUNT_NOAUTO},
48 {"swap",MOUNT_SWAP},
49 )
Rob Landleydc0955b2006-03-14 18:16:25 +000050
Rob Landleye3781b72006-08-08 01:39:49 +000051 USE_FEATURE_MOUNT_FLAGS(
52 // vfs flags
53 {"nosuid", MS_NOSUID},
54 {"suid", ~MS_NOSUID},
55 {"dev", ~MS_NODEV},
56 {"nodev", MS_NODEV},
57 {"exec", ~MS_NOEXEC},
58 {"noexec", MS_NOEXEC},
59 {"sync", MS_SYNCHRONOUS},
60 {"async", ~MS_SYNCHRONOUS},
61 {"atime", ~MS_NOATIME},
62 {"noatime", MS_NOATIME},
63 {"diratime", ~MS_NODIRATIME},
64 {"nodiratime", MS_NODIRATIME},
65 {"loud", ~MS_SILENT},
Eric Andersen9601a1c2006-03-20 18:07:50 +000066
Rob Landleye3781b72006-08-08 01:39:49 +000067 // action flags
Rob Landleydc0955b2006-03-14 18:16:25 +000068
Rob Landleye3781b72006-08-08 01:39:49 +000069 {"bind", MS_BIND},
70 {"move", MS_MOVE},
71 {"shared", MS_SHARED},
72 {"slave", MS_SLAVE},
73 {"private", MS_PRIVATE},
74 {"unbindable", MS_UNBINDABLE},
75 {"rshared", MS_SHARED|MS_RECURSIVE},
76 {"rslave", MS_SLAVE|MS_RECURSIVE},
77 {"rprivate", MS_SLAVE|MS_RECURSIVE},
78 {"runbindable", MS_UNBINDABLE|MS_RECURSIVE},
79 )
80
81 // Always understood.
82
83 {"ro", MS_RDONLY}, // vfs flag
84 {"rw", ~MS_RDONLY}, // vfs flag
85 {"remount", MS_REMOUNT}, // action flag
86
87
Eric Andersencc8ed391999-10-05 16:24:54 +000088};
89
Rob Landleydc0955b2006-03-14 18:16:25 +000090/* Append mount options to string */
91static void append_mount_options(char **oldopts, char *newopts)
Eric Andersencc8ed391999-10-05 16:24:54 +000092{
Rob Landleydc0955b2006-03-14 18:16:25 +000093 if(*oldopts && **oldopts) {
Rob Landleyd921b2e2006-08-03 15:41:12 +000094 char *temp=xasprintf("%s,%s",*oldopts,newopts);
Rob Landleydc0955b2006-03-14 18:16:25 +000095 free(*oldopts);
96 *oldopts=temp;
97 } else {
98 if (ENABLE_FEATURE_CLEAN_UP) free(*oldopts);
Rob Landleyd921b2e2006-08-03 15:41:12 +000099 *oldopts = xstrdup(newopts);
Rob Landleydc0955b2006-03-14 18:16:25 +0000100 }
101}
102
103/* Use the mount_options list to parse options into flags.
104 * Return list of unrecognized options in *strflags if strflags!=NULL */
105static int parse_mount_options(char *options, char **unrecognized)
106{
107 int flags = MS_SILENT;
108
Rob Landley6a6798b2005-08-10 20:35:54 +0000109 // Loop through options
Rob Landleydc0955b2006-03-14 18:16:25 +0000110 for (;;) {
Rob Landley6a6798b2005-08-10 20:35:54 +0000111 int i;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000112 char *comma = strchr(options, ',');
Eric Andersencc8ed391999-10-05 16:24:54 +0000113
Rob Landleydc0955b2006-03-14 18:16:25 +0000114 if (comma) *comma = 0;
Eric Andersen3ae0c781999-11-04 01:13:21 +0000115
Rob Landley6a6798b2005-08-10 20:35:54 +0000116 // Find this option in mount_options
Rob Landleydc0955b2006-03-14 18:16:25 +0000117 for (i = 0; i < (sizeof(mount_options) / sizeof(*mount_options)); i++) {
118 if (!strcasecmp(mount_options[i].name, options)) {
Rob Landley6a6798b2005-08-10 20:35:54 +0000119 long fl = mount_options[i].flags;
Rob Landleydc0955b2006-03-14 18:16:25 +0000120 if(fl < 0) flags &= fl;
121 else flags |= fl;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000122 break;
123 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000124 }
Rob Landleydc0955b2006-03-14 18:16:25 +0000125 // If unrecognized not NULL, append unrecognized mount options */
126 if (unrecognized
127 && i == (sizeof(mount_options) / sizeof(*mount_options)))
Eric Andersen9601a1c2006-03-20 18:07:50 +0000128 {
Rob Landley6a6798b2005-08-10 20:35:54 +0000129 // Add it to strflags, to pass on to kernel
Rob Landleydc0955b2006-03-14 18:16:25 +0000130 i = *unrecognized ? strlen(*unrecognized) : 0;
131 *unrecognized = xrealloc(*unrecognized, i+strlen(options)+2);
Eric Andersen9601a1c2006-03-20 18:07:50 +0000132
Rob Landley6a6798b2005-08-10 20:35:54 +0000133 // Comma separated if it's not the first one
Rob Landleydc0955b2006-03-14 18:16:25 +0000134 if (i) (*unrecognized)[i++] = ',';
135 strcpy((*unrecognized)+i, options);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000136 }
Eric Andersen9601a1c2006-03-20 18:07:50 +0000137
Rob Landley6a6798b2005-08-10 20:35:54 +0000138 // Advance to next option, or finish
139 if(comma) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000140 *comma = ',';
141 options = ++comma;
Rob Landley6a6798b2005-08-10 20:35:54 +0000142 } else break;
Eric Andersencc8ed391999-10-05 16:24:54 +0000143 }
Eric Andersen9601a1c2006-03-20 18:07:50 +0000144
Rob Landleydc0955b2006-03-14 18:16:25 +0000145 return flags;
Eric Andersencc8ed391999-10-05 16:24:54 +0000146}
147
Rob Landleydc0955b2006-03-14 18:16:25 +0000148// Return a list of all block device backed filesystems
Matt Kraai12400822001-04-17 04:32:50 +0000149
Rob Landleydc0955b2006-03-14 18:16:25 +0000150static llist_t *get_block_backed_filesystems(void)
Eric Andersencc8ed391999-10-05 16:24:54 +0000151{
Rob Landleydc0955b2006-03-14 18:16:25 +0000152 char *fs, *buf,
153 *filesystems[] = {"/etc/filesystems", "/proc/filesystems", 0};
154 llist_t *list = 0;
155 int i;
156 FILE *f;
Eric Andersencc8ed391999-10-05 16:24:54 +0000157
Rob Landleydc0955b2006-03-14 18:16:25 +0000158 for(i = 0; filesystems[i]; i++) {
159 if(!(f = fopen(filesystems[i], "r"))) continue;
Eric Andersen9601a1c2006-03-20 18:07:50 +0000160
Rob Landleydc0955b2006-03-14 18:16:25 +0000161 for(fs = buf = 0; (fs = buf = bb_get_chomped_line_from_file(f));
162 free(buf))
163 {
164 if(!strncmp(buf,"nodev",5) && isspace(buf[5])) continue;
Eric Andersen9601a1c2006-03-20 18:07:50 +0000165
Rob Landleydc0955b2006-03-14 18:16:25 +0000166 while(isspace(*fs)) fs++;
167 if(*fs=='#' || *fs=='*') continue;
168 if(!*fs) continue;
Eric Andersen9601a1c2006-03-20 18:07:50 +0000169
Rob Landleyd921b2e2006-08-03 15:41:12 +0000170 llist_add_to_end(&list,xstrdup(fs));
Rob Landleydc0955b2006-03-14 18:16:25 +0000171 }
172 if (ENABLE_FEATURE_CLEAN_UP) fclose(f);
173 }
174
175 return list;
176}
177
178llist_t *fslist = 0;
179
Rob Landleydc0955b2006-03-14 18:16:25 +0000180#if ENABLE_FEATURE_CLEAN_UP
181static void delete_block_backed_filesystems(void)
182{
Rob Landleya6b5b602006-05-08 19:03:07 +0000183 llist_free(fslist, free);
Rob Landleydc0955b2006-03-14 18:16:25 +0000184}
Rob Landleyfe908fd2006-03-29 14:30:49 +0000185#else
186void delete_block_backed_filesystems(void);
Rob Landleydc0955b2006-03-14 18:16:25 +0000187#endif
188
189#if ENABLE_FEATURE_MTAB_SUPPORT
190static int useMtab;
Eric Andersen19b5b8f2006-03-20 18:07:13 +0000191static int fakeIt;
Rob Landleydc0955b2006-03-14 18:16:25 +0000192#else
193#define useMtab 0
Eric Andersen19b5b8f2006-03-20 18:07:13 +0000194#define fakeIt 0
Rob Landleydc0955b2006-03-14 18:16:25 +0000195#endif
196
197// Perform actual mount of specific filesystem at specific location.
198
Rob Landleyfe908fd2006-03-29 14:30:49 +0000199static int mount_it_now(struct mntent *mp, int vfsflags, char *filteropts)
Rob Landleydc0955b2006-03-14 18:16:25 +0000200{
201 int rc;
Rob Landleyeaa34ca2006-03-18 02:58:11 +0000202
Eric Andersen19b5b8f2006-03-20 18:07:13 +0000203 if (fakeIt) { return 0; }
204
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
Rob Landleydc0955b2006-03-14 18:16:25 +0000217 // Abort entirely if permission denied.
218
219 if (rc && errno == EPERM)
220 bb_error_msg_and_die(bb_msg_perm_denied_are_you_root);
221
222 /* If the mount was successful, and we're maintaining an old-style
223 * mtab file by hand, add the new entry to it now. */
Eric Andersen9601a1c2006-03-20 18:07:50 +0000224
Rob Landleydc0955b2006-03-14 18:16:25 +0000225 if(ENABLE_FEATURE_MTAB_SUPPORT && useMtab && !rc) {
226 FILE *mountTable = setmntent(bb_path_mtab_file, "a+");
227 int i;
228
229 if(!mountTable)
230 bb_error_msg("No %s\n",bb_path_mtab_file);
231
232 // Add vfs string flags
233
234 for(i=0; mount_options[i].flags != MS_REMOUNT; i++)
235 if (mount_options[i].flags > 0)
Rob Landleye3781b72006-08-08 01:39:49 +0000236 append_mount_options(&(mp->mnt_opts), mount_options[i].name);
Rob Landleydc0955b2006-03-14 18:16:25 +0000237
238 // Remove trailing / (if any) from directory we mounted on
239
240 i = strlen(mp->mnt_dir);
241 if(i>1 && mp->mnt_dir[i-1] == '/') mp->mnt_dir[i-1] = 0;
242
243 // Write and close.
244
245 if(!mp->mnt_type || !*mp->mnt_type) mp->mnt_type="--bind";
246 addmntent(mountTable, mp);
247 endmntent(mountTable);
248 if (ENABLE_FEATURE_CLEAN_UP)
249 if(strcmp(mp->mnt_type,"--bind")) mp->mnt_type = 0;
250 }
Eric Andersen9601a1c2006-03-20 18:07:50 +0000251
Rob Landleydc0955b2006-03-14 18:16:25 +0000252 return rc;
253}
254
255
256// Mount one directory. Handles NFS, loopback, autobind, and filesystem type
257// detection. Returns 0 for success, nonzero for failure.
258
Rob Landley0cc2c2c2006-06-21 03:53:33 +0000259static int singlemount(struct mntent *mp, int ignore_busy)
Rob Landleydc0955b2006-03-14 18:16:25 +0000260{
Rob Landley0cc2c2c2006-06-21 03:53:33 +0000261 int rc = -1, vfsflags;
Rob Landleyfe908fd2006-03-29 14:30:49 +0000262 char *loopFile = 0, *filteropts = 0;
Rob Landleydc0955b2006-03-14 18:16:25 +0000263 llist_t *fl = 0;
264 struct stat st;
265
Rob Landleyfe908fd2006-03-29 14:30:49 +0000266 vfsflags = parse_mount_options(mp->mnt_opts, &filteropts);
Rob Landleydc0955b2006-03-14 18:16:25 +0000267
Rob Landleyeaa34ca2006-03-18 02:58:11 +0000268 // Treat fstype "auto" as unspecified.
269
270 if (mp->mnt_type && !strcmp(mp->mnt_type,"auto")) mp->mnt_type = 0;
271
Rob Landleydc0955b2006-03-14 18:16:25 +0000272 // Might this be an NFS filesystem?
273
274 if (ENABLE_FEATURE_MOUNT_NFS &&
275 (!mp->mnt_type || !strcmp(mp->mnt_type,"nfs")) &&
276 strchr(mp->mnt_fsname, ':') != NULL)
277 {
Rob Landleyfe908fd2006-03-29 14:30:49 +0000278 if (nfsmount(mp->mnt_fsname, mp->mnt_dir, &vfsflags, &filteropts, 1)) {
Rob Landleydc0955b2006-03-14 18:16:25 +0000279 bb_perror_msg("nfsmount failed");
Rob Landley0cc2c2c2006-06-21 03:53:33 +0000280 goto report_error;
Rob Landleyfe908fd2006-03-29 14:30:49 +0000281 } else {
282 // Strangely enough, nfsmount() doesn't actually mount() anything.
Rob Landley19af2792006-04-05 01:43:39 +0000283 mp->mnt_type = "nfs";
Rob Landleyfe908fd2006-03-29 14:30:49 +0000284 rc = mount_it_now(mp, vfsflags, filteropts);
285 if (ENABLE_FEATURE_CLEAN_UP) free(filteropts);
286
Rob Landley0cc2c2c2006-06-21 03:53:33 +0000287 goto report_error;
Rob Landleydc0955b2006-03-14 18:16:25 +0000288 }
Rob Landleydc0955b2006-03-14 18:16:25 +0000289 }
290
Rob Landleyab873602006-04-04 16:56:04 +0000291 // Look at the file. (Not found isn't a failure for remount, or for
292 // a synthetic filesystem like proc or sysfs.)
Rob Landleydc0955b2006-03-14 18:16:25 +0000293
Rob Landley721b46e2006-08-08 12:54:02 +0000294 if (!lstat(mp->mnt_fsname, &st) && !(vfsflags & (MS_REMOUNT | MS_BIND | MS_MOVE | MS_SHARED | MS_PRIVATE | MS_SLAVE | MS_UNBINDABLE)))
Rob Landleye3781b72006-08-08 01:39:49 +0000295 {
Rob Landleydc0955b2006-03-14 18:16:25 +0000296 // Do we need to allocate a loopback device for it?
Eric Andersen9601a1c2006-03-20 18:07:50 +0000297
Rob Landleydc0955b2006-03-14 18:16:25 +0000298 if (ENABLE_FEATURE_MOUNT_LOOP && S_ISREG(st.st_mode)) {
Rob Landleyeaa34ca2006-03-18 02:58:11 +0000299 loopFile = bb_simplify_path(mp->mnt_fsname);
Rob Landleydc0955b2006-03-14 18:16:25 +0000300 mp->mnt_fsname = 0;
301 switch(set_loop(&(mp->mnt_fsname), loopFile, 0)) {
302 case 0:
303 case 1:
304 break;
305 default:
306 bb_error_msg( errno == EPERM || errno == EACCES
307 ? bb_msg_perm_denied_are_you_root
308 : "Couldn't setup loop device");
309 return errno;
310 }
Rob Landleyeaa34ca2006-03-18 02:58:11 +0000311
Rob Landleydc0955b2006-03-14 18:16:25 +0000312 // Autodetect bind mounts
313
314 } else if (S_ISDIR(st.st_mode) && !mp->mnt_type) vfsflags |= MS_BIND;
315 }
316
317 /* If we know the fstype (or don't need to), jump straight
318 * to the actual mount. */
319
320 if (mp->mnt_type || (vfsflags & (MS_REMOUNT | MS_BIND | MS_MOVE)))
Rob Landleyfe908fd2006-03-29 14:30:49 +0000321 rc = mount_it_now(mp, vfsflags, filteropts);
Rob Landleydc0955b2006-03-14 18:16:25 +0000322
323 // Loop through filesystem types until mount succeeds or we run out
324
Rob Landleyeaa34ca2006-03-18 02:58:11 +0000325 else {
Rob Landleydc0955b2006-03-14 18:16:25 +0000326
Rob Landleyeaa34ca2006-03-18 02:58:11 +0000327 /* Initialize list of block backed filesystems. This has to be
328 * done here so that during "mount -a", mounts after /proc shows up
329 * can autodetect. */
Rob Landleydc0955b2006-03-14 18:16:25 +0000330
Rob Landleyeaa34ca2006-03-18 02:58:11 +0000331 if (!fslist) {
332 fslist = get_block_backed_filesystems();
333 if (ENABLE_FEATURE_CLEAN_UP && fslist)
334 atexit(delete_block_backed_filesystems);
335 }
Eric Andersen9601a1c2006-03-20 18:07:50 +0000336
Rob Landleyeaa34ca2006-03-18 02:58:11 +0000337 for (fl = fslist; fl; fl = fl->link) {
338 mp->mnt_type = fl->data;
339
Rob Landleyfe908fd2006-03-29 14:30:49 +0000340 if (!(rc = mount_it_now(mp,vfsflags, filteropts))) break;
Rob Landleyeaa34ca2006-03-18 02:58:11 +0000341
342 mp->mnt_type = 0;
343 }
Rob Landleydc0955b2006-03-14 18:16:25 +0000344 }
345
Rob Landleyfe908fd2006-03-29 14:30:49 +0000346 if (ENABLE_FEATURE_CLEAN_UP) free(filteropts);
347
348 // If mount failed, clean up loop file (if any).
349
Bernhard Reutner-Fischer08421e12006-05-26 14:05:48 +0000350 if (ENABLE_FEATURE_MOUNT_LOOP && rc && loopFile) {
Rob Landleydc0955b2006-03-14 18:16:25 +0000351 del_loop(mp->mnt_fsname);
Rob Landleyfe908fd2006-03-29 14:30:49 +0000352 if (ENABLE_FEATURE_CLEAN_UP) {
Rob Landleyeaa34ca2006-03-18 02:58:11 +0000353 free(loopFile);
354 free(mp->mnt_fsname);
355 }
Rob Landleydc0955b2006-03-14 18:16:25 +0000356 }
Rob Landley0cc2c2c2006-06-21 03:53:33 +0000357report_error:
358 if (rc && errno == EBUSY && ignore_busy) rc = 0;
359 if (rc < 0)
360 bb_perror_msg("Mounting %s on %s failed", mp->mnt_fsname, mp->mnt_dir);
361
Rob Landleydc0955b2006-03-14 18:16:25 +0000362 return rc;
363}
364
Rob Landleydc0955b2006-03-14 18:16:25 +0000365// Parse options, if necessary parse fstab/mtab, and call singlemount for
366// each directory to be mounted.
367
368int mount_main(int argc, char **argv)
369{
Rob Landleyd921b2e2006-08-03 15:41:12 +0000370 char *cmdopts = xstrdup(""), *fstabname, *fstype=0, *storage_path=0;
Rob Landleydc0955b2006-03-14 18:16:25 +0000371 FILE *fstab;
Rob Landley0cc2c2c2006-06-21 03:53:33 +0000372 int i, opt, all = FALSE, rc = 0;
Rob Landleydc0955b2006-03-14 18:16:25 +0000373 struct mntent mtpair[2], *mtcur = mtpair;
Eric Andersen9601a1c2006-03-20 18:07:50 +0000374
Rob Landley6a6798b2005-08-10 20:35:54 +0000375 /* parse long options, like --bind and --move. Note that -o option
376 * and --option are synonymous. Yes, this means --remount,rw works. */
377
Rob Landleydc0955b2006-03-14 18:16:25 +0000378 for (i = opt = 0; i < argc; i++) {
379 if (argv[i][0] == '-' && argv[i][1] == '-') {
Eric Andersen9601a1c2006-03-20 18:07:50 +0000380 append_mount_options(&cmdopts,argv[i]+2);
Rob Landleydc0955b2006-03-14 18:16:25 +0000381 } else argv[opt++] = argv[i];
Rob Landley6a6798b2005-08-10 20:35:54 +0000382 }
383 argc = opt;
384
385 // Parse remaining options
386
Rob Landleydc0955b2006-03-14 18:16:25 +0000387 while ((opt = getopt(argc, argv, "o:t:rwavnf")) > 0) {
Matt Kraaia3045df2001-04-17 04:48:51 +0000388 switch (opt) {
Rob Landleydc0955b2006-03-14 18:16:25 +0000389 case 'o':
390 append_mount_options(&cmdopts, optarg);
391 break;
392 case 't':
393 fstype = optarg;
394 break;
395 case 'r':
396 append_mount_options(&cmdopts, "ro");
397 break;
398 case 'w':
399 append_mount_options(&cmdopts, "rw");
400 break;
401 case 'a':
402 all = TRUE;
403 break;
404 case 'n':
405 USE_FEATURE_MTAB_SUPPORT(useMtab = FALSE;)
406 break;
407 case 'f':
408 USE_FEATURE_MTAB_SUPPORT(fakeIt = FALSE;)
409 break;
410 case 'v':
411 break; // ignore -v
412 default:
413 bb_show_usage();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000414 }
Matt Kraaia3045df2001-04-17 04:48:51 +0000415 }
Eric Andersen9601a1c2006-03-20 18:07:50 +0000416
Rob Landleydc0955b2006-03-14 18:16:25 +0000417 // Three or more non-option arguments? Die with a usage message.
418
419 if (optind-argc>2) bb_show_usage();
Eric Andersen9601a1c2006-03-20 18:07:50 +0000420
Rob Landley6a6798b2005-08-10 20:35:54 +0000421 // If we have no arguments, show currently mounted filesystems
422
Rob Landleydc0955b2006-03-14 18:16:25 +0000423 if (optind == argc) {
424 if (!all) {
425 FILE *mountTable = setmntent(bb_path_mtab_file, "r");
Rob Landley6a6798b2005-08-10 20:35:54 +0000426
Rob Landleydc0955b2006-03-14 18:16:25 +0000427 if(!mountTable) bb_error_msg_and_die("No %s",bb_path_mtab_file);
Rob Landley6a6798b2005-08-10 20:35:54 +0000428
Rob Landleydc0955b2006-03-14 18:16:25 +0000429 while (getmntent_r(mountTable,mtpair,bb_common_bufsiz1,
430 sizeof(bb_common_bufsiz1)))
431 {
432 // Don't show rootfs.
433 if (!strcmp(mtpair->mnt_fsname, "rootfs")) continue;
Rob Landley6a6798b2005-08-10 20:35:54 +0000434
Rob Landleydc0955b2006-03-14 18:16:25 +0000435 if (!fstype || !strcmp(mtpair->mnt_type, fstype))
436 printf("%s on %s type %s (%s)\n", mtpair->mnt_fsname,
437 mtpair->mnt_dir, mtpair->mnt_type,
438 mtpair->mnt_opts);
439 }
440 if (ENABLE_FEATURE_CLEAN_UP) endmntent(mountTable);
441 return EXIT_SUCCESS;
Rob Landley6a6798b2005-08-10 20:35:54 +0000442 }
Glenn L McGrath8042f652002-08-23 06:17:46 +0000443 }
Matt Kraai12400822001-04-17 04:32:50 +0000444
Rob Landleydc0955b2006-03-14 18:16:25 +0000445 // When we have two arguments, the second is the directory and we can
446 // skip looking at fstab entirely. We can always abspath() the directory
447 // argument when we get it.
Rob Landley6a6798b2005-08-10 20:35:54 +0000448
Rob Landleydc0955b2006-03-14 18:16:25 +0000449 if (optind+2 == argc) {
450 mtpair->mnt_fsname = argv[optind];
451 mtpair->mnt_dir = argv[optind+1];
452 mtpair->mnt_type = fstype;
453 mtpair->mnt_opts = cmdopts;
Rob Landley0cc2c2c2006-06-21 03:53:33 +0000454 rc = singlemount(mtpair, 0);
Rob Landleydc0955b2006-03-14 18:16:25 +0000455 goto clean_up;
456 }
Rob Landley6a6798b2005-08-10 20:35:54 +0000457
Rob Landleydc0955b2006-03-14 18:16:25 +0000458 // If we have at least one argument, it's the storage location
Eric Andersen9601a1c2006-03-20 18:07:50 +0000459
Rob Landleydc0955b2006-03-14 18:16:25 +0000460 if (optind < argc) storage_path = bb_simplify_path(argv[optind]);
Eric Andersen9601a1c2006-03-20 18:07:50 +0000461
Rob Landleydc0955b2006-03-14 18:16:25 +0000462 // Open either fstab or mtab
Rob Landley6a6798b2005-08-10 20:35:54 +0000463
Rob Landleydc0955b2006-03-14 18:16:25 +0000464 if (parse_mount_options(cmdopts,0) & MS_REMOUNT)
Rob Landley721b46e2006-08-08 12:54:02 +0000465 fstabname = bb_path_mtab_file;
Rob Landleydc0955b2006-03-14 18:16:25 +0000466 else fstabname="/etc/fstab";
Eric Andersen9601a1c2006-03-20 18:07:50 +0000467
Rob Landleydc0955b2006-03-14 18:16:25 +0000468 if (!(fstab=setmntent(fstabname,"r")))
469 bb_perror_msg_and_die("Cannot read %s",fstabname);
Eric Andersen9601a1c2006-03-20 18:07:50 +0000470
Rob Landleydc0955b2006-03-14 18:16:25 +0000471 // Loop through entries until we find what we're looking for.
Rob Landley6a6798b2005-08-10 20:35:54 +0000472
Rob Landleydc0955b2006-03-14 18:16:25 +0000473 memset(mtpair,0,sizeof(mtpair));
474 for (;;) {
475 struct mntent *mtnext = mtpair + (mtcur==mtpair ? 1 : 0);
Rob Landley6a6798b2005-08-10 20:35:54 +0000476
477 // Get next fstab entry
478
Rob Landley20fef962006-04-01 17:32:52 +0000479 if (!getmntent_r(fstab, mtcur, bb_common_bufsiz1
480 + (mtcur==mtpair ? sizeof(bb_common_bufsiz1)/2 : 0),
481 sizeof(bb_common_bufsiz1)/2))
Rob Landleydc0955b2006-03-14 18:16:25 +0000482 {
483 // Were we looking for something specific?
484
485 if (optind != argc) {
486
487 // If we didn't find anything, complain.
488
489 if (!mtnext->mnt_fsname)
490 bb_error_msg_and_die("Can't find %s in %s",
491 argv[optind], fstabname);
Eric Andersen9601a1c2006-03-20 18:07:50 +0000492
Rob Landleydc0955b2006-03-14 18:16:25 +0000493 // Mount the last thing we found.
494
495 mtcur = mtnext;
Rob Landleyd921b2e2006-08-03 15:41:12 +0000496 mtcur->mnt_opts = xstrdup(mtcur->mnt_opts);
Rob Landleydc0955b2006-03-14 18:16:25 +0000497 append_mount_options(&(mtcur->mnt_opts),cmdopts);
Rob Landley0cc2c2c2006-06-21 03:53:33 +0000498 rc = singlemount(mtcur, 0);
Rob Landleydc0955b2006-03-14 18:16:25 +0000499 free(mtcur->mnt_opts);
500 }
Rob Landley0cc2c2c2006-06-21 03:53:33 +0000501 goto clean_up;
Rob Landley6a6798b2005-08-10 20:35:54 +0000502 }
Rob Landleyeaa34ca2006-03-18 02:58:11 +0000503
Rob Landleydc0955b2006-03-14 18:16:25 +0000504 /* If we're trying to mount something specific and this isn't it,
505 * skip it. Note we must match both the exact text in fstab (ala
506 * "proc") or a full path from root */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000507
Rob Landleydc0955b2006-03-14 18:16:25 +0000508 if (optind != argc) {
Rob Landley6a6798b2005-08-10 20:35:54 +0000509
Rob Landleydc0955b2006-03-14 18:16:25 +0000510 // Is this what we're looking for?
Rob Landley6a6798b2005-08-10 20:35:54 +0000511
Rob Landleydc0955b2006-03-14 18:16:25 +0000512 if(strcmp(argv[optind],mtcur->mnt_fsname) &&
513 strcmp(storage_path,mtcur->mnt_fsname) &&
514 strcmp(argv[optind],mtcur->mnt_dir) &&
515 strcmp(storage_path,mtcur->mnt_dir)) continue;
Rob Landley6a6798b2005-08-10 20:35:54 +0000516
Rob Landleydc0955b2006-03-14 18:16:25 +0000517 // Remember this entry. Something later may have overmounted
518 // it, and we want the _last_ match.
Rob Landley6a6798b2005-08-10 20:35:54 +0000519
Rob Landleydc0955b2006-03-14 18:16:25 +0000520 mtcur = mtnext;
Eric Andersen9601a1c2006-03-20 18:07:50 +0000521
Rob Landleydc0955b2006-03-14 18:16:25 +0000522 // If we're mounting all.
Rob Landley6a6798b2005-08-10 20:35:54 +0000523
Glenn L McGrath3aae1002001-05-07 01:38:03 +0000524 } else {
Eric Andersen9601a1c2006-03-20 18:07:50 +0000525
Rob Landleydc0955b2006-03-14 18:16:25 +0000526 // Do we need to match a filesystem type?
527 if (fstype && strcmp(mtcur->mnt_type,fstype)) continue;
Eric Andersen9601a1c2006-03-20 18:07:50 +0000528
Rob Landleydc0955b2006-03-14 18:16:25 +0000529 // Skip noauto and swap anyway.
530
531 if (parse_mount_options(mtcur->mnt_opts,0)
532 & (MOUNT_NOAUTO | MOUNT_SWAP)) continue;
533
534 // Mount this thing.
535
Rob Landley0cc2c2c2006-06-21 03:53:33 +0000536 if (singlemount(mtcur, 1)) {
537 /* Count number of failed mounts */
538 rc++;
Rob Landleydc0955b2006-03-14 18:16:25 +0000539 }
Glenn L McGrath3aae1002001-05-07 01:38:03 +0000540 }
Eric Andersenfdd51032000-08-02 18:48:26 +0000541 }
Rob Landleydc0955b2006-03-14 18:16:25 +0000542 if (ENABLE_FEATURE_CLEAN_UP) endmntent(fstab);
Glenn L McGrath9fef17d2002-08-22 18:41:20 +0000543
Rob Landleydc0955b2006-03-14 18:16:25 +0000544clean_up:
545
546 if (ENABLE_FEATURE_CLEAN_UP) {
547 free(storage_path);
548 free(cmdopts);
Rob Landley7b363fd2005-12-20 17:18:01 +0000549 }
Eric Andersen9601a1c2006-03-20 18:07:50 +0000550
Rob Landley6e985212005-08-14 18:46:34 +0000551 return rc;
Eric Andersencc8ed391999-10-05 16:24:54 +0000552}