f78786ebc012e73a288a110350f42fdd6d047939
[oweals/busybox.git] / 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  * 2000-04-30   Dave Cinege <dcinege@psychosis.com>
39  *              Rewrote fstab while loop and lower mount section. Can now do
40  *              single mounts from fstab. Can override fstab options for single
41  *              mount. Common mount_one call for single mounts and 'all'. Fixed
42  *              mtab updating and stale entries. Removed 'remount' default. 
43  *      
44  */
45
46 #include "busybox.h"
47 #include <stdlib.h>
48 #include <unistd.h>
49 #include <errno.h>
50 #include <string.h>
51 #include <stdio.h>
52 #include <mntent.h>
53 #include <ctype.h>
54 #if defined BB_FEATURE_USE_DEVPS_PATCH
55 #include <linux/devmtab.h> /* For Erik's nifty devmtab device driver */
56 #endif
57
58 enum {
59         MS_MGC_VAL = 0xc0ed0000, /* Magic number indicatng "new" flags */
60         MS_RDONLY = 1,      /* Mount read-only */
61         MS_NOSUID = 2,      /* Ignore suid and sgid bits */
62         MS_NODEV = 4,      /* Disallow access to device special files */
63         MS_NOEXEC = 8,      /* Disallow program execution */
64         MS_SYNCHRONOUS = 16,      /* Writes are synced at once */
65         MS_REMOUNT = 32,      /* Alter flags of a mounted FS */
66         MS_MANDLOCK = 64,      /* Allow mandatory locks on an FS */
67         S_QUOTA = 128,     /* Quota initialized for file/directory/symlink */
68         S_APPEND = 256,     /* Append-only file */
69         S_IMMUTABLE = 512,     /* Immutable file */
70         MS_NOATIME = 1024,    /* Do not update access times. */
71         MS_NODIRATIME = 2048,    /* Do not update directory access times */
72 };
73
74
75 #if defined BB_FEATURE_MOUNT_LOOP
76 #include <fcntl.h>
77 #include <sys/ioctl.h>
78 static int use_loop = FALSE;
79 #endif
80
81 extern int mount (__const char *__special_file, __const char *__dir,
82                         __const char *__fstype, unsigned long int __rwflag,
83                         __const void *__data);
84 extern int umount (__const char *__special_file);
85 extern int umount2 (__const char *__special_file, int __flags);
86
87
88 extern const char mtab_file[];  /* Defined in utility.c */
89
90 struct mount_options {
91         const char *name;
92         unsigned long and;
93         unsigned long or;
94 };
95
96 static const struct mount_options mount_options[] = {
97         {"async", ~MS_SYNCHRONOUS, 0},
98         {"atime", ~0, ~MS_NOATIME},
99         {"defaults", ~0, 0},
100         {"dev", ~MS_NODEV, 0},
101         {"diratime", ~0, ~MS_NODIRATIME},
102         {"exec", ~MS_NOEXEC, 0},
103         {"noatime", ~0, MS_NOATIME},
104         {"nodev", ~0, MS_NODEV},
105         {"nodiratime", ~0, MS_NODIRATIME},
106         {"noexec", ~0, MS_NOEXEC},
107         {"nosuid", ~0, MS_NOSUID},
108         {"remount", ~0, MS_REMOUNT},
109         {"ro", ~0, MS_RDONLY},
110         {"rw", ~MS_RDONLY, 0},
111         {"suid", ~MS_NOSUID, 0},
112         {"sync", ~0, MS_SYNCHRONOUS},
113         {0, 0, 0}
114 };
115
116 static int
117 do_mount(char *specialfile, char *dir, char *filesystemtype,
118                  long flags, void *string_flags, int useMtab, int fakeIt,
119                  char *mtab_opts)
120 {
121         int status = 0;
122 #if defined BB_FEATURE_MOUNT_LOOP
123         char *lofile = NULL;
124 #endif
125
126         if (fakeIt == FALSE)
127         {
128 #if defined BB_FEATURE_MOUNT_LOOP
129                 if (use_loop==TRUE) {
130                         int loro = flags & MS_RDONLY;
131                         char *lofile = specialfile;
132
133                         specialfile = find_unused_loop_device();
134                         if (specialfile == NULL) {
135                                 error_msg_and_die("Could not find a spare loop device\n");
136                         }
137                         if (set_loop(specialfile, lofile, 0, &loro)) {
138                                 error_msg_and_die("Could not setup loop device\n");
139                         }
140                         if (!(flags & MS_RDONLY) && loro) {     /* loop is ro, but wanted rw */
141                                 error_msg("WARNING: loop device is read-only\n");
142                                 flags &= ~MS_RDONLY;
143                         }
144                 }
145 #endif
146                 status = mount(specialfile, dir, filesystemtype, flags, string_flags);
147                 if (errno == EROFS) {
148                         error_msg("%s is write-protected, mounting read-only\n", specialfile);
149                         status = mount(specialfile, dir, filesystemtype, flags |= MS_RDONLY, string_flags);
150                 }
151         }
152
153
154         /* If the mount was sucessful, do anything needed, then return TRUE */
155         if (status == 0 || fakeIt==TRUE) {
156
157 #if defined BB_MTAB
158                 if (useMtab == TRUE) {
159                         erase_mtab(specialfile);        // Clean any stale entries
160                         write_mtab(specialfile, dir, filesystemtype, flags, mtab_opts);
161                 }
162 #endif
163                 return (TRUE);
164         }
165
166         /* Bummer.  mount failed.  Clean up */
167 #if defined BB_FEATURE_MOUNT_LOOP
168         if (lofile != NULL) {
169                 del_loop(specialfile);
170         }
171 #endif
172
173         if (errno == EPERM) {
174                 error_msg_and_die("permission denied. Are you root?\n");
175         }
176
177         return (FALSE);
178 }
179
180
181
182 /* Seperate standard mount options from the nonstandard string options */
183 static void
184 parse_mount_options(char *options, int *flags, char *strflags)
185 {
186         while (options) {
187                 int gotone = FALSE;
188                 char *comma = strchr(options, ',');
189                 const struct mount_options *f = mount_options;
190
191                 if (comma)
192                         *comma = '\0';
193
194                 while (f->name != 0) {
195                         if (strcasecmp(f->name, options) == 0) {
196
197                                 *flags &= f->and;
198                                 *flags |= f->or;
199                                 gotone = TRUE;
200                                 break;
201                         }
202                         f++;
203                 }
204 #if defined BB_FEATURE_MOUNT_LOOP
205                 if (gotone == FALSE && !strcasecmp("loop", options)) {  /* loop device support */
206                         use_loop = TRUE;
207                         gotone = TRUE;
208                 }
209 #endif
210                 if (*strflags && strflags != '\0' && gotone == FALSE) {
211                         char *temp = strflags;
212
213                         temp += strlen(strflags);
214                         *temp++ = ',';
215                         *temp++ = '\0';
216                 }
217                 if (gotone == FALSE)
218                         strcat(strflags, options);
219                 if (comma) {
220                         *comma = ',';
221                         options = ++comma;
222                 } else {
223                         break;
224                 }
225         }
226 }
227
228 int
229 mount_one(char *blockDevice, char *directory, char *filesystemType,
230                   unsigned long flags, char *string_flags, int useMtab, int fakeIt,
231                   char *mtab_opts, int whineOnErrors)
232 {
233         int status = 0;
234
235 #if defined BB_FEATURE_USE_PROCFS
236         char buf[255];
237         if (strcmp(filesystemType, "auto") == 0) {
238                 FILE *f = fopen("/proc/filesystems", "r");
239
240                 if (f == NULL)
241                         return (FALSE);
242
243                 while (fgets(buf, sizeof(buf), f) != NULL) {
244                         filesystemType = buf;
245                         if (*filesystemType == '\t') {  // Not a nodev filesystem
246
247                                 // Add NULL termination to each line
248                                 while (*filesystemType && *filesystemType != '\n')
249                                         filesystemType++;
250                                 *filesystemType = '\0';
251
252                                 filesystemType = buf;
253                                 filesystemType++;       // hop past tab
254
255                                 status = do_mount(blockDevice, directory, filesystemType,
256                                                                   flags | MS_MGC_VAL, string_flags,
257                                                                   useMtab, fakeIt, mtab_opts);
258                                 if (status == TRUE)
259                                         break;
260                         }
261                 }
262                 fclose(f);
263         } else
264 #endif
265 #if defined BB_FEATURE_USE_DEVPS_PATCH
266         if (strcmp(filesystemType, "auto") == 0) {
267                 int fd, i, numfilesystems;
268                 char device[] = "/dev/mtab";
269                 struct k_fstype *fslist;
270
271                 /* open device */ 
272                 fd = open(device, O_RDONLY);
273                 if (fd < 0)
274                         perror_msg_and_die("open failed for `%s'", device);
275
276                 /* How many filesystems?  We need to know to allocate enough space */
277                 numfilesystems = ioctl (fd, DEVMTAB_COUNT_FILESYSTEMS);
278                 if (numfilesystems<0)
279                         perror_msg_and_die("\nDEVMTAB_COUNT_FILESYSTEMS");
280                 fslist = (struct k_fstype *) xcalloc ( numfilesystems, sizeof(struct k_fstype));
281
282                 /* Grab the list of available filesystems */
283                 status = ioctl (fd, DEVMTAB_GET_FILESYSTEMS, fslist);
284                 if (status<0)
285                         perror_msg_and_die("\nDEVMTAB_GET_FILESYSTEMS");
286
287                 /* Walk the list trying to mount filesystems 
288                  * that do not claim to be nodev filesystems */
289                 for( i = 0 ; i < numfilesystems ; i++) {
290                         if (fslist[i].mnt_nodev)
291                                 continue;
292                         status = do_mount(blockDevice, directory, fslist[i].mnt_type,
293                                                           flags | MS_MGC_VAL, string_flags,
294                                                           useMtab, fakeIt, mtab_opts);
295                         if (status == TRUE)
296                                 break;
297                 }
298                 free( fslist);
299                 close(fd);
300         } else
301 #endif
302         {
303                 status = do_mount(blockDevice, directory, filesystemType,
304                                                   flags | MS_MGC_VAL, string_flags, useMtab,
305                                                   fakeIt, mtab_opts);
306         }
307
308         if (status == FALSE) {
309                 if (whineOnErrors == TRUE) {
310                         perror_msg("Mounting %s on %s failed", blockDevice, directory);
311                 }
312                 return (FALSE);
313         }
314         return (TRUE);
315 }
316
317 extern int mount_main(int argc, char **argv)
318 {
319         char string_flags_buf[1024] = "";
320         char *string_flags = string_flags_buf;
321         char *extra_opts = string_flags_buf;
322         int flags = 0;
323         char *filesystemType = "auto";
324         char *device = NULL;
325         char *directory = NULL;
326         int all = FALSE;
327         int fakeIt = FALSE;
328         int useMtab = TRUE;
329         int i;
330         int rc = EXIT_FAILURE;
331         int fstabmount = FALSE; 
332
333 #if defined BB_FEATURE_USE_DEVPS_PATCH
334         if (argc == 1) {
335                 int fd, i, numfilesystems;
336                 char device[] = "/dev/mtab";
337                 struct k_mntent *mntentlist;
338
339                 /* open device */ 
340                 fd = open(device, O_RDONLY);
341                 if (fd < 0)
342                         perror_msg_and_die("open failed for `%s'", device);
343
344                 /* How many mounted filesystems?  We need to know to 
345                  * allocate enough space for later... */
346                 numfilesystems = ioctl (fd, DEVMTAB_COUNT_MOUNTS);
347                 if (numfilesystems<0)
348                         perror_msg_and_die( "\nDEVMTAB_COUNT_MOUNTS");
349                 mntentlist = (struct k_mntent *) xcalloc ( numfilesystems, sizeof(struct k_mntent));
350                 
351                 /* Grab the list of mounted filesystems */
352                 if (ioctl (fd, DEVMTAB_GET_MOUNTS, mntentlist)<0)
353                         perror_msg_and_die( "\nDEVMTAB_GET_MOUNTS");
354
355                 for( i = 0 ; i < numfilesystems ; i++) {
356                         printf( "%s %s %s %s %d %d\n", mntentlist[i].mnt_fsname,
357                                         mntentlist[i].mnt_dir, mntentlist[i].mnt_type, 
358                                         mntentlist[i].mnt_opts, mntentlist[i].mnt_freq, 
359                                         mntentlist[i].mnt_passno);
360                 }
361 #ifdef BB_FEATURE_CLEAN_UP
362                 /* Don't bother to close files or free memory.  Exit 
363                  * does that automagically, so we can save a few bytes */
364                 free( mntentlist);
365                 close(fd);
366 #endif
367                 return EXIT_SUCCESS;
368         }
369 #else
370         if (argc == 1) {
371                 FILE *mountTable = setmntent(mtab_file, "r");
372
373                 if (mountTable) {
374                         struct mntent *m;
375
376                         while ((m = getmntent(mountTable)) != 0) {
377                                 char *blockDevice = m->mnt_fsname;
378                                 if (strcmp(blockDevice, "/dev/root") == 0) {
379                                         find_real_root_device_name( blockDevice);
380                                 }
381                                 printf("%s on %s type %s (%s)\n", blockDevice, m->mnt_dir,
382                                            m->mnt_type, m->mnt_opts);
383                         }
384                         endmntent(mountTable);
385                 } else {
386                         perror_msg_and_die("%s", mtab_file);
387                 }
388                 return EXIT_SUCCESS;
389         }
390 #endif
391
392         /* Parse options */
393         i = --argc;
394         argv++;
395         while (i > 0 && **argv) {
396                 if (**argv == '-') {
397                         char *opt = *argv;
398
399                         while (i > 0 && *++opt)
400                                 switch (*opt) {
401                                 case 'o':
402                                         if (--i == 0) {
403                                                 goto goodbye;
404                                         }
405                                         parse_mount_options(*(++argv), &flags, string_flags);
406                                         break;
407                                 case 'r':
408                                         flags |= MS_RDONLY;
409                                         break;
410                                 case 't':
411                                         if (--i == 0) {
412                                                 goto goodbye;
413                                         }
414                                         filesystemType = *(++argv);
415                                         break;
416                                 case 'w':
417                                         flags &= ~MS_RDONLY;
418                                         break;
419                                 case 'a':
420                                         all = TRUE;
421                                         break;
422                                 case 'f':
423                                         fakeIt = TRUE;
424                                         break;
425 #ifdef BB_MTAB
426                                 case 'n':
427                                         useMtab = FALSE;
428                                         break;
429 #endif
430                                 case 'v':
431                                         break; /* ignore -v */
432                                 case 'h':
433                                 case '-':
434                                         goto goodbye;
435                                 }
436                 } else {
437                         if (device == NULL)
438                                 device = *argv;
439                         else if (directory == NULL)
440                                 directory = *argv;
441                         else {
442                                 goto goodbye;
443                         }
444                 }
445                 i--;
446                 argv++;
447         }
448
449         if (all == TRUE || directory == NULL) {
450                 struct mntent *m;
451                 FILE *f = setmntent("/etc/fstab", "r");
452                 fstabmount = TRUE;
453
454                 if (f == NULL)
455                         perror_msg_and_die( "\nCannot read /etc/fstab");
456
457                 while ((m = getmntent(f)) != NULL) {
458                         if (all == FALSE && directory == NULL && (
459                                 (strcmp(device, m->mnt_fsname) != 0) &&
460                                 (strcmp(device, m->mnt_dir) != 0) ) ) {
461                                 continue;
462                         }
463                         
464                         if (all == TRUE && (                            // If we're mounting 'all'
465                                 (strstr(m->mnt_opts, "noauto")) ||      // and the file system isn't noauto,
466                                 (strstr(m->mnt_type, "swap")) ||        // and isn't swap or nfs, then mount it
467                                 (strstr(m->mnt_type, "nfs")) ) ) {
468                                 continue;
469                         }
470                         
471                         if (all == TRUE || flags == 0) {        // Allow single mount to override fstab flags
472                                 flags = 0;
473                                 *string_flags = '\0';
474                                 parse_mount_options(m->mnt_opts, &flags, string_flags);
475                         }
476                         
477                         device = strdup(m->mnt_fsname);
478                         directory = strdup(m->mnt_dir);
479                         filesystemType = strdup(m->mnt_type);
480 singlemount:                    
481                         rc = EXIT_SUCCESS;
482 #ifdef BB_NFSMOUNT
483                         if (strchr(device, ':') != NULL)
484                                 filesystemType = "nfs";
485                         if (strcmp(filesystemType, "nfs") == 0) {
486                                 rc = nfsmount (device, directory, &flags,
487                                         &extra_opts, &string_flags, 1);
488                                 if ( rc != 0) {
489                                         perror_msg_and_die("nfsmount failed");  
490                                         rc = EXIT_FAILURE;
491                                 }
492                         }
493 #endif
494                         if (!mount_one(device, directory, filesystemType, flags,
495                                         string_flags, useMtab, fakeIt, extra_opts, TRUE))
496                                 rc = EXIT_FAILURE;
497                                 
498                         if (all == FALSE)
499                                 break;
500                 }
501                 if (fstabmount == TRUE)
502                         endmntent(f);
503                         
504                 if (all == FALSE && fstabmount == TRUE && directory == NULL)
505                         fprintf(stderr, "Can't find %s in /etc/fstab\n", device);
506         
507                 exit(rc);
508         }
509         
510         goto singlemount;
511         
512 goodbye:
513         usage(mount_usage);
514 }