blob: 71ac12e87b99bb490e1e5eaa41e9abb6331d813a [file] [log] [blame]
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001/*
2 *
Craig Tiller06059952015-02-18 08:34:56 -08003 * Copyright 2015, Google Inc.
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004 * 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
ctiller18b49ab2014-12-09 14:39:16 -080034#include "src/core/iomgr/sockaddr_utils.h"
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080035
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080036#include <errno.h>
ctiller18b49ab2014-12-09 14:39:16 -080037#include <string.h>
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080038
Craig Tiller1b22b9d2015-07-20 13:42:22 -070039#ifdef GPR_POSIX_SOCKET
40#include <sys/un.h>
41#endif
42
43#include <grpc/support/alloc.h>
nnoble0c475f02014-12-05 15:37:39 -080044#include <grpc/support/host_port.h>
nnoble0c475f02014-12-05 15:37:39 -080045#include <grpc/support/log.h>
46#include <grpc/support/port_platform.h>
Masood Malekghassemi701af602015-06-03 15:01:17 -070047#include <grpc/support/string_util.h>
nnoble0c475f02014-12-05 15:37:39 -080048
Craig Tiller1b22b9d2015-07-20 13:42:22 -070049#include "src/core/support/string.h"
50
nnoble0c475f02014-12-05 15:37:39 -080051static const gpr_uint8 kV4MappedPrefix[] = {0, 0, 0, 0, 0, 0,
52 0, 0, 0, 0, 0xff, 0xff};
53
54int grpc_sockaddr_is_v4mapped(const struct sockaddr *addr,
55 struct sockaddr_in *addr4_out) {
56 GPR_ASSERT(addr != (struct sockaddr *)addr4_out);
57 if (addr->sa_family == AF_INET6) {
58 const struct sockaddr_in6 *addr6 = (const struct sockaddr_in6 *)addr;
59 if (memcmp(addr6->sin6_addr.s6_addr, kV4MappedPrefix,
60 sizeof(kV4MappedPrefix)) == 0) {
61 if (addr4_out != NULL) {
62 /* Normalize ::ffff:0.0.0.0/96 to IPv4. */
63 memset(addr4_out, 0, sizeof(*addr4_out));
64 addr4_out->sin_family = AF_INET;
65 /* s6_addr32 would be nice, but it's non-standard. */
66 memcpy(&addr4_out->sin_addr, &addr6->sin6_addr.s6_addr[12], 4);
67 addr4_out->sin_port = addr6->sin6_port;
68 }
69 return 1;
70 }
71 }
72 return 0;
73}
74
75int grpc_sockaddr_to_v4mapped(const struct sockaddr *addr,
76 struct sockaddr_in6 *addr6_out) {
77 GPR_ASSERT(addr != (struct sockaddr *)addr6_out);
78 if (addr->sa_family == AF_INET) {
79 const struct sockaddr_in *addr4 = (const struct sockaddr_in *)addr;
80 memset(addr6_out, 0, sizeof(*addr6_out));
81 addr6_out->sin6_family = AF_INET6;
82 memcpy(&addr6_out->sin6_addr.s6_addr[0], kV4MappedPrefix, 12);
83 memcpy(&addr6_out->sin6_addr.s6_addr[12], &addr4->sin_addr, 4);
84 addr6_out->sin6_port = addr4->sin_port;
85 return 1;
86 }
87 return 0;
88}
89
90int grpc_sockaddr_is_wildcard(const struct sockaddr *addr, int *port_out) {
91 struct sockaddr_in addr4_normalized;
92 if (grpc_sockaddr_is_v4mapped(addr, &addr4_normalized)) {
93 addr = (struct sockaddr *)&addr4_normalized;
94 }
95 if (addr->sa_family == AF_INET) {
96 /* Check for 0.0.0.0 */
97 const struct sockaddr_in *addr4 = (const struct sockaddr_in *)addr;
98 if (addr4->sin_addr.s_addr != 0) {
99 return 0;
100 }
101 *port_out = ntohs(addr4->sin_port);
102 return 1;
103 } else if (addr->sa_family == AF_INET6) {
104 /* Check for :: */
105 const struct sockaddr_in6 *addr6 = (const struct sockaddr_in6 *)addr;
106 int i;
107 for (i = 0; i < 16; i++) {
108 if (addr6->sin6_addr.s6_addr[i] != 0) {
109 return 0;
110 }
111 }
112 *port_out = ntohs(addr6->sin6_port);
113 return 1;
114 } else {
115 return 0;
116 }
117}
118
119void grpc_sockaddr_make_wildcards(int port, struct sockaddr_in *wild4_out,
120 struct sockaddr_in6 *wild6_out) {
Nicolas "Pixel" Noble0f3ec822015-02-05 19:40:38 +0100121 grpc_sockaddr_make_wildcard4(port, wild4_out);
122 grpc_sockaddr_make_wildcard6(port, wild6_out);
123}
nnoble0c475f02014-12-05 15:37:39 -0800124
Nicolas "Pixel" Noble0f3ec822015-02-05 19:40:38 +0100125void grpc_sockaddr_make_wildcard4(int port, struct sockaddr_in *wild_out) {
126 memset(wild_out, 0, sizeof(*wild_out));
127 wild_out->sin_family = AF_INET;
128 wild_out->sin_port = htons(port);
129}
130
131void grpc_sockaddr_make_wildcard6(int port, struct sockaddr_in6 *wild_out) {
132 memset(wild_out, 0, sizeof(*wild_out));
133 wild_out->sin6_family = AF_INET6;
134 wild_out->sin6_port = htons(port);
nnoble0c475f02014-12-05 15:37:39 -0800135}
136
137int grpc_sockaddr_to_string(char **out, const struct sockaddr *addr,
138 int normalize) {
139 const int save_errno = errno;
140 struct sockaddr_in addr_normalized;
141 char ntop_buf[INET6_ADDRSTRLEN];
142 const void *ip = NULL;
143 int port;
144 int ret;
145
146 *out = NULL;
147 if (normalize && grpc_sockaddr_is_v4mapped(addr, &addr_normalized)) {
148 addr = (const struct sockaddr *)&addr_normalized;
149 }
150 if (addr->sa_family == AF_INET) {
151 const struct sockaddr_in *addr4 = (const struct sockaddr_in *)addr;
152 ip = &addr4->sin_addr;
153 port = ntohs(addr4->sin_port);
154 } else if (addr->sa_family == AF_INET6) {
155 const struct sockaddr_in6 *addr6 = (const struct sockaddr_in6 *)addr;
156 ip = &addr6->sin6_addr;
157 port = ntohs(addr6->sin6_port);
158 }
159 if (ip != NULL &&
160 inet_ntop(addr->sa_family, ip, ntop_buf, sizeof(ntop_buf)) != NULL) {
161 ret = gpr_join_host_port(out, ntop_buf, port);
162 } else {
163 ret = gpr_asprintf(out, "(sockaddr family=%d)", addr->sa_family);
164 }
165 /* This is probably redundant, but we wouldn't want to log the wrong error. */
166 errno = save_errno;
167 return ret;
168}
ctiller570d1f42015-01-12 16:29:52 -0800169
Craig Tiller1b22b9d2015-07-20 13:42:22 -0700170char *grpc_sockaddr_to_uri(const struct sockaddr *addr) {
171 char *temp;
172 char *result;
173
174 switch (addr->sa_family) {
175 case AF_INET:
176 grpc_sockaddr_to_string(&temp, addr, 0);
177 gpr_asprintf(&result, "ipv4:%s", temp);
178 gpr_free(temp);
179 return result;
180 case AF_INET6:
181 grpc_sockaddr_to_string(&temp, addr, 0);
182 gpr_asprintf(&result, "ipv6:%s", temp);
183 gpr_free(temp);
184 return result;
185#ifdef GPR_POSIX_SOCKET
186 case AF_UNIX:
187 gpr_asprintf(&result, "unix:%s", ((struct sockaddr_un *)addr)->sun_path);
188 return result;
189#endif
190 }
191
192 return NULL;
193}
194
ctiller570d1f42015-01-12 16:29:52 -0800195int grpc_sockaddr_get_port(const struct sockaddr *addr) {
196 switch (addr->sa_family) {
197 case AF_INET:
198 return ntohs(((struct sockaddr_in *)addr)->sin_port);
199 case AF_INET6:
200 return ntohs(((struct sockaddr_in6 *)addr)->sin6_port);
Craig Tillerae7fe922015-02-13 23:16:32 -0800201 case AF_UNIX:
202 return 1;
ctiller570d1f42015-01-12 16:29:52 -0800203 default:
Craig Tiller35696192015-05-24 15:00:37 -0700204 gpr_log(GPR_ERROR, "Unknown socket family %d in grpc_sockaddr_get_port", addr->sa_family);
ctiller570d1f42015-01-12 16:29:52 -0800205 return 0;
206 }
207}
208
209int grpc_sockaddr_set_port(const struct sockaddr *addr, int port) {
210 switch (addr->sa_family) {
211 case AF_INET:
212 ((struct sockaddr_in *)addr)->sin_port = htons(port);
213 return 1;
214 case AF_INET6:
215 ((struct sockaddr_in6 *)addr)->sin6_port = htons(port);
216 return 1;
217 default:
Craig Tiller35696192015-05-24 15:00:37 -0700218 gpr_log(GPR_ERROR, "Unknown socket family %d in grpc_sockaddr_set_port", addr->sa_family);
ctiller570d1f42015-01-12 16:29:52 -0800219 return 0;
220 }
Craig Tiller190d3602015-02-18 09:23:38 -0800221}