ubase/umount.c

89 lines
1.4 KiB
C
Raw Normal View History

/* See LICENSE file for copyright and license details. */
2014-06-30 14:03:41 -04:00
#include <sys/mount.h>
2014-03-07 08:49:40 -05:00
#include <mntent.h>
2013-08-07 04:52:10 -04:00
#include <stdio.h>
2013-10-07 14:11:40 -04:00
#include <stdlib.h>
2014-03-12 10:35:20 -04:00
#include <string.h>
2014-06-30 14:03:41 -04:00
2013-08-07 04:52:10 -04:00
#include "util.h"
static int umountall(int);
2013-08-07 04:52:10 -04:00
static void
usage(void)
{
weprintf("usage: %s [-lfn] target...\n", argv0);
2014-03-12 10:28:56 -04:00
weprintf("usage: %s -a [-lfn]\n", argv0);
2014-10-02 18:45:25 -04:00
exit(1);
2013-08-07 04:52:10 -04:00
}
int
main(int argc, char *argv[])
{
2013-08-07 04:52:10 -04:00
int i;
2014-03-07 08:49:40 -05:00
int aflag = 0;
int flags = 0;
2014-10-02 18:45:25 -04:00
int ret = 0;
2013-08-07 04:52:10 -04:00
ARGBEGIN {
2014-03-07 08:49:40 -05:00
case 'a':
aflag = 1;
break;
2013-08-07 04:52:10 -04:00
case 'f':
flags |= MNT_FORCE;
break;
case 'l':
flags |= MNT_DETACH;
2013-08-07 04:52:10 -04:00
break;
case 'n':
break;
2013-08-07 04:52:10 -04:00
default:
usage();
} ARGEND;
2013-08-10 06:38:30 -04:00
2014-03-07 08:49:40 -05:00
if (argc < 1 && aflag == 0)
2013-08-07 04:52:10 -04:00
usage();
2013-08-10 06:38:30 -04:00
if (aflag == 1)
return umountall(flags);
2014-03-07 08:49:40 -05:00
2013-08-07 04:52:10 -04:00
for (i = 0; i < argc; i++) {
if (umount2(argv[i], flags) < 0) {
weprintf("umount2 %s:", argv[i]);
2014-10-02 18:45:25 -04:00
ret = 1;
}
2013-08-07 04:52:10 -04:00
}
return ret;
}
static int
umountall(int flags)
{
FILE *fp;
struct mntent *me;
int ret;
char **mntdirs = NULL;
int len = 0;
fp = setmntent("/proc/mounts", "r");
if (!fp)
eprintf("setmntent %s:", "/proc/mounts");
while ((me = getmntent(fp))) {
if (strcmp(me->mnt_type, "proc") == 0)
continue;
mntdirs = erealloc(mntdirs, ++len * sizeof(*mntdirs));
mntdirs[len - 1] = estrdup(me->mnt_dir);
}
endmntent(fp);
while (--len >= 0) {
if (umount2(mntdirs[len], flags) < 0) {
weprintf("umount2 %s:", mntdirs[len]);
2014-10-02 18:45:25 -04:00
ret = 1;
}
free(mntdirs[len]);
}
free(mntdirs);
return ret;
}