blob: 59d0876f63eaae430ae7258bbe37228b2ac01f5a [file] [log] [blame]
Harald Welte468b6432014-09-11 13:05:51 +08001/*
Harald Welte48f55832017-01-26 00:03:10 +01002 * (C) 2011-2017 by Harald Welte <laforge@gnumonks.org>
Harald Welte468b6432014-09-11 13:05:51 +08003 *
4 * All Rights Reserved
5 *
Harald Weltee08da972017-11-13 01:00:26 +09006 * SPDX-License-Identifier: GPL-2.0+
7 *
Harald Welte468b6432014-09-11 13:05:51 +08008 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 *
22 */
23
Harald Welte33cb71a2011-05-21 18:54:32 +020024#include "../config.h"
25
Harald Welteba6988b2011-08-17 12:46:48 +020026/*! \addtogroup socket
27 * @{
Neels Hofmeyr17518fe2017-06-20 04:35:06 +020028 * Osmocom socket convenience functions.
29 *
30 * \file socket.c */
Harald Welte96e2a002017-06-12 21:44:18 +020031
Harald Weltee4764422011-05-22 12:25:57 +020032#ifdef HAVE_SYS_SOCKET_H
33
Harald Welte33cb71a2011-05-21 18:54:32 +020034#include <osmocom/core/logging.h>
35#include <osmocom/core/select.h>
36#include <osmocom/core/socket.h>
Alexander Couzens43957e62020-08-01 21:56:45 +020037#include <osmocom/core/sockaddr_str.h>
Harald Welte48f55832017-01-26 00:03:10 +010038#include <osmocom/core/talloc.h>
Neels Hofmeyr59f4caf2018-07-19 22:13:19 +020039#include <osmocom/core/utils.h>
Harald Welte33cb71a2011-05-21 18:54:32 +020040
Pablo Neira Ayuso0849c9a2011-06-09 15:04:30 +020041#include <sys/ioctl.h>
Harald Welte33cb71a2011-05-21 18:54:32 +020042#include <sys/socket.h>
43#include <sys/types.h>
Álvaro Neira Ayuso5ade61a2014-03-24 13:02:00 +010044#include <sys/un.h>
Harald Welte44b99262020-03-07 14:59:05 +010045#include <net/if.h>
Harald Welte33cb71a2011-05-21 18:54:32 +020046
Holger Hans Peter Freyther47723482011-11-09 11:26:15 +010047#include <netinet/in.h>
Harald Weltee30d7e62017-07-13 16:02:50 +020048#include <arpa/inet.h>
Holger Hans Peter Freyther47723482011-11-09 11:26:15 +010049
Harald Welte33cb71a2011-05-21 18:54:32 +020050#include <stdio.h>
51#include <unistd.h>
52#include <stdint.h>
53#include <string.h>
54#include <errno.h>
55#include <netdb.h>
56#include <ifaddrs.h>
57
Pau Espin Pedrol3f464fc2019-10-10 17:38:35 +020058#ifdef HAVE_LIBSCTP
59#include <netinet/sctp.h>
60#endif
61
Harald Weltedda70fc2017-04-08 20:52:33 +020062static struct addrinfo *addrinfo_helper(uint16_t family, uint16_t type, uint8_t proto,
63 const char *host, uint16_t port, bool passive)
64{
Pau Espin Pedrolff428522019-10-10 17:38:16 +020065 struct addrinfo hints, *result, *rp;
Oliver Smith860651e2018-10-30 14:31:57 +010066 char portbuf[6];
Harald Weltedda70fc2017-04-08 20:52:33 +020067 int rc;
68
69 snprintf(portbuf, sizeof(portbuf), "%u", port);
70 memset(&hints, 0, sizeof(struct addrinfo));
71 hints.ai_family = family;
72 if (type == SOCK_RAW) {
73 /* Workaround for glibc, that returns EAI_SERVICE (-8) if
74 * SOCK_RAW and IPPROTO_GRE is used.
Pau Espin Pedrolff428522019-10-10 17:38:16 +020075 * http://sourceware.org/bugzilla/show_bug.cgi?id=15015
Harald Weltedda70fc2017-04-08 20:52:33 +020076 */
77 hints.ai_socktype = SOCK_DGRAM;
78 hints.ai_protocol = IPPROTO_UDP;
79 } else {
80 hints.ai_socktype = type;
81 hints.ai_protocol = proto;
82 }
Pau Espin Pedrol3119d472020-08-25 12:30:55 +020083
Harald Weltedda70fc2017-04-08 20:52:33 +020084 if (passive)
85 hints.ai_flags |= AI_PASSIVE;
86
87 rc = getaddrinfo(host, portbuf, &hints, &result);
88 if (rc != 0) {
Pau Espin Pedrolba828c32020-08-20 18:28:10 +020089 LOGP(DLGLOBAL, LOGL_ERROR, "getaddrinfo(%s, %u) failed: %s\n",
90 host, port, gai_strerror(rc));
Harald Weltedda70fc2017-04-08 20:52:33 +020091 return NULL;
92 }
93
Pau Espin Pedrolff428522019-10-10 17:38:16 +020094 for (rp = result; rp != NULL; rp = rp->ai_next) {
95 /* Workaround for glibc again */
96 if (type == SOCK_RAW) {
97 rp->ai_socktype = SOCK_RAW;
98 rp->ai_protocol = proto;
99 }
100 }
101
Harald Weltedda70fc2017-04-08 20:52:33 +0200102 return result;
103}
104
Pau Espin Pedrol8fac5112019-10-24 15:39:25 +0200105#ifdef HAVE_LIBSCTP
Pau Espin Pedrol3f464fc2019-10-10 17:38:35 +0200106/*! Retrieve an array of addrinfo with specified hints, one for each host in the hosts array.
107 * \param[out] addrinfo array of addrinfo pointers, will be filled by the function on success.
108 * Its size must be at least the one of hosts.
109 * \param[in] family Socket family like AF_INET, AF_INET6.
110 * \param[in] type Socket type like SOCK_DGRAM, SOCK_STREAM.
111 * \param[in] proto Protocol like IPPROTO_TCP, IPPROTO_UDP.
112 * \param[in] hosts array of char pointers (strings) containing the addresses to query.
113 * \param[in] host_cnt length of the hosts array (in items).
114 * \param[in] port port number in host byte order.
115 * \param[in] passive whether to include the AI_PASSIVE flag in getaddrinfo() hints.
116 * \returns 0 is returned on success together with a filled addrinfo array; negative on error
117 */
118static int addrinfo_helper_multi(struct addrinfo **addrinfo, uint16_t family, uint16_t type, uint8_t proto,
119 const char **hosts, size_t host_cnt, uint16_t port, bool passive)
120{
121 int i, j;
122
123 for (i = 0; i < host_cnt; i++) {
124 addrinfo[i] = addrinfo_helper(family, type, proto, hosts[i], port, passive);
125 if (!addrinfo[i]) {
126 for (j = 0; j < i; j++)
127 freeaddrinfo(addrinfo[j]);
128 return -EINVAL;
129 }
130 }
131 return 0;
132}
Pau Espin Pedrol8fac5112019-10-24 15:39:25 +0200133#endif /* HAVE_LIBSCTP*/
Pau Espin Pedrol3f464fc2019-10-10 17:38:35 +0200134
Harald Weltefaf6b702021-04-28 13:04:59 +0200135static int socket_helper_tail(int sfd, unsigned int flags)
136{
Harald Weltec545ff62021-04-28 13:09:49 +0200137 int rc, on = 1;
138 uint8_t dscp = GET_OSMO_SOCK_F_DSCP(flags);
139 uint8_t prio = GET_OSMO_SOCK_F_PRIO(flags);
Harald Weltefaf6b702021-04-28 13:04:59 +0200140
141 if (flags & OSMO_SOCK_F_NONBLOCK) {
142 if (ioctl(sfd, FIONBIO, (unsigned char *)&on) < 0) {
143 LOGP(DLGLOBAL, LOGL_ERROR,
144 "cannot set this socket unblocking: %s\n",
145 strerror(errno));
146 close(sfd);
147 return -EINVAL;
148 }
149 }
150
Harald Weltec545ff62021-04-28 13:09:49 +0200151 if (dscp) {
152 rc = osmo_sock_set_dscp(sfd, dscp);
153 if (rc) {
154 LOGP(DLGLOBAL, LOGL_ERROR, "cannot set IP DSCP of socket to %u: %s\n",
155 dscp, strerror(errno));
156 /* we consider this a non-fatal error */
157 }
158 }
159
160 if (prio) {
161 rc = osmo_sock_set_priority(sfd, prio);
162 if (rc) {
163 LOGP(DLGLOBAL, LOGL_ERROR, "cannot set priority of socket to %u: %s\n",
164 prio, strerror(errno));
165 /* we consider this a non-fatal error */
166 }
167 }
168
Harald Weltefaf6b702021-04-28 13:04:59 +0200169 return 0;
170}
171
Harald Weltedda70fc2017-04-08 20:52:33 +0200172static int socket_helper(const struct addrinfo *rp, unsigned int flags)
173{
Harald Weltefaf6b702021-04-28 13:04:59 +0200174 int sfd, rc;
Harald Weltedda70fc2017-04-08 20:52:33 +0200175
176 sfd = socket(rp->ai_family, rp->ai_socktype, rp->ai_protocol);
Pau Espin Pedrol5d50fa52018-04-05 17:00:22 +0200177 if (sfd == -1) {
178 LOGP(DLGLOBAL, LOGL_ERROR,
179 "unable to create socket: %s\n", strerror(errno));
Harald Weltedda70fc2017-04-08 20:52:33 +0200180 return sfd;
Pau Espin Pedrol5d50fa52018-04-05 17:00:22 +0200181 }
Harald Weltefaf6b702021-04-28 13:04:59 +0200182
183 rc = socket_helper_tail(sfd, flags);
184 if (rc < 0)
185 return rc;
186
Harald Weltedda70fc2017-04-08 20:52:33 +0200187 return sfd;
188}
189
Alexander Couzens43957e62020-08-01 21:56:45 +0200190static int socket_helper_osa(const struct osmo_sockaddr *addr, uint16_t type, uint8_t proto, unsigned int flags)
191{
Harald Weltefaf6b702021-04-28 13:04:59 +0200192 int sfd, rc;
Alexander Couzens43957e62020-08-01 21:56:45 +0200193
194 sfd = socket(addr->u.sa.sa_family, type, proto);
195 if (sfd == -1) {
196 LOGP(DLGLOBAL, LOGL_ERROR,
197 "unable to create socket: %s\n", strerror(errno));
198 return sfd;
199 }
Harald Weltefaf6b702021-04-28 13:04:59 +0200200
201 rc = socket_helper_tail(sfd, flags);
202 if (rc < 0)
203 return rc;
204
Alexander Couzens43957e62020-08-01 21:56:45 +0200205 return sfd;
206}
207
Pau Espin Pedrol8fac5112019-10-24 15:39:25 +0200208#ifdef HAVE_LIBSCTP
Pau Espin Pedrol3f464fc2019-10-10 17:38:35 +0200209/* Fill buf with a string representation of the address set, in the form:
210 * buf_len == 0: "()"
211 * buf_len == 1: "hostA"
212 * buf_len >= 2: (hostA|hostB|...|...)
213 */
214static int multiaddr_snprintf(char* buf, size_t buf_len, const char **hosts, size_t host_cnt)
215{
216 int len = 0, offset = 0, rem = buf_len;
217 int ret, i;
218 char *after;
219
220 if (buf_len < 3)
221 return -EINVAL;
222
223 if (host_cnt != 1) {
224 ret = snprintf(buf, rem, "(");
225 if (ret < 0)
226 return ret;
227 OSMO_SNPRINTF_RET(ret, rem, offset, len);
228 }
229 for (i = 0; i < host_cnt; i++) {
230 if (host_cnt == 1)
231 after = "";
232 else
233 after = (i == (host_cnt - 1)) ? ")" : "|";
234 ret = snprintf(buf + offset, rem, "%s%s", hosts[i] ? : "0.0.0.0", after);
235 OSMO_SNPRINTF_RET(ret, rem, offset, len);
236 }
237
238 return len;
239}
Pau Espin Pedrol8fac5112019-10-24 15:39:25 +0200240#endif /* HAVE_LIBSCTP */
Harald Weltedda70fc2017-04-08 20:52:33 +0200241
Harald Weltec47bbda2017-07-13 16:13:26 +0200242static int osmo_sock_init_tail(int fd, uint16_t type, unsigned int flags)
243{
Harald Weltebc43a622017-07-13 16:20:21 +0200244 int rc;
Harald Weltec47bbda2017-07-13 16:13:26 +0200245
246 /* Make sure to call 'listen' on a bound, connection-oriented sock */
247 if ((flags & (OSMO_SOCK_F_BIND|OSMO_SOCK_F_CONNECT)) == OSMO_SOCK_F_BIND) {
248 switch (type) {
249 case SOCK_STREAM:
250 case SOCK_SEQPACKET:
251 rc = listen(fd, 10);
Harald Weltebc43a622017-07-13 16:20:21 +0200252 if (rc < 0) {
253 LOGP(DLGLOBAL, LOGL_ERROR, "unable to listen on socket: %s\n",
254 strerror(errno));
255 return rc;
256 }
257 break;
Harald Weltec47bbda2017-07-13 16:13:26 +0200258 }
259 }
260
Harald Weltebc43a622017-07-13 16:20:21 +0200261 if (flags & OSMO_SOCK_F_NO_MCAST_LOOP) {
262 rc = osmo_sock_mcast_loop_set(fd, false);
263 if (rc < 0) {
264 LOGP(DLGLOBAL, LOGL_ERROR, "unable to disable multicast loop: %s\n",
265 strerror(errno));
266 return rc;
267 }
268 }
Harald Weltec47bbda2017-07-13 16:13:26 +0200269
Harald Welte37d204a2017-07-13 16:33:16 +0200270 if (flags & OSMO_SOCK_F_NO_MCAST_ALL) {
271 rc = osmo_sock_mcast_all_set(fd, false);
272 if (rc < 0) {
273 LOGP(DLGLOBAL, LOGL_ERROR, "unable to disable receive of all multicast: %s\n",
274 strerror(errno));
275 /* do not abort here, as this is just an
276 * optional additional optimization that only
277 * exists on Linux only */
278 }
279 }
Harald Weltebc43a622017-07-13 16:20:21 +0200280 return 0;
Harald Weltec47bbda2017-07-13 16:13:26 +0200281}
282
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200283/*! Initialize a socket (including bind and/or connect)
Harald Weltedda70fc2017-04-08 20:52:33 +0200284 * \param[in] family Address Family like AF_INET, AF_INET6, AF_UNSPEC
285 * \param[in] type Socket type like SOCK_DGRAM, SOCK_STREAM
286 * \param[in] proto Protocol like IPPROTO_TCP, IPPROTO_UDP
287 * \param[in] local_host local host name or IP address in string form
288 * \param[in] local_port local port number in host byte order
289 * \param[in] remote_host remote host name or IP address in string form
290 * \param[in] remote_port remote port number in host byte order
291 * \param[in] flags flags like \ref OSMO_SOCK_F_CONNECT
292 * \returns socket file descriptor on success; negative on error
293 *
294 * This function creates a new socket of the designated \a family, \a
295 * type and \a proto and optionally binds it to the \a local_host and \a
296 * local_port as well as optionally connects it to the \a remote_host
297 * and \q remote_port, depending on the value * of \a flags parameter.
298 *
299 * As opposed to \ref osmo_sock_init(), this function allows to combine
300 * the \ref OSMO_SOCK_F_BIND and \ref OSMO_SOCK_F_CONNECT flags. This
301 * is useful if you want to connect to a remote host/port, but still
302 * want to bind that socket to either a specific local alias IP and/or a
303 * specific local source port.
304 *
305 * You must specify either \ref OSMO_SOCK_F_BIND, or \ref
306 * OSMO_SOCK_F_CONNECT, or both.
307 *
308 * If \ref OSMO_SOCK_F_NONBLOCK is specified, the socket will be set to
309 * non-blocking mode.
310 */
311int osmo_sock_init2(uint16_t family, uint16_t type, uint8_t proto,
312 const char *local_host, uint16_t local_port,
313 const char *remote_host, uint16_t remote_port, unsigned int flags)
314{
Alexander Couzens2c962f52020-06-03 00:28:02 +0200315 struct addrinfo *local = NULL, *remote = NULL, *rp;
Harald Weltedda70fc2017-04-08 20:52:33 +0200316 int sfd = -1, rc, on = 1;
317
Alexander Couzens2c962f52020-06-03 00:28:02 +0200318 bool local_ipv4 = false, local_ipv6 = false;
319 bool remote_ipv4 = false, remote_ipv6 = false;
320
Harald Weltedda70fc2017-04-08 20:52:33 +0200321 if ((flags & (OSMO_SOCK_F_BIND | OSMO_SOCK_F_CONNECT)) == 0) {
322 LOGP(DLGLOBAL, LOGL_ERROR, "invalid: you have to specify either "
323 "BIND or CONNECT flags\n");
324 return -EINVAL;
325 }
326
Alexander Couzens2c962f52020-06-03 00:28:02 +0200327 /* figure out local address infos */
328 if (flags & OSMO_SOCK_F_BIND) {
329 local = addrinfo_helper(family, type, proto, local_host, local_port, true);
330 if (!local)
331 return -EINVAL;
332 }
333
334 /* figure out remote address infos */
335 if (flags & OSMO_SOCK_F_CONNECT) {
336 remote = addrinfo_helper(family, type, proto, remote_host, remote_port, false);
337 if (!remote) {
338 if (local)
339 freeaddrinfo(local);
340
341 return -EINVAL;
342 }
343 }
344
345 /* It must do a full run to ensure AF_UNSPEC does not fail.
346 * In case first local valid entry is IPv4 and only remote valid entry
347 * is IPv6 or vice versa */
348 if (family == AF_UNSPEC) {
349 for (rp = local; rp != NULL; rp = rp->ai_next) {
350 switch (rp->ai_family) {
351 case AF_INET:
352 local_ipv4 = true;
353 break;
354 case AF_INET6:
355 local_ipv6 = true;
356 break;
357 }
358 }
359
360 for (rp = remote; rp != NULL; rp = rp->ai_next) {
361 switch (rp->ai_family) {
362 case AF_INET:
363 remote_ipv4 = true;
364 break;
365 case AF_INET6:
366 remote_ipv6 = true;
367 break;
368 }
369 }
370
Pau Espin Pedrold8cf52b2020-08-31 19:00:59 +0200371 if ((flags & OSMO_SOCK_F_BIND) && (flags & OSMO_SOCK_F_CONNECT)) {
372 /* prioritize ipv6 as per RFC */
373 if (local_ipv6 && remote_ipv6)
374 family = AF_INET6;
375 else if (local_ipv4 && remote_ipv4)
376 family = AF_INET;
377 else {
378 if (local)
379 freeaddrinfo(local);
380 if (remote)
381 freeaddrinfo(remote);
382 LOGP(DLGLOBAL, LOGL_ERROR,
383 "Unable to find a common protocol (IPv4 or IPv6) "
384 "for local host: %s and remote host: %s.\n",
385 local_host, remote_host);
386 return -ENODEV;
387 }
388 } else if ((flags & OSMO_SOCK_F_BIND)) {
389 family = local_ipv6 ? AF_INET6 : AF_INET;
390 } else if ((flags & OSMO_SOCK_F_CONNECT)) {
391 family = remote_ipv6 ? AF_INET6 : AF_INET;
Alexander Couzens2c962f52020-06-03 00:28:02 +0200392 }
393 }
394
Harald Weltedda70fc2017-04-08 20:52:33 +0200395 /* figure out local side of socket */
396 if (flags & OSMO_SOCK_F_BIND) {
Alexander Couzens2c962f52020-06-03 00:28:02 +0200397 for (rp = local; rp != NULL; rp = rp->ai_next) {
398 /* When called with AF_UNSPEC, family will set to IPv4 or IPv6 */
399 if (rp->ai_family != family)
400 continue;
Harald Weltedda70fc2017-04-08 20:52:33 +0200401
Harald Weltedda70fc2017-04-08 20:52:33 +0200402 sfd = socket_helper(rp, flags);
403 if (sfd < 0)
404 continue;
405
Philipp Maier73196e72018-08-23 20:11:50 +0200406 if (proto != IPPROTO_UDP || flags & OSMO_SOCK_F_UDP_REUSEADDR) {
Philipp Maier99f706d2018-08-01 12:40:36 +0200407 rc = setsockopt(sfd, SOL_SOCKET, SO_REUSEADDR,
408 &on, sizeof(on));
409 if (rc < 0) {
410 LOGP(DLGLOBAL, LOGL_ERROR,
411 "cannot setsockopt socket:"
412 " %s:%u: %s\n",
413 local_host, local_port,
414 strerror(errno));
415 close(sfd);
416 continue;
417 }
Harald Weltedda70fc2017-04-08 20:52:33 +0200418 }
Philipp Maier99f706d2018-08-01 12:40:36 +0200419
Pau Espin Pedrol5d50fa52018-04-05 17:00:22 +0200420 if (bind(sfd, rp->ai_addr, rp->ai_addrlen) == -1) {
421 LOGP(DLGLOBAL, LOGL_ERROR, "unable to bind socket: %s:%u: %s\n",
422 local_host, local_port, strerror(errno));
423 close(sfd);
424 continue;
425 }
426 break;
Harald Weltedda70fc2017-04-08 20:52:33 +0200427 }
Alexander Couzens2c962f52020-06-03 00:28:02 +0200428
429 freeaddrinfo(local);
Harald Weltedda70fc2017-04-08 20:52:33 +0200430 if (rp == NULL) {
Alexander Couzens2c962f52020-06-03 00:28:02 +0200431 if (remote)
432 freeaddrinfo(remote);
Pau Espin Pedrol5d50fa52018-04-05 17:00:22 +0200433 LOGP(DLGLOBAL, LOGL_ERROR, "no suitable local addr found for: %s:%u\n",
434 local_host, local_port);
Harald Weltedda70fc2017-04-08 20:52:33 +0200435 return -ENODEV;
436 }
437 }
438
Pau Espin Pedrol5d50fa52018-04-05 17:00:22 +0200439 /* Reached this point, if OSMO_SOCK_F_BIND then sfd is valid (>=0) or it
440 was already closed and func returned. If OSMO_SOCK_F_BIND is not
441 set, then sfd = -1 */
442
Harald Weltedda70fc2017-04-08 20:52:33 +0200443 /* figure out remote side of socket */
444 if (flags & OSMO_SOCK_F_CONNECT) {
Alexander Couzens2c962f52020-06-03 00:28:02 +0200445 for (rp = remote; rp != NULL; rp = rp->ai_next) {
446 /* When called with AF_UNSPEC, family will set to IPv4 or IPv6 */
447 if (rp->ai_family != family)
448 continue;
Harald Weltedda70fc2017-04-08 20:52:33 +0200449
Harald Welte5cfa6dc2017-07-21 16:52:29 +0200450 if (sfd < 0) {
Harald Weltedda70fc2017-04-08 20:52:33 +0200451 sfd = socket_helper(rp, flags);
452 if (sfd < 0)
453 continue;
454 }
455
456 rc = connect(sfd, rp->ai_addr, rp->ai_addrlen);
Pau Espin Pedrol27cf8df2018-04-05 17:49:08 +0200457 if (rc != 0 && errno != EINPROGRESS) {
458 LOGP(DLGLOBAL, LOGL_ERROR, "unable to connect socket: %s:%u: %s\n",
459 remote_host, remote_port, strerror(errno));
460 /* We want to maintain the bind socket if bind was enabled */
461 if (!(flags & OSMO_SOCK_F_BIND)) {
462 close(sfd);
463 sfd = -1;
464 }
465 continue;
466 }
467 break;
Harald Weltedda70fc2017-04-08 20:52:33 +0200468 }
Alexander Couzens2c962f52020-06-03 00:28:02 +0200469
470 freeaddrinfo(remote);
Harald Weltedda70fc2017-04-08 20:52:33 +0200471 if (rp == NULL) {
Pau Espin Pedrol27cf8df2018-04-05 17:49:08 +0200472 LOGP(DLGLOBAL, LOGL_ERROR, "no suitable remote addr found for: %s:%u\n",
473 remote_host, remote_port);
474 if (sfd >= 0)
475 close(sfd);
Harald Weltedda70fc2017-04-08 20:52:33 +0200476 return -ENODEV;
477 }
478 }
479
Harald Weltec47bbda2017-07-13 16:13:26 +0200480 rc = osmo_sock_init_tail(sfd, type, flags);
481 if (rc < 0) {
482 close(sfd);
483 sfd = -1;
Harald Weltedda70fc2017-04-08 20:52:33 +0200484 }
Harald Weltec47bbda2017-07-13 16:13:26 +0200485
Harald Weltedda70fc2017-04-08 20:52:33 +0200486 return sfd;
487}
488
Alexander Couzens43957e62020-08-01 21:56:45 +0200489#define _SOCKADDR_TO_STR(dest, sockaddr) do { \
490 if (osmo_sockaddr_str_from_sockaddr(&dest, &sockaddr->u.sas)) \
491 osmo_strlcpy(dest.ip, "Invalid IP", 11); \
492 } while (0)
493
494/*! Initialize a socket (including bind and/or connect)
495 * \param[in] family Address Family like AF_INET, AF_INET6, AF_UNSPEC
496 * \param[in] type Socket type like SOCK_DGRAM, SOCK_STREAM
497 * \param[in] proto Protocol like IPPROTO_TCP, IPPROTO_UDP
498 * \param[in] local local address
499 * \param[in] remote remote address
500 * \param[in] flags flags like \ref OSMO_SOCK_F_CONNECT
501 * \returns socket file descriptor on success; negative on error
502 *
503 * This function creates a new socket of the
504 * \a type and \a proto and optionally binds it to the \a local
505 * as well as optionally connects it to the \a remote
506 * depending on the value * of \a flags parameter.
507 *
508 * As opposed to \ref osmo_sock_init(), this function allows to combine
509 * the \ref OSMO_SOCK_F_BIND and \ref OSMO_SOCK_F_CONNECT flags. This
510 * is useful if you want to connect to a remote host/port, but still
511 * want to bind that socket to either a specific local alias IP and/or a
512 * specific local source port.
513 *
514 * You must specify either \ref OSMO_SOCK_F_BIND, or \ref
515 * OSMO_SOCK_F_CONNECT, or both.
516 *
517 * If \ref OSMO_SOCK_F_NONBLOCK is specified, the socket will be set to
518 * non-blocking mode.
519 */
520int osmo_sock_init_osa(uint16_t type, uint8_t proto,
521 const struct osmo_sockaddr *local,
522 const struct osmo_sockaddr *remote,
523 unsigned int flags)
524{
525 int sfd = -1, rc, on = 1;
526 struct osmo_sockaddr_str sastr = {};
527
528 if ((flags & (OSMO_SOCK_F_BIND | OSMO_SOCK_F_CONNECT)) == 0) {
529 LOGP(DLGLOBAL, LOGL_ERROR, "invalid: you have to specify either "
530 "BIND or CONNECT flags\n");
531 return -EINVAL;
532 }
533
534 if ((flags & OSMO_SOCK_F_BIND) && !local) {
535 LOGP(DLGLOBAL, LOGL_ERROR, "invalid argument. Cannot BIND when local is NULL\n");
536 return -EINVAL;
537 }
538
539 if ((flags & OSMO_SOCK_F_CONNECT) && !remote) {
540 LOGP(DLGLOBAL, LOGL_ERROR, "invalid argument. Cannot CONNECT when remote is NULL\n");
541 return -EINVAL;
542 }
543
544 if ((flags & OSMO_SOCK_F_BIND) &&
545 (flags & OSMO_SOCK_F_CONNECT) &&
546 local->u.sa.sa_family != remote->u.sa.sa_family) {
547 LOGP(DLGLOBAL, LOGL_ERROR, "invalid: the family for "
548 "local and remote endpoint must be same.\n");
549 return -EINVAL;
550 }
551
552 /* figure out local side of socket */
553 if (flags & OSMO_SOCK_F_BIND) {
554 sfd = socket_helper_osa(local, type, proto, flags);
555 if (sfd < 0) {
556 _SOCKADDR_TO_STR(sastr, local);
557 LOGP(DLGLOBAL, LOGL_ERROR, "no suitable local addr found for: %s:%u\n",
558 sastr.ip, sastr.port);
559 return -ENODEV;
560 }
561
562 if (proto != IPPROTO_UDP || (flags & OSMO_SOCK_F_UDP_REUSEADDR)) {
563 rc = setsockopt(sfd, SOL_SOCKET, SO_REUSEADDR,
564 &on, sizeof(on));
565 if (rc < 0) {
566 _SOCKADDR_TO_STR(sastr, local);
567 LOGP(DLGLOBAL, LOGL_ERROR,
568 "cannot setsockopt socket:"
569 " %s:%u: %s\n",
570 sastr.ip, sastr.port,
571 strerror(errno));
572 close(sfd);
573 return rc;
574 }
575 }
576
577 if (bind(sfd, &local->u.sa, sizeof(struct osmo_sockaddr)) == -1) {
578 _SOCKADDR_TO_STR(sastr, local);
579 LOGP(DLGLOBAL, LOGL_ERROR, "unable to bind socket: %s:%u: %s\n",
580 sastr.ip, sastr.port, strerror(errno));
581 close(sfd);
582 return -1;
583 }
584 }
585
586 /* Reached this point, if OSMO_SOCK_F_BIND then sfd is valid (>=0) or it
587 was already closed and func returned. If OSMO_SOCK_F_BIND is not
588 set, then sfd = -1 */
589
590 /* figure out remote side of socket */
591 if (flags & OSMO_SOCK_F_CONNECT) {
592 if (sfd < 0) {
593 sfd = socket_helper_osa(remote, type, proto, flags);
594 if (sfd < 0) {
595 return sfd;
596 }
597 }
598
599 rc = connect(sfd, &remote->u.sa, sizeof(struct osmo_sockaddr));
600 if (rc != 0 && errno != EINPROGRESS) {
601 _SOCKADDR_TO_STR(sastr, remote);
602 LOGP(DLGLOBAL, LOGL_ERROR, "unable to connect socket: %s:%u: %s\n",
603 sastr.ip, sastr.port, strerror(errno));
604 close(sfd);
605 return rc;
606 }
607 }
608
609 rc = osmo_sock_init_tail(sfd, type, flags);
610 if (rc < 0) {
611 close(sfd);
612 sfd = -1;
613 }
614
615 return sfd;
616}
617
Pau Espin Pedrol3f464fc2019-10-10 17:38:35 +0200618#ifdef HAVE_LIBSCTP
619
Pau Espin Pedrolcd133312020-08-19 17:25:04 +0200620/* Check whether there's an IPv6 Addr as first option of any addrinfo item in the addrinfo set */
621static void addrinfo_has_v4v6addr(const struct addrinfo **result, size_t result_count, bool *has_v4, bool *has_v6)
622{
623 size_t host_idx;
624 *has_v4 = false;
625 *has_v6 = false;
626
627 for (host_idx = 0; host_idx < result_count; host_idx++) {
628 if (result[host_idx]->ai_family == AF_INET)
629 *has_v4 = true;
630 else if (result[host_idx]->ai_family == AF_INET6)
631 *has_v6 = true;
632 }
633}
634
Pau Espin Pedrol4f463c52020-08-28 14:32:02 +0200635/* Check whether there's an IPv6 with IN6ADDR_ANY_INIT ("::") */
636static bool addrinfo_has_in6addr_any(const struct addrinfo **result, size_t result_count)
637{
638 size_t host_idx;
639 struct in6_addr in6addr_any = IN6ADDR_ANY_INIT;
640
641 for (host_idx = 0; host_idx < result_count; host_idx++) {
642 if (result[host_idx]->ai_family != AF_INET6)
643 continue;
644 if (memcmp(&((struct sockaddr_in6 *)result[host_idx]->ai_addr)->sin6_addr,
645 &in6addr_any, sizeof(in6addr_any)) == 0)
646 return true;
647 }
648 return false;
649}
650
Pau Espin Pedrolcd133312020-08-19 17:25:04 +0200651static int socket_helper_multiaddr(uint16_t family, uint16_t type, uint8_t proto, unsigned int flags)
652{
Harald Weltefaf6b702021-04-28 13:04:59 +0200653 int sfd, rc;
Pau Espin Pedrolcd133312020-08-19 17:25:04 +0200654
655 sfd = socket(family, type, proto);
656 if (sfd == -1) {
657 LOGP(DLGLOBAL, LOGL_ERROR,
658 "Unable to create socket: %s\n", strerror(errno));
659 return sfd;
660 }
Harald Weltefaf6b702021-04-28 13:04:59 +0200661
662 rc = socket_helper_tail(sfd, flags);
663 if (rc < 0)
664 return rc;
665
Pau Espin Pedrolcd133312020-08-19 17:25:04 +0200666 return sfd;
667}
Pau Espin Pedrol3f464fc2019-10-10 17:38:35 +0200668
669/* Build array of addresses taking first addrinfo result of the requested family
Pau Espin Pedrolcd133312020-08-19 17:25:04 +0200670 * for each host in addrs_buf. */
Pau Espin Pedrol3f464fc2019-10-10 17:38:35 +0200671static int addrinfo_to_sockaddr(uint16_t family, const struct addrinfo **result,
672 const char **hosts, int host_cont,
Pau Espin Pedrolcd133312020-08-19 17:25:04 +0200673 uint8_t *addrs_buf, size_t addrs_buf_len) {
674 size_t host_idx, offset = 0;
Pau Espin Pedrol3f464fc2019-10-10 17:38:35 +0200675 const struct addrinfo *rp;
Pau Espin Pedrol3f464fc2019-10-10 17:38:35 +0200676
677 for (host_idx = 0; host_idx < host_cont; host_idx++) {
Pau Espin Pedrolcd133312020-08-19 17:25:04 +0200678 /* Addresses are ordered based on RFC 3484, see man getaddrinfo */
Pau Espin Pedrol3f464fc2019-10-10 17:38:35 +0200679 for (rp = result[host_idx]; rp != NULL; rp = rp->ai_next) {
Pau Espin Pedrolcd133312020-08-19 17:25:04 +0200680 if (family != AF_UNSPEC && rp->ai_family != family)
Pau Espin Pedrol3f464fc2019-10-10 17:38:35 +0200681 continue;
Pau Espin Pedrolcd133312020-08-19 17:25:04 +0200682 if (offset + rp->ai_addrlen > addrs_buf_len) {
683 LOGP(DLGLOBAL, LOGL_ERROR, "Output buffer to small: %zu\n",
684 addrs_buf_len);
685 return -ENOSPC;
686 }
687 memcpy(addrs_buf + offset, rp->ai_addr, rp->ai_addrlen);
688 offset += rp->ai_addrlen;
Pau Espin Pedrol3f464fc2019-10-10 17:38:35 +0200689 break;
690 }
691 if (!rp) { /* No addr could be bound for this host! */
692 LOGP(DLGLOBAL, LOGL_ERROR, "No suitable remote address found for host: %s\n",
693 hosts[host_idx]);
694 return -ENODEV;
695 }
696 }
697 return 0;
698}
699
700/*! Initialize a socket (including bind and/or connect) with multiple local or remote addresses.
701 * \param[in] family Address Family like AF_INET, AF_INET6, AF_UNSPEC
702 * \param[in] type Socket type like SOCK_DGRAM, SOCK_STREAM
703 * \param[in] proto Protocol like IPPROTO_TCP, IPPROTO_UDP
704 * \param[in] local_hosts array of char pointers (strings), each containing local host name or IP address in string form
705 * \param[in] local_hosts_cnt length of local_hosts (in items)
706 * \param[in] local_port local port number in host byte order
707 * \param[in] remote_host array of char pointers (strings), each containing remote host name or IP address in string form
708 * \param[in] remote_hosts_cnt length of remote_hosts (in items)
709 * \param[in] remote_port remote port number in host byte order
710 * \param[in] flags flags like \ref OSMO_SOCK_F_CONNECT
711 * \returns socket file descriptor on success; negative on error
712 *
713 * This function is similar to \ref osmo_sock_init2(), but can be passed an
714 * array of local or remote addresses for protocols supporting multiple
715 * addresses per socket, like SCTP (currently only one supported). This function
716 * should not be used by protocols not supporting this kind of features, but
717 * rather \ref osmo_sock_init2() should be used instead.
718 * See \ref osmo_sock_init2() for more information on flags and general behavior.
719 */
720int osmo_sock_init2_multiaddr(uint16_t family, uint16_t type, uint8_t proto,
721 const char **local_hosts, size_t local_hosts_cnt, uint16_t local_port,
722 const char **remote_hosts, size_t remote_hosts_cnt, uint16_t remote_port,
723 unsigned int flags)
724
725{
Pau Espin Pedrol796c6512020-08-19 12:03:25 +0200726 struct addrinfo *res_loc[OSMO_SOCK_MAX_ADDRS], *res_rem[OSMO_SOCK_MAX_ADDRS];
Pau Espin Pedrol3f464fc2019-10-10 17:38:35 +0200727 int sfd = -1, rc, on = 1;
728 int i;
Pau Espin Pedrolcd133312020-08-19 17:25:04 +0200729 bool loc_has_v4addr, rem_has_v4addr;
730 bool loc_has_v6addr, rem_has_v6addr;
731 struct sockaddr_in6 addrs_buf[OSMO_SOCK_MAX_ADDRS];
Pau Espin Pedrol3f464fc2019-10-10 17:38:35 +0200732 char strbuf[512];
733
Pau Espin Pedrolcd133312020-08-19 17:25:04 +0200734 /* updated later in case of AF_UNSPEC */
735 loc_has_v4addr = rem_has_v4addr = (family == AF_INET);
736 loc_has_v6addr = rem_has_v6addr = (family == AF_INET6);
737
Pau Espin Pedrol3f464fc2019-10-10 17:38:35 +0200738 /* TODO: So far this function is only aimed for SCTP, but could be
739 reused in the future for other protocols with multi-addr support */
740 if (proto != IPPROTO_SCTP)
741 return -ENOTSUP;
742
Pau Espin Pedrol3f464fc2019-10-10 17:38:35 +0200743 if ((flags & (OSMO_SOCK_F_BIND | OSMO_SOCK_F_CONNECT)) == 0) {
744 LOGP(DLGLOBAL, LOGL_ERROR, "invalid: you have to specify either "
745 "BIND or CONNECT flags\n");
746 return -EINVAL;
747 }
748
749 if (((flags & OSMO_SOCK_F_BIND) && !local_hosts_cnt) ||
750 ((flags & OSMO_SOCK_F_CONNECT) && !remote_hosts_cnt) ||
751 local_hosts_cnt > OSMO_SOCK_MAX_ADDRS ||
752 remote_hosts_cnt > OSMO_SOCK_MAX_ADDRS)
753 return -EINVAL;
754
755 /* figure out local side of socket */
756 if (flags & OSMO_SOCK_F_BIND) {
Pau Espin Pedrol796c6512020-08-19 12:03:25 +0200757 rc = addrinfo_helper_multi(res_loc, family, type, proto, local_hosts,
758 local_hosts_cnt, local_port, true);
Pau Espin Pedrol3f464fc2019-10-10 17:38:35 +0200759 if (rc < 0)
760 return -EINVAL;
Pau Espin Pedrolcd133312020-08-19 17:25:04 +0200761 /* Figure out if there's any IPV4 or IPv6 addr in the set */
762 if (family == AF_UNSPEC)
763 addrinfo_has_v4v6addr((const struct addrinfo **)res_loc, local_hosts_cnt,
764 &loc_has_v4addr, &loc_has_v6addr);
Pau Espin Pedrol796c6512020-08-19 12:03:25 +0200765 }
766 /* figure out remote side of socket */
767 if (flags & OSMO_SOCK_F_CONNECT) {
768 rc = addrinfo_helper_multi(res_rem, family, type, proto, remote_hosts,
769 remote_hosts_cnt, remote_port, false);
Pau Espin Pedrol4541cf22020-08-25 11:22:09 +0200770 if (rc < 0) {
771 rc = -EINVAL;
772 goto ret_freeaddrinfo_loc;
773 }
Pau Espin Pedrolcd133312020-08-19 17:25:04 +0200774 /* Figure out if there's any IPv4 or IPv6 addr in the set */
775 if (family == AF_UNSPEC)
776 addrinfo_has_v4v6addr((const struct addrinfo **)res_rem, remote_hosts_cnt,
777 &rem_has_v4addr, &rem_has_v6addr);
Pau Espin Pedrol796c6512020-08-19 12:03:25 +0200778 }
779
Pau Espin Pedrolcd133312020-08-19 17:25:04 +0200780 if (((flags & OSMO_SOCK_F_BIND) && (flags & OSMO_SOCK_F_CONNECT)) &&
Pau Espin Pedrol4f463c52020-08-28 14:32:02 +0200781 !addrinfo_has_in6addr_any((const struct addrinfo **)res_loc, local_hosts_cnt) &&
Pau Espin Pedrolcd133312020-08-19 17:25:04 +0200782 (loc_has_v4addr != rem_has_v4addr || loc_has_v6addr != rem_has_v6addr)) {
783 LOGP(DLGLOBAL, LOGL_ERROR, "Invalid v4 vs v6 in local vs remote addresses\n");
784 rc = -EINVAL;
785 goto ret_freeaddrinfo;
786 }
787
788 sfd = socket_helper_multiaddr(loc_has_v6addr ? AF_INET6 : AF_INET,
789 type, proto, flags);
790 if (sfd < 0) {
791 rc = sfd;
792 goto ret_freeaddrinfo;
793 }
794
Pau Espin Pedrol796c6512020-08-19 12:03:25 +0200795 if (flags & OSMO_SOCK_F_BIND) {
Pau Espin Pedrol272dfc12019-10-21 11:11:27 +0200796 /* Since so far we only allow IPPROTO_SCTP in this function,
797 no need to check below for "proto != IPPROTO_UDP || flags & OSMO_SOCK_F_UDP_REUSEADDR" */
798 rc = setsockopt(sfd, SOL_SOCKET, SO_REUSEADDR,
799 &on, sizeof(on));
800 if (rc < 0) {
801 multiaddr_snprintf(strbuf, sizeof(strbuf), local_hosts, local_hosts_cnt);
802 LOGP(DLGLOBAL, LOGL_ERROR,
803 "cannot setsockopt socket:"
804 " %s:%u: %s\n",
805 strbuf, local_port,
806 strerror(errno));
Pau Espin Pedrol796c6512020-08-19 12:03:25 +0200807 goto ret_close;
Pau Espin Pedrol3f464fc2019-10-10 17:38:35 +0200808 }
809
Pau Espin Pedrolcd133312020-08-19 17:25:04 +0200810 /* Build array of addresses taking first entry for each host.
Pau Espin Pedrol3f464fc2019-10-10 17:38:35 +0200811 TODO: Ideally we should use backtracking storing last used
812 indexes and trying next combination if connect() fails .*/
Pau Espin Pedrolcd133312020-08-19 17:25:04 +0200813 /* We could alternatively use v4v6 mapped addresses and call sctp_bindx once with an array od sockaddr_in6 */
Pau Espin Pedrol796c6512020-08-19 12:03:25 +0200814 rc = addrinfo_to_sockaddr(family, (const struct addrinfo **)res_loc,
Pau Espin Pedrolcd133312020-08-19 17:25:04 +0200815 local_hosts, local_hosts_cnt,
816 (uint8_t*)addrs_buf, sizeof(addrs_buf));
Pau Espin Pedrol3f464fc2019-10-10 17:38:35 +0200817 if (rc < 0) {
Pau Espin Pedrol796c6512020-08-19 12:03:25 +0200818 rc = -ENODEV;
819 goto ret_close;
Pau Espin Pedrol3f464fc2019-10-10 17:38:35 +0200820 }
821
Pau Espin Pedrolcd133312020-08-19 17:25:04 +0200822 rc = sctp_bindx(sfd, (struct sockaddr *)addrs_buf, local_hosts_cnt, SCTP_BINDX_ADD_ADDR);
823 if (rc == -1) {
Pau Espin Pedrol3f464fc2019-10-10 17:38:35 +0200824 multiaddr_snprintf(strbuf, sizeof(strbuf), local_hosts, local_hosts_cnt);
825 LOGP(DLGLOBAL, LOGL_NOTICE, "unable to bind socket: %s:%u: %s\n",
826 strbuf, local_port, strerror(errno));
Pau Espin Pedrol796c6512020-08-19 12:03:25 +0200827 rc = -ENODEV;
828 goto ret_close;
Pau Espin Pedrol3f464fc2019-10-10 17:38:35 +0200829 }
Pau Espin Pedrol3f464fc2019-10-10 17:38:35 +0200830 }
831
Pau Espin Pedrol3f464fc2019-10-10 17:38:35 +0200832 if (flags & OSMO_SOCK_F_CONNECT) {
Pau Espin Pedrol3f464fc2019-10-10 17:38:35 +0200833 /* Build array of addresses taking first of same family for each host.
834 TODO: Ideally we should use backtracking storing last used
835 indexes and trying next combination if connect() fails .*/
Pau Espin Pedrol796c6512020-08-19 12:03:25 +0200836 rc = addrinfo_to_sockaddr(family, (const struct addrinfo **)res_rem,
Pau Espin Pedrolcd133312020-08-19 17:25:04 +0200837 remote_hosts, remote_hosts_cnt,
838 (uint8_t*)addrs_buf, sizeof(addrs_buf));
Pau Espin Pedrol3f464fc2019-10-10 17:38:35 +0200839 if (rc < 0) {
Pau Espin Pedrol796c6512020-08-19 12:03:25 +0200840 rc = -ENODEV;
841 goto ret_close;
Pau Espin Pedrol3f464fc2019-10-10 17:38:35 +0200842 }
843
Pau Espin Pedrolcd133312020-08-19 17:25:04 +0200844 rc = sctp_connectx(sfd, (struct sockaddr *)addrs_buf, remote_hosts_cnt, NULL);
Pau Espin Pedrol3f464fc2019-10-10 17:38:35 +0200845 if (rc != 0 && errno != EINPROGRESS) {
846 multiaddr_snprintf(strbuf, sizeof(strbuf), remote_hosts, remote_hosts_cnt);
847 LOGP(DLGLOBAL, LOGL_ERROR, "unable to connect socket: %s:%u: %s\n",
848 strbuf, remote_port, strerror(errno));
Pau Espin Pedrol796c6512020-08-19 12:03:25 +0200849 rc = -ENODEV;
850 goto ret_close;
Pau Espin Pedrol3f464fc2019-10-10 17:38:35 +0200851 }
Pau Espin Pedrol3f464fc2019-10-10 17:38:35 +0200852 }
853
854 rc = osmo_sock_init_tail(sfd, type, flags);
855 if (rc < 0) {
856 close(sfd);
857 sfd = -1;
858 }
859
Pau Espin Pedrol796c6512020-08-19 12:03:25 +0200860 rc = sfd;
861 goto ret_freeaddrinfo;
862
863ret_close:
864 if (sfd >= 0)
865 close(sfd);
866ret_freeaddrinfo:
Pau Espin Pedrol4541cf22020-08-25 11:22:09 +0200867 if (flags & OSMO_SOCK_F_CONNECT) {
868 for (i = 0; i < remote_hosts_cnt; i++)
869 freeaddrinfo(res_rem[i]);
870 }
871ret_freeaddrinfo_loc:
872 if (flags & OSMO_SOCK_F_BIND) {
873 for (i = 0; i < local_hosts_cnt; i++)
874 freeaddrinfo(res_loc[i]);
875 }
Pau Espin Pedrol796c6512020-08-19 12:03:25 +0200876 return rc;
Pau Espin Pedrol3f464fc2019-10-10 17:38:35 +0200877}
878#endif /* HAVE_LIBSCTP */
Harald Weltedda70fc2017-04-08 20:52:33 +0200879
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200880/*! Initialize a socket (including bind/connect)
Harald Welteba6988b2011-08-17 12:46:48 +0200881 * \param[in] family Address Family like AF_INET, AF_INET6, AF_UNSPEC
882 * \param[in] type Socket type like SOCK_DGRAM, SOCK_STREAM
883 * \param[in] proto Protocol like IPPROTO_TCP, IPPROTO_UDP
884 * \param[in] host remote host name or IP address in string form
885 * \param[in] port remote port number in host byte order
886 * \param[in] flags flags like \ref OSMO_SOCK_F_CONNECT
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200887 * \returns socket file descriptor on success; negative on error
Harald Welteba6988b2011-08-17 12:46:48 +0200888 *
889 * This function creates a new socket of the designated \a family, \a
890 * type and \a proto and optionally binds or connects it, depending on
891 * the value of \a flags parameter.
892 */
Harald Welte33cb71a2011-05-21 18:54:32 +0200893int osmo_sock_init(uint16_t family, uint16_t type, uint8_t proto,
Pablo Neira Ayuso0849c9a2011-06-09 15:04:30 +0200894 const char *host, uint16_t port, unsigned int flags)
Harald Welte33cb71a2011-05-21 18:54:32 +0200895{
Harald Weltedda70fc2017-04-08 20:52:33 +0200896 struct addrinfo *result, *rp;
Harald Welte68b15742011-05-22 21:47:29 +0200897 int sfd, rc, on = 1;
Harald Welte33cb71a2011-05-21 18:54:32 +0200898
Pablo Neira Ayuso0849c9a2011-06-09 15:04:30 +0200899 if ((flags & (OSMO_SOCK_F_BIND | OSMO_SOCK_F_CONNECT)) ==
Neels Hofmeyrf0f07d92016-08-22 13:34:23 +0200900 (OSMO_SOCK_F_BIND | OSMO_SOCK_F_CONNECT)) {
Philipp Maier6f0f5602017-02-09 14:09:06 +0100901 LOGP(DLGLOBAL, LOGL_ERROR, "invalid: both bind and connect flags set:"
Neels Hofmeyrb7f191f2016-08-29 11:22:03 +0200902 " %s:%u\n", host, port);
Pablo Neira Ayuso0849c9a2011-06-09 15:04:30 +0200903 return -EINVAL;
Neels Hofmeyrf0f07d92016-08-22 13:34:23 +0200904 }
Pablo Neira Ayuso0849c9a2011-06-09 15:04:30 +0200905
Harald Weltedda70fc2017-04-08 20:52:33 +0200906 result = addrinfo_helper(family, type, proto, host, port, flags & OSMO_SOCK_F_BIND);
Pau Espin Pedrolba828c32020-08-20 18:28:10 +0200907 if (!result)
Harald Welte33cb71a2011-05-21 18:54:32 +0200908 return -EINVAL;
Harald Welte33cb71a2011-05-21 18:54:32 +0200909
910 for (rp = result; rp != NULL; rp = rp->ai_next) {
Harald Weltedda70fc2017-04-08 20:52:33 +0200911 sfd = socket_helper(rp, flags);
Harald Welte33cb71a2011-05-21 18:54:32 +0200912 if (sfd == -1)
913 continue;
Harald Weltedda70fc2017-04-08 20:52:33 +0200914
Pablo Neira Ayuso0849c9a2011-06-09 15:04:30 +0200915 if (flags & OSMO_SOCK_F_CONNECT) {
916 rc = connect(sfd, rp->ai_addr, rp->ai_addrlen);
Pau Espin Pedrol3a321472018-04-05 17:49:40 +0200917 if (rc != 0 && errno != EINPROGRESS) {
918 close(sfd);
919 continue;
920 }
Harald Welte33cb71a2011-05-21 18:54:32 +0200921 } else {
Philipp Maier73196e72018-08-23 20:11:50 +0200922 if (proto != IPPROTO_UDP || flags & OSMO_SOCK_F_UDP_REUSEADDR) {
Philipp Maier99f706d2018-08-01 12:40:36 +0200923 rc = setsockopt(sfd, SOL_SOCKET, SO_REUSEADDR,
924 &on, sizeof(on));
925 if (rc < 0) {
926 LOGP(DLGLOBAL, LOGL_ERROR,
927 "cannot setsockopt socket:"
928 " %s:%u: %s\n",
929 host, port, strerror(errno));
930 close(sfd);
931 continue;
932 }
Pablo Neira Ayuso0849c9a2011-06-09 15:04:30 +0200933 }
Pau Espin Pedrol3a321472018-04-05 17:49:40 +0200934 if (bind(sfd, rp->ai_addr, rp->ai_addrlen) == -1) {
935 LOGP(DLGLOBAL, LOGL_ERROR, "unable to bind socket:"
936 "%s:%u: %s\n",
937 host, port, strerror(errno));
938 close(sfd);
939 continue;
940 }
Harald Welte33cb71a2011-05-21 18:54:32 +0200941 }
Pau Espin Pedrol3a321472018-04-05 17:49:40 +0200942 break;
Harald Welte33cb71a2011-05-21 18:54:32 +0200943 }
944 freeaddrinfo(result);
945
946 if (rp == NULL) {
Pau Espin Pedrol3a321472018-04-05 17:49:40 +0200947 LOGP(DLGLOBAL, LOGL_ERROR, "no suitable addr found for: %s:%u\n",
948 host, port);
Harald Welte33cb71a2011-05-21 18:54:32 +0200949 return -ENODEV;
950 }
Harald Welte68b15742011-05-22 21:47:29 +0200951
Philipp Maier73196e72018-08-23 20:11:50 +0200952 if (proto != IPPROTO_UDP || flags & OSMO_SOCK_F_UDP_REUSEADDR) {
Philipp Maier99f706d2018-08-01 12:40:36 +0200953 rc = setsockopt(sfd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on));
954 if (rc < 0) {
955 LOGP(DLGLOBAL, LOGL_ERROR,
956 "cannot setsockopt socket: %s:%u: %s\n", host,
957 port, strerror(errno));
958 close(sfd);
959 sfd = -1;
960 }
Philipp Maier0659c5d2018-08-01 12:43:08 +0200961 }
Harald Welte68b15742011-05-22 21:47:29 +0200962
Harald Weltec47bbda2017-07-13 16:13:26 +0200963 rc = osmo_sock_init_tail(sfd, type, flags);
964 if (rc < 0) {
965 close(sfd);
966 sfd = -1;
Harald Welte68b15742011-05-22 21:47:29 +0200967 }
Harald Weltec47bbda2017-07-13 16:13:26 +0200968
Harald Welte68b15742011-05-22 21:47:29 +0200969 return sfd;
970}
971
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200972/*! fill \ref osmo_fd for a give sfd
Max862ba652014-10-13 14:54:25 +0200973 * \param[out] ofd file descriptor (will be filled in)
974 * \param[in] sfd socket file descriptor
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200975 * \returns socket fd on success; negative on error
Max862ba652014-10-13 14:54:25 +0200976 *
977 * This function fills the \a ofd structure.
978 */
979static inline int osmo_fd_init_ofd(struct osmo_fd *ofd, int sfd)
980{
981 int rc;
982
983 if (sfd < 0)
984 return sfd;
985
986 ofd->fd = sfd;
Harald Welte16886992019-03-20 10:26:39 +0100987 ofd->when = OSMO_FD_READ;
Max862ba652014-10-13 14:54:25 +0200988
989 rc = osmo_fd_register(ofd);
990 if (rc < 0) {
991 close(sfd);
992 return rc;
993 }
994
995 return sfd;
996}
997
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200998/*! Initialize a socket and fill \ref osmo_fd
Katerina Barone-Adesic28c6a02013-02-15 13:27:59 +0100999 * \param[out] ofd file descriptor (will be filled in)
Harald Welteba6988b2011-08-17 12:46:48 +02001000 * \param[in] family Address Family like AF_INET, AF_INET6, AF_UNSPEC
1001 * \param[in] type Socket type like SOCK_DGRAM, SOCK_STREAM
1002 * \param[in] proto Protocol like IPPROTO_TCP, IPPROTO_UDP
1003 * \param[in] host remote host name or IP address in string form
1004 * \param[in] port remote port number in host byte order
1005 * \param[in] flags flags like \ref OSMO_SOCK_F_CONNECT
Harald Welte2d2e2cc2016-04-25 12:11:20 +02001006 * \returns socket fd on success; negative on error
Harald Welteba6988b2011-08-17 12:46:48 +02001007 *
1008 * This function creates (and optionall binds/connects) a socket using
1009 * \ref osmo_sock_init, but also fills the \a ofd structure.
1010 */
Harald Welte68b15742011-05-22 21:47:29 +02001011int osmo_sock_init_ofd(struct osmo_fd *ofd, int family, int type, int proto,
Pablo Neira Ayuso0849c9a2011-06-09 15:04:30 +02001012 const char *host, uint16_t port, unsigned int flags)
Harald Welte68b15742011-05-22 21:47:29 +02001013{
Max862ba652014-10-13 14:54:25 +02001014 return osmo_fd_init_ofd(ofd, osmo_sock_init(family, type, proto, host, port, flags));
Harald Welte33cb71a2011-05-21 18:54:32 +02001015}
1016
Neels Hofmeyr87e45502017-06-20 00:17:59 +02001017/*! Initialize a socket and fill \ref osmo_fd
Pau Espin Pedrol75989e62017-05-26 12:39:53 +02001018 * \param[out] ofd file descriptor (will be filled in)
1019 * \param[in] family Address Family like AF_INET, AF_INET6, AF_UNSPEC
1020 * \param[in] type Socket type like SOCK_DGRAM, SOCK_STREAM
1021 * \param[in] proto Protocol like IPPROTO_TCP, IPPROTO_UDP
1022 * \param[in] local_host local host name or IP address in string form
1023 * \param[in] local_port local port number in host byte order
1024 * \param[in] remote_host remote host name or IP address in string form
1025 * \param[in] remote_port remote port number in host byte order
1026 * \param[in] flags flags like \ref OSMO_SOCK_F_CONNECT
1027 * \returns socket fd on success; negative on error
1028 *
1029 * This function creates (and optionall binds/connects) a socket using
1030 * \ref osmo_sock_init2, but also fills the \a ofd structure.
1031 */
1032int osmo_sock_init2_ofd(struct osmo_fd *ofd, int family, int type, int proto,
1033 const char *local_host, uint16_t local_port,
1034 const char *remote_host, uint16_t remote_port, unsigned int flags)
1035{
1036 return osmo_fd_init_ofd(ofd, osmo_sock_init2(family, type, proto, local_host,
1037 local_port, remote_host, remote_port, flags));
1038}
1039
Alexander Couzens43957e62020-08-01 21:56:45 +02001040int osmo_sock_init_osa_ofd(struct osmo_fd *ofd, int type, int proto,
1041 const struct osmo_sockaddr *local,
1042 const struct osmo_sockaddr *remote, unsigned int flags)
1043{
1044 return osmo_fd_init_ofd(ofd, osmo_sock_init_osa(type, proto, local, remote, flags));
1045}
1046
Neels Hofmeyr87e45502017-06-20 00:17:59 +02001047/*! Initialize a socket and fill \ref sockaddr
Harald Welteba6988b2011-08-17 12:46:48 +02001048 * \param[out] ss socket address (will be filled in)
1049 * \param[in] type Socket type like SOCK_DGRAM, SOCK_STREAM
1050 * \param[in] proto Protocol like IPPROTO_TCP, IPPROTO_UDP
1051 * \param[in] flags flags like \ref OSMO_SOCK_F_CONNECT
Harald Welte2d2e2cc2016-04-25 12:11:20 +02001052 * \returns socket fd on success; negative on error
Harald Welteba6988b2011-08-17 12:46:48 +02001053 *
1054 * This function creates (and optionall binds/connects) a socket using
1055 * \ref osmo_sock_init, but also fills the \a ss structure.
1056 */
Harald Welte33cb71a2011-05-21 18:54:32 +02001057int osmo_sock_init_sa(struct sockaddr *ss, uint16_t type,
Pablo Neira Ayuso0849c9a2011-06-09 15:04:30 +02001058 uint8_t proto, unsigned int flags)
Harald Welte33cb71a2011-05-21 18:54:32 +02001059{
1060 char host[NI_MAXHOST];
1061 uint16_t port;
1062 struct sockaddr_in *sin;
1063 struct sockaddr_in6 *sin6;
1064 int s, sa_len;
1065
1066 /* determine port and host from ss */
1067 switch (ss->sa_family) {
1068 case AF_INET:
1069 sin = (struct sockaddr_in *) ss;
1070 sa_len = sizeof(struct sockaddr_in);
1071 port = ntohs(sin->sin_port);
1072 break;
1073 case AF_INET6:
1074 sin6 = (struct sockaddr_in6 *) ss;
1075 sa_len = sizeof(struct sockaddr_in6);
1076 port = ntohs(sin6->sin6_port);
1077 break;
1078 default:
1079 return -EINVAL;
1080 }
Harald Welte33cb71a2011-05-21 18:54:32 +02001081
1082 s = getnameinfo(ss, sa_len, host, NI_MAXHOST,
1083 NULL, 0, NI_NUMERICHOST);
1084 if (s != 0) {
Philipp Maier6f0f5602017-02-09 14:09:06 +01001085 LOGP(DLGLOBAL, LOGL_ERROR, "getnameinfo failed:"
1086 " %s\n", strerror(errno));
Harald Welte33cb71a2011-05-21 18:54:32 +02001087 return s;
1088 }
1089
Pablo Neira Ayuso0849c9a2011-06-09 15:04:30 +02001090 return osmo_sock_init(ss->sa_family, type, proto, host, port, flags);
Harald Welte33cb71a2011-05-21 18:54:32 +02001091}
1092
1093static int sockaddr_equal(const struct sockaddr *a,
Harald Weltee4764422011-05-22 12:25:57 +02001094 const struct sockaddr *b, unsigned int len)
Harald Welte33cb71a2011-05-21 18:54:32 +02001095{
1096 struct sockaddr_in *sin_a, *sin_b;
1097 struct sockaddr_in6 *sin6_a, *sin6_b;
1098
1099 if (a->sa_family != b->sa_family)
1100 return 0;
1101
1102 switch (a->sa_family) {
1103 case AF_INET:
1104 sin_a = (struct sockaddr_in *)a;
1105 sin_b = (struct sockaddr_in *)b;
1106 if (!memcmp(&sin_a->sin_addr, &sin_b->sin_addr,
1107 sizeof(struct in_addr)))
1108 return 1;
1109 break;
1110 case AF_INET6:
1111 sin6_a = (struct sockaddr_in6 *)a;
1112 sin6_b = (struct sockaddr_in6 *)b;
1113 if (!memcmp(&sin6_a->sin6_addr, &sin6_b->sin6_addr,
1114 sizeof(struct in6_addr)))
1115 return 1;
1116 break;
1117 }
1118 return 0;
1119}
1120
Neels Hofmeyr87e45502017-06-20 00:17:59 +02001121/*! Determine if the given address is a local address
Harald Welteba6988b2011-08-17 12:46:48 +02001122 * \param[in] addr Socket Address
1123 * \param[in] addrlen Length of socket address in bytes
1124 * \returns 1 if address is local, 0 otherwise.
1125 */
Harald Weltebc32d052012-04-08 11:31:32 +02001126int osmo_sockaddr_is_local(struct sockaddr *addr, unsigned int addrlen)
Harald Welte33cb71a2011-05-21 18:54:32 +02001127{
1128 struct ifaddrs *ifaddr, *ifa;
1129
1130 if (getifaddrs(&ifaddr) == -1) {
Philipp Maier6f0f5602017-02-09 14:09:06 +01001131 LOGP(DLGLOBAL, LOGL_ERROR, "getifaddrs:"
1132 " %s\n", strerror(errno));
Harald Welte33cb71a2011-05-21 18:54:32 +02001133 return -EIO;
1134 }
1135
1136 for (ifa = ifaddr; ifa != NULL; ifa = ifa->ifa_next) {
Harald Welte4d3a7b12011-05-24 21:31:53 +02001137 if (!ifa->ifa_addr)
1138 continue;
Pau Espin Pedrol15753e92018-04-18 19:57:41 +02001139 if (sockaddr_equal(ifa->ifa_addr, addr, addrlen)) {
1140 freeifaddrs(ifaddr);
Harald Welte33cb71a2011-05-21 18:54:32 +02001141 return 1;
Pau Espin Pedrol15753e92018-04-18 19:57:41 +02001142 }
Harald Welte33cb71a2011-05-21 18:54:32 +02001143 }
1144
Pau Espin Pedrol15753e92018-04-18 19:57:41 +02001145 freeifaddrs(ifaddr);
Harald Welte33cb71a2011-05-21 18:54:32 +02001146 return 0;
1147}
Harald Weltee4764422011-05-22 12:25:57 +02001148
Max9d7a2472018-11-20 15:18:31 +01001149/*! Convert sockaddr_in to IP address as char string and port as uint16_t.
1150 * \param[out] addr String buffer to write IP address to, or NULL.
1151 * \param[out] addr_len Size of \a addr.
1152 * \param[out] port Pointer to uint16_t to write the port number to, or NULL.
1153 * \param[in] sin Sockaddr to convert.
1154 * \returns the required string buffer size, like osmo_strlcpy(), or 0 if \a addr is NULL.
1155 */
1156size_t osmo_sockaddr_in_to_str_and_uint(char *addr, unsigned int addr_len, uint16_t *port,
1157 const struct sockaddr_in *sin)
1158{
1159 if (port)
1160 *port = ntohs(sin->sin_port);
1161
1162 if (addr)
1163 return osmo_strlcpy(addr, inet_ntoa(sin->sin_addr), addr_len);
1164
1165 return 0;
1166}
1167
Neels Hofmeyr59f4caf2018-07-19 22:13:19 +02001168/*! Convert sockaddr to IP address as char string and port as uint16_t.
1169 * \param[out] addr String buffer to write IP address to, or NULL.
1170 * \param[out] addr_len Size of \a addr.
1171 * \param[out] port Pointer to uint16_t to write the port number to, or NULL.
1172 * \param[in] sa Sockaddr to convert.
1173 * \returns the required string buffer size, like osmo_strlcpy(), or 0 if \a addr is NULL.
1174 */
1175unsigned int osmo_sockaddr_to_str_and_uint(char *addr, unsigned int addr_len, uint16_t *port,
1176 const struct sockaddr *sa)
1177{
Neels Hofmeyr59f4caf2018-07-19 22:13:19 +02001178
Pau Espin Pedrol1a3d24e2020-08-28 18:31:32 +02001179 const struct sockaddr_in6 *sin6;
1180
1181 switch (sa->sa_family) {
1182 case AF_INET:
1183 return osmo_sockaddr_in_to_str_and_uint(addr, addr_len, port,
1184 (const struct sockaddr_in *)sa);
1185 case AF_INET6:
1186 sin6 = (const struct sockaddr_in6 *)sa;
1187 if (port)
1188 *port = ntohs(sin6->sin6_port);
1189 if (addr && inet_ntop(sa->sa_family, &sin6->sin6_addr, addr, addr_len))
1190 return strlen(addr);
1191 break;
1192 }
1193 return 0;
Neels Hofmeyr59f4caf2018-07-19 22:13:19 +02001194}
1195
Pau Espin Pedrol5cc4fe42020-08-31 12:52:06 +02001196/*! inet_ntop() wrapper for a struct sockaddr.
1197 * \param[in] sa source sockaddr to get the address from.
1198 * \param[out] dst string buffer of at least INET6_ADDRSTRLEN size.
1199 * \returns returns a non-null pointer to dst. NULL is returned if there was an
1200 * error, with errno set to indicate the error.
1201 */
1202const char *osmo_sockaddr_ntop(const struct sockaddr *sa, char *dst)
1203{
1204 const struct osmo_sockaddr *osa = (const struct osmo_sockaddr *)sa;
1205 return inet_ntop(osa->u.sa.sa_family,
1206 osa->u.sa.sa_family == AF_INET6 ?
1207 (const void *)&osa->u.sin6.sin6_addr :
1208 (const void *)&osa->u.sin.sin_addr,
1209 dst, INET6_ADDRSTRLEN);
1210}
1211
1212/*! Get sockaddr port content (in host byte order)
1213 * \param[in] sa source sockaddr to get the port from.
1214 * \returns returns the sockaddr port in host byte order
1215 */
1216uint16_t osmo_sockaddr_port(const struct sockaddr *sa)
1217{
1218 const struct osmo_sockaddr *osa = (const struct osmo_sockaddr *)sa;
1219 switch (osa->u.sa.sa_family) {
1220 case AF_INET6:
1221 return ntohs(osa->u.sin6.sin6_port);
1222 case AF_INET:
1223 return ntohs(osa->u.sin.sin_port);
1224 }
1225 return 0;
1226}
1227
Neels Hofmeyr87e45502017-06-20 00:17:59 +02001228/*! Initialize a unix domain socket (including bind/connect)
Álvaro Neira Ayuso5ade61a2014-03-24 13:02:00 +01001229 * \param[in] type Socket type like SOCK_DGRAM, SOCK_STREAM
1230 * \param[in] proto Protocol like IPPROTO_TCP, IPPROTO_UDP
1231 * \param[in] socket_path path to identify the socket
1232 * \param[in] flags flags like \ref OSMO_SOCK_F_CONNECT
Harald Welte2d2e2cc2016-04-25 12:11:20 +02001233 * \returns socket fd on success; negative on error
Álvaro Neira Ayuso5ade61a2014-03-24 13:02:00 +01001234 *
1235 * This function creates a new unix domain socket, \a
1236 * type and \a proto and optionally binds or connects it, depending on
1237 * the value of \a flags parameter.
1238 */
Eric Wildeb5769b2019-06-27 15:31:17 +02001239#if defined(__clang__) && defined(SUN_LEN)
1240__attribute__((no_sanitize("undefined")))
1241#endif
Álvaro Neira Ayuso5ade61a2014-03-24 13:02:00 +01001242int osmo_sock_unix_init(uint16_t type, uint8_t proto,
1243 const char *socket_path, unsigned int flags)
1244{
1245 struct sockaddr_un local;
Harald Weltefaf6b702021-04-28 13:04:59 +02001246 int sfd, rc;
Álvaro Neira Ayuso5ade61a2014-03-24 13:02:00 +01001247 unsigned int namelen;
1248
1249 if ((flags & (OSMO_SOCK_F_BIND | OSMO_SOCK_F_CONNECT)) ==
1250 (OSMO_SOCK_F_BIND | OSMO_SOCK_F_CONNECT))
1251 return -EINVAL;
1252
1253 local.sun_family = AF_UNIX;
Stefan Sperling6afb3f52018-09-20 17:21:05 +02001254 /* When an AF_UNIX socket is bound, sun_path should be NUL-terminated. See unix(7) man page. */
1255 if (osmo_strlcpy(local.sun_path, socket_path, sizeof(local.sun_path)) >= sizeof(local.sun_path)) {
Stefan Sperling896ff6d2018-08-28 14:34:17 +02001256 LOGP(DLGLOBAL, LOGL_ERROR, "Socket path exceeds maximum length of %zd bytes: %s\n",
1257 sizeof(local.sun_path), socket_path);
1258 return -ENOSPC;
1259 }
Álvaro Neira Ayuso5ade61a2014-03-24 13:02:00 +01001260
1261#if defined(BSD44SOCKETS) || defined(__UNIXWARE__)
Stefan Sperling6afb3f52018-09-20 17:21:05 +02001262 local.sun_len = strlen(local.sun_path);
Álvaro Neira Ayuso5ade61a2014-03-24 13:02:00 +01001263#endif
1264#if defined(BSD44SOCKETS) || defined(SUN_LEN)
1265 namelen = SUN_LEN(&local);
1266#else
Stefan Sperling6afb3f52018-09-20 17:21:05 +02001267 namelen = strlen(local.sun_path) +
1268 offsetof(struct sockaddr_un, sun_path);
Álvaro Neira Ayuso5ade61a2014-03-24 13:02:00 +01001269#endif
1270
1271 sfd = socket(AF_UNIX, type, proto);
1272 if (sfd < 0)
1273 return -1;
1274
1275 if (flags & OSMO_SOCK_F_CONNECT) {
1276 rc = connect(sfd, (struct sockaddr *)&local, namelen);
1277 if (rc < 0)
1278 goto err;
1279 } else {
1280 unlink(local.sun_path);
1281 rc = bind(sfd, (struct sockaddr *)&local, namelen);
1282 if (rc < 0)
1283 goto err;
1284 }
1285
Harald Weltefaf6b702021-04-28 13:04:59 +02001286 rc = socket_helper_tail(sfd, flags);
1287 if (rc < 0)
1288 return rc;
Álvaro Neira Ayuso5ade61a2014-03-24 13:02:00 +01001289
Harald Weltec47bbda2017-07-13 16:13:26 +02001290 rc = osmo_sock_init_tail(sfd, type, flags);
1291 if (rc < 0) {
1292 close(sfd);
1293 sfd = -1;
Álvaro Neira Ayuso5ade61a2014-03-24 13:02:00 +01001294 }
1295
1296 return sfd;
1297err:
1298 close(sfd);
1299 return -1;
1300}
1301
Neels Hofmeyr87e45502017-06-20 00:17:59 +02001302/*! Initialize a unix domain socket and fill \ref osmo_fd
Álvaro Neira Ayuso5ade61a2014-03-24 13:02:00 +01001303 * \param[out] ofd file descriptor (will be filled in)
1304 * \param[in] type Socket type like SOCK_DGRAM, SOCK_STREAM
1305 * \param[in] proto Protocol like IPPROTO_TCP, IPPROTO_UDP
1306 * \param[in] socket_path path to identify the socket
1307 * \param[in] flags flags like \ref OSMO_SOCK_F_CONNECT
Harald Welte2d2e2cc2016-04-25 12:11:20 +02001308 * \returns socket fd on success; negative on error
Álvaro Neira Ayuso5ade61a2014-03-24 13:02:00 +01001309 *
Vadim Yanitskiyb606d762019-06-01 19:02:47 +07001310 * This function creates (and optionally binds/connects) a socket
1311 * using osmo_sock_unix_init, but also fills the ofd structure.
Álvaro Neira Ayuso5ade61a2014-03-24 13:02:00 +01001312 */
1313int osmo_sock_unix_init_ofd(struct osmo_fd *ofd, uint16_t type, uint8_t proto,
1314 const char *socket_path, unsigned int flags)
1315{
Max862ba652014-10-13 14:54:25 +02001316 return osmo_fd_init_ofd(ofd, osmo_sock_unix_init(type, proto, socket_path, flags));
Álvaro Neira Ayuso5ade61a2014-03-24 13:02:00 +01001317}
1318
Neels Hofmeyr01457512018-12-12 01:48:54 +01001319/*! Get the IP and/or port number on socket in separate string buffers.
Oliver Smith7acd5d02018-10-25 11:16:36 +02001320 * \param[in] fd file descriptor of socket
1321 * \param[out] ip IP address (will be filled in when not NULL)
1322 * \param[in] ip_len length of the ip buffer
1323 * \param[out] port number (will be filled in when not NULL)
1324 * \param[in] port_len length of the port buffer
1325 * \param[in] local (true) or remote (false) name will get looked at
1326 * \returns 0 on success; negative otherwise
1327 */
Neels Hofmeyr01457512018-12-12 01:48:54 +01001328int osmo_sock_get_ip_and_port(int fd, char *ip, size_t ip_len, char *port, size_t port_len, bool local)
Oliver Smith7acd5d02018-10-25 11:16:36 +02001329{
Pau Espin Pedroled42a882020-08-21 15:39:17 +02001330 struct sockaddr_storage sa;
Oliver Smith7acd5d02018-10-25 11:16:36 +02001331 socklen_t len = sizeof(sa);
Oliver Smith860651e2018-10-30 14:31:57 +01001332 char ipbuf[INET6_ADDRSTRLEN], portbuf[6];
Oliver Smith7acd5d02018-10-25 11:16:36 +02001333 int rc;
1334
Pau Espin Pedroled42a882020-08-21 15:39:17 +02001335 rc = local ? getsockname(fd, (struct sockaddr*)&sa, &len) : getpeername(fd, (struct sockaddr*)&sa, &len);
Oliver Smith7acd5d02018-10-25 11:16:36 +02001336 if (rc < 0)
1337 return rc;
1338
Pau Espin Pedroled42a882020-08-21 15:39:17 +02001339 rc = getnameinfo((const struct sockaddr*)&sa, len, ipbuf, sizeof(ipbuf),
Oliver Smith7acd5d02018-10-25 11:16:36 +02001340 portbuf, sizeof(portbuf),
1341 NI_NUMERICHOST | NI_NUMERICSERV);
1342 if (rc < 0)
1343 return rc;
1344
1345 if (ip)
1346 strncpy(ip, ipbuf, ip_len);
1347 if (port)
1348 strncpy(port, portbuf, port_len);
1349 return 0;
1350}
1351
1352/*! Get local IP address on socket
1353 * \param[in] fd file descriptor of socket
1354 * \param[out] ip IP address (will be filled in)
1355 * \param[in] len length of the output buffer
1356 * \returns 0 on success; negative otherwise
1357 */
1358int osmo_sock_get_local_ip(int fd, char *ip, size_t len)
1359{
Neels Hofmeyr01457512018-12-12 01:48:54 +01001360 return osmo_sock_get_ip_and_port(fd, ip, len, NULL, 0, true);
Oliver Smith7acd5d02018-10-25 11:16:36 +02001361}
1362
1363/*! Get local port on socket
1364 * \param[in] fd file descriptor of socket
1365 * \param[out] port number (will be filled in)
1366 * \param[in] len length of the output buffer
1367 * \returns 0 on success; negative otherwise
1368 */
1369int osmo_sock_get_local_ip_port(int fd, char *port, size_t len)
1370{
Neels Hofmeyr01457512018-12-12 01:48:54 +01001371 return osmo_sock_get_ip_and_port(fd, NULL, 0, port, len, true);
Oliver Smith7acd5d02018-10-25 11:16:36 +02001372}
1373
1374/*! Get remote IP address on socket
1375 * \param[in] fd file descriptor of socket
1376 * \param[out] ip IP address (will be filled in)
1377 * \param[in] len length of the output buffer
1378 * \returns 0 on success; negative otherwise
1379 */
1380int osmo_sock_get_remote_ip(int fd, char *ip, size_t len)
1381{
Neels Hofmeyr01457512018-12-12 01:48:54 +01001382 return osmo_sock_get_ip_and_port(fd, ip, len, NULL, 0, false);
Oliver Smith7acd5d02018-10-25 11:16:36 +02001383}
1384
1385/*! Get remote port on socket
1386 * \param[in] fd file descriptor of socket
1387 * \param[out] port number (will be filled in)
1388 * \param[in] len length of the output buffer
1389 * \returns 0 on success; negative otherwise
1390 */
1391int osmo_sock_get_remote_ip_port(int fd, char *port, size_t len)
1392{
Neels Hofmeyr01457512018-12-12 01:48:54 +01001393 return osmo_sock_get_ip_and_port(fd, NULL, 0, port, len, false);
Oliver Smith7acd5d02018-10-25 11:16:36 +02001394}
1395
Neels Hofmeyr01457512018-12-12 01:48:54 +01001396/*! Get address/port information on socket in dyn-alloc string like "(r=1.2.3.4:5<->l=6.7.8.9:10)".
1397 * Usually, it is better to use osmo_sock_get_name2() for a static string buffer or osmo_sock_get_name_buf() for a
1398 * caller provided string buffer, to avoid the dynamic talloc allocation.
Harald Welte48f55832017-01-26 00:03:10 +01001399 * \param[in] ctx talloc context from which to allocate string buffer
1400 * \param[in] fd file descriptor of socket
Neels Hofmeyr01457512018-12-12 01:48:54 +01001401 * \returns string identifying the connection of this socket, talloc'd from ctx.
Harald Welte48f55832017-01-26 00:03:10 +01001402 */
Harald Weltec0dfc9d2019-03-18 18:29:43 +01001403char *osmo_sock_get_name(const void *ctx, int fd)
Harald Welte48f55832017-01-26 00:03:10 +01001404{
Philipp Maier64b51eb2019-01-14 11:59:11 +01001405 char str[OSMO_SOCK_NAME_MAXLEN];
Neels Hofmeyr01457512018-12-12 01:48:54 +01001406 int rc;
1407 rc = osmo_sock_get_name_buf(str, sizeof(str), fd);
1408 if (rc <= 0)
1409 return NULL;
1410 return talloc_asprintf(ctx, "(%s)", str);
1411}
1412
1413/*! Get address/port information on socket in provided string buffer, like "r=1.2.3.4:5<->l=6.7.8.9:10".
1414 * This does not include braces like osmo_sock_get_name().
1415 * \param[out] str Destination string buffer.
1416 * \param[in] str_len sizeof(str).
1417 * \param[in] fd File descriptor of socket.
1418 * \return String length as returned by snprintf(), or negative on error.
1419 */
1420int osmo_sock_get_name_buf(char *str, size_t str_len, int fd)
1421{
Oliver Smith860651e2018-10-30 14:31:57 +01001422 char hostbuf_l[INET6_ADDRSTRLEN], hostbuf_r[INET6_ADDRSTRLEN];
1423 char portbuf_l[6], portbuf_r[6];
Neels Hofmeyr01457512018-12-12 01:48:54 +01001424 int rc;
Harald Welte48f55832017-01-26 00:03:10 +01001425
Oliver Smith7acd5d02018-10-25 11:16:36 +02001426 /* get local */
Harald Welteea9ea522019-05-10 09:28:24 +02001427 if ((rc = osmo_sock_get_ip_and_port(fd, hostbuf_l, sizeof(hostbuf_l), portbuf_l, sizeof(portbuf_l), true))) {
1428 osmo_strlcpy(str, "<error-in-getsockname>", str_len);
Neels Hofmeyr01457512018-12-12 01:48:54 +01001429 return rc;
Harald Welteea9ea522019-05-10 09:28:24 +02001430 }
Harald Welte48f55832017-01-26 00:03:10 +01001431
Oliver Smith7acd5d02018-10-25 11:16:36 +02001432 /* get remote */
Neels Hofmeyr01457512018-12-12 01:48:54 +01001433 if (osmo_sock_get_ip_and_port(fd, hostbuf_r, sizeof(hostbuf_r), portbuf_r, sizeof(portbuf_r), false) != 0)
1434 return snprintf(str, str_len, "r=NULL<->l=%s:%s", hostbuf_l, portbuf_l);
Harald Welte48f55832017-01-26 00:03:10 +01001435
Neels Hofmeyr01457512018-12-12 01:48:54 +01001436 return snprintf(str, str_len, "r=%s:%s<->l=%s:%s", hostbuf_r, portbuf_r, hostbuf_l, portbuf_l);
1437}
1438
1439/*! Get address/port information on socket in static string, like "r=1.2.3.4:5<->l=6.7.8.9:10".
1440 * This does not include braces like osmo_sock_get_name().
1441 * \param[in] fd File descriptor of socket.
1442 * \return Static string buffer containing the result.
1443 */
1444const char *osmo_sock_get_name2(int fd)
1445{
Harald Welte171ef822019-03-28 10:49:05 +01001446 static __thread char str[OSMO_SOCK_NAME_MAXLEN];
Neels Hofmeyr01457512018-12-12 01:48:54 +01001447 osmo_sock_get_name_buf(str, sizeof(str), fd);
1448 return str;
Harald Welte48f55832017-01-26 00:03:10 +01001449}
1450
Harald Welte179f3572019-03-18 18:38:47 +01001451/*! Get address/port information on socket in static string, like "r=1.2.3.4:5<->l=6.7.8.9:10".
1452 * This does not include braces like osmo_sock_get_name().
1453 * \param[in] fd File descriptor of socket.
1454 * \return Static string buffer containing the result.
1455 */
1456char *osmo_sock_get_name2_c(const void *ctx, int fd)
1457{
1458 char *str = talloc_size(ctx, OSMO_SOCK_NAME_MAXLEN);
1459 if (!str)
1460 return NULL;
Vadim Yanitskiy4f619c22019-04-12 21:48:07 +07001461 osmo_sock_get_name_buf(str, OSMO_SOCK_NAME_MAXLEN, fd);
Harald Welte179f3572019-03-18 18:38:47 +01001462 return str;
1463}
1464
Harald Weltee30d7e62017-07-13 16:02:50 +02001465static int sock_get_domain(int fd)
1466{
1467 int domain;
1468#ifdef SO_DOMAIN
1469 socklen_t dom_len = sizeof(domain);
1470 int rc;
1471
1472 rc = getsockopt(fd, SOL_SOCKET, SO_DOMAIN, &domain, &dom_len);
1473 if (rc < 0)
1474 return rc;
1475#else
1476 /* This of course sucks, but what shall we do on OSs like
1477 * FreeBSD that don't seem to expose a method by which one can
1478 * learn the address family of a socket? */
1479 domain = AF_INET;
1480#endif
1481 return domain;
1482}
1483
1484
1485/*! Activate or de-activate local loop-back of transmitted multicast packets
1486 * \param[in] fd file descriptor of related socket
1487 * \param[in] enable Enable (true) or disable (false) loop-back
1488 * \returns 0 on success; negative otherwise */
1489int osmo_sock_mcast_loop_set(int fd, bool enable)
1490{
1491 int domain, loop = 0;
1492
1493 if (enable)
1494 loop = 1;
1495
1496 domain = sock_get_domain(fd);
1497 if (domain < 0)
1498 return domain;
1499
1500 switch (domain) {
1501 case AF_INET:
1502 return setsockopt(fd, IPPROTO_IP, IP_MULTICAST_LOOP, &loop, sizeof(loop));
1503 case AF_INET6:
1504 return setsockopt(fd, IPPROTO_IPV6, IPV6_MULTICAST_LOOP, &loop, sizeof(loop));
1505 default:
1506 return -EINVAL;
1507 }
1508}
1509
1510/*! Set the TTL of outbound multicast packets
1511 * \param[in] fd file descriptor of related socket
1512 * \param[in] ttl TTL of to-be-sent multicast packets
1513 * \returns 0 on success; negative otherwise */
1514int osmo_sock_mcast_ttl_set(int fd, uint8_t ttl)
1515{
1516 int domain, ttli = ttl;
1517
1518 domain = sock_get_domain(fd);
1519 if (domain < 0)
1520 return domain;
1521
1522 switch (domain) {
1523 case AF_INET:
1524 return setsockopt(fd, IPPROTO_IP, IP_MULTICAST_TTL, &ttli, sizeof(ttli));
1525 case AF_INET6:
1526 return setsockopt(fd, IPPROTO_IPV6, IPV6_MULTICAST_HOPS, &ttli, sizeof(ttli));
1527 default:
1528 return -EINVAL;
1529 }
1530}
1531
Harald Welte44b99262020-03-07 14:59:05 +01001532/*! Set the network device to which we should bind the multicast socket
1533 * \param[in] fd file descriptor of related socket
1534 * \param[in] ifname name of network interface to user for multicast
1535 * \returns 0 on success; negative otherwise */
1536int osmo_sock_mcast_iface_set(int fd, const char *ifname)
1537{
1538 unsigned int ifindex;
1539 struct ip_mreqn mr;
1540
1541 /* first, resolve interface name to ifindex */
1542 ifindex = if_nametoindex(ifname);
1543 if (ifindex == 0)
1544 return -errno;
1545
1546 /* next, configure kernel to use that ifindex for this sockets multicast traffic */
1547 memset(&mr, 0, sizeof(mr));
1548 mr.imr_ifindex = ifindex;
1549 return setsockopt(fd, IPPROTO_IP, IP_MULTICAST_IF, &mr, sizeof(mr));
1550}
1551
1552
Harald Weltee30d7e62017-07-13 16:02:50 +02001553/*! Enable/disable receiving all multicast packets, even for non-subscribed groups
1554 * \param[in] fd file descriptor of related socket
1555 * \param[in] enable Enable or Disable receiving of all packets
1556 * \returns 0 on success; negative otherwise */
1557int osmo_sock_mcast_all_set(int fd, bool enable)
1558{
1559 int domain, all = 0;
1560
1561 if (enable)
1562 all = 1;
1563
1564 domain = sock_get_domain(fd);
1565 if (domain < 0)
1566 return domain;
1567
1568 switch (domain) {
1569 case AF_INET:
1570#ifdef IP_MULTICAST_ALL
1571 return setsockopt(fd, IPPROTO_IP, IP_MULTICAST_ALL, &all, sizeof(all));
1572#endif
1573 case AF_INET6:
1574 /* there seems no equivalent ?!? */
1575 default:
1576 return -EINVAL;
1577 }
1578}
1579
1580/* FreeBSD calls the socket option differently */
1581#if !defined(IPV6_ADD_MEMBERSHIP) && defined(IPV6_JOIN_GROUP)
1582#define IPV6_ADD_MEMBERSHIP IPV6_JOIN_GROUP
1583#endif
1584
1585/*! Subscribe to the given IP multicast group
1586 * \param[in] fd file descriptor of related scoket
1587 * \param[in] grp_addr ASCII representation of the multicast group address
1588 * \returns 0 on success; negative otherwise */
1589int osmo_sock_mcast_subscribe(int fd, const char *grp_addr)
1590{
1591 int rc, domain;
1592 struct ip_mreq mreq;
1593 struct ipv6_mreq mreq6;
1594 struct in6_addr i6a;
1595
1596 domain = sock_get_domain(fd);
1597 if (domain < 0)
1598 return domain;
1599
1600 switch (domain) {
1601 case AF_INET:
1602 memset(&mreq, 0, sizeof(mreq));
1603 mreq.imr_multiaddr.s_addr = inet_addr(grp_addr);
1604 mreq.imr_interface.s_addr = htonl(INADDR_ANY);
1605 return setsockopt(fd, IPPROTO_IP, IP_ADD_MEMBERSHIP, &mreq, sizeof(mreq));
1606#ifdef IPV6_ADD_MEMBERSHIP
1607 case AF_INET6:
1608 memset(&mreq6, 0, sizeof(mreq6));
1609 rc = inet_pton(AF_INET6, grp_addr, (void *)&i6a);
1610 if (rc < 0)
1611 return -EINVAL;
1612 mreq6.ipv6mr_multiaddr = i6a;
1613 return setsockopt(fd, IPPROTO_IPV6, IPV6_ADD_MEMBERSHIP, &mreq6, sizeof(mreq6));
1614#endif
1615 default:
1616 return -EINVAL;
1617 }
1618}
1619
Philipp Maier2d2490e2017-10-20 19:41:26 +02001620/*! Determine the matching local IP-address for a given remote IP-Address.
1621 * \param[out] local_ip caller provided memory for resulting local IP-address
1622 * \param[in] remote_ip remote IP-address
Philipp Maier2d2490e2017-10-20 19:41:26 +02001623 * \returns 0 on success; negative otherwise
1624 *
1625 * The function accepts IPv4 and IPv6 address strings. The caller must provide
1626 * at least INET6_ADDRSTRLEN bytes for local_ip if an IPv6 is expected as
1627 * as result. For IPv4 addresses the required amount is INET_ADDRSTRLEN. */
1628int osmo_sock_local_ip(char *local_ip, const char *remote_ip)
1629{
1630 int sfd;
1631 int rc;
1632 struct addrinfo addrinfo_hint;
1633 struct addrinfo *addrinfo = NULL;
Pau Espin Pedrol81e7a6c2020-08-28 20:44:26 +02001634 struct sockaddr_storage local_addr;
1635 struct sockaddr_in *sin;
1636 struct sockaddr_in6 *sin6;
Philipp Maier2d2490e2017-10-20 19:41:26 +02001637 socklen_t local_addr_len;
1638 uint16_t family;
1639
1640 /* Find out the address family (AF_INET or AF_INET6?) */
1641 memset(&addrinfo_hint, '\0', sizeof(addrinfo_hint));
Pau Espin Pedrol308ab792020-08-28 19:47:25 +02001642 addrinfo_hint.ai_family = AF_UNSPEC;
Philipp Maier2d2490e2017-10-20 19:41:26 +02001643 addrinfo_hint.ai_flags = AI_NUMERICHOST;
1644 rc = getaddrinfo(remote_ip, NULL, &addrinfo_hint, &addrinfo);
1645 if (rc)
1646 return -EINVAL;
1647 family = addrinfo->ai_family;
1648 freeaddrinfo(addrinfo);
1649
1650 /* Connect a dummy socket to trick the kernel into determining the
1651 * ip-address of the interface that would be used if we would send
1652 * out an actual packet */
1653 sfd = osmo_sock_init2(family, SOCK_DGRAM, IPPROTO_UDP, NULL, 0, remote_ip, 0, OSMO_SOCK_F_CONNECT);
1654 if (sfd < 0)
1655 return -EINVAL;
1656
1657 /* Request the IP address of the interface that the kernel has
1658 * actually choosen. */
1659 memset(&local_addr, 0, sizeof(local_addr));
1660 local_addr_len = sizeof(local_addr);
1661 rc = getsockname(sfd, (struct sockaddr *)&local_addr, &local_addr_len);
Philipp Maier8b7975b2018-01-22 15:38:07 +01001662 close(sfd);
Philipp Maier2d2490e2017-10-20 19:41:26 +02001663 if (rc < 0)
1664 return -EINVAL;
Pau Espin Pedrol81e7a6c2020-08-28 20:44:26 +02001665
1666 switch (local_addr.ss_family) {
1667 case AF_INET:
1668 sin = (struct sockaddr_in*)&local_addr;
1669 if (!inet_ntop(AF_INET, &sin->sin_addr, local_ip, INET_ADDRSTRLEN))
1670 return -EINVAL;
1671 break;
1672 case AF_INET6:
1673 sin6 = (struct sockaddr_in6*)&local_addr;
Pau Espin Pedrol7bda8542020-08-31 11:21:30 +02001674 if (!inet_ntop(AF_INET6, &sin6->sin6_addr, local_ip, INET6_ADDRSTRLEN))
Pau Espin Pedrol81e7a6c2020-08-28 20:44:26 +02001675 return -EINVAL;
1676 break;
1677 default:
Philipp Maier2d2490e2017-10-20 19:41:26 +02001678 return -EINVAL;
Pau Espin Pedrol81e7a6c2020-08-28 20:44:26 +02001679 }
Philipp Maier2d2490e2017-10-20 19:41:26 +02001680
1681 return 0;
1682}
1683
Alexander Couzens0f364212020-07-27 22:33:01 +02001684/*! Determine the matching local address for a given remote address.
1685 * \param[out] local_ip caller provided memory for resulting local address
1686 * \param[in] remote_ip remote address
1687 * \returns 0 on success; negative otherwise
1688 */
1689int osmo_sockaddr_local_ip(struct osmo_sockaddr *local_ip, const struct osmo_sockaddr *remote_ip)
1690{
1691 int sfd;
1692 int rc;
1693 socklen_t local_ip_len;
1694
1695 sfd = osmo_sock_init_osa(SOCK_DGRAM, IPPROTO_UDP, NULL, remote_ip, OSMO_SOCK_F_CONNECT);
1696 if (sfd < 0)
1697 return -EINVAL;
1698
1699 memset(local_ip, 0, sizeof(*local_ip));
1700 local_ip_len = sizeof(*local_ip);
1701 rc = getsockname(sfd, (struct sockaddr *)local_ip, &local_ip_len);
1702 close(sfd);
1703
1704 return rc;
1705}
1706
Alexander Couzense4181ea2020-07-20 00:03:16 +02001707/*! Compare two osmo_sockaddr.
1708 * \param[in] a
1709 * \param[in] b
1710 * \return 0 if a and b are equal. Otherwise it follows memcmp()
1711 */
Vadim Yanitskiydef5a402020-10-09 21:40:47 +07001712int osmo_sockaddr_cmp(const struct osmo_sockaddr *a,
1713 const struct osmo_sockaddr *b)
Alexander Couzense4181ea2020-07-20 00:03:16 +02001714{
1715 if (a == b)
1716 return 0;
1717 if (!a)
1718 return 1;
1719 if (!b)
1720 return -1;
1721
1722 if (a->u.sa.sa_family != b->u.sa.sa_family) {
1723 return OSMO_CMP(a->u.sa.sa_family, b->u.sa.sa_family);
1724 }
1725
1726 switch (a->u.sa.sa_family) {
1727 case AF_INET:
1728 return memcmp(&a->u.sin, &b->u.sin, sizeof(struct sockaddr_in));
1729 case AF_INET6:
1730 return memcmp(&a->u.sin6, &b->u.sin6, sizeof(struct sockaddr_in6));
1731 default:
1732 /* fallback to memcmp for remaining AF over the full osmo_sockaddr length */
1733 return memcmp(a, b, sizeof(struct osmo_sockaddr));
1734 }
1735}
1736
Alexander Couzens80788fa2020-10-12 01:11:20 +02001737/*! string-format a given osmo_sockaddr address
1738 * \param[in] sockaddr the osmo_sockaddr to print
1739 * \return pointer to the string on success; NULL on error
1740 */
1741const char *osmo_sockaddr_to_str(const struct osmo_sockaddr *sockaddr)
1742{
1743 /* INET6_ADDRSTRLEN contains already a null termination,
1744 * adding '[' ']' ':' '16 bit port' */
1745 static __thread char buf[INET6_ADDRSTRLEN + 8];
1746 return osmo_sockaddr_to_str_buf(buf, sizeof(buf), sockaddr);
1747}
1748
1749/*! string-format a given osmo_sockaddr address into a user-supplied buffer
1750 * \param[in] buf user-supplied output buffer
1751 * \param[in] buf_len size of the user-supplied output buffer in bytes
1752 * \param[in] sockaddr the osmo_sockaddr to print
1753 * \return pointer to the string on success; NULL on error
1754 */
1755char *osmo_sockaddr_to_str_buf(char *buf, size_t buf_len,
1756 const struct osmo_sockaddr *sockaddr)
1757{
1758 uint16_t port = 0;
1759 size_t written;
1760 if (buf_len < 5)
1761 return NULL;
1762
1763 if (!sockaddr)
1764 return NULL;
1765
1766 switch (sockaddr->u.sa.sa_family) {
1767 case AF_INET:
1768 written = osmo_sockaddr_to_str_and_uint(buf, buf_len, &port, &sockaddr->u.sa);
1769 if (written + 1 >= buf_len && port)
1770 return NULL;
1771 if (port)
1772 snprintf(buf + written, buf_len - written, ":%u", port);
1773 break;
1774 case AF_INET6:
1775 buf[0] = '[';
1776 written = osmo_sockaddr_to_str_and_uint(buf + 1, buf_len - 1, &port, &sockaddr->u.sa);
1777 if (written + 2 >= buf_len)
1778 return NULL;
1779
1780 if (written + 3 >= buf_len && port)
1781 return NULL;
1782
1783 if (port)
1784 snprintf(buf + 1 + written, buf_len - written - 1, "]:%u", port);
1785 else {
1786 buf[written + 1] = ']';
1787 buf[written + 2] = 0;
1788 }
1789 break;
1790 default:
1791 snprintf(buf, buf_len, "unsupported family %d", sockaddr->u.sa.sa_family);
1792 return buf;
1793 }
1794
1795 return buf;
1796}
1797
Harald Weltece53e032021-04-27 21:44:34 +02001798/*! Set the DSCP (differentiated services code point) of a socket.
1799 * \param[in] dscp DSCP value in range 0..63
1800 * \returns 0 on success; negative on error. */
1801int osmo_sock_set_dscp(int fd, uint8_t dscp)
1802{
Harald Welte903e6702021-04-28 13:27:12 +02001803 struct sockaddr_storage local_addr;
1804 socklen_t local_addr_len = sizeof(local_addr);
Harald Weltece53e032021-04-27 21:44:34 +02001805 uint8_t tos;
1806 socklen_t tos_len = sizeof(tos);
Harald Welte903e6702021-04-28 13:27:12 +02001807 int tclass;
1808 socklen_t tclass_len = sizeof(tclass);
Harald Weltece53e032021-04-27 21:44:34 +02001809 int rc;
1810
1811 /* DSCP is a 6-bit value stored in the upper 6 bits of the 8-bit TOS */
1812 if (dscp > 63)
1813 return -EINVAL;
1814
Harald Welte903e6702021-04-28 13:27:12 +02001815 rc = getsockname(fd, (struct sockaddr *)&local_addr, &local_addr_len);
Harald Weltece53e032021-04-27 21:44:34 +02001816 if (rc < 0)
1817 return rc;
1818
Harald Welte903e6702021-04-28 13:27:12 +02001819 switch (local_addr.ss_family) {
1820 case AF_INET:
1821 /* read the original value */
1822 rc = getsockopt(fd, IPPROTO_IP, IP_TOS, &tos, &tos_len);
1823 if (rc < 0)
1824 return rc;
1825 /* mask-in the DSCP into the upper 6 bits */
1826 tos &= 0x03;
1827 tos |= dscp << 2;
1828 /* and write it back to the kernel */
1829 rc = setsockopt(fd, IPPROTO_IP, IP_TOS, &tos, sizeof(tos));
1830 break;
1831 case AF_INET6:
1832 /* read the original value */
1833 rc = getsockopt(fd, IPPROTO_IPV6, IPV6_TCLASS, &tclass, &tclass_len);
1834 if (rc < 0)
1835 return rc;
1836 /* mask-in the DSCP into the upper 6 bits */
1837 tclass &= 0x03;
1838 tclass |= dscp << 2;
1839 /* and write it back to the kernel */
1840 rc = setsockopt(fd, IPPROTO_IPV6, IPV6_TCLASS, &tclass, sizeof(tclass));
1841 break;
1842 case AF_UNSPEC:
1843 default:
1844 LOGP(DLGLOBAL, LOGL_ERROR, "No DSCP support for socket family %u\n",
1845 local_addr.ss_family);
1846 rc = -1;
1847 break;
1848 }
Harald Weltece53e032021-04-27 21:44:34 +02001849
Harald Welte903e6702021-04-28 13:27:12 +02001850 return rc;
Harald Weltece53e032021-04-27 21:44:34 +02001851}
1852
Harald Welteecc0bd82021-04-27 22:24:08 +02001853/*! Set the priority value of a socket.
1854 * \param[in] prio priority value. Values outside 0..6 require CAP_NET_ADMIN.
1855 * \returns 0 on success; negative on error. */
1856int osmo_sock_set_priority(int fd, int prio)
1857{
1858 /* and write it back to the kernel */
1859 return setsockopt(fd, SOL_SOCKET, SO_PRIORITY, &prio, sizeof(prio));
1860}
Alexander Couzens80788fa2020-10-12 01:11:20 +02001861
Harald Weltee4764422011-05-22 12:25:57 +02001862#endif /* HAVE_SYS_SOCKET_H */
Harald Welteba6988b2011-08-17 12:46:48 +02001863
Sylvain Munautdca7d2c2012-04-18 21:53:23 +02001864/*! @} */