9f7ac43c15135aafa4f6d99a83efcb3b1fedc20d
[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 #include <sys/syscall.h>
88 #include <linux/unistd.h>
89 static int sysfs( int option, unsigned int fs_index, char * buf);
90 _syscall3(int, sysfs, int, option, unsigned int, fs_index, char *, buf);
91
92
93 extern const char mtab_file[];  /* Defined in utility.c */
94
95 struct mount_options {
96         const char *name;
97         unsigned long and;
98         unsigned long or;
99 };
100
101 static const struct mount_options mount_options[] = {
102         {"async", ~MS_SYNCHRONOUS, 0},
103         {"atime", ~0, ~MS_NOATIME},
104         {"defaults", ~0, 0},
105         {"dev", ~MS_NODEV, 0},
106         {"diratime", ~0, ~MS_NODIRATIME},
107         {"exec", ~MS_NOEXEC, 0},
108         {"noatime", ~0, MS_NOATIME},
109         {"nodev", ~0, MS_NODEV},
110         {"nodiratime", ~0, MS_NODIRATIME},
111         {"noexec", ~0, MS_NOEXEC},
112         {"nosuid", ~0, MS_NOSUID},
113         {"remount", ~0, MS_REMOUNT},
114         {"ro", ~0, MS_RDONLY},
115         {"rw", ~MS_RDONLY, 0},
116         {"suid", ~MS_NOSUID, 0},
117         {"sync", ~0, MS_SYNCHRONOUS},
118         {0, 0, 0}
119 };
120
121 static int
122 do_mount(char *specialfile, char *dir, char *filesystemtype,
123                  long flags, void *string_flags, int useMtab, int fakeIt,
124                  char *mtab_opts)
125 {
126         int status = 0;
127 #if defined BB_FEATURE_MOUNT_LOOP
128         char *lofile = NULL;
129 #endif
130
131         if (fakeIt == FALSE)
132         {
133 #if defined BB_FEATURE_MOUNT_LOOP
134                 if (use_loop==TRUE) {
135                         int loro = flags & MS_RDONLY;
136                         
137                         lofile = specialfile;
138
139                         specialfile = find_unused_loop_device();
140                         if (specialfile == NULL) {
141                                 error_msg_and_die("Could not find a spare loop device");
142                         }
143                         if (set_loop(specialfile, lofile, 0, &loro)) {
144                                 error_msg_and_die("Could not setup loop device");
145                         }
146                         if (!(flags & MS_RDONLY) && loro) {     /* loop is ro, but wanted rw */
147                                 error_msg("WARNING: loop device is read-only");
148                                 flags &= ~MS_RDONLY;
149                         }
150                 }
151 #endif
152                 status = mount(specialfile, dir, filesystemtype, flags, string_flags);
153                 if (errno == EROFS) {
154                         error_msg("%s is write-protected, mounting read-only", specialfile);
155                         status = mount(specialfile, dir, filesystemtype, flags |= MS_RDONLY, string_flags);
156                 }
157         }
158
159
160         /* If the mount was sucessful, do anything needed, then return TRUE */
161         if (status == 0 || fakeIt==TRUE) {
162
163 #if defined BB_MTAB
164                 if (useMtab == TRUE) {
165                         erase_mtab(specialfile);        // Clean any stale entries
166                         write_mtab(specialfile, dir, filesystemtype, flags, mtab_opts);
167                 }
168 #endif
169                 return (TRUE);
170         }
171
172         /* Bummer.  mount failed.  Clean up */
173 #if defined BB_FEATURE_MOUNT_LOOP
174         if (lofile != NULL) {
175                 del_loop(specialfile);
176         }
177 #endif
178
179         if (errno == EPERM) {
180                 error_msg_and_die("permission denied. Are you root?");
181         }
182
183         return (FALSE);
184 }
185
186
187
188 /* Seperate standard mount options from the nonstandard string options */
189 static void
190 parse_mount_options(char *options, int *flags, char *strflags)
191 {
192         while (options) {
193                 int gotone = FALSE;
194                 char *comma = strchr(options, ',');
195                 const struct mount_options *f = mount_options;
196
197                 if (comma)
198                         *comma = '\0';
199
200                 while (f->name != 0) {
201                         if (strcasecmp(f->name, options) == 0) {
202
203                                 *flags &= f->and;
204                                 *flags |= f->or;
205                                 gotone = TRUE;
206                                 break;
207                         }
208                         f++;
209                 }
210 #if defined BB_FEATURE_MOUNT_LOOP
211                 if (gotone == FALSE && !strcasecmp("loop", options)) {  /* loop device support */
212                         use_loop = TRUE;
213                         gotone = TRUE;
214                 }
215 #endif
216                 if (*strflags && strflags != '\0' && gotone == FALSE) {
217                         char *temp = strflags;
218
219                         temp += strlen(strflags);
220                         *temp++ = ',';
221                         *temp++ = '\0';
222                 }
223                 if (gotone == FALSE)
224                         strcat(strflags, options);
225                 if (comma) {
226                         *comma = ',';
227                         options = ++comma;
228                 } else {
229                         break;
230                 }
231         }
232 }
233
234 extern int
235 mount_one(char *blockDevice, char *directory, char *filesystemType,
236                   unsigned long flags, char *string_flags, int useMtab, int fakeIt,
237                   char *mtab_opts, int whineOnErrors)
238 {
239         int status = 0;
240
241         if (strcmp(filesystemType, "auto") == 0) {
242                 static const char *noauto_array[] = { "tmpfs", "shm", "proc", "ramfs", "devpts", "devfs", 0 };
243                 const char **noauto_fstype;
244                 const int num_of_filesystems = sysfs(3, 0, 0);
245                 char buf[255];
246                 int i=0;
247
248                 filesystemType=buf;
249
250                 while(i < num_of_filesystems) {
251                         sysfs(2, i++, filesystemType);
252                         for (noauto_fstype = noauto_array; *noauto_fstype; noauto_fstype++) {
253                                 if (!strcmp(filesystemType, *noauto_fstype)) {
254                                         break;
255                                 }
256                         }
257                         if (!*noauto_fstype) {
258                                 status = do_mount(blockDevice, directory, filesystemType,
259                                         flags | MS_MGC_VAL, string_flags,
260                                         useMtab, fakeIt, mtab_opts);
261                                 if (status == TRUE)
262                                         break;
263                         }
264                 }
265         } else {
266                 status = do_mount(blockDevice, directory, filesystemType,
267                                 flags | MS_MGC_VAL, string_flags, useMtab,
268                                 fakeIt, mtab_opts);
269         }
270
271         if (status == FALSE) {
272                 if (whineOnErrors == TRUE) {
273                         perror_msg("Mounting %s on %s failed", blockDevice, directory);
274                 }
275                 return (FALSE);
276         }
277         return (TRUE);
278 }
279
280 extern int mount_main(int argc, char **argv)
281 {
282         char string_flags_buf[1024] = "";
283         char *string_flags = string_flags_buf;
284         char *extra_opts = string_flags_buf;
285         int flags = 0;
286         char *filesystemType = "auto";
287         char *device = NULL;
288         char *directory = NULL;
289         int all = FALSE;
290         int fakeIt = FALSE;
291         int useMtab = TRUE;
292         int i;
293         int rc = EXIT_FAILURE;
294         int fstabmount = FALSE; 
295
296 #if defined BB_FEATURE_USE_DEVPS_PATCH
297         if (argc == 1) {
298                 int fd, i, numfilesystems;
299                 char device[] = "/dev/mtab";
300                 struct k_mntent *mntentlist;
301
302                 /* open device */ 
303                 fd = open(device, O_RDONLY);
304                 if (fd < 0)
305                         perror_msg_and_die("open failed for `%s'", device);
306
307                 /* How many mounted filesystems?  We need to know to 
308                  * allocate enough space for later... */
309                 numfilesystems = ioctl (fd, DEVMTAB_COUNT_MOUNTS);
310                 if (numfilesystems<0)
311                         perror_msg_and_die( "\nDEVMTAB_COUNT_MOUNTS");
312                 mntentlist = (struct k_mntent *) xcalloc ( numfilesystems, sizeof(struct k_mntent));
313                 
314                 /* Grab the list of mounted filesystems */
315                 if (ioctl (fd, DEVMTAB_GET_MOUNTS, mntentlist)<0)
316                         perror_msg_and_die( "\nDEVMTAB_GET_MOUNTS");
317
318                 for( i = 0 ; i < numfilesystems ; i++) {
319                         printf( "%s %s %s %s %d %d\n", mntentlist[i].mnt_fsname,
320                                         mntentlist[i].mnt_dir, mntentlist[i].mnt_type, 
321                                         mntentlist[i].mnt_opts, mntentlist[i].mnt_freq, 
322                                         mntentlist[i].mnt_passno);
323                 }
324 #ifdef BB_FEATURE_CLEAN_UP
325                 /* Don't bother to close files or free memory.  Exit 
326                  * does that automagically, so we can save a few bytes */
327                 free( mntentlist);
328                 close(fd);
329 #endif
330                 return EXIT_SUCCESS;
331         }
332 #else
333         if (argc == 1) {
334                 FILE *mountTable = setmntent(mtab_file, "r");
335
336                 if (mountTable) {
337                         struct mntent *m;
338
339                         while ((m = getmntent(mountTable)) != 0) {
340                                 char *blockDevice = m->mnt_fsname;
341                                 if (strcmp(blockDevice, "/dev/root") == 0) {
342                                         find_real_root_device_name( blockDevice);
343                                 }
344                                 printf("%s on %s type %s (%s)\n", blockDevice, m->mnt_dir,
345                                            m->mnt_type, m->mnt_opts);
346                         }
347                         endmntent(mountTable);
348                 } else {
349                         perror_msg_and_die("%s", mtab_file);
350                 }
351                 return EXIT_SUCCESS;
352         }
353 #endif
354
355         /* Parse options */
356         i = --argc;
357         argv++;
358         while (i > 0 && **argv) {
359                 if (**argv == '-') {
360                         char *opt = *argv;
361
362                         while (i > 0 && *++opt)
363                                 switch (*opt) {
364                                 case 'o':
365                                         if (--i == 0) {
366                                                 goto goodbye;
367                                         }
368                                         parse_mount_options(*(++argv), &flags, string_flags);
369                                         break;
370                                 case 'r':
371                                         flags |= MS_RDONLY;
372                                         break;
373                                 case 't':
374                                         if (--i == 0) {
375                                                 goto goodbye;
376                                         }
377                                         filesystemType = *(++argv);
378                                         break;
379                                 case 'w':
380                                         flags &= ~MS_RDONLY;
381                                         break;
382                                 case 'a':
383                                         all = TRUE;
384                                         break;
385                                 case 'f':
386                                         fakeIt = TRUE;
387                                         break;
388 #ifdef BB_MTAB
389                                 case 'n':
390                                         useMtab = FALSE;
391                                         break;
392 #endif
393                                 case 'v':
394                                         break; /* ignore -v */
395                                 case 'h':
396                                 case '-':
397                                         goto goodbye;
398                                 }
399                 } else {
400                         if (device == NULL)
401                                 device = *argv;
402                         else if (directory == NULL)
403                                 directory = *argv;
404                         else {
405                                 goto goodbye;
406                         }
407                 }
408                 i--;
409                 argv++;
410         }
411
412         if (all == TRUE || directory == NULL) {
413                 struct mntent *m;
414                 FILE *f = setmntent("/etc/fstab", "r");
415                 fstabmount = TRUE;
416
417                 if (f == NULL)
418                         perror_msg_and_die( "\nCannot read /etc/fstab");
419
420                 while ((m = getmntent(f)) != NULL) {
421                         if (all == FALSE && directory == NULL && (
422                                 (strcmp(device, m->mnt_fsname) != 0) &&
423                                 (strcmp(device, m->mnt_dir) != 0) ) ) {
424                                 continue;
425                         }
426                         
427                         if (all == TRUE && (                            // If we're mounting 'all'
428                                 (strstr(m->mnt_opts, "noauto")) ||      // and the file system isn't noauto,
429                                 (strstr(m->mnt_type, "swap")) ||        // and isn't swap or nfs, then mount it
430                                 (strstr(m->mnt_type, "nfs")) ) ) {
431                                 continue;
432                         }
433                         
434                         if (all == TRUE || flags == 0) {        // Allow single mount to override fstab flags
435                                 flags = 0;
436                                 *string_flags = '\0';
437                                 parse_mount_options(m->mnt_opts, &flags, string_flags);
438                         }
439                         
440                         device = strdup(m->mnt_fsname);
441                         directory = strdup(m->mnt_dir);
442                         filesystemType = strdup(m->mnt_type);
443 singlemount:                    
444                         string_flags = strdup(string_flags);
445                         rc = EXIT_SUCCESS;
446 #ifdef BB_NFSMOUNT
447                         if (strchr(device, ':') != NULL)
448                                 filesystemType = "nfs";
449                         if (strcmp(filesystemType, "nfs") == 0) {
450                                 if (nfsmount (device, directory, &flags, &extra_opts,
451                                                         &string_flags, 1)) {
452                                         perror_msg("nfsmount failed");
453                                         rc = EXIT_FAILURE;
454                                 }
455                         }
456 #endif
457                         if (!mount_one(device, directory, filesystemType, flags,
458                                         string_flags, useMtab, fakeIt, extra_opts, TRUE))
459                                 rc = EXIT_FAILURE;
460                                 
461                         if (all == FALSE)
462                                 break;
463                 }
464                 if (fstabmount == TRUE)
465                         endmntent(f);
466                         
467                 if (all == FALSE && fstabmount == TRUE && directory == NULL)
468                         fprintf(stderr, "Can't find %s in /etc/fstab\n", device);
469         
470                 return rc;
471         }
472         
473         goto singlemount;
474         
475 goodbye:
476         show_usage();
477 }