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/>.
29 void udev_main_log(struct udev *udev, int priority,
30 const char *file, int line, const char *fn,
31 const char *format, va_list args) {
32 log_metav(priority, file, line, fn, format, args);
35 static int adm_version(struct udev *udev, int argc, char *argv[]) {
36 printf("%s\n", VERSION);
40 static const struct udevadm_cmd udevadm_version = {
45 static int adm_help(struct udev *udev, int argc, char *argv[]);
47 static const struct udevadm_cmd udevadm_help = {
52 static const struct udevadm_cmd *udevadm_cmds[] = {
60 &udevadm_test_builtin,
65 static int adm_help(struct udev *udev, int argc, char *argv[]) {
68 fprintf(stderr, "Usage: udevadm [--help] [--version] [--debug] COMMAND [COMMAND OPTIONS]\n");
69 for (i = 0; i < ELEMENTSOF(udevadm_cmds); i++)
70 if (udevadm_cmds[i]->help != NULL)
71 printf(" %-12s %s\n", udevadm_cmds[i]->name, udevadm_cmds[i]->help);
72 fprintf(stderr, "\n");
76 static int run_command(struct udev *udev, const struct udevadm_cmd *cmd, int argc, char *argv[]) {
78 log_set_max_level(LOG_DEBUG);
79 log_debug("calling: %s", cmd->name);
80 return cmd->cmd(udev, argc, argv);
83 int main(int argc, char *argv[]) {
85 static const struct option options[] = {
86 { "debug", no_argument, NULL, 'd' },
87 { "help", no_argument, NULL, 'h' },
88 { "version", no_argument, NULL, 'V' },
99 log_parse_environment();
101 udev_set_log_fn(udev, udev_main_log);
104 while ((c = getopt_long(argc, argv, "+dhV", options, NULL)) >= 0)
108 log_set_max_level(LOG_DEBUG);
109 udev_set_log_priority(udev, LOG_DEBUG);
113 rc = adm_help(udev, argc, argv);
117 rc = adm_version(udev, argc, argv);
124 command = argv[optind];
127 for (i = 0; i < ELEMENTSOF(udevadm_cmds); i++)
128 if (streq(udevadm_cmds[i]->name, command)) {
131 /* we need '0' here to reset the internal state */
133 rc = run_command(udev, udevadm_cmds[i], argc, argv);
137 fprintf(stderr, "%s: missing or unknown command", program_invocation_short_name);