]> git.proxmox.com Git - mirror_ovs.git/blob - lib/socket-util.c
socket-util: Rate limit logs for bind attempts.
[mirror_ovs.git] / lib / socket-util.c
1 /*
2 * Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 Nicira, Inc.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17 #include <config.h>
18 #include "socket-util.h"
19 #include <sys/types.h>
20 #include <netinet/in.h>
21 #include <arpa/inet.h>
22 #include <ctype.h>
23 #include <errno.h>
24 #include <fcntl.h>
25 #include <net/if.h>
26 #include <netdb.h>
27 #include <netinet/tcp.h>
28 #include <poll.h>
29 #include <stddef.h>
30 #include <stdio.h>
31 #include <stdlib.h>
32 #include <string.h>
33 #include <sys/socket.h>
34 #include <sys/stat.h>
35 #include <sys/uio.h>
36 #include <sys/un.h>
37 #include <unistd.h>
38 #include "openvswitch/dynamic-string.h"
39 #include "ovs-thread.h"
40 #include "packets.h"
41 #include "openvswitch/poll-loop.h"
42 #include "util.h"
43 #include "openvswitch/vlog.h"
44 #ifdef __linux__
45 #include <linux/if_packet.h>
46 #endif
47 #ifdef HAVE_NETLINK
48 #include "netlink-protocol.h"
49 #include "netlink-socket.h"
50 #endif
51 #include "dns-resolve.h"
52
53 VLOG_DEFINE_THIS_MODULE(socket_util);
54
55 static int getsockopt_int(int fd, int level, int option, const char *optname,
56 int *valuep);
57 static struct sockaddr_in *sin_cast(const struct sockaddr *);
58 static struct sockaddr_in6 *sin6_cast(const struct sockaddr *);
59 static const struct sockaddr *sa_cast(const struct sockaddr_storage *);
60 static bool parse_sockaddr_components(struct sockaddr_storage *ss,
61 char *host_s,
62 const char *port_s,
63 uint16_t default_port,
64 const char *s,
65 bool resolve_host);
66
67 /* Sets 'fd' to non-blocking mode. Returns 0 if successful, otherwise a
68 * positive errno value. */
69 int
70 set_nonblocking(int fd)
71 {
72 #ifndef _WIN32
73 int flags = fcntl(fd, F_GETFL, 0);
74 if (flags != -1) {
75 if (fcntl(fd, F_SETFL, flags | O_NONBLOCK) != -1) {
76 return 0;
77 } else {
78 VLOG_ERR("fcntl(F_SETFL) failed: %s", ovs_strerror(errno));
79 return errno;
80 }
81 } else {
82 VLOG_ERR("fcntl(F_GETFL) failed: %s", ovs_strerror(errno));
83 return errno;
84 }
85 #else
86 unsigned long arg = 1;
87 if (ioctlsocket(fd, FIONBIO, &arg)) {
88 int error = sock_errno();
89 VLOG_ERR("set_nonblocking failed: %s", sock_strerror(error));
90 return error;
91 }
92 return 0;
93 #endif
94 }
95
96 void
97 xset_nonblocking(int fd)
98 {
99 if (set_nonblocking(fd)) {
100 exit(EXIT_FAILURE);
101 }
102 }
103
104 void
105 setsockopt_tcp_nodelay(int fd)
106 {
107 int on = 1;
108 int retval;
109
110 retval = setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &on, sizeof on);
111 if (retval) {
112 retval = sock_errno();
113 VLOG_ERR("setsockopt(TCP_NODELAY): %s", sock_strerror(retval));
114 }
115 }
116
117 /* Sets the DSCP value of socket 'fd' to 'dscp', which must be 63 or less.
118 * 'family' must indicate the socket's address family (AF_INET or AF_INET6, to
119 * do anything useful). */
120 int
121 set_dscp(int fd, int family, uint8_t dscp)
122 {
123 int retval;
124 int val;
125
126 #ifdef _WIN32
127 /* XXX: Consider using QoS2 APIs for Windows to set dscp. */
128 return 0;
129 #endif
130
131 if (dscp > 63) {
132 return EINVAL;
133 }
134 val = dscp << 2;
135
136 switch (family) {
137 case AF_INET:
138 retval = setsockopt(fd, IPPROTO_IP, IP_TOS, &val, sizeof val);
139 break;
140
141 case AF_INET6:
142 retval = setsockopt(fd, IPPROTO_IPV6, IPV6_TCLASS, &val, sizeof val);
143 break;
144
145 default:
146 return ENOPROTOOPT;
147 }
148
149 return retval ? sock_errno() : 0;
150 }
151
152 /* Checks whether 'host_name' is an IPv4 or IPv6 address. It is assumed
153 * that 'host_name' is valid. Returns false if it is IPv4 address, true if
154 * it is IPv6 address. */
155 bool
156 addr_is_ipv6(const char *host_name)
157 {
158 return strchr(host_name, ':') != NULL;
159 }
160
161 /* Translates 'host_name', which must be a string representation of an IP
162 * address, into a numeric IP address in '*addr'. Returns 0 if successful,
163 * otherwise a positive errno value. */
164 int
165 lookup_ip(const char *host_name, struct in_addr *addr)
166 {
167 if (!ip_parse(host_name, &addr->s_addr)) {
168 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
169 VLOG_ERR_RL(&rl, "\"%s\" is not a valid IP address", host_name);
170 return ENOENT;
171 }
172 return 0;
173 }
174
175 /* Translates 'host_name', which must be a string representation of an IPv6
176 * address, into a numeric IPv6 address in '*addr'. Returns 0 if successful,
177 * otherwise a positive errno value. */
178 int
179 lookup_ipv6(const char *host_name, struct in6_addr *addr)
180 {
181 if (!ipv6_parse(host_name, addr)) {
182 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
183 VLOG_ERR_RL(&rl, "\"%s\" is not a valid IPv6 address", host_name);
184 return ENOENT;
185 }
186 return 0;
187 }
188
189 /* Translates 'host_name', which must be a host name or a string representation
190 * of an IP address, into a numeric IP address in '*addr'. Returns 0 if
191 * successful, otherwise a positive errno value.
192 *
193 * Most Open vSwitch code should not use this because it causes deadlocks:
194 * getaddrinfo() sends out a DNS request but that starts a new flow for which
195 * OVS must set up a flow, but it can't because it's waiting for a DNS reply.
196 * The synchronous lookup also delays other activity. (Of course we can solve
197 * this but it doesn't seem worthwhile quite yet.) */
198 int
199 lookup_hostname(const char *host_name, struct in_addr *addr)
200 {
201 struct addrinfo *result;
202 struct addrinfo hints;
203
204 if (ip_parse(host_name, &addr->s_addr)) {
205 return 0;
206 }
207
208 memset(&hints, 0, sizeof hints);
209 hints.ai_family = AF_INET;
210
211 switch (getaddrinfo(host_name, NULL, &hints, &result)) {
212 case 0:
213 *addr = ALIGNED_CAST(struct sockaddr_in *,
214 result->ai_addr)->sin_addr;
215 freeaddrinfo(result);
216 return 0;
217
218 #ifdef EAI_ADDRFAMILY
219 case EAI_ADDRFAMILY:
220 #endif
221 case EAI_NONAME:
222 case EAI_SERVICE:
223 return ENOENT;
224
225 case EAI_AGAIN:
226 return EAGAIN;
227
228 case EAI_BADFLAGS:
229 case EAI_FAMILY:
230 case EAI_SOCKTYPE:
231 return EINVAL;
232
233 case EAI_FAIL:
234 return EIO;
235
236 case EAI_MEMORY:
237 return ENOMEM;
238
239 #if defined (EAI_NODATA) && EAI_NODATA != EAI_NONAME
240 case EAI_NODATA:
241 return ENXIO;
242 #endif
243
244 #ifdef EAI_SYSTEM
245 case EAI_SYSTEM:
246 return sock_errno();
247 #endif
248
249 default:
250 return EPROTO;
251 }
252 }
253
254 int
255 check_connection_completion(int fd)
256 {
257 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 10);
258 struct pollfd pfd;
259 int retval;
260
261 pfd.fd = fd;
262 pfd.events = POLLOUT;
263
264 #ifndef _WIN32
265 do {
266 retval = poll(&pfd, 1, 0);
267 } while (retval < 0 && errno == EINTR);
268 #else
269 fd_set wrset, exset;
270 FD_ZERO(&wrset);
271 FD_ZERO(&exset);
272 FD_SET(fd, &exset);
273 FD_SET(fd, &wrset);
274 pfd.revents = 0;
275 struct timeval tv = { 0, 0 };
276 /* WSAPoll is broken on Windows, instead do a select */
277 retval = select(0, NULL, &wrset, &exset, &tv);
278 if (retval == 1) {
279 if (FD_ISSET(fd, &wrset)) {
280 pfd.revents |= pfd.events;
281 }
282 if (FD_ISSET(fd, &exset)) {
283 pfd.revents |= POLLERR;
284 }
285 }
286 #endif
287 if (retval == 1) {
288 if (pfd.revents & POLLERR) {
289 ssize_t n = send(fd, "", 1, 0);
290 if (n < 0) {
291 return sock_errno();
292 } else {
293 VLOG_ERR_RL(&rl, "poll return POLLERR but send succeeded");
294 return EPROTO;
295 }
296 }
297 return 0;
298 } else if (retval < 0) {
299 VLOG_ERR_RL(&rl, "poll: %s", sock_strerror(sock_errno()));
300 return errno;
301 } else {
302 return EAGAIN;
303 }
304 }
305
306 /* Returns the size of socket 'sock''s receive buffer (SO_RCVBUF), or a
307 * negative errno value if an error occurs. */
308 int
309 get_socket_rcvbuf(int sock)
310 {
311 int rcvbuf;
312 int error;
313
314 error = getsockopt_int(sock, SOL_SOCKET, SO_RCVBUF, "SO_RCVBUF", &rcvbuf);
315 return error ? -error : rcvbuf;
316 }
317
318 /* Reads and discards up to 'n' datagrams from 'fd', stopping as soon as no
319 * more data can be immediately read. ('fd' should therefore be in
320 * non-blocking mode.)*/
321 void
322 drain_fd(int fd, size_t n_packets)
323 {
324 for (; n_packets > 0; n_packets--) {
325 /* 'buffer' only needs to be 1 byte long in most circumstances. This
326 * size is defensive against the possibility that we someday want to
327 * use a Linux tap device without TUN_NO_PI, in which case a buffer
328 * smaller than sizeof(struct tun_pi) will give EINVAL on read. */
329 char buffer[128];
330 if (read(fd, buffer, sizeof buffer) <= 0) {
331 break;
332 }
333 }
334 }
335
336 ovs_be32
337 guess_netmask(ovs_be32 ip_)
338 {
339 uint32_t ip = ntohl(ip_);
340 return ((ip >> 31) == 0 ? htonl(0xff000000) /* Class A */
341 : (ip >> 30) == 2 ? htonl(0xffff0000) /* Class B */
342 : (ip >> 29) == 6 ? htonl(0xffffff00) /* Class C */
343 : htonl(0)); /* ??? */
344 }
345
346 static char *
347 unbracket(char *s)
348 {
349 if (*s == '[') {
350 s++;
351
352 char *end = strchr(s, '\0');
353 if (end[-1] == ']') {
354 end[-1] = '\0';
355 }
356 }
357 return s;
358 }
359
360 /* 'host_index' is 0 if the host precedes the port within 's', 1 otherwise. */
361 static void
362 inet_parse_tokens__(char *s, int host_index, char **hostp, char **portp)
363 {
364 char *colon = NULL;
365 bool in_brackets = false;
366 int n_colons = 0;
367 for (char *p = s; *p; p++) {
368 if (*p == '[') {
369 in_brackets = true;
370 } else if (*p == ']') {
371 in_brackets = false;
372 } else if (*p == ':' && !in_brackets) {
373 n_colons++;
374 colon = p;
375 }
376 }
377
378 *hostp = *portp = NULL;
379 if (n_colons > 1) {
380 *hostp = s;
381 } else {
382 char **tokens[2];
383 tokens[host_index] = hostp;
384 tokens[!host_index] = portp;
385
386 if (colon) {
387 *colon = '\0';
388 *tokens[1] = unbracket(colon + 1);
389 }
390 *tokens[0] = unbracket(s);
391 }
392 }
393
394 /* Parses 's', a string in the form "<host>[:<port>]", into its (required) host
395 * and (optional) port components, and stores pointers to them in '*hostp' and
396 * '*portp' respectively. Always sets '*hostp' nonnull, although possibly to
397 * an empty string. Can set '*portp' to the null string.
398 *
399 * Supports both IPv4 and IPv6. IPv6 addresses may be quoted with square
400 * brackets. Resolves ambiguous cases that might represent an IPv6 address or
401 * an IPv6 address and a port as representing just a host, e.g. "::1:2:3:4:80"
402 * is a host but "[::1:2:3:4]:80" is a host and a port.
403 *
404 * Modifies 's' and points '*hostp' and '*portp' (if nonnull) into it.
405 */
406 void
407 inet_parse_host_port_tokens(char *s, char **hostp, char **portp)
408 {
409 inet_parse_tokens__(s, 0, hostp, portp);
410 }
411
412 /* Parses 's', a string in the form "<port>[:<host>]", into its port and host
413 * components, and stores pointers to them in '*portp' and '*hostp'
414 * respectively. Either '*portp' and '*hostp' (but not both) can end up null.
415 *
416 * Supports both IPv4 and IPv6. IPv6 addresses may be quoted with square
417 * brackets. Resolves ambiguous cases that might represent an IPv6 address or
418 * an IPv6 address and a port as representing just a host, e.g. "::1:2:3:4:80"
419 * is a host but "[::1:2:3:4]:80" is a host and a port.
420 *
421 * Modifies 's' and points '*hostp' and '*portp' (if nonnull) into it.
422 */
423 void
424 inet_parse_port_host_tokens(char *s, char **portp, char **hostp)
425 {
426 inet_parse_tokens__(s, 1, hostp, portp);
427 }
428
429 static bool
430 parse_sockaddr_components_dns(struct sockaddr_storage *ss OVS_UNUSED,
431 char *host_s,
432 const char *port_s OVS_UNUSED,
433 uint16_t default_port OVS_UNUSED,
434 const char *s OVS_UNUSED)
435 {
436 char *tmp_host_s;
437
438 dns_resolve(host_s, &tmp_host_s);
439 if (tmp_host_s != NULL) {
440 parse_sockaddr_components(ss, tmp_host_s, port_s,
441 default_port, s, false);
442 free(tmp_host_s);
443 return true;
444 }
445 return false;
446 }
447
448 static bool
449 parse_sockaddr_components(struct sockaddr_storage *ss,
450 char *host_s,
451 const char *port_s, uint16_t default_port,
452 const char *s,
453 bool resolve_host)
454 {
455 struct sockaddr_in *sin = sin_cast(sa_cast(ss));
456 int port;
457
458 if (port_s && port_s[0]) {
459 if (!str_to_int(port_s, 10, &port) || port < 0 || port > 65535) {
460 VLOG_ERR("%s: bad port number \"%s\"", s, port_s);
461 goto exit;
462 }
463 } else {
464 port = default_port;
465 }
466
467 memset(ss, 0, sizeof *ss);
468 if (host_s && strchr(host_s, ':')) {
469 struct sockaddr_in6 *sin6 = sin6_cast(sa_cast(ss));
470 char *addr = strsep(&host_s, "%");
471
472 sin6->sin6_family = AF_INET6;
473 sin6->sin6_port = htons(port);
474 if (!addr || !*addr || !ipv6_parse(addr, &sin6->sin6_addr)) {
475 goto exit;
476 }
477
478 #ifdef HAVE_STRUCT_SOCKADDR_IN6_SIN6_SCOPE_ID
479 char *scope = strsep(&host_s, "%");
480 if (scope && *scope) {
481 if (!scope[strspn(scope, "0123456789")]) {
482 sin6->sin6_scope_id = atoi(scope);
483 } else {
484 sin6->sin6_scope_id = if_nametoindex(scope);
485 if (!sin6->sin6_scope_id) {
486 VLOG_ERR("%s: bad IPv6 scope \"%s\" (%s)",
487 s, scope, ovs_strerror(errno));
488 goto exit;
489 }
490 }
491 }
492 #endif
493 } else {
494 sin->sin_family = AF_INET;
495 sin->sin_port = htons(port);
496 if (host_s && !ip_parse(host_s, &sin->sin_addr.s_addr)) {
497 goto resolve;
498 }
499 }
500
501 return true;
502
503 resolve:
504 if (resolve_host && parse_sockaddr_components_dns(ss, host_s, port_s,
505 default_port, s)) {
506 return true;
507 } else if (!resolve_host) {
508 VLOG_ERR("%s: bad IP address \"%s\"", s, host_s);
509 }
510 exit:
511 memset(ss, 0, sizeof *ss);
512 return false;
513 }
514
515 /* Parses 'target', which should be a string in the format "<host>[:<port>]".
516 * <host>, which is required, may be an IPv4 address or an IPv6 address
517 * enclosed in square brackets. If 'default_port' is nonnegative then <port>
518 * is optional and defaults to 'default_port' (use 0 to make the kernel choose
519 * an available port, although this isn't usually appropriate for active
520 * connections). If 'default_port' is negative, then <port> is required.
521 *
522 * On success, returns true and stores the parsed remote address into '*ss'.
523 * On failure, logs an error, stores zeros into '*ss', and returns false. */
524 bool
525 inet_parse_active(const char *target_, int default_port,
526 struct sockaddr_storage *ss)
527 {
528 char *target = xstrdup(target_);
529 char *port, *host;
530 bool ok;
531
532 inet_parse_host_port_tokens(target, &host, &port);
533 if (!host) {
534 VLOG_ERR("%s: host must be specified", target_);
535 ok = false;
536 } else if (!port && default_port < 0) {
537 VLOG_ERR("%s: port must be specified", target_);
538 ok = false;
539 } else {
540 ok = parse_sockaddr_components(ss, host, port, default_port,
541 target_, true);
542 }
543 if (!ok) {
544 memset(ss, 0, sizeof *ss);
545 }
546 free(target);
547 return ok;
548 }
549
550
551 /* Opens a non-blocking IPv4 or IPv6 socket of the specified 'style' and
552 * connects to 'target', which should be a string in the format
553 * "<host>[:<port>]". <host>, which is required, may be an IPv4 address or an
554 * IPv6 address enclosed in square brackets. If 'default_port' is nonnegative
555 * then <port> is optional and defaults to 'default_port'.
556 *
557 * 'style' should be SOCK_STREAM (for TCP) or SOCK_DGRAM (for UDP).
558 *
559 * On success, returns 0 (indicating connection complete) or EAGAIN (indicating
560 * connection in progress), in which case the new file descriptor is stored
561 * into '*fdp'. On failure, returns a positive errno value other than EAGAIN
562 * and stores -1 into '*fdp'.
563 *
564 * If 'ss' is non-null, then on success stores the target address into '*ss'.
565 *
566 * 'dscp' becomes the DSCP bits in the IP headers for the new connection. It
567 * should be in the range [0, 63] and will automatically be shifted to the
568 * appropriately place in the IP tos field. */
569 int
570 inet_open_active(int style, const char *target, int default_port,
571 struct sockaddr_storage *ssp, int *fdp, uint8_t dscp)
572 {
573 struct sockaddr_storage ss;
574 int fd = -1;
575 int error;
576
577 /* Parse. */
578 if (!inet_parse_active(target, default_port, &ss)) {
579 error = EAFNOSUPPORT;
580 goto exit;
581 }
582
583 /* Create non-blocking socket. */
584 fd = socket(ss.ss_family, style, 0);
585 if (fd < 0) {
586 error = sock_errno();
587 VLOG_ERR("%s: socket: %s", target, sock_strerror(error));
588 goto exit;
589 }
590 error = set_nonblocking(fd);
591 if (error) {
592 goto exit;
593 }
594
595 /* The dscp bits must be configured before connect() to ensure that the
596 * TOS field is set during the connection establishment. If set after
597 * connect(), the handshake SYN frames will be sent with a TOS of 0. */
598 error = set_dscp(fd, ss.ss_family, dscp);
599 if (error) {
600 VLOG_ERR("%s: set_dscp: %s", target, sock_strerror(error));
601 goto exit;
602 }
603
604 /* Connect. */
605 error = connect(fd, (struct sockaddr *) &ss, ss_length(&ss)) == 0
606 ? 0
607 : sock_errno();
608 if (error == EINPROGRESS
609 #ifdef _WIN32
610 || error == WSAEALREADY || error == WSAEWOULDBLOCK
611 #endif
612 ) {
613 error = EAGAIN;
614 }
615
616 exit:
617 if (error && error != EAGAIN) {
618 if (ssp) {
619 memset(ssp, 0, sizeof *ssp);
620 }
621 if (fd >= 0) {
622 closesocket(fd);
623 fd = -1;
624 }
625 } else {
626 if (ssp) {
627 *ssp = ss;
628 }
629 }
630 *fdp = fd;
631 return error;
632 }
633
634 /* Parses 'target', which should be a string in the format "[<port>][:<host>]":
635 *
636 * - If 'default_port' is -1, then <port> is required. Otherwise, if
637 * <port> is omitted, then 'default_port' is used instead.
638 *
639 * - If <port> (or 'default_port', if used) is 0, then no port is bound
640 * and the TCP/IP stack will select a port.
641 *
642 * - <host> is optional. If supplied, it may be an IPv4 address or an
643 * IPv6 address enclosed in square brackets. If omitted, the IP address
644 * is wildcarded.
645 *
646 * If successful, stores the address into '*ss' and returns true; otherwise
647 * zeros '*ss' and returns false. */
648 bool
649 inet_parse_passive(const char *target_, int default_port,
650 struct sockaddr_storage *ss)
651 {
652 char *target = xstrdup(target_);
653 char *port, *host;
654 bool ok;
655
656 inet_parse_port_host_tokens(target, &port, &host);
657 if (!port && default_port < 0) {
658 VLOG_ERR("%s: port must be specified", target_);
659 ok = false;
660 } else {
661 ok = parse_sockaddr_components(ss, host, port, default_port,
662 target_, true);
663 }
664 if (!ok) {
665 memset(ss, 0, sizeof *ss);
666 }
667 free(target);
668 return ok;
669 }
670
671
672 /* Opens a non-blocking IPv4 or IPv6 socket of the specified 'style', binds to
673 * 'target', and listens for incoming connections. Parses 'target' in the same
674 * way was inet_parse_passive().
675 *
676 * 'style' should be SOCK_STREAM (for TCP) or SOCK_DGRAM (for UDP).
677 *
678 * For TCP, the socket will have SO_REUSEADDR turned on.
679 *
680 * On success, returns a non-negative file descriptor. On failure, returns a
681 * negative errno value.
682 *
683 * If 'ss' is non-null, then on success stores the bound address into '*ss'.
684 *
685 * 'dscp' becomes the DSCP bits in the IP headers for the new connection. It
686 * should be in the range [0, 63] and will automatically be shifted to the
687 * appropriately place in the IP tos field.
688 *
689 * If 'kernel_print_port' is true and the port is dynamically assigned by
690 * the kernel, print the chosen port. */
691 int
692 inet_open_passive(int style, const char *target, int default_port,
693 struct sockaddr_storage *ssp, uint8_t dscp,
694 bool kernel_print_port)
695 {
696 bool kernel_chooses_port;
697 struct sockaddr_storage ss;
698 int fd = 0, error;
699 unsigned int yes = 1;
700
701 if (!inet_parse_passive(target, default_port, &ss)) {
702 return -EAFNOSUPPORT;
703 }
704 kernel_chooses_port = ss_get_port(&ss) == 0;
705
706 /* Create non-blocking socket, set SO_REUSEADDR. */
707 fd = socket(ss.ss_family, style, 0);
708 if (fd < 0) {
709 error = sock_errno();
710 VLOG_ERR("%s: socket: %s", target, sock_strerror(error));
711 return -error;
712 }
713 error = set_nonblocking(fd);
714 if (error) {
715 goto error;
716 }
717 if (style == SOCK_STREAM
718 && setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &yes, sizeof yes) < 0) {
719 error = sock_errno();
720 VLOG_ERR("%s: setsockopt(SO_REUSEADDR): %s",
721 target, sock_strerror(error));
722 goto error;
723 }
724
725 /* Bind. */
726 if (bind(fd, (struct sockaddr *) &ss, ss_length(&ss)) < 0) {
727 error = sock_errno();
728 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
729 VLOG_ERR_RL(&rl, "%s: bind: %s", target, sock_strerror(error));
730 goto error;
731 }
732
733 /* The dscp bits must be configured before connect() to ensure that the TOS
734 * field is set during the connection establishment. If set after
735 * connect(), the handshake SYN frames will be sent with a TOS of 0. */
736 error = set_dscp(fd, ss.ss_family, dscp);
737 if (error) {
738 VLOG_ERR("%s: set_dscp: %s", target, sock_strerror(error));
739 goto error;
740 }
741
742 /* Listen. */
743 if (style == SOCK_STREAM && listen(fd, 10) < 0) {
744 error = sock_errno();
745 VLOG_ERR("%s: listen: %s", target, sock_strerror(error));
746 goto error;
747 }
748
749 if (ssp || kernel_chooses_port) {
750 socklen_t ss_len = sizeof ss;
751 if (getsockname(fd, (struct sockaddr *) &ss, &ss_len) < 0) {
752 error = sock_errno();
753 VLOG_ERR("%s: getsockname: %s", target, sock_strerror(error));
754 goto error;
755 }
756 if (kernel_chooses_port && kernel_print_port) {
757 VLOG_INFO("%s: listening on port %"PRIu16,
758 target, ss_get_port(&ss));
759 }
760 if (ssp) {
761 *ssp = ss;
762 }
763 }
764
765 return fd;
766
767 error:
768 if (ssp) {
769 memset(ssp, 0, sizeof *ssp);
770 }
771 closesocket(fd);
772 return -error;
773 }
774
775 /* Parses 'target', which may be an IPv4 address or an IPv6 address
776 * enclosed in square brackets.
777 *
778 * On success, returns true and stores the parsed remote address into '*ss'.
779 * On failure, logs an error, stores zeros into '*ss', and returns false. */
780 bool
781 inet_parse_address(const char *target_, struct sockaddr_storage *ss)
782 {
783 char *target = xstrdup(target_);
784 char *host = unbracket(target);
785 bool ok = parse_sockaddr_components(ss, host, NULL, 0, target_, false);
786 if (!ok) {
787 memset(ss, 0, sizeof *ss);
788 }
789 free(target);
790 return ok;
791 }
792
793 int
794 read_fully(int fd, void *p_, size_t size, size_t *bytes_read)
795 {
796 uint8_t *p = p_;
797
798 *bytes_read = 0;
799 while (size > 0) {
800 ssize_t retval = read(fd, p, size);
801 if (retval > 0) {
802 *bytes_read += retval;
803 size -= retval;
804 p += retval;
805 } else if (retval == 0) {
806 return EOF;
807 } else if (errno != EINTR) {
808 return errno;
809 }
810 }
811 return 0;
812 }
813
814 int
815 write_fully(int fd, const void *p_, size_t size, size_t *bytes_written)
816 {
817 const uint8_t *p = p_;
818
819 *bytes_written = 0;
820 while (size > 0) {
821 ssize_t retval = write(fd, p, size);
822 if (retval > 0) {
823 *bytes_written += retval;
824 size -= retval;
825 p += retval;
826 } else if (retval == 0) {
827 VLOG_WARN("write returned 0");
828 return EPROTO;
829 } else if (errno != EINTR) {
830 return errno;
831 }
832 }
833 return 0;
834 }
835
836 /* Given file name 'file_name', fsyncs the directory in which it is contained.
837 * Returns 0 if successful, otherwise a positive errno value. */
838 int
839 fsync_parent_dir(const char *file_name)
840 {
841 int error = 0;
842 #ifndef _WIN32
843 char *dir;
844 int fd;
845
846 dir = dir_name(file_name);
847 fd = open(dir, O_RDONLY);
848 if (fd >= 0) {
849 if (fsync(fd)) {
850 if (errno == EINVAL || errno == EROFS) {
851 /* This directory does not support synchronization. Not
852 * really an error. */
853 } else {
854 error = errno;
855 VLOG_ERR("%s: fsync failed (%s)", dir, ovs_strerror(error));
856 }
857 }
858 close(fd);
859 } else {
860 error = errno;
861 VLOG_ERR("%s: open failed (%s)", dir, ovs_strerror(error));
862 }
863 free(dir);
864 #endif
865
866 return error;
867 }
868
869 /* Obtains the modification time of the file named 'file_name' to the greatest
870 * supported precision. If successful, stores the mtime in '*mtime' and
871 * returns 0. On error, returns a positive errno value and stores zeros in
872 * '*mtime'. */
873 int
874 get_mtime(const char *file_name, struct timespec *mtime)
875 {
876 struct stat s;
877
878 if (!stat(file_name, &s)) {
879 mtime->tv_sec = s.st_mtime;
880
881 #if HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC
882 mtime->tv_nsec = s.st_mtim.tv_nsec;
883 #elif HAVE_STRUCT_STAT_ST_MTIMENSEC
884 mtime->tv_nsec = s.st_mtimensec;
885 #else
886 mtime->tv_nsec = 0;
887 #endif
888
889 return 0;
890 } else {
891 mtime->tv_sec = mtime->tv_nsec = 0;
892 return errno;
893 }
894 }
895
896 static int
897 getsockopt_int(int fd, int level, int option, const char *optname, int *valuep)
898 {
899 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 10);
900 socklen_t len;
901 int value;
902 int error;
903
904 len = sizeof value;
905 if (getsockopt(fd, level, option, &value, &len)) {
906 error = sock_errno();
907 VLOG_ERR_RL(&rl, "getsockopt(%s): %s", optname, sock_strerror(error));
908 } else if (len != sizeof value) {
909 error = EINVAL;
910 VLOG_ERR_RL(&rl, "getsockopt(%s): value is %u bytes (expected %"PRIuSIZE")",
911 optname, (unsigned int) len, sizeof value);
912 } else {
913 error = 0;
914 }
915
916 *valuep = error ? 0 : value;
917 return error;
918 }
919
920 static void
921 describe_sockaddr(struct ds *string, int fd,
922 int (*getaddr)(int, struct sockaddr *, socklen_t *))
923 {
924 struct sockaddr_storage ss;
925 socklen_t len = sizeof ss;
926
927 if (!getaddr(fd, (struct sockaddr *) &ss, &len)) {
928 if (ss.ss_family == AF_INET || ss.ss_family == AF_INET6) {
929 ss_format_address(&ss, string);
930 ds_put_format(string, ":%"PRIu16, ss_get_port(&ss));
931 #ifndef _WIN32
932 } else if (ss.ss_family == AF_UNIX) {
933 struct sockaddr_un sun;
934 const char *null;
935 size_t maxlen;
936
937 memcpy(&sun, &ss, sizeof sun);
938 maxlen = len - offsetof(struct sockaddr_un, sun_path);
939 null = memchr(sun.sun_path, '\0', maxlen);
940 ds_put_buffer(string, sun.sun_path,
941 null ? null - sun.sun_path : maxlen);
942 #endif
943 }
944 #ifdef HAVE_NETLINK
945 else if (ss.ss_family == AF_NETLINK) {
946 int protocol;
947
948 /* SO_PROTOCOL was introduced in 2.6.32. Support it regardless of the version
949 * of the Linux kernel headers in use at build time. */
950 #ifndef SO_PROTOCOL
951 #define SO_PROTOCOL 38
952 #endif
953
954 if (!getsockopt_int(fd, SOL_SOCKET, SO_PROTOCOL, "SO_PROTOCOL",
955 &protocol)) {
956 switch (protocol) {
957 case NETLINK_ROUTE:
958 ds_put_cstr(string, "NETLINK_ROUTE");
959 break;
960
961 case NETLINK_GENERIC:
962 ds_put_cstr(string, "NETLINK_GENERIC");
963 break;
964
965 default:
966 ds_put_format(string, "AF_NETLINK family %d", protocol);
967 break;
968 }
969 } else {
970 ds_put_cstr(string, "AF_NETLINK");
971 }
972 }
973 #endif
974 #if __linux__
975 else if (ss.ss_family == AF_PACKET) {
976 struct sockaddr_ll sll;
977
978 memcpy(&sll, &ss, sizeof sll);
979 ds_put_cstr(string, "AF_PACKET");
980 if (sll.sll_ifindex) {
981 char name[IFNAMSIZ];
982
983 if (if_indextoname(sll.sll_ifindex, name)) {
984 ds_put_format(string, "(%s)", name);
985 } else {
986 ds_put_format(string, "(ifindex=%d)", sll.sll_ifindex);
987 }
988 }
989 if (sll.sll_protocol) {
990 ds_put_format(string, "(protocol=0x%"PRIu16")",
991 ntohs(sll.sll_protocol));
992 }
993 }
994 #endif
995 else if (ss.ss_family == AF_UNSPEC) {
996 ds_put_cstr(string, "AF_UNSPEC");
997 } else {
998 ds_put_format(string, "AF_%d", (int) ss.ss_family);
999 }
1000 }
1001 }
1002
1003
1004 #ifdef __linux__
1005 static void
1006 put_fd_filename(struct ds *string, int fd)
1007 {
1008 char buf[1024];
1009 char *linkname;
1010 int n;
1011
1012 linkname = xasprintf("/proc/self/fd/%d", fd);
1013 n = readlink(linkname, buf, sizeof buf);
1014 if (n > 0) {
1015 ds_put_char(string, ' ');
1016 ds_put_buffer(string, buf, n);
1017 if (n > sizeof buf) {
1018 ds_put_cstr(string, "...");
1019 }
1020 }
1021 free(linkname);
1022 }
1023 #endif
1024
1025 /* Returns a malloc()'d string describing 'fd', for use in logging. */
1026 char *
1027 describe_fd(int fd)
1028 {
1029 struct ds string;
1030 struct stat s;
1031
1032 ds_init(&string);
1033 #ifndef _WIN32
1034 if (fstat(fd, &s)) {
1035 ds_put_format(&string, "fstat failed (%s)", ovs_strerror(errno));
1036 } else if (S_ISSOCK(s.st_mode)) {
1037 describe_sockaddr(&string, fd, getsockname);
1038 ds_put_cstr(&string, "<->");
1039 describe_sockaddr(&string, fd, getpeername);
1040 } else {
1041 ds_put_cstr(&string, (isatty(fd) ? "tty"
1042 : S_ISDIR(s.st_mode) ? "directory"
1043 : S_ISCHR(s.st_mode) ? "character device"
1044 : S_ISBLK(s.st_mode) ? "block device"
1045 : S_ISREG(s.st_mode) ? "file"
1046 : S_ISFIFO(s.st_mode) ? "FIFO"
1047 : S_ISLNK(s.st_mode) ? "symbolic link"
1048 : "unknown"));
1049 #ifdef __linux__
1050 put_fd_filename(&string, fd);
1051 #endif
1052 }
1053 #else
1054 ds_put_format(&string,"file descriptor");
1055 #endif /* _WIN32 */
1056 return ds_steal_cstr(&string);
1057 }
1058 \f
1059 /* sockaddr helpers. */
1060
1061 static struct sockaddr_in *
1062 sin_cast(const struct sockaddr *sa)
1063 {
1064 return ALIGNED_CAST(struct sockaddr_in *, sa);
1065 }
1066
1067 static struct sockaddr_in6 *
1068 sin6_cast(const struct sockaddr *sa)
1069 {
1070 return ALIGNED_CAST(struct sockaddr_in6 *, sa);
1071 }
1072
1073 /* Returns true if 'sa' represents an IPv4 or IPv6 address, false otherwise. */
1074 bool
1075 sa_is_ip(const struct sockaddr *sa)
1076 {
1077 return sa->sa_family == AF_INET || sa->sa_family == AF_INET6;
1078 }
1079
1080 /* Returns the IPv4 or IPv6 address in 'sa'. Returns IPv4 addresses as
1081 * v6-mapped. */
1082 struct in6_addr
1083 sa_get_address(const struct sockaddr *sa)
1084 {
1085 ovs_assert(sa_is_ip(sa));
1086 return (sa->sa_family == AF_INET
1087 ? in6_addr_mapped_ipv4(sin_cast(sa)->sin_addr.s_addr)
1088 : sin6_cast(sa)->sin6_addr);
1089 }
1090
1091 /* Returns the IPv4 or IPv6 port in 'sa'. */
1092 uint16_t
1093 sa_get_port(const struct sockaddr *sa)
1094 {
1095 ovs_assert(sa_is_ip(sa));
1096 return ntohs(sa->sa_family == AF_INET
1097 ? sin_cast(sa)->sin_port
1098 : sin6_cast(sa)->sin6_port);
1099 }
1100
1101 /* Returns true if 'name' is safe to include inside a network address field.
1102 * We want to avoid names that include confusing punctuation, etc. */
1103 static bool OVS_UNUSED
1104 is_safe_name(const char *name)
1105 {
1106 if (!name[0] || isdigit((unsigned char) name[0])) {
1107 return false;
1108 }
1109 for (const char *p = name; *p; p++) {
1110 if (!isalnum((unsigned char) *p) && *p != '-' && *p != '_') {
1111 return false;
1112 }
1113 }
1114 return true;
1115 }
1116
1117 static void
1118 sa_format_address__(const struct sockaddr *sa,
1119 const char *lbrack, const char *rbrack,
1120 struct ds *s)
1121 {
1122 ovs_assert(sa_is_ip(sa));
1123 if (sa->sa_family == AF_INET) {
1124 ds_put_format(s, IP_FMT, IP_ARGS(sin_cast(sa)->sin_addr.s_addr));
1125 } else {
1126 const struct sockaddr_in6 *sin6 = sin6_cast(sa);
1127
1128 ds_put_cstr(s, lbrack);
1129 ds_reserve(s, s->length + INET6_ADDRSTRLEN);
1130 char *tail = &s->string[s->length];
1131 inet_ntop(AF_INET6, sin6->sin6_addr.s6_addr, tail, INET6_ADDRSTRLEN);
1132 s->length += strlen(tail);
1133
1134 #ifdef HAVE_STRUCT_SOCKADDR_IN6_SIN6_SCOPE_ID
1135 uint32_t scope = sin6->sin6_scope_id;
1136 if (scope) {
1137 char namebuf[IF_NAMESIZE];
1138 char *name = if_indextoname(scope, namebuf);
1139 ds_put_char(s, '%');
1140 if (name && is_safe_name(name)) {
1141 ds_put_cstr(s, name);
1142 } else {
1143 ds_put_format(s, "%"PRIu32, scope);
1144 }
1145 }
1146 #endif
1147
1148 ds_put_cstr(s, rbrack);
1149 }
1150 }
1151
1152 /* Formats the IPv4 or IPv6 address in 'sa' into 's'. If 'sa' is an IPv6
1153 * address, puts square brackets around the address. */
1154 void
1155 sa_format_address(const struct sockaddr *sa, struct ds *s)
1156 {
1157 sa_format_address__(sa, "[", "]", s);
1158 }
1159
1160 /* Formats the IPv4 or IPv6 address in 'sa' into 's'. Does not add square
1161 * brackets around IPv6 addresses. */
1162 void
1163 sa_format_address_nobracks(const struct sockaddr *sa, struct ds *s)
1164 {
1165 sa_format_address__(sa, "", "", s);
1166 }
1167
1168 size_t
1169 sa_length(const struct sockaddr *sa)
1170 {
1171 switch (sa->sa_family) {
1172 case AF_INET:
1173 return sizeof(struct sockaddr_in);
1174
1175 case AF_INET6:
1176 return sizeof(struct sockaddr_in6);
1177
1178 default:
1179 OVS_NOT_REACHED();
1180 }
1181 }
1182 \f
1183 /* sockaddr_storage helpers. */
1184
1185 static const struct sockaddr *
1186 sa_cast(const struct sockaddr_storage *ss)
1187 {
1188 return ALIGNED_CAST(const struct sockaddr *, ss);
1189 }
1190
1191 bool
1192 ss_is_ip(const struct sockaddr_storage *ss)
1193 {
1194 return sa_is_ip(sa_cast(ss));
1195 }
1196
1197 uint16_t
1198 ss_get_port(const struct sockaddr_storage *ss)
1199 {
1200 return sa_get_port(sa_cast(ss));
1201 }
1202
1203 struct in6_addr
1204 ss_get_address(const struct sockaddr_storage *ss)
1205 {
1206 return sa_get_address(sa_cast(ss));
1207 }
1208
1209 void
1210 ss_format_address(const struct sockaddr_storage *ss, struct ds *s)
1211 {
1212 sa_format_address(sa_cast(ss), s);
1213 }
1214
1215 void
1216 ss_format_address_nobracks(const struct sockaddr_storage *ss, struct ds *s)
1217 {
1218 sa_format_address_nobracks(sa_cast(ss), s);
1219 }
1220
1221 size_t
1222 ss_length(const struct sockaddr_storage *ss)
1223 {
1224 return sa_length(sa_cast(ss));
1225 }
1226 \f
1227 /* For Windows socket calls, 'errno' is not set. One has to call
1228 * WSAGetLastError() to get the error number and then pass it to
1229 * this function to get the correct error string.
1230 *
1231 * ovs_strerror() calls strerror_r() and would not get the correct error
1232 * string for Windows sockets, but is good for POSIX. */
1233 const char *
1234 sock_strerror(int error)
1235 {
1236 #ifdef _WIN32
1237 return ovs_format_message(error);
1238 #else
1239 return ovs_strerror(error);
1240 #endif
1241 }
1242 \f
1243 #ifndef _WIN32 //Avoid using sendmsg on Windows entirely
1244 static int
1245 emulate_sendmmsg(int fd, struct mmsghdr *msgs, unsigned int n,
1246 unsigned int flags)
1247 {
1248 for (unsigned int i = 0; i < n; i++) {
1249 ssize_t retval = sendmsg(fd, &msgs[i].msg_hdr, flags);
1250 if (retval < 0) {
1251 return i ? i : retval;
1252 }
1253 msgs[i].msg_len = retval;
1254 }
1255 return n;
1256 }
1257
1258 #ifndef HAVE_SENDMMSG
1259 int
1260 sendmmsg(int fd, struct mmsghdr *msgs, unsigned int n, unsigned int flags)
1261 {
1262 return emulate_sendmmsg(fd, msgs, n, flags);
1263 }
1264 #else
1265 /* sendmmsg was redefined in lib/socket-util.c, should undef sendmmsg here
1266 * to avoid recursion */
1267 #undef sendmmsg
1268 int
1269 wrap_sendmmsg(int fd, struct mmsghdr *msgs, unsigned int n, unsigned int flags)
1270 {
1271 static bool sendmmsg_broken = false;
1272 if (!sendmmsg_broken) {
1273 int save_errno = errno;
1274 int retval = sendmmsg(fd, msgs, n, flags);
1275 if (retval >= 0 || errno != ENOSYS) {
1276 return retval;
1277 }
1278 sendmmsg_broken = true;
1279 errno = save_errno;
1280 }
1281 return emulate_sendmmsg(fd, msgs, n, flags);
1282 }
1283 #endif
1284 #endif