Stop using TRUE and FALSE for exit status.
[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
59 #define MS_MGC_VAL              0xc0ed0000 /* Magic number indicatng "new" flags */
60 #define MS_RDONLY        1      /* Mount read-only */
61 #define MS_NOSUID        2      /* Ignore suid and sgid bits */
62 #define MS_NODEV         4      /* Disallow access to device special files */
63 #define MS_NOEXEC        8      /* Disallow program execution */
64 #define MS_SYNCHRONOUS  16      /* Writes are synced at once */
65 #define MS_REMOUNT      32      /* Alter flags of a mounted FS */
66 #define MS_MANDLOCK     64      /* Allow mandatory locks on an FS */
67 #define S_QUOTA         128     /* Quota initialized for file/directory/symlink */
68 #define S_APPEND        256     /* Append-only file */
69 #define S_IMMUTABLE     512     /* Immutable file */
70 #define MS_NOATIME      1024    /* Do not update access times. */
71 #define 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                                 errorMsg("Could not find a spare loop device\n");
136                                 return (FALSE);
137                         }
138                         if (set_loop(specialfile, lofile, 0, &loro)) {
139                                 errorMsg("Could not setup loop device\n");
140                                 return (FALSE);
141                         }
142                         if (!(flags & MS_RDONLY) && loro) {     /* loop is ro, but wanted rw */
143                                 errorMsg("WARNING: loop device is read-only\n");
144                                 flags &= ~MS_RDONLY;
145                         }
146                 }
147 #endif
148                 status = mount(specialfile, dir, filesystemtype, flags, string_flags);
149                 if (errno == EROFS) {
150                         errorMsg("%s is write-protected, mounting read-only\n", specialfile);
151                         status = mount(specialfile, dir, filesystemtype, flags |= MS_RDONLY, string_flags);
152                 }
153         }
154
155
156         /* If the mount was sucessful, do anything needed, then return TRUE */
157         if (status == 0 || fakeIt==TRUE) {
158
159 #if defined BB_MTAB
160                 if (useMtab == TRUE) {
161                         erase_mtab(specialfile);        // Clean any stale entries
162                         write_mtab(specialfile, dir, filesystemtype, flags, mtab_opts);
163                 }
164 #endif
165                 return (TRUE);
166         }
167
168         /* Bummer.  mount failed.  Clean up */
169 #if defined BB_FEATURE_MOUNT_LOOP
170         if (lofile != NULL) {
171                 del_loop(specialfile);
172         }
173 #endif
174
175         if (errno == EPERM) {
176                 fatalError("permission denied. Are you root?\n");
177         }
178
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, int *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 *) xcalloc ( 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) {
311                 if (whineOnErrors == TRUE) {
312                         errorMsg("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         int 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         int rc = EXIT_FAILURE;
334         int fstabmount = FALSE; 
335
336 #if defined BB_FEATURE_USE_DEVPS_PATCH
337         if (argc == 1) {
338                 int fd, i, numfilesystems;
339                 char device[] = "/dev/mtab";
340                 struct k_mntent *mntentlist;
341
342                 /* open device */ 
343                 fd = open(device, O_RDONLY);
344                 if (fd < 0)
345                         fatalError("open failed for `%s': %s\n", device, strerror (errno));
346
347                 /* How many mounted filesystems?  We need to know to 
348                  * allocate enough space for later... */
349                 numfilesystems = ioctl (fd, DEVMTAB_COUNT_MOUNTS);
350                 if (numfilesystems<0)
351                         fatalError( "\nDEVMTAB_COUNT_MOUNTS: %s\n", strerror (errno));
352                 mntentlist = (struct k_mntent *) xcalloc ( numfilesystems, sizeof(struct k_mntent));
353                 
354                 /* Grab the list of mounted filesystems */
355                 if (ioctl (fd, DEVMTAB_GET_MOUNTS, mntentlist)<0)
356                         fatalError( "\nDEVMTAB_GET_MOUNTS: %s\n", strerror (errno));
357
358                 for( i = 0 ; i < numfilesystems ; i++) {
359                         fprintf( stdout, "%s %s %s %s %d %d\n", mntentlist[i].mnt_fsname,
360                                         mntentlist[i].mnt_dir, mntentlist[i].mnt_type, 
361                                         mntentlist[i].mnt_opts, mntentlist[i].mnt_freq, 
362                                         mntentlist[i].mnt_passno);
363                 }
364 #ifdef BB_FEATURE_CLEAN_UP
365                 /* Don't bother to close files or free memory.  Exit 
366                  * does that automagically, so we can save a few bytes */
367                 free( mntentlist);
368                 close(fd);
369 #endif
370                 return EXIT_SUCCESS;
371         }
372 #else
373         if (argc == 1) {
374                 FILE *mountTable = setmntent(mtab_file, "r");
375
376                 if (mountTable) {
377                         struct mntent *m;
378
379                         while ((m = getmntent(mountTable)) != 0) {
380                                 char *blockDevice = m->mnt_fsname;
381                                 if (strcmp(blockDevice, "/dev/root") == 0) {
382                                         find_real_root_device_name( blockDevice);
383                                 }
384                                 printf("%s on %s type %s (%s)\n", blockDevice, m->mnt_dir,
385                                            m->mnt_type, m->mnt_opts);
386                         }
387                         endmntent(mountTable);
388                 } else {
389                         perror(mtab_file);
390                 }
391                 return EXIT_SUCCESS;
392         }
393 #endif
394
395         /* Parse options */
396         i = --argc;
397         argv++;
398         while (i > 0 && **argv) {
399                 if (**argv == '-') {
400                         char *opt = *argv;
401
402                         while (i > 0 && *++opt)
403                                 switch (*opt) {
404                                 case 'o':
405                                         if (--i == 0) {
406                                                 goto goodbye;
407                                         }
408                                         parse_mount_options(*(++argv), &flags, string_flags);
409                                         break;
410                                 case 'r':
411                                         flags |= MS_RDONLY;
412                                         break;
413                                 case 't':
414                                         if (--i == 0) {
415                                                 goto goodbye;
416                                         }
417                                         filesystemType = *(++argv);
418                                         break;
419                                 case 'w':
420                                         flags &= ~MS_RDONLY;
421                                         break;
422                                 case 'a':
423                                         all = TRUE;
424                                         break;
425                                 case 'f':
426                                         fakeIt = TRUE;
427                                         break;
428 #ifdef BB_MTAB
429                                 case 'n':
430                                         useMtab = FALSE;
431                                         break;
432 #endif
433                                 case 'v':
434                                         break; /* ignore -v */
435                                 case 'h':
436                                 case '-':
437                                         goto goodbye;
438                                 }
439                 } else {
440                         if (device == NULL)
441                                 device = *argv;
442                         else if (directory == NULL)
443                                 directory = *argv;
444                         else {
445                                 goto goodbye;
446                         }
447                 }
448                 i--;
449                 argv++;
450         }
451
452         if (all == TRUE || directory == NULL) {
453                 struct mntent *m;
454                 FILE *f = setmntent("/etc/fstab", "r");
455                 fstabmount = TRUE;
456
457                 if (f == NULL)
458                         fatalError( "\nCannot read /etc/fstab: %s\n", strerror (errno));
459
460                 while ((m = getmntent(f)) != NULL) {
461                         if (all == FALSE && directory == NULL && (
462                                 (strcmp(device, m->mnt_fsname) != 0) &&
463                                 (strcmp(device, m->mnt_dir) != 0) ) ) {
464                                 continue;
465                         }
466                         
467                         if (all == TRUE && (                            // If we're mounting 'all'
468                                 (strstr(m->mnt_opts, "noauto")) ||      // and the file system isn't noauto,
469                                 (strstr(m->mnt_type, "swap")) ||        // and isn't swap or nfs, then mount it
470                                 (strstr(m->mnt_type, "nfs")) ) ) {
471                                 continue;
472                         }
473                         
474                         if (all == TRUE || flags == 0) {        // Allow single mount to override fstab flags
475                                 flags = 0;
476                                 *string_flags = '\0';
477                                 parse_mount_options(m->mnt_opts, &flags, string_flags);
478                         }
479                         
480                         device = strdup(m->mnt_fsname);
481                         directory = strdup(m->mnt_dir);
482                         filesystemType = strdup(m->mnt_type);
483 singlemount:                    
484 #ifdef BB_NFSMOUNT
485                         if (strchr(device, ':') != NULL)
486                                 filesystemType = "nfs";
487                         if (strcmp(filesystemType, "nfs") == 0) {
488                                 rc = nfsmount (device, directory, &flags,
489                                         &extra_opts, &string_flags, 1);
490                                 if ( rc != 0) {
491                                         fatalError("nfsmount failed: %s\n", strerror(errno));   
492                                         rc = EXIT_FAILURE;
493                                 }
494                         }
495 #endif
496                         rc = mount_one(device, directory, filesystemType, flags,
497                                 string_flags, useMtab, fakeIt, extra_opts, TRUE);
498                                 
499                         if (all == FALSE)
500                                 break;
501
502                         rc = EXIT_SUCCESS;      // Always return 0 for 'all'
503                 }
504                 if (fstabmount == TRUE)
505                         endmntent(f);
506                         
507                 if (all == FALSE && fstabmount == TRUE && directory == NULL)
508                         fprintf(stderr, "Can't find %s in /etc/fstab\n", device);
509         
510                 exit(rc);
511         }
512         
513         goto singlemount;
514         
515 goodbye:
516         usage(mount_usage);
517 }