]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/udev/udevadm.c
log: correct usage of logging API at a few places
[thirdparty/systemd.git] / src / udev / udevadm.c
1 /*
2 * Copyright (C) 2007-2012 Kay Sievers <kay.sievers@vrfy.org>
3 *
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.
8 *
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.
13 *
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/>.
16 */
17
18 #include <unistd.h>
19 #include <stdio.h>
20 #include <stdlib.h>
21 #include <stddef.h>
22 #include <string.h>
23 #include <errno.h>
24 #include <getopt.h>
25
26 #include "udev.h"
27
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)
31 {
32 log_metav(priority, file, line, fn, format, args);
33 }
34
35 static int adm_version(struct udev *udev, int argc, char *argv[])
36 {
37 printf("%s\n", VERSION);
38 return 0;
39 }
40
41 static const struct udevadm_cmd udevadm_version = {
42 .name = "version",
43 .cmd = adm_version,
44 };
45
46 static int adm_help(struct udev *udev, int argc, char *argv[]);
47
48 static const struct udevadm_cmd udevadm_help = {
49 .name = "help",
50 .cmd = adm_help,
51 };
52
53 static const struct udevadm_cmd *udevadm_cmds[] = {
54 &udevadm_info,
55 &udevadm_trigger,
56 &udevadm_settle,
57 &udevadm_control,
58 &udevadm_monitor,
59 &udevadm_test,
60 &udevadm_test_builtin,
61 &udevadm_version,
62 &udevadm_help,
63 };
64
65 static int adm_help(struct udev *udev, int argc, char *argv[])
66 {
67 unsigned int i;
68
69 fprintf(stderr, "Usage: udevadm [--help] [--version] [--debug] COMMAND [COMMAND OPTIONS]\n");
70 for (i = 0; i < ELEMENTSOF(udevadm_cmds); i++)
71 if (udevadm_cmds[i]->help != NULL)
72 printf(" %-12s %s\n", udevadm_cmds[i]->name, udevadm_cmds[i]->help);
73 fprintf(stderr, "\n");
74 return 0;
75 }
76
77 static int run_command(struct udev *udev, const struct udevadm_cmd *cmd, int argc, char *argv[])
78 {
79 if (cmd->debug)
80 log_set_max_level(LOG_DEBUG);
81 log_debug("calling: %s\n", cmd->name);
82 return cmd->cmd(udev, argc, argv);
83 }
84
85 int main(int argc, char *argv[])
86 {
87 struct udev *udev;
88 static const struct option options[] = {
89 { "debug", no_argument, NULL, 'd' },
90 { "help", no_argument, NULL, 'h' },
91 { "version", no_argument, NULL, 'V' },
92 {}
93 };
94 const char *command;
95 unsigned int i;
96 int rc = 1;
97
98 udev = udev_new();
99 if (udev == NULL)
100 goto out;
101
102 log_parse_environment();
103 log_open();
104 udev_set_log_fn(udev, udev_main_log);
105 label_init("/dev");
106
107 for (;;) {
108 int option;
109
110 option = getopt_long(argc, argv, "+dhV", options, NULL);
111 if (option == -1)
112 break;
113
114 switch (option) {
115 case 'd':
116 log_set_max_level(LOG_DEBUG);
117 udev_set_log_priority(udev, LOG_DEBUG);
118 break;
119 case 'h':
120 rc = adm_help(udev, argc, argv);
121 goto out;
122 case 'V':
123 rc = adm_version(udev, argc, argv);
124 goto out;
125 default:
126 goto out;
127 }
128 }
129 command = argv[optind];
130
131 if (command != NULL)
132 for (i = 0; i < ELEMENTSOF(udevadm_cmds); i++) {
133 if (strcmp(udevadm_cmds[i]->name, command) == 0) {
134 argc -= optind;
135 argv += optind;
136 optind = 0;
137 rc = run_command(udev, udevadm_cmds[i], argc, argv);
138 goto out;
139 }
140 }
141
142 fprintf(stderr, "missing or unknown command\n\n");
143 adm_help(udev, argc, argv);
144 rc = 2;
145 out:
146 label_finish();
147 udev_unref(udev);
148 log_close();
149 return rc;
150 }