2 * Copyright (c) 2008, 2009, 2010, 2011 Nicira Networks.
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:
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
18 #include "socket-util.h"
19 #include <arpa/inet.h>
28 #include <sys/resource.h>
29 #include <sys/socket.h>
33 #include "fatal-signal.h"
37 VLOG_DEFINE_THIS_MODULE(socket_util);
39 /* #ifdefs make it a pain to maintain code: you have to try to build both ways.
40 * Thus, this file compiles all of the code regardless of the target, by
41 * writing "if (LINUX)" instead of "#ifdef __linux__". */
52 /* Sets 'fd' to non-blocking mode. Returns 0 if successful, otherwise a
53 * positive errno value. */
55 set_nonblocking(int fd)
57 int flags = fcntl(fd, F_GETFL, 0);
59 if (fcntl(fd, F_SETFL, flags | O_NONBLOCK) != -1) {
62 VLOG_ERR("fcntl(F_SETFL) failed: %s", strerror(errno));
66 VLOG_ERR("fcntl(F_GETFL) failed: %s", strerror(errno));
72 rlim_is_finite(rlim_t limit)
74 if (limit == RLIM_INFINITY) {
78 #ifdef RLIM_SAVED_CUR /* FreeBSD 8.0 lacks RLIM_SAVED_CUR. */
79 if (limit == RLIM_SAVED_CUR) {
84 #ifdef RLIM_SAVED_MAX /* FreeBSD 8.0 lacks RLIM_SAVED_MAX. */
85 if (limit == RLIM_SAVED_MAX) {
93 /* Returns the maximum valid FD value, plus 1. */
97 static int max_fds = -1;
100 if (!getrlimit(RLIMIT_NOFILE, &r) && rlim_is_finite(r.rlim_cur)) {
101 max_fds = r.rlim_cur;
103 VLOG_WARN("failed to obtain fd limit, defaulting to 1024");
110 /* Translates 'host_name', which must be a string representation of an IP
111 * address, into a numeric IP address in '*addr'. Returns 0 if successful,
112 * otherwise a positive errno value. */
114 lookup_ip(const char *host_name, struct in_addr *addr)
116 if (!inet_aton(host_name, addr)) {
117 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
118 VLOG_ERR_RL(&rl, "\"%s\" is not a valid IP address", host_name);
124 /* Translates 'host_name', which must be a string representation of an IPv6
125 * address, into a numeric IPv6 address in '*addr'. Returns 0 if successful,
126 * otherwise a positive errno value. */
128 lookup_ipv6(const char *host_name, struct in6_addr *addr)
130 if (inet_pton(AF_INET6, host_name, addr) != 1) {
131 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
132 VLOG_ERR_RL(&rl, "\"%s\" is not a valid IPv6 address", host_name);
138 /* Returns the error condition associated with socket 'fd' and resets the
139 * socket's error status. */
141 get_socket_error(int fd)
144 socklen_t len = sizeof(error);
145 if (getsockopt(fd, SOL_SOCKET, SO_ERROR, &error, &len) < 0) {
146 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 10);
148 VLOG_ERR_RL(&rl, "getsockopt(SO_ERROR): %s", strerror(error));
154 check_connection_completion(int fd)
160 pfd.events = POLLOUT;
162 retval = poll(&pfd, 1, 0);
163 } while (retval < 0 && errno == EINTR);
165 return get_socket_error(fd);
166 } else if (retval < 0) {
167 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 10);
168 VLOG_ERR_RL(&rl, "poll: %s", strerror(errno));
175 /* Drain all the data currently in the receive queue of a datagram socket (and
176 * possibly additional data). There is no way to know how many packets are in
177 * the receive queue, but we do know that the total number of bytes queued does
178 * not exceed the receive buffer size, so we pull packets until none are left
179 * or we've read that many bytes. */
183 socklen_t rcvbuf_len;
186 rcvbuf_len = sizeof rcvbuf;
187 if (getsockopt(fd, SOL_SOCKET, SO_RCVBUF, &rcvbuf, &rcvbuf_len) < 0) {
188 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 10);
189 VLOG_ERR_RL(&rl, "getsockopt(SO_RCVBUF) failed: %s", strerror(errno));
193 /* In Linux, specifying MSG_TRUNC in the flags argument causes the
194 * datagram length to be returned, even if that is longer than the
195 * buffer provided. Thus, we can use a 1-byte buffer to discard the
196 * incoming datagram and still be able to account how many bytes were
197 * removed from the receive buffer.
199 * On other Unix-like OSes, MSG_TRUNC has no effect in the flags
201 char buffer[LINUX ? 1 : 2048];
202 ssize_t n_bytes = recv(fd, buffer, sizeof buffer,
203 MSG_TRUNC | MSG_DONTWAIT);
204 if (n_bytes <= 0 || n_bytes >= rcvbuf) {
212 /* Reads and discards up to 'n' datagrams from 'fd', stopping as soon as no
213 * more data can be immediately read. ('fd' should therefore be in
214 * non-blocking mode.)*/
216 drain_fd(int fd, size_t n_packets)
218 for (; n_packets > 0; n_packets--) {
219 /* 'buffer' only needs to be 1 byte long in most circumstances. This
220 * size is defensive against the possibility that we someday want to
221 * use a Linux tap device without TUN_NO_PI, in which case a buffer
222 * smaller than sizeof(struct tun_pi) will give EINVAL on read. */
224 if (read(fd, buffer, sizeof buffer) <= 0) {
230 /* Stores in '*un' a sockaddr_un that refers to file 'name'. Stores in
231 * '*un_len' the size of the sockaddr_un. */
233 make_sockaddr_un__(const char *name, struct sockaddr_un *un, socklen_t *un_len)
235 un->sun_family = AF_UNIX;
236 strncpy(un->sun_path, name, sizeof un->sun_path);
237 un->sun_path[sizeof un->sun_path - 1] = '\0';
238 *un_len = (offsetof(struct sockaddr_un, sun_path)
239 + strlen (un->sun_path) + 1);
242 /* Stores in '*un' a sockaddr_un that refers to file 'name'. Stores in
243 * '*un_len' the size of the sockaddr_un.
245 * Returns 0 on success, otherwise a positive errno value. On success,
246 * '*dirfdp' is either -1 or a nonnegative file descriptor that the caller
247 * should close after using '*un' to bind or connect. On failure, '*dirfdp' is
250 make_sockaddr_un(const char *name, struct sockaddr_un *un, socklen_t *un_len,
253 enum { MAX_UN_LEN = sizeof un->sun_path - 1 };
256 if (strlen(name) > MAX_UN_LEN) {
257 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 1);
260 /* 'name' is too long to fit in a sockaddr_un, but we have a
261 * workaround for that on Linux: shorten it by opening a file
262 * descriptor for the directory part of the name and indirecting
263 * through /proc/self/fd/<dirfd>/<basename>. */
268 dir = dir_name(name);
269 base = base_name(name);
271 dirfd = open(dir, O_DIRECTORY | O_RDONLY);
276 short_name = xasprintf("/proc/self/fd/%d/%s", dirfd, base);
280 if (strlen(short_name) <= MAX_UN_LEN) {
281 make_sockaddr_un__(short_name, un, un_len);
289 VLOG_WARN_RL(&rl, "Unix socket name %s is longer than maximum "
290 "%d bytes (even shortened)", name, MAX_UN_LEN);
292 /* 'name' is too long and we have no workaround. */
293 VLOG_WARN_RL(&rl, "Unix socket name %s is longer than maximum "
294 "%d bytes", name, MAX_UN_LEN);
299 make_sockaddr_un__(name, un, un_len);
304 /* Creates a Unix domain socket in the given 'style' (either SOCK_DGRAM or
305 * SOCK_STREAM) that is bound to '*bind_path' (if 'bind_path' is non-null) and
306 * connected to '*connect_path' (if 'connect_path' is non-null). If 'nonblock'
307 * is true, the socket is made non-blocking. If 'passcred' is true, the socket
308 * is configured to receive SCM_CREDENTIALS control messages.
310 * Returns the socket's fd if successful, otherwise a negative errno value. */
312 make_unix_socket(int style, bool nonblock, bool passcred OVS_UNUSED,
313 const char *bind_path, const char *connect_path)
318 fd = socket(PF_UNIX, style, 0);
323 /* Set nonblocking mode right away, if we want it. This prevents blocking
324 * in connect(), if connect_path != NULL. (In turn, that's a corner case:
325 * it will only happen if style is SOCK_STREAM or SOCK_SEQPACKET, and only
326 * if a backlog of un-accepted connections has built up in the kernel.) */
328 int flags = fcntl(fd, F_GETFL, 0);
333 if (fcntl(fd, F_SETFL, flags | O_NONBLOCK) == -1) {
340 struct sockaddr_un un;
344 if (unlink(bind_path) && errno != ENOENT) {
345 VLOG_WARN("unlinking \"%s\": %s\n", bind_path, strerror(errno));
347 fatal_signal_add_file_to_unlink(bind_path);
349 error = make_sockaddr_un(bind_path, &un, &un_len, &dirfd);
350 if (!error && (bind(fd, (struct sockaddr*) &un, un_len)
351 || fchmod(fd, S_IRWXU))) {
363 struct sockaddr_un un;
367 error = make_sockaddr_un(connect_path, &un, &un_len, &dirfd);
369 && connect(fd, (struct sockaddr*) &un, un_len)
370 && errno != EINPROGRESS) {
381 #ifdef SCM_CREDENTIALS
384 if (setsockopt(fd, SOL_SOCKET, SO_PASSCRED, &enable, sizeof(enable))) {
394 if (error == EAGAIN) {
398 fatal_signal_remove_file_to_unlink(bind_path);
405 get_unix_name_len(socklen_t sun_len)
407 return (sun_len >= offsetof(struct sockaddr_un, sun_path)
408 ? sun_len - offsetof(struct sockaddr_un, sun_path)
413 guess_netmask(uint32_t ip)
416 return ((ip >> 31) == 0 ? htonl(0xff000000) /* Class A */
417 : (ip >> 30) == 2 ? htonl(0xffff0000) /* Class B */
418 : (ip >> 29) == 6 ? htonl(0xffffff00) /* Class C */
419 : htonl(0)); /* ??? */
422 /* Parses 'target', which should be a string in the format "<host>[:<port>]".
423 * <host> is required. If 'default_port' is nonzero then <port> is optional
424 * and defaults to 'default_port'.
426 * On success, returns true and stores the parsed remote address into '*sinp'.
427 * On failure, logs an error, stores zeros into '*sinp', and returns false. */
429 inet_parse_active(const char *target_, uint16_t default_port,
430 struct sockaddr_in *sinp)
432 char *target = xstrdup(target_);
433 char *save_ptr = NULL;
434 const char *host_name;
435 const char *port_string;
439 sinp->sin_family = AF_INET;
440 sinp->sin_port = htons(default_port);
443 host_name = strtok_r(target, ":", &save_ptr);
444 port_string = strtok_r(NULL, ":", &save_ptr);
446 VLOG_ERR("%s: bad peer name format", target_);
450 /* Look up IP, port. */
451 if (lookup_ip(host_name, &sinp->sin_addr)) {
454 if (port_string && atoi(port_string)) {
455 sinp->sin_port = htons(atoi(port_string));
456 } else if (!default_port) {
457 VLOG_ERR("%s: port number must be specified", target_);
465 memset(sinp, 0, sizeof *sinp);
471 /* Opens a non-blocking IPv4 socket of the specified 'style' and connects to
472 * 'target', which should be a string in the format "<host>[:<port>]". <host>
473 * is required. If 'default_port' is nonzero then <port> is optional and
474 * defaults to 'default_port'.
476 * 'style' should be SOCK_STREAM (for TCP) or SOCK_DGRAM (for UDP).
478 * On success, returns 0 (indicating connection complete) or EAGAIN (indicating
479 * connection in progress), in which case the new file descriptor is stored
480 * into '*fdp'. On failure, returns a positive errno value other than EAGAIN
481 * and stores -1 into '*fdp'.
483 * If 'sinp' is non-null, then on success the target address is stored into
486 inet_open_active(int style, const char *target, uint16_t default_port,
487 struct sockaddr_in *sinp, int *fdp)
489 struct sockaddr_in sin;
494 if (!inet_parse_active(target, default_port, &sin)) {
495 error = EAFNOSUPPORT;
499 /* Create non-blocking socket. */
500 fd = socket(AF_INET, style, 0);
502 VLOG_ERR("%s: socket: %s", target, strerror(errno));
506 error = set_nonblocking(fd);
512 error = connect(fd, (struct sockaddr *) &sin, sizeof sin) == 0 ? 0 : errno;
513 if (error == EINPROGRESS) {
515 } else if (error && error != EAGAIN) {
519 /* Success: error is 0 or EAGAIN. */
525 if (!error || error == EAGAIN) {
536 /* Opens a non-blocking IPv4 socket of the specified 'style', binds to
537 * 'target', and listens for incoming connections. 'target' should be a string
538 * in the format "[<port>][:<ip>]":
540 * - If 'default_port' is -1, then <port> is required. Otherwise, if
541 * <port> is omitted, then 'default_port' is used instead.
543 * - If <port> (or 'default_port', if used) is 0, then no port is bound
544 * and the TCP/IP stack will select a port.
546 * - If <ip> is omitted then the IP address is wildcarded.
548 * 'style' should be SOCK_STREAM (for TCP) or SOCK_DGRAM (for UDP).
550 * For TCP, the socket will have SO_REUSEADDR turned on.
552 * On success, returns a non-negative file descriptor. On failure, returns a
553 * negative errno value.
555 * If 'sinp' is non-null, then on success the bound address is stored into
558 inet_open_passive(int style, const char *target_, int default_port,
559 struct sockaddr_in *sinp)
561 char *target = xstrdup(target_);
562 char *string_ptr = target;
563 struct sockaddr_in sin;
564 const char *host_name;
565 const char *port_string;
566 int fd = 0, error, port;
567 unsigned int yes = 1;
569 /* Address defaults. */
570 memset(&sin, 0, sizeof sin);
571 sin.sin_family = AF_INET;
572 sin.sin_addr.s_addr = htonl(INADDR_ANY);
573 sin.sin_port = htons(default_port);
575 /* Parse optional port number. */
576 port_string = strsep(&string_ptr, ":");
577 if (port_string && str_to_int(port_string, 10, &port)) {
578 sin.sin_port = htons(port);
579 } else if (default_port < 0) {
580 VLOG_ERR("%s: port number must be specified", target_);
581 error = EAFNOSUPPORT;
585 /* Parse optional bind IP. */
586 host_name = strsep(&string_ptr, ":");
587 if (host_name && host_name[0]) {
588 error = lookup_ip(host_name, &sin.sin_addr);
594 /* Create non-blocking socket, set SO_REUSEADDR. */
595 fd = socket(AF_INET, style, 0);
598 VLOG_ERR("%s: socket: %s", target_, strerror(error));
601 error = set_nonblocking(fd);
605 if (style == SOCK_STREAM
606 && setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &yes, sizeof yes) < 0) {
608 VLOG_ERR("%s: setsockopt(SO_REUSEADDR): %s", target_, strerror(error));
613 if (bind(fd, (struct sockaddr *) &sin, sizeof sin) < 0) {
615 VLOG_ERR("%s: bind: %s", target_, strerror(error));
620 if (listen(fd, 10) < 0) {
622 VLOG_ERR("%s: listen: %s", target_, strerror(error));
627 socklen_t sin_len = sizeof sin;
628 if (getsockname(fd, (struct sockaddr *) &sin, &sin_len) < 0){
630 VLOG_ERR("%s: getsockname: %s", target_, strerror(error));
633 if (sin.sin_family != AF_INET || sin_len != sizeof sin) {
634 VLOG_ERR("%s: getsockname: invalid socket name", target_);
647 return error ? -error : fd;
650 /* Returns a readable and writable fd for /dev/null, if successful, otherwise
651 * a negative errno value. The caller must not close the returned fd (because
652 * the same fd will be handed out to subsequent callers). */
656 static int null_fd = -1;
658 null_fd = open("/dev/null", O_RDWR);
661 VLOG_ERR("could not open /dev/null: %s", strerror(error));
669 read_fully(int fd, void *p_, size_t size, size_t *bytes_read)
675 ssize_t retval = read(fd, p, size);
677 *bytes_read += retval;
680 } else if (retval == 0) {
682 } else if (errno != EINTR) {
690 write_fully(int fd, const void *p_, size_t size, size_t *bytes_written)
692 const uint8_t *p = p_;
696 ssize_t retval = write(fd, p, size);
698 *bytes_written += retval;
701 } else if (retval == 0) {
702 VLOG_WARN("write returned 0");
704 } else if (errno != EINTR) {
711 /* Given file name 'file_name', fsyncs the directory in which it is contained.
712 * Returns 0 if successful, otherwise a positive errno value. */
714 fsync_parent_dir(const char *file_name)
720 dir = dir_name(file_name);
721 fd = open(dir, O_RDONLY);
724 if (errno == EINVAL || errno == EROFS) {
725 /* This directory does not support synchronization. Not
726 * really an error. */
729 VLOG_ERR("%s: fsync failed (%s)", dir, strerror(error));
735 VLOG_ERR("%s: open failed (%s)", dir, strerror(error));
742 /* Obtains the modification time of the file named 'file_name' to the greatest
743 * supported precision. If successful, stores the mtime in '*mtime' and
744 * returns 0. On error, returns a positive errno value and stores zeros in
747 get_mtime(const char *file_name, struct timespec *mtime)
751 if (!stat(file_name, &s)) {
752 mtime->tv_sec = s.st_mtime;
754 #if HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC
755 mtime->tv_nsec = s.st_mtim.tv_nsec;
756 #elif HAVE_STRUCT_STAT_ST_MTIMENSEC
757 mtime->tv_nsec = s.st_mtimensec;
764 mtime->tv_sec = mtime->tv_nsec = 0;