Removed trailing \n from error_msg{,_and_die} messages.
[oweals/busybox.git] / umount.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini umount implementation for busybox
4  *
5  *
6  * Copyright (C) 1999,2000,2001 by Lineo, inc.
7  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17  * General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22  *
23  */
24
25 #include "busybox.h"
26 #include <stdio.h>
27 #include <mntent.h>
28 #include <errno.h>
29 #include <string.h>
30 #include <stdlib.h>
31
32
33 static const int MNT_FORCE = 1;
34 static const int MS_MGC_VAL = 0xc0ed0000; /* Magic number indicatng "new" flags */
35 static const int MS_REMOUNT = 32;       /* Alter flags of a mounted FS.  */
36 static const int MS_RDONLY = 1; /* Mount read-only.  */
37
38 extern int mount (__const char *__special_file, __const char *__dir,
39                         __const char *__fstype, unsigned long int __rwflag,
40                         __const void *__data);
41 extern int umount (__const char *__special_file);
42 extern int umount2 (__const char *__special_file, int __flags);
43
44 struct _mtab_entry_t {
45         char *device;
46         char *mountpt;
47         struct _mtab_entry_t *next;
48 };
49
50 static struct _mtab_entry_t *mtab_cache = NULL;
51
52
53
54 #if defined BB_FEATURE_MOUNT_FORCE
55 static int doForce = FALSE;
56 #endif
57 #if defined BB_FEATURE_MOUNT_LOOP
58 static int freeLoop = TRUE;
59 #endif
60 static int useMtab = TRUE;
61 static int umountAll = FALSE;
62 static int doRemount = FALSE;
63 extern const char mtab_file[];  /* Defined in utility.c */
64
65
66
67 /* These functions are here because the getmntent functions do not appear
68  * to be re-entrant, which leads to all sorts of problems when we try to
69  * use them recursively - randolph
70  *
71  * TODO: Perhaps switch to using Glibc's getmntent_r
72  *        -Erik
73  */
74 void mtab_read(void)
75 {
76         struct _mtab_entry_t *entry = NULL;
77         struct mntent *e;
78         FILE *fp;
79
80         if (mtab_cache != NULL)
81                 return;
82
83         if ((fp = setmntent(mtab_file, "r")) == NULL) {
84                 error_msg("Cannot open %s", mtab_file);
85                 return;
86         }
87         while ((e = getmntent(fp))) {
88                 entry = xmalloc(sizeof(struct _mtab_entry_t));
89                 entry->device = strdup(e->mnt_fsname);
90                 entry->mountpt = strdup(e->mnt_dir);
91                 entry->next = mtab_cache;
92                 mtab_cache = entry;
93         }
94         endmntent(fp);
95 }
96
97 char *mtab_getinfo(const char *match, const char which)
98 {
99         struct _mtab_entry_t *cur = mtab_cache;
100
101         while (cur) {
102                 if (strcmp(cur->mountpt, match) == 0 ||
103                         strcmp(cur->device, match) == 0) {
104                         if (which == MTAB_GETMOUNTPT) {
105                                 return cur->mountpt;
106                         } else {
107 #if !defined BB_MTAB
108                                 if (strcmp(cur->device, "/dev/root") == 0) {
109                                         /* Adjusts device to be the real root device,
110                                          * or leaves device alone if it can't find it */
111                                         find_real_root_device_name( cur->device);
112                                         return ( cur->device);
113                                 }
114 #endif
115                                 return cur->device;
116                         }
117                 }
118                 cur = cur->next;
119         }
120         return NULL;
121 }
122
123 char *mtab_first(void **iter)
124 {
125         struct _mtab_entry_t *mtab_iter;
126
127         if (!iter)
128                 return NULL;
129         mtab_iter = mtab_cache;
130         *iter = (void *) mtab_iter;
131         return mtab_next(iter);
132 }
133
134 char *mtab_next(void **iter)
135 {
136         char *mp;
137
138         if (iter == NULL || *iter == NULL)
139                 return NULL;
140         mp = ((struct _mtab_entry_t *) (*iter))->mountpt;
141         *iter = (void *) ((struct _mtab_entry_t *) (*iter))->next;
142         return mp;
143 }
144
145 /* Don't bother to clean up, since exit() does that 
146  * automagically, so we can save a few bytes */
147 #ifdef BB_FEATURE_CLEAN_UP
148 void mtab_free(void)
149 {
150         struct _mtab_entry_t *this, *next;
151
152         this = mtab_cache;
153         while (this) {
154                 next = this->next;
155                 if (this->device)
156                         free(this->device);
157                 if (this->mountpt)
158                         free(this->mountpt);
159                 free(this);
160                 this = next;
161         }
162 }
163 #endif
164
165 static int do_umount(const char *name, int useMtab)
166 {
167         int status;
168         char *blockDevice = mtab_getinfo(name, MTAB_GETDEVICE);
169
170         if (blockDevice && strcmp(blockDevice, name) == 0)
171                 name = mtab_getinfo(blockDevice, MTAB_GETMOUNTPT);
172
173         status = umount(name);
174
175 #if defined BB_FEATURE_MOUNT_LOOP
176         if (freeLoop == TRUE && blockDevice != NULL && !strncmp("/dev/loop", blockDevice, 9))
177                 /* this was a loop device, delete it */
178                 del_loop(blockDevice);
179 #endif
180 #if defined BB_FEATURE_MOUNT_FORCE
181         if (status != 0 && doForce == TRUE) {
182                 status = umount2(blockDevice, MNT_FORCE);
183                 if (status != 0) {
184                         error_msg_and_die("forced umount of %s failed!", blockDevice);
185                 }
186         }
187 #endif
188         if (status != 0 && doRemount == TRUE && errno == EBUSY) {
189                 status = mount(blockDevice, name, NULL,
190                                            MS_MGC_VAL | MS_REMOUNT | MS_RDONLY, NULL);
191                 if (status == 0) {
192                         error_msg("%s busy - remounted read-only", blockDevice);
193                 } else {
194                         error_msg("Cannot remount %s read-only", blockDevice);
195                 }
196         }
197         if (status == 0) {
198 #if defined BB_MTAB
199                 if (useMtab == TRUE)
200                         erase_mtab(name);
201 #endif
202                 return (TRUE);
203         }
204         return (FALSE);
205 }
206
207 static int umount_all(int useMtab)
208 {
209         int status = TRUE;
210         char *mountpt;
211         void *iter;
212
213         for (mountpt = mtab_first(&iter); mountpt; mountpt = mtab_next(&iter)) {
214                 /* Never umount /proc on a umount -a */
215                 if (strstr(mountpt, "proc")!= NULL)
216                         continue;
217                 if (!do_umount(mountpt, useMtab)) {
218                         /* Don't bother retrying the umount on busy devices */
219                         if (errno == EBUSY) {
220                                 perror_msg("%s", mountpt);
221                                 status = FALSE;
222                                 continue;
223                         }
224                         if (!do_umount(mountpt, useMtab)) {
225                                 printf("Couldn't umount %s on %s: %s\n",
226                                            mountpt, mtab_getinfo(mountpt, MTAB_GETDEVICE),
227                                            strerror(errno));
228                                 status = FALSE;
229                         }
230                 }
231         }
232         return (status);
233 }
234
235 extern int umount_main(int argc, char **argv)
236 {
237         if (argc < 2) {
238                 usage(umount_usage);
239         }
240 #ifdef BB_FEATURE_CLEAN_UP
241         atexit(mtab_free);
242 #endif
243
244         /* Parse any options */
245         while (--argc > 0 && **(++argv) == '-') {
246                 while (*++(*argv))
247                         switch (**argv) {
248                         case 'a':
249                                 umountAll = TRUE;
250                                 break;
251 #if defined BB_FEATURE_MOUNT_LOOP
252                         case 'l':
253                                 freeLoop = FALSE;
254                                 break;
255 #endif
256 #ifdef BB_MTAB
257                         case 'n':
258                                 useMtab = FALSE;
259                                 break;
260 #endif
261 #ifdef BB_FEATURE_MOUNT_FORCE
262                         case 'f':
263                                 doForce = TRUE;
264                                 break;
265 #endif
266                         case 'r':
267                                 doRemount = TRUE;
268                                 break;
269                         case 'v':
270                                 break; /* ignore -v */
271                         default:
272                                 usage(umount_usage);
273                         }
274         }
275
276         mtab_read();
277         if (umountAll == TRUE) {
278                 if (umount_all(useMtab) == TRUE)
279                         return EXIT_SUCCESS;
280                 else
281                         return EXIT_FAILURE;
282         }
283         if (do_umount(*argv, useMtab) == TRUE)
284                 return EXIT_SUCCESS;
285         perror_msg_and_die("%s", *argv);
286 }
287