2013-08-07 10:41:42 +00:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
2014-03-07 13:49:40 +00:00
|
|
|
#include <mntent.h>
|
2013-08-07 08:52:10 +00:00
|
|
|
#include <stdio.h>
|
2013-10-07 18:11:40 +00:00
|
|
|
#include <stdlib.h>
|
2014-03-07 13:49:40 +00:00
|
|
|
#include <sys/mount.h>
|
2013-08-07 08:52:10 +00:00
|
|
|
#include "util.h"
|
|
|
|
|
|
|
|
static void
|
|
|
|
usage(void)
|
|
|
|
{
|
2014-03-07 13:49:40 +00:00
|
|
|
eprintf("usage: %s [-alfn] target\n", argv0);
|
2013-08-07 08:52:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2013-08-16 10:10:13 +00:00
|
|
|
main(int argc, char *argv[])
|
|
|
|
{
|
2013-08-07 08:52:10 +00:00
|
|
|
int i;
|
2014-03-07 13:49:40 +00:00
|
|
|
int aflag = 0;
|
2013-08-07 09:33:19 +00:00
|
|
|
int flags = 0;
|
2013-10-07 18:11:40 +00:00
|
|
|
int ret = EXIT_SUCCESS;
|
2014-03-07 13:49:40 +00:00
|
|
|
FILE *fp;
|
|
|
|
struct mntent *me;
|
2013-08-07 08:52:10 +00:00
|
|
|
|
|
|
|
ARGBEGIN {
|
2014-03-07 13:49:40 +00:00
|
|
|
case 'a':
|
|
|
|
aflag = 1;
|
|
|
|
break;
|
2013-08-07 08:52:10 +00:00
|
|
|
case 'f':
|
2013-08-14 13:19:05 +00:00
|
|
|
flags |= MNT_FORCE;
|
2013-08-07 09:33:19 +00:00
|
|
|
break;
|
|
|
|
case 'l':
|
2013-08-14 13:19:05 +00:00
|
|
|
flags |= MNT_DETACH;
|
2013-08-07 08:52:10 +00:00
|
|
|
break;
|
2013-09-06 10:01:03 +00:00
|
|
|
case 'n':
|
|
|
|
break;
|
2013-08-07 08:52:10 +00:00
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
} ARGEND;
|
2013-08-10 10:38:30 +00:00
|
|
|
|
2014-03-07 13:49:40 +00:00
|
|
|
if (argc < 1 && aflag == 0)
|
2013-08-07 08:52:10 +00:00
|
|
|
usage();
|
2013-08-10 10:38:30 +00:00
|
|
|
|
2014-03-07 13:49:40 +00:00
|
|
|
if (aflag == 1) {
|
|
|
|
fp = setmntent("/etc/fstab", "r");
|
|
|
|
if (!fp)
|
|
|
|
eprintf("setmntent %s:", "/etc/fstab");
|
|
|
|
while ((me = getmntent(fp))) {
|
|
|
|
if (umount2(me->mnt_dir, flags) < 0) {
|
2014-03-07 14:00:44 +00:00
|
|
|
perror("umount2");
|
2014-03-07 13:49:40 +00:00
|
|
|
ret = EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
endmntent(fp);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2013-08-07 08:52:10 +00:00
|
|
|
for (i = 0; i < argc; i++) {
|
2014-03-07 13:52:31 +00:00
|
|
|
if (umount2(argv[i], flags) < 0) {
|
2014-03-07 14:00:44 +00:00
|
|
|
perror("umount2");
|
2014-03-07 13:52:31 +00:00
|
|
|
ret = EXIT_FAILURE;
|
|
|
|
}
|
2013-08-07 08:52:10 +00:00
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|