]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/basic/socket-util.c
tree-wide: drop spurious newlines (#8764)
[thirdparty/systemd.git] / src / basic / socket-util.c
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 /***
3 This file is part of systemd.
4
5 Copyright 2010 Lennart Poettering
6 ***/
7
8 #include <arpa/inet.h>
9 #include <errno.h>
10 #include <limits.h>
11 #include <net/if.h>
12 #include <netdb.h>
13 #include <netinet/ip.h>
14 #include <poll.h>
15 #include <stddef.h>
16 #include <stdint.h>
17 #include <stdio.h>
18 #include <stdlib.h>
19 #include <string.h>
20 #include <unistd.h>
21
22 #include "alloc-util.h"
23 #include "fd-util.h"
24 #include "fileio.h"
25 #include "format-util.h"
26 #include "log.h"
27 #include "macro.h"
28 #include "missing.h"
29 #include "parse-util.h"
30 #include "path-util.h"
31 #include "process-util.h"
32 #include "socket-util.h"
33 #include "string-table.h"
34 #include "string-util.h"
35 #include "strv.h"
36 #include "user-util.h"
37 #include "utf8.h"
38 #include "util.h"
39
40 #if ENABLE_IDN
41 # define IDN_FLAGS NI_IDN
42 #else
43 # define IDN_FLAGS 0
44 #endif
45
46 static const char* const socket_address_type_table[] = {
47 [SOCK_STREAM] = "Stream",
48 [SOCK_DGRAM] = "Datagram",
49 [SOCK_RAW] = "Raw",
50 [SOCK_RDM] = "ReliableDatagram",
51 [SOCK_SEQPACKET] = "SequentialPacket",
52 [SOCK_DCCP] = "DatagramCongestionControl",
53 };
54
55 DEFINE_STRING_TABLE_LOOKUP(socket_address_type, int);
56
57 int socket_address_parse(SocketAddress *a, const char *s) {
58 char *e, *n;
59 int r;
60
61 assert(a);
62 assert(s);
63
64 zero(*a);
65 a->type = SOCK_STREAM;
66
67 if (*s == '[') {
68 uint16_t port;
69
70 /* IPv6 in [x:.....:z]:p notation */
71
72 e = strchr(s+1, ']');
73 if (!e)
74 return -EINVAL;
75
76 n = strndupa(s+1, e-s-1);
77
78 errno = 0;
79 if (inet_pton(AF_INET6, n, &a->sockaddr.in6.sin6_addr) <= 0)
80 return errno > 0 ? -errno : -EINVAL;
81
82 e++;
83 if (*e != ':')
84 return -EINVAL;
85
86 e++;
87 r = parse_ip_port(e, &port);
88 if (r < 0)
89 return r;
90
91 a->sockaddr.in6.sin6_family = AF_INET6;
92 a->sockaddr.in6.sin6_port = htobe16(port);
93 a->size = sizeof(struct sockaddr_in6);
94
95 } else if (*s == '/') {
96 /* AF_UNIX socket */
97
98 size_t l;
99
100 l = strlen(s);
101 if (l >= sizeof(a->sockaddr.un.sun_path))
102 return -EINVAL;
103
104 a->sockaddr.un.sun_family = AF_UNIX;
105 memcpy(a->sockaddr.un.sun_path, s, l);
106 a->size = offsetof(struct sockaddr_un, sun_path) + l + 1;
107
108 } else if (*s == '@') {
109 /* Abstract AF_UNIX socket */
110 size_t l;
111
112 l = strlen(s+1);
113 if (l >= sizeof(a->sockaddr.un.sun_path) - 1)
114 return -EINVAL;
115
116 a->sockaddr.un.sun_family = AF_UNIX;
117 memcpy(a->sockaddr.un.sun_path+1, s+1, l);
118 a->size = offsetof(struct sockaddr_un, sun_path) + 1 + l;
119
120 } else if (startswith(s, "vsock:")) {
121 /* AF_VSOCK socket in vsock:cid:port notation */
122 const char *cid_start = s + STRLEN("vsock:");
123 unsigned port;
124
125 e = strchr(cid_start, ':');
126 if (!e)
127 return -EINVAL;
128
129 r = safe_atou(e+1, &port);
130 if (r < 0)
131 return r;
132
133 n = strndupa(cid_start, e - cid_start);
134 if (!isempty(n)) {
135 r = safe_atou(n, &a->sockaddr.vm.svm_cid);
136 if (r < 0)
137 return r;
138 } else
139 a->sockaddr.vm.svm_cid = VMADDR_CID_ANY;
140
141 a->sockaddr.vm.svm_family = AF_VSOCK;
142 a->sockaddr.vm.svm_port = port;
143 a->size = sizeof(struct sockaddr_vm);
144
145 } else {
146 uint16_t port;
147
148 e = strchr(s, ':');
149 if (e) {
150 r = parse_ip_port(e + 1, &port);
151 if (r < 0)
152 return r;
153
154 n = strndupa(s, e-s);
155
156 /* IPv4 in w.x.y.z:p notation? */
157 r = inet_pton(AF_INET, n, &a->sockaddr.in.sin_addr);
158 if (r < 0)
159 return -errno;
160
161 if (r > 0) {
162 /* Gotcha, it's a traditional IPv4 address */
163 a->sockaddr.in.sin_family = AF_INET;
164 a->sockaddr.in.sin_port = htobe16(port);
165 a->size = sizeof(struct sockaddr_in);
166 } else {
167 unsigned idx;
168
169 if (strlen(n) > IF_NAMESIZE-1)
170 return -EINVAL;
171
172 /* Uh, our last resort, an interface name */
173 idx = if_nametoindex(n);
174 if (idx == 0)
175 return -EINVAL;
176
177 a->sockaddr.in6.sin6_family = AF_INET6;
178 a->sockaddr.in6.sin6_port = htobe16(port);
179 a->sockaddr.in6.sin6_scope_id = idx;
180 a->sockaddr.in6.sin6_addr = in6addr_any;
181 a->size = sizeof(struct sockaddr_in6);
182 }
183 } else {
184
185 /* Just a port */
186 r = parse_ip_port(s, &port);
187 if (r < 0)
188 return r;
189
190 if (socket_ipv6_is_supported()) {
191 a->sockaddr.in6.sin6_family = AF_INET6;
192 a->sockaddr.in6.sin6_port = htobe16(port);
193 a->sockaddr.in6.sin6_addr = in6addr_any;
194 a->size = sizeof(struct sockaddr_in6);
195 } else {
196 a->sockaddr.in.sin_family = AF_INET;
197 a->sockaddr.in.sin_port = htobe16(port);
198 a->sockaddr.in.sin_addr.s_addr = INADDR_ANY;
199 a->size = sizeof(struct sockaddr_in);
200 }
201 }
202 }
203
204 return 0;
205 }
206
207 int socket_address_parse_and_warn(SocketAddress *a, const char *s) {
208 SocketAddress b;
209 int r;
210
211 /* Similar to socket_address_parse() but warns for IPv6 sockets when we don't support them. */
212
213 r = socket_address_parse(&b, s);
214 if (r < 0)
215 return r;
216
217 if (!socket_ipv6_is_supported() && b.sockaddr.sa.sa_family == AF_INET6) {
218 log_warning("Binding to IPv6 address not available since kernel does not support IPv6.");
219 return -EAFNOSUPPORT;
220 }
221
222 *a = b;
223 return 0;
224 }
225
226 int socket_address_parse_netlink(SocketAddress *a, const char *s) {
227 int family;
228 unsigned group = 0;
229 _cleanup_free_ char *sfamily = NULL;
230 assert(a);
231 assert(s);
232
233 zero(*a);
234 a->type = SOCK_RAW;
235
236 errno = 0;
237 if (sscanf(s, "%ms %u", &sfamily, &group) < 1)
238 return errno > 0 ? -errno : -EINVAL;
239
240 family = netlink_family_from_string(sfamily);
241 if (family < 0)
242 return -EINVAL;
243
244 a->sockaddr.nl.nl_family = AF_NETLINK;
245 a->sockaddr.nl.nl_groups = group;
246
247 a->type = SOCK_RAW;
248 a->size = sizeof(struct sockaddr_nl);
249 a->protocol = family;
250
251 return 0;
252 }
253
254 int socket_address_verify(const SocketAddress *a) {
255 assert(a);
256
257 switch (socket_address_family(a)) {
258
259 case AF_INET:
260 if (a->size != sizeof(struct sockaddr_in))
261 return -EINVAL;
262
263 if (a->sockaddr.in.sin_port == 0)
264 return -EINVAL;
265
266 if (!IN_SET(a->type, SOCK_STREAM, SOCK_DGRAM))
267 return -EINVAL;
268
269 return 0;
270
271 case AF_INET6:
272 if (a->size != sizeof(struct sockaddr_in6))
273 return -EINVAL;
274
275 if (a->sockaddr.in6.sin6_port == 0)
276 return -EINVAL;
277
278 if (!IN_SET(a->type, SOCK_STREAM, SOCK_DGRAM))
279 return -EINVAL;
280
281 return 0;
282
283 case AF_UNIX:
284 if (a->size < offsetof(struct sockaddr_un, sun_path))
285 return -EINVAL;
286
287 if (a->size > offsetof(struct sockaddr_un, sun_path)) {
288
289 if (a->sockaddr.un.sun_path[0] != 0) {
290 char *e;
291
292 /* path */
293 e = memchr(a->sockaddr.un.sun_path, 0, sizeof(a->sockaddr.un.sun_path));
294 if (!e)
295 return -EINVAL;
296
297 if (a->size != offsetof(struct sockaddr_un, sun_path) + (e - a->sockaddr.un.sun_path) + 1)
298 return -EINVAL;
299 }
300 }
301
302 if (!IN_SET(a->type, SOCK_STREAM, SOCK_DGRAM, SOCK_SEQPACKET))
303 return -EINVAL;
304
305 return 0;
306
307 case AF_NETLINK:
308
309 if (a->size != sizeof(struct sockaddr_nl))
310 return -EINVAL;
311
312 if (!IN_SET(a->type, SOCK_RAW, SOCK_DGRAM))
313 return -EINVAL;
314
315 return 0;
316
317 case AF_VSOCK:
318 if (a->size != sizeof(struct sockaddr_vm))
319 return -EINVAL;
320
321 if (!IN_SET(a->type, SOCK_STREAM, SOCK_DGRAM))
322 return -EINVAL;
323
324 return 0;
325
326 default:
327 return -EAFNOSUPPORT;
328 }
329 }
330
331 int socket_address_print(const SocketAddress *a, char **ret) {
332 int r;
333
334 assert(a);
335 assert(ret);
336
337 r = socket_address_verify(a);
338 if (r < 0)
339 return r;
340
341 if (socket_address_family(a) == AF_NETLINK) {
342 _cleanup_free_ char *sfamily = NULL;
343
344 r = netlink_family_to_string_alloc(a->protocol, &sfamily);
345 if (r < 0)
346 return r;
347
348 r = asprintf(ret, "%s %u", sfamily, a->sockaddr.nl.nl_groups);
349 if (r < 0)
350 return -ENOMEM;
351
352 return 0;
353 }
354
355 return sockaddr_pretty(&a->sockaddr.sa, a->size, false, true, ret);
356 }
357
358 bool socket_address_can_accept(const SocketAddress *a) {
359 assert(a);
360
361 return
362 IN_SET(a->type, SOCK_STREAM, SOCK_SEQPACKET);
363 }
364
365 bool socket_address_equal(const SocketAddress *a, const SocketAddress *b) {
366 assert(a);
367 assert(b);
368
369 /* Invalid addresses are unequal to all */
370 if (socket_address_verify(a) < 0 ||
371 socket_address_verify(b) < 0)
372 return false;
373
374 if (a->type != b->type)
375 return false;
376
377 if (socket_address_family(a) != socket_address_family(b))
378 return false;
379
380 switch (socket_address_family(a)) {
381
382 case AF_INET:
383 if (a->sockaddr.in.sin_addr.s_addr != b->sockaddr.in.sin_addr.s_addr)
384 return false;
385
386 if (a->sockaddr.in.sin_port != b->sockaddr.in.sin_port)
387 return false;
388
389 break;
390
391 case AF_INET6:
392 if (memcmp(&a->sockaddr.in6.sin6_addr, &b->sockaddr.in6.sin6_addr, sizeof(a->sockaddr.in6.sin6_addr)) != 0)
393 return false;
394
395 if (a->sockaddr.in6.sin6_port != b->sockaddr.in6.sin6_port)
396 return false;
397
398 break;
399
400 case AF_UNIX:
401 if (a->size <= offsetof(struct sockaddr_un, sun_path) ||
402 b->size <= offsetof(struct sockaddr_un, sun_path))
403 return false;
404
405 if ((a->sockaddr.un.sun_path[0] == 0) != (b->sockaddr.un.sun_path[0] == 0))
406 return false;
407
408 if (a->sockaddr.un.sun_path[0]) {
409 if (!path_equal_or_files_same(a->sockaddr.un.sun_path, b->sockaddr.un.sun_path, 0))
410 return false;
411 } else {
412 if (a->size != b->size)
413 return false;
414
415 if (memcmp(a->sockaddr.un.sun_path, b->sockaddr.un.sun_path, a->size) != 0)
416 return false;
417 }
418
419 break;
420
421 case AF_NETLINK:
422 if (a->protocol != b->protocol)
423 return false;
424
425 if (a->sockaddr.nl.nl_groups != b->sockaddr.nl.nl_groups)
426 return false;
427
428 break;
429
430 case AF_VSOCK:
431 if (a->sockaddr.vm.svm_cid != b->sockaddr.vm.svm_cid)
432 return false;
433
434 if (a->sockaddr.vm.svm_port != b->sockaddr.vm.svm_port)
435 return false;
436
437 break;
438
439 default:
440 /* Cannot compare, so we assume the addresses are different */
441 return false;
442 }
443
444 return true;
445 }
446
447 bool socket_address_is(const SocketAddress *a, const char *s, int type) {
448 struct SocketAddress b;
449
450 assert(a);
451 assert(s);
452
453 if (socket_address_parse(&b, s) < 0)
454 return false;
455
456 b.type = type;
457
458 return socket_address_equal(a, &b);
459 }
460
461 bool socket_address_is_netlink(const SocketAddress *a, const char *s) {
462 struct SocketAddress b;
463
464 assert(a);
465 assert(s);
466
467 if (socket_address_parse_netlink(&b, s) < 0)
468 return false;
469
470 return socket_address_equal(a, &b);
471 }
472
473 const char* socket_address_get_path(const SocketAddress *a) {
474 assert(a);
475
476 if (socket_address_family(a) != AF_UNIX)
477 return NULL;
478
479 if (a->sockaddr.un.sun_path[0] == 0)
480 return NULL;
481
482 return a->sockaddr.un.sun_path;
483 }
484
485 bool socket_ipv6_is_supported(void) {
486 if (access("/proc/net/if_inet6", F_OK) != 0)
487 return false;
488
489 return true;
490 }
491
492 bool socket_address_matches_fd(const SocketAddress *a, int fd) {
493 SocketAddress b;
494 socklen_t solen;
495
496 assert(a);
497 assert(fd >= 0);
498
499 b.size = sizeof(b.sockaddr);
500 if (getsockname(fd, &b.sockaddr.sa, &b.size) < 0)
501 return false;
502
503 if (b.sockaddr.sa.sa_family != a->sockaddr.sa.sa_family)
504 return false;
505
506 solen = sizeof(b.type);
507 if (getsockopt(fd, SOL_SOCKET, SO_TYPE, &b.type, &solen) < 0)
508 return false;
509
510 if (b.type != a->type)
511 return false;
512
513 if (a->protocol != 0) {
514 solen = sizeof(b.protocol);
515 if (getsockopt(fd, SOL_SOCKET, SO_PROTOCOL, &b.protocol, &solen) < 0)
516 return false;
517
518 if (b.protocol != a->protocol)
519 return false;
520 }
521
522 return socket_address_equal(a, &b);
523 }
524
525 int sockaddr_port(const struct sockaddr *_sa, unsigned *ret_port) {
526 union sockaddr_union *sa = (union sockaddr_union*) _sa;
527
528 /* Note, this returns the port as 'unsigned' rather than 'uint16_t', as AF_VSOCK knows larger ports */
529
530 assert(sa);
531
532 switch (sa->sa.sa_family) {
533
534 case AF_INET:
535 *ret_port = be16toh(sa->in.sin_port);
536 return 0;
537
538 case AF_INET6:
539 *ret_port = be16toh(sa->in6.sin6_port);
540 return 0;
541
542 case AF_VSOCK:
543 *ret_port = sa->vm.svm_port;
544 return 0;
545
546 default:
547 return -EAFNOSUPPORT;
548 }
549 }
550
551 int sockaddr_pretty(const struct sockaddr *_sa, socklen_t salen, bool translate_ipv6, bool include_port, char **ret) {
552 union sockaddr_union *sa = (union sockaddr_union*) _sa;
553 char *p;
554 int r;
555
556 assert(sa);
557 assert(salen >= sizeof(sa->sa.sa_family));
558
559 switch (sa->sa.sa_family) {
560
561 case AF_INET: {
562 uint32_t a;
563
564 a = be32toh(sa->in.sin_addr.s_addr);
565
566 if (include_port)
567 r = asprintf(&p,
568 "%u.%u.%u.%u:%u",
569 a >> 24, (a >> 16) & 0xFF, (a >> 8) & 0xFF, a & 0xFF,
570 be16toh(sa->in.sin_port));
571 else
572 r = asprintf(&p,
573 "%u.%u.%u.%u",
574 a >> 24, (a >> 16) & 0xFF, (a >> 8) & 0xFF, a & 0xFF);
575 if (r < 0)
576 return -ENOMEM;
577 break;
578 }
579
580 case AF_INET6: {
581 static const unsigned char ipv4_prefix[] = {
582 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0xFF, 0xFF
583 };
584
585 if (translate_ipv6 &&
586 memcmp(&sa->in6.sin6_addr, ipv4_prefix, sizeof(ipv4_prefix)) == 0) {
587 const uint8_t *a = sa->in6.sin6_addr.s6_addr+12;
588 if (include_port)
589 r = asprintf(&p,
590 "%u.%u.%u.%u:%u",
591 a[0], a[1], a[2], a[3],
592 be16toh(sa->in6.sin6_port));
593 else
594 r = asprintf(&p,
595 "%u.%u.%u.%u",
596 a[0], a[1], a[2], a[3]);
597 if (r < 0)
598 return -ENOMEM;
599 } else {
600 char a[INET6_ADDRSTRLEN];
601
602 inet_ntop(AF_INET6, &sa->in6.sin6_addr, a, sizeof(a));
603
604 if (include_port) {
605 r = asprintf(&p,
606 "[%s]:%u",
607 a,
608 be16toh(sa->in6.sin6_port));
609 if (r < 0)
610 return -ENOMEM;
611 } else {
612 p = strdup(a);
613 if (!p)
614 return -ENOMEM;
615 }
616 }
617
618 break;
619 }
620
621 case AF_UNIX:
622 if (salen <= offsetof(struct sockaddr_un, sun_path)) {
623 p = strdup("<unnamed>");
624 if (!p)
625 return -ENOMEM;
626
627 } else if (sa->un.sun_path[0] == 0) {
628 /* abstract */
629
630 /* FIXME: We assume we can print the
631 * socket path here and that it hasn't
632 * more than one NUL byte. That is
633 * actually an invalid assumption */
634
635 p = new(char, sizeof(sa->un.sun_path)+1);
636 if (!p)
637 return -ENOMEM;
638
639 p[0] = '@';
640 memcpy(p+1, sa->un.sun_path+1, sizeof(sa->un.sun_path)-1);
641 p[sizeof(sa->un.sun_path)] = 0;
642
643 } else {
644 p = strndup(sa->un.sun_path, sizeof(sa->un.sun_path));
645 if (!p)
646 return -ENOMEM;
647 }
648
649 break;
650
651 case AF_VSOCK:
652 if (include_port)
653 r = asprintf(&p,
654 "vsock:%u:%u",
655 sa->vm.svm_cid,
656 sa->vm.svm_port);
657 else
658 r = asprintf(&p, "vsock:%u", sa->vm.svm_cid);
659 if (r < 0)
660 return -ENOMEM;
661 break;
662
663 default:
664 return -EOPNOTSUPP;
665 }
666
667 *ret = p;
668 return 0;
669 }
670
671 int getpeername_pretty(int fd, bool include_port, char **ret) {
672 union sockaddr_union sa;
673 socklen_t salen = sizeof(sa);
674 int r;
675
676 assert(fd >= 0);
677 assert(ret);
678
679 if (getpeername(fd, &sa.sa, &salen) < 0)
680 return -errno;
681
682 if (sa.sa.sa_family == AF_UNIX) {
683 struct ucred ucred = {};
684
685 /* UNIX connection sockets are anonymous, so let's use
686 * PID/UID as pretty credentials instead */
687
688 r = getpeercred(fd, &ucred);
689 if (r < 0)
690 return r;
691
692 if (asprintf(ret, "PID "PID_FMT"/UID "UID_FMT, ucred.pid, ucred.uid) < 0)
693 return -ENOMEM;
694
695 return 0;
696 }
697
698 /* For remote sockets we translate IPv6 addresses back to IPv4
699 * if applicable, since that's nicer. */
700
701 return sockaddr_pretty(&sa.sa, salen, true, include_port, ret);
702 }
703
704 int getsockname_pretty(int fd, char **ret) {
705 union sockaddr_union sa;
706 socklen_t salen = sizeof(sa);
707
708 assert(fd >= 0);
709 assert(ret);
710
711 if (getsockname(fd, &sa.sa, &salen) < 0)
712 return -errno;
713
714 /* For local sockets we do not translate IPv6 addresses back
715 * to IPv6 if applicable, since this is usually used for
716 * listening sockets where the difference between IPv4 and
717 * IPv6 matters. */
718
719 return sockaddr_pretty(&sa.sa, salen, false, true, ret);
720 }
721
722 int socknameinfo_pretty(union sockaddr_union *sa, socklen_t salen, char **_ret) {
723 int r;
724 char host[NI_MAXHOST], *ret;
725
726 assert(_ret);
727
728 r = getnameinfo(&sa->sa, salen, host, sizeof(host), NULL, 0, IDN_FLAGS);
729 if (r != 0) {
730 int saved_errno = errno;
731
732 r = sockaddr_pretty(&sa->sa, salen, true, true, &ret);
733 if (r < 0)
734 return r;
735
736 log_debug_errno(saved_errno, "getnameinfo(%s) failed: %m", ret);
737 } else {
738 ret = strdup(host);
739 if (!ret)
740 return -ENOMEM;
741 }
742
743 *_ret = ret;
744 return 0;
745 }
746
747 int socket_address_unlink(SocketAddress *a) {
748 assert(a);
749
750 if (socket_address_family(a) != AF_UNIX)
751 return 0;
752
753 if (a->sockaddr.un.sun_path[0] == 0)
754 return 0;
755
756 if (unlink(a->sockaddr.un.sun_path) < 0)
757 return -errno;
758
759 return 1;
760 }
761
762 static const char* const netlink_family_table[] = {
763 [NETLINK_ROUTE] = "route",
764 [NETLINK_FIREWALL] = "firewall",
765 [NETLINK_INET_DIAG] = "inet-diag",
766 [NETLINK_NFLOG] = "nflog",
767 [NETLINK_XFRM] = "xfrm",
768 [NETLINK_SELINUX] = "selinux",
769 [NETLINK_ISCSI] = "iscsi",
770 [NETLINK_AUDIT] = "audit",
771 [NETLINK_FIB_LOOKUP] = "fib-lookup",
772 [NETLINK_CONNECTOR] = "connector",
773 [NETLINK_NETFILTER] = "netfilter",
774 [NETLINK_IP6_FW] = "ip6-fw",
775 [NETLINK_DNRTMSG] = "dnrtmsg",
776 [NETLINK_KOBJECT_UEVENT] = "kobject-uevent",
777 [NETLINK_GENERIC] = "generic",
778 [NETLINK_SCSITRANSPORT] = "scsitransport",
779 [NETLINK_ECRYPTFS] = "ecryptfs",
780 [NETLINK_RDMA] = "rdma",
781 };
782
783 DEFINE_STRING_TABLE_LOOKUP_WITH_FALLBACK(netlink_family, int, INT_MAX);
784
785 static const char* const socket_address_bind_ipv6_only_table[_SOCKET_ADDRESS_BIND_IPV6_ONLY_MAX] = {
786 [SOCKET_ADDRESS_DEFAULT] = "default",
787 [SOCKET_ADDRESS_BOTH] = "both",
788 [SOCKET_ADDRESS_IPV6_ONLY] = "ipv6-only"
789 };
790
791 DEFINE_STRING_TABLE_LOOKUP(socket_address_bind_ipv6_only, SocketAddressBindIPv6Only);
792
793 SocketAddressBindIPv6Only parse_socket_address_bind_ipv6_only_or_bool(const char *n) {
794 int r;
795
796 r = parse_boolean(n);
797 if (r > 0)
798 return SOCKET_ADDRESS_IPV6_ONLY;
799 if (r == 0)
800 return SOCKET_ADDRESS_BOTH;
801
802 return socket_address_bind_ipv6_only_from_string(n);
803 }
804
805 bool sockaddr_equal(const union sockaddr_union *a, const union sockaddr_union *b) {
806 assert(a);
807 assert(b);
808
809 if (a->sa.sa_family != b->sa.sa_family)
810 return false;
811
812 if (a->sa.sa_family == AF_INET)
813 return a->in.sin_addr.s_addr == b->in.sin_addr.s_addr;
814
815 if (a->sa.sa_family == AF_INET6)
816 return memcmp(&a->in6.sin6_addr, &b->in6.sin6_addr, sizeof(a->in6.sin6_addr)) == 0;
817
818 if (a->sa.sa_family == AF_VSOCK)
819 return a->vm.svm_cid == b->vm.svm_cid;
820
821 return false;
822 }
823
824 int fd_inc_sndbuf(int fd, size_t n) {
825 int r, value;
826 socklen_t l = sizeof(value);
827
828 r = getsockopt(fd, SOL_SOCKET, SO_SNDBUF, &value, &l);
829 if (r >= 0 && l == sizeof(value) && (size_t) value >= n*2)
830 return 0;
831
832 /* If we have the privileges we will ignore the kernel limit. */
833
834 value = (int) n;
835 if (setsockopt(fd, SOL_SOCKET, SO_SNDBUFFORCE, &value, sizeof(value)) < 0)
836 if (setsockopt(fd, SOL_SOCKET, SO_SNDBUF, &value, sizeof(value)) < 0)
837 return -errno;
838
839 return 1;
840 }
841
842 int fd_inc_rcvbuf(int fd, size_t n) {
843 int r, value;
844 socklen_t l = sizeof(value);
845
846 r = getsockopt(fd, SOL_SOCKET, SO_RCVBUF, &value, &l);
847 if (r >= 0 && l == sizeof(value) && (size_t) value >= n*2)
848 return 0;
849
850 /* If we have the privileges we will ignore the kernel limit. */
851
852 value = (int) n;
853 if (setsockopt(fd, SOL_SOCKET, SO_RCVBUFFORCE, &value, sizeof(value)) < 0)
854 if (setsockopt(fd, SOL_SOCKET, SO_RCVBUF, &value, sizeof(value)) < 0)
855 return -errno;
856 return 1;
857 }
858
859 static const char* const ip_tos_table[] = {
860 [IPTOS_LOWDELAY] = "low-delay",
861 [IPTOS_THROUGHPUT] = "throughput",
862 [IPTOS_RELIABILITY] = "reliability",
863 [IPTOS_LOWCOST] = "low-cost",
864 };
865
866 DEFINE_STRING_TABLE_LOOKUP_WITH_FALLBACK(ip_tos, int, 0xff);
867
868 bool ifname_valid(const char *p) {
869 bool numeric = true;
870
871 /* Checks whether a network interface name is valid. This is inspired by dev_valid_name() in the kernel sources
872 * but slightly stricter, as we only allow non-control, non-space ASCII characters in the interface name. We
873 * also don't permit names that only container numbers, to avoid confusion with numeric interface indexes. */
874
875 if (isempty(p))
876 return false;
877
878 if (strlen(p) >= IFNAMSIZ)
879 return false;
880
881 if (dot_or_dot_dot(p))
882 return false;
883
884 while (*p) {
885 if ((unsigned char) *p >= 127U)
886 return false;
887
888 if ((unsigned char) *p <= 32U)
889 return false;
890
891 if (IN_SET(*p, ':', '/'))
892 return false;
893
894 numeric = numeric && (*p >= '0' && *p <= '9');
895 p++;
896 }
897
898 if (numeric)
899 return false;
900
901 return true;
902 }
903
904 bool address_label_valid(const char *p) {
905
906 if (isempty(p))
907 return false;
908
909 if (strlen(p) >= IFNAMSIZ)
910 return false;
911
912 while (*p) {
913 if ((uint8_t) *p >= 127U)
914 return false;
915
916 if ((uint8_t) *p <= 31U)
917 return false;
918 p++;
919 }
920
921 return true;
922 }
923
924 int getpeercred(int fd, struct ucred *ucred) {
925 socklen_t n = sizeof(struct ucred);
926 struct ucred u;
927 int r;
928
929 assert(fd >= 0);
930 assert(ucred);
931
932 r = getsockopt(fd, SOL_SOCKET, SO_PEERCRED, &u, &n);
933 if (r < 0)
934 return -errno;
935
936 if (n != sizeof(struct ucred))
937 return -EIO;
938
939 /* Check if the data is actually useful and not suppressed due to namespacing issues */
940 if (!pid_is_valid(u.pid))
941 return -ENODATA;
942
943 /* Note that we don't check UID/GID here, as namespace translation works differently there: instead of
944 * receiving in "invalid" user/group we get the overflow UID/GID. */
945
946 *ucred = u;
947 return 0;
948 }
949
950 int getpeersec(int fd, char **ret) {
951 _cleanup_free_ char *s = NULL;
952 socklen_t n = 64;
953
954 assert(fd >= 0);
955 assert(ret);
956
957 for (;;) {
958 s = new0(char, n+1);
959 if (!s)
960 return -ENOMEM;
961
962 if (getsockopt(fd, SOL_SOCKET, SO_PEERSEC, s, &n) >= 0)
963 break;
964
965 if (errno != ERANGE)
966 return -errno;
967
968 s = mfree(s);
969 }
970
971 if (isempty(s))
972 return -EOPNOTSUPP;
973
974 *ret = TAKE_PTR(s);
975
976 return 0;
977 }
978
979 int getpeergroups(int fd, gid_t **ret) {
980 socklen_t n = sizeof(gid_t) * 64;
981 _cleanup_free_ gid_t *d = NULL;
982
983 assert(fd >= 0);
984 assert(ret);
985
986 for (;;) {
987 d = malloc(n);
988 if (!d)
989 return -ENOMEM;
990
991 if (getsockopt(fd, SOL_SOCKET, SO_PEERGROUPS, d, &n) >= 0)
992 break;
993
994 if (errno != ERANGE)
995 return -errno;
996
997 d = mfree(d);
998 }
999
1000 assert_se(n % sizeof(gid_t) == 0);
1001 n /= sizeof(gid_t);
1002
1003 if ((socklen_t) (int) n != n)
1004 return -E2BIG;
1005
1006 *ret = TAKE_PTR(d);
1007
1008 return (int) n;
1009 }
1010
1011 int send_one_fd_sa(
1012 int transport_fd,
1013 int fd,
1014 const struct sockaddr *sa, socklen_t len,
1015 int flags) {
1016
1017 union {
1018 struct cmsghdr cmsghdr;
1019 uint8_t buf[CMSG_SPACE(sizeof(int))];
1020 } control = {};
1021 struct msghdr mh = {
1022 .msg_name = (struct sockaddr*) sa,
1023 .msg_namelen = len,
1024 .msg_control = &control,
1025 .msg_controllen = sizeof(control),
1026 };
1027 struct cmsghdr *cmsg;
1028
1029 assert(transport_fd >= 0);
1030 assert(fd >= 0);
1031
1032 cmsg = CMSG_FIRSTHDR(&mh);
1033 cmsg->cmsg_level = SOL_SOCKET;
1034 cmsg->cmsg_type = SCM_RIGHTS;
1035 cmsg->cmsg_len = CMSG_LEN(sizeof(int));
1036 memcpy(CMSG_DATA(cmsg), &fd, sizeof(int));
1037
1038 mh.msg_controllen = CMSG_SPACE(sizeof(int));
1039 if (sendmsg(transport_fd, &mh, MSG_NOSIGNAL | flags) < 0)
1040 return -errno;
1041
1042 return 0;
1043 }
1044
1045 int receive_one_fd(int transport_fd, int flags) {
1046 union {
1047 struct cmsghdr cmsghdr;
1048 uint8_t buf[CMSG_SPACE(sizeof(int))];
1049 } control = {};
1050 struct msghdr mh = {
1051 .msg_control = &control,
1052 .msg_controllen = sizeof(control),
1053 };
1054 struct cmsghdr *cmsg, *found = NULL;
1055
1056 assert(transport_fd >= 0);
1057
1058 /*
1059 * Receive a single FD via @transport_fd. We don't care for
1060 * the transport-type. We retrieve a single FD at most, so for
1061 * packet-based transports, the caller must ensure to send
1062 * only a single FD per packet. This is best used in
1063 * combination with send_one_fd().
1064 */
1065
1066 if (recvmsg(transport_fd, &mh, MSG_NOSIGNAL | MSG_CMSG_CLOEXEC | flags) < 0)
1067 return -errno;
1068
1069 CMSG_FOREACH(cmsg, &mh) {
1070 if (cmsg->cmsg_level == SOL_SOCKET &&
1071 cmsg->cmsg_type == SCM_RIGHTS &&
1072 cmsg->cmsg_len == CMSG_LEN(sizeof(int))) {
1073 assert(!found);
1074 found = cmsg;
1075 break;
1076 }
1077 }
1078
1079 if (!found) {
1080 cmsg_close_all(&mh);
1081 return -EIO;
1082 }
1083
1084 return *(int*) CMSG_DATA(found);
1085 }
1086
1087 ssize_t next_datagram_size_fd(int fd) {
1088 ssize_t l;
1089 int k;
1090
1091 /* This is a bit like FIONREAD/SIOCINQ, however a bit more powerful. The difference being: recv(MSG_PEEK) will
1092 * actually cause the next datagram in the queue to be validated regarding checksums, which FIONREAD doesn't
1093 * do. This difference is actually of major importance as we need to be sure that the size returned here
1094 * actually matches what we will read with recvmsg() next, as otherwise we might end up allocating a buffer of
1095 * the wrong size. */
1096
1097 l = recv(fd, NULL, 0, MSG_PEEK|MSG_TRUNC);
1098 if (l < 0) {
1099 if (IN_SET(errno, EOPNOTSUPP, EFAULT))
1100 goto fallback;
1101
1102 return -errno;
1103 }
1104 if (l == 0)
1105 goto fallback;
1106
1107 return l;
1108
1109 fallback:
1110 k = 0;
1111
1112 /* Some sockets (AF_PACKET) do not support null-sized recv() with MSG_TRUNC set, let's fall back to FIONREAD
1113 * for them. Checksums don't matter for raw sockets anyway, hence this should be fine. */
1114
1115 if (ioctl(fd, FIONREAD, &k) < 0)
1116 return -errno;
1117
1118 return (ssize_t) k;
1119 }
1120
1121 int flush_accept(int fd) {
1122
1123 struct pollfd pollfd = {
1124 .fd = fd,
1125 .events = POLLIN,
1126 };
1127 int r;
1128
1129 /* Similar to flush_fd() but flushes all incoming connection by accepting them and immediately closing them. */
1130
1131 for (;;) {
1132 int cfd;
1133
1134 r = poll(&pollfd, 1, 0);
1135 if (r < 0) {
1136 if (errno == EINTR)
1137 continue;
1138
1139 return -errno;
1140
1141 } else if (r == 0)
1142 return 0;
1143
1144 cfd = accept4(fd, NULL, NULL, SOCK_NONBLOCK|SOCK_CLOEXEC);
1145 if (cfd < 0) {
1146 if (errno == EINTR)
1147 continue;
1148
1149 if (errno == EAGAIN)
1150 return 0;
1151
1152 return -errno;
1153 }
1154
1155 close(cfd);
1156 }
1157 }
1158
1159 struct cmsghdr* cmsg_find(struct msghdr *mh, int level, int type, socklen_t length) {
1160 struct cmsghdr *cmsg;
1161
1162 assert(mh);
1163
1164 CMSG_FOREACH(cmsg, mh)
1165 if (cmsg->cmsg_level == level &&
1166 cmsg->cmsg_type == type &&
1167 (length == (socklen_t) -1 || length == cmsg->cmsg_len))
1168 return cmsg;
1169
1170 return NULL;
1171 }
1172
1173 int socket_ioctl_fd(void) {
1174 int fd;
1175
1176 /* Create a socket to invoke the various network interface ioctl()s on. Traditionally only AF_INET was good for
1177 * that. Since kernel 4.6 AF_NETLINK works for this too. We first try to use AF_INET hence, but if that's not
1178 * available (for example, because it is made unavailable via SECCOMP or such), we'll fall back to the more
1179 * generic AF_NETLINK. */
1180
1181 fd = socket(AF_INET, SOCK_DGRAM|SOCK_CLOEXEC, 0);
1182 if (fd < 0)
1183 fd = socket(AF_NETLINK, SOCK_RAW|SOCK_CLOEXEC, NETLINK_GENERIC);
1184 if (fd < 0)
1185 return -errno;
1186
1187 return fd;
1188 }