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