]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/udev/udev-ctrl.c
core: use an AF_UNIX/SOCK_DGRAM socket for cgroup agent notification
[thirdparty/systemd.git] / src / udev / udev-ctrl.c
CommitLineData
d59f11e1 1/*
55e9959b 2 * libudev - interface to udev device information
d59f11e1 3 *
1298001e 4 * Copyright (C) 2008 Kay Sievers <kay@vrfy.org>
d59f11e1 5 *
4061ab9f
KS
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
d59f11e1
KS
10 */
11
d59f11e1 12#include <errno.h>
cf0fbc49 13#include <poll.h>
d59f11e1 14#include <stddef.h>
cf0fbc49 15#include <stdlib.h>
d59f11e1 16#include <string.h>
d59f11e1
KS
17#include <sys/socket.h>
18#include <sys/un.h>
cf0fbc49 19#include <unistd.h>
d59f11e1 20
b5efdb8a 21#include "alloc-util.h"
3ffd4af2 22#include "fd-util.h"
6482f626 23#include "formats-util.h"
3ffd4af2 24#include "socket-util.h"
c15d02e5 25#include "udev.h"
d59f11e1 26
540f4669 27/* wire protocol magic must match */
912541b0 28#define UDEV_CTRL_MAGIC 0xdead1dea
d59f11e1
KS
29
30enum udev_ctrl_msg_type {
912541b0
KS
31 UDEV_CTRL_UNKNOWN,
32 UDEV_CTRL_SET_LOG_LEVEL,
33 UDEV_CTRL_STOP_EXEC_QUEUE,
34 UDEV_CTRL_START_EXEC_QUEUE,
35 UDEV_CTRL_RELOAD,
36 UDEV_CTRL_SET_ENV,
37 UDEV_CTRL_SET_CHILDREN_MAX,
38 UDEV_CTRL_PING,
39 UDEV_CTRL_EXIT,
d59f11e1
KS
40};
41
b692a750 42struct udev_ctrl_msg_wire {
912541b0
KS
43 char version[16];
44 unsigned int magic;
45 enum udev_ctrl_msg_type type;
46 union {
47 int intval;
48 char buf[256];
49 };
d59f11e1
KS
50};
51
52struct udev_ctrl_msg {
912541b0
KS
53 int refcount;
54 struct udev_ctrl_connection *conn;
55 struct udev_ctrl_msg_wire ctrl_msg_wire;
d59f11e1
KS
56};
57
58struct udev_ctrl {
912541b0
KS
59 int refcount;
60 struct udev *udev;
61 int sock;
6421348d 62 union sockaddr_union saddr;
912541b0
KS
63 socklen_t addrlen;
64 bool bound;
65 bool cleanup_socket;
66 bool connected;
ff2c503d
KS
67};
68
69struct udev_ctrl_connection {
912541b0
KS
70 int refcount;
71 struct udev_ctrl *uctrl;
72 int sock;
d59f11e1
KS
73};
74
9ec6e95b 75struct udev_ctrl *udev_ctrl_new_from_fd(struct udev *udev, int fd) {
912541b0 76 struct udev_ctrl *uctrl;
b97caef5 77 const int on = 1;
4bbdff75 78 int r;
912541b0 79
955d98c9 80 uctrl = new0(struct udev_ctrl, 1);
912541b0
KS
81 if (uctrl == NULL)
82 return NULL;
83 uctrl->refcount = 1;
84 uctrl->udev = udev;
85
86 if (fd < 0) {
87 uctrl->sock = socket(AF_LOCAL, SOCK_SEQPACKET|SOCK_NONBLOCK|SOCK_CLOEXEC, 0);
88 if (uctrl->sock < 0) {
56f64d95 89 log_error_errno(errno, "error getting socket: %m");
912541b0
KS
90 udev_ctrl_unref(uctrl);
91 return NULL;
92 }
93 } else {
94 uctrl->bound = true;
95 uctrl->sock = fd;
96 }
25568304
KS
97
98 /*
99 * FIXME: remove it as soon as we can depend on this:
100 * http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=90c6bd34f884cd9cee21f1d152baf6c18bcac949
101 */
4bbdff75
TG
102 r = setsockopt(uctrl->sock, SOL_SOCKET, SO_PASSCRED, &on, sizeof(on));
103 if (r < 0)
56f64d95 104 log_warning_errno(errno, "could not set SO_PASSCRED: %m");
912541b0 105
6421348d
SL
106 uctrl->saddr.un.sun_family = AF_LOCAL;
107 strscpy(uctrl->saddr.un.sun_path, sizeof(uctrl->saddr.un.sun_path), "/run/udev/control");
108 uctrl->addrlen = offsetof(struct sockaddr_un, sun_path) + strlen(uctrl->saddr.un.sun_path);
912541b0 109 return uctrl;
fc1de713
KS
110}
111
9ec6e95b 112struct udev_ctrl *udev_ctrl_new(struct udev *udev) {
912541b0 113 return udev_ctrl_new_from_fd(udev, -1);
d59f11e1
KS
114}
115
9ec6e95b 116int udev_ctrl_enable_receiving(struct udev_ctrl *uctrl) {
912541b0
KS
117 int err;
118
119 if (!uctrl->bound) {
6421348d 120 err = bind(uctrl->sock, &uctrl->saddr.sa, uctrl->addrlen);
912541b0 121 if (err < 0 && errno == EADDRINUSE) {
6421348d
SL
122 unlink(uctrl->saddr.un.sun_path);
123 err = bind(uctrl->sock, &uctrl->saddr.sa, uctrl->addrlen);
912541b0
KS
124 }
125
ece174c5 126 if (err < 0)
76ef789d 127 return log_error_errno(errno, "bind failed: %m");
912541b0
KS
128
129 err = listen(uctrl->sock, 0);
ece174c5 130 if (err < 0)
76ef789d 131 return log_error_errno(errno, "listen failed: %m");
912541b0
KS
132
133 uctrl->bound = true;
134 uctrl->cleanup_socket = true;
135 }
136 return 0;
d59f11e1
KS
137}
138
9ec6e95b 139struct udev *udev_ctrl_get_udev(struct udev_ctrl *uctrl) {
912541b0 140 return uctrl->udev;
d59f11e1
KS
141}
142
9ec6e95b 143static struct udev_ctrl *udev_ctrl_ref(struct udev_ctrl *uctrl) {
35927d13
TG
144 if (uctrl)
145 uctrl->refcount++;
146
912541b0 147 return uctrl;
d59f11e1
KS
148}
149
9ec6e95b 150struct udev_ctrl *udev_ctrl_unref(struct udev_ctrl *uctrl) {
35927d13
TG
151 if (uctrl && -- uctrl->refcount == 0) {
152 if (uctrl->sock >= 0)
153 close(uctrl->sock);
154 free(uctrl);
155 }
156
912541b0 157 return NULL;
d59f11e1
KS
158}
159
9ec6e95b 160int udev_ctrl_cleanup(struct udev_ctrl *uctrl) {
912541b0
KS
161 if (uctrl == NULL)
162 return 0;
163 if (uctrl->cleanup_socket)
6421348d 164 unlink(uctrl->saddr.un.sun_path);
912541b0 165 return 0;
1f5a5100
KS
166}
167
9ec6e95b 168int udev_ctrl_get_fd(struct udev_ctrl *uctrl) {
912541b0
KS
169 if (uctrl == NULL)
170 return -EINVAL;
171 return uctrl->sock;
d59f11e1
KS
172}
173
9ec6e95b 174struct udev_ctrl_connection *udev_ctrl_get_connection(struct udev_ctrl *uctrl) {
912541b0 175 struct udev_ctrl_connection *conn;
39883f62 176 struct ucred ucred = {};
912541b0 177 const int on = 1;
eff05270 178 int r;
912541b0 179
eff05270 180 conn = new(struct udev_ctrl_connection, 1);
912541b0
KS
181 if (conn == NULL)
182 return NULL;
183 conn->refcount = 1;
184 conn->uctrl = uctrl;
185
186 conn->sock = accept4(uctrl->sock, NULL, NULL, SOCK_CLOEXEC|SOCK_NONBLOCK);
187 if (conn->sock < 0) {
188 if (errno != EINTR)
56f64d95 189 log_error_errno(errno, "unable to receive ctrl connection: %m");
912541b0
KS
190 goto err;
191 }
192
193 /* check peer credential of connection */
eff05270
LP
194 r = getpeercred(conn->sock, &ucred);
195 if (r < 0) {
da927ba9 196 log_error_errno(r, "unable to receive credentials of ctrl connection: %m");
912541b0
KS
197 goto err;
198 }
199 if (ucred.uid > 0) {
1fa2f38f 200 log_error("sender uid="UID_FMT", message ignored", ucred.uid);
912541b0
KS
201 goto err;
202 }
203
204 /* enable receiving of the sender credentials in the messages */
4bbdff75
TG
205 r = setsockopt(conn->sock, SOL_SOCKET, SO_PASSCRED, &on, sizeof(on));
206 if (r < 0)
56f64d95 207 log_warning_errno(errno, "could not set SO_PASSCRED: %m");
4bbdff75 208
912541b0
KS
209 udev_ctrl_ref(uctrl);
210 return conn;
2c64f589 211err:
912541b0
KS
212 if (conn->sock >= 0)
213 close(conn->sock);
214 free(conn);
215 return NULL;
ff2c503d
KS
216}
217
9ec6e95b 218struct udev_ctrl_connection *udev_ctrl_connection_ref(struct udev_ctrl_connection *conn) {
912541b0
KS
219 if (conn == NULL)
220 return NULL;
221 conn->refcount++;
222 return conn;
ff2c503d
KS
223}
224
9ec6e95b 225struct udev_ctrl_connection *udev_ctrl_connection_unref(struct udev_ctrl_connection *conn) {
35927d13
TG
226 if (conn && -- conn->refcount == 0) {
227 if (conn->sock >= 0)
228 close(conn->sock);
229
230 udev_ctrl_unref(conn->uctrl);
231
232 free(conn);
233 }
234
912541b0 235 return NULL;
ff2c503d
KS
236}
237
9ec6e95b 238static int ctrl_send(struct udev_ctrl *uctrl, enum udev_ctrl_msg_type type, int intval, const char *buf, int timeout) {
912541b0
KS
239 struct udev_ctrl_msg_wire ctrl_msg_wire;
240 int err = 0;
241
29804cc1 242 memzero(&ctrl_msg_wire, sizeof(struct udev_ctrl_msg_wire));
912541b0
KS
243 strcpy(ctrl_msg_wire.version, "udev-" VERSION);
244 ctrl_msg_wire.magic = UDEV_CTRL_MAGIC;
245 ctrl_msg_wire.type = type;
246
247 if (buf != NULL)
d5a89d7d 248 strscpy(ctrl_msg_wire.buf, sizeof(ctrl_msg_wire.buf), buf);
912541b0
KS
249 else
250 ctrl_msg_wire.intval = intval;
251
252 if (!uctrl->connected) {
6421348d 253 if (connect(uctrl->sock, &uctrl->saddr.sa, uctrl->addrlen) < 0) {
912541b0
KS
254 err = -errno;
255 goto out;
256 }
257 uctrl->connected = true;
258 }
259 if (send(uctrl->sock, &ctrl_msg_wire, sizeof(ctrl_msg_wire), 0) < 0) {
260 err = -errno;
261 goto out;
262 }
263
264 /* wait for peer message handling or disconnect */
265 for (;;) {
266 struct pollfd pfd[1];
267 int r;
268
269 pfd[0].fd = uctrl->sock;
270 pfd[0].events = POLLIN;
9ea28c55 271 r = poll(pfd, 1, timeout * MSEC_PER_SEC);
912541b0
KS
272 if (r < 0) {
273 if (errno == EINTR)
274 continue;
275 err = -errno;
276 break;
277 }
278
279 if (r > 0 && pfd[0].revents & POLLERR) {
280 err = -EIO;
281 break;
282 }
283
284 if (r == 0)
285 err = -ETIMEDOUT;
286 break;
287 }
ff2c503d 288out:
912541b0 289 return err;
d59f11e1
KS
290}
291
9ec6e95b 292int udev_ctrl_send_set_log_level(struct udev_ctrl *uctrl, int priority, int timeout) {
912541b0 293 return ctrl_send(uctrl, UDEV_CTRL_SET_LOG_LEVEL, priority, NULL, timeout);
ff2c503d
KS
294}
295
9ec6e95b 296int udev_ctrl_send_stop_exec_queue(struct udev_ctrl *uctrl, int timeout) {
912541b0 297 return ctrl_send(uctrl, UDEV_CTRL_STOP_EXEC_QUEUE, 0, NULL, timeout);
d59f11e1
KS
298}
299
9ec6e95b 300int udev_ctrl_send_start_exec_queue(struct udev_ctrl *uctrl, int timeout) {
912541b0 301 return ctrl_send(uctrl, UDEV_CTRL_START_EXEC_QUEUE, 0, NULL, timeout);
d59f11e1
KS
302}
303
9ec6e95b 304int udev_ctrl_send_reload(struct udev_ctrl *uctrl, int timeout) {
912541b0 305 return ctrl_send(uctrl, UDEV_CTRL_RELOAD, 0, NULL, timeout);
d59f11e1
KS
306}
307
9ec6e95b 308int udev_ctrl_send_set_env(struct udev_ctrl *uctrl, const char *key, int timeout) {
912541b0 309 return ctrl_send(uctrl, UDEV_CTRL_SET_ENV, 0, key, timeout);
d59f11e1
KS
310}
311
9ec6e95b 312int udev_ctrl_send_set_children_max(struct udev_ctrl *uctrl, int count, int timeout) {
912541b0 313 return ctrl_send(uctrl, UDEV_CTRL_SET_CHILDREN_MAX, count, NULL, timeout);
d59f11e1
KS
314}
315
9ec6e95b 316int udev_ctrl_send_ping(struct udev_ctrl *uctrl, int timeout) {
912541b0 317 return ctrl_send(uctrl, UDEV_CTRL_PING, 0, NULL, timeout);
d59f11e1
KS
318}
319
9ec6e95b 320int udev_ctrl_send_exit(struct udev_ctrl *uctrl, int timeout) {
912541b0 321 return ctrl_send(uctrl, UDEV_CTRL_EXIT, 0, NULL, timeout);
bb38678e
SJR
322}
323
9ec6e95b 324struct udev_ctrl_msg *udev_ctrl_receive_msg(struct udev_ctrl_connection *conn) {
912541b0
KS
325 struct udev_ctrl_msg *uctrl_msg;
326 ssize_t size;
912541b0
KS
327 struct cmsghdr *cmsg;
328 struct iovec iov;
912541b0 329 char cred_msg[CMSG_SPACE(sizeof(struct ucred))];
97fec53e
ZJS
330 struct msghdr smsg = {
331 .msg_iov = &iov,
332 .msg_iovlen = 1,
333 .msg_control = cred_msg,
334 .msg_controllen = sizeof(cred_msg),
335 };
336 struct ucred *cred;
912541b0 337
97fec53e 338 uctrl_msg = new0(struct udev_ctrl_msg, 1);
912541b0
KS
339 if (uctrl_msg == NULL)
340 return NULL;
341 uctrl_msg->refcount = 1;
342 uctrl_msg->conn = conn;
343 udev_ctrl_connection_ref(conn);
344
345 /* wait for the incoming message */
f168c273 346 for (;;) {
912541b0
KS
347 struct pollfd pfd[1];
348 int r;
349
350 pfd[0].fd = conn->sock;
351 pfd[0].events = POLLIN;
352
353 r = poll(pfd, 1, 10000);
354 if (r < 0) {
355 if (errno == EINTR)
356 continue;
357 goto err;
358 } else if (r == 0) {
9f6445e3 359 log_error("timeout waiting for ctrl message");
912541b0
KS
360 goto err;
361 } else {
362 if (!(pfd[0].revents & POLLIN)) {
56f64d95 363 log_error_errno(errno, "ctrl connection error: %m");
912541b0
KS
364 goto err;
365 }
366 }
367
368 break;
369 }
370
371 iov.iov_base = &uctrl_msg->ctrl_msg_wire;
372 iov.iov_len = sizeof(struct udev_ctrl_msg_wire);
97fec53e 373
a38d9945 374 size = recvmsg(conn->sock, &smsg, 0);
912541b0 375 if (size < 0) {
56f64d95 376 log_error_errno(errno, "unable to receive ctrl message: %m");
912541b0
KS
377 goto err;
378 }
1c8da044
LP
379
380 cmsg_close_all(&smsg);
381
912541b0 382 cmsg = CMSG_FIRSTHDR(&smsg);
912541b0
KS
383
384 if (cmsg == NULL || cmsg->cmsg_type != SCM_CREDENTIALS) {
9f6445e3 385 log_error("no sender credentials received, message ignored");
912541b0
KS
386 goto err;
387 }
388
93b1da85
KZ
389 cred = (struct ucred *) CMSG_DATA(cmsg);
390
912541b0 391 if (cred->uid != 0) {
1fa2f38f 392 log_error("sender uid="UID_FMT", message ignored", cred->uid);
912541b0
KS
393 goto err;
394 }
395
396 if (uctrl_msg->ctrl_msg_wire.magic != UDEV_CTRL_MAGIC) {
9f6445e3 397 log_error("message magic 0x%08x doesn't match, ignore it", uctrl_msg->ctrl_msg_wire.magic);
912541b0
KS
398 goto err;
399 }
400
912541b0 401 return uctrl_msg;
d59f11e1 402err:
912541b0
KS
403 udev_ctrl_msg_unref(uctrl_msg);
404 return NULL;
d59f11e1
KS
405}
406
9ec6e95b 407struct udev_ctrl_msg *udev_ctrl_msg_unref(struct udev_ctrl_msg *ctrl_msg) {
35927d13
TG
408 if (ctrl_msg && -- ctrl_msg->refcount == 0) {
409 udev_ctrl_connection_unref(ctrl_msg->conn);
410 free(ctrl_msg);
411 }
412
912541b0 413 return NULL;
d59f11e1
KS
414}
415
9ec6e95b 416int udev_ctrl_get_set_log_level(struct udev_ctrl_msg *ctrl_msg) {
912541b0
KS
417 if (ctrl_msg->ctrl_msg_wire.type == UDEV_CTRL_SET_LOG_LEVEL)
418 return ctrl_msg->ctrl_msg_wire.intval;
419 return -1;
d59f11e1
KS
420}
421
9ec6e95b 422int udev_ctrl_get_stop_exec_queue(struct udev_ctrl_msg *ctrl_msg) {
912541b0
KS
423 if (ctrl_msg->ctrl_msg_wire.type == UDEV_CTRL_STOP_EXEC_QUEUE)
424 return 1;
425 return -1;
d59f11e1
KS
426}
427
9ec6e95b 428int udev_ctrl_get_start_exec_queue(struct udev_ctrl_msg *ctrl_msg) {
912541b0
KS
429 if (ctrl_msg->ctrl_msg_wire.type == UDEV_CTRL_START_EXEC_QUEUE)
430 return 1;
431 return -1;
d59f11e1
KS
432}
433
9ec6e95b 434int udev_ctrl_get_reload(struct udev_ctrl_msg *ctrl_msg) {
912541b0
KS
435 if (ctrl_msg->ctrl_msg_wire.type == UDEV_CTRL_RELOAD)
436 return 1;
437 return -1;
d59f11e1
KS
438}
439
9ec6e95b 440const char *udev_ctrl_get_set_env(struct udev_ctrl_msg *ctrl_msg) {
912541b0
KS
441 if (ctrl_msg->ctrl_msg_wire.type == UDEV_CTRL_SET_ENV)
442 return ctrl_msg->ctrl_msg_wire.buf;
443 return NULL;
d59f11e1
KS
444}
445
9ec6e95b 446int udev_ctrl_get_set_children_max(struct udev_ctrl_msg *ctrl_msg) {
912541b0
KS
447 if (ctrl_msg->ctrl_msg_wire.type == UDEV_CTRL_SET_CHILDREN_MAX)
448 return ctrl_msg->ctrl_msg_wire.intval;
449 return -1;
d59f11e1 450}
bb38678e 451
9ec6e95b 452int udev_ctrl_get_ping(struct udev_ctrl_msg *ctrl_msg) {
912541b0
KS
453 if (ctrl_msg->ctrl_msg_wire.type == UDEV_CTRL_PING)
454 return 1;
455 return -1;
ff2c503d
KS
456}
457
9ec6e95b 458int udev_ctrl_get_exit(struct udev_ctrl_msg *ctrl_msg) {
912541b0
KS
459 if (ctrl_msg->ctrl_msg_wire.type == UDEV_CTRL_EXIT)
460 return 1;
461 return -1;
bb38678e 462}