Lots of updates. Finished implementing BB_FEATURE_TRIVIAL_HELP
[oweals/busybox.git] / util-linux / mount.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini mount implementation for busybox
4  *
5  * Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>.
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20  *
21  * 3/21/1999    Charles P. Wright <cpwright@cpwright.com>
22  *              searches through fstab when -a is passed
23  *              will try mounting stuff with all fses when passed -t auto
24  *
25  * 1999-04-17   Dave Cinege...Rewrote -t auto. Fixed ro mtab.
26  *
27  * 1999-10-07   Erik Andersen <andersen@lineo.com>, <andersee@debian.org>.
28  *              Rewrite of a lot of code. Removed mtab usage (I plan on
29  *              putting it back as a compile-time option some time), 
30  *              major adjustments to option parsing, and some serious 
31  *              dieting all around.
32  *
33  * 1999-11-06   mtab suppport is back - andersee
34  *
35  * 2000-01-12   Ben Collins <bcollins@debian.org>, Borrowed utils-linux's
36  *              mount to add loop support.
37  */
38
39 #include "internal.h"
40 #include <stdlib.h>
41 #include <unistd.h>
42 #include <errno.h>
43 #include <string.h>
44 #include <stdio.h>
45 #include <mntent.h>
46 #include <sys/mount.h>
47 #include <ctype.h>
48 #if defined BB_FEATURE_USE_DEVPS_PATCH
49 #include <linux/devmtab.h>
50 #endif
51 #ifndef MS_RDONLY
52 #include <linux/fs.h>
53 #endif
54
55
56 #if defined BB_FEATURE_MOUNT_LOOP
57 #include <fcntl.h>
58 #include <sys/ioctl.h>
59 #include <linux/loop.h>
60
61
62 static int use_loop = FALSE;
63 #endif
64
65 extern const char mtab_file[];  /* Defined in utility.c */
66
67 static const char mount_usage[] = 
68         "mount [flags] device directory [-o options,more-options]\n"
69 #ifndef BB_FEATURE_TRIVIAL_HELP
70         "\nMount a filesystem\n\n"
71         "Flags:\n" 
72         "\t-a:\t\tMount all filesystems in fstab.\n"
73 #ifdef BB_MTAB
74         "\t-f:\t\t\"Fake\" mount. Add entry to mount table but don't mount it.\n"
75         "\t-n:\t\tDon't write a mount table entry.\n"
76 #endif
77         "\t-o option:\tOne of many filesystem options, listed below.\n"
78         "\t-r:\t\tMount the filesystem read-only.\n"
79         "\t-t fs-type:\tSpecify the filesystem type.\n"
80         "\t-w:\t\tMount for reading and writing (default).\n"
81         "\n"
82         "Options for use with the \"-o\" flag:\n"
83         "\tasync/sync:\tWrites are asynchronous / synchronous.\n"
84         "\tatime/noatime:\tEnable / disable updates to inode access times.\n"
85         "\tdev/nodev:\tAllow use of special device files / disallow them.\n"
86         "\texec/noexec:\tAllow use of executable files / disallow them.\n"
87 #if defined BB_FEATURE_MOUNT_LOOP
88         "\tloop:\t\tMounts a file via loop device.\n"
89 #endif
90         "\tsuid/nosuid:\tAllow set-user-id-root programs / disallow them.\n"
91         "\tremount:\tRe-mount a currently-mounted filesystem, changing its flags.\n"
92         "\tro/rw:\t\tMount for read-only / read-write.\n"
93         "\nThere are EVEN MORE flags that are specific to each filesystem.\n"
94         "You'll have to see the written documentation for those.\n"
95 #endif
96         ;
97
98
99 struct mount_options {
100         const char *name;
101         unsigned long and;
102         unsigned long or;
103 };
104
105 static const struct mount_options mount_options[] = {
106         {"async", ~MS_SYNCHRONOUS, 0},
107         {"atime", ~0, ~MS_NOATIME},
108         {"defaults", ~0, 0},
109         {"dev", ~MS_NODEV, 0},
110         {"diratime", ~0, ~MS_NODIRATIME},
111         {"exec", ~MS_NOEXEC, 0},
112         {"noatime", ~0, MS_NOATIME},
113         {"nodev", ~0, MS_NODEV},
114         {"nodiratime", ~0, MS_NODIRATIME},
115         {"noexec", ~0, MS_NOEXEC},
116         {"nosuid", ~0, MS_NOSUID},
117         {"remount", ~0, MS_REMOUNT},
118         {"ro", ~0, MS_RDONLY},
119         {"rw", ~MS_RDONLY, 0},
120         {"suid", ~MS_NOSUID, 0},
121         {"sync", ~0, MS_SYNCHRONOUS},
122         {0, 0, 0}
123 };
124
125 static int
126 do_mount(char *specialfile, char *dir, char *filesystemtype,
127                  long flags, void *string_flags, int useMtab, int fakeIt,
128                  char *mtab_opts)
129 {
130         int status = 0;
131         char *lofile = NULL;
132
133 #if defined BB_MTAB
134         if (fakeIt == FALSE)
135 #endif
136         {
137 #if defined BB_FEATURE_MOUNT_LOOP
138                 if (use_loop==TRUE) {
139                         int loro = flags & MS_RDONLY;
140                         char *lofile = specialfile;
141
142                         specialfile = find_unused_loop_device();
143                         if (specialfile == NULL) {
144                                 fprintf(stderr, "Could not find a spare loop device\n");
145                                 return (FALSE);
146                         }
147                         if (set_loop(specialfile, lofile, 0, &loro)) {
148                                 fprintf(stderr, "Could not setup loop device\n");
149                                 return (FALSE);
150                         }
151                         if (!(flags & MS_RDONLY) && loro) {     /* loop is ro, but wanted rw */
152                                 fprintf(stderr, "WARNING: loop device is read-only\n");
153                                 flags &= ~MS_RDONLY;
154                         }
155                 }
156 #endif
157                 status =
158                         mount(specialfile, dir, filesystemtype, flags, string_flags);
159         }
160
161
162         /* If the mount was sucessful, do anything needed, then return TRUE */
163         if (status == 0) {
164
165 #if defined BB_MTAB
166                 if (useMtab == TRUE) {
167                         write_mtab(specialfile, dir, filesystemtype, flags, mtab_opts);
168                 }
169 #endif
170                 return (TRUE);
171         }
172
173         /* Bummer.  mount failed.  Clean up */
174 #if defined BB_FEATURE_MOUNT_LOOP
175         if (lofile != NULL) {
176                 del_loop(specialfile);
177         }
178 #endif
179         return (FALSE);
180 }
181
182
183
184 /* Seperate standard mount options from the nonstandard string options */
185 static void
186 parse_mount_options(char *options, unsigned long *flags, char *strflags)
187 {
188         while (options) {
189                 int gotone = FALSE;
190                 char *comma = strchr(options, ',');
191                 const struct mount_options *f = mount_options;
192
193                 if (comma)
194                         *comma = '\0';
195
196                 while (f->name != 0) {
197                         if (strcasecmp(f->name, options) == 0) {
198
199                                 *flags &= f->and;
200                                 *flags |= f->or;
201                                 gotone = TRUE;
202                                 break;
203                         }
204                         f++;
205                 }
206 #if defined BB_FEATURE_MOUNT_LOOP
207                 if (gotone == FALSE && !strcasecmp("loop", options)) {  /* loop device support */
208                         use_loop = TRUE;
209                         gotone = TRUE;
210                 }
211 #endif
212                 if (*strflags && strflags != '\0' && gotone == FALSE) {
213                         char *temp = strflags;
214
215                         temp += strlen(strflags);
216                         *temp++ = ',';
217                         *temp++ = '\0';
218                 }
219                 if (gotone == FALSE)
220                         strcat(strflags, options);
221                 if (comma) {
222                         *comma = ',';
223                         options = ++comma;
224                 } else {
225                         break;
226                 }
227         }
228 }
229
230 int
231 mount_one(char *blockDevice, char *directory, char *filesystemType,
232                   unsigned long flags, char *string_flags, int useMtab, int fakeIt,
233                   char *mtab_opts, int whineOnErrors)
234 {
235         int status = 0;
236
237 #if defined BB_FEATURE_USE_PROCFS
238         char buf[255];
239         if (strcmp(filesystemType, "auto") == 0) {
240                 FILE *f = fopen("/proc/filesystems", "r");
241
242                 if (f == NULL)
243                         return (FALSE);
244
245                 while (fgets(buf, sizeof(buf), f) != NULL) {
246                         filesystemType = buf;
247                         if (*filesystemType == '\t') {  // Not a nodev filesystem
248
249                                 // Add NULL termination to each line
250                                 while (*filesystemType && *filesystemType != '\n')
251                                         filesystemType++;
252                                 *filesystemType = '\0';
253
254                                 filesystemType = buf;
255                                 filesystemType++;       // hop past tab
256
257                                 status = do_mount(blockDevice, directory, filesystemType,
258                                                                   flags | MS_MGC_VAL, string_flags,
259                                                                   useMtab, fakeIt, mtab_opts);
260                                 if (status == TRUE)
261                                         break;
262                         }
263                 }
264                 fclose(f);
265         } else
266 #endif
267 #if defined BB_FEATURE_USE_DEVPS_PATCH
268         if (strcmp(filesystemType, "auto") == 0) {
269                 int fd, i, numfilesystems;
270                 char device[] = "/dev/mtab";
271                 struct k_fstype *fslist;
272
273                 /* open device */ 
274                 fd = open(device, O_RDONLY);
275                 if (fd < 0)
276                         fatalError("open failed for `%s': %s\n", device, strerror (errno));
277
278                 /* How many filesystems?  We need to know to allocate enough space */
279                 numfilesystems = ioctl (fd, DEVMTAB_COUNT_FILESYSTEMS);
280                 if (numfilesystems<0)
281                         fatalError("\nDEVMTAB_COUNT_FILESYSTEMS: %s\n", strerror (errno));
282                 fslist = (struct k_fstype *) calloc ( numfilesystems, sizeof(struct k_fstype));
283
284                 /* Grab the list of available filesystems */
285                 status = ioctl (fd, DEVMTAB_GET_FILESYSTEMS, fslist);
286                 if (status<0)
287                         fatalError("\nDEVMTAB_GET_FILESYSTEMS: %s\n", strerror (errno));
288
289                 /* Walk the list trying to mount filesystems 
290                  * that do not claim to be nodev filesystems */
291                 for( i = 0 ; i < numfilesystems ; i++) {
292                         if (fslist[i].mnt_nodev)
293                                 continue;
294                         status = do_mount(blockDevice, directory, fslist[i].mnt_type,
295                                                           flags | MS_MGC_VAL, string_flags,
296                                                           useMtab, fakeIt, mtab_opts);
297                         if (status == TRUE)
298                                 break;
299                 }
300                 free( fslist);
301                 close(fd);
302         } else
303 #endif
304         {
305                 status = do_mount(blockDevice, directory, filesystemType,
306                                                   flags | MS_MGC_VAL, string_flags, useMtab,
307                                                   fakeIt, mtab_opts);
308         }
309
310         if (status == FALSE && whineOnErrors == TRUE) {
311                 if (whineOnErrors == TRUE) {
312                         fprintf(stderr, "Mounting %s on %s failed: %s\n",
313                                         blockDevice, directory, strerror(errno));
314                 }
315                 return (FALSE);
316         }
317         return (TRUE);
318 }
319
320 extern int mount_main(int argc, char **argv)
321 {
322         char string_flags_buf[1024] = "";
323         char *string_flags = string_flags_buf;
324         char *extra_opts = string_flags_buf;
325         unsigned long flags = 0;
326         char *filesystemType = "auto";
327         char *device = NULL;
328         char *directory = NULL;
329         int all = FALSE;
330         int fakeIt = FALSE;
331         int useMtab = TRUE;
332         int i;
333
334 #if defined BB_FEATURE_USE_DEVPS_PATCH
335         if (argc == 1) {
336                 int fd, i, numfilesystems;
337                 char device[] = "/dev/mtab";
338                 struct k_mntent *mntentlist;
339
340                 /* open device */ 
341                 fd = open(device, O_RDONLY);
342                 if (fd < 0)
343                         fatalError("open failed for `%s': %s\n", device, strerror (errno));
344
345                 /* How many mounted filesystems?  We need to know to 
346                  * allocate enough space for later... */
347                 numfilesystems = ioctl (fd, DEVMTAB_COUNT_MOUNTS);
348                 if (numfilesystems<0)
349                         fatalError( "\nDEVMTAB_COUNT_MOUNTS: %s\n", strerror (errno));
350                 mntentlist = (struct k_mntent *) calloc ( numfilesystems, sizeof(struct k_mntent));
351                 
352                 /* Grab the list of mounted filesystems */
353                 if (ioctl (fd, DEVMTAB_GET_MOUNTS, mntentlist)<0)
354                         fatalError( "\nDEVMTAB_GET_MOUNTS: %s\n", strerror (errno));
355
356                 for( i = 0 ; i < numfilesystems ; i++) {
357                         fprintf( stdout, "%s %s %s %s %d %d\n", mntentlist[i].mnt_fsname,
358                                         mntentlist[i].mnt_dir, mntentlist[i].mnt_type, 
359                                         mntentlist[i].mnt_opts, mntentlist[i].mnt_freq, 
360                                         mntentlist[i].mnt_passno);
361                 }
362                 /* Don't bother to close files or free memory.  Exit 
363                  * does that automagically, so we can save a few bytes */
364 #if 0
365                 free( mntentlist);
366                 close(fd);
367 #endif
368                 exit(TRUE);
369         }
370 #else
371         if (argc == 1) {
372                 FILE *mountTable = setmntent(mtab_file, "r");
373
374                 if (mountTable) {
375                         struct mntent *m;
376
377                         while ((m = getmntent(mountTable)) != 0) {
378                                 char *blockDevice = m->mnt_fsname;
379                                 if (strcmp(blockDevice, "/dev/root") == 0) {
380                                         find_real_root_device_name( blockDevice);
381                                 }
382                                 printf("%s on %s type %s (%s)\n", blockDevice, m->mnt_dir,
383                                            m->mnt_type, m->mnt_opts);
384                         }
385                         endmntent(mountTable);
386                 } else {
387                         perror(mtab_file);
388                 }
389                 exit(TRUE);
390         }
391 #endif
392
393         /* Parse options */
394         i = --argc;
395         argv++;
396         while (i > 0 && **argv) {
397                 if (**argv == '-') {
398                         char *opt = *argv;
399
400                         while (i > 0 && *++opt)
401                                 switch (*opt) {
402                                 case 'o':
403                                         if (--i == 0) {
404                                                 goto goodbye;
405                                         }
406                                         parse_mount_options(*(++argv), &flags, string_flags);
407                                         break;
408                                 case 'r':
409                                         flags |= MS_RDONLY;
410                                         break;
411                                 case 't':
412                                         if (--i == 0) {
413                                                 goto goodbye;
414                                         }
415                                         filesystemType = *(++argv);
416                                         break;
417                                 case 'w':
418                                         flags &= ~MS_RDONLY;
419                                         break;
420                                 case 'a':
421                                         all = TRUE;
422                                         break;
423                                 case 'f':
424                                         fakeIt = TRUE;
425                                         break;
426 #ifdef BB_MTAB
427                                 case 'n':
428                                         useMtab = FALSE;
429                                         break;
430 #endif
431                                 case 'v':
432                                         break; /* ignore -v */
433                                 case 'h':
434                                 case '-':
435                                         goto goodbye;
436                                 }
437                 } else {
438                         if (device == NULL)
439                                 device = *argv;
440                         else if (directory == NULL)
441                                 directory = *argv;
442                         else {
443                                 goto goodbye;
444                         }
445                 }
446                 i--;
447                 argv++;
448         }
449
450         if (all == TRUE) {
451                 struct mntent *m;
452                 FILE *f = setmntent("/etc/fstab", "r");
453
454                 if (f == NULL)
455                         fatalError( "\nCannot read /etc/fstab: %s\n", strerror (errno));
456
457                 while ((m = getmntent(f)) != NULL) {
458                         // If the filesystem isn't noauto, 
459                         // and isn't swap or nfs, then mount it
460                         if ((!strstr(m->mnt_opts, "noauto")) &&
461                                 (!strstr(m->mnt_type, "swap")) &&
462                                 (!strstr(m->mnt_type, "nfs"))) {
463                                 flags = 0;
464                                 *string_flags = '\0';
465                                 parse_mount_options(m->mnt_opts, &flags, string_flags);
466                                 /* If the directory is /, try to remount
467                                  * with the options specified in fstab */
468                                 if (m->mnt_dir[0] == '/' && m->mnt_dir[1] == '\0') {
469                                         flags |= MS_REMOUNT;
470                                 }
471                                 if (mount_one(m->mnt_fsname, m->mnt_dir, m->mnt_type,
472                                                   flags, string_flags, useMtab, fakeIt,
473                                                   extra_opts, FALSE)) 
474                                 {
475                                         /* Try again, but this time try a remount */
476                                         mount_one(m->mnt_fsname, m->mnt_dir, m->mnt_type,
477                                                           flags|MS_REMOUNT, string_flags, useMtab, fakeIt,
478                                                           extra_opts, TRUE);
479                                 }
480                         }
481                 }
482                 endmntent(f);
483         } else {
484                 if (device && directory) {
485 #ifdef BB_NFSMOUNT
486                         if (strcmp(filesystemType, "nfs") == 0) {
487                                 if (nfsmount
488                                         (device, directory, &flags, &extra_opts, &string_flags,
489                                          1) != 0)
490                                         exit(FALSE);
491                         }
492 #endif
493                         exit(mount_one(device, directory, filesystemType,
494                                                    flags, string_flags, useMtab, fakeIt,
495                                                    extra_opts, TRUE));
496                 } else {
497                         goto goodbye;
498                 }
499         }
500         exit(TRUE);
501
502   goodbye:
503         usage(mount_usage);
504 }