blob: 1d3e89301bc360861925b1e9404fcb140e62117a [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
Erik Andersene49d5ec2000-02-08 19:58:47 +0000114 if (strcmp(cur->device, "/dev/root") == 0) {
Erik Andersenec5bd902000-03-22 07:12:05 +0000115 /* Adjusts device to be the real root device,
116 * or leaves device alone if it can't find it */
Eric Andersenc911a432001-05-15 17:42:16 +0000117 cur->device = find_real_root_device_name(cur->device);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000118 }
Erik Andersenfac10d72000-02-07 05:29:42 +0000119#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000120 return cur->device;
121 }
122 }
123 cur = cur->next;
Erik Andersenfac10d72000-02-07 05:29:42 +0000124 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000125 return NULL;
Erik Andersenfac10d72000-02-07 05:29:42 +0000126}
127
Eric Andersenc911a432001-05-15 17:42:16 +0000128static char *mtab_next(void **iter)
Erik Andersenfac10d72000-02-07 05:29:42 +0000129{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000130 char *mp;
131
132 if (iter == NULL || *iter == NULL)
133 return NULL;
134 mp = ((struct _mtab_entry_t *) (*iter))->mountpt;
135 *iter = (void *) ((struct _mtab_entry_t *) (*iter))->next;
136 return mp;
Erik Andersenfac10d72000-02-07 05:29:42 +0000137}
138
Eric Andersenc911a432001-05-15 17:42:16 +0000139static char *mtab_first(void **iter)
140{
141 struct _mtab_entry_t *mtab_iter;
142
143 if (!iter)
144 return NULL;
145 mtab_iter = mtab_cache;
146 *iter = (void *) mtab_iter;
147 return mtab_next(iter);
148}
149
Erik Andersen298854f2000-03-23 01:09:18 +0000150/* Don't bother to clean up, since exit() does that
151 * automagically, so we can save a few bytes */
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000152#ifdef CONFIG_FEATURE_CLEAN_UP
Eric Andersenc911a432001-05-15 17:42:16 +0000153static void mtab_free(void)
Erik Andersenfac10d72000-02-07 05:29:42 +0000154{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000155 struct _mtab_entry_t *this, *next;
Erik Andersenfac10d72000-02-07 05:29:42 +0000156
Erik Andersene49d5ec2000-02-08 19:58:47 +0000157 this = mtab_cache;
158 while (this) {
159 next = this->next;
Aaron Lehmanna170e1c2002-11-28 11:27:31 +0000160 free(this->device);
161 free(this->mountpt);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000162 free(this);
163 this = next;
164 }
Erik Andersenfac10d72000-02-07 05:29:42 +0000165}
Erik Andersen298854f2000-03-23 01:09:18 +0000166#endif
Erik Andersene132f4b2000-02-09 04:16:43 +0000167
Eric Andersen1ca20a72001-03-21 07:34:27 +0000168static int do_umount(const char *name)
Erik Andersene132f4b2000-02-09 04:16:43 +0000169{
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
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000178#if defined CONFIG_FEATURE_MOUNT_LOOP
Matt Kraai1f0c4362001-12-20 23:13:26 +0000179 if (freeLoop && blockDevice != NULL && !strncmp("/dev/loop", blockDevice, 9))
Erik Andersene132f4b2000-02-09 04:16:43 +0000180 /* this was a loop device, delete it */
181 del_loop(blockDevice);
182#endif
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000183#if defined CONFIG_FEATURE_MOUNT_FORCE
Matt Kraai1f0c4362001-12-20 23:13:26 +0000184 if (status != 0 && doForce) {
Erik Andersen6c5f2c62000-05-05 19:49:33 +0000185 status = umount2(blockDevice, MNT_FORCE);
186 if (status != 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000187 bb_error_msg_and_die("forced umount of %s failed!", blockDevice);
Erik Andersen6c5f2c62000-05-05 19:49:33 +0000188 }
189 }
190#endif
Matt Kraai1f0c4362001-12-20 23:13:26 +0000191 if (status != 0 && doRemount && errno == EBUSY) {
Erik Andersene132f4b2000-02-09 04:16:43 +0000192 status = mount(blockDevice, name, NULL,
193 MS_MGC_VAL | MS_REMOUNT | MS_RDONLY, NULL);
194 if (status == 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000195 bb_error_msg("%s busy - remounted read-only", blockDevice);
Erik Andersene132f4b2000-02-09 04:16:43 +0000196 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000197 bb_error_msg("Cannot remount %s read-only", blockDevice);
Erik Andersene132f4b2000-02-09 04:16:43 +0000198 }
199 }
Erik Andersene132f4b2000-02-09 04:16:43 +0000200 if (status == 0) {
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000201#if defined CONFIG_FEATURE_MTAB_SUPPORT
Matt Kraai1f0c4362001-12-20 23:13:26 +0000202 if (useMtab)
Erik Andersene132f4b2000-02-09 04:16:43 +0000203 erase_mtab(name);
204#endif
205 return (TRUE);
206 }
207 return (FALSE);
208}
209
Eric Andersen1ca20a72001-03-21 07:34:27 +0000210static int umount_all(void)
Erik Andersene132f4b2000-02-09 04:16:43 +0000211{
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;
Eric Andersen1ca20a72001-03-21 07:34:27 +0000220 if (!do_umount(mountpt)) {
Erik Andersene132f4b2000-02-09 04:16:43 +0000221 /* Don't bother retrying the umount on busy devices */
222 if (errno == EBUSY) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000223 bb_perror_msg("%s", mountpt);
Matt Kraaifd4c58d2001-01-17 00:12:11 +0000224 status = FALSE;
Erik Andersene132f4b2000-02-09 04:16:43 +0000225 continue;
226 }
Eric Andersen1ca20a72001-03-21 07:34:27 +0000227 if (!do_umount(mountpt)) {
Erik Andersene132f4b2000-02-09 04:16:43 +0000228 printf("Couldn't umount %s on %s: %s\n",
229 mountpt, mtab_getinfo(mountpt, MTAB_GETDEVICE),
230 strerror(errno));
Matt Kraaifd4c58d2001-01-17 00:12:11 +0000231 status = FALSE;
Erik Andersene132f4b2000-02-09 04:16:43 +0000232 }
233 }
234 }
235 return (status);
236}
237
238extern int umount_main(int argc, char **argv)
239{
Matt Kraaiadcbc122001-05-02 21:24:51 +0000240 char path[PATH_MAX];
241
Erik Andersene132f4b2000-02-09 04:16:43 +0000242 if (argc < 2) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000243 bb_show_usage();
Erik Andersene132f4b2000-02-09 04:16:43 +0000244 }
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000245#ifdef CONFIG_FEATURE_CLEAN_UP
Eric Andersenb040d4f2000-07-25 18:01:20 +0000246 atexit(mtab_free);
247#endif
Erik Andersene132f4b2000-02-09 04:16:43 +0000248
249 /* Parse any options */
250 while (--argc > 0 && **(++argv) == '-') {
251 while (*++(*argv))
252 switch (**argv) {
253 case 'a':
254 umountAll = TRUE;
255 break;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000256#if defined CONFIG_FEATURE_MOUNT_LOOP
Erik Andersen6c5f2c62000-05-05 19:49:33 +0000257 case 'l':
Erik Andersence917322000-03-13 04:07:02 +0000258 freeLoop = FALSE;
259 break;
260#endif
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000261#ifdef CONFIG_FEATURE_MTAB_SUPPORT
Erik Andersene132f4b2000-02-09 04:16:43 +0000262 case 'n':
263 useMtab = FALSE;
264 break;
265#endif
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000266#ifdef CONFIG_FEATURE_MOUNT_FORCE
Erik Andersen6c5f2c62000-05-05 19:49:33 +0000267 case 'f':
268 doForce = TRUE;
269 break;
270#endif
Erik Andersene132f4b2000-02-09 04:16:43 +0000271 case 'r':
272 doRemount = TRUE;
273 break;
Erik Andersen983b51b2000-04-04 18:14:25 +0000274 case 'v':
275 break; /* ignore -v */
Erik Andersene132f4b2000-02-09 04:16:43 +0000276 default:
Manuel Novoa III cad53642003-03-19 09:13:01 +0000277 bb_show_usage();
Erik Andersene132f4b2000-02-09 04:16:43 +0000278 }
279 }
280
281 mtab_read();
Matt Kraai1f0c4362001-12-20 23:13:26 +0000282 if (umountAll) {
283 if (umount_all())
Matt Kraai3e856ce2000-12-01 02:55:13 +0000284 return EXIT_SUCCESS;
285 else
286 return EXIT_FAILURE;
Erik Andersene132f4b2000-02-09 04:16:43 +0000287 }
Matt Kraaiadcbc122001-05-02 21:24:51 +0000288 if (realpath(*argv, path) == NULL)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000289 bb_perror_msg_and_die("%s", path);
Matt Kraai1f0c4362001-12-20 23:13:26 +0000290 if (do_umount(path))
Matt Kraai3e856ce2000-12-01 02:55:13 +0000291 return EXIT_SUCCESS;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000292 bb_perror_msg_and_die("%s", *argv);
Erik Andersene132f4b2000-02-09 04:16:43 +0000293}
294