1
0
mirror of https://github.com/systemd/systemd.git synced 2024-11-02 10:51:20 +03:00

udevadm-monitor: use sd_event_loop()

This commit is contained in:
Yu Watanabe 2018-10-09 16:02:53 +09:00
parent fb3d8e9f44
commit 66a948605b

View File

@ -3,14 +3,9 @@
#include <errno.h> #include <errno.h>
#include <getopt.h> #include <getopt.h>
#include <signal.h> #include <signal.h>
#include <stddef.h>
#include <stdio.h>
#include <string.h>
#include <sys/epoll.h>
#include <sys/time.h>
#include <time.h>
#include "sd-device.h" #include "sd-device.h"
#include "sd-event.h"
#include "alloc-util.h" #include "alloc-util.h"
#include "device-monitor-private.h" #include "device-monitor-private.h"
@ -19,30 +14,23 @@
#include "format-util.h" #include "format-util.h"
#include "hashmap.h" #include "hashmap.h"
#include "set.h" #include "set.h"
#include "signal-util.h"
#include "string-util.h" #include "string-util.h"
#include "udevadm.h" #include "udevadm.h"
static bool udev_exit = false;
static bool arg_show_property = false; static bool arg_show_property = false;
static bool arg_print_kernel = false; static bool arg_print_kernel = false;
static bool arg_print_udev = false; static bool arg_print_udev = false;
static Set *arg_tag_filter = NULL; static Set *arg_tag_filter = NULL;
static Hashmap *arg_subsystem_filter = NULL; static Hashmap *arg_subsystem_filter = NULL;
static void sig_handler(int signum) { static int device_monitor_handler(sd_device_monitor *monitor, sd_device *device, void *userdata) {
if (IN_SET(signum, SIGINT, SIGTERM))
udev_exit = true;
}
static int receive_and_print_device(sd_device_monitor *monitor, const char *source) {
const char *action = NULL, *devpath = NULL, *subsystem = NULL; const char *action = NULL, *devpath = NULL, *subsystem = NULL;
_cleanup_(sd_device_unrefp) sd_device *device = NULL; MonitorNetlinkGroup group = PTR_TO_INT(userdata);
struct timespec ts; struct timespec ts;
int r;
r = device_monitor_receive_device(monitor, &device); assert(device);
if (r < 0) assert(IN_SET(group, MONITOR_GROUP_UDEV, MONITOR_GROUP_KERNEL));
return log_debug_errno(r, "Failed to receive device from %s, ignoring: %m", source);
(void) sd_device_get_property_value(device, "ACTION", &action); (void) sd_device_get_property_value(device, "ACTION", &action);
(void) sd_device_get_devpath(device, &devpath); (void) sd_device_get_devpath(device, &devpath);
@ -51,7 +39,7 @@ static int receive_and_print_device(sd_device_monitor *monitor, const char *sour
assert_se(clock_gettime(CLOCK_MONOTONIC, &ts) == 0); assert_se(clock_gettime(CLOCK_MONOTONIC, &ts) == 0);
printf("%-6s[%"PRI_TIME".%06"PRI_NSEC"] %-8s %s (%s)\n", printf("%-6s[%"PRI_TIME".%06"PRI_NSEC"] %-8s %s (%s)\n",
source, group == MONITOR_GROUP_UDEV ? "UDEV" : "KERNEL",
ts.tv_sec, (nsec_t)ts.tv_nsec/1000, ts.tv_sec, (nsec_t)ts.tv_nsec/1000,
action, devpath, subsystem); action, devpath, subsystem);
@ -67,24 +55,21 @@ static int receive_and_print_device(sd_device_monitor *monitor, const char *sour
return 0; return 0;
} }
static int setup_monitor(MonitorNetlinkGroup sender, int fd_epoll, sd_device_monitor **ret) { static int setup_monitor(MonitorNetlinkGroup sender, sd_event *event, sd_device_monitor **ret) {
_cleanup_(sd_device_monitor_unrefp) sd_device_monitor *monitor = NULL; _cleanup_(sd_device_monitor_unrefp) sd_device_monitor *monitor = NULL;
const char *subsystem, *devtype, *tag; const char *subsystem, *devtype, *tag;
struct epoll_event ep = {};
Iterator i; Iterator i;
int fd, r; int r;
r = device_monitor_new_full(&monitor, sender, -1); r = device_monitor_new_full(&monitor, sender, -1);
if (r < 0) if (r < 0)
return log_error_errno(r, "Failed to create netlink socket: %m"); return log_error_errno(r, "Failed to create netlink socket: %m");
r = sd_device_monitor_set_receive_buffer_size(monitor, 128*1024*1024); (void) sd_device_monitor_set_receive_buffer_size(monitor, 128*1024*1024);
if (r < 0)
return log_error_errno(r, "Failed to set receive buffer size: %m");
fd = device_monitor_get_fd(monitor); r = sd_device_monitor_attach_event(monitor, event, 0);
if (fd < 0) if (r < 0)
return log_error_errno(r, "Failed to get socket fd for monitoring: %m"); return log_error_errno(r, "Failed to attach event: %m");
HASHMAP_FOREACH_KEY(devtype, subsystem, arg_subsystem_filter, i) { HASHMAP_FOREACH_KEY(devtype, subsystem, arg_subsystem_filter, i) {
r = sd_device_monitor_filter_add_match_subsystem_devtype(monitor, subsystem, devtype); r = sd_device_monitor_filter_add_match_subsystem_devtype(monitor, subsystem, devtype);
@ -99,20 +84,12 @@ static int setup_monitor(MonitorNetlinkGroup sender, int fd_epoll, sd_device_mon
return log_error_errno(r, "Failed to apply tag filter '%s': %m", tag); return log_error_errno(r, "Failed to apply tag filter '%s': %m", tag);
} }
r = device_monitor_enable_receiving(monitor); r = sd_device_monitor_start(monitor, device_monitor_handler, INT_TO_PTR(sender), sender == MONITOR_GROUP_UDEV ? "device-monitor-udev" : "device-monitor-kernel");
if (r < 0) if (r < 0)
return log_error_errno(r, "Failed to subscribe %s events: %m", sender == MONITOR_GROUP_UDEV ? "udev" : "kernel"); return log_error_errno(r, "Failed to start device monitor: %m");
ep = (struct epoll_event) {
.events = EPOLLIN,
.data.fd = fd,
};
if (epoll_ctl(fd_epoll, EPOLL_CTL_ADD, fd, &ep) < 0)
return log_error_errno(errno, "Failed to add fd to epoll: %m");
*ret = TAKE_PTR(monitor); *ret = TAKE_PTR(monitor);
return fd; return 0;
} }
static int help(void) { static int help(void) {
@ -223,75 +200,48 @@ static int parse_argv(int argc, char *argv[]) {
int monitor_main(int argc, char *argv[], void *userdata) { int monitor_main(int argc, char *argv[], void *userdata) {
_cleanup_(sd_device_monitor_unrefp) sd_device_monitor *kernel_monitor = NULL, *udev_monitor = NULL; _cleanup_(sd_device_monitor_unrefp) sd_device_monitor *kernel_monitor = NULL, *udev_monitor = NULL;
int fd_kernel = -1, fd_udev = -1; _cleanup_(sd_event_unrefp) sd_event *event;
_cleanup_close_ int fd_ep = -1;
struct sigaction act;
sigset_t mask;
int r; int r;
r = parse_argv(argc, argv); r = parse_argv(argc, argv);
if (r <= 0) if (r <= 0)
goto finalize; goto finalize;
/* set signal handlers */
act = (struct sigaction) {
.sa_handler = sig_handler,
.sa_flags = SA_RESTART,
};
assert_se(sigaction(SIGINT, &act, NULL) == 0);
assert_se(sigaction(SIGTERM, &act, NULL) == 0);
assert_se(sigemptyset(&mask) == 0);
assert_se(sigaddset(&mask, SIGINT) == 0);
assert_se(sigaddset(&mask, SIGTERM) == 0);
assert_se(sigprocmask(SIG_UNBLOCK, &mask, NULL) == 0);
/* Callers are expecting to see events as they happen: Line buffering */ /* Callers are expecting to see events as they happen: Line buffering */
setlinebuf(stdout); setlinebuf(stdout);
fd_ep = epoll_create1(EPOLL_CLOEXEC); r = sd_event_default(&event);
if (fd_ep < 0) { if (r < 0) {
r = log_error_errno(errno, "Failed to create epoll fd: %m"); log_error_errno(r, "Failed to initialize event: %m");
goto finalize; goto finalize;
} }
assert_se(sigprocmask_many(SIG_UNBLOCK, NULL, SIGTERM, SIGINT, -1) >= 0);
(void) sd_event_add_signal(event, NULL, SIGTERM, NULL, NULL);
(void) sd_event_add_signal(event, NULL, SIGINT, NULL, NULL);
printf("monitor will print the received events for:\n"); printf("monitor will print the received events for:\n");
if (arg_print_udev) { if (arg_print_udev) {
fd_udev = setup_monitor(MONITOR_GROUP_UDEV, fd_ep, &udev_monitor); r = setup_monitor(MONITOR_GROUP_UDEV, event, &udev_monitor);
if (fd_udev < 0) { if (r < 0)
r = fd_udev;
goto finalize; goto finalize;
}
printf("UDEV - the event which udev sends out after rule processing\n"); printf("UDEV - the event which udev sends out after rule processing\n");
} }
if (arg_print_kernel) { if (arg_print_kernel) {
fd_kernel = setup_monitor(MONITOR_GROUP_KERNEL, fd_ep, &kernel_monitor); r = setup_monitor(MONITOR_GROUP_KERNEL, event, &kernel_monitor);
if (fd_kernel < 0) { if (r < 0)
r = fd_kernel;
goto finalize; goto finalize;
}
printf("KERNEL - the kernel uevent\n"); printf("KERNEL - the kernel uevent\n");
} }
printf("\n"); printf("\n");
while (!udev_exit) { r = sd_event_loop(event);
struct epoll_event ev[4]; if (r < 0) {
int fdcount, i; log_error_errno(r, "Failed to run event loop: %m");
goto finalize;
fdcount = epoll_wait(fd_ep, ev, ELEMENTSOF(ev), -1);
if (fdcount < 0) {
if (errno != EINTR)
log_debug_errno(errno, "Failed to receive uevent message, ignoring: %m");
continue;
}
for (i = 0; i < fdcount; i++)
if (ev[i].data.fd == fd_kernel && ev[i].events & EPOLLIN)
(void) receive_and_print_device(kernel_monitor, "KERNEL");
else if (ev[i].data.fd == fd_udev && ev[i].events & EPOLLIN)
(void) receive_and_print_device(udev_monitor, "UDEV");
} }
r = 0; r = 0;