openrc/src/mountinfo.c

378 lines
7.6 KiB
C
Raw Normal View History

/*
mountinfo.c
Obtains information about mounted filesystems.
Copyright 2007 Gentoo Foundation
*/
2007-04-17 18:14:32 +05:30
#define APPLET "mountinfo"
2007-07-31 22:10:32 +05:30
#include <sys/types.h>
2007-07-26 02:28:23 +05:30
#if defined(__DragonFly__) || defined(__FreeBSD__) || \
defined(__NetBSD__) || defined(__OpenBSD__)
#define BSD
#include <sys/param.h>
#include <sys/ucred.h>
#include <sys/mount.h>
#endif
#include <errno.h>
#include <getopt.h>
#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
2007-07-31 22:10:32 +05:30
#include <regex.h>
#include "builtins.h"
#include "einfo.h"
#include "rc.h"
#include "rc-misc.h"
#include "strlist.h"
typedef enum {
mount_from,
mount_to,
mount_fstype,
mount_options
} mount_type;
struct args {
regex_t *node_regex;
regex_t *skip_node_regex;
regex_t *fstype_regex;
regex_t *skip_fstype_regex;
regex_t *options_regex;
regex_t *skip_options_regex;
char **mounts;
mount_type mount_type;
};
static int process_mount (char ***list, struct args *args,
char *from, char *to, char *fstype, char *options)
{
char *p;
errno = ENOENT;
#ifdef __linux__
/* Skip the really silly rootfs */
if (strcmp (fstype, "rootfs") == 0)
return (-1);
#endif
if (args->node_regex &&
regexec (args->node_regex, from, 0, NULL, 0) != 0)
return (1);
if (args->skip_node_regex &&
regexec (args->skip_node_regex, from, 0, NULL, 0) == 0)
return (1);
if (args->fstype_regex &&
regexec (args->fstype_regex, fstype, 0, NULL, 0) != 0)
return (-1);
if (args->skip_fstype_regex &&
regexec (args->skip_fstype_regex, fstype, 0, NULL, 0) == 0)
return (-1);
if (args->options_regex &&
regexec (args->options_regex, options, 0, NULL, 0) != 0)
return (-1);
if (args->skip_options_regex &&
regexec (args->skip_options_regex, options, 0, NULL, 0) == 0)
return (-1);
if (args->mounts) {
bool found = false;
int j;
char *mnt;
STRLIST_FOREACH (args->mounts, mnt, j)
if (strcmp (mnt, to) == 0) {
found = true;
break;
}
if (! found)
return (-1);
}
switch (args->mount_type) {
case mount_from:
p = from;
break;
case mount_to:
p = to;
break;
case mount_fstype:
p = fstype;
break;
case mount_options:
p = options;
break;
default:
p = NULL;
errno = EINVAL;
break;
}
if (p) {
errno = 0;
rc_strlist_addsortc (list, p);
return (0);
}
return (-1);
}
2007-07-26 02:28:23 +05:30
#ifdef BSD
/* Translate the mounted options to english
* This is taken directly from FreeBSD mount.c */
static struct opt {
int o_opt;
const char *o_name;
} optnames[] = {
{ MNT_ASYNC, "asynchronous" },
{ MNT_EXPORTED, "NFS exported" },
{ MNT_LOCAL, "local" },
{ MNT_NOATIME, "noatime" },
{ MNT_NOEXEC, "noexec" },
{ MNT_NOSUID, "nosuid" },
{ MNT_NOSYMFOLLOW, "nosymfollow" },
{ MNT_QUOTA, "with quotas" },
{ MNT_RDONLY, "read-only" },
{ MNT_SYNCHRONOUS, "synchronous" },
{ MNT_UNION, "union" },
{ MNT_NOCLUSTERR, "noclusterr" },
{ MNT_NOCLUSTERW, "noclusterw" },
{ MNT_SUIDDIR, "suiddir" },
{ MNT_SOFTDEP, "soft-updates" },
{ MNT_MULTILABEL, "multilabel" },
{ MNT_ACLS, "acls" },
#ifdef MNT_GJOURNAL
{ MNT_GJOURNAL, "gjournal" },
#endif
{ 0, NULL }
};
static char **find_mounts (struct args *args)
{
2007-04-11 18:14:47 +05:30
struct statfs *mnts;
int nmnts;
int i;
char **list = NULL;
char *options = NULL;
int flags;
struct opt *o;
2007-04-11 18:14:47 +05:30
if ((nmnts = getmntinfo (&mnts, MNT_NOWAIT)) == 0)
eerrorx ("getmntinfo: %s", strerror (errno));
for (i = 0; i < nmnts; i++) {
flags = mnts[i].f_flags & MNT_VISFLAGMASK;
for (o = optnames; flags && o->o_opt; o++) {
if (flags & o->o_opt) {
if (! options)
options = rc_xstrdup (o->o_name);
else {
char *tmp = NULL;
2007-09-18 17:38:04 +05:30
asprintf (&tmp, "%s,%s", options, o->o_name);
free (options);
options = tmp;
2007-04-11 18:14:47 +05:30
}
}
flags &= ~o->o_opt;
2007-04-11 18:14:47 +05:30
}
process_mount (&list, args,
mnts[i].f_mntfromname,
mnts[i].f_mntonname,
mnts[i].f_fstypename,
options);
free (options);
options = NULL;
2007-04-11 18:14:47 +05:30
}
return (list);
}
#elif defined (__linux__)
static char **find_mounts (struct args *args)
{
2007-04-11 18:14:47 +05:30
FILE *fp;
char buffer[PATH_MAX * 3];
char *p;
char *from;
char *to;
char *fst;
char *opts;
2007-04-11 18:14:47 +05:30
char **list = NULL;
if ((fp = fopen ("/proc/mounts", "r")) == NULL)
eerrorx ("getmntinfo: %s", strerror (errno));
while (fgets (buffer, sizeof (buffer), fp)) {
p = buffer;
from = strsep (&p, " ");
to = strsep (&p, " ");
fst = strsep (&p, " ");
opts = strsep (&p, " ");
2007-04-11 18:14:47 +05:30
process_mount (&list, args, from, to, fst, opts);
2007-04-11 18:14:47 +05:30
}
fclose (fp);
return (list);
}
#else
# error "Operating system not supported!"
#endif
2007-09-24 14:37:00 +05:30
static regex_t *get_regex (const char *string)
{
regex_t *reg = rc_xmalloc (sizeof (regex_t));
int result;
char buffer[256];
if ((result = regcomp (reg, string, REG_EXTENDED | REG_NOSUB)) != 0)
{
regerror (result, reg, buffer, sizeof (buffer));
eerrorx ("%s: invalid regex `%s'", APPLET, buffer);
}
return (reg);
}
2007-06-28 21:14:14 +05:30
#include "_usage.h"
2007-09-21 17:22:37 +05:30
#define extraopts "[mount1] [mount2] ..."
2007-09-26 04:47:25 +05:30
#define getoptstring "f:F:n:N:o:O:p:P:ist" getoptstring_COMMON
2007-04-13 20:39:37 +05:30
static struct option longopts[] = {
{ "fstype-regex", 1, NULL, 'f'},
{ "skip-fstype-regex", 1, NULL, 'F'},
{ "node-regex", 1, NULL, 'n'},
{ "skip-node-regex", 1, NULL, 'N'},
{ "options-regex", 1, NULL, 'o'},
{ "skip-options-regex", 1, NULL, 'O'},
{ "point-regex", 1, NULL, 'p'},
{ "skip-point-regex", 1, NULL, 'P'},
{ "options", 0, NULL, 'i'},
{ "fstype", 0, NULL, 's'},
{ "node", 0, NULL, 't'},
2007-06-28 21:14:14 +05:30
longopts_COMMON
2007-04-13 20:39:37 +05:30
{ NULL, 0, NULL, 0}
};
static const char * const longopts_help[] = {
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
longopts_help_COMMON
};
2007-04-17 18:14:32 +05:30
#include "_usage.c"
2007-04-13 20:39:37 +05:30
int mountinfo (int argc, char **argv)
{
2007-04-11 18:14:47 +05:30
int i;
struct args args;
regex_t *point_regex = NULL;
regex_t *skip_point_regex = NULL;
2007-04-11 18:14:47 +05:30
char **nodes = NULL;
char *n;
int opt;
int result;
#define DO_REG(_var) \
if (_var) free (_var); \
_var = get_regex (optarg);
2007-09-24 14:37:00 +05:30
#define REG_FREE(_var) \
if (_var) { regfree (_var); free (_var); }
memset (&args, 0, sizeof (struct args));
args.mount_type = mount_to;
while ((opt = getopt_long (argc, argv, getoptstring,
longopts, (int *) 0)) != -1)
{
switch (opt) {
case 'f':
DO_REG (args.fstype_regex);
break;
case 'F':
DO_REG (args.skip_fstype_regex);
break;
case 'n':
DO_REG (args.node_regex);
break;
case 'N':
DO_REG (args.skip_node_regex);
break;
2007-09-03 19:32:15 +05:30
case 'o':
DO_REG (args.options_regex);
break;
case 'O':
DO_REG (args.skip_options_regex);
2007-09-03 19:32:15 +05:30
break;
case 'p':
DO_REG (point_regex);
break;
case 'P':
DO_REG (skip_point_regex);
break;
case 'i':
args.mount_type = mount_options;
break;
case 's':
args.mount_type = mount_fstype;
break;
case 't':
args.mount_type = mount_from;
break;
2007-04-11 18:14:47 +05:30
case_RC_COMMON_GETOPT
2007-04-11 18:14:47 +05:30
}
}
2007-04-11 18:14:47 +05:30
while (optind < argc) {
if (argv[optind][0] != '/')
eerrorx ("%s: `%s' is not a mount point", argv[0], argv[optind]);
rc_strlist_add (&args.mounts, argv[optind++]);
2007-04-11 18:14:47 +05:30
}
nodes = find_mounts (&args);
2007-09-24 14:37:00 +05:30
REG_FREE (args.fstype_regex);
REG_FREE (args.skip_fstype_regex);
REG_FREE (args.node_regex);
REG_FREE (args.skip_node_regex);
REG_FREE (args.options_regex);
REG_FREE (args.skip_options_regex);
rc_strlist_reverse (nodes);
2007-04-11 18:14:47 +05:30
result = EXIT_FAILURE;
STRLIST_FOREACH (nodes, n, i) {
if (point_regex && regexec (point_regex, n, 0, NULL, 0) != 0)
continue;
if (skip_point_regex && regexec (skip_point_regex, n, 0, NULL, 0) == 0)
2007-04-11 18:14:47 +05:30
continue;
2007-09-25 23:00:07 +05:30
if (! rc_is_env ("RC_QUIET", "yes"))
2007-09-03 19:32:15 +05:30
printf ("%s\n", n);
2007-04-11 18:14:47 +05:30
result = EXIT_SUCCESS;
}
rc_strlist_free (nodes);
2007-09-24 14:37:00 +05:30
REG_FREE (point_regex);
REG_FREE (skip_point_regex);
2007-04-11 18:14:47 +05:30
exit (result);
}