90c1cc723beec79ceae2f6565e32bed99b0cc808
[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 <stdlib.h>
47 #include <unistd.h>
48 #include <errno.h>
49 #include <string.h>
50 #include <stdio.h>
51 #include <mntent.h>
52 #include <ctype.h>
53 #if defined BB_FEATURE_USE_DEVPS_PATCH
54 #include <linux/devmtab.h> /* For Erik's nifty devmtab device driver */
55 #endif
56 #include "busybox.h"
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 extern int sysfs( int option, unsigned int fs_index, char * buf);
88
89 extern const char mtab_file[];  /* Defined in utility.c */
90
91 struct mount_options {
92         const char *name;
93         unsigned long and;
94         unsigned long or;
95 };
96
97 static const struct mount_options mount_options[] = {
98         {"async", ~MS_SYNCHRONOUS, 0},
99         {"atime", ~0, ~MS_NOATIME},
100         {"defaults", ~0, 0},
101         {"dev", ~MS_NODEV, 0},
102         {"diratime", ~0, ~MS_NODIRATIME},
103         {"exec", ~MS_NOEXEC, 0},
104         {"noatime", ~0, MS_NOATIME},
105         {"nodev", ~0, MS_NODEV},
106         {"nodiratime", ~0, MS_NODIRATIME},
107         {"noexec", ~0, MS_NOEXEC},
108         {"nosuid", ~0, MS_NOSUID},
109         {"remount", ~0, MS_REMOUNT},
110         {"ro", ~0, MS_RDONLY},
111         {"rw", ~MS_RDONLY, 0},
112         {"suid", ~MS_NOSUID, 0},
113         {"sync", ~0, MS_SYNCHRONOUS},
114         {0, 0, 0}
115 };
116
117 static int
118 do_mount(char *specialfile, char *dir, char *filesystemtype,
119                  long flags, void *string_flags, int useMtab, int fakeIt,
120                  char *mtab_opts)
121 {
122         int status = 0;
123 #if defined BB_FEATURE_MOUNT_LOOP
124         char *lofile = NULL;
125 #endif
126
127         if (fakeIt == FALSE)
128         {
129 #if defined BB_FEATURE_MOUNT_LOOP
130                 if (use_loop==TRUE) {
131                         int loro = flags & MS_RDONLY;
132                         
133                         lofile = specialfile;
134
135                         specialfile = find_unused_loop_device();
136                         if (specialfile == NULL) {
137                                 error_msg_and_die("Could not find a spare loop device");
138                         }
139                         if (set_loop(specialfile, lofile, 0, &loro)) {
140                                 error_msg_and_die("Could not setup loop device");
141                         }
142                         if (!(flags & MS_RDONLY) && loro) {     /* loop is ro, but wanted rw */
143                                 error_msg("WARNING: loop device is read-only");
144                                 flags &= ~MS_RDONLY;
145                         }
146                 }
147 #endif
148                 status = mount(specialfile, dir, filesystemtype, flags, string_flags);
149                 if (errno == EROFS) {
150                         error_msg("%s is write-protected, mounting read-only", 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_FEATURE_MTAB_SUPPORT
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                 error_msg_and_die("permission denied. Are you root?");
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 extern 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 (strcmp(filesystemType, "auto") == 0) {
238                 static const char *noauto_array[] = { "tmpfs", "shm", "proc", "ramfs", "devpts", "devfs", 0 };
239                 const char **noauto_fstype;
240                 const int num_of_filesystems = sysfs(3, 0, 0);
241                 char buf[255];
242                 int i=0;
243
244                 filesystemType=buf;
245
246                 while(i < num_of_filesystems) {
247                         sysfs(2, i++, filesystemType);
248                         for (noauto_fstype = noauto_array; *noauto_fstype; noauto_fstype++) {
249                                 if (!strcmp(filesystemType, *noauto_fstype)) {
250                                         break;
251                                 }
252                         }
253                         if (!*noauto_fstype) {
254                                 status = do_mount(blockDevice, directory, filesystemType,
255                                         flags | MS_MGC_VAL, string_flags,
256                                         useMtab, fakeIt, mtab_opts);
257                                 if (status == TRUE)
258                                         break;
259                         }
260                 }
261         } else {
262                 status = do_mount(blockDevice, directory, filesystemType,
263                                 flags | MS_MGC_VAL, string_flags, useMtab,
264                                 fakeIt, mtab_opts);
265         }
266
267         if (status == FALSE) {
268                 if (whineOnErrors == TRUE) {
269                         perror_msg("Mounting %s on %s failed", blockDevice, directory);
270                 }
271                 return (FALSE);
272         }
273         return (TRUE);
274 }
275
276 void show_mounts()
277 {
278 #if defined BB_FEATURE_USE_DEVPS_PATCH
279         int fd, i, numfilesystems;
280         char device[] = "/dev/mtab";
281         struct k_mntent *mntentlist;
282
283         /* open device */ 
284         fd = open(device, O_RDONLY);
285         if (fd < 0)
286                 perror_msg_and_die("open failed for `%s'", device);
287
288         /* How many mounted filesystems?  We need to know to 
289          * allocate enough space for later... */
290         numfilesystems = ioctl (fd, DEVMTAB_COUNT_MOUNTS);
291         if (numfilesystems<0)
292                 perror_msg_and_die( "\nDEVMTAB_COUNT_MOUNTS");
293         mntentlist = (struct k_mntent *) xcalloc ( numfilesystems, sizeof(struct k_mntent));
294                 
295         /* Grab the list of mounted filesystems */
296         if (ioctl (fd, DEVMTAB_GET_MOUNTS, mntentlist)<0)
297                 perror_msg_and_die( "\nDEVMTAB_GET_MOUNTS");
298
299         for( i = 0 ; i < numfilesystems ; i++) {
300                 printf( "%s %s %s %s %d %d\n", mntentlist[i].mnt_fsname,
301                                 mntentlist[i].mnt_dir, mntentlist[i].mnt_type, 
302                                 mntentlist[i].mnt_opts, mntentlist[i].mnt_freq, 
303                                 mntentlist[i].mnt_passno);
304         }
305 #ifdef BB_FEATURE_CLEAN_UP
306         /* Don't bother to close files or free memory.  Exit 
307          * does that automagically, so we can save a few bytes */
308         free( mntentlist);
309         close(fd);
310 #endif
311         exit(EXIT_SUCCESS);
312 #else
313         FILE *mountTable = setmntent(mtab_file, "r");
314
315         if (mountTable) {
316                 struct mntent *m;
317
318                 while ((m = getmntent(mountTable)) != 0) {
319                         char *blockDevice = m->mnt_fsname;
320                         if (strcmp(blockDevice, "/dev/root") == 0) {
321                                 find_real_root_device_name( blockDevice);
322                         }
323                         printf("%s on %s type %s (%s)\n", blockDevice, m->mnt_dir,
324                                    m->mnt_type, m->mnt_opts);
325                 }
326                 endmntent(mountTable);
327         } else {
328                 perror_msg_and_die("%s", mtab_file);
329         }
330         exit(EXIT_SUCCESS);
331 #endif
332 }
333
334 extern int mount_main(int argc, char **argv)
335 {
336         char string_flags_buf[1024] = "";
337         char *string_flags = string_flags_buf;
338         char *extra_opts = string_flags_buf;
339         int flags = 0;
340         char *filesystemType = "auto";
341         char *device = NULL;
342         char *directory = NULL;
343         int all = FALSE;
344         int fakeIt = FALSE;
345         int useMtab = TRUE;
346         int rc = EXIT_FAILURE;
347         int fstabmount = FALSE; 
348         int opt;
349
350         /* Parse options */
351         while ((opt = getopt(argc, argv, "o:rt:wafnv")) > 0) {
352                 switch (opt) {
353                 case 'o':
354                         parse_mount_options(optarg, &flags, string_flags);
355                         break;
356                 case 'r':
357                         flags |= MS_RDONLY;
358                         break;
359                 case 't':
360                         filesystemType = optarg;
361                         break;
362                 case 'w':
363                         flags &= ~MS_RDONLY;
364                         break;
365                 case 'a':
366                         all = TRUE;
367                         break;
368                 case 'f':
369                         fakeIt = TRUE;
370                         break;
371 #ifdef BB_FEATURE_MTAB_SUPPORT
372                 case 'n':
373                         useMtab = FALSE;
374                         break;
375 #endif
376                 case 'v':
377                         break; /* ignore -v */
378                 }
379         }
380
381         if (argv[optind] != NULL) {
382                 device = argv[optind];
383                 directory = argv[optind + 1];
384         }
385
386         if (device == NULL && !all)
387                 show_mounts();
388
389         if (all == TRUE || directory == NULL) {
390                 struct mntent *m;
391                 FILE *f = setmntent("/etc/fstab", "r");
392                 fstabmount = TRUE;
393
394                 if (f == NULL)
395                         perror_msg_and_die( "\nCannot read /etc/fstab");
396
397                 while ((m = getmntent(f)) != NULL) {
398                         if (all == FALSE && directory == NULL && (
399                                 (strcmp(device, m->mnt_fsname) != 0) &&
400                                 (strcmp(device, m->mnt_dir) != 0) ) ) {
401                                 continue;
402                         }
403                         
404                         if (all == TRUE && (                            // If we're mounting 'all'
405                                 (strstr(m->mnt_opts, "noauto")) ||      // and the file system isn't noauto,
406                                 (strstr(m->mnt_type, "swap")) ||        // and isn't swap or nfs, then mount it
407                                 (strstr(m->mnt_type, "nfs")) ) ) {
408                                 continue;
409                         }
410                         
411                         if (all == TRUE || flags == 0) {        // Allow single mount to override fstab flags
412                                 flags = 0;
413                                 *string_flags = '\0';
414                                 parse_mount_options(m->mnt_opts, &flags, string_flags);
415                         }
416                         
417                         device = strdup(m->mnt_fsname);
418                         directory = strdup(m->mnt_dir);
419                         filesystemType = strdup(m->mnt_type);
420 singlemount:                    
421                         string_flags = strdup(string_flags);
422                         rc = EXIT_SUCCESS;
423 #ifdef BB_NFSMOUNT
424                         if (strchr(device, ':') != NULL)
425                                 filesystemType = "nfs";
426                         if (strcmp(filesystemType, "nfs") == 0) {
427                                 if (nfsmount (device, directory, &flags, &extra_opts,
428                                                         &string_flags, 1)) {
429                                         perror_msg("nfsmount failed");
430                                         rc = EXIT_FAILURE;
431                                 }
432                         }
433 #endif
434                         if (!mount_one(device, directory, filesystemType, flags,
435                                         string_flags, useMtab, fakeIt, extra_opts, TRUE))
436                                 rc = EXIT_FAILURE;
437                                 
438                         if (all == FALSE)
439                                 break;
440                 }
441                 if (fstabmount == TRUE)
442                         endmntent(f);
443                         
444                 if (all == FALSE && fstabmount == TRUE && directory == NULL)
445                         fprintf(stderr, "Can't find %s in /etc/fstab\n", device);
446         
447                 return rc;
448         }
449         
450         goto singlemount;
451 }