2000-02-08 19:58:47 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-10-09 00:25:00 +00:00
|
|
|
/*
|
|
|
|
* Mini umount implementation for busybox
|
|
|
|
*
|
1999-10-20 22:08:37 +00:00
|
|
|
*
|
2000-04-13 01:18:56 +00:00
|
|
|
* Copyright (C) 1999,2000 by Lineo, inc.
|
1999-10-20 22:08:37 +00:00
|
|
|
* Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
|
1999-10-09 00:25:00 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2000-09-25 21:45:58 +00:00
|
|
|
#include "busybox.h"
|
1999-10-05 16:24:54 +00:00
|
|
|
#include <stdio.h>
|
1999-10-09 00:25:00 +00:00
|
|
|
#include <mntent.h>
|
|
|
|
#include <errno.h>
|
2000-06-19 18:38:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
#define MNT_FORCE 1
|
2000-07-08 18:55:24 +00:00
|
|
|
#define MS_MGC_VAL 0xc0ed0000 /* Magic number indicatng "new" flags */
|
|
|
|
#define MS_REMOUNT 32 /* Alter flags of a mounted FS. */
|
|
|
|
#define MS_RDONLY 1 /* Mount read-only. */
|
2000-07-08 19:10:29 +00:00
|
|
|
|
2000-07-08 19:20:49 +00:00
|
|
|
extern int mount (__const char *__special_file, __const char *__dir,
|
|
|
|
__const char *__fstype, unsigned long int __rwflag,
|
|
|
|
__const void *__data);
|
|
|
|
extern int umount (__const char *__special_file);
|
|
|
|
extern int umount2 (__const char *__special_file, int __flags);
|
2000-07-08 19:10:29 +00:00
|
|
|
|
2000-02-07 05:29:42 +00:00
|
|
|
struct _mtab_entry_t {
|
2000-02-08 19:58:47 +00:00
|
|
|
char *device;
|
|
|
|
char *mountpt;
|
|
|
|
struct _mtab_entry_t *next;
|
2000-02-07 05:29:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static struct _mtab_entry_t *mtab_cache = NULL;
|
|
|
|
|
|
|
|
|
1999-11-04 21:18:07 +00:00
|
|
|
|
2000-05-05 19:49:33 +00:00
|
|
|
#if defined BB_FEATURE_MOUNT_FORCE
|
|
|
|
static int doForce = FALSE;
|
|
|
|
#endif
|
2000-03-13 04:07:02 +00:00
|
|
|
#if defined BB_FEATURE_MOUNT_LOOP
|
|
|
|
static int freeLoop = TRUE;
|
|
|
|
#endif
|
1999-11-04 21:18:07 +00:00
|
|
|
static int useMtab = TRUE;
|
|
|
|
static int umountAll = FALSE;
|
2000-02-07 05:29:42 +00:00
|
|
|
static int doRemount = FALSE;
|
2000-02-08 19:58:47 +00:00
|
|
|
extern const char mtab_file[]; /* Defined in utility.c */
|
1999-11-04 21:18:07 +00:00
|
|
|
|
2000-02-09 04:16:43 +00:00
|
|
|
|
2000-02-23 22:49:58 +00:00
|
|
|
|
2000-02-09 04:16:43 +00:00
|
|
|
/* These functions are here because the getmntent functions do not appear
|
|
|
|
* to be re-entrant, which leads to all sorts of problems when we try to
|
|
|
|
* use them recursively - randolph
|
2000-02-23 22:49:58 +00:00
|
|
|
*
|
|
|
|
* TODO: Perhaps switch to using Glibc's getmntent_r
|
|
|
|
* -Erik
|
2000-02-09 04:16:43 +00:00
|
|
|
*/
|
|
|
|
void mtab_read(void)
|
|
|
|
{
|
|
|
|
struct _mtab_entry_t *entry = NULL;
|
|
|
|
struct mntent *e;
|
|
|
|
FILE *fp;
|
|
|
|
|
|
|
|
if (mtab_cache != NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if ((fp = setmntent(mtab_file, "r")) == NULL) {
|
2000-07-14 01:51:25 +00:00
|
|
|
errorMsg("Cannot open %s\n", mtab_file);
|
2000-02-09 04:16:43 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
while ((e = getmntent(fp))) {
|
2000-03-21 22:32:57 +00:00
|
|
|
entry = xmalloc(sizeof(struct _mtab_entry_t));
|
2000-02-09 04:16:43 +00:00
|
|
|
entry->device = strdup(e->mnt_fsname);
|
|
|
|
entry->mountpt = strdup(e->mnt_dir);
|
|
|
|
entry->next = mtab_cache;
|
|
|
|
mtab_cache = entry;
|
|
|
|
}
|
|
|
|
endmntent(fp);
|
|
|
|
}
|
|
|
|
|
|
|
|
char *mtab_getinfo(const char *match, const char which)
|
|
|
|
{
|
|
|
|
struct _mtab_entry_t *cur = mtab_cache;
|
|
|
|
|
|
|
|
while (cur) {
|
|
|
|
if (strcmp(cur->mountpt, match) == 0 ||
|
|
|
|
strcmp(cur->device, match) == 0) {
|
|
|
|
if (which == MTAB_GETMOUNTPT) {
|
|
|
|
return cur->mountpt;
|
|
|
|
} else {
|
|
|
|
#if !defined BB_MTAB
|
|
|
|
if (strcmp(cur->device, "/dev/root") == 0) {
|
2000-03-22 07:12:05 +00:00
|
|
|
/* Adjusts device to be the real root device,
|
|
|
|
* or leaves device alone if it can't find it */
|
|
|
|
find_real_root_device_name( cur->device);
|
|
|
|
return ( cur->device);
|
2000-02-09 04:16:43 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return cur->device;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
cur = cur->next;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *mtab_first(void **iter)
|
|
|
|
{
|
|
|
|
struct _mtab_entry_t *mtab_iter;
|
|
|
|
|
|
|
|
if (!iter)
|
|
|
|
return NULL;
|
|
|
|
mtab_iter = mtab_cache;
|
|
|
|
*iter = (void *) mtab_iter;
|
|
|
|
return mtab_next(iter);
|
|
|
|
}
|
|
|
|
|
|
|
|
char *mtab_next(void **iter)
|
|
|
|
{
|
|
|
|
char *mp;
|
|
|
|
|
|
|
|
if (iter == NULL || *iter == NULL)
|
|
|
|
return NULL;
|
|
|
|
mp = ((struct _mtab_entry_t *) (*iter))->mountpt;
|
|
|
|
*iter = (void *) ((struct _mtab_entry_t *) (*iter))->next;
|
|
|
|
return mp;
|
|
|
|
}
|
|
|
|
|
2000-03-23 01:09:18 +00:00
|
|
|
/* Don't bother to clean up, since exit() does that
|
|
|
|
* automagically, so we can save a few bytes */
|
2000-07-25 18:01:20 +00:00
|
|
|
#ifdef BB_FEATURE_CLEAN_UP
|
2000-02-09 04:16:43 +00:00
|
|
|
void mtab_free(void)
|
|
|
|
{
|
|
|
|
struct _mtab_entry_t *this, *next;
|
|
|
|
|
|
|
|
this = mtab_cache;
|
|
|
|
while (this) {
|
|
|
|
next = this->next;
|
|
|
|
if (this->device)
|
|
|
|
free(this->device);
|
|
|
|
if (this->mountpt)
|
|
|
|
free(this->mountpt);
|
|
|
|
free(this);
|
|
|
|
this = next;
|
|
|
|
}
|
|
|
|
}
|
2000-03-23 01:09:18 +00:00
|
|
|
#endif
|
2000-01-26 20:06:48 +00:00
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
static int do_umount(const char *name, int useMtab)
|
1999-11-04 21:18:07 +00:00
|
|
|
{
|
2000-02-08 19:58:47 +00:00
|
|
|
int status;
|
|
|
|
char *blockDevice = mtab_getinfo(name, MTAB_GETDEVICE);
|
2000-02-07 05:29:42 +00:00
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
if (blockDevice && strcmp(blockDevice, name) == 0)
|
|
|
|
name = mtab_getinfo(blockDevice, MTAB_GETMOUNTPT);
|
2000-01-13 06:38:14 +00:00
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
status = umount(name);
|
1999-11-04 21:18:07 +00:00
|
|
|
|
2000-01-13 06:38:14 +00:00
|
|
|
#if defined BB_FEATURE_MOUNT_LOOP
|
2000-03-13 04:07:02 +00:00
|
|
|
if (freeLoop == TRUE && blockDevice != NULL && !strncmp("/dev/loop", blockDevice, 9))
|
2000-02-08 19:58:47 +00:00
|
|
|
/* this was a loop device, delete it */
|
|
|
|
del_loop(blockDevice);
|
2000-05-05 19:49:33 +00:00
|
|
|
#endif
|
|
|
|
#if defined BB_FEATURE_MOUNT_FORCE
|
|
|
|
if (status != 0 && doForce == TRUE) {
|
|
|
|
status = umount2(blockDevice, MNT_FORCE);
|
|
|
|
if (status != 0) {
|
2000-07-12 17:02:35 +00:00
|
|
|
fatalError("forced umount of %s failed!\n", blockDevice);
|
2000-05-05 19:49:33 +00:00
|
|
|
}
|
|
|
|
}
|
2000-01-13 06:38:14 +00:00
|
|
|
#endif
|
2000-02-08 19:58:47 +00:00
|
|
|
if (status != 0 && doRemount == TRUE && errno == EBUSY) {
|
|
|
|
status = mount(blockDevice, name, NULL,
|
|
|
|
MS_MGC_VAL | MS_REMOUNT | MS_RDONLY, NULL);
|
|
|
|
if (status == 0) {
|
2000-07-14 01:51:25 +00:00
|
|
|
errorMsg("%s busy - remounted read-only\n", blockDevice);
|
2000-02-08 19:58:47 +00:00
|
|
|
} else {
|
2000-07-14 01:51:25 +00:00
|
|
|
errorMsg("Cannot remount %s read-only\n", blockDevice);
|
2000-02-08 19:58:47 +00:00
|
|
|
}
|
2000-02-07 05:29:42 +00:00
|
|
|
}
|
2000-02-08 19:58:47 +00:00
|
|
|
if (status == 0) {
|
2000-02-07 05:29:42 +00:00
|
|
|
#if defined BB_MTAB
|
2000-02-08 19:58:47 +00:00
|
|
|
if (useMtab == TRUE)
|
|
|
|
erase_mtab(name);
|
1999-11-04 21:18:07 +00:00
|
|
|
#endif
|
2000-02-08 19:58:47 +00:00
|
|
|
return (TRUE);
|
|
|
|
}
|
|
|
|
return (FALSE);
|
2000-01-13 06:38:14 +00:00
|
|
|
}
|
1999-10-05 16:24:54 +00:00
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
static int umount_all(int useMtab)
|
1999-10-05 16:24:54 +00:00
|
|
|
{
|
2000-02-07 05:29:42 +00:00
|
|
|
int status = TRUE;
|
|
|
|
char *mountpt;
|
|
|
|
void *iter;
|
|
|
|
|
|
|
|
for (mountpt = mtab_first(&iter); mountpt; mountpt = mtab_next(&iter)) {
|
2000-02-09 04:16:43 +00:00
|
|
|
/* Never umount /proc on a umount -a */
|
|
|
|
if (strstr(mountpt, "proc")!= NULL)
|
|
|
|
continue;
|
2000-02-08 19:58:47 +00:00
|
|
|
status = do_umount(mountpt, useMtab);
|
2000-02-07 05:29:42 +00:00
|
|
|
if (status != 0) {
|
2000-02-08 19:58:47 +00:00
|
|
|
/* Don't bother retrying the umount on busy devices */
|
|
|
|
if (errno == EBUSY) {
|
|
|
|
perror(mountpt);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
status = do_umount(mountpt, useMtab);
|
|
|
|
if (status != 0) {
|
|
|
|
printf("Couldn't umount %s on %s: %s\n",
|
|
|
|
mountpt, mtab_getinfo(mountpt, MTAB_GETDEVICE),
|
|
|
|
strerror(errno));
|
|
|
|
}
|
1999-10-05 16:24:54 +00:00
|
|
|
}
|
2000-02-08 19:58:47 +00:00
|
|
|
}
|
|
|
|
return (status);
|
1999-10-05 16:24:54 +00:00
|
|
|
}
|
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
extern int umount_main(int argc, char **argv)
|
1999-10-05 16:24:54 +00:00
|
|
|
{
|
2000-02-08 19:58:47 +00:00
|
|
|
if (argc < 2) {
|
|
|
|
usage(umount_usage);
|
|
|
|
}
|
2000-07-25 18:01:20 +00:00
|
|
|
#ifdef BB_FEATURE_CLEAN_UP
|
|
|
|
atexit(mtab_free);
|
|
|
|
#endif
|
2000-02-08 19:58:47 +00:00
|
|
|
|
|
|
|
/* Parse any options */
|
|
|
|
while (--argc > 0 && **(++argv) == '-') {
|
|
|
|
while (*++(*argv))
|
|
|
|
switch (**argv) {
|
|
|
|
case 'a':
|
|
|
|
umountAll = TRUE;
|
|
|
|
break;
|
2000-03-13 04:07:02 +00:00
|
|
|
#if defined BB_FEATURE_MOUNT_LOOP
|
2000-05-05 19:49:33 +00:00
|
|
|
case 'l':
|
2000-03-13 04:07:02 +00:00
|
|
|
freeLoop = FALSE;
|
|
|
|
break;
|
|
|
|
#endif
|
1999-11-04 21:18:07 +00:00
|
|
|
#ifdef BB_MTAB
|
2000-02-08 19:58:47 +00:00
|
|
|
case 'n':
|
|
|
|
useMtab = FALSE;
|
|
|
|
break;
|
2000-05-05 19:49:33 +00:00
|
|
|
#endif
|
|
|
|
#ifdef BB_FEATURE_MOUNT_FORCE
|
|
|
|
case 'f':
|
|
|
|
doForce = TRUE;
|
|
|
|
break;
|
2000-02-07 05:29:42 +00:00
|
|
|
#endif
|
2000-02-08 19:58:47 +00:00
|
|
|
case 'r':
|
|
|
|
doRemount = TRUE;
|
|
|
|
break;
|
2000-04-04 18:14:25 +00:00
|
|
|
case 'v':
|
|
|
|
break; /* ignore -v */
|
2000-02-08 19:58:47 +00:00
|
|
|
default:
|
|
|
|
usage(umount_usage);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mtab_read();
|
|
|
|
if (umountAll == TRUE) {
|
|
|
|
exit(umount_all(useMtab));
|
|
|
|
}
|
|
|
|
if (do_umount(*argv, useMtab) == 0)
|
|
|
|
exit(TRUE);
|
2000-06-19 18:38:51 +00:00
|
|
|
perror("umount");
|
|
|
|
return(FALSE);
|
1999-10-05 16:24:54 +00:00
|
|
|
}
|
1999-10-09 00:25:00 +00:00
|
|
|
|