]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/basic/socket-util.h
tree-wide: remove Lennart's copyright lines
[thirdparty/systemd.git] / src / basic / socket-util.h
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
c2f1db8f 2#pragma once
42f4e3c4 3
db73295a 4#include <netinet/ether.h>
71d35b6b 5#include <netinet/in.h>
11c3a366
TA
6#include <stdbool.h>
7#include <stddef.h>
71d35b6b 8#include <sys/socket.h>
11c3a366 9#include <sys/types.h>
42f4e3c4 10#include <sys/un.h>
7a22745a 11#include <linux/netlink.h>
b1f24b75 12#include <linux/if_infiniband.h>
e88bc795 13#include <linux/if_packet.h>
42f4e3c4
LP
14
15#include "macro.h"
0fc0f14b 16#include "missing.h"
42f4e3c4
LP
17#include "util.h"
18
f6144808 19union sockaddr_union {
8b7f989a 20 /* The minimal, abstract version */
f6144808 21 struct sockaddr sa;
8b7f989a
LP
22
23 /* The libc provided version that allocates "enough room" for every protocol */
24 struct sockaddr_storage storage;
25
26 /* Protoctol-specific implementations */
4d49b48c 27 struct sockaddr_in in;
f6144808
LP
28 struct sockaddr_in6 in6;
29 struct sockaddr_un un;
7a22745a 30 struct sockaddr_nl nl;
e88bc795 31 struct sockaddr_ll ll;
0fc0f14b 32 struct sockaddr_vm vm;
8b7f989a 33
b1f24b75
BG
34 /* Ensure there is enough space to store Infiniband addresses */
35 uint8_t ll_buffer[offsetof(struct sockaddr_ll, sll_addr) + CONST_MAX(ETH_ALEN, INFINIBAND_ALEN)];
8b7f989a
LP
36
37 /* Ensure there is enough space after the AF_UNIX sun_path for one more NUL byte, just to be sure that the path
38 * component is always followed by at least one NUL byte. */
39 uint8_t un_buffer[sizeof(struct sockaddr_un) + 1];
f6144808
LP
40};
41
542563ba 42typedef struct SocketAddress {
f6144808 43 union sockaddr_union sockaddr;
42f4e3c4
LP
44
45 /* We store the size here explicitly due to the weird
46 * sockaddr_un semantics for abstract sockets */
47 socklen_t size;
48
49 /* Socket type, i.e. SOCK_STREAM, SOCK_DGRAM, ... */
50 int type;
7a22745a
LP
51
52 /* Socket protocol, IPPROTO_xxx, usually 0, except for netlink */
53 int protocol;
542563ba 54} SocketAddress;
42f4e3c4 55
542563ba
LP
56typedef enum SocketAddressBindIPv6Only {
57 SOCKET_ADDRESS_DEFAULT,
58 SOCKET_ADDRESS_BOTH,
c0120d99
LP
59 SOCKET_ADDRESS_IPV6_ONLY,
60 _SOCKET_ADDRESS_BIND_IPV6_ONLY_MAX,
61 _SOCKET_ADDRESS_BIND_IPV6_ONLY_INVALID = -1
542563ba 62} SocketAddressBindIPv6Only;
42f4e3c4 63
542563ba 64#define socket_address_family(a) ((a)->sockaddr.sa.sa_family)
42f4e3c4 65
398ce0bc
YW
66const char* socket_address_type_to_string(int t) _const_;
67int socket_address_type_from_string(const char *s) _pure_;
68
542563ba 69int socket_address_parse(SocketAddress *a, const char *s);
7693146d 70int socket_address_parse_and_warn(SocketAddress *a, const char *s);
7a22745a 71int socket_address_parse_netlink(SocketAddress *a, const char *s);
542563ba 72int socket_address_print(const SocketAddress *a, char **p);
44a6b1b6 73int socket_address_verify(const SocketAddress *a) _pure_;
bd1fe7c7 74int socket_address_unlink(SocketAddress *a);
b5a0699f 75
44a6b1b6 76bool socket_address_can_accept(const SocketAddress *a) _pure_;
4f2d528d 77
b5a0699f
LP
78int socket_address_listen(
79 const SocketAddress *a,
175a3d25 80 int flags,
b5a0699f
LP
81 int backlog,
82 SocketAddressBindIPv6Only only,
83 const char *bind_to_device,
54255c64 84 bool reuse_port,
4fd5948e 85 bool free_bind,
6b6d2dee 86 bool transparent,
b5a0699f
LP
87 mode_t directory_mode,
88 mode_t socket_mode,
175a3d25 89 const char *label);
7b7afdfc 90int make_socket_fd(int log_level, const char* address, int type, int flags);
42f4e3c4 91
27ca8d7a 92bool socket_address_is(const SocketAddress *a, const char *s, int type);
7a22745a 93bool socket_address_is_netlink(const SocketAddress *a, const char *s);
a16e1123 94
01e10de3
LP
95bool socket_address_matches_fd(const SocketAddress *a, int fd);
96
44a6b1b6 97bool socket_address_equal(const SocketAddress *a, const SocketAddress *b) _pure_;
a16e1123 98
a57f7e2c 99const char* socket_address_get_path(const SocketAddress *a);
6e2ef85b 100
4d49b48c
LP
101bool socket_ipv6_is_supported(void);
102
69dc6922 103int sockaddr_port(const struct sockaddr *_sa, unsigned *port);
3b1c5241
SL
104
105int sockaddr_pretty(const struct sockaddr *_sa, socklen_t salen, bool translate_ipv6, bool include_port, char **ret);
366b7db4 106int getpeername_pretty(int fd, bool include_port, char **ret);
4d49b48c
LP
107int getsockname_pretty(int fd, char **ret);
108
b31f535c 109int socknameinfo_pretty(union sockaddr_union *sa, socklen_t salen, char **_ret);
b31f535c 110
44a6b1b6
ZJS
111const char* socket_address_bind_ipv6_only_to_string(SocketAddressBindIPv6Only b) _const_;
112SocketAddressBindIPv6Only socket_address_bind_ipv6_only_from_string(const char *s) _pure_;
b54e98ef 113SocketAddressBindIPv6Only socket_address_bind_ipv6_only_or_bool_from_string(const char *s);
c0120d99 114
f8b69d1d 115int netlink_family_to_string_alloc(int b, char **s);
4d49b48c 116int netlink_family_from_string(const char *s) _pure_;
f01e5736
LP
117
118bool sockaddr_equal(const union sockaddr_union *a, const union sockaddr_union *b);
2583fbea
LP
119
120int fd_inc_sndbuf(int fd, size_t n);
121int fd_inc_rcvbuf(int fd, size_t n);
122
123int ip_tos_to_string_alloc(int i, char **s);
124int ip_tos_from_string(const char *s);
125
ef76dff2 126bool ifname_valid(const char *p);
26808948 127bool address_label_valid(const char *p);
ef76dff2 128
2583fbea
LP
129int getpeercred(int fd, struct ucred *ucred);
130int getpeersec(int fd, char **ret);
43f2c88d 131int getpeergroups(int fd, gid_t **ret);
2583fbea 132
726f4c47
ZJS
133int send_one_fd_sa(int transport_fd,
134 int fd,
135 const struct sockaddr *sa, socklen_t len,
136 int flags);
137#define send_one_fd(transport_fd, fd, flags) send_one_fd_sa(transport_fd, fd, NULL, 0, flags)
2583fbea 138int receive_one_fd(int transport_fd, int flags);
8f328d36 139
4edc2c9b
LP
140ssize_t next_datagram_size_fd(int fd);
141
60d9771c
LP
142int flush_accept(int fd);
143
8f328d36
LP
144#define CMSG_FOREACH(cmsg, mh) \
145 for ((cmsg) = CMSG_FIRSTHDR(mh); (cmsg); (cmsg) = CMSG_NXTHDR((mh), (cmsg)))
fc2fffe7 146
29206d46
LP
147struct cmsghdr* cmsg_find(struct msghdr *mh, int level, int type, socklen_t length);
148
b1f24b75
BG
149/*
150 * Certain hardware address types (e.g Infiniband) do not fit into sll_addr
151 * (8 bytes) and run over the structure. This macro returns the correct size that
152 * must be passed to kernel.
153 */
154#define SOCKADDR_LL_LEN(sa) \
155 ({ \
156 const struct sockaddr_ll *_sa = &(sa); \
157 size_t _mac_len = sizeof(_sa->sll_addr); \
158 assert(_sa->sll_family == AF_PACKET); \
159 if (be16toh(_sa->sll_hatype) == ARPHRD_ETHER) \
160 _mac_len = MAX(_mac_len, (size_t) ETH_ALEN); \
161 if (be16toh(_sa->sll_hatype) == ARPHRD_INFINIBAND) \
162 _mac_len = MAX(_mac_len, (size_t) INFINIBAND_ALEN); \
163 offsetof(struct sockaddr_ll, sll_addr) + _mac_len; \
164 })
165
fc2fffe7
LP
166/* Covers only file system and abstract AF_UNIX socket addresses, but not unnamed socket addresses. */
167#define SOCKADDR_UN_LEN(sa) \
168 ({ \
169 const struct sockaddr_un *_sa = &(sa); \
170 assert(_sa->sun_family == AF_UNIX); \
171 offsetof(struct sockaddr_un, sun_path) + \
172 (_sa->sun_path[0] == 0 ? \
173 1 + strnlen(_sa->sun_path+1, sizeof(_sa->sun_path)-1) : \
174 strnlen(_sa->sun_path, sizeof(_sa->sun_path))); \
175 })
429b4350
LP
176
177int socket_ioctl_fd(void);