blob: a191f3260e8c42eaa86f29d980223adc746320eb [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{
Rob Landleya6b5b602006-05-08 19:03:07 +0000185 llist_free(fslist, free);
Rob Landleydc0955b2006-03-14 18:16:25 +0000186}
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.
Rob Landley19af2792006-04-05 01:43:39 +0000287 mp->mnt_type = "nfs";
Rob Landleyfe908fd2006-03-29 14:30:49 +0000288 rc = mount_it_now(mp, vfsflags, filteropts);
289 if (ENABLE_FEATURE_CLEAN_UP) free(filteropts);
290
291 return rc;
Rob Landleydc0955b2006-03-14 18:16:25 +0000292 }
Rob Landleydc0955b2006-03-14 18:16:25 +0000293 }
294
Rob Landleyab873602006-04-04 16:56:04 +0000295 // Look at the file. (Not found isn't a failure for remount, or for
296 // a synthetic filesystem like proc or sysfs.)
Rob Landleydc0955b2006-03-14 18:16:25 +0000297
298 if (lstat(mp->mnt_fsname, &st));
Rob Landleyab873602006-04-04 16:56:04 +0000299 else if (!(vfsflags & (MS_REMOUNT | MS_BIND | MS_MOVE))) {
Rob Landleydc0955b2006-03-14 18:16:25 +0000300 // Do we need to allocate a loopback device for it?
Eric Andersen9601a1c2006-03-20 18:07:50 +0000301
Rob Landleydc0955b2006-03-14 18:16:25 +0000302 if (ENABLE_FEATURE_MOUNT_LOOP && S_ISREG(st.st_mode)) {
Rob Landleyeaa34ca2006-03-18 02:58:11 +0000303 loopFile = bb_simplify_path(mp->mnt_fsname);
Rob Landleydc0955b2006-03-14 18:16:25 +0000304 mp->mnt_fsname = 0;
305 switch(set_loop(&(mp->mnt_fsname), loopFile, 0)) {
306 case 0:
307 case 1:
308 break;
309 default:
310 bb_error_msg( errno == EPERM || errno == EACCES
311 ? bb_msg_perm_denied_are_you_root
312 : "Couldn't setup loop device");
313 return errno;
314 }
Rob Landleyeaa34ca2006-03-18 02:58:11 +0000315
Rob Landleydc0955b2006-03-14 18:16:25 +0000316 // Autodetect bind mounts
317
318 } else if (S_ISDIR(st.st_mode) && !mp->mnt_type) vfsflags |= MS_BIND;
319 }
320
321 /* If we know the fstype (or don't need to), jump straight
322 * to the actual mount. */
323
324 if (mp->mnt_type || (vfsflags & (MS_REMOUNT | MS_BIND | MS_MOVE)))
Rob Landleyfe908fd2006-03-29 14:30:49 +0000325 rc = mount_it_now(mp, vfsflags, filteropts);
Rob Landleydc0955b2006-03-14 18:16:25 +0000326
327 // Loop through filesystem types until mount succeeds or we run out
328
Rob Landleyeaa34ca2006-03-18 02:58:11 +0000329 else {
Rob Landleydc0955b2006-03-14 18:16:25 +0000330
Rob Landleyeaa34ca2006-03-18 02:58:11 +0000331 /* Initialize list of block backed filesystems. This has to be
332 * done here so that during "mount -a", mounts after /proc shows up
333 * can autodetect. */
Rob Landleydc0955b2006-03-14 18:16:25 +0000334
Rob Landleyeaa34ca2006-03-18 02:58:11 +0000335 if (!fslist) {
336 fslist = get_block_backed_filesystems();
337 if (ENABLE_FEATURE_CLEAN_UP && fslist)
338 atexit(delete_block_backed_filesystems);
339 }
Eric Andersen9601a1c2006-03-20 18:07:50 +0000340
Rob Landleyeaa34ca2006-03-18 02:58:11 +0000341 for (fl = fslist; fl; fl = fl->link) {
342 mp->mnt_type = fl->data;
343
Rob Landleyfe908fd2006-03-29 14:30:49 +0000344 if (!(rc = mount_it_now(mp,vfsflags, filteropts))) break;
Rob Landleyeaa34ca2006-03-18 02:58:11 +0000345
346 mp->mnt_type = 0;
347 }
Rob Landleydc0955b2006-03-14 18:16:25 +0000348 }
349
Rob Landleyfe908fd2006-03-29 14:30:49 +0000350 if (ENABLE_FEATURE_CLEAN_UP) free(filteropts);
351
352 // If mount failed, clean up loop file (if any).
353
Bernhard Reutner-Fischer08421e12006-05-26 14:05:48 +0000354 if (ENABLE_FEATURE_MOUNT_LOOP && rc && loopFile) {
Rob Landleydc0955b2006-03-14 18:16:25 +0000355 del_loop(mp->mnt_fsname);
Rob Landleyfe908fd2006-03-29 14:30:49 +0000356 if (ENABLE_FEATURE_CLEAN_UP) {
Rob Landleyeaa34ca2006-03-18 02:58:11 +0000357 free(loopFile);
358 free(mp->mnt_fsname);
359 }
Rob Landleydc0955b2006-03-14 18:16:25 +0000360 }
361 return rc;
362}
363
364
365// 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{
370 char *cmdopts = bb_xstrdup(""), *fstabname, *fstype=0, *storage_path=0;
371 FILE *fstab;
372 int i, opt, all = FALSE, rc = 1;
373 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;
454 rc = singlemount(mtpair);
455 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)
465 fstabname = (char *)bb_path_mtab_file; // Again with the evil const.
466 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;
496 mtcur->mnt_opts=bb_xstrdup(mtcur->mnt_opts);
497 append_mount_options(&(mtcur->mnt_opts),cmdopts);
498 rc = singlemount(mtcur);
499 free(mtcur->mnt_opts);
500 }
Rob Landley6a6798b2005-08-10 20:35:54 +0000501 break;
502 }
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 Landley49159c72006-05-05 15:01:38 +0000536 if (singlemount(mtcur)) {
Rob Landleydc0955b2006-03-14 18:16:25 +0000537 // Don't whine about already mounted fs when mounting all.
Rob Landley49159c72006-05-05 15:01:38 +0000538 // Note: we should probably change return value to indicate
539 // failure, without causing a duplicate error message.
540 if (errno != EBUSY) bb_perror_msg("Mounting %s on %s failed",
541 mtcur->mnt_fsname, mtcur->mnt_dir);
542 rc = 0;
Rob Landleydc0955b2006-03-14 18:16:25 +0000543 }
Glenn L McGrath3aae1002001-05-07 01:38:03 +0000544 }
Eric Andersenfdd51032000-08-02 18:48:26 +0000545 }
Rob Landleydc0955b2006-03-14 18:16:25 +0000546 if (ENABLE_FEATURE_CLEAN_UP) endmntent(fstab);
Glenn L McGrath9fef17d2002-08-22 18:41:20 +0000547
Rob Landleydc0955b2006-03-14 18:16:25 +0000548clean_up:
549
550 if (ENABLE_FEATURE_CLEAN_UP) {
551 free(storage_path);
552 free(cmdopts);
Rob Landley7b363fd2005-12-20 17:18:01 +0000553 }
Eric Andersen9601a1c2006-03-20 18:07:50 +0000554
Rob Landleydc0955b2006-03-14 18:16:25 +0000555 if(rc)
556 bb_perror_msg("Mounting %s on %s failed",
557 mtcur->mnt_fsname, mtcur->mnt_dir);
Rob Landley6a6798b2005-08-10 20:35:54 +0000558
Rob Landley6e985212005-08-14 18:46:34 +0000559 return rc;
Eric Andersencc8ed391999-10-05 16:24:54 +0000560}