]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/basic/socket-util.c
Merge pull request #2495 from heftig/master
[thirdparty/systemd.git] / src / basic / socket-util.c
CommitLineData
a7334b09
LP
1/***
2 This file is part of systemd.
3
4 Copyright 2010 Lennart Poettering
5
6 systemd is free software; you can redistribute it and/or modify it
5430f7f2
LP
7 under the terms of the GNU Lesser General Public License as published by
8 the Free Software Foundation; either version 2.1 of the License, or
a7334b09
LP
9 (at your option) any later version.
10
11 systemd is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
5430f7f2 14 Lesser General Public License for more details.
a7334b09 15
5430f7f2 16 You should have received a copy of the GNU Lesser General Public License
a7334b09
LP
17 along with systemd; If not, see <http://www.gnu.org/licenses/>.
18***/
19
42f4e3c4 20#include <arpa/inet.h>
07630cea 21#include <errno.h>
11c3a366 22#include <limits.h>
542563ba 23#include <net/if.h>
b31f535c 24#include <netdb.h>
2583fbea 25#include <netinet/ip.h>
07630cea 26#include <stddef.h>
11c3a366 27#include <stdint.h>
07630cea 28#include <stdio.h>
11c3a366 29#include <stdlib.h>
07630cea 30#include <string.h>
07630cea 31#include <unistd.h>
42f4e3c4 32
b5efdb8a 33#include "alloc-util.h"
2583fbea 34#include "fd-util.h"
07630cea
LP
35#include "fileio.h"
36#include "formats-util.h"
93cc7779 37#include "log.h"
42f4e3c4 38#include "macro.h"
07630cea 39#include "missing.h"
6bedfcbb 40#include "parse-util.h"
9eb977db 41#include "path-util.h"
2583fbea 42#include "socket-util.h"
8b43440b 43#include "string-table.h"
07630cea 44#include "string-util.h"
ee104e11 45#include "user-util.h"
2eec67ac 46#include "util.h"
42f4e3c4 47
542563ba 48int socket_address_parse(SocketAddress *a, const char *s) {
42f4e3c4
LP
49 char *e, *n;
50 unsigned u;
4d49b48c 51 int r;
42f4e3c4
LP
52
53 assert(a);
54 assert(s);
55
9152c765 56 zero(*a);
542563ba 57 a->type = SOCK_STREAM;
42f4e3c4
LP
58
59 if (*s == '[') {
60 /* IPv6 in [x:.....:z]:p notation */
61
4d49b48c
LP
62 e = strchr(s+1, ']');
63 if (!e)
42f4e3c4
LP
64 return -EINVAL;
65
4d49b48c 66 n = strndupa(s+1, e-s-1);
42f4e3c4
LP
67
68 errno = 0;
4d49b48c 69 if (inet_pton(AF_INET6, n, &a->sockaddr.in6.sin6_addr) <= 0)
8333c77e 70 return errno > 0 ? -errno : -EINVAL;
42f4e3c4
LP
71
72 e++;
73 if (*e != ':')
74 return -EINVAL;
75
76 e++;
4d49b48c
LP
77 r = safe_atou(e, &u);
78 if (r < 0)
42f4e3c4
LP
79 return r;
80
81 if (u <= 0 || u > 0xFFFF)
82 return -EINVAL;
83
84 a->sockaddr.in6.sin6_family = AF_INET6;
85 a->sockaddr.in6.sin6_port = htons((uint16_t) u);
86 a->size = sizeof(struct sockaddr_in6);
42f4e3c4
LP
87
88 } else if (*s == '/') {
89 /* AF_UNIX socket */
90
91 size_t l;
92
93 l = strlen(s);
94 if (l >= sizeof(a->sockaddr.un.sun_path))
95 return -EINVAL;
96
97 a->sockaddr.un.sun_family = AF_UNIX;
98 memcpy(a->sockaddr.un.sun_path, s, l);
0e098b15 99 a->size = offsetof(struct sockaddr_un, sun_path) + l + 1;
42f4e3c4 100
1c24e7bd 101 } else if (*s == '@') {
42f4e3c4
LP
102 /* Abstract AF_UNIX socket */
103 size_t l;
104
105 l = strlen(s+1);
106 if (l >= sizeof(a->sockaddr.un.sun_path) - 1)
107 return -EINVAL;
108
109 a->sockaddr.un.sun_family = AF_UNIX;
110 memcpy(a->sockaddr.un.sun_path+1, s+1, l);
0e098b15 111 a->size = offsetof(struct sockaddr_un, sun_path) + 1 + l;
42f4e3c4
LP
112
113 } else {
4d49b48c
LP
114 e = strchr(s, ':');
115 if (e) {
116 r = safe_atou(e+1, &u);
117 if (r < 0)
542563ba
LP
118 return r;
119
120 if (u <= 0 || u > 0xFFFF)
121 return -EINVAL;
42f4e3c4 122
4d49b48c 123 n = strndupa(s, e-s);
42f4e3c4 124
542563ba 125 /* IPv4 in w.x.y.z:p notation? */
4d49b48c
LP
126 r = inet_pton(AF_INET, n, &a->sockaddr.in.sin_addr);
127 if (r < 0)
542563ba 128 return -errno;
42f4e3c4 129
542563ba
LP
130 if (r > 0) {
131 /* Gotcha, it's a traditional IPv4 address */
4d49b48c
LP
132 a->sockaddr.in.sin_family = AF_INET;
133 a->sockaddr.in.sin_port = htons((uint16_t) u);
542563ba
LP
134 a->size = sizeof(struct sockaddr_in);
135 } else {
136 unsigned idx;
42f4e3c4 137
4d49b48c 138 if (strlen(n) > IF_NAMESIZE-1)
acbb0225 139 return -EINVAL;
acbb0225 140
542563ba
LP
141 /* Uh, our last resort, an interface name */
142 idx = if_nametoindex(n);
83c60c9f 143 if (idx == 0)
542563ba 144 return -EINVAL;
42f4e3c4 145
542563ba
LP
146 a->sockaddr.in6.sin6_family = AF_INET6;
147 a->sockaddr.in6.sin6_port = htons((uint16_t) u);
148 a->sockaddr.in6.sin6_scope_id = idx;
83c60c9f 149 a->sockaddr.in6.sin6_addr = in6addr_any;
542563ba
LP
150 a->size = sizeof(struct sockaddr_in6);
151 }
42f4e3c4
LP
152 } else {
153
154 /* Just a port */
5198dabc
LP
155 r = safe_atou(s, &u);
156 if (r < 0)
42f4e3c4
LP
157 return r;
158
159 if (u <= 0 || u > 0xFFFF)
160 return -EINVAL;
161
5bfcc1c6
FF
162 if (socket_ipv6_is_supported()) {
163 a->sockaddr.in6.sin6_family = AF_INET6;
164 a->sockaddr.in6.sin6_port = htons((uint16_t) u);
165 a->sockaddr.in6.sin6_addr = in6addr_any;
166 a->size = sizeof(struct sockaddr_in6);
167 } else {
4d49b48c
LP
168 a->sockaddr.in.sin_family = AF_INET;
169 a->sockaddr.in.sin_port = htons((uint16_t) u);
170 a->sockaddr.in.sin_addr.s_addr = INADDR_ANY;
5bfcc1c6
FF
171 a->size = sizeof(struct sockaddr_in);
172 }
42f4e3c4
LP
173 }
174 }
175
176 return 0;
177}
178
7693146d
LP
179int socket_address_parse_and_warn(SocketAddress *a, const char *s) {
180 SocketAddress b;
181 int r;
182
183 /* Similar to socket_address_parse() but warns for IPv6 sockets when we don't support them. */
184
185 r = socket_address_parse(&b, s);
186 if (r < 0)
187 return r;
188
189 if (!socket_ipv6_is_supported() && b.sockaddr.sa.sa_family == AF_INET6) {
190 log_warning("Binding to IPv6 address not available since kernel does not support IPv6.");
191 return -EAFNOSUPPORT;
192 }
193
194 *a = b;
195 return 0;
196}
197
7a22745a
LP
198int socket_address_parse_netlink(SocketAddress *a, const char *s) {
199 int family;
200 unsigned group = 0;
f8b69d1d 201 _cleanup_free_ char *sfamily = NULL;
7a22745a
LP
202 assert(a);
203 assert(s);
204
205 zero(*a);
206 a->type = SOCK_RAW;
207
208 errno = 0;
209 if (sscanf(s, "%ms %u", &sfamily, &group) < 1)
bcb161b0 210 return errno > 0 ? -errno : -EINVAL;
7a22745a 211
f8b69d1d
MS
212 family = netlink_family_from_string(sfamily);
213 if (family < 0)
214 return -EINVAL;
7a22745a
LP
215
216 a->sockaddr.nl.nl_family = AF_NETLINK;
217 a->sockaddr.nl.nl_groups = group;
218
219 a->type = SOCK_RAW;
220 a->size = sizeof(struct sockaddr_nl);
221 a->protocol = family;
222
223 return 0;
224}
225
542563ba 226int socket_address_verify(const SocketAddress *a) {
42f4e3c4
LP
227 assert(a);
228
542563ba 229 switch (socket_address_family(a)) {
42f4e3c4 230
7a22745a
LP
231 case AF_INET:
232 if (a->size != sizeof(struct sockaddr_in))
233 return -EINVAL;
42f4e3c4 234
4d49b48c 235 if (a->sockaddr.in.sin_port == 0)
7a22745a 236 return -EINVAL;
42f4e3c4 237
7a22745a
LP
238 if (a->type != SOCK_STREAM && a->type != SOCK_DGRAM)
239 return -EINVAL;
42f4e3c4 240
7a22745a
LP
241 return 0;
242
243 case AF_INET6:
244 if (a->size != sizeof(struct sockaddr_in6))
245 return -EINVAL;
42f4e3c4 246
7a22745a
LP
247 if (a->sockaddr.in6.sin6_port == 0)
248 return -EINVAL;
42f4e3c4 249
7a22745a
LP
250 if (a->type != SOCK_STREAM && a->type != SOCK_DGRAM)
251 return -EINVAL;
42f4e3c4 252
7a22745a 253 return 0;
42f4e3c4 254
7a22745a
LP
255 case AF_UNIX:
256 if (a->size < offsetof(struct sockaddr_un, sun_path))
257 return -EINVAL;
42f4e3c4 258
7a22745a 259 if (a->size > offsetof(struct sockaddr_un, sun_path)) {
42f4e3c4 260
7a22745a
LP
261 if (a->sockaddr.un.sun_path[0] != 0) {
262 char *e;
263
264 /* path */
4d49b48c
LP
265 e = memchr(a->sockaddr.un.sun_path, 0, sizeof(a->sockaddr.un.sun_path));
266 if (!e)
7a22745a
LP
267 return -EINVAL;
268
269 if (a->size != offsetof(struct sockaddr_un, sun_path) + (e - a->sockaddr.un.sun_path) + 1)
270 return -EINVAL;
42f4e3c4 271 }
7a22745a 272 }
42f4e3c4 273
5a2b80ce 274 if (a->type != SOCK_STREAM && a->type != SOCK_DGRAM && a->type != SOCK_SEQPACKET)
7a22745a 275 return -EINVAL;
42f4e3c4 276
7a22745a
LP
277 return 0;
278
279 case AF_NETLINK:
280
281 if (a->size != sizeof(struct sockaddr_nl))
282 return -EINVAL;
283
284 if (a->type != SOCK_RAW && a->type != SOCK_DGRAM)
285 return -EINVAL;
286
287 return 0;
288
289 default:
290 return -EAFNOSUPPORT;
42f4e3c4
LP
291 }
292}
293
4d49b48c 294int socket_address_print(const SocketAddress *a, char **ret) {
42f4e3c4 295 int r;
4d49b48c 296
42f4e3c4 297 assert(a);
4d49b48c 298 assert(ret);
42f4e3c4 299
4d49b48c
LP
300 r = socket_address_verify(a);
301 if (r < 0)
42f4e3c4
LP
302 return r;
303
4d49b48c 304 if (socket_address_family(a) == AF_NETLINK) {
7fd1b19b 305 _cleanup_free_ char *sfamily = NULL;
7a22745a 306
f8b69d1d 307 r = netlink_family_to_string_alloc(a->protocol, &sfamily);
7a22745a 308 if (r < 0)
f8b69d1d 309 return r;
4d49b48c
LP
310
311 r = asprintf(ret, "%s %u", sfamily, a->sockaddr.nl.nl_groups);
8520cfa5
MS
312 if (r < 0)
313 return -ENOMEM;
7a22745a
LP
314
315 return 0;
316 }
317
3b1c5241 318 return sockaddr_pretty(&a->sockaddr.sa, a->size, false, true, ret);
42f4e3c4
LP
319}
320
4f2d528d
LP
321bool socket_address_can_accept(const SocketAddress *a) {
322 assert(a);
323
324 return
325 a->type == SOCK_STREAM ||
326 a->type == SOCK_SEQPACKET;
327}
a16e1123
LP
328
329bool socket_address_equal(const SocketAddress *a, const SocketAddress *b) {
330 assert(a);
331 assert(b);
332
333 /* Invalid addresses are unequal to all */
334 if (socket_address_verify(a) < 0 ||
335 socket_address_verify(b) < 0)
336 return false;
337
338 if (a->type != b->type)
339 return false;
340
a16e1123
LP
341 if (socket_address_family(a) != socket_address_family(b))
342 return false;
343
344 switch (socket_address_family(a)) {
345
346 case AF_INET:
4d49b48c 347 if (a->sockaddr.in.sin_addr.s_addr != b->sockaddr.in.sin_addr.s_addr)
a16e1123
LP
348 return false;
349
4d49b48c 350 if (a->sockaddr.in.sin_port != b->sockaddr.in.sin_port)
a16e1123
LP
351 return false;
352
353 break;
354
355 case AF_INET6:
356 if (memcmp(&a->sockaddr.in6.sin6_addr, &b->sockaddr.in6.sin6_addr, sizeof(a->sockaddr.in6.sin6_addr)) != 0)
357 return false;
358
359 if (a->sockaddr.in6.sin6_port != b->sockaddr.in6.sin6_port)
360 return false;
361
362 break;
363
364 case AF_UNIX:
710708a5
MS
365 if (a->size <= offsetof(struct sockaddr_un, sun_path) ||
366 b->size <= offsetof(struct sockaddr_un, sun_path))
367 return false;
368
a16e1123
LP
369 if ((a->sockaddr.un.sun_path[0] == 0) != (b->sockaddr.un.sun_path[0] == 0))
370 return false;
371
372 if (a->sockaddr.un.sun_path[0]) {
c78e47a6 373 if (!path_equal_or_files_same(a->sockaddr.un.sun_path, b->sockaddr.un.sun_path))
a16e1123
LP
374 return false;
375 } else {
c78e47a6
MS
376 if (a->size != b->size)
377 return false;
378
b12c1e7c 379 if (memcmp(a->sockaddr.un.sun_path, b->sockaddr.un.sun_path, a->size) != 0)
a16e1123
LP
380 return false;
381 }
382
383 break;
384
7a22745a 385 case AF_NETLINK:
7a22745a
LP
386 if (a->protocol != b->protocol)
387 return false;
388
389 if (a->sockaddr.nl.nl_groups != b->sockaddr.nl.nl_groups)
390 return false;
391
392 break;
393
a16e1123
LP
394 default:
395 /* Cannot compare, so we assume the addresses are different */
396 return false;
397 }
398
399 return true;
400}
401
27ca8d7a 402bool socket_address_is(const SocketAddress *a, const char *s, int type) {
a16e1123
LP
403 struct SocketAddress b;
404
405 assert(a);
406 assert(s);
407
408 if (socket_address_parse(&b, s) < 0)
409 return false;
410
27ca8d7a
LP
411 b.type = type;
412
a16e1123 413 return socket_address_equal(a, &b);
6e2ef85b
LP
414}
415
7a22745a
LP
416bool socket_address_is_netlink(const SocketAddress *a, const char *s) {
417 struct SocketAddress b;
418
419 assert(a);
420 assert(s);
421
422 if (socket_address_parse_netlink(&b, s) < 0)
423 return false;
424
425 return socket_address_equal(a, &b);
426}
427
a57f7e2c 428const char* socket_address_get_path(const SocketAddress *a) {
6e2ef85b
LP
429 assert(a);
430
431 if (socket_address_family(a) != AF_UNIX)
a57f7e2c 432 return NULL;
6e2ef85b
LP
433
434 if (a->sockaddr.un.sun_path[0] == 0)
a57f7e2c 435 return NULL;
a16e1123 436
a57f7e2c 437 return a->sockaddr.un.sun_path;
a16e1123 438}
c0120d99 439
5bfcc1c6 440bool socket_ipv6_is_supported(void) {
7377964d 441 if (access("/proc/net/sockstat6", F_OK) != 0)
90ab5042 442 return false;
f89f1e8f 443
7377964d 444 return true;
5bfcc1c6
FF
445}
446
01e10de3 447bool socket_address_matches_fd(const SocketAddress *a, int fd) {
dbafedac
MS
448 SocketAddress b;
449 socklen_t solen;
01e10de3
LP
450
451 assert(a);
452 assert(fd >= 0);
453
dbafedac
MS
454 b.size = sizeof(b.sockaddr);
455 if (getsockname(fd, &b.sockaddr.sa, &b.size) < 0)
01e10de3
LP
456 return false;
457
dbafedac 458 if (b.sockaddr.sa.sa_family != a->sockaddr.sa.sa_family)
01e10de3
LP
459 return false;
460
dbafedac
MS
461 solen = sizeof(b.type);
462 if (getsockopt(fd, SOL_SOCKET, SO_TYPE, &b.type, &solen) < 0)
01e10de3
LP
463 return false;
464
dbafedac 465 if (b.type != a->type)
01e10de3
LP
466 return false;
467
468 if (a->protocol != 0) {
dbafedac
MS
469 solen = sizeof(b.protocol);
470 if (getsockopt(fd, SOL_SOCKET, SO_PROTOCOL, &b.protocol, &solen) < 0)
01e10de3
LP
471 return false;
472
dbafedac 473 if (b.protocol != a->protocol)
01e10de3
LP
474 return false;
475 }
476
02233928 477 return socket_address_equal(a, &b);
01e10de3
LP
478}
479
3b1c5241
SL
480int sockaddr_port(const struct sockaddr *_sa) {
481 union sockaddr_union *sa = (union sockaddr_union*) _sa;
482
483 assert(sa);
484
485 if (!IN_SET(sa->sa.sa_family, AF_INET, AF_INET6))
486 return -EAFNOSUPPORT;
487
488 return ntohs(sa->sa.sa_family == AF_INET6 ?
489 sa->in6.sin6_port :
490 sa->in.sin_port);
491}
492
493int sockaddr_pretty(const struct sockaddr *_sa, socklen_t salen, bool translate_ipv6, bool include_port, char **ret) {
4d49b48c 494 union sockaddr_union *sa = (union sockaddr_union*) _sa;
8569a776 495 char *p;
fc25ad25 496 int r;
8569a776 497
4d49b48c
LP
498 assert(sa);
499 assert(salen >= sizeof(sa->sa.sa_family));
8569a776 500
4d49b48c 501 switch (sa->sa.sa_family) {
8569a776
LP
502
503 case AF_INET: {
504 uint32_t a;
505
4d49b48c 506 a = ntohl(sa->in.sin_addr.s_addr);
8569a776 507
fc25ad25
ZJS
508 if (include_port)
509 r = asprintf(&p,
3b1c5241
SL
510 "%u.%u.%u.%u:%u",
511 a >> 24, (a >> 16) & 0xFF, (a >> 8) & 0xFF, a & 0xFF,
fc25ad25
ZJS
512 ntohs(sa->in.sin_port));
513 else
514 r = asprintf(&p,
3b1c5241 515 "%u.%u.%u.%u",
fc25ad25
ZJS
516 a >> 24, (a >> 16) & 0xFF, (a >> 8) & 0xFF, a & 0xFF);
517 if (r < 0)
518 return -ENOMEM;
8569a776
LP
519 break;
520 }
521
522 case AF_INET6: {
523 static const unsigned char ipv4_prefix[] = {
524 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0xFF, 0xFF
525 };
526
fc25ad25
ZJS
527 if (translate_ipv6 &&
528 memcmp(&sa->in6.sin6_addr, ipv4_prefix, sizeof(ipv4_prefix)) == 0) {
4d49b48c 529 const uint8_t *a = sa->in6.sin6_addr.s6_addr+12;
fc25ad25
ZJS
530 if (include_port)
531 r = asprintf(&p,
3b1c5241
SL
532 "%u.%u.%u.%u:%u",
533 a[0], a[1], a[2], a[3],
fc25ad25
ZJS
534 ntohs(sa->in6.sin6_port));
535 else
536 r = asprintf(&p,
3b1c5241 537 "%u.%u.%u.%u",
fc25ad25
ZJS
538 a[0], a[1], a[2], a[3]);
539 if (r < 0)
540 return -ENOMEM;
8569a776
LP
541 } else {
542 char a[INET6_ADDRSTRLEN];
543
3b1c5241
SL
544 inet_ntop(AF_INET6, &sa->in6.sin6_addr, a, sizeof(a));
545
546 if (include_port) {
fc25ad25 547 r = asprintf(&p,
3b1c5241
SL
548 "[%s]:%u",
549 a,
fc25ad25
ZJS
550 ntohs(sa->in6.sin6_port));
551 if (r < 0)
3b1c5241
SL
552 return -ENOMEM;
553 } else {
554 p = strdup(a);
555 if (!p)
556 return -ENOMEM;
557 }
8569a776
LP
558 }
559
560 break;
561 }
562
4d49b48c
LP
563 case AF_UNIX:
564 if (salen <= offsetof(struct sockaddr_un, sun_path)) {
565 p = strdup("<unnamed>");
566 if (!p)
567 return -ENOMEM;
8569a776 568
4d49b48c
LP
569 } else if (sa->un.sun_path[0] == 0) {
570 /* abstract */
8569a776 571
4d49b48c
LP
572 /* FIXME: We assume we can print the
573 * socket path here and that it hasn't
574 * more than one NUL byte. That is
575 * actually an invalid assumption */
576
577 p = new(char, sizeof(sa->un.sun_path)+1);
578 if (!p)
579 return -ENOMEM;
580
581 p[0] = '@';
582 memcpy(p+1, sa->un.sun_path+1, sizeof(sa->un.sun_path)-1);
583 p[sizeof(sa->un.sun_path)] = 0;
584
585 } else {
586 p = strndup(sa->un.sun_path, sizeof(sa->un.sun_path));
0810bc56 587 if (!p)
4d49b48c
LP
588 return -ENOMEM;
589 }
8569a776
LP
590
591 break;
8569a776
LP
592
593 default:
15411c0c 594 return -EOPNOTSUPP;
8569a776
LP
595 }
596
4d49b48c 597
8569a776
LP
598 *ret = p;
599 return 0;
600}
601
366b7db4 602int getpeername_pretty(int fd, bool include_port, char **ret) {
4d49b48c 603 union sockaddr_union sa;
b31f535c 604 socklen_t salen = sizeof(sa);
eff05270 605 int r;
4d49b48c
LP
606
607 assert(fd >= 0);
608 assert(ret);
609
4d49b48c
LP
610 if (getpeername(fd, &sa.sa, &salen) < 0)
611 return -errno;
612
613 if (sa.sa.sa_family == AF_UNIX) {
39883f62 614 struct ucred ucred = {};
4d49b48c
LP
615
616 /* UNIX connection sockets are anonymous, so let's use
617 * PID/UID as pretty credentials instead */
618
eff05270
LP
619 r = getpeercred(fd, &ucred);
620 if (r < 0)
621 return r;
4d49b48c 622
de0671ee 623 if (asprintf(ret, "PID "PID_FMT"/UID "UID_FMT, ucred.pid, ucred.uid) < 0)
4d49b48c
LP
624 return -ENOMEM;
625
626 return 0;
627 }
628
629 /* For remote sockets we translate IPv6 addresses back to IPv4
630 * if applicable, since that's nicer. */
631
366b7db4 632 return sockaddr_pretty(&sa.sa, salen, true, include_port, ret);
4d49b48c
LP
633}
634
635int getsockname_pretty(int fd, char **ret) {
636 union sockaddr_union sa;
b31f535c 637 socklen_t salen = sizeof(sa);
4d49b48c
LP
638
639 assert(fd >= 0);
640 assert(ret);
641
4d49b48c
LP
642 if (getsockname(fd, &sa.sa, &salen) < 0)
643 return -errno;
644
645 /* For local sockets we do not translate IPv6 addresses back
646 * to IPv6 if applicable, since this is usually used for
647 * listening sockets where the difference between IPv4 and
648 * IPv6 matters. */
649
3b1c5241 650 return sockaddr_pretty(&sa.sa, salen, false, true, ret);
4d49b48c
LP
651}
652
b31f535c
ZJS
653int socknameinfo_pretty(union sockaddr_union *sa, socklen_t salen, char **_ret) {
654 int r;
655 char host[NI_MAXHOST], *ret;
656
657 assert(_ret);
658
659 r = getnameinfo(&sa->sa, salen, host, sizeof(host), NULL, 0,
660 NI_IDN|NI_IDN_USE_STD3_ASCII_RULES);
661 if (r != 0) {
b31f535c
ZJS
662 int saved_errno = errno;
663
3b1c5241 664 r = sockaddr_pretty(&sa->sa, salen, true, true, &ret);
f647962d 665 if (r < 0)
1938ac51 666 return r;
b31f535c 667
279d3c9c 668 log_debug_errno(saved_errno, "getnameinfo(%s) failed: %m", ret);
cb651834
ZJS
669 } else {
670 ret = strdup(host);
671 if (!ret)
1938ac51 672 return -ENOMEM;
cb651834 673 }
b31f535c
ZJS
674
675 *_ret = ret;
676 return 0;
677}
678
679int getnameinfo_pretty(int fd, char **ret) {
680 union sockaddr_union sa;
681 socklen_t salen = sizeof(sa);
682
683 assert(fd >= 0);
684 assert(ret);
685
4a62c710 686 if (getsockname(fd, &sa.sa, &salen) < 0)
1938ac51 687 return -errno;
b31f535c
ZJS
688
689 return socknameinfo_pretty(&sa, salen, ret);
690}
691
bd1fe7c7
LP
692int socket_address_unlink(SocketAddress *a) {
693 assert(a);
694
695 if (socket_address_family(a) != AF_UNIX)
696 return 0;
697
698 if (a->sockaddr.un.sun_path[0] == 0)
699 return 0;
700
701 if (unlink(a->sockaddr.un.sun_path) < 0)
702 return -errno;
703
704 return 1;
705}
706
7a22745a
LP
707static const char* const netlink_family_table[] = {
708 [NETLINK_ROUTE] = "route",
709 [NETLINK_FIREWALL] = "firewall",
710 [NETLINK_INET_DIAG] = "inet-diag",
711 [NETLINK_NFLOG] = "nflog",
712 [NETLINK_XFRM] = "xfrm",
713 [NETLINK_SELINUX] = "selinux",
714 [NETLINK_ISCSI] = "iscsi",
715 [NETLINK_AUDIT] = "audit",
716 [NETLINK_FIB_LOOKUP] = "fib-lookup",
717 [NETLINK_CONNECTOR] = "connector",
718 [NETLINK_NETFILTER] = "netfilter",
719 [NETLINK_IP6_FW] = "ip6-fw",
720 [NETLINK_DNRTMSG] = "dnrtmsg",
721 [NETLINK_KOBJECT_UEVENT] = "kobject-uevent",
722 [NETLINK_GENERIC] = "generic",
723 [NETLINK_SCSITRANSPORT] = "scsitransport",
724 [NETLINK_ECRYPTFS] = "ecryptfs"
725};
726
f8b69d1d 727DEFINE_STRING_TABLE_LOOKUP_WITH_FALLBACK(netlink_family, int, INT_MAX);
7a22745a 728
c0120d99
LP
729static const char* const socket_address_bind_ipv6_only_table[_SOCKET_ADDRESS_BIND_IPV6_ONLY_MAX] = {
730 [SOCKET_ADDRESS_DEFAULT] = "default",
731 [SOCKET_ADDRESS_BOTH] = "both",
732 [SOCKET_ADDRESS_IPV6_ONLY] = "ipv6-only"
733};
734
735DEFINE_STRING_TABLE_LOOKUP(socket_address_bind_ipv6_only, SocketAddressBindIPv6Only);
f01e5736
LP
736
737bool sockaddr_equal(const union sockaddr_union *a, const union sockaddr_union *b) {
738 assert(a);
739 assert(b);
740
741 if (a->sa.sa_family != b->sa.sa_family)
742 return false;
743
744 if (a->sa.sa_family == AF_INET)
745 return a->in.sin_addr.s_addr == b->in.sin_addr.s_addr;
746
747 if (a->sa.sa_family == AF_INET6)
748 return memcmp(&a->in6.sin6_addr, &b->in6.sin6_addr, sizeof(a->in6.sin6_addr)) == 0;
749
750 return false;
751}
2583fbea
LP
752
753int fd_inc_sndbuf(int fd, size_t n) {
754 int r, value;
755 socklen_t l = sizeof(value);
756
757 r = getsockopt(fd, SOL_SOCKET, SO_SNDBUF, &value, &l);
758 if (r >= 0 && l == sizeof(value) && (size_t) value >= n*2)
759 return 0;
760
761 /* If we have the privileges we will ignore the kernel limit. */
762
763 value = (int) n;
764 if (setsockopt(fd, SOL_SOCKET, SO_SNDBUFFORCE, &value, sizeof(value)) < 0)
765 if (setsockopt(fd, SOL_SOCKET, SO_SNDBUF, &value, sizeof(value)) < 0)
766 return -errno;
767
768 return 1;
769}
770
771int fd_inc_rcvbuf(int fd, size_t n) {
772 int r, value;
773 socklen_t l = sizeof(value);
774
775 r = getsockopt(fd, SOL_SOCKET, SO_RCVBUF, &value, &l);
776 if (r >= 0 && l == sizeof(value) && (size_t) value >= n*2)
777 return 0;
778
779 /* If we have the privileges we will ignore the kernel limit. */
780
781 value = (int) n;
782 if (setsockopt(fd, SOL_SOCKET, SO_RCVBUFFORCE, &value, sizeof(value)) < 0)
783 if (setsockopt(fd, SOL_SOCKET, SO_RCVBUF, &value, sizeof(value)) < 0)
784 return -errno;
785 return 1;
786}
787
788static const char* const ip_tos_table[] = {
789 [IPTOS_LOWDELAY] = "low-delay",
790 [IPTOS_THROUGHPUT] = "throughput",
791 [IPTOS_RELIABILITY] = "reliability",
792 [IPTOS_LOWCOST] = "low-cost",
793};
794
795DEFINE_STRING_TABLE_LOOKUP_WITH_FALLBACK(ip_tos, int, 0xff);
796
797int getpeercred(int fd, struct ucred *ucred) {
798 socklen_t n = sizeof(struct ucred);
799 struct ucred u;
800 int r;
801
802 assert(fd >= 0);
803 assert(ucred);
804
805 r = getsockopt(fd, SOL_SOCKET, SO_PEERCRED, &u, &n);
806 if (r < 0)
807 return -errno;
808
809 if (n != sizeof(struct ucred))
810 return -EIO;
811
812 /* Check if the data is actually useful and not suppressed due
813 * to namespacing issues */
814 if (u.pid <= 0)
815 return -ENODATA;
816 if (u.uid == UID_INVALID)
817 return -ENODATA;
818 if (u.gid == GID_INVALID)
819 return -ENODATA;
820
821 *ucred = u;
822 return 0;
823}
824
825int getpeersec(int fd, char **ret) {
826 socklen_t n = 64;
827 char *s;
828 int r;
829
830 assert(fd >= 0);
831 assert(ret);
832
833 s = new0(char, n);
834 if (!s)
835 return -ENOMEM;
836
837 r = getsockopt(fd, SOL_SOCKET, SO_PEERSEC, s, &n);
838 if (r < 0) {
839 free(s);
840
841 if (errno != ERANGE)
842 return -errno;
843
844 s = new0(char, n);
845 if (!s)
846 return -ENOMEM;
847
848 r = getsockopt(fd, SOL_SOCKET, SO_PEERSEC, s, &n);
849 if (r < 0) {
850 free(s);
851 return -errno;
852 }
853 }
854
855 if (isempty(s)) {
856 free(s);
857 return -EOPNOTSUPP;
858 }
859
860 *ret = s;
861 return 0;
862}
863
726f4c47
ZJS
864int send_one_fd_sa(
865 int transport_fd,
866 int fd,
867 const struct sockaddr *sa, socklen_t len,
868 int flags) {
869
2583fbea
LP
870 union {
871 struct cmsghdr cmsghdr;
872 uint8_t buf[CMSG_SPACE(sizeof(int))];
873 } control = {};
874 struct msghdr mh = {
726f4c47
ZJS
875 .msg_name = (struct sockaddr*) sa,
876 .msg_namelen = len,
2583fbea
LP
877 .msg_control = &control,
878 .msg_controllen = sizeof(control),
879 };
3c171f0b 880 struct cmsghdr *cmsg;
2583fbea
LP
881
882 assert(transport_fd >= 0);
883 assert(fd >= 0);
884
885 cmsg = CMSG_FIRSTHDR(&mh);
886 cmsg->cmsg_level = SOL_SOCKET;
887 cmsg->cmsg_type = SCM_RIGHTS;
888 cmsg->cmsg_len = CMSG_LEN(sizeof(int));
889 memcpy(CMSG_DATA(cmsg), &fd, sizeof(int));
890
891 mh.msg_controllen = CMSG_SPACE(sizeof(int));
892 if (sendmsg(transport_fd, &mh, MSG_NOSIGNAL | flags) < 0)
893 return -errno;
894
895 return 0;
896}
897
898int receive_one_fd(int transport_fd, int flags) {
899 union {
900 struct cmsghdr cmsghdr;
901 uint8_t buf[CMSG_SPACE(sizeof(int))];
902 } control = {};
903 struct msghdr mh = {
904 .msg_control = &control,
905 .msg_controllen = sizeof(control),
906 };
907 struct cmsghdr *cmsg, *found = NULL;
908
909 assert(transport_fd >= 0);
910
911 /*
912 * Receive a single FD via @transport_fd. We don't care for
913 * the transport-type. We retrieve a single FD at most, so for
914 * packet-based transports, the caller must ensure to send
915 * only a single FD per packet. This is best used in
916 * combination with send_one_fd().
917 */
918
919 if (recvmsg(transport_fd, &mh, MSG_NOSIGNAL | MSG_CMSG_CLOEXEC | flags) < 0)
920 return -errno;
921
922 CMSG_FOREACH(cmsg, &mh) {
923 if (cmsg->cmsg_level == SOL_SOCKET &&
924 cmsg->cmsg_type == SCM_RIGHTS &&
925 cmsg->cmsg_len == CMSG_LEN(sizeof(int))) {
926 assert(!found);
927 found = cmsg;
928 break;
929 }
930 }
931
932 if (!found) {
933 cmsg_close_all(&mh);
934 return -EIO;
935 }
936
937 return *(int*) CMSG_DATA(found);
938}