blob: c11f2e9d7e61772b3fe032c3d5991b1c6f0dd0c3 [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
Eric Andersenf811e071999-10-09 00:25:00 +00002/*
3 * Mini umount implementation for busybox
4 *
Eric Andersenbdfd0d72001-10-24 05:00:29 +00005 * Copyright (C) 1999,2000 by Lineo, inc. and Erik Andersen
6 * Copyright (C) 1999,2000,2001 by Erik Andersen <andersee@debian.org>
Eric Andersenf811e071999-10-09 00:25:00 +00007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 *
22 */
23
Matt Kraaiadcbc122001-05-02 21:24:51 +000024#include <limits.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000025#include <stdio.h>
Eric Andersenf811e071999-10-09 00:25:00 +000026#include <mntent.h>
Eric Andersenf811e071999-10-09 00:25:00 +000027#include <errno.h>
Eric Andersened3ef502001-01-27 08:24:39 +000028#include <string.h>
29#include <stdlib.h>
Eric Andersencbe31da2001-02-20 06:14:08 +000030#include "busybox.h"
Eric Andersene1e23ee2000-06-19 18:38:51 +000031
Eric Andersen8a915882001-08-02 09:55:58 +000032/* Teach libc5 about realpath -- it includes it but the
33 * prototype is missing... */
34#if (__GLIBC__ <= 2) && (__GLIBC_MINOR__ < 1)
35extern char *realpath(const char *path, char *resolved_path);
36#endif
Eric Andersene1e23ee2000-06-19 18:38:51 +000037
Mark Whitley59ab0252001-01-23 22:30:04 +000038static const int MNT_FORCE = 1;
39static const int MS_MGC_VAL = 0xc0ed0000; /* Magic number indicatng "new" flags */
40static const int MS_REMOUNT = 32; /* Alter flags of a mounted FS. */
41static const int MS_RDONLY = 1; /* Mount read-only. */
Eric Andersen2cd439f2000-07-08 19:10:29 +000042
Eric Andersena57ba4d2000-07-08 19:20:49 +000043extern int mount (__const char *__special_file, __const char *__dir,
44 __const char *__fstype, unsigned long int __rwflag,
45 __const void *__data);
46extern int umount (__const char *__special_file);
47extern int umount2 (__const char *__special_file, int __flags);
Eric Andersen2cd439f2000-07-08 19:10:29 +000048
Erik Andersenfac10d72000-02-07 05:29:42 +000049struct _mtab_entry_t {
Erik Andersene49d5ec2000-02-08 19:58:47 +000050 char *device;
51 char *mountpt;
52 struct _mtab_entry_t *next;
Erik Andersenfac10d72000-02-07 05:29:42 +000053};
54
55static struct _mtab_entry_t *mtab_cache = NULL;
56
57
Eric Andersend0246fb1999-11-04 21:18:07 +000058
Eric Andersenbdfd0d72001-10-24 05:00:29 +000059#if defined CONFIG_FEATURE_MOUNT_FORCE
Erik Andersen6c5f2c62000-05-05 19:49:33 +000060static int doForce = FALSE;
61#endif
Eric Andersenbdfd0d72001-10-24 05:00:29 +000062#if defined CONFIG_FEATURE_MOUNT_LOOP
Erik Andersence917322000-03-13 04:07:02 +000063static int freeLoop = TRUE;
64#endif
Eric Andersenbdfd0d72001-10-24 05:00:29 +000065#if defined CONFIG_FEATURE_MTAB_SUPPORT
Eric Andersend0246fb1999-11-04 21:18:07 +000066static int useMtab = TRUE;
Eric Andersen1ca20a72001-03-21 07:34:27 +000067#endif
Eric Andersend0246fb1999-11-04 21:18:07 +000068static int umountAll = FALSE;
Erik Andersenfac10d72000-02-07 05:29:42 +000069static int doRemount = FALSE;
Eric Andersend0246fb1999-11-04 21:18:07 +000070
Erik Andersenfac10d72000-02-07 05:29:42 +000071
Erik Andersen5b911dd2000-02-23 22:49:58 +000072
Erik Andersenfac10d72000-02-07 05:29:42 +000073/* These functions are here because the getmntent functions do not appear
74 * to be re-entrant, which leads to all sorts of problems when we try to
75 * use them recursively - randolph
Erik Andersen5b911dd2000-02-23 22:49:58 +000076 *
77 * TODO: Perhaps switch to using Glibc's getmntent_r
78 * -Erik
Erik Andersenfac10d72000-02-07 05:29:42 +000079 */
Eric Andersenc911a432001-05-15 17:42:16 +000080static void mtab_read(void)
Erik Andersenfac10d72000-02-07 05:29:42 +000081{
Erik Andersene49d5ec2000-02-08 19:58:47 +000082 struct _mtab_entry_t *entry = NULL;
83 struct mntent *e;
84 FILE *fp;
85
86 if (mtab_cache != NULL)
87 return;
88
Manuel Novoa III cad53642003-03-19 09:13:01 +000089 if ((fp = setmntent(bb_path_mtab_file, "r")) == NULL) {
90 bb_error_msg("Cannot open %s", bb_path_mtab_file);
Erik Andersene49d5ec2000-02-08 19:58:47 +000091 return;
92 }
93 while ((e = getmntent(fp))) {
Erik Andersen0d068a22000-03-21 22:32:57 +000094 entry = xmalloc(sizeof(struct _mtab_entry_t));
Erik Andersene49d5ec2000-02-08 19:58:47 +000095 entry->device = strdup(e->mnt_fsname);
96 entry->mountpt = strdup(e->mnt_dir);
97 entry->next = mtab_cache;
98 mtab_cache = entry;
99 }
100 endmntent(fp);
Erik Andersenfac10d72000-02-07 05:29:42 +0000101}
102
Eric Andersenc911a432001-05-15 17:42:16 +0000103static char *mtab_getinfo(const char *match, const char which)
Erik Andersenfac10d72000-02-07 05:29:42 +0000104{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000105 struct _mtab_entry_t *cur = mtab_cache;
106
107 while (cur) {
108 if (strcmp(cur->mountpt, match) == 0 ||
109 strcmp(cur->device, match) == 0) {
110 if (which == MTAB_GETMOUNTPT) {
111 return cur->mountpt;
112 } else {
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000113#if !defined CONFIG_FEATURE_MTAB_SUPPORT
Eric Andersen9d7f0f02003-06-20 09:36:49 +0000114 if (strcmp(cur->device, "rootfs") == 0) {
115 continue;
116 } else if (strcmp(cur->device, "/dev/root") == 0) {
Erik Andersenec5bd902000-03-22 07:12:05 +0000117 /* Adjusts device to be the real root device,
118 * or leaves device alone if it can't find it */
Eric Andersenc911a432001-05-15 17:42:16 +0000119 cur->device = find_real_root_device_name(cur->device);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000120 }
Erik Andersenfac10d72000-02-07 05:29:42 +0000121#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000122 return cur->device;
123 }
124 }
125 cur = cur->next;
Erik Andersenfac10d72000-02-07 05:29:42 +0000126 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000127 return NULL;
Erik Andersenfac10d72000-02-07 05:29:42 +0000128}
129
Eric Andersenc911a432001-05-15 17:42:16 +0000130static char *mtab_next(void **iter)
Erik Andersenfac10d72000-02-07 05:29:42 +0000131{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000132 char *mp;
133
134 if (iter == NULL || *iter == NULL)
135 return NULL;
136 mp = ((struct _mtab_entry_t *) (*iter))->mountpt;
137 *iter = (void *) ((struct _mtab_entry_t *) (*iter))->next;
138 return mp;
Erik Andersenfac10d72000-02-07 05:29:42 +0000139}
140
Eric Andersenc911a432001-05-15 17:42:16 +0000141static char *mtab_first(void **iter)
142{
143 struct _mtab_entry_t *mtab_iter;
144
145 if (!iter)
146 return NULL;
147 mtab_iter = mtab_cache;
148 *iter = (void *) mtab_iter;
149 return mtab_next(iter);
150}
151
Erik Andersen298854f2000-03-23 01:09:18 +0000152/* Don't bother to clean up, since exit() does that
153 * automagically, so we can save a few bytes */
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000154#ifdef CONFIG_FEATURE_CLEAN_UP
Eric Andersenc911a432001-05-15 17:42:16 +0000155static void mtab_free(void)
Erik Andersenfac10d72000-02-07 05:29:42 +0000156{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000157 struct _mtab_entry_t *this, *next;
Erik Andersenfac10d72000-02-07 05:29:42 +0000158
Erik Andersene49d5ec2000-02-08 19:58:47 +0000159 this = mtab_cache;
160 while (this) {
161 next = this->next;
Aaron Lehmanna170e1c2002-11-28 11:27:31 +0000162 free(this->device);
163 free(this->mountpt);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000164 free(this);
165 this = next;
166 }
Erik Andersenfac10d72000-02-07 05:29:42 +0000167}
Erik Andersen298854f2000-03-23 01:09:18 +0000168#endif
Erik Andersene132f4b2000-02-09 04:16:43 +0000169
Eric Andersen1ca20a72001-03-21 07:34:27 +0000170static int do_umount(const char *name)
Erik Andersene132f4b2000-02-09 04:16:43 +0000171{
172 int status;
173 char *blockDevice = mtab_getinfo(name, MTAB_GETDEVICE);
174
175 if (blockDevice && strcmp(blockDevice, name) == 0)
176 name = mtab_getinfo(blockDevice, MTAB_GETMOUNTPT);
177
178 status = umount(name);
179
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000180#if defined CONFIG_FEATURE_MOUNT_LOOP
Matt Kraai1f0c4362001-12-20 23:13:26 +0000181 if (freeLoop && blockDevice != NULL && !strncmp("/dev/loop", blockDevice, 9))
Erik Andersene132f4b2000-02-09 04:16:43 +0000182 /* this was a loop device, delete it */
183 del_loop(blockDevice);
184#endif
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000185#if defined CONFIG_FEATURE_MOUNT_FORCE
Matt Kraai1f0c4362001-12-20 23:13:26 +0000186 if (status != 0 && doForce) {
Erik Andersen6c5f2c62000-05-05 19:49:33 +0000187 status = umount2(blockDevice, MNT_FORCE);
188 if (status != 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000189 bb_error_msg_and_die("forced umount of %s failed!", blockDevice);
Erik Andersen6c5f2c62000-05-05 19:49:33 +0000190 }
191 }
192#endif
Matt Kraai1f0c4362001-12-20 23:13:26 +0000193 if (status != 0 && doRemount && errno == EBUSY) {
Erik Andersene132f4b2000-02-09 04:16:43 +0000194 status = mount(blockDevice, name, NULL,
195 MS_MGC_VAL | MS_REMOUNT | MS_RDONLY, NULL);
196 if (status == 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000197 bb_error_msg("%s busy - remounted read-only", blockDevice);
Erik Andersene132f4b2000-02-09 04:16:43 +0000198 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000199 bb_error_msg("Cannot remount %s read-only", blockDevice);
Erik Andersene132f4b2000-02-09 04:16:43 +0000200 }
201 }
Erik Andersene132f4b2000-02-09 04:16:43 +0000202 if (status == 0) {
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000203#if defined CONFIG_FEATURE_MTAB_SUPPORT
Matt Kraai1f0c4362001-12-20 23:13:26 +0000204 if (useMtab)
Erik Andersene132f4b2000-02-09 04:16:43 +0000205 erase_mtab(name);
206#endif
207 return (TRUE);
208 }
209 return (FALSE);
210}
211
Eric Andersen1ca20a72001-03-21 07:34:27 +0000212static int umount_all(void)
Erik Andersene132f4b2000-02-09 04:16:43 +0000213{
214 int status = TRUE;
215 char *mountpt;
216 void *iter;
217
218 for (mountpt = mtab_first(&iter); mountpt; mountpt = mtab_next(&iter)) {
219 /* Never umount /proc on a umount -a */
220 if (strstr(mountpt, "proc")!= NULL)
221 continue;
Eric Andersen1ca20a72001-03-21 07:34:27 +0000222 if (!do_umount(mountpt)) {
Erik Andersene132f4b2000-02-09 04:16:43 +0000223 /* Don't bother retrying the umount on busy devices */
224 if (errno == EBUSY) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000225 bb_perror_msg("%s", mountpt);
Matt Kraaifd4c58d2001-01-17 00:12:11 +0000226 status = FALSE;
Erik Andersene132f4b2000-02-09 04:16:43 +0000227 continue;
228 }
Eric Andersen1ca20a72001-03-21 07:34:27 +0000229 if (!do_umount(mountpt)) {
Erik Andersene132f4b2000-02-09 04:16:43 +0000230 printf("Couldn't umount %s on %s: %s\n",
231 mountpt, mtab_getinfo(mountpt, MTAB_GETDEVICE),
232 strerror(errno));
Matt Kraaifd4c58d2001-01-17 00:12:11 +0000233 status = FALSE;
Erik Andersene132f4b2000-02-09 04:16:43 +0000234 }
235 }
236 }
237 return (status);
238}
239
240extern int umount_main(int argc, char **argv)
241{
Matt Kraaiadcbc122001-05-02 21:24:51 +0000242 char path[PATH_MAX];
243
Erik Andersene132f4b2000-02-09 04:16:43 +0000244 if (argc < 2) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000245 bb_show_usage();
Erik Andersene132f4b2000-02-09 04:16:43 +0000246 }
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000247#ifdef CONFIG_FEATURE_CLEAN_UP
Eric Andersenb040d4f2000-07-25 18:01:20 +0000248 atexit(mtab_free);
249#endif
Erik Andersene132f4b2000-02-09 04:16:43 +0000250
251 /* Parse any options */
252 while (--argc > 0 && **(++argv) == '-') {
253 while (*++(*argv))
254 switch (**argv) {
255 case 'a':
256 umountAll = TRUE;
257 break;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000258#if defined CONFIG_FEATURE_MOUNT_LOOP
Erik Andersen6c5f2c62000-05-05 19:49:33 +0000259 case 'l':
Erik Andersence917322000-03-13 04:07:02 +0000260 freeLoop = FALSE;
261 break;
262#endif
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000263#ifdef CONFIG_FEATURE_MTAB_SUPPORT
Erik Andersene132f4b2000-02-09 04:16:43 +0000264 case 'n':
265 useMtab = FALSE;
266 break;
267#endif
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000268#ifdef CONFIG_FEATURE_MOUNT_FORCE
Erik Andersen6c5f2c62000-05-05 19:49:33 +0000269 case 'f':
270 doForce = TRUE;
271 break;
272#endif
Erik Andersene132f4b2000-02-09 04:16:43 +0000273 case 'r':
274 doRemount = TRUE;
275 break;
Erik Andersen983b51b2000-04-04 18:14:25 +0000276 case 'v':
277 break; /* ignore -v */
Erik Andersene132f4b2000-02-09 04:16:43 +0000278 default:
Manuel Novoa III cad53642003-03-19 09:13:01 +0000279 bb_show_usage();
Erik Andersene132f4b2000-02-09 04:16:43 +0000280 }
281 }
282
283 mtab_read();
Matt Kraai1f0c4362001-12-20 23:13:26 +0000284 if (umountAll) {
285 if (umount_all())
Matt Kraai3e856ce2000-12-01 02:55:13 +0000286 return EXIT_SUCCESS;
287 else
288 return EXIT_FAILURE;
Erik Andersene132f4b2000-02-09 04:16:43 +0000289 }
Matt Kraaiadcbc122001-05-02 21:24:51 +0000290 if (realpath(*argv, path) == NULL)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000291 bb_perror_msg_and_die("%s", path);
Matt Kraai1f0c4362001-12-20 23:13:26 +0000292 if (do_umount(path))
Matt Kraai3e856ce2000-12-01 02:55:13 +0000293 return EXIT_SUCCESS;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000294 bb_perror_msg_and_die("%s", *argv);
Erik Andersene132f4b2000-02-09 04:16:43 +0000295}
296