]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/udev/udevadm-test.c
Merge pull request #11827 from keszybz/pkgconfig-variables
[thirdparty/systemd.git] / src / udev / udevadm-test.c
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3 * Copyright © 2003-2004 Greg Kroah-Hartman <greg@kroah.com>
4 */
5
6 #include <errno.h>
7 #include <getopt.h>
8 #include <signal.h>
9 #include <stddef.h>
10 #include <stdio.h>
11 #include <stdlib.h>
12 #include <sys/signalfd.h>
13 #include <unistd.h>
14
15 #include "sd-device.h"
16
17 #include "device-private.h"
18 #include "device-util.h"
19 #include "libudev-util.h"
20 #include "string-util.h"
21 #include "strxcpyx.h"
22 #include "udev-builtin.h"
23 #include "udev.h"
24 #include "udevadm.h"
25
26 static const char *arg_action = "add";
27 static ResolveNameTiming arg_resolve_name_timing = RESOLVE_NAME_EARLY;
28 static char arg_syspath[UTIL_PATH_SIZE] = {};
29
30 static int help(void) {
31
32 printf("%s test [OPTIONS] DEVPATH\n\n"
33 "Test an event run.\n\n"
34 " -h --help Show this help\n"
35 " -V --version Show package version\n"
36 " -a --action=ACTION Set action string\n"
37 " -N --resolve-names=early|late|never When to resolve names\n"
38 , program_invocation_short_name);
39
40 return 0;
41 }
42
43 static int parse_argv(int argc, char *argv[]) {
44 static const struct option options[] = {
45 { "action", required_argument, NULL, 'a' },
46 { "resolve-names", required_argument, NULL, 'N' },
47 { "version", no_argument, NULL, 'V' },
48 { "help", no_argument, NULL, 'h' },
49 {}
50 };
51
52 int c;
53
54 while ((c = getopt_long(argc, argv, "a:N:Vh", options, NULL)) >= 0)
55 switch (c) {
56 case 'a':
57 arg_action = optarg;
58 break;
59 case 'N':
60 arg_resolve_name_timing = resolve_name_timing_from_string(optarg);
61 if (arg_resolve_name_timing < 0)
62 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
63 "--resolve-names= must be early, late or never");
64 break;
65 case 'V':
66 return print_version();
67 case 'h':
68 return help();
69 case '?':
70 return -EINVAL;
71 default:
72 assert_not_reached("Unknown option");
73 }
74
75 if (!argv[optind])
76 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
77 "syspath parameter missing.");
78
79 /* add /sys if needed */
80 if (!startswith(argv[optind], "/sys"))
81 strscpyl(arg_syspath, sizeof(arg_syspath), "/sys", argv[optind], NULL);
82 else
83 strscpy(arg_syspath, sizeof(arg_syspath), argv[optind]);
84
85 return 1;
86 }
87
88 int test_main(int argc, char *argv[], void *userdata) {
89 _cleanup_(udev_rules_freep) UdevRules *rules = NULL;
90 _cleanup_(udev_event_freep) UdevEvent *event = NULL;
91 _cleanup_(sd_device_unrefp) sd_device *dev = NULL;
92 const char *cmd, *key, *value;
93 sigset_t mask, sigmask_orig;
94 Iterator i;
95 void *val;
96 int r;
97
98 log_set_max_level(LOG_DEBUG);
99
100 r = parse_argv(argc, argv);
101 if (r <= 0)
102 return r;
103
104 printf("This program is for debugging only, it does not run any program\n"
105 "specified by a RUN key. It may show incorrect results, because\n"
106 "some values may be different, or not available at a simulation run.\n"
107 "\n");
108
109 assert_se(sigprocmask(SIG_SETMASK, NULL, &sigmask_orig) >= 0);
110
111 udev_builtin_init();
112
113 r = udev_rules_new(&rules, arg_resolve_name_timing);
114 if (r < 0) {
115 log_error_errno(r, "Failed to read udev rules: %m");
116 goto out;
117 }
118
119 r = device_new_from_synthetic_event(&dev, arg_syspath, arg_action);
120 if (r < 0) {
121 log_error_errno(r, "Failed to open device '%s': %m", arg_syspath);
122 goto out;
123 }
124
125 /* don't read info from the db */
126 device_seal(dev);
127
128 event = udev_event_new(dev, 0, NULL);
129
130 assert_se(sigfillset(&mask) >= 0);
131 assert_se(sigprocmask(SIG_SETMASK, &mask, &sigmask_orig) >= 0);
132
133 udev_event_execute_rules(event, 60 * USEC_PER_SEC, NULL, rules);
134
135 FOREACH_DEVICE_PROPERTY(dev, key, value)
136 printf("%s=%s\n", key, value);
137
138 HASHMAP_FOREACH_KEY(val, cmd, event->run_list, i) {
139 char program[UTIL_PATH_SIZE];
140
141 udev_event_apply_format(event, cmd, program, sizeof(program), false);
142 printf("run: '%s'\n", program);
143 }
144
145 r = 0;
146 out:
147 udev_builtin_exit();
148 return r;
149 }