LCOV - code coverage report
Current view: top level - src/core/iomgr - socket_utils_common_posix.c (source / functions) Hit Total Coverage
Test: tmp.zDYK9MVh93 Lines: 65 75 86.7 %
Date: 2015-10-10 Functions: 9 9 100.0 %

          Line data    Source code
       1             : /*
       2             :  *
       3             :  * Copyright 2015, Google Inc.
       4             :  * All rights reserved.
       5             :  *
       6             :  * Redistribution and use in source and binary forms, with or without
       7             :  * modification, are permitted provided that the following conditions are
       8             :  * met:
       9             :  *
      10             :  *     * Redistributions of source code must retain the above copyright
      11             :  * notice, this list of conditions and the following disclaimer.
      12             :  *     * Redistributions in binary form must reproduce the above
      13             :  * copyright notice, this list of conditions and the following disclaimer
      14             :  * in the documentation and/or other materials provided with the
      15             :  * distribution.
      16             :  *     * Neither the name of Google Inc. nor the names of its
      17             :  * contributors may be used to endorse or promote products derived from
      18             :  * this software without specific prior written permission.
      19             :  *
      20             :  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
      21             :  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
      22             :  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
      23             :  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
      24             :  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
      25             :  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
      26             :  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
      27             :  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
      28             :  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
      29             :  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
      30             :  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
      31             :  *
      32             :  */
      33             : 
      34             : #include <grpc/support/port_platform.h>
      35             : 
      36             : #ifdef GPR_POSIX_SOCKET
      37             : 
      38             : #include "src/core/iomgr/socket_utils_posix.h"
      39             : 
      40             : #include <arpa/inet.h>
      41             : #include <limits.h>
      42             : #include <fcntl.h>
      43             : #include <netinet/in.h>
      44             : #include <netinet/tcp.h>
      45             : #include <stdio.h>
      46             : #include <sys/types.h>
      47             : #include <sys/socket.h>
      48             : #include <unistd.h>
      49             : #include <string.h>
      50             : #include <errno.h>
      51             : 
      52             : #include "src/core/iomgr/sockaddr_utils.h"
      53             : #include "src/core/support/string.h"
      54             : #include <grpc/support/host_port.h>
      55             : #include <grpc/support/log.h>
      56             : #include <grpc/support/port_platform.h>
      57             : #include <grpc/support/sync.h>
      58             : 
      59             : /* set a socket to non blocking mode */
      60        6728 : int grpc_set_socket_nonblocking(int fd, int non_blocking) {
      61        6728 :   int oldflags = fcntl(fd, F_GETFL, 0);
      62        6728 :   if (oldflags < 0) {
      63           0 :     return 0;
      64             :   }
      65             : 
      66        6728 :   if (non_blocking) {
      67        6728 :     oldflags |= O_NONBLOCK;
      68             :   } else {
      69           0 :     oldflags &= ~O_NONBLOCK;
      70             :   }
      71             : 
      72        6728 :   if (fcntl(fd, F_SETFL, oldflags) != 0) {
      73           0 :     return 0;
      74             :   }
      75             : 
      76        6728 :   return 1;
      77             : }
      78             : 
      79        8180 : int grpc_set_socket_no_sigpipe_if_possible(int fd) {
      80             : #ifdef GPR_HAVE_SO_NOSIGPIPE
      81             :   int val = 1;
      82             :   int newval;
      83             :   socklen_t intlen = sizeof(newval);
      84             :   return 0 == setsockopt(fd, SOL_SOCKET, SO_NOSIGPIPE, &val, sizeof(val)) &&
      85             :          0 == getsockopt(fd, SOL_SOCKET, SO_NOSIGPIPE, &newval, &intlen) &&
      86             :          (newval != 0) == val;
      87             : #else
      88        8180 :   return 1;
      89             : #endif
      90             : }
      91             : 
      92             : /* set a socket to close on exec */
      93        6628 : int grpc_set_socket_cloexec(int fd, int close_on_exec) {
      94        6628 :   int oldflags = fcntl(fd, F_GETFD, 0);
      95        6628 :   if (oldflags < 0) {
      96           0 :     return 0;
      97             :   }
      98             : 
      99        6628 :   if (close_on_exec) {
     100        6628 :     oldflags |= FD_CLOEXEC;
     101             :   } else {
     102           0 :     oldflags &= ~FD_CLOEXEC;
     103             :   }
     104             : 
     105        6628 :   if (fcntl(fd, F_SETFD, oldflags) != 0) {
     106           0 :     return 0;
     107             :   }
     108             : 
     109        6628 :   return 1;
     110             : }
     111             : 
     112             : /* set a socket to reuse old addresses */
     113        1476 : int grpc_set_socket_reuse_addr(int fd, int reuse) {
     114        1476 :   int val = (reuse != 0);
     115             :   int newval;
     116        1476 :   socklen_t intlen = sizeof(newval);
     117        4428 :   return 0 == setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &val, sizeof(val)) &&
     118        2952 :          0 == getsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &newval, &intlen) &&
     119        1476 :          (newval != 0) == val;
     120             : }
     121             : 
     122             : /* disable nagle */
     123        5972 : int grpc_set_socket_low_latency(int fd, int low_latency) {
     124        5972 :   int val = (low_latency != 0);
     125             :   int newval;
     126        5972 :   socklen_t intlen = sizeof(newval);
     127       17916 :   return 0 == setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &val, sizeof(val)) &&
     128       11944 :          0 == getsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &newval, &intlen) &&
     129        5972 :          (newval != 0) == val;
     130             : }
     131             : 
     132             : static gpr_once g_probe_ipv6_once = GPR_ONCE_INIT;
     133             : static int g_ipv6_loopback_available;
     134             : 
     135         416 : static void probe_ipv6_once(void) {
     136         416 :   int fd = socket(AF_INET6, SOCK_STREAM, 0);
     137         416 :   g_ipv6_loopback_available = 0;
     138         416 :   if (fd < 0) {
     139           0 :     gpr_log(GPR_INFO, "Disabling AF_INET6 sockets because socket() failed.");
     140             :   } else {
     141             :     struct sockaddr_in6 addr;
     142         416 :     memset(&addr, 0, sizeof(addr));
     143         416 :     addr.sin6_family = AF_INET6;
     144         416 :     addr.sin6_addr.s6_addr[15] = 1; /* [::1]:0 */
     145         416 :     if (bind(fd, (struct sockaddr *)&addr, sizeof(addr)) == 0) {
     146         416 :       g_ipv6_loopback_available = 1;
     147             :     } else {
     148           0 :       gpr_log(GPR_INFO,
     149             :               "Disabling AF_INET6 sockets because ::1 is not available.");
     150             :     }
     151         416 :     close(fd);
     152             :   }
     153         416 : }
     154             : 
     155        5963 : int grpc_ipv6_loopback_available(void) {
     156        5963 :   gpr_once_init(&g_probe_ipv6_once, probe_ipv6_once);
     157        5963 :   return g_ipv6_loopback_available;
     158             : }
     159             : 
     160             : /* This should be 0 in production, but it may be enabled for testing or
     161             :    debugging purposes, to simulate an environment where IPv6 sockets can't
     162             :    also speak IPv4. */
     163             : int grpc_forbid_dualstack_sockets_for_testing = 0;
     164             : 
     165        5961 : static int set_socket_dualstack(int fd) {
     166        5961 :   if (!grpc_forbid_dualstack_sockets_for_testing) {
     167        5807 :     const int off = 0;
     168        5807 :     return 0 == setsockopt(fd, IPPROTO_IPV6, IPV6_V6ONLY, &off, sizeof(off));
     169             :   } else {
     170             :     /* Force an IPv6-only socket, for testing purposes. */
     171         154 :     const int on = 1;
     172         154 :     setsockopt(fd, IPPROTO_IPV6, IPV6_V6ONLY, &on, sizeof(on));
     173         154 :     return 0;
     174             :   }
     175             : }
     176             : 
     177        6628 : int grpc_create_dualstack_socket(const struct sockaddr *addr, int type,
     178             :                                  int protocol, grpc_dualstack_mode *dsmode) {
     179        6628 :   int family = addr->sa_family;
     180        6628 :   if (family == AF_INET6) {
     181             :     int fd;
     182        5961 :     if (grpc_ipv6_loopback_available()) {
     183        5961 :       fd = socket(family, type, protocol);
     184             :     } else {
     185           0 :       fd = -1;
     186           0 :       errno = EAFNOSUPPORT;
     187             :     }
     188             :     /* Check if we've got a valid dualstack socket. */
     189        5961 :     if (fd >= 0 && set_socket_dualstack(fd)) {
     190        5807 :       *dsmode = GRPC_DSMODE_DUALSTACK;
     191        5807 :       return fd;
     192             :     }
     193             :     /* If this isn't an IPv4 address, then return whatever we've got. */
     194         154 :     if (!grpc_sockaddr_is_v4mapped(addr, NULL)) {
     195          38 :       *dsmode = GRPC_DSMODE_IPV6;
     196          38 :       return fd;
     197             :     }
     198             :     /* Fall back to AF_INET. */
     199         116 :     if (fd >= 0) {
     200         116 :       close(fd);
     201             :     }
     202         116 :     family = AF_INET;
     203             :   }
     204         783 :   *dsmode = family == AF_INET ? GRPC_DSMODE_IPV4 : GRPC_DSMODE_NONE;
     205         783 :   return socket(family, type, protocol);
     206             : }
     207             : 
     208             : #endif

Generated by: LCOV version 1.10