2 * Copyright (C) 2007-2012 Kay Sievers <kay@vrfy.org>
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
28 void udev_main_log(struct udev *udev, int priority,
29 const char *file, int line, const char *fn,
30 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[])
37 printf("%s\n", VERSION);
41 static const struct udevadm_cmd udevadm_version = {
46 static int adm_help(struct udev *udev, int argc, char *argv[]);
48 static const struct udevadm_cmd udevadm_help = {
53 static const struct udevadm_cmd *udevadm_cmds[] = {
61 &udevadm_test_builtin,
66 static int adm_help(struct udev *udev, int argc, char *argv[])
70 fprintf(stderr, "Usage: udevadm [--help] [--version] [--debug] COMMAND [COMMAND OPTIONS]\n");
71 for (i = 0; i < ELEMENTSOF(udevadm_cmds); i++)
72 if (udevadm_cmds[i]->help != NULL)
73 printf(" %-12s %s\n", udevadm_cmds[i]->name, udevadm_cmds[i]->help);
74 fprintf(stderr, "\n");
78 static int run_command(struct udev *udev, const struct udevadm_cmd *cmd, int argc, char *argv[])
81 log_set_max_level(LOG_DEBUG);
82 log_debug("calling: %s", cmd->name);
83 return cmd->cmd(udev, argc, argv);
86 int main(int argc, char *argv[])
89 static const struct option options[] = {
90 { "debug", no_argument, NULL, 'd' },
91 { "help", no_argument, NULL, 'h' },
92 { "version", no_argument, NULL, 'V' },
103 log_parse_environment();
105 udev_set_log_fn(udev, udev_main_log);
111 option = getopt_long(argc, argv, "+dhV", options, NULL);
117 log_set_max_level(LOG_DEBUG);
118 udev_set_log_priority(udev, LOG_DEBUG);
121 rc = adm_help(udev, argc, argv);
124 rc = adm_version(udev, argc, argv);
130 command = argv[optind];
133 for (i = 0; i < ELEMENTSOF(udevadm_cmds); i++) {
134 if (streq(udevadm_cmds[i]->name, command)) {
137 /* we need '0' here to reset the internal state */
139 rc = run_command(udev, udevadm_cmds[i], argc, argv);
144 fprintf(stderr, "missing or unknown command\n\n");
145 adm_help(udev, argc, argv);