]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/udev/udev-event.c
udev: do not unescape command result
[thirdparty/systemd.git] / src / udev / udev-event.c
CommitLineData
f13467ec 1/* SPDX-License-Identifier: GPL-2.0-or-later */
d46f37fd 2
d46f37fd 3#include <ctype.h>
07630cea
LP
4#include <errno.h>
5#include <fcntl.h>
959e8b5d 6#include <net/if.h>
07630cea 7#include <stddef.h>
07630cea 8#include <stdlib.h>
010f917c 9#include <sys/wait.h>
07630cea 10#include <unistd.h>
d46f37fd 11
e81c3a4c
YW
12#include "sd-event.h"
13
b5efdb8a 14#include "alloc-util.h"
947ce772 15#include "device-private.h"
e9343893 16#include "device-util.h"
3ffd4af2 17#include "fd-util.h"
25de7aa7 18#include "fs-util.h"
f97b34a6 19#include "format-util.h"
07630cea 20#include "netlink-util.h"
ce4f94b8 21#include "parse-util.h"
feaa6db7 22#include "path-util.h"
8128f229 23#include "process-util.h"
595225af 24#include "rlimit-util.h"
24882e06 25#include "signal-util.h"
4cade7a1 26#include "stdio-util.h"
07630cea 27#include "string-util.h"
5ea78a39
YW
28#include "strv.h"
29#include "strxcpyx.h"
07a26e42 30#include "udev-builtin.h"
25de7aa7 31#include "udev-event.h"
a2554ace 32#include "udev-node.h"
d4d690fa 33#include "udev-util.h"
70068602 34#include "udev-watch.h"
25de7aa7 35#include "user-util.h"
8128f229
TG
36
37typedef struct Spawn {
88d566aa 38 sd_device *device;
8128f229
TG
39 const char *cmd;
40 pid_t pid;
e81c3a4c
YW
41 usec_t timeout_warn_usec;
42 usec_t timeout_usec;
e2099267 43 int timeout_signal;
e81c3a4c 44 usec_t event_birth_usec;
53318514 45 bool accept_failure;
e81c3a4c
YW
46 int fd_stdout;
47 int fd_stderr;
48 char *result;
49 size_t result_size;
50 size_t result_len;
8128f229 51} Spawn;
d46f37fd 52
1a0bd015 53UdevEvent *udev_event_new(sd_device *dev, usec_t exec_delay_usec, sd_netlink *rtnl, int log_level) {
2e088715 54 UdevEvent *event;
912541b0 55
89665d09
YW
56 assert(dev);
57
2e088715 58 event = new(UdevEvent, 1);
89665d09 59 if (!event)
912541b0 60 return NULL;
89665d09 61
2e088715 62 *event = (UdevEvent) {
cf28ad46 63 .dev = sd_device_ref(dev),
89665d09 64 .birth_usec = now(CLOCK_MONOTONIC),
6b92f429 65 .exec_delay_usec = exec_delay_usec,
e0bb2ff9 66 .rtnl = sd_netlink_ref(rtnl),
25de7aa7
YW
67 .uid = UID_INVALID,
68 .gid = GID_INVALID,
69 .mode = MODE_INVALID,
1a0bd015
YW
70 .log_level_was_debug = log_level == LOG_DEBUG,
71 .default_log_level = log_level,
89665d09
YW
72 };
73
912541b0 74 return event;
aa8734ff
KS
75}
76
2e088715 77UdevEvent *udev_event_free(UdevEvent *event) {
c1118ceb
YW
78 if (!event)
79 return NULL;
80
cf28ad46 81 sd_device_unref(event->dev);
480ecb7d 82 sd_device_unref(event->dev_db_clone);
1c4baffc 83 sd_netlink_unref(event->rtnl);
39a15c8a
YW
84 ordered_hashmap_free_free_key(event->run_list);
85 ordered_hashmap_free_free_free(event->seclabel_list);
912541b0
KS
86 free(event->program_result);
87 free(event->name);
c1118ceb
YW
88
89 return mfree(event);
aa8734ff
KS
90}
91
7e9c23dd
YW
92typedef enum {
93 FORMAT_SUBST_DEVNODE,
94 FORMAT_SUBST_ATTR,
95 FORMAT_SUBST_ENV,
96 FORMAT_SUBST_KERNEL,
97 FORMAT_SUBST_KERNEL_NUMBER,
98 FORMAT_SUBST_DRIVER,
99 FORMAT_SUBST_DEVPATH,
100 FORMAT_SUBST_ID,
101 FORMAT_SUBST_MAJOR,
102 FORMAT_SUBST_MINOR,
103 FORMAT_SUBST_RESULT,
104 FORMAT_SUBST_PARENT,
105 FORMAT_SUBST_NAME,
106 FORMAT_SUBST_LINKS,
107 FORMAT_SUBST_ROOT,
108 FORMAT_SUBST_SYS,
109 _FORMAT_SUBST_TYPE_MAX,
2d93c20e 110 _FORMAT_SUBST_TYPE_INVALID = -EINVAL,
7e9c23dd 111} FormatSubstitutionType;
0d53705b 112
9204d802
YW
113struct subst_map_entry {
114 const char *name;
115 const char fmt;
7e9c23dd 116 FormatSubstitutionType type;
9204d802
YW
117};
118
119static const struct subst_map_entry map[] = {
7e9c23dd 120 { .name = "devnode", .fmt = 'N', .type = FORMAT_SUBST_DEVNODE },
3c209d60 121 { .name = "tempnode", .fmt = 'N', .type = FORMAT_SUBST_DEVNODE }, /* deprecated */
7e9c23dd 122 { .name = "attr", .fmt = 's', .type = FORMAT_SUBST_ATTR },
3c209d60 123 { .name = "sysfs", .fmt = 's', .type = FORMAT_SUBST_ATTR }, /* deprecated */
7e9c23dd
YW
124 { .name = "env", .fmt = 'E', .type = FORMAT_SUBST_ENV },
125 { .name = "kernel", .fmt = 'k', .type = FORMAT_SUBST_KERNEL },
126 { .name = "number", .fmt = 'n', .type = FORMAT_SUBST_KERNEL_NUMBER },
127 { .name = "driver", .fmt = 'd', .type = FORMAT_SUBST_DRIVER },
128 { .name = "devpath", .fmt = 'p', .type = FORMAT_SUBST_DEVPATH },
129 { .name = "id", .fmt = 'b', .type = FORMAT_SUBST_ID },
130 { .name = "major", .fmt = 'M', .type = FORMAT_SUBST_MAJOR },
131 { .name = "minor", .fmt = 'm', .type = FORMAT_SUBST_MINOR },
132 { .name = "result", .fmt = 'c', .type = FORMAT_SUBST_RESULT },
133 { .name = "parent", .fmt = 'P', .type = FORMAT_SUBST_PARENT },
134 { .name = "name", .fmt = 'D', .type = FORMAT_SUBST_NAME },
135 { .name = "links", .fmt = 'L', .type = FORMAT_SUBST_LINKS },
136 { .name = "root", .fmt = 'r', .type = FORMAT_SUBST_ROOT },
137 { .name = "sys", .fmt = 'S', .type = FORMAT_SUBST_SYS },
9204d802
YW
138};
139
13cd553f
YW
140static const char *format_type_to_string(FormatSubstitutionType t) {
141 for (size_t i = 0; i < ELEMENTSOF(map); i++)
142 if (map[i].type == t)
143 return map[i].name;
144 return NULL;
145}
146
147static char format_type_to_char(FormatSubstitutionType t) {
148 for (size_t i = 0; i < ELEMENTSOF(map); i++)
149 if (map[i].type == t)
150 return map[i].fmt;
151 return '\0';
152}
153
c8eaaf69 154static int get_subst_type(const char **str, bool strict, FormatSubstitutionType *ret_type, char ret_attr[static UDEV_PATH_SIZE]) {
13cd553f
YW
155 const char *p = *str, *q = NULL;
156 size_t i;
157
158 assert(str);
159 assert(*str);
160 assert(ret_type);
2caa38e9 161 assert(ret_attr);
13cd553f 162
1824300a 163 if (*p == '$') {
13cd553f 164 p++;
1824300a 165 if (*p == '$') {
13cd553f
YW
166 *str = p;
167 return 0;
168 }
169 for (i = 0; i < ELEMENTSOF(map); i++)
170 if ((q = startswith(p, map[i].name)))
171 break;
1824300a 172 } else if (*p == '%') {
13cd553f 173 p++;
1824300a 174 if (*p == '%') {
13cd553f
YW
175 *str = p;
176 return 0;
177 }
178
179 for (i = 0; i < ELEMENTSOF(map); i++)
1824300a 180 if (*p == map[i].fmt) {
13cd553f
YW
181 q = p + 1;
182 break;
183 }
d7aee41d 184 } else
13cd553f 185 return 0;
d7aee41d
YW
186 if (!q)
187 /* When 'strict' flag is set, then '$' and '%' must be escaped. */
188 return strict ? -EINVAL : 0;
13cd553f 189
1824300a 190 if (*q == '{') {
13cd553f
YW
191 const char *start, *end;
192 size_t len;
193
194 start = q + 1;
195 end = strchr(start, '}');
196 if (!end)
197 return -EINVAL;
198
199 len = end - start;
c8eaaf69 200 if (len == 0 || len >= UDEV_PATH_SIZE)
13cd553f
YW
201 return -EINVAL;
202
c8eaaf69 203 strnscpy(ret_attr, UDEV_PATH_SIZE, start, len);
13cd553f
YW
204 q = end + 1;
205 } else
1824300a 206 *ret_attr = '\0';
13cd553f
YW
207
208 *str = q;
209 *ret_type = map[i].type;
210 return 1;
211}
212
ce4f94b8
YW
213static int safe_atou_optional_plus(const char *s, unsigned *ret) {
214 const char *p;
215 int r;
216
217 assert(s);
218 assert(ret);
219
220 /* Returns 1 if plus, 0 if no plus, negative on error */
221
222 p = endswith(s, "+");
223 if (p)
224 s = strndupa(s, p - s);
225
226 r = safe_atou(s, ret);
227 if (r < 0)
228 return r;
229
230 return !!p;
231}
232
ef315ada
YW
233static ssize_t udev_event_subst_format(
234 UdevEvent *event,
235 FormatSubstitutionType type,
236 const char *attr,
237 char *dest,
238 size_t l) {
cf28ad46 239 sd_device *parent, *dev = event->dev;
4cade7a1 240 const char *val = NULL;
be452683 241 char *s = dest;
4cade7a1 242 int r;
0d53705b 243
ef315ada 244 switch (type) {
7e9c23dd 245 case FORMAT_SUBST_DEVPATH:
4cade7a1
YW
246 r = sd_device_get_devpath(dev, &val);
247 if (r < 0)
248 return r;
249 l = strpcpy(&s, l, val);
0d53705b 250 break;
7e9c23dd 251 case FORMAT_SUBST_KERNEL:
4cade7a1
YW
252 r = sd_device_get_sysname(dev, &val);
253 if (r < 0)
254 return r;
255 l = strpcpy(&s, l, val);
0d53705b 256 break;
7e9c23dd 257 case FORMAT_SUBST_KERNEL_NUMBER:
4cade7a1 258 r = sd_device_get_sysnum(dev, &val);
380d1901
YW
259 if (r == -ENOENT)
260 goto null_terminate;
4cade7a1 261 if (r < 0)
380d1901 262 return r;
4cade7a1 263 l = strpcpy(&s, l, val);
0d53705b 264 break;
7e9c23dd 265 case FORMAT_SUBST_ID:
4cade7a1 266 if (!event->dev_parent)
380d1901 267 goto null_terminate;
f3d241fe 268 r = sd_device_get_sysname(event->dev_parent, &val);
4cade7a1
YW
269 if (r < 0)
270 return r;
271 l = strpcpy(&s, l, val);
0d53705b 272 break;
7e9c23dd 273 case FORMAT_SUBST_DRIVER:
4cade7a1 274 if (!event->dev_parent)
380d1901 275 goto null_terminate;
f3d241fe 276 r = sd_device_get_driver(event->dev_parent, &val);
380d1901
YW
277 if (r == -ENOENT)
278 goto null_terminate;
4cade7a1 279 if (r < 0)
380d1901 280 return r;
4cade7a1 281 l = strpcpy(&s, l, val);
0d53705b 282 break;
7e9c23dd
YW
283 case FORMAT_SUBST_MAJOR:
284 case FORMAT_SUBST_MINOR: {
1b65f1eb 285 dev_t devnum;
0d53705b 286
4cade7a1
YW
287 r = sd_device_get_devnum(dev, &devnum);
288 if (r < 0 && r != -ENOENT)
289 return r;
1b65f1eb 290 l = strpcpyf(&s, l, "%u", r < 0 ? 0 : type == FORMAT_SUBST_MAJOR ? major(devnum) : minor(devnum));
0d53705b
DS
291 break;
292 }
7e9c23dd 293 case FORMAT_SUBST_RESULT: {
ce4f94b8
YW
294 unsigned index = 0; /* 0 means whole string */
295 bool has_plus;
0d53705b 296
4cade7a1 297 if (!event->program_result)
380d1901 298 goto null_terminate;
4cade7a1 299
ce4f94b8
YW
300 if (!isempty(attr)) {
301 r = safe_atou_optional_plus(attr, &index);
302 if (r < 0)
303 return r;
304
305 has_plus = r;
306 }
307
308 if (index == 0)
309 l = strpcpy(&s, l, event->program_result);
310 else {
311 const char *start, *p;
312 unsigned i;
313
314 p = skip_leading_chars(event->program_result, NULL);
315
316 for (i = 1; i < index; i++) {
1824300a 317 while (*p && !strchr(WHITESPACE, *p))
ce4f94b8
YW
318 p++;
319 p = skip_leading_chars(p, NULL);
320 if (*p == '\0')
0d53705b
DS
321 break;
322 }
ce4f94b8
YW
323 if (i != index) {
324 log_device_debug(dev, "requested part of result string not found");
325 goto null_terminate;
0d53705b 326 }
ce4f94b8
YW
327
328 start = p;
329 /* %c{2+} copies the whole string from the second part on */
330 if (has_plus)
331 l = strpcpy(&s, l, start);
332 else {
1824300a 333 while (*p && !strchr(WHITESPACE, *p))
ce4f94b8
YW
334 p++;
335 l = strnpcpy(&s, l, start, p - start);
0d53705b 336 }
ce4f94b8 337 }
0d53705b
DS
338 break;
339 }
7e9c23dd 340 case FORMAT_SUBST_ATTR: {
c8eaaf69 341 char vbuf[UDEV_NAME_SIZE];
0d53705b
DS
342 int count;
343
13cd553f 344 if (isempty(attr))
4cade7a1 345 return -EINVAL;
0d53705b
DS
346
347 /* try to read the value specified by "[dmi/id]product_name" */
1223227f 348 if (udev_resolve_subsys_kernel(attr, vbuf, sizeof(vbuf), true) == 0)
4cade7a1 349 val = vbuf;
0d53705b
DS
350
351 /* try to read the attribute the device */
4cade7a1
YW
352 if (!val)
353 (void) sd_device_get_sysattr_value(dev, attr, &val);
0d53705b
DS
354
355 /* try to read the attribute of the parent device, other matches have selected */
f3d241fe
YW
356 if (!val && event->dev_parent && event->dev_parent != dev)
357 (void) sd_device_get_sysattr_value(event->dev_parent, attr, &val);
0d53705b 358
4cade7a1 359 if (!val)
380d1901 360 goto null_terminate;
0d53705b
DS
361
362 /* strip trailing whitespace, and replace unwanted characters */
4cade7a1
YW
363 if (val != vbuf)
364 strscpy(vbuf, sizeof(vbuf), val);
72801533 365 delete_trailing_chars(vbuf, NULL);
393fcaf7 366 count = udev_replace_chars(vbuf, UDEV_ALLOWED_CHARS_INPUT);
0d53705b 367 if (count > 0)
4cade7a1 368 log_device_debug(dev, "%i character(s) replaced", count);
0d53705b
DS
369 l = strpcpy(&s, l, vbuf);
370 break;
371 }
7e9c23dd 372 case FORMAT_SUBST_PARENT:
4cade7a1 373 r = sd_device_get_parent(dev, &parent);
bc568a7a 374 if (r == -ENOENT)
380d1901 375 goto null_terminate;
4cade7a1 376 if (r < 0)
380d1901 377 return r;
4cade7a1 378 r = sd_device_get_devname(parent, &val);
380d1901
YW
379 if (r == -ENOENT)
380 goto null_terminate;
4cade7a1 381 if (r < 0)
380d1901 382 return r;
4cade7a1 383 l = strpcpy(&s, l, val + STRLEN("/dev/"));
0d53705b 384 break;
7e9c23dd 385 case FORMAT_SUBST_DEVNODE:
4cade7a1 386 r = sd_device_get_devname(dev, &val);
380d1901
YW
387 if (r == -ENOENT)
388 goto null_terminate;
4cade7a1 389 if (r < 0)
380d1901 390 return r;
4cade7a1 391 l = strpcpy(&s, l, val);
0d53705b 392 break;
7e9c23dd 393 case FORMAT_SUBST_NAME:
4cade7a1 394 if (event->name)
0d53705b 395 l = strpcpy(&s, l, event->name);
4cade7a1
YW
396 else if (sd_device_get_devname(dev, &val) >= 0)
397 l = strpcpy(&s, l, val + STRLEN("/dev/"));
398 else {
399 r = sd_device_get_sysname(dev, &val);
400 if (r < 0)
401 return r;
402 l = strpcpy(&s, l, val);
403 }
0d53705b 404 break;
7e9c23dd 405 case FORMAT_SUBST_LINKS:
4cade7a1
YW
406 FOREACH_DEVICE_DEVLINK(dev, val)
407 if (s == dest)
408 l = strpcpy(&s, l, val + STRLEN("/dev/"));
409 else
410 l = strpcpyl(&s, l, " ", val + STRLEN("/dev/"), NULL);
380d1901
YW
411 if (s == dest)
412 goto null_terminate;
0d53705b 413 break;
7e9c23dd 414 case FORMAT_SUBST_ROOT:
0d53705b
DS
415 l = strpcpy(&s, l, "/dev");
416 break;
7e9c23dd 417 case FORMAT_SUBST_SYS:
0d53705b
DS
418 l = strpcpy(&s, l, "/sys");
419 break;
7e9c23dd 420 case FORMAT_SUBST_ENV:
13cd553f
YW
421 if (isempty(attr))
422 return -EINVAL;
4cade7a1 423 r = sd_device_get_property_value(dev, attr, &val);
380d1901
YW
424 if (r == -ENOENT)
425 goto null_terminate;
4cade7a1 426 if (r < 0)
380d1901 427 return r;
4cade7a1
YW
428 l = strpcpy(&s, l, val);
429 break;
0d53705b 430 default:
9204d802 431 assert_not_reached("Unknown format substitution type");
0d53705b
DS
432 }
433
be452683 434 return s - dest;
380d1901
YW
435
436null_terminate:
437 *s = '\0';
438 return 0;
0d53705b
DS
439}
440
5eb6ef8b
YW
441size_t udev_event_apply_format(UdevEvent *event,
442 const char *src, char *dest, size_t size,
443 bool replace_whitespace) {
13cd553f
YW
444 const char *s = src;
445 int r;
912541b0 446
a368732b
YW
447 assert(event);
448 assert(event->dev);
449 assert(src);
450 assert(dest);
451 assert(size > 0);
3b64e4d4 452
1824300a 453 while (*s) {
13cd553f 454 FormatSubstitutionType type;
c8eaaf69 455 char attr[UDEV_PATH_SIZE];
4cade7a1 456 ssize_t subst_len;
912541b0 457
d7aee41d 458 r = get_subst_type(&s, false, &type, attr);
5eb6ef8b
YW
459 if (r < 0) {
460 log_device_warning_errno(event->dev, r, "Invalid format string, ignoring: %s", src);
461 break;
462 } else if (r == 0) {
13cd553f
YW
463 if (size < 2) /* need space for this char and the terminating NUL */
464 break;
465 *dest++ = *s++;
466 size--;
4cade7a1
YW
467 continue;
468 }
e20a9171 469
13cd553f 470 subst_len = udev_event_subst_format(event, type, attr, dest, size);
5eb6ef8b
YW
471 if (subst_len < 0) {
472 log_device_warning_errno(event->dev, subst_len,
473 "Failed to substitute variable '$%s' or apply format '%%%c', ignoring: %m",
474 format_type_to_string(type), format_type_to_char(type));
475 break;
476 }
13cd553f 477
7e9c23dd 478 /* FORMAT_SUBST_RESULT handles spaces itself */
13cd553f 479 if (replace_whitespace && type != FORMAT_SUBST_RESULT)
5953d8b9 480 /* udev_replace_whitespace can replace in-place,
13cd553f 481 * and does nothing if subst_len == 0 */
5953d8b9 482 subst_len = udev_replace_whitespace(dest, dest, subst_len);
e20a9171 483
13cd553f
YW
484 dest += subst_len;
485 size -= subst_len;
912541b0 486 }
065db052 487
13cd553f 488 assert(size >= 1);
1824300a 489 *dest = '\0';
13cd553f 490 return size;
f1128767
KS
491}
492
f85cc54c 493int udev_check_format(const char *value, size_t *offset, const char **hint) {
d7aee41d 494 FormatSubstitutionType type;
f85cc54c 495 const char *s = value;
c8eaaf69 496 char attr[UDEV_PATH_SIZE];
d7aee41d
YW
497 int r;
498
1824300a 499 while (*s) {
d7aee41d 500 r = get_subst_type(&s, true, &type, attr);
f85cc54c
ZJS
501 if (r < 0) {
502 if (offset)
503 *offset = s - value;
504 if (hint)
505 *hint = "invalid substitution type";
d7aee41d 506 return r;
f85cc54c 507 } else if (r == 0) {
d7aee41d
YW
508 s++;
509 continue;
510 }
511
f85cc54c
ZJS
512 if (IN_SET(type, FORMAT_SUBST_ATTR, FORMAT_SUBST_ENV) && isempty(attr)) {
513 if (offset)
514 *offset = s - value;
515 if (hint)
516 *hint = "attribute value missing";
d7aee41d 517 return -EINVAL;
f85cc54c 518 }
d7aee41d
YW
519
520 if (type == FORMAT_SUBST_RESULT && !isempty(attr)) {
521 unsigned i;
522
523 r = safe_atou_optional_plus(attr, &i);
f85cc54c
ZJS
524 if (r < 0) {
525 if (offset)
526 *offset = s - value;
527 if (hint)
528 *hint = "attribute value not a valid number";
d7aee41d 529 return r;
f85cc54c 530 }
d7aee41d
YW
531 }
532 }
533
534 return 0;
535}
536
e81c3a4c
YW
537static int on_spawn_io(sd_event_source *s, int fd, uint32_t revents, void *userdata) {
538 Spawn *spawn = userdata;
539 char buf[4096], *p;
540 size_t size;
541 ssize_t l;
9f537ae3 542 int r;
912541b0 543
e81c3a4c
YW
544 assert(spawn);
545 assert(fd == spawn->fd_stdout || fd == spawn->fd_stderr);
546 assert(!spawn->result || spawn->result_len < spawn->result_size);
547
548 if (fd == spawn->fd_stdout && spawn->result) {
549 p = spawn->result + spawn->result_len;
550 size = spawn->result_size - spawn->result_len;
551 } else {
552 p = buf;
553 size = sizeof(buf);
912541b0
KS
554 }
555
e81c3a4c
YW
556 l = read(fd, p, size - 1);
557 if (l < 0) {
9f537ae3
PD
558 if (errno == EAGAIN)
559 goto reenable;
560
561 log_device_error_errno(spawn->device, errno,
562 "Failed to read stdout of '%s': %m", spawn->cmd);
912541b0 563
e81c3a4c 564 return 0;
912541b0
KS
565 }
566
e81c3a4c
YW
567 p[l] = '\0';
568 if (fd == spawn->fd_stdout && spawn->result)
569 spawn->result_len += l;
912541b0 570
e81c3a4c
YW
571 /* Log output only if we watch stderr. */
572 if (l > 0 && spawn->fd_stderr >= 0) {
573 _cleanup_strv_free_ char **v = NULL;
574 char **q;
912541b0 575
e81c3a4c
YW
576 v = strv_split_newlines(p);
577 if (!v)
2be0218a 578 log_oom_debug();
912541b0 579
e81c3a4c 580 STRV_FOREACH(q, v)
88d566aa
YW
581 log_device_debug(spawn->device, "'%s'(%s) '%s'", spawn->cmd,
582 fd == spawn->fd_stdout ? "out" : "err", *q);
912541b0
KS
583 }
584
9f537ae3
PD
585 if (l == 0)
586 return 0;
587
9f537ae3 588reenable:
2be0218a
YW
589 /* Re-enable the event source if we did not encounter EOF */
590
9f537ae3
PD
591 r = sd_event_source_set_enabled(s, SD_EVENT_ONESHOT);
592 if (r < 0)
593 log_device_error_errno(spawn->device, r,
594 "Failed to reactivate IO source of '%s'", spawn->cmd);
e81c3a4c 595 return 0;
2181d30a
KS
596}
597
8128f229
TG
598static int on_spawn_timeout(sd_event_source *s, uint64_t usec, void *userdata) {
599 Spawn *spawn = userdata;
4375dab5 600 char timeout[FORMAT_TIMESPAN_MAX];
912541b0 601
8128f229 602 assert(spawn);
912541b0 603
e2099267 604 kill_and_sigcont(spawn->pid, spawn->timeout_signal);
912541b0 605
88d566aa
YW
606 log_device_error(spawn->device, "Spawned process '%s' ["PID_FMT"] timed out after %s, killing",
607 spawn->cmd, spawn->pid,
608 format_timespan(timeout, sizeof(timeout), spawn->timeout_usec, USEC_PER_SEC));
912541b0 609
8128f229
TG
610 return 1;
611}
67117413 612
8128f229
TG
613static int on_spawn_timeout_warning(sd_event_source *s, uint64_t usec, void *userdata) {
614 Spawn *spawn = userdata;
4375dab5 615 char timeout[FORMAT_TIMESPAN_MAX];
912541b0 616
8128f229 617 assert(spawn);
67117413 618
88d566aa
YW
619 log_device_warning(spawn->device, "Spawned process '%s' ["PID_FMT"] is taking longer than %s to complete",
620 spawn->cmd, spawn->pid,
621 format_timespan(timeout, sizeof(timeout), spawn->timeout_warn_usec, USEC_PER_SEC));
8128f229
TG
622
623 return 1;
624}
625
626static int on_spawn_sigchld(sd_event_source *s, const siginfo_t *si, void *userdata) {
627 Spawn *spawn = userdata;
a7521142 628 int ret = -EIO;
8128f229
TG
629
630 assert(spawn);
631
632 switch (si->si_code) {
633 case CLD_EXITED:
a7521142 634 if (si->si_status == 0)
88d566aa 635 log_device_debug(spawn->device, "Process '%s' succeeded.", spawn->cmd);
a7521142 636 else
ab54f12b 637 log_device_full(spawn->device, spawn->accept_failure ? LOG_DEBUG : LOG_WARNING,
88d566aa 638 "Process '%s' failed with exit code %i.", spawn->cmd, si->si_status);
a7521142 639 ret = si->si_status;
8128f229
TG
640 break;
641 case CLD_KILLED:
642 case CLD_DUMPED:
88d566aa 643 log_device_error(spawn->device, "Process '%s' terminated by signal %s.", spawn->cmd, signal_to_string(si->si_status));
8128f229
TG
644 break;
645 default:
88d566aa 646 log_device_error(spawn->device, "Process '%s' failed due to unknown reason.", spawn->cmd);
8128f229 647 }
912541b0 648
a7521142 649 sd_event_exit(sd_event_source_get_event(s), ret);
8128f229
TG
650 return 1;
651}
652
e81c3a4c 653static int spawn_wait(Spawn *spawn) {
4afd3348 654 _cleanup_(sd_event_unrefp) sd_event *e = NULL;
9f537ae3
PD
655 _cleanup_(sd_event_source_unrefp) sd_event_source *sigchld_source = NULL;
656 _cleanup_(sd_event_source_unrefp) sd_event_source *stdout_source = NULL;
657 _cleanup_(sd_event_source_unrefp) sd_event_source *stderr_source = NULL;
a7521142 658 int r;
8128f229 659
e81c3a4c
YW
660 assert(spawn);
661
8128f229
TG
662 r = sd_event_new(&e);
663 if (r < 0)
90d260d8 664 return log_device_debug_errno(spawn->device, r, "Failed to allocate sd-event object: %m");
8128f229 665
e81c3a4c 666 if (spawn->timeout_usec > 0) {
8128f229
TG
667 usec_t usec, age_usec;
668
3285baa8 669 usec = now(CLOCK_MONOTONIC);
e81c3a4c
YW
670 age_usec = usec - spawn->event_birth_usec;
671 if (age_usec < spawn->timeout_usec) {
672 if (spawn->timeout_warn_usec > 0 &&
673 spawn->timeout_warn_usec < spawn->timeout_usec &&
674 spawn->timeout_warn_usec > age_usec) {
675 spawn->timeout_warn_usec -= age_usec;
8128f229 676
3285baa8 677 r = sd_event_add_time(e, NULL, CLOCK_MONOTONIC,
e81c3a4c
YW
678 usec + spawn->timeout_warn_usec, USEC_PER_SEC,
679 on_spawn_timeout_warning, spawn);
8128f229 680 if (r < 0)
90d260d8 681 return log_device_debug_errno(spawn->device, r, "Failed to create timeout warning event source: %m");
912541b0 682 }
8128f229 683
e81c3a4c 684 spawn->timeout_usec -= age_usec;
8128f229 685
3285baa8 686 r = sd_event_add_time(e, NULL, CLOCK_MONOTONIC,
e81c3a4c 687 usec + spawn->timeout_usec, USEC_PER_SEC, on_spawn_timeout, spawn);
8128f229 688 if (r < 0)
90d260d8 689 return log_device_debug_errno(spawn->device, r, "Failed to create timeout event source: %m");
912541b0
KS
690 }
691 }
8128f229 692
adeb26c1 693 if (spawn->fd_stdout >= 0) {
9f537ae3
PD
694 r = sd_event_add_io(e, &stdout_source, spawn->fd_stdout, EPOLLIN, on_spawn_io, spawn);
695 if (r < 0)
90d260d8 696 return log_device_debug_errno(spawn->device, r, "Failed to create stdio event source: %m");
9f537ae3 697 r = sd_event_source_set_enabled(stdout_source, SD_EVENT_ONESHOT);
adeb26c1 698 if (r < 0)
90d260d8 699 return log_device_debug_errno(spawn->device, r, "Failed to enable stdio event source: %m");
adeb26c1 700 }
e81c3a4c 701
adeb26c1 702 if (spawn->fd_stderr >= 0) {
9f537ae3
PD
703 r = sd_event_add_io(e, &stderr_source, spawn->fd_stderr, EPOLLIN, on_spawn_io, spawn);
704 if (r < 0)
90d260d8 705 return log_device_debug_errno(spawn->device, r, "Failed to create stderr event source: %m");
9f537ae3 706 r = sd_event_source_set_enabled(stderr_source, SD_EVENT_ONESHOT);
adeb26c1 707 if (r < 0)
90d260d8 708 return log_device_debug_errno(spawn->device, r, "Failed to enable stderr event source: %m");
adeb26c1 709 }
e81c3a4c 710
9f537ae3 711 r = sd_event_add_child(e, &sigchld_source, spawn->pid, WEXITED, on_spawn_sigchld, spawn);
8128f229 712 if (r < 0)
90d260d8 713 return log_device_debug_errno(spawn->device, r, "Failed to create sigchild event source: %m");
9f537ae3
PD
714 /* SIGCHLD should be processed after IO is complete */
715 r = sd_event_source_set_priority(sigchld_source, SD_EVENT_PRIORITY_NORMAL + 1);
716 if (r < 0)
90d260d8 717 return log_device_debug_errno(spawn->device, r, "Failed to set priority to sigchild event source: %m");
9f537ae3 718
a7521142 719 return sd_event_loop(e);
2181d30a
KS
720}
721
2e088715 722int udev_event_spawn(UdevEvent *event,
dd5eddd2 723 usec_t timeout_usec,
e2099267 724 int timeout_signal,
53318514 725 bool accept_failure,
bbf35206 726 const char *cmd,
dd5eddd2 727 char *result, size_t ressize) {
feaa6db7
YW
728 _cleanup_close_pair_ int outpipe[2] = {-1, -1}, errpipe[2] = {-1, -1};
729 _cleanup_strv_free_ char **argv = NULL;
947ce772 730 char **envp = NULL;
e81c3a4c 731 Spawn spawn;
912541b0 732 pid_t pid;
feaa6db7 733 int r;
912541b0 734
dc8aec36
YW
735 assert(event);
736 assert(event->dev);
e81c3a4c
YW
737 assert(result || ressize == 0);
738
912541b0 739 /* pipes from child to parent */
2e48548f 740 if (result || log_get_max_level() >= LOG_INFO)
f71e8ec1 741 if (pipe2(outpipe, O_NONBLOCK|O_CLOEXEC) != 0)
88d566aa
YW
742 return log_device_error_errno(event->dev, errno,
743 "Failed to create pipe for command '%s': %m", cmd);
912541b0 744
feaa6db7 745 if (log_get_max_level() >= LOG_INFO)
f71e8ec1 746 if (pipe2(errpipe, O_NONBLOCK|O_CLOEXEC) != 0)
88d566aa
YW
747 return log_device_error_errno(event->dev, errno,
748 "Failed to create pipe for command '%s': %m", cmd);
feaa6db7 749
90e30d76 750 r = strv_split_full(&argv, cmd, NULL, EXTRACT_UNQUOTE | EXTRACT_RELAX | EXTRACT_RETAIN_ESCAPE);
0645b83a
ZJS
751 if (r < 0)
752 return log_device_error_errno(event->dev, r, "Failed to split command: %m");
feaa6db7 753
baaa35ad 754 if (isempty(argv[0]))
88d566aa
YW
755 return log_device_error_errno(event->dev, SYNTHETIC_ERRNO(EINVAL),
756 "Invalid command '%s'", cmd);
dc8aec36 757
feaa6db7
YW
758 /* allow programs in /usr/lib/udev/ to be called without the path */
759 if (!path_is_absolute(argv[0])) {
760 char *program;
761
62a85ee0 762 program = path_join(UDEVLIBEXECDIR, argv[0]);
feaa6db7
YW
763 if (!program)
764 return log_oom();
bbf35206 765
feaa6db7
YW
766 free_and_replace(argv[0], program);
767 }
768
cf28ad46 769 r = device_get_properties_strv(event->dev, &envp);
947ce772 770 if (r < 0)
cf28ad46 771 return log_device_error_errno(event->dev, r, "Failed to get device properties");
947ce772 772
88d566aa 773 log_device_debug(event->dev, "Starting '%s'", cmd);
3ad4d482 774
6ce075a2 775 r = safe_fork("(spawn)", FORK_RESET_SIGNALS|FORK_DEATHSIG|FORK_LOG, &pid);
feaa6db7 776 if (r < 0)
88d566aa
YW
777 return log_device_error_errno(event->dev, r,
778 "Failed to fork() to execute command '%s': %m", cmd);
feaa6db7 779 if (r == 0) {
84b1ccb9
YW
780 if (rearrange_stdio(-1, outpipe[WRITE_END], errpipe[WRITE_END]) < 0)
781 _exit(EXIT_FAILURE);
912541b0 782
84b1ccb9 783 (void) close_all_fds(NULL, 0);
595225af 784 (void) rlimit_nofile_safe();
912541b0 785
947ce772 786 execve(argv[0], argv, envp);
84b1ccb9 787 _exit(EXIT_FAILURE);
bbf35206 788 }
912541b0 789
4c253ed1
LP
790 /* parent closed child's ends of pipes */
791 outpipe[WRITE_END] = safe_close(outpipe[WRITE_END]);
792 errpipe[WRITE_END] = safe_close(errpipe[WRITE_END]);
912541b0 793
e81c3a4c 794 spawn = (Spawn) {
88d566aa 795 .device = event->dev,
e81c3a4c
YW
796 .cmd = cmd,
797 .pid = pid,
798 .accept_failure = accept_failure,
66f737b4 799 .timeout_warn_usec = udev_warn_timeout(timeout_usec),
e81c3a4c 800 .timeout_usec = timeout_usec,
e2099267 801 .timeout_signal = timeout_signal,
e81c3a4c
YW
802 .event_birth_usec = event->birth_usec,
803 .fd_stdout = outpipe[READ_END],
804 .fd_stderr = errpipe[READ_END],
805 .result = result,
806 .result_size = ressize,
807 };
808 r = spawn_wait(&spawn);
feaa6db7 809 if (r < 0)
88d566aa
YW
810 return log_device_error_errno(event->dev, r,
811 "Failed to wait for spawned command '%s': %m", cmd);
2181d30a 812
e81c3a4c
YW
813 if (result)
814 result[spawn.result_len] = '\0';
815
a7521142 816 return r; /* 0 for success, and positive if the program failed */
2181d30a
KS
817}
818
2e088715 819static int rename_netif(UdevEvent *event) {
cf28ad46 820 sd_device *dev = event->dev;
d4d690fa 821 const char *oldname;
2740750d
YW
822 int ifindex, r;
823
824 if (!event->name)
825 return 0; /* No new name is requested. */
826
827 r = sd_device_get_sysname(dev, &oldname);
828 if (r < 0)
829 return log_device_error_errno(dev, r, "Failed to get sysname: %m");
830
831 if (streq(event->name, oldname))
832 return 0; /* The interface name is already requested name. */
833
a1130022 834 if (!device_for_action(dev, SD_DEVICE_ADD))
2740750d 835 return 0; /* Rename the interface only when it is added. */
16d26d55 836
2740750d
YW
837 r = sd_device_get_ifindex(dev, &ifindex);
838 if (r == -ENOENT)
839 return 0; /* Device is not a network interface. */
840 if (r < 0)
841 return log_device_error_errno(dev, r, "Failed to get ifindex: %m");
912541b0 842
a4055a60
YW
843 /* Set ID_RENAMING boolean property here, and drop it in the corresponding move uevent later. */
844 r = device_add_property(dev, "ID_RENAMING", "1");
845 if (r < 0)
99058cd6 846 return log_device_warning_errno(dev, r, "Failed to add 'ID_RENAMING' property: %m");
912541b0 847
2740750d 848 r = device_rename(dev, event->name);
f647962d 849 if (r < 0)
99058cd6 850 return log_device_warning_errno(dev, r, "Failed to update properties with new name '%s': %m", event->name);
16d26d55 851
ae353ec2
YW
852 /* Also set ID_RENAMING boolean property to cloned sd_device object and save it to database
853 * before calling rtnl_set_link_name(). Otherwise, clients (e.g., systemd-networkd) may receive
854 * RTM_NEWLINK netlink message before the database is updated. */
855 r = device_add_property(event->dev_db_clone, "ID_RENAMING", "1");
856 if (r < 0)
857 return log_device_warning_errno(event->dev_db_clone, r, "Failed to add 'ID_RENAMING' property: %m");
858
859 r = device_update_db(event->dev_db_clone);
860 if (r < 0)
861 return log_device_debug_errno(event->dev_db_clone, r, "Failed to update database under /run/udev/data/: %m");
862
863 r = rtnl_set_link_name(&event->rtnl, ifindex, event->name);
864 if (r < 0)
865 return log_device_error_errno(dev, r, "Failed to rename network interface %i from '%s' to '%s': %m",
866 ifindex, oldname, event->name);
867
589384be 868 log_device_debug(dev, "Network interface %i is renamed from '%s' to '%s'", ifindex, oldname, event->name);
16d26d55 869
2740750d 870 return 1;
d46f37fd
KS
871}
872
2e088715 873static int update_devnode(UdevEvent *event) {
cf28ad46 874 sd_device *dev = event->dev;
e52eaf56
YW
875 int r;
876
7af1c780 877 r = sd_device_get_devnum(dev, NULL);
e52eaf56
YW
878 if (r == -ENOENT)
879 return 0;
880 if (r < 0)
881 return log_device_error_errno(dev, r, "Failed to get devnum: %m");
882
883 /* remove/update possible left-over symlinks from old database entry */
28266c44 884 (void) udev_node_update_old_links(dev, event->dev_db_clone);
e52eaf56 885
25de7aa7 886 if (!uid_is_valid(event->uid)) {
e52eaf56 887 r = device_get_devnode_uid(dev, &event->uid);
3708c0f4 888 if (r < 0 && r != -ENOENT)
e52eaf56
YW
889 return log_device_error_errno(dev, r, "Failed to get devnode UID: %m");
890 }
891
25de7aa7 892 if (!gid_is_valid(event->gid)) {
e52eaf56 893 r = device_get_devnode_gid(dev, &event->gid);
3708c0f4 894 if (r < 0 && r != -ENOENT)
e52eaf56
YW
895 return log_device_error_errno(dev, r, "Failed to get devnode GID: %m");
896 }
897
25de7aa7 898 if (event->mode == MODE_INVALID) {
e52eaf56
YW
899 r = device_get_devnode_mode(dev, &event->mode);
900 if (r < 0 && r != -ENOENT)
901 return log_device_error_errno(dev, r, "Failed to get devnode mode: %m");
e52eaf56 902 }
3708c0f4
ZJS
903 if (event->mode == MODE_INVALID && gid_is_valid(event->gid) && event->gid > 0)
904 /* If group is set, but mode is not set, "upgrade" mode for the group. */
905 event->mode = 0660;
906
a1130022 907 bool apply_mac = device_for_action(dev, SD_DEVICE_ADD);
e52eaf56 908
3708c0f4 909 return udev_node_add(dev, apply_mac, event->mode, event->uid, event->gid, event->seclabel_list);
e52eaf56
YW
910}
911
eb1f9e30 912static void event_execute_rules_on_remove(
2e088715 913 UdevEvent *event,
66f737b4 914 usec_t timeout_usec,
e2099267 915 int timeout_signal,
eb1f9e30 916 Hashmap *properties_list,
9a07157d 917 UdevRules *rules) {
912541b0 918
cf28ad46 919 sd_device *dev = event->dev;
eb1f9e30 920 int r;
912541b0 921
ebcc52fa 922 r = device_read_db_internal(dev, true);
eb1f9e30
YW
923 if (r < 0)
924 log_device_debug_errno(dev, r, "Failed to read database under /run/udev/data/: %m");
107f2e25 925
eb1f9e30
YW
926 r = device_tag_index(dev, NULL, false);
927 if (r < 0)
928 log_device_debug_errno(dev, r, "Failed to remove corresponding tag files under /run/udev/tag/, ignoring: %m");
912541b0 929
eb1f9e30
YW
930 r = device_delete_db(dev);
931 if (r < 0)
932 log_device_debug_errno(dev, r, "Failed to delete database under /run/udev/data/, ignoring: %m");
912541b0 933
d4a95a95 934 if (sd_device_get_devnum(dev, NULL) >= 0)
eb1f9e30
YW
935 (void) udev_watch_end(dev);
936
e2099267 937 (void) udev_rules_apply_to_event(rules, event, timeout_usec, timeout_signal, properties_list);
eb1f9e30 938
d4a95a95 939 if (sd_device_get_devnum(dev, NULL) >= 0)
eb1f9e30
YW
940 (void) udev_node_remove(dev);
941}
942
51d9aec0 943static int udev_event_on_move(sd_device *dev) {
a4055a60
YW
944 int r;
945
a4055a60
YW
946 /* Drop previously added property */
947 r = device_add_property(dev, "ID_RENAMING", NULL);
948 if (r < 0)
99058cd6 949 return log_device_debug_errno(dev, r, "Failed to remove 'ID_RENAMING' property: %m");
a4055a60
YW
950
951 return 0;
952}
953
e77b146f
LP
954static int copy_all_tags(sd_device *d, sd_device *s) {
955 const char *tag;
956 int r;
957
958 assert(d);
959
960 if (!s)
961 return 0;
962
5b90b906 963 FOREACH_DEVICE_TAG(s, tag) {
e77b146f
LP
964 r = device_add_tag(d, tag, false);
965 if (r < 0)
966 return r;
967 }
968
969 return 0;
970}
971
2e088715 972int udev_event_execute_rules(UdevEvent *event,
66f737b4 973 usec_t timeout_usec,
e2099267 974 int timeout_signal,
eb1f9e30 975 Hashmap *properties_list,
9a07157d 976 UdevRules *rules) {
d4d690fa 977 const char *subsystem;
a1130022 978 sd_device_action_t action;
6d0fdf45 979 sd_device *dev;
eb1f9e30
YW
980 int r;
981
982 assert(event);
983 assert(rules);
984
6d0fdf45
YW
985 dev = event->dev;
986
eb1f9e30
YW
987 r = sd_device_get_subsystem(dev, &subsystem);
988 if (r < 0)
989 return log_device_error_errno(dev, r, "Failed to get subsystem: %m");
990
a1130022 991 r = sd_device_get_action(dev, &action);
eb1f9e30 992 if (r < 0)
d4d690fa 993 return log_device_error_errno(dev, r, "Failed to get ACTION: %m");
b081b27e 994
a1130022 995 if (action == SD_DEVICE_REMOVE) {
e2099267 996 event_execute_rules_on_remove(event, timeout_usec, timeout_signal, properties_list, rules);
eb1f9e30
YW
997 return 0;
998 }
912541b0 999
480ecb7d 1000 r = device_clone_with_db(dev, &event->dev_db_clone);
eb1f9e30 1001 if (r < 0)
99058cd6 1002 return log_device_debug_errno(dev, r, "Failed to clone sd_device object: %m");
912541b0 1003
e77b146f
LP
1004 r = copy_all_tags(dev, event->dev_db_clone);
1005 if (r < 0)
1006 log_device_warning_errno(dev, r, "Failed to copy all tags from old database entry, ignoring: %m");
1007
28266c44 1008 if (sd_device_get_devnum(dev, NULL) >= 0)
a4055a60
YW
1009 /* Disable watch during event processing. */
1010 (void) udev_watch_end(event->dev_db_clone);
912541b0 1011
a1130022 1012 if (action == SD_DEVICE_MOVE) {
51d9aec0 1013 r = udev_event_on_move(event->dev);
99058cd6
YW
1014 if (r < 0)
1015 return r;
1016 }
eb1f9e30 1017
e2099267 1018 r = udev_rules_apply_to_event(rules, event, timeout_usec, timeout_signal, properties_list);
99058cd6
YW
1019 if (r < 0)
1020 return log_device_debug_errno(dev, r, "Failed to apply udev rules: %m");
eb1f9e30 1021
99058cd6
YW
1022 r = rename_netif(event);
1023 if (r < 0)
1024 return r;
1025
1026 r = update_devnode(event);
1027 if (r < 0)
1028 return r;
eb1f9e30
YW
1029
1030 /* preserve old, or get new initialization timestamp */
480ecb7d 1031 r = device_ensure_usec_initialized(dev, event->dev_db_clone);
eb1f9e30 1032 if (r < 0)
99058cd6 1033 return log_device_debug_errno(dev, r, "Failed to set initialization timestamp: %m");
eb1f9e30
YW
1034
1035 /* (re)write database file */
480ecb7d 1036 r = device_tag_index(dev, event->dev_db_clone, true);
eb1f9e30 1037 if (r < 0)
99058cd6 1038 return log_device_debug_errno(dev, r, "Failed to update tags under /run/udev/tag/: %m");
eb1f9e30
YW
1039
1040 r = device_update_db(dev);
1041 if (r < 0)
99058cd6 1042 return log_device_debug_errno(dev, r, "Failed to update database under /run/udev/data/: %m");
eb1f9e30 1043
30f6dce6
MS
1044 /* Yes, we run update_devnode() twice, because in the first invocation, that is before update of udev database,
1045 * it could happen that two contenders are replacing each other's symlink. Hence we run it again to make sure
1046 * symlinks point to devices that claim them with the highest priority. */
1047 r = update_devnode(event);
1048 if (r < 0)
1049 return r;
1050
eb1f9e30
YW
1051 device_set_is_initialized(dev);
1052
eb1f9e30 1053 return 0;
d46f37fd 1054}
2d73813e 1055
e2099267 1056void udev_event_execute_run(UdevEvent *event, usec_t timeout_usec, int timeout_signal) {
1448820a 1057 const char *command;
29448498 1058 void *val;
25de7aa7 1059 int r;
912541b0 1060
90e74a66 1061 ORDERED_HASHMAP_FOREACH_KEY(val, command, event->run_list) {
25de7aa7 1062 UdevBuiltinCommand builtin_cmd = PTR_TO_UDEV_BUILTIN_CMD(val);
912541b0 1063
25de7aa7
YW
1064 if (builtin_cmd != _UDEV_BUILTIN_INVALID) {
1065 log_device_debug(event->dev, "Running built-in command \"%s\"", command);
1066 r = udev_builtin_run(event->dev, builtin_cmd, command, false);
1067 if (r < 0)
1068 log_device_debug_errno(event->dev, r, "Failed to run built-in command \"%s\", ignoring: %m", command);
1069 } else {
6b92f429 1070 if (event->exec_delay_usec > 0) {
25de7aa7
YW
1071 char buf[FORMAT_TIMESPAN_MAX];
1072
1073 log_device_debug(event->dev, "Delaying execution of \"%s\" for %s.",
1074 command, format_timespan(buf, sizeof(buf), event->exec_delay_usec, USEC_PER_SEC));
6b92f429 1075 (void) usleep(event->exec_delay_usec);
912541b0
KS
1076 }
1077
25de7aa7 1078 log_device_debug(event->dev, "Running command \"%s\"", command);
e2099267
MS
1079
1080 r = udev_event_spawn(event, timeout_usec, timeout_signal, false, command, NULL, 0);
08de1958
YW
1081 if (r < 0)
1082 log_device_warning_errno(event->dev, r, "Failed to execute '%s', ignoring: %m", command);
1083 else if (r > 0) /* returned value is positive when program fails */
25de7aa7 1084 log_device_debug(event->dev, "Command \"%s\" returned %d (error), ignoring.", command, r);
912541b0
KS
1085 }
1086 }
2d73813e 1087}