Canonicalize path before trying to unmount it.
[oweals/busybox.git] / util-linux / 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 <limits.h>
26 #include <stdio.h>
27 #include <mntent.h>
28 #include <errno.h>
29 #include <string.h>
30 #include <stdlib.h>
31 #include "busybox.h"
32
33
34 static const int MNT_FORCE = 1;
35 static const int MS_MGC_VAL = 0xc0ed0000; /* Magic number indicatng "new" flags */
36 static const int MS_REMOUNT = 32;       /* Alter flags of a mounted FS.  */
37 static const int MS_RDONLY = 1; /* Mount read-only.  */
38
39 extern int mount (__const char *__special_file, __const char *__dir,
40                         __const char *__fstype, unsigned long int __rwflag,
41                         __const void *__data);
42 extern int umount (__const char *__special_file);
43 extern int umount2 (__const char *__special_file, int __flags);
44
45 struct _mtab_entry_t {
46         char *device;
47         char *mountpt;
48         struct _mtab_entry_t *next;
49 };
50
51 static struct _mtab_entry_t *mtab_cache = NULL;
52
53
54
55 #if defined BB_FEATURE_MOUNT_FORCE
56 static int doForce = FALSE;
57 #endif
58 #if defined BB_FEATURE_MOUNT_LOOP
59 static int freeLoop = TRUE;
60 #endif
61 #if defined BB_FEATURE_MTAB_SUPPORT
62 static int useMtab = TRUE;
63 #endif
64 static int umountAll = FALSE;
65 static int doRemount = FALSE;
66 extern const char mtab_file[];  /* Defined in utility.c */
67
68
69
70 /* These functions are here because the getmntent functions do not appear
71  * to be re-entrant, which leads to all sorts of problems when we try to
72  * use them recursively - randolph
73  *
74  * TODO: Perhaps switch to using Glibc's getmntent_r
75  *        -Erik
76  */
77 void mtab_read(void)
78 {
79         struct _mtab_entry_t *entry = NULL;
80         struct mntent *e;
81         FILE *fp;
82
83         if (mtab_cache != NULL)
84                 return;
85
86         if ((fp = setmntent(mtab_file, "r")) == NULL) {
87                 error_msg("Cannot open %s", mtab_file);
88                 return;
89         }
90         while ((e = getmntent(fp))) {
91                 entry = xmalloc(sizeof(struct _mtab_entry_t));
92                 entry->device = strdup(e->mnt_fsname);
93                 entry->mountpt = strdup(e->mnt_dir);
94                 entry->next = mtab_cache;
95                 mtab_cache = entry;
96         }
97         endmntent(fp);
98 }
99
100 char *mtab_getinfo(const char *match, const char which)
101 {
102         struct _mtab_entry_t *cur = mtab_cache;
103
104         while (cur) {
105                 if (strcmp(cur->mountpt, match) == 0 ||
106                         strcmp(cur->device, match) == 0) {
107                         if (which == MTAB_GETMOUNTPT) {
108                                 return cur->mountpt;
109                         } else {
110 #if !defined BB_FEATURE_MTAB_SUPPORT
111                                 if (strcmp(cur->device, "/dev/root") == 0) {
112                                         /* Adjusts device to be the real root device,
113                                          * or leaves device alone if it can't find it */
114                                         find_real_root_device_name( cur->device);
115                                         return ( cur->device);
116                                 }
117 #endif
118                                 return cur->device;
119                         }
120                 }
121                 cur = cur->next;
122         }
123         return NULL;
124 }
125
126 char *mtab_first(void **iter)
127 {
128         struct _mtab_entry_t *mtab_iter;
129
130         if (!iter)
131                 return NULL;
132         mtab_iter = mtab_cache;
133         *iter = (void *) mtab_iter;
134         return mtab_next(iter);
135 }
136
137 char *mtab_next(void **iter)
138 {
139         char *mp;
140
141         if (iter == NULL || *iter == NULL)
142                 return NULL;
143         mp = ((struct _mtab_entry_t *) (*iter))->mountpt;
144         *iter = (void *) ((struct _mtab_entry_t *) (*iter))->next;
145         return mp;
146 }
147
148 /* Don't bother to clean up, since exit() does that 
149  * automagically, so we can save a few bytes */
150 #ifdef BB_FEATURE_CLEAN_UP
151 void mtab_free(void)
152 {
153         struct _mtab_entry_t *this, *next;
154
155         this = mtab_cache;
156         while (this) {
157                 next = this->next;
158                 if (this->device)
159                         free(this->device);
160                 if (this->mountpt)
161                         free(this->mountpt);
162                 free(this);
163                 this = next;
164         }
165 }
166 #endif
167
168 static int do_umount(const char *name)
169 {
170         int status;
171         char *blockDevice = mtab_getinfo(name, MTAB_GETDEVICE);
172
173         if (blockDevice && strcmp(blockDevice, name) == 0)
174                 name = mtab_getinfo(blockDevice, MTAB_GETMOUNTPT);
175
176         status = umount(name);
177
178 #if defined BB_FEATURE_MOUNT_LOOP
179         if (freeLoop == TRUE && blockDevice != NULL && !strncmp("/dev/loop", blockDevice, 9))
180                 /* this was a loop device, delete it */
181                 del_loop(blockDevice);
182 #endif
183 #if defined BB_FEATURE_MOUNT_FORCE
184         if (status != 0 && doForce == TRUE) {
185                 status = umount2(blockDevice, MNT_FORCE);
186                 if (status != 0) {
187                         error_msg_and_die("forced umount of %s failed!", blockDevice);
188                 }
189         }
190 #endif
191         if (status != 0 && doRemount == TRUE && errno == EBUSY) {
192                 status = mount(blockDevice, name, NULL,
193                                            MS_MGC_VAL | MS_REMOUNT | MS_RDONLY, NULL);
194                 if (status == 0) {
195                         error_msg("%s busy - remounted read-only", blockDevice);
196                 } else {
197                         error_msg("Cannot remount %s read-only", blockDevice);
198                 }
199         }
200         if (status == 0) {
201 #if defined BB_FEATURE_MTAB_SUPPORT
202                 if (useMtab == TRUE)
203                         erase_mtab(name);
204 #endif
205                 return (TRUE);
206         }
207         return (FALSE);
208 }
209
210 static int umount_all(void)
211 {
212         int status = TRUE;
213         char *mountpt;
214         void *iter;
215
216         for (mountpt = mtab_first(&iter); mountpt; mountpt = mtab_next(&iter)) {
217                 /* Never umount /proc on a umount -a */
218                 if (strstr(mountpt, "proc")!= NULL)
219                         continue;
220                 if (!do_umount(mountpt)) {
221                         /* Don't bother retrying the umount on busy devices */
222                         if (errno == EBUSY) {
223                                 perror_msg("%s", mountpt);
224                                 status = FALSE;
225                                 continue;
226                         }
227                         if (!do_umount(mountpt)) {
228                                 printf("Couldn't umount %s on %s: %s\n",
229                                            mountpt, mtab_getinfo(mountpt, MTAB_GETDEVICE),
230                                            strerror(errno));
231                                 status = FALSE;
232                         }
233                 }
234         }
235         return (status);
236 }
237
238 extern int umount_main(int argc, char **argv)
239 {
240         char path[PATH_MAX];
241
242         if (argc < 2) {
243                 show_usage();
244         }
245 #ifdef BB_FEATURE_CLEAN_UP
246         atexit(mtab_free);
247 #endif
248
249         /* Parse any options */
250         while (--argc > 0 && **(++argv) == '-') {
251                 while (*++(*argv))
252                         switch (**argv) {
253                         case 'a':
254                                 umountAll = TRUE;
255                                 break;
256 #if defined BB_FEATURE_MOUNT_LOOP
257                         case 'l':
258                                 freeLoop = FALSE;
259                                 break;
260 #endif
261 #ifdef BB_FEATURE_MTAB_SUPPORT
262                         case 'n':
263                                 useMtab = FALSE;
264                                 break;
265 #endif
266 #ifdef BB_FEATURE_MOUNT_FORCE
267                         case 'f':
268                                 doForce = TRUE;
269                                 break;
270 #endif
271                         case 'r':
272                                 doRemount = TRUE;
273                                 break;
274                         case 'v':
275                                 break; /* ignore -v */
276                         default:
277                                 show_usage();
278                         }
279         }
280
281         mtab_read();
282         if (umountAll == TRUE) {
283                 if (umount_all() == TRUE)
284                         return EXIT_SUCCESS;
285                 else
286                         return EXIT_FAILURE;
287         }
288         if (realpath(*argv, path) == NULL)
289                 perror_msg_and_die("%s", path);
290         if (do_umount(path) == TRUE)
291                 return EXIT_SUCCESS;
292         perror_msg_and_die("%s", *argv);
293 }
294