1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
3 * Copyright (C) 2007-2012 Kay Sievers <kay@vrfy.org>
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
27 #include "selinux-util.h"
30 static int adm_version(struct udev *udev, int argc, char *argv[]) {
31 printf("%s\n", VERSION);
35 static const struct udevadm_cmd udevadm_version = {
40 static int adm_help(struct udev *udev, int argc, char *argv[]);
42 static const struct udevadm_cmd udevadm_help = {
47 static const struct udevadm_cmd *udevadm_cmds[] = {
55 &udevadm_test_builtin,
60 static int adm_help(struct udev *udev, int argc, char *argv[]) {
63 fprintf(stderr, "Usage: udevadm [--help] [--version] [--debug] COMMAND [COMMAND OPTIONS]\n");
64 for (i = 0; i < ELEMENTSOF(udevadm_cmds); i++)
65 if (udevadm_cmds[i]->help != NULL)
66 printf(" %-12s %s\n", udevadm_cmds[i]->name, udevadm_cmds[i]->help);
67 fprintf(stderr, "\n");
71 static int run_command(struct udev *udev, const struct udevadm_cmd *cmd, int argc, char *argv[]) {
73 log_set_max_level(LOG_DEBUG);
74 log_debug("calling: %s", cmd->name);
75 return cmd->cmd(udev, argc, argv);
78 int main(int argc, char *argv[]) {
80 static const struct option options[] = {
81 { "debug", no_argument, NULL, 'd' },
82 { "help", no_argument, NULL, 'h' },
83 { "version", no_argument, NULL, 'V' },
94 log_parse_environment();
96 mac_selinux_init("/dev");
98 while ((c = getopt_long(argc, argv, "+dhV", options, NULL)) >= 0)
102 log_set_max_level(LOG_DEBUG);
106 rc = adm_help(udev, argc, argv);
110 rc = adm_version(udev, argc, argv);
117 command = argv[optind];
120 for (i = 0; i < ELEMENTSOF(udevadm_cmds); i++)
121 if (streq(udevadm_cmds[i]->name, command)) {
124 /* we need '0' here to reset the internal state */
126 rc = run_command(udev, udevadm_cmds[i], argc, argv);
130 fprintf(stderr, "%s: missing or unknown command\n", program_invocation_short_name);
133 mac_selinux_finish();