1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 * Copyright © 2004 Chris Friesen <chris_friesen@sympatico.ca>
4 * Copyright © 2009 Canonical Ltd.
5 * Copyright © 2009 Scott James Remnant <scott@netsplit.com>
15 #include <sys/epoll.h>
17 #include <sys/inotify.h>
18 #include <sys/ioctl.h>
19 #include <sys/mount.h>
20 #include <sys/prctl.h>
21 #include <sys/signalfd.h>
27 #include "sd-daemon.h"
30 #include "alloc-util.h"
31 #include "cgroup-setup.h"
32 #include "cgroup-util.h"
33 #include "cpu-set-util.h"
34 #include "dev-setup.h"
35 #include "device-monitor-private.h"
36 #include "device-private.h"
37 #include "device-util.h"
38 #include "errno-list.h"
39 #include "event-util.h"
42 #include "format-util.h"
45 #include "inotify-util.h"
47 #include "limits-util.h"
49 #include "main-func.h"
51 #include "netlink-util.h"
52 #include "parse-util.h"
53 #include "path-util.h"
54 #include "pretty-print.h"
55 #include "proc-cmdline.h"
56 #include "process-util.h"
57 #include "selinux-util.h"
58 #include "signal-util.h"
59 #include "socket-util.h"
60 #include "string-util.h"
63 #include "syslog-util.h"
65 #include "udev-builtin.h"
66 #include "udev-ctrl.h"
67 #include "udev-event.h"
68 #include "udev-util.h"
69 #include "udev-watch.h"
70 #include "user-util.h"
73 #define WORKER_NUM_MAX 2048U
74 #define EVENT_RETRY_INTERVAL_USEC (200 * USEC_PER_MSEC)
75 #define EVENT_RETRY_TIMEOUT_USEC (3 * USEC_PER_MINUTE)
77 static bool arg_debug
= false;
78 static int arg_daemonize
= false;
79 static ResolveNameTiming arg_resolve_name_timing
= RESOLVE_NAME_EARLY
;
80 static unsigned arg_children_max
= 0;
81 static usec_t arg_exec_delay_usec
= 0;
82 static usec_t arg_event_timeout_usec
= 180 * USEC_PER_SEC
;
83 static int arg_timeout_signal
= SIGKILL
;
84 static bool arg_blockdev_read_only
= false;
86 typedef struct Event Event
;
87 typedef struct Worker Worker
;
89 typedef struct Manager
{
92 LIST_HEAD(Event
, events
);
94 pid_t pid
; /* the process that originally allocated the manager object */
102 sd_device_monitor
*monitor
;
106 /* used by udev-watch */
108 sd_event_source
*inotify_event
;
110 sd_event_source
*kill_workers_event
;
114 bool stop_exec_queue
;
118 typedef enum EventState
{
124 typedef struct Event
{
131 sd_device_action_t action
;
133 uint64_t blocker_seqnum
;
136 const char *devpath_old
;
138 usec_t retry_again_next_usec
;
139 usec_t retry_again_timeout_usec
;
141 sd_event_source
*timeout_warning_event
;
142 sd_event_source
*timeout_event
;
144 LIST_FIELDS(Event
, event
);
147 typedef enum WorkerState
{
155 typedef struct Worker
{
158 sd_event_source
*child_event_source
;
159 sd_device_monitor
*monitor
;
164 /* passed from worker to main process */
165 typedef enum EventResult
{
166 EVENT_RESULT_NERRNO_MIN
= -ERRNO_MAX
,
167 EVENT_RESULT_NERRNO_MAX
= -1,
168 EVENT_RESULT_SUCCESS
= 0,
169 EVENT_RESULT_EXIT_STATUS_BASE
= 0,
170 EVENT_RESULT_EXIT_STATUS_MAX
= 255,
171 EVENT_RESULT_TRY_AGAIN
= 256, /* when the block device is locked by another process. */
172 EVENT_RESULT_SIGNAL_BASE
= 257,
173 EVENT_RESULT_SIGNAL_MAX
= EVENT_RESULT_SIGNAL_BASE
+ _NSIG
,
175 _EVENT_RESULT_INVALID
= -EINVAL
,
178 static Event
*event_free(Event
*event
) {
182 assert(event
->manager
);
184 LIST_REMOVE(event
, event
->manager
->events
, event
);
185 sd_device_unref(event
->dev
);
187 /* Do not use sd_event_source_disable_unref() here, as this is called by both workers and the
189 sd_event_source_unref(event
->timeout_warning_event
);
190 sd_event_source_unref(event
->timeout_event
);
193 event
->worker
->event
= NULL
;
198 static void event_queue_cleanup(Manager
*manager
, EventState match_state
) {
199 LIST_FOREACH(event
, event
, manager
->events
) {
200 if (match_state
!= EVENT_UNDEF
&& match_state
!= event
->state
)
207 static Worker
*worker_free(Worker
*worker
) {
212 hashmap_remove(worker
->manager
->workers
, PID_TO_PTR(worker
->pid
));
214 sd_event_source_unref(worker
->child_event_source
);
215 sd_device_monitor_unref(worker
->monitor
);
216 event_free(worker
->event
);
218 return mfree(worker
);
221 DEFINE_TRIVIAL_CLEANUP_FUNC(Worker
*, worker_free
);
222 DEFINE_PRIVATE_HASH_OPS_WITH_VALUE_DESTRUCTOR(worker_hash_op
, void, trivial_hash_func
, trivial_compare_func
, Worker
, worker_free
);
224 static void manager_clear_for_worker(Manager
*manager
) {
227 /* Do not use sd_event_source_disable_unref() here, as this is called by both workers and the
229 manager
->inotify_event
= sd_event_source_unref(manager
->inotify_event
);
230 manager
->kill_workers_event
= sd_event_source_unref(manager
->kill_workers_event
);
232 manager
->event
= sd_event_unref(manager
->event
);
234 manager
->workers
= hashmap_free(manager
->workers
);
235 event_queue_cleanup(manager
, EVENT_UNDEF
);
237 manager
->monitor
= sd_device_monitor_unref(manager
->monitor
);
238 manager
->ctrl
= udev_ctrl_unref(manager
->ctrl
);
240 manager
->worker_watch
[READ_END
] = safe_close(manager
->worker_watch
[READ_END
]);
243 static Manager
* manager_free(Manager
*manager
) {
249 manager_clear_for_worker(manager
);
251 sd_netlink_unref(manager
->rtnl
);
253 hashmap_free_free_free(manager
->properties
);
254 udev_rules_free(manager
->rules
);
256 safe_close(manager
->inotify_fd
);
257 safe_close_pair(manager
->worker_watch
);
259 free(manager
->cgroup
);
260 return mfree(manager
);
263 DEFINE_TRIVIAL_CLEANUP_FUNC(Manager
*, manager_free
);
265 static int on_sigchld(sd_event_source
*s
, const siginfo_t
*si
, void *userdata
);
267 static int worker_new(Worker
**ret
, Manager
*manager
, sd_device_monitor
*worker_monitor
, pid_t pid
) {
268 _cleanup_(worker_freep
) Worker
*worker
= NULL
;
273 assert(worker_monitor
);
276 /* close monitor, but keep address around */
277 device_monitor_disconnect(worker_monitor
);
279 worker
= new(Worker
, 1);
284 .monitor
= sd_device_monitor_ref(worker_monitor
),
288 r
= sd_event_add_child(manager
->event
, &worker
->child_event_source
, pid
, WEXITED
, on_sigchld
, worker
);
292 r
= hashmap_ensure_put(&manager
->workers
, &worker_hash_op
, PID_TO_PTR(pid
), worker
);
296 worker
->manager
= manager
;
298 *ret
= TAKE_PTR(worker
);
302 static void manager_kill_workers(Manager
*manager
, bool force
) {
307 HASHMAP_FOREACH(worker
, manager
->workers
) {
308 if (worker
->state
== WORKER_KILLED
)
311 if (worker
->state
== WORKER_RUNNING
&& !force
) {
312 worker
->state
= WORKER_KILLING
;
316 worker
->state
= WORKER_KILLED
;
317 (void) kill(worker
->pid
, SIGTERM
);
321 static void manager_exit(Manager
*manager
) {
324 manager
->exit
= true;
328 "STATUS=Starting shutdown...");
330 /* close sources of new events and discard buffered events */
331 manager
->ctrl
= udev_ctrl_unref(manager
->ctrl
);
333 manager
->inotify_event
= sd_event_source_disable_unref(manager
->inotify_event
);
334 manager
->inotify_fd
= safe_close(manager
->inotify_fd
);
336 manager
->monitor
= sd_device_monitor_unref(manager
->monitor
);
338 /* discard queued events and kill workers */
339 event_queue_cleanup(manager
, EVENT_QUEUED
);
340 manager_kill_workers(manager
, true);
343 static void notify_ready(void) {
346 r
= sd_notifyf(false,
348 "STATUS=Processing with %u children at max", arg_children_max
);
350 log_warning_errno(r
, "Failed to send readiness notification, ignoring: %m");
353 /* reload requested, HUP signal received, rules changed, builtin changed */
354 static void manager_reload(Manager
*manager
, bool force
) {
355 _cleanup_(udev_rules_freep
) UdevRules
*rules
= NULL
;
361 assert_se(sd_event_now(manager
->event
, CLOCK_MONOTONIC
, &now_usec
) >= 0);
362 if (!force
&& now_usec
< usec_add(manager
->last_usec
, 3 * USEC_PER_SEC
))
363 /* check for changed config, every 3 seconds at most */
365 manager
->last_usec
= now_usec
;
367 /* Reload SELinux label database, to make the child inherit the up-to-date database. */
368 mac_selinux_maybe_reload();
370 /* Nothing changed. It is not necessary to reload. */
371 if (!udev_rules_should_reload(manager
->rules
) && !udev_builtin_validate())
376 "STATUS=Flushing configuration...");
378 manager_kill_workers(manager
, false);
383 r
= udev_rules_load(&rules
, arg_resolve_name_timing
);
385 log_warning_errno(r
, "Failed to read udev rules, using the previously loaded rules, ignoring: %m");
387 udev_rules_free_and_replace(manager
->rules
, rules
);
392 static int on_kill_workers_event(sd_event_source
*s
, uint64_t usec
, void *userdata
) {
393 Manager
*manager
= userdata
;
397 log_debug("Cleanup idle workers");
398 manager_kill_workers(manager
, false);
403 static void device_broadcast(sd_device_monitor
*monitor
, sd_device
*dev
, EventResult result
) {
408 /* On exit, manager->monitor is already NULL. */
412 if (result
!= EVENT_RESULT_SUCCESS
) {
413 (void) device_add_property(dev
, "UDEV_WORKER_FAILED", "1");
416 case EVENT_RESULT_NERRNO_MIN
... EVENT_RESULT_NERRNO_MAX
: {
419 (void) device_add_propertyf(dev
, "UDEV_WORKER_ERRNO", "%i", -result
);
421 str
= errno_to_name(result
);
423 (void) device_add_property(dev
, "UDEV_WORKER_ERRNO_NAME", str
);
426 case EVENT_RESULT_EXIT_STATUS_BASE
... EVENT_RESULT_EXIT_STATUS_MAX
:
427 (void) device_add_propertyf(dev
, "UDEV_WORKER_EXIT_STATUS", "%i", result
- EVENT_RESULT_EXIT_STATUS_BASE
);
430 case EVENT_RESULT_TRY_AGAIN
:
431 assert_not_reached();
434 case EVENT_RESULT_SIGNAL_BASE
... EVENT_RESULT_SIGNAL_MAX
: {
437 (void) device_add_propertyf(dev
, "UDEV_WORKER_SIGNAL", "%i", result
- EVENT_RESULT_SIGNAL_BASE
);
439 str
= signal_to_string(result
- EVENT_RESULT_SIGNAL_BASE
);
441 (void) device_add_property(dev
, "UDEV_WORKER_SIGNAL_NAME", str
);
445 log_device_warning(dev
, "Unknown event result \"%i\", ignoring.", result
);
449 r
= device_monitor_send_device(monitor
, NULL
, dev
);
451 log_device_warning_errno(dev
, r
,
452 "Failed to broadcast event to libudev listeners, ignoring: %m");
455 static int worker_send_result(Manager
*manager
, EventResult result
) {
457 assert(manager
->worker_watch
[WRITE_END
] >= 0);
459 return loop_write(manager
->worker_watch
[WRITE_END
], &result
, sizeof(result
), false);
462 static int device_get_whole_disk(sd_device
*dev
, sd_device
**ret_device
, const char **ret_devname
) {
468 if (device_for_action(dev
, SD_DEVICE_REMOVE
))
471 r
= sd_device_get_subsystem(dev
, &val
);
473 return log_device_debug_errno(dev
, r
, "Failed to get subsystem: %m");
475 if (!streq(val
, "block"))
478 r
= sd_device_get_sysname(dev
, &val
);
480 return log_device_debug_errno(dev
, r
, "Failed to get sysname: %m");
482 /* Exclude the following devices:
483 * For "dm-", see the comment added by e918a1b5a94f270186dca59156354acd2a596494.
484 * For "md", see the commit message of 2e5b17d01347d3c3118be2b8ad63d20415dbb1f0,
485 * but not sure the assumption is still valid even when partitions are created on the md
486 * devices, surprisingly which seems to be possible, see PR #22973.
487 * For "drbd", see the commit message of fee854ee8ccde0cd28e0f925dea18cce35f3993d. */
488 if (STARTSWITH_SET(val
, "dm-", "md", "drbd"))
491 r
= sd_device_get_devtype(dev
, &val
);
492 if (r
< 0 && r
!= -ENOENT
)
493 return log_device_debug_errno(dev
, r
, "Failed to get devtype: %m");
494 if (r
>= 0 && streq(val
, "partition")) {
495 r
= sd_device_get_parent(dev
, &dev
);
496 if (r
== -ENOENT
) /* The device may be already removed. */
499 return log_device_debug_errno(dev
, r
, "Failed to get parent device: %m");
502 r
= sd_device_get_devname(dev
, &val
);
506 return log_device_debug_errno(dev
, r
, "Failed to get devname: %m");
522 static int worker_lock_whole_disk(sd_device
*dev
, int *ret_fd
) {
523 _cleanup_close_
int fd
= -1;
524 sd_device
*dev_whole_disk
;
531 /* Take a shared lock on the device node; this establishes a concept of device "ownership" to
532 * serialize device access. External processes holding an exclusive lock will cause udev to skip the
533 * event handling; in the case udev acquired the lock, the external process can block until udev has
534 * finished its event handling. */
536 r
= device_get_whole_disk(dev
, &dev_whole_disk
, &val
);
542 fd
= sd_device_open(dev_whole_disk
, O_RDONLY
|O_CLOEXEC
|O_NONBLOCK
);
544 bool ignore
= ERRNO_IS_DEVICE_ABSENT(fd
);
546 log_device_debug_errno(dev
, fd
, "Failed to open '%s'%s: %m", val
, ignore
? ", ignoring" : "");
553 if (flock(fd
, LOCK_SH
|LOCK_NB
) < 0)
554 return log_device_debug_errno(dev
, errno
, "Failed to flock(%s): %m", val
);
556 *ret_fd
= TAKE_FD(fd
);
564 static int worker_mark_block_device_read_only(sd_device
*dev
) {
565 _cleanup_close_
int fd
= -1;
571 if (!arg_blockdev_read_only
)
574 /* Do this only once, when the block device is new. If the device is later retriggered let's not
575 * toggle the bit again, so that people can boot up with full read-only mode and then unset the bit
576 * for specific devices only. */
577 if (!device_for_action(dev
, SD_DEVICE_ADD
))
580 r
= sd_device_get_subsystem(dev
, &val
);
582 return log_device_debug_errno(dev
, r
, "Failed to get subsystem: %m");
584 if (!streq(val
, "block"))
587 r
= sd_device_get_sysname(dev
, &val
);
589 return log_device_debug_errno(dev
, r
, "Failed to get sysname: %m");
591 /* Exclude synthetic devices for now, this is supposed to be a safety feature to avoid modification
592 * of physical devices, and what sits on top of those doesn't really matter if we don't allow the
593 * underlying block devices to receive changes. */
594 if (STARTSWITH_SET(val
, "dm-", "md", "drbd", "loop", "nbd", "zram"))
597 fd
= sd_device_open(dev
, O_RDONLY
|O_CLOEXEC
|O_NONBLOCK
);
599 return log_device_debug_errno(dev
, fd
, "Failed to open '%s', ignoring: %m", val
);
601 if (ioctl(fd
, BLKROSET
, &state
) < 0)
602 return log_device_warning_errno(dev
, errno
, "Failed to mark block device '%s' read-only: %m", val
);
604 log_device_info(dev
, "Successfully marked block device '%s' read-only.", val
);
608 static int worker_process_device(Manager
*manager
, sd_device
*dev
) {
609 _cleanup_(udev_event_freep
) UdevEvent
*udev_event
= NULL
;
610 _cleanup_close_
int fd_lock
= -1;
616 log_device_uevent(dev
, "Processing device");
618 udev_event
= udev_event_new(dev
, arg_exec_delay_usec
, manager
->rtnl
, manager
->log_level
);
622 /* If this is a block device and the device is locked currently via the BSD advisory locks,
623 * someone else is using it exclusively. We don't run our udev rules now to not interfere.
624 * Instead of processing the event, we requeue the event and will try again after a delay.
626 * The user-facing side of this: https://systemd.io/BLOCK_DEVICE_LOCKING */
627 r
= worker_lock_whole_disk(dev
, &fd_lock
);
629 return EVENT_RESULT_TRY_AGAIN
;
633 (void) worker_mark_block_device_read_only(dev
);
635 /* apply rules, create node, symlinks */
636 r
= udev_event_execute_rules(
639 arg_event_timeout_usec
,
646 udev_event_execute_run(udev_event
, arg_event_timeout_usec
, arg_timeout_signal
);
649 /* in case rtnl was initialized */
650 manager
->rtnl
= sd_netlink_ref(udev_event
->rtnl
);
652 r
= udev_event_process_inotify_watch(udev_event
, manager
->inotify_fd
);
656 log_device_uevent(dev
, "Device processed");
660 static int worker_device_monitor_handler(sd_device_monitor
*monitor
, sd_device
*dev
, void *userdata
) {
661 Manager
*manager
= userdata
;
667 r
= worker_process_device(manager
, dev
);
668 if (r
== EVENT_RESULT_TRY_AGAIN
)
669 /* if we couldn't acquire the flock(), then requeue the event */
670 log_device_debug(dev
, "Block device is currently locked, requeueing the event.");
673 log_device_warning_errno(dev
, r
, "Failed to process device, ignoring: %m");
675 /* send processed event back to libudev listeners */
676 device_broadcast(monitor
, dev
, r
);
679 /* send udevd the result of the event execution */
680 r
= worker_send_result(manager
, r
);
682 log_device_warning_errno(dev
, r
, "Failed to send signal to main daemon, ignoring: %m");
684 /* Reset the log level, as it might be changed by "OPTIONS=log_level=". */
685 log_set_max_level(manager
->log_level
);
690 static int worker_main(Manager
*_manager
, sd_device_monitor
*monitor
, sd_device
*first_device
) {
691 _cleanup_(sd_device_unrefp
) sd_device
*dev
= first_device
;
692 _cleanup_(manager_freep
) Manager
*manager
= _manager
;
699 assert_se(unsetenv("NOTIFY_SOCKET") == 0);
701 assert_se(sigprocmask_many(SIG_BLOCK
, NULL
, SIGTERM
, -1) >= 0);
703 /* Reset OOM score, we only protect the main daemon. */
704 r
= set_oom_score_adjust(0);
706 log_debug_errno(r
, "Failed to reset OOM score, ignoring: %m");
708 /* Clear unnecessary data in Manager object. */
709 manager_clear_for_worker(manager
);
711 r
= sd_event_new(&manager
->event
);
713 return log_error_errno(r
, "Failed to allocate event loop: %m");
715 r
= sd_event_add_signal(manager
->event
, NULL
, SIGTERM
, NULL
, NULL
);
717 return log_error_errno(r
, "Failed to set SIGTERM event: %m");
719 r
= sd_device_monitor_attach_event(monitor
, manager
->event
);
721 return log_error_errno(r
, "Failed to attach event loop to device monitor: %m");
723 r
= sd_device_monitor_start(monitor
, worker_device_monitor_handler
, manager
);
725 return log_error_errno(r
, "Failed to start device monitor: %m");
727 (void) sd_event_source_set_description(sd_device_monitor_get_event_source(monitor
), "worker-device-monitor");
729 /* Process first device */
730 (void) worker_device_monitor_handler(monitor
, dev
, manager
);
732 r
= sd_event_loop(manager
->event
);
734 return log_error_errno(r
, "Event loop failed: %m");
739 static int on_event_timeout(sd_event_source
*s
, uint64_t usec
, void *userdata
) {
740 Event
*event
= userdata
;
743 assert(event
->worker
);
745 kill_and_sigcont(event
->worker
->pid
, arg_timeout_signal
);
746 event
->worker
->state
= WORKER_KILLED
;
748 log_device_error(event
->dev
, "Worker ["PID_FMT
"] processing SEQNUM=%"PRIu64
" killed", event
->worker
->pid
, event
->seqnum
);
753 static int on_event_timeout_warning(sd_event_source
*s
, uint64_t usec
, void *userdata
) {
754 Event
*event
= userdata
;
757 assert(event
->worker
);
759 log_device_warning(event
->dev
, "Worker ["PID_FMT
"] processing SEQNUM=%"PRIu64
" is taking a long time", event
->worker
->pid
, event
->seqnum
);
764 static void worker_attach_event(Worker
*worker
, Event
*event
) {
768 assert(worker
->manager
);
770 assert(!event
->worker
);
771 assert(!worker
->event
);
773 worker
->state
= WORKER_RUNNING
;
774 worker
->event
= event
;
775 event
->state
= EVENT_RUNNING
;
776 event
->worker
= worker
;
778 e
= worker
->manager
->event
;
780 (void) sd_event_add_time_relative(e
, &event
->timeout_warning_event
, CLOCK_MONOTONIC
,
781 udev_warn_timeout(arg_event_timeout_usec
), USEC_PER_SEC
,
782 on_event_timeout_warning
, event
);
784 (void) sd_event_add_time_relative(e
, &event
->timeout_event
, CLOCK_MONOTONIC
,
785 arg_event_timeout_usec
, USEC_PER_SEC
,
786 on_event_timeout
, event
);
789 static int worker_spawn(Manager
*manager
, Event
*event
) {
790 _cleanup_(sd_device_monitor_unrefp
) sd_device_monitor
*worker_monitor
= NULL
;
795 /* listen for new events */
796 r
= device_monitor_new_full(&worker_monitor
, MONITOR_GROUP_NONE
, -1);
800 (void) sd_device_monitor_set_description(worker_monitor
, "worker");
802 /* allow the main daemon netlink address to send devices to the worker */
803 r
= device_monitor_allow_unicast_sender(worker_monitor
, manager
->monitor
);
805 return log_error_errno(r
, "Worker: Failed to set unicast sender: %m");
807 r
= device_monitor_enable_receiving(worker_monitor
);
809 return log_error_errno(r
, "Worker: Failed to enable receiving of device: %m");
811 r
= safe_fork(NULL
, FORK_DEATHSIG
, &pid
);
813 event
->state
= EVENT_QUEUED
;
814 return log_error_errno(r
, "Failed to fork() worker: %m");
817 DEVICE_TRACE_POINT(worker_spawned
, event
->dev
, getpid());
820 r
= worker_main(manager
, worker_monitor
, sd_device_ref(event
->dev
));
822 _exit(r
< 0 ? EXIT_FAILURE
: EXIT_SUCCESS
);
825 r
= worker_new(&worker
, manager
, worker_monitor
, pid
);
827 return log_error_errno(r
, "Failed to create worker object: %m");
829 worker_attach_event(worker
, event
);
831 log_device_debug(event
->dev
, "Worker ["PID_FMT
"] is forked for processing SEQNUM=%"PRIu64
".", pid
, event
->seqnum
);
835 static int event_run(Event
*event
) {
836 static bool log_children_max_reached
= true;
842 assert(event
->manager
);
844 log_device_uevent(event
->dev
, "Device ready for processing");
846 manager
= event
->manager
;
847 HASHMAP_FOREACH(worker
, manager
->workers
) {
848 if (worker
->state
!= WORKER_IDLE
)
851 r
= device_monitor_send_device(manager
->monitor
, worker
->monitor
, event
->dev
);
853 log_device_error_errno(event
->dev
, r
, "Worker ["PID_FMT
"] did not accept message, killing the worker: %m",
855 (void) kill(worker
->pid
, SIGKILL
);
856 worker
->state
= WORKER_KILLED
;
859 worker_attach_event(worker
, event
);
860 return 1; /* event is now processing. */
863 if (hashmap_size(manager
->workers
) >= arg_children_max
) {
864 /* Avoid spamming the debug logs if the limit is already reached and
865 * many events still need to be processed */
866 if (log_children_max_reached
&& arg_children_max
> 1) {
867 log_debug("Maximum number (%u) of children reached.", hashmap_size(manager
->workers
));
868 log_children_max_reached
= false;
870 return 0; /* no free worker */
873 /* Re-enable the debug message for the next batch of events */
874 log_children_max_reached
= true;
876 /* start new worker and pass initial device */
877 r
= worker_spawn(manager
, event
);
881 return 1; /* event is now processing. */
884 static int event_is_blocked(Event
*event
) {
885 Event
*loop_event
= NULL
;
888 /* lookup event for identical, parent, child device */
891 assert(event
->manager
);
892 assert(event
->blocker_seqnum
<= event
->seqnum
);
894 if (event
->retry_again_next_usec
> 0) {
897 r
= sd_event_now(event
->manager
->event
, CLOCK_BOOTTIME
, &now_usec
);
901 if (event
->retry_again_next_usec
<= now_usec
)
905 if (event
->blocker_seqnum
== event
->seqnum
)
906 /* we have checked previously and no blocker found */
909 LIST_FOREACH(event
, e
, event
->manager
->events
) {
912 /* we already found a later event, earlier cannot block us, no need to check again */
913 if (loop_event
->seqnum
< event
->blocker_seqnum
)
916 /* event we checked earlier still exists, no need to check again */
917 if (loop_event
->seqnum
== event
->blocker_seqnum
)
920 /* found ourself, no later event can block us */
921 if (loop_event
->seqnum
>= event
->seqnum
)
924 /* found event we have not checked */
929 assert(loop_event
->seqnum
> event
->blocker_seqnum
&&
930 loop_event
->seqnum
< event
->seqnum
);
932 /* check if queue contains events we depend on */
933 LIST_FOREACH(event
, e
, loop_event
) {
936 /* found ourself, no later event can block us */
937 if (loop_event
->seqnum
>= event
->seqnum
)
940 if (streq_ptr(loop_event
->id
, event
->id
))
943 if (devpath_conflict(event
->devpath
, loop_event
->devpath
) ||
944 devpath_conflict(event
->devpath
, loop_event
->devpath_old
) ||
945 devpath_conflict(event
->devpath_old
, loop_event
->devpath
))
948 if (event
->devnode
&& streq_ptr(event
->devnode
, loop_event
->devnode
))
954 log_device_debug(event
->dev
, "SEQNUM=%" PRIu64
" blocked by SEQNUM=%" PRIu64
,
955 event
->seqnum
, loop_event
->seqnum
);
957 event
->blocker_seqnum
= loop_event
->seqnum
;
961 event
->blocker_seqnum
= event
->seqnum
;
965 static int event_queue_start(Manager
*manager
) {
970 if (!manager
->events
|| manager
->exit
|| manager
->stop_exec_queue
)
973 r
= event_source_disable(manager
->kill_workers_event
);
975 log_warning_errno(r
, "Failed to disable event source for cleaning up idle workers, ignoring: %m");
977 manager_reload(manager
, /* force = */ false);
979 LIST_FOREACH(event
, event
, manager
->events
) {
980 if (event
->state
!= EVENT_QUEUED
)
983 /* do not start event if parent or child event is still running or queued */
984 r
= event_is_blocked(event
);
988 log_device_warning_errno(event
->dev
, r
,
989 "Failed to check dependencies for event (SEQNUM=%"PRIu64
", ACTION=%s), "
990 "assuming there is no blocking event, ignoring: %m",
992 strna(device_action_to_string(event
->action
)));
994 r
= event_run(event
);
995 if (r
<= 0) /* 0 means there are no idle workers. Let's escape from the loop. */
1002 static int event_requeue(Event
*event
) {
1007 assert(event
->manager
);
1008 assert(event
->manager
->event
);
1010 event
->timeout_warning_event
= sd_event_source_disable_unref(event
->timeout_warning_event
);
1011 event
->timeout_event
= sd_event_source_disable_unref(event
->timeout_event
);
1013 /* add a short delay to suppress busy loop */
1014 r
= sd_event_now(event
->manager
->event
, CLOCK_BOOTTIME
, &now_usec
);
1016 return log_device_warning_errno(event
->dev
, r
,
1017 "Failed to get current time, "
1018 "skipping event (SEQNUM=%"PRIu64
", ACTION=%s): %m",
1019 event
->seqnum
, strna(device_action_to_string(event
->action
)));
1021 if (event
->retry_again_timeout_usec
> 0 && event
->retry_again_timeout_usec
<= now_usec
)
1022 return log_device_warning_errno(event
->dev
, SYNTHETIC_ERRNO(ETIMEDOUT
),
1023 "The underlying block device is locked by a process more than %s, "
1024 "skipping event (SEQNUM=%"PRIu64
", ACTION=%s).",
1025 FORMAT_TIMESPAN(EVENT_RETRY_TIMEOUT_USEC
, USEC_PER_MINUTE
),
1026 event
->seqnum
, strna(device_action_to_string(event
->action
)));
1028 event
->retry_again_next_usec
= usec_add(now_usec
, EVENT_RETRY_INTERVAL_USEC
);
1029 if (event
->retry_again_timeout_usec
== 0)
1030 event
->retry_again_timeout_usec
= usec_add(now_usec
, EVENT_RETRY_TIMEOUT_USEC
);
1032 if (event
->worker
&& event
->worker
->event
== event
)
1033 event
->worker
->event
= NULL
;
1034 event
->worker
= NULL
;
1036 event
->state
= EVENT_QUEUED
;
1040 static int event_queue_assume_block_device_unlocked(Manager
*manager
, sd_device
*dev
) {
1041 const char *devname
;
1044 /* When a new event for a block device is queued or we get an inotify event, assume that the
1045 * device is not locked anymore. The assumption may not be true, but that should not cause any
1046 * issues, as in that case events will be requeued soon. */
1048 r
= device_get_whole_disk(dev
, NULL
, &devname
);
1052 LIST_FOREACH(event
, event
, manager
->events
) {
1053 const char *event_devname
;
1055 if (event
->state
!= EVENT_QUEUED
)
1058 if (event
->retry_again_next_usec
== 0)
1061 if (device_get_whole_disk(event
->dev
, NULL
, &event_devname
) <= 0)
1064 if (!streq(devname
, event_devname
))
1067 event
->retry_again_next_usec
= 0;
1073 static int event_queue_insert(Manager
*manager
, sd_device
*dev
) {
1074 const char *devpath
, *devpath_old
= NULL
, *id
= NULL
, *devnode
= NULL
;
1075 sd_device_action_t action
;
1083 /* only one process can add events to the queue */
1084 assert(manager
->pid
== getpid_cached());
1086 /* We only accepts devices received by device monitor. */
1087 r
= sd_device_get_seqnum(dev
, &seqnum
);
1091 r
= sd_device_get_action(dev
, &action
);
1095 r
= sd_device_get_devpath(dev
, &devpath
);
1099 r
= sd_device_get_property_value(dev
, "DEVPATH_OLD", &devpath_old
);
1100 if (r
< 0 && r
!= -ENOENT
)
1103 r
= device_get_device_id(dev
, &id
);
1104 if (r
< 0 && r
!= -ENOENT
)
1107 r
= sd_device_get_devname(dev
, &devnode
);
1108 if (r
< 0 && r
!= -ENOENT
)
1111 event
= new(Event
, 1);
1117 .dev
= sd_device_ref(dev
),
1122 .devpath_old
= devpath_old
,
1124 .state
= EVENT_QUEUED
,
1127 if (!manager
->events
) {
1128 r
= touch("/run/udev/queue");
1130 log_warning_errno(r
, "Failed to touch /run/udev/queue, ignoring: %m");
1133 LIST_APPEND(event
, manager
->events
, event
);
1135 log_device_uevent(dev
, "Device is queued");
1140 static int on_uevent(sd_device_monitor
*monitor
, sd_device
*dev
, void *userdata
) {
1141 Manager
*manager
= userdata
;
1146 DEVICE_TRACE_POINT(kernel_uevent_received
, dev
);
1148 device_ensure_usec_initialized(dev
, NULL
);
1150 r
= event_queue_insert(manager
, dev
);
1152 log_device_error_errno(dev
, r
, "Failed to insert device into event queue: %m");
1156 (void) event_queue_assume_block_device_unlocked(manager
, dev
);
1158 /* we have fresh events, try to schedule them */
1159 event_queue_start(manager
);
1164 static int on_worker(sd_event_source
*s
, int fd
, uint32_t revents
, void *userdata
) {
1165 Manager
*manager
= userdata
;
1171 struct iovec iovec
= IOVEC_MAKE(&result
, sizeof(result
));
1172 CMSG_BUFFER_TYPE(CMSG_SPACE(sizeof(struct ucred
))) control
;
1173 struct msghdr msghdr
= {
1176 .msg_control
= &control
,
1177 .msg_controllen
= sizeof(control
),
1180 struct ucred
*ucred
;
1183 size
= recvmsg_safe(fd
, &msghdr
, MSG_DONTWAIT
);
1186 if (size
== -EAGAIN
)
1187 /* nothing more to read */
1190 return log_error_errno(size
, "Failed to receive message: %m");
1192 cmsg_close_all(&msghdr
);
1194 if (size
!= sizeof(result
)) {
1195 log_warning("Ignoring worker message with invalid size %zi bytes", size
);
1199 ucred
= CMSG_FIND_DATA(&msghdr
, SOL_SOCKET
, SCM_CREDENTIALS
, struct ucred
);
1200 if (!ucred
|| ucred
->pid
<= 0) {
1201 log_warning("Ignoring worker message without valid PID");
1205 /* lookup worker who sent the signal */
1206 worker
= hashmap_get(manager
->workers
, PID_TO_PTR(ucred
->pid
));
1208 log_debug("Worker ["PID_FMT
"] returned, but is no longer tracked", ucred
->pid
);
1212 if (worker
->state
== WORKER_KILLING
) {
1213 worker
->state
= WORKER_KILLED
;
1214 (void) kill(worker
->pid
, SIGTERM
);
1215 } else if (worker
->state
!= WORKER_KILLED
)
1216 worker
->state
= WORKER_IDLE
;
1218 /* worker returned */
1219 if (result
== EVENT_RESULT_TRY_AGAIN
&&
1220 event_requeue(worker
->event
) < 0)
1221 device_broadcast(manager
->monitor
, worker
->event
->dev
, -ETIMEDOUT
);
1223 /* When event_requeue() succeeds, worker->event is NULL, and event_free() handles NULL gracefully. */
1224 event_free(worker
->event
);
1227 /* we have free workers, try to schedule events */
1228 event_queue_start(manager
);
1233 /* receive the udevd message from userspace */
1234 static int on_ctrl_msg(UdevCtrl
*uctrl
, UdevCtrlMessageType type
, const UdevCtrlMessageValue
*value
, void *userdata
) {
1235 Manager
*manager
= userdata
;
1242 case UDEV_CTRL_SET_LOG_LEVEL
:
1243 log_debug("Received udev control message (SET_LOG_LEVEL), setting log_level=%i", value
->intval
);
1244 log_set_max_level(value
->intval
);
1245 manager
->log_level
= value
->intval
;
1246 manager_kill_workers(manager
, false);
1248 case UDEV_CTRL_STOP_EXEC_QUEUE
:
1249 log_debug("Received udev control message (STOP_EXEC_QUEUE)");
1250 manager
->stop_exec_queue
= true;
1252 case UDEV_CTRL_START_EXEC_QUEUE
:
1253 log_debug("Received udev control message (START_EXEC_QUEUE)");
1254 manager
->stop_exec_queue
= false;
1255 /* It is not necessary to call event_queue_start() here, as it will be called in on_post() if necessary. */
1257 case UDEV_CTRL_RELOAD
:
1258 log_debug("Received udev control message (RELOAD)");
1259 manager_reload(manager
, /* force = */ true);
1261 case UDEV_CTRL_SET_ENV
: {
1262 _unused_ _cleanup_free_
char *old_val
= NULL
;
1263 _cleanup_free_
char *key
= NULL
, *val
= NULL
, *old_key
= NULL
;
1266 eq
= strchr(value
->buf
, '=');
1268 log_error("Invalid key format '%s'", value
->buf
);
1272 key
= strndup(value
->buf
, eq
- value
->buf
);
1278 old_val
= hashmap_remove2(manager
->properties
, key
, (void **) &old_key
);
1280 r
= hashmap_ensure_allocated(&manager
->properties
, &string_hash_ops
);
1288 log_debug("Received udev control message (ENV), unsetting '%s'", key
);
1290 r
= hashmap_put(manager
->properties
, key
, NULL
);
1302 log_debug("Received udev control message (ENV), setting '%s=%s'", key
, val
);
1304 r
= hashmap_put(manager
->properties
, key
, val
);
1312 manager_kill_workers(manager
, false);
1315 case UDEV_CTRL_SET_CHILDREN_MAX
:
1316 if (value
->intval
<= 0) {
1317 log_debug("Received invalid udev control message (SET_MAX_CHILDREN, %i), ignoring.", value
->intval
);
1321 log_debug("Received udev control message (SET_MAX_CHILDREN), setting children_max=%i", value
->intval
);
1322 arg_children_max
= value
->intval
;
1326 case UDEV_CTRL_PING
:
1327 log_debug("Received udev control message (PING)");
1329 case UDEV_CTRL_EXIT
:
1330 log_debug("Received udev control message (EXIT)");
1331 manager_exit(manager
);
1334 log_debug("Received unknown udev control message, ignoring");
1340 static int synthesize_change_one(sd_device
*dev
, sd_device
*target
) {
1343 if (DEBUG_LOGGING
) {
1344 const char *syspath
= NULL
;
1345 (void) sd_device_get_syspath(target
, &syspath
);
1346 log_device_debug(dev
, "device is closed, synthesising 'change' on %s", strna(syspath
));
1349 r
= sd_device_trigger(target
, SD_DEVICE_CHANGE
);
1351 return log_device_debug_errno(target
, r
, "Failed to trigger 'change' uevent: %m");
1353 DEVICE_TRACE_POINT(synthetic_change_event
, dev
);
1358 static int synthesize_change(sd_device
*dev
) {
1359 const char *subsystem
, *sysname
, *devtype
;
1362 r
= sd_device_get_subsystem(dev
, &subsystem
);
1366 r
= sd_device_get_devtype(dev
, &devtype
);
1370 r
= sd_device_get_sysname(dev
, &sysname
);
1374 if (streq_ptr(subsystem
, "block") &&
1375 streq_ptr(devtype
, "disk") &&
1376 !startswith(sysname
, "dm-")) {
1377 _cleanup_(sd_device_enumerator_unrefp
) sd_device_enumerator
*e
= NULL
;
1378 bool part_table_read
= false, has_partitions
= false;
1382 /* Try to re-read the partition table. This only succeeds if none of the devices is
1383 * busy. The kernel returns 0 if no partition table is found, and we will not get an
1384 * event for the disk. */
1385 fd
= sd_device_open(dev
, O_RDONLY
|O_CLOEXEC
|O_NONBLOCK
);
1387 r
= flock(fd
, LOCK_EX
|LOCK_NB
);
1389 r
= ioctl(fd
, BLKRRPART
, 0);
1393 part_table_read
= true;
1396 /* search for partitions */
1397 r
= sd_device_enumerator_new(&e
);
1401 r
= sd_device_enumerator_allow_uninitialized(e
);
1405 r
= sd_device_enumerator_add_match_parent(e
, dev
);
1409 r
= sd_device_enumerator_add_match_subsystem(e
, "block", true);
1413 FOREACH_DEVICE(e
, d
) {
1416 if (sd_device_get_devtype(d
, &t
) < 0 || !streq(t
, "partition"))
1419 has_partitions
= true;
1423 /* We have partitions and re-read the table, the kernel already sent out a "change"
1424 * event for the disk, and "remove/add" for all partitions. */
1425 if (part_table_read
&& has_partitions
)
1428 /* We have partitions but re-reading the partition table did not work, synthesize
1429 * "change" for the disk and all partitions. */
1430 (void) synthesize_change_one(dev
, dev
);
1432 FOREACH_DEVICE(e
, d
) {
1435 if (sd_device_get_devtype(d
, &t
) < 0 || !streq(t
, "partition"))
1438 (void) synthesize_change_one(dev
, d
);
1442 (void) synthesize_change_one(dev
, dev
);
1447 static int on_inotify(sd_event_source
*s
, int fd
, uint32_t revents
, void *userdata
) {
1448 Manager
*manager
= userdata
;
1449 union inotify_event_buffer buffer
;
1455 r
= event_source_disable(manager
->kill_workers_event
);
1457 log_warning_errno(r
, "Failed to disable event source for cleaning up idle workers, ignoring: %m");
1459 l
= read(fd
, &buffer
, sizeof(buffer
));
1461 if (ERRNO_IS_TRANSIENT(errno
))
1464 return log_error_errno(errno
, "Failed to read inotify fd: %m");
1467 FOREACH_INOTIFY_EVENT_WARN(e
, buffer
, l
) {
1468 _cleanup_(sd_device_unrefp
) sd_device
*dev
= NULL
;
1469 const char *devnode
;
1471 r
= device_new_from_watch_handle(&dev
, e
->wd
);
1473 log_debug_errno(r
, "Failed to create sd_device object from watch handle, ignoring: %m");
1477 if (sd_device_get_devname(dev
, &devnode
) < 0)
1480 log_device_debug(dev
, "Inotify event: %x for %s", e
->mask
, devnode
);
1481 if (e
->mask
& IN_CLOSE_WRITE
) {
1482 (void) event_queue_assume_block_device_unlocked(manager
, dev
);
1483 (void) synthesize_change(dev
);
1486 /* Do not handle IN_IGNORED here. It should be handled by worker in 'remove' uevent;
1487 * udev_event_execute_rules() -> event_execute_rules_on_remove() -> udev_watch_end(). */
1493 static int on_sigterm(sd_event_source
*s
, const struct signalfd_siginfo
*si
, void *userdata
) {
1494 Manager
*manager
= userdata
;
1498 manager_exit(manager
);
1503 static int on_sighup(sd_event_source
*s
, const struct signalfd_siginfo
*si
, void *userdata
) {
1504 Manager
*manager
= userdata
;
1508 manager_reload(manager
, /* force = */ true);
1513 static int on_sigchld(sd_event_source
*s
, const siginfo_t
*si
, void *userdata
) {
1514 Worker
*worker
= ASSERT_PTR(userdata
);
1515 Manager
*manager
= ASSERT_PTR(worker
->manager
);
1516 sd_device
*dev
= worker
->event
? ASSERT_PTR(worker
->event
->dev
) : NULL
;
1522 switch (si
->si_code
) {
1524 if (si
->si_status
== 0)
1525 log_device_debug(dev
, "Worker ["PID_FMT
"] exited.", si
->si_pid
);
1527 log_device_warning(dev
, "Worker ["PID_FMT
"] exited with return code %i.",
1528 si
->si_pid
, si
->si_status
);
1529 result
= EVENT_RESULT_EXIT_STATUS_BASE
+ si
->si_status
;
1534 log_device_warning(dev
, "Worker ["PID_FMT
"] terminated by signal %i (%s).",
1535 si
->si_pid
, si
->si_status
, signal_to_string(si
->si_status
));
1536 result
= EVENT_RESULT_SIGNAL_BASE
+ si
->si_status
;
1540 assert_not_reached();
1543 if (result
!= EVENT_RESULT_SUCCESS
&& dev
) {
1544 /* delete state from disk */
1545 device_delete_db(dev
);
1546 device_tag_index(dev
, NULL
, false);
1548 /* Forward kernel event to libudev listeners */
1549 device_broadcast(manager
->monitor
, dev
, result
);
1552 worker_free(worker
);
1554 /* we can start new workers, try to schedule events */
1555 event_queue_start(manager
);
1557 /* Disable unnecessary cleanup event */
1558 if (hashmap_isempty(manager
->workers
)) {
1559 r
= event_source_disable(manager
->kill_workers_event
);
1561 log_warning_errno(r
, "Failed to disable event source for cleaning up idle workers, ignoring: %m");
1567 static int on_post(sd_event_source
*s
, void *userdata
) {
1568 Manager
*manager
= userdata
;
1572 if (manager
->events
) {
1573 /* Try to process pending events if idle workers exist. Why is this necessary?
1574 * When a worker finished an event and became idle, even if there was a pending event,
1575 * the corresponding device might have been locked and the processing of the event
1576 * delayed for a while, preventing the worker from processing the event immediately.
1577 * Now, the device may be unlocked. Let's try again! */
1578 event_queue_start(manager
);
1582 /* There are no queued events. Let's remove /run/udev/queue and clean up the idle processes. */
1584 if (unlink("/run/udev/queue") < 0) {
1585 if (errno
!= ENOENT
)
1586 log_warning_errno(errno
, "Failed to unlink /run/udev/queue, ignoring: %m");
1588 log_debug("No events are queued, removing /run/udev/queue.");
1590 if (!hashmap_isempty(manager
->workers
)) {
1591 /* There are idle workers */
1592 (void) event_reset_time_relative(manager
->event
, &manager
->kill_workers_event
,
1593 CLOCK_MONOTONIC
, 3 * USEC_PER_SEC
, USEC_PER_SEC
,
1594 on_kill_workers_event
, manager
,
1595 0, "kill-workers-event", false);
1599 /* There are no idle workers. */
1602 return sd_event_exit(manager
->event
, 0);
1604 if (manager
->cgroup
)
1605 /* cleanup possible left-over processes in our cgroup */
1606 (void) cg_kill(SYSTEMD_CGROUP_CONTROLLER
, manager
->cgroup
, SIGKILL
, CGROUP_IGNORE_SELF
, NULL
, NULL
, NULL
);
1611 static int listen_fds(int *ret_ctrl
, int *ret_netlink
) {
1612 int ctrl_fd
= -1, netlink_fd
= -1;
1616 assert(ret_netlink
);
1618 n
= sd_listen_fds(true);
1622 for (fd
= SD_LISTEN_FDS_START
; fd
< n
+ SD_LISTEN_FDS_START
; fd
++) {
1623 if (sd_is_socket(fd
, AF_UNIX
, SOCK_SEQPACKET
, -1) > 0) {
1630 if (sd_is_socket(fd
, AF_NETLINK
, SOCK_RAW
, -1) > 0) {
1631 if (netlink_fd
>= 0)
1640 *ret_ctrl
= ctrl_fd
;
1641 *ret_netlink
= netlink_fd
;
1647 * read the kernel command line, in case we need to get into debug mode
1648 * udev.log_level=<level> syslog priority
1649 * udev.children_max=<number of workers> events are fully serialized if set to 1
1650 * udev.exec_delay=<number of seconds> delay execution of every executed program
1651 * udev.event_timeout=<number of seconds> seconds to wait before terminating an event
1652 * udev.blockdev_read_only<=bool> mark all block devices read-only when they appear
1654 static int parse_proc_cmdline_item(const char *key
, const char *value
, void *data
) {
1659 if (proc_cmdline_key_streq(key
, "udev.log_level") ||
1660 proc_cmdline_key_streq(key
, "udev.log_priority")) { /* kept for backward compatibility */
1662 if (proc_cmdline_value_missing(key
, value
))
1665 r
= log_level_from_string(value
);
1667 log_set_max_level(r
);
1669 } else if (proc_cmdline_key_streq(key
, "udev.event_timeout")) {
1671 if (proc_cmdline_value_missing(key
, value
))
1674 r
= parse_sec(value
, &arg_event_timeout_usec
);
1676 } else if (proc_cmdline_key_streq(key
, "udev.children_max")) {
1678 if (proc_cmdline_value_missing(key
, value
))
1681 r
= safe_atou(value
, &arg_children_max
);
1683 } else if (proc_cmdline_key_streq(key
, "udev.exec_delay")) {
1685 if (proc_cmdline_value_missing(key
, value
))
1688 r
= parse_sec(value
, &arg_exec_delay_usec
);
1690 } else if (proc_cmdline_key_streq(key
, "udev.timeout_signal")) {
1692 if (proc_cmdline_value_missing(key
, value
))
1695 r
= signal_from_string(value
);
1697 arg_timeout_signal
= r
;
1699 } else if (proc_cmdline_key_streq(key
, "udev.blockdev_read_only")) {
1702 arg_blockdev_read_only
= true;
1704 r
= parse_boolean(value
);
1706 log_warning_errno(r
, "Failed to parse udev.blockdev-read-only argument, ignoring: %s", value
);
1708 arg_blockdev_read_only
= r
;
1711 if (arg_blockdev_read_only
)
1712 log_notice("All physical block devices will be marked read-only.");
1717 if (startswith(key
, "udev."))
1718 log_warning("Unknown udev kernel command line option \"%s\", ignoring.", key
);
1724 log_warning_errno(r
, "Failed to parse \"%s=%s\", ignoring: %m", key
, value
);
1729 static int help(void) {
1730 _cleanup_free_
char *link
= NULL
;
1733 r
= terminal_urlify_man("systemd-udevd.service", "8", &link
);
1737 printf("%s [OPTIONS...]\n\n"
1738 "Rule-based manager for device events and files.\n\n"
1739 " -h --help Print this message\n"
1740 " -V --version Print version of the program\n"
1741 " -d --daemon Detach and run in the background\n"
1742 " -D --debug Enable debug output\n"
1743 " -c --children-max=INT Set maximum number of workers\n"
1744 " -e --exec-delay=SECONDS Seconds to wait before executing RUN=\n"
1745 " -t --event-timeout=SECONDS Seconds to wait before terminating an event\n"
1746 " -N --resolve-names=early|late|never\n"
1747 " When to resolve users and groups\n"
1748 "\nSee the %s for details.\n",
1749 program_invocation_short_name
,
1755 static int parse_argv(int argc
, char *argv
[]) {
1760 static const struct option options
[] = {
1761 { "daemon", no_argument
, NULL
, 'd' },
1762 { "debug", no_argument
, NULL
, 'D' },
1763 { "children-max", required_argument
, NULL
, 'c' },
1764 { "exec-delay", required_argument
, NULL
, 'e' },
1765 { "event-timeout", required_argument
, NULL
, 't' },
1766 { "resolve-names", required_argument
, NULL
, 'N' },
1767 { "help", no_argument
, NULL
, 'h' },
1768 { "version", no_argument
, NULL
, 'V' },
1769 { "timeout-signal", required_argument
, NULL
, ARG_TIMEOUT_SIGNAL
},
1778 while ((c
= getopt_long(argc
, argv
, "c:de:Dt:N:hV", options
, NULL
)) >= 0) {
1782 arg_daemonize
= true;
1785 r
= safe_atou(optarg
, &arg_children_max
);
1787 log_warning_errno(r
, "Failed to parse --children-max= value '%s', ignoring: %m", optarg
);
1790 r
= parse_sec(optarg
, &arg_exec_delay_usec
);
1792 log_warning_errno(r
, "Failed to parse --exec-delay= value '%s', ignoring: %m", optarg
);
1794 case ARG_TIMEOUT_SIGNAL
:
1795 r
= signal_from_string(optarg
);
1797 log_warning_errno(r
, "Failed to parse --timeout-signal= value '%s', ignoring: %m", optarg
);
1799 arg_timeout_signal
= r
;
1803 r
= parse_sec(optarg
, &arg_event_timeout_usec
);
1805 log_warning_errno(r
, "Failed to parse --event-timeout= value '%s', ignoring: %m", optarg
);
1811 ResolveNameTiming t
;
1813 t
= resolve_name_timing_from_string(optarg
);
1815 log_warning("Invalid --resolve-names= value '%s', ignoring.", optarg
);
1817 arg_resolve_name_timing
= t
;
1823 printf("%s\n", GIT_VERSION
);
1828 assert_not_reached();
1836 static int create_subcgroup(char **ret
) {
1837 _cleanup_free_
char *cgroup
= NULL
, *subcgroup
= NULL
;
1841 return log_debug_errno(SYNTHETIC_ERRNO(EOPNOTSUPP
), "Not invoked by PID1.");
1845 return log_debug_errno(r
, "Failed to check if systemd is running: %m");
1847 return log_debug_errno(SYNTHETIC_ERRNO(EOPNOTSUPP
), "systemd is not running.");
1849 /* Get our own cgroup, we regularly kill everything udev has left behind.
1850 * We only do this on systemd systems, and only if we are directly spawned
1851 * by PID1. Otherwise we are not guaranteed to have a dedicated cgroup. */
1853 r
= cg_pid_get_path(SYSTEMD_CGROUP_CONTROLLER
, 0, &cgroup
);
1855 if (IN_SET(r
, -ENOENT
, -ENOMEDIUM
))
1856 return log_debug_errno(r
, "Dedicated cgroup not found: %m");
1857 return log_debug_errno(r
, "Failed to get cgroup: %m");
1860 r
= cg_get_xattr_bool(SYSTEMD_CGROUP_CONTROLLER
, cgroup
, "trusted.delegate");
1861 if (IN_SET(r
, 0, -ENODATA
))
1862 return log_debug_errno(SYNTHETIC_ERRNO(EOPNOTSUPP
), "The cgroup %s is not delegated to us.", cgroup
);
1864 return log_debug_errno(r
, "Failed to read trusted.delegate attribute: %m");
1866 /* We are invoked with our own delegated cgroup tree, let's move us one level down, so that we
1867 * don't collide with the "no processes in inner nodes" rule of cgroups, when the service
1868 * manager invokes the ExecReload= job in the .control/ subcgroup. */
1870 subcgroup
= path_join(cgroup
, "/udev");
1872 return log_oom_debug();
1874 r
= cg_create_and_attach(SYSTEMD_CGROUP_CONTROLLER
, subcgroup
, 0);
1876 return log_debug_errno(r
, "Failed to create %s subcgroup: %m", subcgroup
);
1878 log_debug("Created %s subcgroup.", subcgroup
);
1880 *ret
= TAKE_PTR(subcgroup
);
1884 static int manager_new(Manager
**ret
, int fd_ctrl
, int fd_uevent
) {
1885 _cleanup_(manager_freep
) Manager
*manager
= NULL
;
1886 _cleanup_free_
char *cgroup
= NULL
;
1891 (void) create_subcgroup(&cgroup
);
1893 manager
= new(Manager
, 1);
1897 *manager
= (Manager
) {
1899 .worker_watch
= { -1, -1 },
1900 .cgroup
= TAKE_PTR(cgroup
),
1903 r
= udev_ctrl_new_from_fd(&manager
->ctrl
, fd_ctrl
);
1905 return log_error_errno(r
, "Failed to initialize udev control socket: %m");
1907 r
= udev_ctrl_enable_receiving(manager
->ctrl
);
1909 return log_error_errno(r
, "Failed to bind udev control socket: %m");
1911 r
= device_monitor_new_full(&manager
->monitor
, MONITOR_GROUP_KERNEL
, fd_uevent
);
1913 return log_error_errno(r
, "Failed to initialize device monitor: %m");
1915 /* Bump receiver buffer, but only if we are not called via socket activation, as in that
1916 * case systemd sets the receive buffer size for us, and the value in the .socket unit
1917 * should take full effect. */
1918 if (fd_uevent
< 0) {
1919 r
= sd_device_monitor_set_receive_buffer_size(manager
->monitor
, 128 * 1024 * 1024);
1921 log_warning_errno(r
, "Failed to set receive buffer size for device monitor, ignoring: %m");
1924 (void) sd_device_monitor_set_description(manager
->monitor
, "manager");
1926 r
= device_monitor_enable_receiving(manager
->monitor
);
1928 return log_error_errno(r
, "Failed to bind netlink socket: %m");
1930 manager
->log_level
= log_get_max_level();
1932 *ret
= TAKE_PTR(manager
);
1937 static int main_loop(Manager
*manager
) {
1940 manager
->pid
= getpid_cached();
1942 /* unnamed socket from workers to the main daemon */
1943 r
= socketpair(AF_UNIX
, SOCK_DGRAM
|SOCK_CLOEXEC
, 0, manager
->worker_watch
);
1945 return log_error_errno(errno
, "Failed to create socketpair for communicating with workers: %m");
1947 fd_worker
= manager
->worker_watch
[READ_END
];
1949 r
= setsockopt_int(fd_worker
, SOL_SOCKET
, SO_PASSCRED
, true);
1951 return log_error_errno(r
, "Failed to enable SO_PASSCRED: %m");
1953 manager
->inotify_fd
= inotify_init1(IN_CLOEXEC
);
1954 if (manager
->inotify_fd
< 0)
1955 return log_error_errno(errno
, "Failed to create inotify descriptor: %m");
1957 udev_watch_restore(manager
->inotify_fd
);
1959 /* block and listen to all signals on signalfd */
1960 assert_se(sigprocmask_many(SIG_BLOCK
, NULL
, SIGTERM
, SIGINT
, SIGHUP
, SIGCHLD
, -1) >= 0);
1962 r
= sd_event_default(&manager
->event
);
1964 return log_error_errno(r
, "Failed to allocate event loop: %m");
1966 r
= sd_event_add_signal(manager
->event
, NULL
, SIGINT
, on_sigterm
, manager
);
1968 return log_error_errno(r
, "Failed to create SIGINT event source: %m");
1970 r
= sd_event_add_signal(manager
->event
, NULL
, SIGTERM
, on_sigterm
, manager
);
1972 return log_error_errno(r
, "Failed to create SIGTERM event source: %m");
1974 r
= sd_event_add_signal(manager
->event
, NULL
, SIGHUP
, on_sighup
, manager
);
1976 return log_error_errno(r
, "Failed to create SIGHUP event source: %m");
1978 r
= sd_event_set_watchdog(manager
->event
, true);
1980 return log_error_errno(r
, "Failed to create watchdog event source: %m");
1982 r
= udev_ctrl_attach_event(manager
->ctrl
, manager
->event
);
1984 return log_error_errno(r
, "Failed to attach event to udev control: %m");
1986 r
= udev_ctrl_start(manager
->ctrl
, on_ctrl_msg
, manager
);
1988 return log_error_errno(r
, "Failed to start device monitor: %m");
1990 /* This needs to be after the inotify and uevent handling, to make sure
1991 * that the ping is send back after fully processing the pending uevents
1992 * (including the synthetic ones we may create due to inotify events).
1994 r
= sd_event_source_set_priority(udev_ctrl_get_event_source(manager
->ctrl
), SD_EVENT_PRIORITY_IDLE
);
1996 return log_error_errno(r
, "Failed to set IDLE event priority for udev control event source: %m");
1998 r
= sd_event_add_io(manager
->event
, &manager
->inotify_event
, manager
->inotify_fd
, EPOLLIN
, on_inotify
, manager
);
2000 return log_error_errno(r
, "Failed to create inotify event source: %m");
2002 r
= sd_device_monitor_attach_event(manager
->monitor
, manager
->event
);
2004 return log_error_errno(r
, "Failed to attach event to device monitor: %m");
2006 r
= sd_device_monitor_start(manager
->monitor
, on_uevent
, manager
);
2008 return log_error_errno(r
, "Failed to start device monitor: %m");
2010 (void) sd_event_source_set_description(sd_device_monitor_get_event_source(manager
->monitor
), "device-monitor");
2012 r
= sd_event_add_io(manager
->event
, NULL
, fd_worker
, EPOLLIN
, on_worker
, manager
);
2014 return log_error_errno(r
, "Failed to create worker event source: %m");
2016 r
= sd_event_add_post(manager
->event
, NULL
, on_post
, manager
);
2018 return log_error_errno(r
, "Failed to create post event source: %m");
2020 manager
->last_usec
= now(CLOCK_MONOTONIC
);
2022 udev_builtin_init();
2024 r
= udev_rules_load(&manager
->rules
, arg_resolve_name_timing
);
2026 return log_error_errno(r
, "Failed to read udev rules: %m");
2028 r
= udev_rules_apply_static_dev_perms(manager
->rules
);
2030 log_warning_errno(r
, "Failed to apply permissions on static device nodes, ignoring: %m");
2034 r
= sd_event_loop(manager
->event
);
2036 log_error_errno(r
, "Event loop failed: %m");
2040 "STATUS=Shutting down...");
2044 int run_udevd(int argc
, char *argv
[]) {
2045 _cleanup_(manager_freep
) Manager
*manager
= NULL
;
2046 int fd_ctrl
= -1, fd_uevent
= -1;
2049 log_set_target(LOG_TARGET_AUTO
);
2051 udev_parse_config_full(&arg_children_max
, &arg_exec_delay_usec
, &arg_event_timeout_usec
, &arg_resolve_name_timing
, &arg_timeout_signal
);
2052 log_parse_environment();
2053 log_open(); /* Done again to update after reading configuration. */
2055 r
= parse_argv(argc
, argv
);
2059 r
= proc_cmdline_parse(parse_proc_cmdline_item
, NULL
, PROC_CMDLINE_STRIP_RD_PREFIX
);
2061 log_warning_errno(r
, "Failed to parse kernel command line, ignoring: %m");
2064 log_set_target(LOG_TARGET_CONSOLE
);
2065 log_set_max_level(LOG_DEBUG
);
2072 if (arg_children_max
== 0) {
2073 unsigned long cpu_limit
, mem_limit
, cpu_count
= 1;
2075 r
= cpus_in_affinity_mask();
2077 log_warning_errno(r
, "Failed to determine number of local CPUs, ignoring: %m");
2081 cpu_limit
= cpu_count
* 2 + 16;
2082 mem_limit
= MAX(physical_memory() / (128UL*1024*1024), 10U);
2084 arg_children_max
= MIN(cpu_limit
, mem_limit
);
2085 arg_children_max
= MIN(WORKER_NUM_MAX
, arg_children_max
);
2087 log_debug("Set children_max to %u", arg_children_max
);
2090 /* set umask before creating any file/directory */
2093 r
= mac_selinux_init();
2097 r
= RET_NERRNO(mkdir("/run/udev", 0755));
2098 if (r
< 0 && r
!= -EEXIST
)
2099 return log_error_errno(r
, "Failed to create /run/udev: %m");
2101 r
= listen_fds(&fd_ctrl
, &fd_uevent
);
2103 return log_error_errno(r
, "Failed to listen on fds: %m");
2105 r
= manager_new(&manager
, fd_ctrl
, fd_uevent
);
2107 return log_error_errno(r
, "Failed to create manager: %m");
2109 if (arg_daemonize
) {
2112 log_info("Starting systemd-udevd version " GIT_VERSION
);
2114 /* connect /dev/null to stdin, stdout, stderr */
2115 if (log_get_max_level() < LOG_DEBUG
) {
2116 r
= make_null_stdio();
2118 log_warning_errno(r
, "Failed to redirect standard streams to /dev/null: %m");
2123 return log_error_errno(errno
, "Failed to fork daemon: %m");
2132 return main_loop(manager
);