2353a8ac2b60d0f339083f7ddbee397ec52dfa80
[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  * 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 static _syscall3(int, sysfs, int, option, unsigned int, fs_index, char *, buf);
87
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_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                 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 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                 int i=0;
239                 const int num_of_filesystems = sysfs(3, 0, 0);
240                 char buf[255];
241                 filesystemType=buf;
242
243                 while(i < num_of_filesystems) {
244                         sysfs(2, i++, filesystemType);
245                         status = do_mount(blockDevice, directory, filesystemType,
246                                         flags | MS_MGC_VAL, string_flags,
247                                         useMtab, fakeIt, mtab_opts);
248                         if (status == TRUE)
249                                 break;
250                 }
251         } else {
252                 status = do_mount(blockDevice, directory, filesystemType,
253                                 flags | MS_MGC_VAL, string_flags, useMtab,
254                                 fakeIt, mtab_opts);
255         }
256
257         if (status == FALSE) {
258                 if (whineOnErrors == TRUE) {
259                         perror_msg("Mounting %s on %s failed", blockDevice, directory);
260                 }
261                 return (FALSE);
262         }
263         return (TRUE);
264 }
265
266 extern int mount_main(int argc, char **argv)
267 {
268         char string_flags_buf[1024] = "";
269         char *string_flags = string_flags_buf;
270         char *extra_opts = string_flags_buf;
271         int flags = 0;
272         char *filesystemType = "auto";
273         char *device = NULL;
274         char *directory = NULL;
275         int all = FALSE;
276         int fakeIt = FALSE;
277         int useMtab = TRUE;
278         int i;
279         int rc = EXIT_FAILURE;
280         int fstabmount = FALSE; 
281
282 #if defined BB_FEATURE_USE_DEVPS_PATCH
283         if (argc == 1) {
284                 int fd, i, numfilesystems;
285                 char device[] = "/dev/mtab";
286                 struct k_mntent *mntentlist;
287
288                 /* open device */ 
289                 fd = open(device, O_RDONLY);
290                 if (fd < 0)
291                         perror_msg_and_die("open failed for `%s'", device);
292
293                 /* How many mounted filesystems?  We need to know to 
294                  * allocate enough space for later... */
295                 numfilesystems = ioctl (fd, DEVMTAB_COUNT_MOUNTS);
296                 if (numfilesystems<0)
297                         perror_msg_and_die( "\nDEVMTAB_COUNT_MOUNTS");
298                 mntentlist = (struct k_mntent *) xcalloc ( numfilesystems, sizeof(struct k_mntent));
299                 
300                 /* Grab the list of mounted filesystems */
301                 if (ioctl (fd, DEVMTAB_GET_MOUNTS, mntentlist)<0)
302                         perror_msg_and_die( "\nDEVMTAB_GET_MOUNTS");
303
304                 for( i = 0 ; i < numfilesystems ; i++) {
305                         printf( "%s %s %s %s %d %d\n", mntentlist[i].mnt_fsname,
306                                         mntentlist[i].mnt_dir, mntentlist[i].mnt_type, 
307                                         mntentlist[i].mnt_opts, mntentlist[i].mnt_freq, 
308                                         mntentlist[i].mnt_passno);
309                 }
310 #ifdef BB_FEATURE_CLEAN_UP
311                 /* Don't bother to close files or free memory.  Exit 
312                  * does that automagically, so we can save a few bytes */
313                 free( mntentlist);
314                 close(fd);
315 #endif
316                 return EXIT_SUCCESS;
317         }
318 #else
319         if (argc == 1) {
320                 FILE *mountTable = setmntent(mtab_file, "r");
321
322                 if (mountTable) {
323                         struct mntent *m;
324
325                         while ((m = getmntent(mountTable)) != 0) {
326                                 char *blockDevice = m->mnt_fsname;
327                                 if (strcmp(blockDevice, "/dev/root") == 0) {
328                                         find_real_root_device_name( blockDevice);
329                                 }
330                                 printf("%s on %s type %s (%s)\n", blockDevice, m->mnt_dir,
331                                            m->mnt_type, m->mnt_opts);
332                         }
333                         endmntent(mountTable);
334                 } else {
335                         perror_msg_and_die("%s", mtab_file);
336                 }
337                 return EXIT_SUCCESS;
338         }
339 #endif
340
341         /* Parse options */
342         i = --argc;
343         argv++;
344         while (i > 0 && **argv) {
345                 if (**argv == '-') {
346                         char *opt = *argv;
347
348                         while (i > 0 && *++opt)
349                                 switch (*opt) {
350                                 case 'o':
351                                         if (--i == 0) {
352                                                 goto goodbye;
353                                         }
354                                         parse_mount_options(*(++argv), &flags, string_flags);
355                                         break;
356                                 case 'r':
357                                         flags |= MS_RDONLY;
358                                         break;
359                                 case 't':
360                                         if (--i == 0) {
361                                                 goto goodbye;
362                                         }
363                                         filesystemType = *(++argv);
364                                         break;
365                                 case 'w':
366                                         flags &= ~MS_RDONLY;
367                                         break;
368                                 case 'a':
369                                         all = TRUE;
370                                         break;
371                                 case 'f':
372                                         fakeIt = TRUE;
373                                         break;
374 #ifdef BB_MTAB
375                                 case 'n':
376                                         useMtab = FALSE;
377                                         break;
378 #endif
379                                 case 'v':
380                                         break; /* ignore -v */
381                                 case 'h':
382                                 case '-':
383                                         goto goodbye;
384                                 }
385                 } else {
386                         if (device == NULL)
387                                 device = *argv;
388                         else if (directory == NULL)
389                                 directory = *argv;
390                         else {
391                                 goto goodbye;
392                         }
393                 }
394                 i--;
395                 argv++;
396         }
397
398         if (all == TRUE || directory == NULL) {
399                 struct mntent *m;
400                 FILE *f = setmntent("/etc/fstab", "r");
401                 fstabmount = TRUE;
402
403                 if (f == NULL)
404                         perror_msg_and_die( "\nCannot read /etc/fstab");
405
406                 while ((m = getmntent(f)) != NULL) {
407                         if (all == FALSE && directory == NULL && (
408                                 (strcmp(device, m->mnt_fsname) != 0) &&
409                                 (strcmp(device, m->mnt_dir) != 0) ) ) {
410                                 continue;
411                         }
412                         
413                         if (all == TRUE && (                            // If we're mounting 'all'
414                                 (strstr(m->mnt_opts, "noauto")) ||      // and the file system isn't noauto,
415                                 (strstr(m->mnt_type, "swap")) ||        // and isn't swap or nfs, then mount it
416                                 (strstr(m->mnt_type, "nfs")) ) ) {
417                                 continue;
418                         }
419                         
420                         if (all == TRUE || flags == 0) {        // Allow single mount to override fstab flags
421                                 flags = 0;
422                                 *string_flags = '\0';
423                                 parse_mount_options(m->mnt_opts, &flags, string_flags);
424                         }
425                         
426                         device = strdup(m->mnt_fsname);
427                         directory = strdup(m->mnt_dir);
428                         filesystemType = strdup(m->mnt_type);
429 singlemount:                    
430                         rc = EXIT_SUCCESS;
431 #ifdef BB_NFSMOUNT
432                         if (strchr(device, ':') != NULL)
433                                 filesystemType = "nfs";
434                         if (strcmp(filesystemType, "nfs") == 0) {
435                                 if (nfsmount (device, directory, &flags, &extra_opts,
436                                                         &string_flags, 1)) {
437                                         perror_msg("nfsmount failed");
438                                         rc = EXIT_FAILURE;
439                                 }
440                         }
441 #endif
442                         if (!mount_one(device, directory, filesystemType, flags,
443                                         string_flags, useMtab, fakeIt, extra_opts, TRUE))
444                                 rc = EXIT_FAILURE;
445                                 
446                         if (all == FALSE)
447                                 break;
448                 }
449                 if (fstabmount == TRUE)
450                         endmntent(f);
451                         
452                 if (all == FALSE && fstabmount == TRUE && directory == NULL)
453                         fprintf(stderr, "Can't find %s in /etc/fstab\n", device);
454         
455                 return rc;
456         }
457         
458         goto singlemount;
459         
460 goodbye:
461         show_usage();
462 }