blob: c160ec28481f7ac26f8aba78930bb4b5ca2e7123 [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 Andersenc4996011999-10-20 22:08:37 +00005 *
Eric Andersen8ec10a92001-01-27 09:33:39 +00006 * Copyright (C) 1999,2000,2001 by Lineo, inc.
Eric Andersenc4996011999-10-20 22:08:37 +00007 * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
Eric Andersenf811e071999-10-09 00:25:00 +00008 *
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
Eric Andersen3570a342000-09-25 21:45:58 +000025#include "busybox.h"
Eric Andersencc8ed391999-10-05 16:24:54 +000026#include <stdio.h>
Eric Andersenf811e071999-10-09 00:25:00 +000027#include <mntent.h>
Eric Andersenf811e071999-10-09 00:25:00 +000028#include <errno.h>
Eric Andersened3ef502001-01-27 08:24:39 +000029#include <string.h>
30#include <stdlib.h>
Eric Andersene1e23ee2000-06-19 18:38:51 +000031
32
Mark Whitley59ab0252001-01-23 22:30:04 +000033static const int MNT_FORCE = 1;
34static const int MS_MGC_VAL = 0xc0ed0000; /* Magic number indicatng "new" flags */
35static const int MS_REMOUNT = 32; /* Alter flags of a mounted FS. */
36static const int MS_RDONLY = 1; /* Mount read-only. */
Eric Andersen2cd439f2000-07-08 19:10:29 +000037
Eric Andersena57ba4d2000-07-08 19:20:49 +000038extern int mount (__const char *__special_file, __const char *__dir,
39 __const char *__fstype, unsigned long int __rwflag,
40 __const void *__data);
41extern int umount (__const char *__special_file);
42extern int umount2 (__const char *__special_file, int __flags);
Eric Andersen2cd439f2000-07-08 19:10:29 +000043
Erik Andersenfac10d72000-02-07 05:29:42 +000044struct _mtab_entry_t {
Erik Andersene49d5ec2000-02-08 19:58:47 +000045 char *device;
46 char *mountpt;
47 struct _mtab_entry_t *next;
Erik Andersenfac10d72000-02-07 05:29:42 +000048};
49
50static struct _mtab_entry_t *mtab_cache = NULL;
51
52
Eric Andersend0246fb1999-11-04 21:18:07 +000053
Erik Andersen6c5f2c62000-05-05 19:49:33 +000054#if defined BB_FEATURE_MOUNT_FORCE
55static int doForce = FALSE;
56#endif
Erik Andersence917322000-03-13 04:07:02 +000057#if defined BB_FEATURE_MOUNT_LOOP
58static int freeLoop = TRUE;
59#endif
Eric Andersend0246fb1999-11-04 21:18:07 +000060static int useMtab = TRUE;
61static int umountAll = FALSE;
Erik Andersenfac10d72000-02-07 05:29:42 +000062static int doRemount = FALSE;
Erik Andersene49d5ec2000-02-08 19:58:47 +000063extern const char mtab_file[]; /* Defined in utility.c */
Eric Andersend0246fb1999-11-04 21:18:07 +000064
Erik Andersenfac10d72000-02-07 05:29:42 +000065
Erik Andersen5b911dd2000-02-23 22:49:58 +000066
Erik Andersenfac10d72000-02-07 05:29:42 +000067/* 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
Erik Andersen5b911dd2000-02-23 22:49:58 +000070 *
71 * TODO: Perhaps switch to using Glibc's getmntent_r
72 * -Erik
Erik Andersenfac10d72000-02-07 05:29:42 +000073 */
74void mtab_read(void)
75{
Erik Andersene49d5ec2000-02-08 19:58:47 +000076 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) {
Matt Kraaidd19c692001-01-31 19:00:21 +000084 error_msg("Cannot open %s", mtab_file);
Erik Andersene49d5ec2000-02-08 19:58:47 +000085 return;
86 }
87 while ((e = getmntent(fp))) {
Erik Andersen0d068a22000-03-21 22:32:57 +000088 entry = xmalloc(sizeof(struct _mtab_entry_t));
Erik Andersene49d5ec2000-02-08 19:58:47 +000089 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);
Erik Andersenfac10d72000-02-07 05:29:42 +000095}
96
97char *mtab_getinfo(const char *match, const char which)
98{
Erik Andersene49d5ec2000-02-08 19:58:47 +000099 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 {
Erik Andersenfac10d72000-02-07 05:29:42 +0000107#if !defined BB_MTAB
Erik Andersene49d5ec2000-02-08 19:58:47 +0000108 if (strcmp(cur->device, "/dev/root") == 0) {
Erik Andersenec5bd902000-03-22 07:12:05 +0000109 /* 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);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000113 }
Erik Andersenfac10d72000-02-07 05:29:42 +0000114#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000115 return cur->device;
116 }
117 }
118 cur = cur->next;
Erik Andersenfac10d72000-02-07 05:29:42 +0000119 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000120 return NULL;
Erik Andersenfac10d72000-02-07 05:29:42 +0000121}
122
123char *mtab_first(void **iter)
124{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000125 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);
Erik Andersenfac10d72000-02-07 05:29:42 +0000132}
133
134char *mtab_next(void **iter)
135{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000136 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;
Erik Andersenfac10d72000-02-07 05:29:42 +0000143}
144
Erik Andersen298854f2000-03-23 01:09:18 +0000145/* Don't bother to clean up, since exit() does that
146 * automagically, so we can save a few bytes */
Eric Andersenb040d4f2000-07-25 18:01:20 +0000147#ifdef BB_FEATURE_CLEAN_UP
Erik Andersenfac10d72000-02-07 05:29:42 +0000148void mtab_free(void)
149{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000150 struct _mtab_entry_t *this, *next;
Erik Andersenfac10d72000-02-07 05:29:42 +0000151
Erik Andersene49d5ec2000-02-08 19:58:47 +0000152 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 }
Erik Andersenfac10d72000-02-07 05:29:42 +0000162}
Erik Andersen298854f2000-03-23 01:09:18 +0000163#endif
Erik Andersene132f4b2000-02-09 04:16:43 +0000164
165static 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
Erik Andersence917322000-03-13 04:07:02 +0000176 if (freeLoop == TRUE && blockDevice != NULL && !strncmp("/dev/loop", blockDevice, 9))
Erik Andersene132f4b2000-02-09 04:16:43 +0000177 /* this was a loop device, delete it */
178 del_loop(blockDevice);
179#endif
Erik Andersen6c5f2c62000-05-05 19:49:33 +0000180#if defined BB_FEATURE_MOUNT_FORCE
181 if (status != 0 && doForce == TRUE) {
182 status = umount2(blockDevice, MNT_FORCE);
183 if (status != 0) {
Matt Kraaidd19c692001-01-31 19:00:21 +0000184 error_msg_and_die("forced umount of %s failed!", blockDevice);
Erik Andersen6c5f2c62000-05-05 19:49:33 +0000185 }
186 }
187#endif
Erik Andersene132f4b2000-02-09 04:16:43 +0000188 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) {
Matt Kraaidd19c692001-01-31 19:00:21 +0000192 error_msg("%s busy - remounted read-only", blockDevice);
Erik Andersene132f4b2000-02-09 04:16:43 +0000193 } else {
Matt Kraaidd19c692001-01-31 19:00:21 +0000194 error_msg("Cannot remount %s read-only", blockDevice);
Erik Andersene132f4b2000-02-09 04:16:43 +0000195 }
196 }
Erik Andersene132f4b2000-02-09 04:16:43 +0000197 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
207static 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;
Matt Kraaifd4c58d2001-01-17 00:12:11 +0000217 if (!do_umount(mountpt, useMtab)) {
Erik Andersene132f4b2000-02-09 04:16:43 +0000218 /* Don't bother retrying the umount on busy devices */
219 if (errno == EBUSY) {
Matt Kraaia9819b22000-12-22 01:48:07 +0000220 perror_msg("%s", mountpt);
Matt Kraaifd4c58d2001-01-17 00:12:11 +0000221 status = FALSE;
Erik Andersene132f4b2000-02-09 04:16:43 +0000222 continue;
223 }
Matt Kraaifd4c58d2001-01-17 00:12:11 +0000224 if (!do_umount(mountpt, useMtab)) {
Erik Andersene132f4b2000-02-09 04:16:43 +0000225 printf("Couldn't umount %s on %s: %s\n",
226 mountpt, mtab_getinfo(mountpt, MTAB_GETDEVICE),
227 strerror(errno));
Matt Kraaifd4c58d2001-01-17 00:12:11 +0000228 status = FALSE;
Erik Andersene132f4b2000-02-09 04:16:43 +0000229 }
230 }
231 }
232 return (status);
233}
234
235extern int umount_main(int argc, char **argv)
236{
237 if (argc < 2) {
Eric Andersen67991cf2001-02-14 21:23:06 +0000238 show_usage();
Erik Andersene132f4b2000-02-09 04:16:43 +0000239 }
Eric Andersenb040d4f2000-07-25 18:01:20 +0000240#ifdef BB_FEATURE_CLEAN_UP
241 atexit(mtab_free);
242#endif
Erik Andersene132f4b2000-02-09 04:16:43 +0000243
244 /* Parse any options */
245 while (--argc > 0 && **(++argv) == '-') {
246 while (*++(*argv))
247 switch (**argv) {
248 case 'a':
249 umountAll = TRUE;
250 break;
Erik Andersence917322000-03-13 04:07:02 +0000251#if defined BB_FEATURE_MOUNT_LOOP
Erik Andersen6c5f2c62000-05-05 19:49:33 +0000252 case 'l':
Erik Andersence917322000-03-13 04:07:02 +0000253 freeLoop = FALSE;
254 break;
255#endif
Erik Andersene132f4b2000-02-09 04:16:43 +0000256#ifdef BB_MTAB
257 case 'n':
258 useMtab = FALSE;
259 break;
260#endif
Erik Andersen6c5f2c62000-05-05 19:49:33 +0000261#ifdef BB_FEATURE_MOUNT_FORCE
262 case 'f':
263 doForce = TRUE;
264 break;
265#endif
Erik Andersene132f4b2000-02-09 04:16:43 +0000266 case 'r':
267 doRemount = TRUE;
268 break;
Erik Andersen983b51b2000-04-04 18:14:25 +0000269 case 'v':
270 break; /* ignore -v */
Erik Andersene132f4b2000-02-09 04:16:43 +0000271 default:
Eric Andersen67991cf2001-02-14 21:23:06 +0000272 show_usage();
Erik Andersene132f4b2000-02-09 04:16:43 +0000273 }
274 }
275
276 mtab_read();
277 if (umountAll == TRUE) {
Matt Kraai3e856ce2000-12-01 02:55:13 +0000278 if (umount_all(useMtab) == TRUE)
279 return EXIT_SUCCESS;
280 else
281 return EXIT_FAILURE;
Erik Andersene132f4b2000-02-09 04:16:43 +0000282 }
Matt Kraai92ed8a32000-12-06 15:55:23 +0000283 if (do_umount(*argv, useMtab) == TRUE)
Matt Kraai3e856ce2000-12-01 02:55:13 +0000284 return EXIT_SUCCESS;
Matt Kraaia9819b22000-12-22 01:48:07 +0000285 perror_msg_and_die("%s", *argv);
Erik Andersene132f4b2000-02-09 04:16:43 +0000286}
287