2 * Copyright (C) 2008-2009 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/>.
29 #include <sys/types.h>
30 #include <sys/socket.h>
34 #include "udev-util.h"
35 #include "udevadm-util.h"
41 static void exec_list(struct udev_enumerate *udev_enumerate, const char *action) {
42 struct udev_list_entry *entry;
44 udev_list_entry_foreach(entry, udev_enumerate_get_list_entry(udev_enumerate)) {
45 char filename[UTIL_PATH_SIZE];
49 printf("%s\n", udev_list_entry_get_name(entry));
52 strscpyl(filename, sizeof(filename), udev_list_entry_get_name(entry), "/uevent", NULL);
53 fd = open(filename, O_WRONLY|O_CLOEXEC);
56 if (write(fd, action, strlen(action)) < 0)
57 log_debug_errno(errno, "error writing '%s' to '%s': %m", action, filename);
62 static const char *keyval(const char *str, const char **val, char *buf, size_t size) {
65 strscpy(buf, size,str);
66 pos = strchr(buf, '=');
75 static void help(void) {
76 printf("Usage: udevadm trigger OPTIONS\n"
77 " -v,--verbose print the list of devices while running\n"
78 " -n,--dry-run do not actually trigger the events\n"
79 " -t,--type= type of events to trigger\n"
80 " devices sys devices (default)\n"
81 " subsystems sys subsystems and drivers\n"
82 " -c,--action=<action> event action value, default is \"change\"\n"
83 " -s,--subsystem-match=<subsystem> trigger devices from a matching subsystem\n"
84 " -S,--subsystem-nomatch=<subsystem> exclude devices from a matching subsystem\n"
85 " -a,--attr-match=<file[=<value>]> trigger devices with a matching attribute\n"
86 " -A,--attr-nomatch=<file[=<value>]> exclude devices with a matching attribute\n"
87 " -p,--property-match=<key>=<value> trigger devices with a matching property\n"
88 " -g,--tag-match=<key>=<value> trigger devices with a matching property\n"
89 " -y,--sysname-match=<name> trigger devices with this /sys path\n"
90 " --name-match=<name> trigger devices with this /dev name\n"
91 " -b,--parent-match=<name> trigger devices with that parent device\n"
95 static int adm_trigger(struct udev *udev, int argc, char *argv[]) {
100 static const struct option options[] = {
101 { "verbose", no_argument, NULL, 'v' },
102 { "dry-run", no_argument, NULL, 'n' },
103 { "type", required_argument, NULL, 't' },
104 { "action", required_argument, NULL, 'c' },
105 { "subsystem-match", required_argument, NULL, 's' },
106 { "subsystem-nomatch", required_argument, NULL, 'S' },
107 { "attr-match", required_argument, NULL, 'a' },
108 { "attr-nomatch", required_argument, NULL, 'A' },
109 { "property-match", required_argument, NULL, 'p' },
110 { "tag-match", required_argument, NULL, 'g' },
111 { "sysname-match", required_argument, NULL, 'y' },
112 { "name-match", required_argument, NULL, ARG_NAME },
113 { "parent-match", required_argument, NULL, 'b' },
114 { "help", no_argument, NULL, 'h' },
120 } device_type = TYPE_DEVICES;
121 const char *action = "change";
122 _cleanup_udev_enumerate_unref_ struct udev_enumerate *udev_enumerate = NULL;
125 udev_enumerate = udev_enumerate_new(udev);
126 if (udev_enumerate == NULL)
129 while ((c = getopt_long(argc, argv, "vno:t:c:s:S:a:A:p:g:y:b:h", options, NULL)) >= 0) {
132 char buf[UTIL_PATH_SIZE];
142 if (streq(optarg, "devices"))
143 device_type = TYPE_DEVICES;
144 else if (streq(optarg, "subsystems"))
145 device_type = TYPE_SUBSYSTEMS;
147 log_error("unknown type --type=%s", optarg);
152 if (!nulstr_contains("add\0" "remove\0" "change\0", optarg)) {
153 log_error("unknown action '%s'", optarg);
160 udev_enumerate_add_match_subsystem(udev_enumerate, optarg);
163 udev_enumerate_add_nomatch_subsystem(udev_enumerate, optarg);
166 key = keyval(optarg, &val, buf, sizeof(buf));
167 udev_enumerate_add_match_sysattr(udev_enumerate, key, val);
170 key = keyval(optarg, &val, buf, sizeof(buf));
171 udev_enumerate_add_nomatch_sysattr(udev_enumerate, key, val);
174 key = keyval(optarg, &val, buf, sizeof(buf));
175 udev_enumerate_add_match_property(udev_enumerate, key, val);
178 udev_enumerate_add_match_tag(udev_enumerate, optarg);
181 udev_enumerate_add_match_sysname(udev_enumerate, optarg);
184 _cleanup_udev_device_unref_ struct udev_device *dev;
186 dev = find_device(udev, optarg, "/sys");
188 log_error("unable to open the device '%s'", optarg);
192 udev_enumerate_add_match_parent(udev_enumerate, dev);
197 _cleanup_udev_device_unref_ struct udev_device *dev;
199 dev = find_device(udev, optarg, "/dev/");
201 log_error("unable to open the device '%s'", optarg);
205 udev_enumerate_add_match_parent(udev_enumerate, dev);
215 assert_not_reached("Unknown option");
219 for (; optind < argc; optind++) {
220 _cleanup_udev_device_unref_ struct udev_device *dev;
222 dev = find_device(udev, argv[optind], NULL);
224 log_error("unable to open the device '%s'", argv[optind]);
228 udev_enumerate_add_match_parent(udev_enumerate, dev);
231 switch (device_type) {
232 case TYPE_SUBSYSTEMS:
233 udev_enumerate_scan_subsystems(udev_enumerate);
234 exec_list(udev_enumerate, action);
237 udev_enumerate_scan_devices(udev_enumerate);
238 exec_list(udev_enumerate, action);
241 assert_not_reached("device_type");
245 const struct udevadm_cmd udevadm_trigger = {
248 .help = "request events from the kernel",