Ha! Got init working.
[oweals/busybox.git] / mount.c
1 /*
2  * Mini mount implementation for busybox
3  *
4  * Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19  *
20  * 3/21/1999    Charles P. Wright <cpwright@cpwright.com>
21  *              searches through fstab when -a is passed
22  *              will try mounting stuff with all fses when passed -t auto
23  *
24  * 1999-04-17   Dave Cinege...Rewrote -t auto. Fixed ro mtab.
25  *
26  * 1999-10-07   Erik Andersen <andersen@lineo.com>, <andersee@debian.org>.
27  *              Rewrote of a lot of code. Removed mtab usage (I plan on
28  *              putting it back as a compile-time option some time), 
29  *              major adjustments to option parsing, and some serious 
30  *              dieting all around.
31 */
32
33 #include "internal.h"
34 #include <stdlib.h>
35 #include <unistd.h>
36 #include <errno.h>
37 #include <string.h>
38 #include <stdio.h>
39 #include <mntent.h>
40 #include <sys/mount.h>
41 #include <ctype.h>
42 #include <fstab.h>
43
44 static const char mount_usage[] = "Usage:\tmount [flags]\n"
45     "\tmount [flags] device directory [-o options,more-options]\n"
46     "\n"
47     "Flags:\n"
48     "\t-a:\tMount all file systems in fstab.\n"
49     "\t-o option:\tOne of many filesystem options, listed below.\n"
50     "\t-r:\tMount the filesystem read-only.\n"
51     "\t-t filesystem-type:\tSpecify the filesystem type.\n"
52     "\t-w:\tMount for reading and writing (default).\n"
53     "\n"
54     "Options for use with the \"-o\" flag:\n"
55     "\tasync / sync:\tWrites are asynchronous / synchronous.\n"
56     "\tdev / nodev:\tAllow use of special device files / disallow them.\n"
57     "\texec / noexec:\tAllow use of executable files / disallow them.\n"
58     "\tsuid / nosuid:\tAllow set-user-id-root programs / disallow them.\n"
59     "\tremount: Re-mount a currently-mounted filesystem, changing its flags.\n"
60     "\tro / rw: Mount for read-only / read-write.\n"
61     "\t"
62     "There are EVEN MORE flags that are specific to each filesystem.\n"
63     "You'll have to see the written documentation for those.\n";
64
65 struct mount_options {
66     const char *name;
67     unsigned long and;
68     unsigned long or;
69 };
70
71 static const struct mount_options mount_options[] = {
72     {"async", ~MS_SYNCHRONOUS, 0},
73     {"defaults", ~0, 0},
74     {"dev", ~MS_NODEV, 0},
75     {"exec", ~MS_NOEXEC, 0},
76     {"nodev", ~0, MS_NODEV},
77     {"noexec", ~0, MS_NOEXEC},
78     {"nosuid", ~0, MS_NOSUID},
79     {"remount", ~0, MS_REMOUNT},
80     {"ro", ~0, MS_RDONLY},
81     {"rw", ~MS_RDONLY, 0},
82     {"suid", ~MS_NOSUID, 0},
83     {"sync", ~0, MS_SYNCHRONOUS},
84     {0, 0, 0}
85 };
86
87
88 /* Seperate standard mount options from the nonstandard string options */
89 static void
90 parse_mount_options ( char *options, unsigned long *flags, char *strflags)
91 {
92     while (options) {
93         int gotone=FALSE;
94         char *comma = strchr (options, ',');
95         const struct mount_options* f = mount_options;
96         if (comma)
97             *comma = '\0';
98
99         while (f->name != 0) {
100             if (strcasecmp (f->name, options) == 0) {
101                 *flags &= f->and;
102                 *flags |= f->or;
103                 gotone=TRUE;
104                 break;
105             }
106             f++;
107         }
108         if (*strflags && strflags!= '\0' && gotone==FALSE) {
109             char *temp=strflags;
110             temp += strlen (strflags);
111             *temp++ = ',';
112             *temp++ = '\0';
113         }
114         if (gotone==FALSE) {
115             strcat (strflags, options);
116             gotone=FALSE;
117         }
118         if (comma) {
119             *comma = ',';
120             options = ++comma;
121         } else {
122             break;
123         }
124     }
125 }
126
127 int
128 mount_one (
129            char *blockDevice, char *directory, char *filesystemType,
130            unsigned long flags, char *string_flags)
131 {
132     int status = 0;
133
134     char buf[255];
135
136     if (strcmp(filesystemType, "auto") == 0) {
137         FILE *f = fopen ("/proc/filesystems", "r");
138
139         if (f == NULL)
140             return( FALSE);
141
142         while (fgets (buf, sizeof (buf), f) != NULL) {
143             filesystemType = buf;
144             if (*filesystemType == '\t') {      // Not a nodev filesystem
145
146                 // Add NULL termination to each line
147                 while (*filesystemType && *filesystemType != '\n')
148                     filesystemType++;
149                 *filesystemType = '\0';
150
151                 filesystemType = buf;
152                 filesystemType++;       // hop past tab
153
154                 status = mount (blockDevice, directory, filesystemType,
155                                 flags | MS_MGC_VAL, string_flags);
156                 if (status == 0)
157                     break;
158             }
159         }
160         fclose (f);
161     } else {
162         status = mount (blockDevice, directory, filesystemType,
163                         flags | MS_MGC_VAL, string_flags);
164     }
165
166     if (status) {
167         fprintf (stderr, "Mounting %s on %s failed: %s\n",
168                  blockDevice, directory, strerror(errno));
169         return (FALSE);
170     }
171     return (TRUE);
172 }
173
174 extern int mount_main (int argc, char **argv)
175 {
176     char string_flags[1024]="";
177     unsigned long flags = 0;
178     char *filesystemType = "auto";
179     char *device = NULL;
180     char *directory = NULL;
181     struct stat statBuf;
182     int all = 0;
183     int i;
184
185     if (stat("/etc/fstab", &statBuf) < 0) 
186         fprintf(stderr, "/etc/fstab file missing -- Please install one.\n\n");
187
188     if (argc == 1) {
189         FILE *mountTable;
190         if ((mountTable = setmntent ("/proc/mounts", "r"))) {
191             struct mntent *m;
192             while ((m = getmntent (mountTable)) != 0) {
193                 struct fstab* fstabItem;
194                 char *blockDevice = m->mnt_fsname;
195                 /* Note that if /etc/fstab is missing, libc can't fix up /dev/root for us */
196                 if (strcmp (blockDevice, "/dev/root") == 0) {
197                     fstabItem = getfsfile ("/");
198                     if (fstabItem != NULL)
199                         blockDevice = fstabItem->fs_spec;
200                 }
201                 printf ("%s on %s type %s (%s)\n", blockDevice, m->mnt_dir,
202                         m->mnt_type, m->mnt_opts);
203             }
204             endmntent (mountTable);
205         }
206         exit( TRUE);
207     }
208
209
210     /* Parse options */
211     i = --argc;
212     argv++;
213     while (i > 0 && **argv) {
214         if (**argv == '-') {
215             while (i>0 && *++(*argv)) switch (**argv) {
216             case 'o':
217                 if (--i == 0) {
218                     fprintf (stderr, "%s\n", mount_usage);
219                     exit( FALSE);
220                 }
221                 parse_mount_options (*(++argv), &flags, string_flags);
222                 --i;
223                 ++argv;
224                 break;
225             case 'r':
226                 flags |= MS_RDONLY;
227                 break;
228             case 't':
229                 if (--i == 0) {
230                     fprintf (stderr, "%s\n", mount_usage);
231                     exit( FALSE);
232                 }
233                 filesystemType = *(++argv);
234                 --i;
235                 ++argv;
236                 break;
237             case 'w':
238                 flags &= ~MS_RDONLY;
239                 break;
240             case 'a':
241                 all = 1;
242                 break;
243             case 'v':
244             case 'h':
245             case '-':
246                 fprintf (stderr, "%s\n", mount_usage);
247                 exit( TRUE);
248                 break;
249             }
250         } else {
251             if (device == NULL)
252                 device=*argv;
253             else if (directory == NULL)
254                 directory=*argv;
255             else {
256                 fprintf (stderr, "%s\n", mount_usage);
257                 exit( TRUE);
258             }
259         }
260         i--;
261         argv++;
262     }
263
264     if (all == 1) {
265         struct mntent *m;
266         FILE *f = setmntent ("/etc/fstab", "r");
267
268         if (f == NULL) {
269             perror("/etc/fstab");
270             exit( FALSE); 
271         }
272         while ((m = getmntent (f)) != NULL) {
273             // If the file system isn't noauto, and isn't mounted on /, mount 
274             // it
275             if ((!strstr (m->mnt_opts, "noauto"))
276                 && (m->mnt_dir[1] != '\0') && !((m->mnt_type[0] == 's')
277                                                 && (m->mnt_type[1] == 'w'))
278                 && !((m->mnt_type[0] == 'n') && (m->mnt_type[1] == 'f'))) {
279                 mount_one (m->mnt_fsname, m->mnt_dir, m->mnt_type, flags,
280                            m->mnt_opts);
281             }
282         }
283         endmntent (f);
284     } else {
285         if (device && directory) {
286             exit (mount_one (device, directory, filesystemType, 
287                         flags, string_flags));
288         } else {
289             fprintf (stderr, "%s\n", mount_usage);
290             exit( FALSE);
291         }
292     }
293     exit( TRUE);
294 }