Avoid printf type modifiers not supported by MSVC C runtime library.
[cascardo/ovs.git] / lib / socket-util.c
1 /*
2  * Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013 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 <arpa/inet.h>
20 #include <errno.h>
21 #include <fcntl.h>
22 #include <net/if.h>
23 #include <netdb.h>
24 #include <poll.h>
25 #include <stddef.h>
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include <string.h>
29 #include <sys/ioctl.h>
30 #include <sys/resource.h>
31 #include <sys/socket.h>
32 #include <sys/stat.h>
33 #include <sys/uio.h>
34 #include <sys/un.h>
35 #include <unistd.h>
36 #include "dynamic-string.h"
37 #include "fatal-signal.h"
38 #include "packets.h"
39 #include "poll-loop.h"
40 #include "util.h"
41 #include "vlog.h"
42 #if AF_PACKET && LINUX_DATAPATH
43 #include <linux/if_packet.h>
44 #endif
45 #ifdef HAVE_NETLINK
46 #include "netlink-protocol.h"
47 #include "netlink-socket.h"
48 #endif
49
50 VLOG_DEFINE_THIS_MODULE(socket_util);
51
52 /* #ifdefs make it a pain to maintain code: you have to try to build both ways.
53  * Thus, this file compiles all of the code regardless of the target, by
54  * writing "if (LINUX_DATAPATH)" instead of "#ifdef __linux__". */
55 #ifndef LINUX_DATAPATH
56 #define LINUX_DATAPATH 0
57 #endif
58
59 #ifndef O_DIRECTORY
60 #define O_DIRECTORY 0
61 #endif
62
63 /* Maximum length of the sun_path member in a struct sockaddr_un, excluding
64  * space for a null terminator. */
65 #define MAX_UN_LEN (sizeof(((struct sockaddr_un *) 0)->sun_path) - 1)
66
67 static int getsockopt_int(int fd, int level, int option, const char *optname,
68                           int *valuep);
69
70 /* Sets 'fd' to non-blocking mode.  Returns 0 if successful, otherwise a
71  * positive errno value. */
72 int
73 set_nonblocking(int fd)
74 {
75     int flags = fcntl(fd, F_GETFL, 0);
76     if (flags != -1) {
77         if (fcntl(fd, F_SETFL, flags | O_NONBLOCK) != -1) {
78             return 0;
79         } else {
80             VLOG_ERR("fcntl(F_SETFL) failed: %s", ovs_strerror(errno));
81             return errno;
82         }
83     } else {
84         VLOG_ERR("fcntl(F_GETFL) failed: %s", ovs_strerror(errno));
85         return errno;
86     }
87 }
88
89 void
90 xset_nonblocking(int fd)
91 {
92     if (set_nonblocking(fd)) {
93         exit(EXIT_FAILURE);
94     }
95 }
96
97 int
98 set_dscp(int fd, uint8_t dscp)
99 {
100     int val;
101
102     if (dscp > 63) {
103         return EINVAL;
104     }
105
106     val = dscp << 2;
107     if (setsockopt(fd, IPPROTO_IP, IP_TOS, &val, sizeof val)) {
108         return errno;
109     }
110
111     return 0;
112 }
113
114 static bool
115 rlim_is_finite(rlim_t limit)
116 {
117     if (limit == RLIM_INFINITY) {
118         return false;
119     }
120
121 #ifdef RLIM_SAVED_CUR           /* FreeBSD 8.0 lacks RLIM_SAVED_CUR. */
122     if (limit == RLIM_SAVED_CUR) {
123         return false;
124     }
125 #endif
126
127 #ifdef RLIM_SAVED_MAX           /* FreeBSD 8.0 lacks RLIM_SAVED_MAX. */
128     if (limit == RLIM_SAVED_MAX) {
129         return false;
130     }
131 #endif
132
133     return true;
134 }
135
136 /* Returns the maximum valid FD value, plus 1. */
137 int
138 get_max_fds(void)
139 {
140     static struct ovsthread_once once = OVSTHREAD_ONCE_INITIALIZER;
141     static int max_fds;
142
143     if (ovsthread_once_start(&once)) {
144         struct rlimit r;
145         if (!getrlimit(RLIMIT_NOFILE, &r) && rlim_is_finite(r.rlim_cur)) {
146             max_fds = r.rlim_cur;
147         } else {
148             VLOG_WARN("failed to obtain fd limit, defaulting to 1024");
149             max_fds = 1024;
150         }
151         ovsthread_once_done(&once);
152     }
153
154     return max_fds;
155 }
156
157 /* Translates 'host_name', which must be a string representation of an IP
158  * address, into a numeric IP address in '*addr'.  Returns 0 if successful,
159  * otherwise a positive errno value. */
160 int
161 lookup_ip(const char *host_name, struct in_addr *addr)
162 {
163     if (!inet_aton(host_name, addr)) {
164         static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
165         VLOG_ERR_RL(&rl, "\"%s\" is not a valid IP address", host_name);
166         return ENOENT;
167     }
168     return 0;
169 }
170
171 /* Translates 'host_name', which must be a string representation of an IPv6
172  * address, into a numeric IPv6 address in '*addr'.  Returns 0 if successful,
173  * otherwise a positive errno value. */
174 int
175 lookup_ipv6(const char *host_name, struct in6_addr *addr)
176 {
177     if (inet_pton(AF_INET6, host_name, addr) != 1) {
178         static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
179         VLOG_ERR_RL(&rl, "\"%s\" is not a valid IPv6 address", host_name);
180         return ENOENT;
181     }
182     return 0;
183 }
184
185 /* Translates 'host_name', which must be a host name or a string representation
186  * of an IP address, into a numeric IP address in '*addr'.  Returns 0 if
187  * successful, otherwise a positive errno value.
188  *
189  * Most Open vSwitch code should not use this because it causes deadlocks:
190  * getaddrinfo() sends out a DNS request but that starts a new flow for which
191  * OVS must set up a flow, but it can't because it's waiting for a DNS reply.
192  * The synchronous lookup also delays other activity.  (Of course we can solve
193  * this but it doesn't seem worthwhile quite yet.)  */
194 int
195 lookup_hostname(const char *host_name, struct in_addr *addr)
196 {
197     struct addrinfo *result;
198     struct addrinfo hints;
199
200     if (inet_aton(host_name, addr)) {
201         return 0;
202     }
203
204     memset(&hints, 0, sizeof hints);
205     hints.ai_family = AF_INET;
206
207     switch (getaddrinfo(host_name, NULL, &hints, &result)) {
208     case 0:
209         *addr = ALIGNED_CAST(struct sockaddr_in *,
210                              result->ai_addr)->sin_addr;
211         freeaddrinfo(result);
212         return 0;
213
214 #ifdef EAI_ADDRFAMILY
215     case EAI_ADDRFAMILY:
216 #endif
217     case EAI_NONAME:
218     case EAI_SERVICE:
219         return ENOENT;
220
221     case EAI_AGAIN:
222         return EAGAIN;
223
224     case EAI_BADFLAGS:
225     case EAI_FAMILY:
226     case EAI_SOCKTYPE:
227         return EINVAL;
228
229     case EAI_FAIL:
230         return EIO;
231
232     case EAI_MEMORY:
233         return ENOMEM;
234
235 #ifdef EAI_NODATA
236     case EAI_NODATA:
237         return ENXIO;
238 #endif
239
240     case EAI_SYSTEM:
241         return errno;
242
243     default:
244         return EPROTO;
245     }
246 }
247
248 int
249 check_connection_completion(int fd)
250 {
251     static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 10);
252     struct pollfd pfd;
253     int retval;
254
255     pfd.fd = fd;
256     pfd.events = POLLOUT;
257     do {
258         retval = poll(&pfd, 1, 0);
259     } while (retval < 0 && errno == EINTR);
260     if (retval == 1) {
261         if (pfd.revents & POLLERR) {
262             ssize_t n = send(fd, "", 1, MSG_DONTWAIT);
263             if (n < 0) {
264                 return errno;
265             } else {
266                 VLOG_ERR_RL(&rl, "poll return POLLERR but send succeeded");
267                 return EPROTO;
268             }
269         }
270         return 0;
271     } else if (retval < 0) {
272         VLOG_ERR_RL(&rl, "poll: %s", ovs_strerror(errno));
273         return errno;
274     } else {
275         return EAGAIN;
276     }
277 }
278
279 /* Drain all the data currently in the receive queue of a datagram socket (and
280  * possibly additional data).  There is no way to know how many packets are in
281  * the receive queue, but we do know that the total number of bytes queued does
282  * not exceed the receive buffer size, so we pull packets until none are left
283  * or we've read that many bytes. */
284 int
285 drain_rcvbuf(int fd)
286 {
287     int rcvbuf;
288
289     rcvbuf = get_socket_rcvbuf(fd);
290     if (rcvbuf < 0) {
291         return -rcvbuf;
292     }
293
294     while (rcvbuf > 0) {
295         /* In Linux, specifying MSG_TRUNC in the flags argument causes the
296          * datagram length to be returned, even if that is longer than the
297          * buffer provided.  Thus, we can use a 1-byte buffer to discard the
298          * incoming datagram and still be able to account how many bytes were
299          * removed from the receive buffer.
300          *
301          * On other Unix-like OSes, MSG_TRUNC has no effect in the flags
302          * argument. */
303         char buffer[LINUX_DATAPATH ? 1 : 2048];
304         ssize_t n_bytes = recv(fd, buffer, sizeof buffer,
305                                MSG_TRUNC | MSG_DONTWAIT);
306         if (n_bytes <= 0 || n_bytes >= rcvbuf) {
307             break;
308         }
309         rcvbuf -= n_bytes;
310     }
311     return 0;
312 }
313
314 /* Returns the size of socket 'sock''s receive buffer (SO_RCVBUF), or a
315  * negative errno value if an error occurs. */
316 int
317 get_socket_rcvbuf(int sock)
318 {
319     int rcvbuf;
320     int error;
321
322     error = getsockopt_int(sock, SOL_SOCKET, SO_RCVBUF, "SO_RCVBUF", &rcvbuf);
323     return error ? -error : rcvbuf;
324 }
325
326 /* Reads and discards up to 'n' datagrams from 'fd', stopping as soon as no
327  * more data can be immediately read.  ('fd' should therefore be in
328  * non-blocking mode.)*/
329 void
330 drain_fd(int fd, size_t n_packets)
331 {
332     for (; n_packets > 0; n_packets--) {
333         /* 'buffer' only needs to be 1 byte long in most circumstances.  This
334          * size is defensive against the possibility that we someday want to
335          * use a Linux tap device without TUN_NO_PI, in which case a buffer
336          * smaller than sizeof(struct tun_pi) will give EINVAL on read. */
337         char buffer[128];
338         if (read(fd, buffer, sizeof buffer) <= 0) {
339             break;
340         }
341     }
342 }
343
344 /* Attempts to shorten 'name' by opening a file descriptor for the directory
345  * part of the name and indirecting through /proc/self/fd/<dirfd>/<basename>.
346  * On systems with Linux-like /proc, this works as long as <basename> isn't too
347  * long.
348  *
349  * On success, returns 0 and stores the short name in 'short_name' and a
350  * directory file descriptor to eventually be closed in '*dirfpd'. */
351 static int
352 shorten_name_via_proc(const char *name, char short_name[MAX_UN_LEN + 1],
353                       int *dirfdp)
354 {
355     char *dir, *base;
356     int dirfd;
357     int len;
358
359     if (!LINUX_DATAPATH) {
360         return ENAMETOOLONG;
361     }
362
363     dir = dir_name(name);
364     dirfd = open(dir, O_DIRECTORY | O_RDONLY);
365     if (dirfd < 0) {
366         static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 1);
367         int error = errno;
368
369         VLOG_WARN_RL(&rl, "%s: open failed (%s)", dir, ovs_strerror(error));
370         free(dir);
371
372         return error;
373     }
374     free(dir);
375
376     base = base_name(name);
377     len = snprintf(short_name, MAX_UN_LEN + 1,
378                    "/proc/self/fd/%d/%s", dirfd, base);
379     free(base);
380
381     if (len >= 0 && len <= MAX_UN_LEN) {
382         *dirfdp = dirfd;
383         return 0;
384     } else {
385         close(dirfd);
386         return ENAMETOOLONG;
387     }
388 }
389
390 /* Attempts to shorten 'name' by creating a symlink for the directory part of
391  * the name and indirecting through <symlink>/<basename>.  This works on
392  * systems that support symlinks, as long as <basename> isn't too long.
393  *
394  * On success, returns 0 and stores the short name in 'short_name' and the
395  * symbolic link to eventually delete in 'linkname'. */
396 static int
397 shorten_name_via_symlink(const char *name, char short_name[MAX_UN_LEN + 1],
398                          char linkname[MAX_UN_LEN + 1])
399 {
400     char *abs, *dir, *base;
401     const char *tmpdir;
402     int error;
403     int i;
404
405     abs = abs_file_name(NULL, name);
406     dir = dir_name(abs);
407     base = base_name(abs);
408     free(abs);
409
410     tmpdir = getenv("TMPDIR");
411     if (tmpdir == NULL) {
412         tmpdir = "/tmp";
413     }
414
415     for (i = 0; i < 1000; i++) {
416         int len;
417
418         len = snprintf(linkname, MAX_UN_LEN + 1,
419                        "%s/ovs-un-c-%"PRIu32, tmpdir, random_uint32());
420         error = (len < 0 || len > MAX_UN_LEN ? ENAMETOOLONG
421                  : symlink(dir, linkname) ? errno
422                  : 0);
423         if (error != EEXIST) {
424             break;
425         }
426     }
427
428     if (!error) {
429         int len;
430
431         fatal_signal_add_file_to_unlink(linkname);
432
433         len = snprintf(short_name, MAX_UN_LEN + 1, "%s/%s", linkname, base);
434         if (len < 0 || len > MAX_UN_LEN) {
435             fatal_signal_unlink_file_now(linkname);
436             error = ENAMETOOLONG;
437         }
438     }
439
440     if (error) {
441         linkname[0] = '\0';
442     }
443     free(dir);
444     free(base);
445
446     return error;
447 }
448
449 /* Stores in '*un' a sockaddr_un that refers to file 'name'.  Stores in
450  * '*un_len' the size of the sockaddr_un.
451  *
452  * Returns 0 on success, otherwise a positive errno value.
453  *
454  * Uses '*dirfdp' and 'linkname' to store references to data when the caller no
455  * longer needs to use 'un'.  On success, freeing these references with
456  * free_sockaddr_un() is mandatory to avoid a leak; on failure, freeing them is
457  * unnecessary but harmless. */
458 static int
459 make_sockaddr_un(const char *name, struct sockaddr_un *un, socklen_t *un_len,
460                  int *dirfdp, char linkname[MAX_UN_LEN + 1])
461 {
462     char short_name[MAX_UN_LEN + 1];
463
464     *dirfdp = -1;
465     linkname[0] = '\0';
466     if (strlen(name) > MAX_UN_LEN) {
467         /* 'name' is too long to fit in a sockaddr_un.  Try a workaround. */
468         int error = shorten_name_via_proc(name, short_name, dirfdp);
469         if (error == ENAMETOOLONG) {
470             error = shorten_name_via_symlink(name, short_name, linkname);
471         }
472         if (error) {
473             static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 1);
474
475             VLOG_WARN_RL(&rl, "Unix socket name %s is longer than maximum "
476                          "%"PRIuSIZE" bytes", name, MAX_UN_LEN);
477             return error;
478         }
479
480         name = short_name;
481     }
482
483     un->sun_family = AF_UNIX;
484     ovs_strzcpy(un->sun_path, name, sizeof un->sun_path);
485     *un_len = (offsetof(struct sockaddr_un, sun_path)
486                 + strlen (un->sun_path) + 1);
487     return 0;
488 }
489
490 /* Clean up after make_sockaddr_un(). */
491 static void
492 free_sockaddr_un(int dirfd, const char *linkname)
493 {
494     if (dirfd >= 0) {
495         close(dirfd);
496     }
497     if (linkname[0]) {
498         fatal_signal_unlink_file_now(linkname);
499     }
500 }
501
502 /* Binds Unix domain socket 'fd' to a file with permissions 0700. */
503 static int
504 bind_unix_socket(int fd, struct sockaddr *sun, socklen_t sun_len)
505 {
506     /* According to _Unix Network Programming_, umask should affect bind(). */
507     mode_t old_umask = umask(0077);
508     int error = bind(fd, sun, sun_len) ? errno : 0;
509     umask(old_umask);
510     return error;
511 }
512
513 /* Creates a Unix domain socket in the given 'style' (either SOCK_DGRAM or
514  * SOCK_STREAM) that is bound to '*bind_path' (if 'bind_path' is non-null) and
515  * connected to '*connect_path' (if 'connect_path' is non-null).  If 'nonblock'
516  * is true, the socket is made non-blocking.
517  *
518  * Returns the socket's fd if successful, otherwise a negative errno value. */
519 int
520 make_unix_socket(int style, bool nonblock,
521                  const char *bind_path, const char *connect_path)
522 {
523     int error;
524     int fd;
525
526     fd = socket(PF_UNIX, style, 0);
527     if (fd < 0) {
528         return -errno;
529     }
530
531     /* Set nonblocking mode right away, if we want it.  This prevents blocking
532      * in connect(), if connect_path != NULL.  (In turn, that's a corner case:
533      * it will only happen if style is SOCK_STREAM or SOCK_SEQPACKET, and only
534      * if a backlog of un-accepted connections has built up in the kernel.)  */
535     if (nonblock) {
536         error = set_nonblocking(fd);
537         if (error) {
538             goto error;
539         }
540     }
541
542     if (bind_path) {
543         char linkname[MAX_UN_LEN + 1];
544         struct sockaddr_un un;
545         socklen_t un_len;
546         int dirfd;
547
548         if (unlink(bind_path) && errno != ENOENT) {
549             VLOG_WARN("unlinking \"%s\": %s\n",
550                       bind_path, ovs_strerror(errno));
551         }
552         fatal_signal_add_file_to_unlink(bind_path);
553
554         error = make_sockaddr_un(bind_path, &un, &un_len, &dirfd, linkname);
555         if (!error) {
556             error = bind_unix_socket(fd, (struct sockaddr *) &un, un_len);
557         }
558         free_sockaddr_un(dirfd, linkname);
559
560         if (error) {
561             goto error;
562         }
563     }
564
565     if (connect_path) {
566         char linkname[MAX_UN_LEN + 1];
567         struct sockaddr_un un;
568         socklen_t un_len;
569         int dirfd;
570
571         error = make_sockaddr_un(connect_path, &un, &un_len, &dirfd, linkname);
572         if (!error
573             && connect(fd, (struct sockaddr*) &un, un_len)
574             && errno != EINPROGRESS) {
575             error = errno;
576         }
577         free_sockaddr_un(dirfd, linkname);
578
579         if (error) {
580             goto error;
581         }
582     }
583
584     return fd;
585
586 error:
587     if (error == EAGAIN) {
588         error = EPROTO;
589     }
590     if (bind_path) {
591         fatal_signal_unlink_file_now(bind_path);
592     }
593     close(fd);
594     return -error;
595 }
596
597 int
598 get_unix_name_len(socklen_t sun_len)
599 {
600     return (sun_len >= offsetof(struct sockaddr_un, sun_path)
601             ? sun_len - offsetof(struct sockaddr_un, sun_path)
602             : 0);
603 }
604
605 ovs_be32
606 guess_netmask(ovs_be32 ip_)
607 {
608     uint32_t ip = ntohl(ip_);
609     return ((ip >> 31) == 0 ? htonl(0xff000000)   /* Class A */
610             : (ip >> 30) == 2 ? htonl(0xffff0000) /* Class B */
611             : (ip >> 29) == 6 ? htonl(0xffffff00) /* Class C */
612             : htonl(0));                          /* ??? */
613 }
614
615 /* Parses 'target', which should be a string in the format "<host>[:<port>]".
616  * <host> is required.  If 'default_port' is nonzero then <port> is optional
617  * and defaults to 'default_port'.
618  *
619  * On success, returns true and stores the parsed remote address into '*sinp'.
620  * On failure, logs an error, stores zeros into '*sinp', and returns false. */
621 bool
622 inet_parse_active(const char *target_, uint16_t default_port,
623                   struct sockaddr_in *sinp)
624 {
625     char *target = xstrdup(target_);
626     char *save_ptr = NULL;
627     const char *host_name;
628     const char *port_string;
629     bool ok = false;
630
631     /* Defaults. */
632     sinp->sin_family = AF_INET;
633     sinp->sin_port = htons(default_port);
634
635     /* Tokenize. */
636     host_name = strtok_r(target, ":", &save_ptr);
637     port_string = strtok_r(NULL, ":", &save_ptr);
638     if (!host_name) {
639         VLOG_ERR("%s: bad peer name format", target_);
640         goto exit;
641     }
642
643     /* Look up IP, port. */
644     if (lookup_ip(host_name, &sinp->sin_addr)) {
645         goto exit;
646     }
647     if (port_string && atoi(port_string)) {
648         sinp->sin_port = htons(atoi(port_string));
649     } else if (!default_port) {
650         VLOG_ERR("%s: port number must be specified", target_);
651         goto exit;
652     }
653
654     ok = true;
655
656 exit:
657     if (!ok) {
658         memset(sinp, 0, sizeof *sinp);
659     }
660     free(target);
661     return ok;
662 }
663
664 /* Opens a non-blocking IPv4 socket of the specified 'style' and connects to
665  * 'target', which should be a string in the format "<host>[:<port>]".  <host>
666  * is required.  If 'default_port' is nonzero then <port> is optional and
667  * defaults to 'default_port'.
668  *
669  * 'style' should be SOCK_STREAM (for TCP) or SOCK_DGRAM (for UDP).
670  *
671  * On success, returns 0 (indicating connection complete) or EAGAIN (indicating
672  * connection in progress), in which case the new file descriptor is stored
673  * into '*fdp'.  On failure, returns a positive errno value other than EAGAIN
674  * and stores -1 into '*fdp'.
675  *
676  * If 'sinp' is non-null, then on success the target address is stored into
677  * '*sinp'.
678  *
679  * 'dscp' becomes the DSCP bits in the IP headers for the new connection.  It
680  * should be in the range [0, 63] and will automatically be shifted to the
681  * appropriately place in the IP tos field. */
682 int
683 inet_open_active(int style, const char *target, uint16_t default_port,
684                  struct sockaddr_in *sinp, int *fdp, uint8_t dscp)
685 {
686     struct sockaddr_in sin;
687     int fd = -1;
688     int error;
689
690     /* Parse. */
691     if (!inet_parse_active(target, default_port, &sin)) {
692         error = EAFNOSUPPORT;
693         goto exit;
694     }
695
696     /* Create non-blocking socket. */
697     fd = socket(AF_INET, style, 0);
698     if (fd < 0) {
699         VLOG_ERR("%s: socket: %s", target, ovs_strerror(errno));
700         error = errno;
701         goto exit;
702     }
703     error = set_nonblocking(fd);
704     if (error) {
705         goto exit;
706     }
707
708     /* The dscp bits must be configured before connect() to ensure that the TOS
709      * field is set during the connection establishment.  If set after
710      * connect(), the handshake SYN frames will be sent with a TOS of 0. */
711     error = set_dscp(fd, dscp);
712     if (error) {
713         VLOG_ERR("%s: socket: %s", target, ovs_strerror(error));
714         goto exit;
715     }
716
717     /* Connect. */
718     error = connect(fd, (struct sockaddr *) &sin, sizeof sin) == 0 ? 0 : errno;
719     if (error == EINPROGRESS) {
720         error = EAGAIN;
721     }
722
723 exit:
724     if (!error || error == EAGAIN) {
725         if (sinp) {
726             *sinp = sin;
727         }
728     } else if (fd >= 0) {
729         close(fd);
730         fd = -1;
731     }
732     *fdp = fd;
733     return error;
734 }
735
736 /* Parses 'target', which should be a string in the format "[<port>][:<ip>]":
737  *
738  *      - If 'default_port' is -1, then <port> is required.  Otherwise, if
739  *        <port> is omitted, then 'default_port' is used instead.
740  *
741  *      - If <port> (or 'default_port', if used) is 0, then no port is bound
742  *        and the TCP/IP stack will select a port.
743  *
744  *      - If <ip> is omitted then the IP address is wildcarded.
745  *
746  * If successful, stores the address into '*sinp' and returns true; otherwise
747  * zeros '*sinp' and returns false. */
748 bool
749 inet_parse_passive(const char *target_, int default_port,
750                    struct sockaddr_in *sinp)
751 {
752     char *target = xstrdup(target_);
753     char *string_ptr = target;
754     const char *host_name;
755     const char *port_string;
756     bool ok = false;
757     int port;
758
759     /* Address defaults. */
760     memset(sinp, 0, sizeof *sinp);
761     sinp->sin_family = AF_INET;
762     sinp->sin_addr.s_addr = htonl(INADDR_ANY);
763     sinp->sin_port = htons(default_port);
764
765     /* Parse optional port number. */
766     port_string = strsep(&string_ptr, ":");
767     if (port_string && str_to_int(port_string, 10, &port)) {
768         sinp->sin_port = htons(port);
769     } else if (default_port < 0) {
770         VLOG_ERR("%s: port number must be specified", target_);
771         goto exit;
772     }
773
774     /* Parse optional bind IP. */
775     host_name = strsep(&string_ptr, ":");
776     if (host_name && host_name[0] && lookup_ip(host_name, &sinp->sin_addr)) {
777         goto exit;
778     }
779
780     ok = true;
781
782 exit:
783     if (!ok) {
784         memset(sinp, 0, sizeof *sinp);
785     }
786     free(target);
787     return ok;
788 }
789
790
791 /* Opens a non-blocking IPv4 socket of the specified 'style', binds to
792  * 'target', and listens for incoming connections.  Parses 'target' in the same
793  * way was inet_parse_passive().
794  *
795  * 'style' should be SOCK_STREAM (for TCP) or SOCK_DGRAM (for UDP).
796  *
797  * For TCP, the socket will have SO_REUSEADDR turned on.
798  *
799  * On success, returns a non-negative file descriptor.  On failure, returns a
800  * negative errno value.
801  *
802  * If 'sinp' is non-null, then on success the bound address is stored into
803  * '*sinp'.
804  *
805  * 'dscp' becomes the DSCP bits in the IP headers for the new connection.  It
806  * should be in the range [0, 63] and will automatically be shifted to the
807  * appropriately place in the IP tos field. */
808 int
809 inet_open_passive(int style, const char *target, int default_port,
810                   struct sockaddr_in *sinp, uint8_t dscp)
811 {
812     bool kernel_chooses_port;
813     struct sockaddr_in sin;
814     int fd = 0, error;
815     unsigned int yes = 1;
816
817     if (!inet_parse_passive(target, default_port, &sin)) {
818         return -EAFNOSUPPORT;
819     }
820
821     /* Create non-blocking socket, set SO_REUSEADDR. */
822     fd = socket(AF_INET, style, 0);
823     if (fd < 0) {
824         error = errno;
825         VLOG_ERR("%s: socket: %s", target, ovs_strerror(error));
826         return -error;
827     }
828     error = set_nonblocking(fd);
829     if (error) {
830         goto error;
831     }
832     if (style == SOCK_STREAM
833         && setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &yes, sizeof yes) < 0) {
834         error = errno;
835         VLOG_ERR("%s: setsockopt(SO_REUSEADDR): %s",
836                  target, ovs_strerror(error));
837         goto error;
838     }
839
840     /* Bind. */
841     if (bind(fd, (struct sockaddr *) &sin, sizeof sin) < 0) {
842         error = errno;
843         VLOG_ERR("%s: bind: %s", target, ovs_strerror(error));
844         goto error;
845     }
846
847     /* The dscp bits must be configured before connect() to ensure that the TOS
848      * field is set during the connection establishment.  If set after
849      * connect(), the handshake SYN frames will be sent with a TOS of 0. */
850     error = set_dscp(fd, dscp);
851     if (error) {
852         VLOG_ERR("%s: socket: %s", target, ovs_strerror(error));
853         goto error;
854     }
855
856     /* Listen. */
857     if (style == SOCK_STREAM && listen(fd, 10) < 0) {
858         error = errno;
859         VLOG_ERR("%s: listen: %s", target, ovs_strerror(error));
860         goto error;
861     }
862
863     kernel_chooses_port = sin.sin_port == htons(0);
864     if (sinp || kernel_chooses_port) {
865         socklen_t sin_len = sizeof sin;
866         if (getsockname(fd, (struct sockaddr *) &sin, &sin_len) < 0) {
867             error = errno;
868             VLOG_ERR("%s: getsockname: %s", target, ovs_strerror(error));
869             goto error;
870         }
871         if (sin.sin_family != AF_INET || sin_len != sizeof sin) {
872             error = EAFNOSUPPORT;
873             VLOG_ERR("%s: getsockname: invalid socket name", target);
874             goto error;
875         }
876         if (sinp) {
877             *sinp = sin;
878         }
879         if (kernel_chooses_port) {
880             VLOG_INFO("%s: listening on port %"PRIu16,
881                       target, ntohs(sin.sin_port));
882         }
883     }
884
885     return fd;
886
887 error:
888     close(fd);
889     return -error;
890 }
891
892 /* Returns a readable and writable fd for /dev/null, if successful, otherwise
893  * a negative errno value.  The caller must not close the returned fd (because
894  * the same fd will be handed out to subsequent callers). */
895 int
896 get_null_fd(void)
897 {
898     static struct ovsthread_once once = OVSTHREAD_ONCE_INITIALIZER;
899     static int null_fd;
900
901     if (ovsthread_once_start(&once)) {
902         null_fd = open("/dev/null", O_RDWR);
903         if (null_fd < 0) {
904             int error = errno;
905             VLOG_ERR("could not open /dev/null: %s", ovs_strerror(error));
906             null_fd = -error;
907         }
908         ovsthread_once_done(&once);
909     }
910
911     return null_fd;
912 }
913
914 int
915 read_fully(int fd, void *p_, size_t size, size_t *bytes_read)
916 {
917     uint8_t *p = p_;
918
919     *bytes_read = 0;
920     while (size > 0) {
921         ssize_t retval = read(fd, p, size);
922         if (retval > 0) {
923             *bytes_read += retval;
924             size -= retval;
925             p += retval;
926         } else if (retval == 0) {
927             return EOF;
928         } else if (errno != EINTR) {
929             return errno;
930         }
931     }
932     return 0;
933 }
934
935 int
936 write_fully(int fd, const void *p_, size_t size, size_t *bytes_written)
937 {
938     const uint8_t *p = p_;
939
940     *bytes_written = 0;
941     while (size > 0) {
942         ssize_t retval = write(fd, p, size);
943         if (retval > 0) {
944             *bytes_written += retval;
945             size -= retval;
946             p += retval;
947         } else if (retval == 0) {
948             VLOG_WARN("write returned 0");
949             return EPROTO;
950         } else if (errno != EINTR) {
951             return errno;
952         }
953     }
954     return 0;
955 }
956
957 /* Given file name 'file_name', fsyncs the directory in which it is contained.
958  * Returns 0 if successful, otherwise a positive errno value. */
959 int
960 fsync_parent_dir(const char *file_name)
961 {
962     int error = 0;
963     char *dir;
964     int fd;
965
966     dir = dir_name(file_name);
967     fd = open(dir, O_RDONLY);
968     if (fd >= 0) {
969         if (fsync(fd)) {
970             if (errno == EINVAL || errno == EROFS) {
971                 /* This directory does not support synchronization.  Not
972                  * really an error. */
973             } else {
974                 error = errno;
975                 VLOG_ERR("%s: fsync failed (%s)", dir, ovs_strerror(error));
976             }
977         }
978         close(fd);
979     } else {
980         error = errno;
981         VLOG_ERR("%s: open failed (%s)", dir, ovs_strerror(error));
982     }
983     free(dir);
984
985     return error;
986 }
987
988 /* Obtains the modification time of the file named 'file_name' to the greatest
989  * supported precision.  If successful, stores the mtime in '*mtime' and
990  * returns 0.  On error, returns a positive errno value and stores zeros in
991  * '*mtime'. */
992 int
993 get_mtime(const char *file_name, struct timespec *mtime)
994 {
995     struct stat s;
996
997     if (!stat(file_name, &s)) {
998         mtime->tv_sec = s.st_mtime;
999
1000 #if HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC
1001         mtime->tv_nsec = s.st_mtim.tv_nsec;
1002 #elif HAVE_STRUCT_STAT_ST_MTIMENSEC
1003         mtime->tv_nsec = s.st_mtimensec;
1004 #else
1005         mtime->tv_nsec = 0;
1006 #endif
1007
1008         return 0;
1009     } else {
1010         mtime->tv_sec = mtime->tv_nsec = 0;
1011         return errno;
1012     }
1013 }
1014
1015 void
1016 xpipe(int fds[2])
1017 {
1018     if (pipe(fds)) {
1019         VLOG_FATAL("failed to create pipe (%s)", ovs_strerror(errno));
1020     }
1021 }
1022
1023 void
1024 xpipe_nonblocking(int fds[2])
1025 {
1026     xpipe(fds);
1027     xset_nonblocking(fds[0]);
1028     xset_nonblocking(fds[1]);
1029 }
1030
1031 void
1032 xsocketpair(int domain, int type, int protocol, int fds[2])
1033 {
1034     if (socketpair(domain, type, protocol, fds)) {
1035         VLOG_FATAL("failed to create socketpair (%s)", ovs_strerror(errno));
1036     }
1037 }
1038
1039 static int
1040 getsockopt_int(int fd, int level, int option, const char *optname, int *valuep)
1041 {
1042     static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 10);
1043     socklen_t len;
1044     int value;
1045     int error;
1046
1047     len = sizeof value;
1048     if (getsockopt(fd, level, option, &value, &len)) {
1049         error = errno;
1050         VLOG_ERR_RL(&rl, "getsockopt(%s): %s", optname, ovs_strerror(error));
1051     } else if (len != sizeof value) {
1052         error = EINVAL;
1053         VLOG_ERR_RL(&rl, "getsockopt(%s): value is %u bytes (expected %"PRIuSIZE")",
1054                     optname, (unsigned int) len, sizeof value);
1055     } else {
1056         error = 0;
1057     }
1058
1059     *valuep = error ? 0 : value;
1060     return error;
1061 }
1062
1063 static void
1064 describe_sockaddr(struct ds *string, int fd,
1065                   int (*getaddr)(int, struct sockaddr *, socklen_t *))
1066 {
1067     struct sockaddr_storage ss;
1068     socklen_t len = sizeof ss;
1069
1070     if (!getaddr(fd, (struct sockaddr *) &ss, &len)) {
1071         if (ss.ss_family == AF_INET) {
1072             struct sockaddr_in sin;
1073
1074             memcpy(&sin, &ss, sizeof sin);
1075             ds_put_format(string, IP_FMT":%"PRIu16,
1076                           IP_ARGS(sin.sin_addr.s_addr), ntohs(sin.sin_port));
1077         } else if (ss.ss_family == AF_UNIX) {
1078             struct sockaddr_un sun;
1079             const char *null;
1080             size_t maxlen;
1081
1082             memcpy(&sun, &ss, sizeof sun);
1083             maxlen = len - offsetof(struct sockaddr_un, sun_path);
1084             null = memchr(sun.sun_path, '\0', maxlen);
1085             ds_put_buffer(string, sun.sun_path,
1086                           null ? null - sun.sun_path : maxlen);
1087         }
1088 #ifdef HAVE_NETLINK
1089         else if (ss.ss_family == AF_NETLINK) {
1090             int protocol;
1091
1092 /* SO_PROTOCOL was introduced in 2.6.32.  Support it regardless of the version
1093  * of the Linux kernel headers in use at build time. */
1094 #ifndef SO_PROTOCOL
1095 #define SO_PROTOCOL 38
1096 #endif
1097
1098             if (!getsockopt_int(fd, SOL_SOCKET, SO_PROTOCOL, "SO_PROTOCOL",
1099                                 &protocol)) {
1100                 switch (protocol) {
1101                 case NETLINK_ROUTE:
1102                     ds_put_cstr(string, "NETLINK_ROUTE");
1103                     break;
1104
1105                 case NETLINK_GENERIC:
1106                     ds_put_cstr(string, "NETLINK_GENERIC");
1107                     break;
1108
1109                 default:
1110                     ds_put_format(string, "AF_NETLINK family %d", protocol);
1111                     break;
1112                 }
1113             } else {
1114                 ds_put_cstr(string, "AF_NETLINK");
1115             }
1116         }
1117 #endif
1118 #if AF_PACKET && LINUX_DATAPATH
1119         else if (ss.ss_family == AF_PACKET) {
1120             struct sockaddr_ll sll;
1121
1122             memcpy(&sll, &ss, sizeof sll);
1123             ds_put_cstr(string, "AF_PACKET");
1124             if (sll.sll_ifindex) {
1125                 char name[IFNAMSIZ];
1126
1127                 if (if_indextoname(sll.sll_ifindex, name)) {
1128                     ds_put_format(string, "(%s)", name);
1129                 } else {
1130                     ds_put_format(string, "(ifindex=%d)", sll.sll_ifindex);
1131                 }
1132             }
1133             if (sll.sll_protocol) {
1134                 ds_put_format(string, "(protocol=0x%"PRIu16")",
1135                               ntohs(sll.sll_protocol));
1136             }
1137         }
1138 #endif
1139         else if (ss.ss_family == AF_UNSPEC) {
1140             ds_put_cstr(string, "AF_UNSPEC");
1141         } else {
1142             ds_put_format(string, "AF_%d", (int) ss.ss_family);
1143         }
1144     }
1145 }
1146
1147
1148 #ifdef LINUX_DATAPATH
1149 static void
1150 put_fd_filename(struct ds *string, int fd)
1151 {
1152     char buf[1024];
1153     char *linkname;
1154     int n;
1155
1156     linkname = xasprintf("/proc/self/fd/%d", fd);
1157     n = readlink(linkname, buf, sizeof buf);
1158     if (n > 0) {
1159         ds_put_char(string, ' ');
1160         ds_put_buffer(string, buf, n);
1161         if (n > sizeof buf) {
1162             ds_put_cstr(string, "...");
1163         }
1164     }
1165     free(linkname);
1166 }
1167 #endif
1168
1169 /* Returns a malloc()'d string describing 'fd', for use in logging. */
1170 char *
1171 describe_fd(int fd)
1172 {
1173     struct ds string;
1174     struct stat s;
1175
1176     ds_init(&string);
1177     if (fstat(fd, &s)) {
1178         ds_put_format(&string, "fstat failed (%s)", ovs_strerror(errno));
1179     } else if (S_ISSOCK(s.st_mode)) {
1180         describe_sockaddr(&string, fd, getsockname);
1181         ds_put_cstr(&string, "<->");
1182         describe_sockaddr(&string, fd, getpeername);
1183     } else {
1184         ds_put_cstr(&string, (isatty(fd) ? "tty"
1185                               : S_ISDIR(s.st_mode) ? "directory"
1186                               : S_ISCHR(s.st_mode) ? "character device"
1187                               : S_ISBLK(s.st_mode) ? "block device"
1188                               : S_ISREG(s.st_mode) ? "file"
1189                               : S_ISFIFO(s.st_mode) ? "FIFO"
1190                               : S_ISLNK(s.st_mode) ? "symbolic link"
1191                               : "unknown"));
1192 #ifdef LINUX_DATAPATH
1193         put_fd_filename(&string, fd);
1194 #endif
1195     }
1196     return ds_steal_cstr(&string);
1197 }
1198
1199 /* Returns the total of the 'iov_len' members of the 'n_iovs' in 'iovs'.
1200  * The caller must ensure that the total does not exceed SIZE_MAX. */
1201 size_t
1202 iovec_len(const struct iovec iovs[], size_t n_iovs)
1203 {
1204     size_t len = 0;
1205     size_t i;
1206
1207     for (i = 0; i < n_iovs; i++) {
1208         len += iovs[i].iov_len;
1209     }
1210     return len;
1211 }
1212
1213 /* Returns true if all of the 'n_iovs' iovecs in 'iovs' have length zero. */
1214 bool
1215 iovec_is_empty(const struct iovec iovs[], size_t n_iovs)
1216 {
1217     size_t i;
1218
1219     for (i = 0; i < n_iovs; i++) {
1220         if (iovs[i].iov_len) {
1221             return false;
1222         }
1223     }
1224     return true;
1225 }
1226
1227 /* Sends the 'n_iovs' iovecs of data in 'iovs' and the 'n_fds' file descriptors
1228  * in 'fds' on Unix domain socket 'sock'.  Returns the number of bytes
1229  * successfully sent or -1 if an error occurred.  On error, sets errno
1230  * appropriately.  */
1231 int
1232 send_iovec_and_fds(int sock,
1233                    const struct iovec *iovs, size_t n_iovs,
1234                    const int fds[], size_t n_fds)
1235 {
1236     ovs_assert(sock >= 0);
1237     if (n_fds > 0) {
1238         union {
1239             struct cmsghdr cm;
1240             char control[CMSG_SPACE(SOUTIL_MAX_FDS * sizeof *fds)];
1241         } cmsg;
1242         struct msghdr msg;
1243
1244         ovs_assert(!iovec_is_empty(iovs, n_iovs));
1245         ovs_assert(n_fds <= SOUTIL_MAX_FDS);
1246
1247         memset(&cmsg, 0, sizeof cmsg);
1248         cmsg.cm.cmsg_len = CMSG_LEN(n_fds * sizeof *fds);
1249         cmsg.cm.cmsg_level = SOL_SOCKET;
1250         cmsg.cm.cmsg_type = SCM_RIGHTS;
1251         memcpy(CMSG_DATA(&cmsg.cm), fds, n_fds * sizeof *fds);
1252
1253         msg.msg_name = NULL;
1254         msg.msg_namelen = 0;
1255         msg.msg_iov = CONST_CAST(struct iovec *, iovs);
1256         msg.msg_iovlen = n_iovs;
1257         msg.msg_control = &cmsg.cm;
1258         msg.msg_controllen = CMSG_SPACE(n_fds * sizeof *fds);
1259         msg.msg_flags = 0;
1260
1261         return sendmsg(sock, &msg, 0);
1262     } else {
1263         return writev(sock, iovs, n_iovs);
1264     }
1265 }
1266
1267 /* Sends the 'n_iovs' iovecs of data in 'iovs' and the 'n_fds' file descriptors
1268  * in 'fds' on Unix domain socket 'sock'.  If 'skip_bytes' is nonzero, then the
1269  * first 'skip_bytes' of data in the iovecs are not sent, and none of the file
1270  * descriptors are sent.  The function continues to retry sending until an
1271  * error (other than EINTR) occurs or all the data and fds are sent.
1272  *
1273  * Returns 0 if all the data and fds were successfully sent, otherwise a
1274  * positive errno value.  Regardless of success, stores the number of bytes
1275  * sent (always at least 'skip_bytes') in '*bytes_sent'.  (If at least one byte
1276  * is sent, then all the fds have been sent.)
1277  *
1278  * 'skip_bytes' must be less than or equal to iovec_len(iovs, n_iovs). */
1279 int
1280 send_iovec_and_fds_fully(int sock,
1281                          const struct iovec iovs[], size_t n_iovs,
1282                          const int fds[], size_t n_fds,
1283                          size_t skip_bytes, size_t *bytes_sent)
1284 {
1285     *bytes_sent = 0;
1286     while (n_iovs > 0) {
1287         int retval;
1288
1289         if (skip_bytes) {
1290             retval = skip_bytes;
1291             skip_bytes = 0;
1292         } else if (!*bytes_sent) {
1293             retval = send_iovec_and_fds(sock, iovs, n_iovs, fds, n_fds);
1294         } else {
1295             retval = writev(sock, iovs, n_iovs);
1296         }
1297
1298         if (retval > 0) {
1299             *bytes_sent += retval;
1300             while (retval > 0) {
1301                 const uint8_t *base = iovs->iov_base;
1302                 size_t len = iovs->iov_len;
1303
1304                 if (retval < len) {
1305                     size_t sent;
1306                     int error;
1307
1308                     error = write_fully(sock, base + retval, len - retval,
1309                                         &sent);
1310                     *bytes_sent += sent;
1311                     retval += sent;
1312                     if (error) {
1313                         return error;
1314                     }
1315                 }
1316                 retval -= len;
1317                 iovs++;
1318                 n_iovs--;
1319             }
1320         } else if (retval == 0) {
1321             if (iovec_is_empty(iovs, n_iovs)) {
1322                 break;
1323             }
1324             VLOG_WARN("send returned 0");
1325             return EPROTO;
1326         } else if (errno != EINTR) {
1327             return errno;
1328         }
1329     }
1330
1331     return 0;
1332 }
1333
1334 /* Sends the 'n_iovs' iovecs of data in 'iovs' and the 'n_fds' file descriptors
1335  * in 'fds' on Unix domain socket 'sock'.  The function continues to retry
1336  * sending until an error (other than EAGAIN or EINTR) occurs or all the data
1337  * and fds are sent.  Upon EAGAIN, the function blocks until the socket is
1338  * ready for more data.
1339  *
1340  * Returns 0 if all the data and fds were successfully sent, otherwise a
1341  * positive errno value. */
1342 int
1343 send_iovec_and_fds_fully_block(int sock,
1344                                const struct iovec iovs[], size_t n_iovs,
1345                                const int fds[], size_t n_fds)
1346 {
1347     size_t sent = 0;
1348
1349     for (;;) {
1350         int error;
1351
1352         error = send_iovec_and_fds_fully(sock, iovs, n_iovs,
1353                                          fds, n_fds, sent, &sent);
1354         if (error != EAGAIN) {
1355             return error;
1356         }
1357         poll_fd_wait(sock, POLLOUT);
1358         poll_block();
1359     }
1360 }
1361
1362 /* Attempts to receive from Unix domain socket 'sock' up to 'size' bytes of
1363  * data into 'data' and up to SOUTIL_MAX_FDS file descriptors into 'fds'.
1364  *
1365  *      - Upon success, returns the number of bytes of data copied into 'data'
1366  *        and stores the number of received file descriptors into '*n_fdsp'.
1367  *
1368  *      - On failure, returns a negative errno value and stores 0 in
1369  *        '*n_fdsp'.
1370  *
1371  *      - On EOF, returns 0 and stores 0 in '*n_fdsp'. */
1372 int
1373 recv_data_and_fds(int sock,
1374                   void *data, size_t size,
1375                   int fds[SOUTIL_MAX_FDS], size_t *n_fdsp)
1376 {
1377     union {
1378         struct cmsghdr cm;
1379         char control[CMSG_SPACE(SOUTIL_MAX_FDS * sizeof *fds)];
1380     } cmsg;
1381     struct msghdr msg;
1382     int retval;
1383     struct cmsghdr *p;
1384     size_t i;
1385
1386     *n_fdsp = 0;
1387
1388     do {
1389         struct iovec iov;
1390
1391         iov.iov_base = data;
1392         iov.iov_len = size;
1393
1394         msg.msg_name = NULL;
1395         msg.msg_namelen = 0;
1396         msg.msg_iov = &iov;
1397         msg.msg_iovlen = 1;
1398         msg.msg_control = &cmsg.cm;
1399         msg.msg_controllen = sizeof cmsg.control;
1400         msg.msg_flags = 0;
1401
1402         retval = recvmsg(sock, &msg, 0);
1403     } while (retval < 0 && errno == EINTR);
1404     if (retval <= 0) {
1405         return retval < 0 ? -errno : 0;
1406     }
1407
1408     for (p = CMSG_FIRSTHDR(&msg); p; p = CMSG_NXTHDR(&msg, p)) {
1409         if (p->cmsg_level != SOL_SOCKET || p->cmsg_type != SCM_RIGHTS) {
1410             VLOG_ERR("unexpected control message %d:%d",
1411                      p->cmsg_level, p->cmsg_type);
1412             goto error;
1413         } else if (*n_fdsp) {
1414             VLOG_ERR("multiple SCM_RIGHTS received");
1415             goto error;
1416         } else {
1417             size_t n_fds = (p->cmsg_len - CMSG_LEN(0)) / sizeof *fds;
1418             const int *fds_data = ALIGNED_CAST(const int *, CMSG_DATA(p));
1419
1420             ovs_assert(n_fds > 0);
1421             if (n_fds > SOUTIL_MAX_FDS) {
1422                 VLOG_ERR("%"PRIuSIZE" fds received but only %d supported",
1423                          n_fds, SOUTIL_MAX_FDS);
1424                 for (i = 0; i < n_fds; i++) {
1425                     close(fds_data[i]);
1426                 }
1427                 goto error;
1428             }
1429
1430             *n_fdsp = n_fds;
1431             memcpy(fds, fds_data, n_fds * sizeof *fds);
1432         }
1433     }
1434
1435     return retval;
1436
1437 error:
1438     for (i = 0; i < *n_fdsp; i++) {
1439         close(fds[i]);
1440     }
1441     *n_fdsp = 0;
1442     return EPROTO;
1443 }
1444
1445 /* Calls ioctl() on an AF_INET sock, passing the specified 'command' and
1446  * 'arg'.  Returns 0 if successful, otherwise a positive errno value. */
1447 int
1448 af_inet_ioctl(unsigned long int command, const void *arg)
1449 {
1450     static struct ovsthread_once once = OVSTHREAD_ONCE_INITIALIZER;
1451     static int sock;
1452
1453     if (ovsthread_once_start(&once)) {
1454         sock = socket(AF_INET, SOCK_DGRAM, 0);
1455         if (sock < 0) {
1456             sock = -errno;
1457             VLOG_ERR("failed to create inet socket: %s", ovs_strerror(errno));
1458         }
1459         ovsthread_once_done(&once);
1460     }
1461
1462     return (sock < 0 ? -sock
1463             : ioctl(sock, command, arg) == -1 ? errno
1464             : 0);
1465 }
1466
1467 int
1468 af_inet_ifreq_ioctl(const char *name, struct ifreq *ifr, unsigned long int cmd,
1469                     const char *cmd_name)
1470 {
1471     int error;
1472
1473     ovs_strzcpy(ifr->ifr_name, name, sizeof ifr->ifr_name);
1474     error = af_inet_ioctl(cmd, ifr);
1475     if (error) {
1476         static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 20);
1477         VLOG_DBG_RL(&rl, "%s: ioctl(%s) failed: %s", name, cmd_name,
1478                     ovs_strerror(error));
1479     }
1480     return error;
1481 }
1482