blob: 72955631b5cc641e5e9d4bac1ddb2b306bebbbc7 [file] [log] [blame]
murgatroid999030c812016-09-16 13:25:08 -07001/*
2 *
3 * Copyright 2016, 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 "src/core/lib/iomgr/port.h"
35
36#ifdef GRPC_UV
37
38#include <limits.h>
39#include <string.h>
40
murgatroid99e2672c92016-11-09 15:12:22 -080041#include <grpc/slice_buffer.h>
42
murgatroid999030c812016-09-16 13:25:08 -070043#include <grpc/support/alloc.h>
44#include <grpc/support/log.h>
murgatroid999030c812016-09-16 13:25:08 -070045#include <grpc/support/string_util.h>
46
47#include "src/core/lib/iomgr/error.h"
48#include "src/core/lib/iomgr/network_status_tracker.h"
murgatroid99e2672c92016-11-09 15:12:22 -080049#include "src/core/lib/iomgr/resource_quota.h"
murgatroid999030c812016-09-16 13:25:08 -070050#include "src/core/lib/iomgr/tcp_uv.h"
murgatroid994c04cf92017-01-13 11:30:53 -080051#include "src/core/lib/slice/slice_internal.h"
murgatroid99e2672c92016-11-09 15:12:22 -080052#include "src/core/lib/slice/slice_string_helpers.h"
murgatroid999030c812016-09-16 13:25:08 -070053#include "src/core/lib/support/string.h"
54
55int grpc_tcp_trace = 0;
56
57typedef struct {
58 grpc_endpoint base;
59 gpr_refcount refcount;
60
murgatroid9969259d42016-10-31 14:34:10 -070061 uv_write_t write_req;
62 uv_shutdown_t shutdown_req;
63
murgatroid999030c812016-09-16 13:25:08 -070064 uv_tcp_t *handle;
65
66 grpc_closure *read_cb;
67 grpc_closure *write_cb;
68
murgatroid99e2672c92016-11-09 15:12:22 -080069 grpc_slice read_slice;
70 grpc_slice_buffer *read_slices;
71 grpc_slice_buffer *write_slices;
murgatroid999030c812016-09-16 13:25:08 -070072 uv_buf_t *write_buffers;
73
murgatroid99e2672c92016-11-09 15:12:22 -080074 grpc_resource_user *resource_user;
murgatroid9969259d42016-10-31 14:34:10 -070075
murgatroid992c287ca2016-10-07 09:55:35 -070076 bool shutting_down;
murgatroid9969259d42016-10-31 14:34:10 -070077
murgatroid999030c812016-09-16 13:25:08 -070078 char *peer_string;
79 grpc_pollset *pollset;
80} grpc_tcp;
81
murgatroid99e2672c92016-11-09 15:12:22 -080082static void tcp_free(grpc_exec_ctx *exec_ctx, grpc_tcp *tcp) {
83 grpc_resource_user_unref(exec_ctx, tcp->resource_user);
murgatroid9969259d42016-10-31 14:34:10 -070084 gpr_free(tcp);
murgatroid9969259d42016-10-31 14:34:10 -070085}
murgatroid999030c812016-09-16 13:25:08 -070086
87/*#define GRPC_TCP_REFCOUNT_DEBUG*/
88#ifdef GRPC_TCP_REFCOUNT_DEBUG
murgatroid992e012342016-11-10 18:24:08 -080089#define TCP_UNREF(exec_ctx, tcp, reason) \
90 tcp_unref((exec_ctx), (tcp), (reason), __FILE__, __LINE__)
91#define TCP_REF(tcp, reason) \
92 tcp_ref((exec_ctx), (tcp), (reason), __FILE__, __LINE__)
93static void tcp_unref(grpc_exec_ctx *exec_ctx, grpc_tcp *tcp,
94 const char *reason, const char *file, int line) {
murgatroid999030c812016-09-16 13:25:08 -070095 gpr_log(file, line, GPR_LOG_SEVERITY_DEBUG, "TCP unref %p : %s %d -> %d", tcp,
96 reason, tcp->refcount.count, tcp->refcount.count - 1);
97 if (gpr_unref(&tcp->refcount)) {
murgatroid99e2672c92016-11-09 15:12:22 -080098 tcp_free(exec_ctx, tcp);
murgatroid999030c812016-09-16 13:25:08 -070099 }
100}
101
102static void tcp_ref(grpc_tcp *tcp, const char *reason, const char *file,
103 int line) {
104 gpr_log(file, line, GPR_LOG_SEVERITY_DEBUG, "TCP ref %p : %s %d -> %d", tcp,
105 reason, tcp->refcount.count, tcp->refcount.count + 1);
106 gpr_ref(&tcp->refcount);
107}
108#else
murgatroid99e2672c92016-11-09 15:12:22 -0800109#define TCP_UNREF(exec_ctx, tcp, reason) tcp_unref((exec_ctx), (tcp))
murgatroid999030c812016-09-16 13:25:08 -0700110#define TCP_REF(tcp, reason) tcp_ref((tcp))
murgatroid99e2672c92016-11-09 15:12:22 -0800111static void tcp_unref(grpc_exec_ctx *exec_ctx, grpc_tcp *tcp) {
murgatroid999030c812016-09-16 13:25:08 -0700112 if (gpr_unref(&tcp->refcount)) {
murgatroid99e2672c92016-11-09 15:12:22 -0800113 tcp_free(exec_ctx, tcp);
murgatroid999030c812016-09-16 13:25:08 -0700114 }
115}
116
117static void tcp_ref(grpc_tcp *tcp) { gpr_ref(&tcp->refcount); }
118#endif
119
murgatroid991191b722017-02-08 11:56:52 -0800120static void uv_close_callback(uv_handle_t *handle) {
121 grpc_exec_ctx exec_ctx = GRPC_EXEC_CTX_INIT;
122 grpc_tcp *tcp = handle->data;
123 TCP_UNREF(&exec_ctx, tcp, "destroy");
124 grpc_exec_ctx_finish(&exec_ctx);
125}
126
murgatroid99dedb9232016-09-26 13:54:04 -0700127static void alloc_uv_buf(uv_handle_t *handle, size_t suggested_size,
128 uv_buf_t *buf) {
murgatroid9969259d42016-10-31 14:34:10 -0700129 grpc_exec_ctx exec_ctx = GRPC_EXEC_CTX_INIT;
murgatroid999030c812016-09-16 13:25:08 -0700130 grpc_tcp *tcp = handle->data;
131 (void)suggested_size;
murgatroid9969259d42016-10-31 14:34:10 -0700132 tcp->read_slice = grpc_resource_user_slice_malloc(
murgatroid99e2672c92016-11-09 15:12:22 -0800133 &exec_ctx, tcp->resource_user, GRPC_TCP_DEFAULT_READ_SLICE_SIZE);
Craig Tiller618e67d2016-10-26 21:08:10 -0700134 buf->base = (char *)GRPC_SLICE_START_PTR(tcp->read_slice);
135 buf->len = GRPC_SLICE_LENGTH(tcp->read_slice);
murgatroid9969259d42016-10-31 14:34:10 -0700136 grpc_exec_ctx_finish(&exec_ctx);
murgatroid999030c812016-09-16 13:25:08 -0700137}
138
murgatroid99dedb9232016-09-26 13:54:04 -0700139static void read_callback(uv_stream_t *stream, ssize_t nread,
140 const uv_buf_t *buf) {
murgatroid99e2672c92016-11-09 15:12:22 -0800141 grpc_slice sub;
murgatroid999030c812016-09-16 13:25:08 -0700142 grpc_error *error;
143 grpc_exec_ctx exec_ctx = GRPC_EXEC_CTX_INIT;
144 grpc_tcp *tcp = stream->data;
145 grpc_closure *cb = tcp->read_cb;
146 if (nread == 0) {
147 // Nothing happened. Wait for the next callback
148 return;
149 }
murgatroid99e2672c92016-11-09 15:12:22 -0800150 TCP_UNREF(&exec_ctx, tcp, "read");
murgatroid999030c812016-09-16 13:25:08 -0700151 tcp->read_cb = NULL;
152 // TODO(murgatroid99): figure out what the return value here means
153 uv_read_stop(stream);
154 if (nread == UV_EOF) {
155 error = GRPC_ERROR_CREATE("EOF");
156 } else if (nread > 0) {
157 // Successful read
murgatroid99e2672c92016-11-09 15:12:22 -0800158 sub = grpc_slice_sub_no_ref(tcp->read_slice, 0, (size_t)nread);
159 grpc_slice_buffer_add(tcp->read_slices, sub);
murgatroid999030c812016-09-16 13:25:08 -0700160 error = GRPC_ERROR_NONE;
161 if (grpc_tcp_trace) {
162 size_t i;
163 const char *str = grpc_error_string(error);
164 gpr_log(GPR_DEBUG, "read: error=%s", str);
Craig Tiller5e01e2a2017-01-20 18:11:52 -0800165 grpc_error_free_string(str);
murgatroid999030c812016-09-16 13:25:08 -0700166 for (i = 0; i < tcp->read_slices->count; i++) {
murgatroid99e2672c92016-11-09 15:12:22 -0800167 char *dump = grpc_dump_slice(tcp->read_slices->slices[i],
murgatroid992e012342016-11-10 18:24:08 -0800168 GPR_DUMP_HEX | GPR_DUMP_ASCII);
murgatroid99dedb9232016-09-26 13:54:04 -0700169 gpr_log(GPR_DEBUG, "READ %p (peer=%s): %s", tcp, tcp->peer_string,
170 dump);
murgatroid999030c812016-09-16 13:25:08 -0700171 gpr_free(dump);
172 }
173 }
174 } else {
175 // nread < 0: Error
176 error = GRPC_ERROR_CREATE("TCP Read failed");
177 }
Craig Tiller91031da2016-12-28 15:44:25 -0800178 grpc_closure_sched(&exec_ctx, cb, error);
murgatroid999030c812016-09-16 13:25:08 -0700179 grpc_exec_ctx_finish(&exec_ctx);
180}
181
182static void uv_endpoint_read(grpc_exec_ctx *exec_ctx, grpc_endpoint *ep,
murgatroid99e2672c92016-11-09 15:12:22 -0800183 grpc_slice_buffer *read_slices, grpc_closure *cb) {
murgatroid999030c812016-09-16 13:25:08 -0700184 grpc_tcp *tcp = (grpc_tcp *)ep;
185 int status;
186 grpc_error *error = GRPC_ERROR_NONE;
187 GPR_ASSERT(tcp->read_cb == NULL);
188 tcp->read_cb = cb;
189 tcp->read_slices = read_slices;
Craig Tillerab7b2d82016-12-07 07:26:34 -0800190 grpc_slice_buffer_reset_and_unref_internal(exec_ctx, read_slices);
murgatroid999030c812016-09-16 13:25:08 -0700191 TCP_REF(tcp, "read");
192 // TODO(murgatroid99): figure out what the return value here means
murgatroid99dedb9232016-09-26 13:54:04 -0700193 status =
194 uv_read_start((uv_stream_t *)tcp->handle, alloc_uv_buf, read_callback);
murgatroid999030c812016-09-16 13:25:08 -0700195 if (status != 0) {
196 error = GRPC_ERROR_CREATE("TCP Read failed at start");
murgatroid99dedb9232016-09-26 13:54:04 -0700197 error =
198 grpc_error_set_str(error, GRPC_ERROR_STR_OS_ERROR, uv_strerror(status));
Craig Tiller91031da2016-12-28 15:44:25 -0800199 grpc_closure_sched(exec_ctx, cb, error);
murgatroid999030c812016-09-16 13:25:08 -0700200 }
201 if (grpc_tcp_trace) {
202 const char *str = grpc_error_string(error);
203 gpr_log(GPR_DEBUG, "Initiating read on %p: error=%s", tcp, str);
204 }
205}
206
207static void write_callback(uv_write_t *req, int status) {
208 grpc_tcp *tcp = req->data;
209 grpc_error *error;
210 grpc_exec_ctx exec_ctx = GRPC_EXEC_CTX_INIT;
211 grpc_closure *cb = tcp->write_cb;
212 tcp->write_cb = NULL;
murgatroid99e2672c92016-11-09 15:12:22 -0800213 TCP_UNREF(&exec_ctx, tcp, "write");
murgatroid999030c812016-09-16 13:25:08 -0700214 if (status == 0) {
215 error = GRPC_ERROR_NONE;
216 } else {
217 error = GRPC_ERROR_CREATE("TCP Write failed");
218 }
219 if (grpc_tcp_trace) {
220 const char *str = grpc_error_string(error);
221 gpr_log(GPR_DEBUG, "write complete on %p: error=%s", tcp, str);
222 }
223 gpr_free(tcp->write_buffers);
murgatroid99e2672c92016-11-09 15:12:22 -0800224 grpc_resource_user_free(&exec_ctx, tcp->resource_user,
murgatroid9969259d42016-10-31 14:34:10 -0700225 sizeof(uv_buf_t) * tcp->write_slices->count);
Craig Tiller91031da2016-12-28 15:44:25 -0800226 grpc_closure_sched(&exec_ctx, cb, error);
murgatroid999030c812016-09-16 13:25:08 -0700227 grpc_exec_ctx_finish(&exec_ctx);
228}
229
230static void uv_endpoint_write(grpc_exec_ctx *exec_ctx, grpc_endpoint *ep,
murgatroid99e2672c92016-11-09 15:12:22 -0800231 grpc_slice_buffer *write_slices,
murgatroid999030c812016-09-16 13:25:08 -0700232 grpc_closure *cb) {
233 grpc_tcp *tcp = (grpc_tcp *)ep;
234 uv_buf_t *buffers;
235 unsigned int buffer_count;
236 unsigned int i;
murgatroid99e2672c92016-11-09 15:12:22 -0800237 grpc_slice *slice;
murgatroid999030c812016-09-16 13:25:08 -0700238 uv_write_t *write_req;
239
240 if (grpc_tcp_trace) {
murgatroid99c36f6ea2016-10-03 09:24:09 -0700241 size_t j;
murgatroid999030c812016-09-16 13:25:08 -0700242
murgatroid99c36f6ea2016-10-03 09:24:09 -0700243 for (j = 0; j < write_slices->count; j++) {
murgatroid99e2672c92016-11-09 15:12:22 -0800244 char *data = grpc_dump_slice(write_slices->slices[j],
murgatroid992e012342016-11-10 18:24:08 -0800245 GPR_DUMP_HEX | GPR_DUMP_ASCII);
murgatroid999030c812016-09-16 13:25:08 -0700246 gpr_log(GPR_DEBUG, "WRITE %p (peer=%s): %s", tcp, tcp->peer_string, data);
247 gpr_free(data);
248 }
249 }
250
251 if (tcp->shutting_down) {
Craig Tiller91031da2016-12-28 15:44:25 -0800252 grpc_closure_sched(exec_ctx, cb,
Craig Tillerfb27cac2017-01-03 09:54:51 -0800253 GRPC_ERROR_CREATE("TCP socket is shutting down"));
murgatroid999030c812016-09-16 13:25:08 -0700254 return;
255 }
256
257 GPR_ASSERT(tcp->write_cb == NULL);
258 tcp->write_slices = write_slices;
259 GPR_ASSERT(tcp->write_slices->count <= UINT_MAX);
260 if (tcp->write_slices->count == 0) {
261 // No slices means we don't have to do anything,
262 // and libuv doesn't like empty writes
Craig Tiller91031da2016-12-28 15:44:25 -0800263 grpc_closure_sched(exec_ctx, cb, GRPC_ERROR_NONE);
murgatroid999030c812016-09-16 13:25:08 -0700264 return;
265 }
266
267 tcp->write_cb = cb;
268 buffer_count = (unsigned int)tcp->write_slices->count;
269 buffers = gpr_malloc(sizeof(uv_buf_t) * buffer_count);
murgatroid99e2672c92016-11-09 15:12:22 -0800270 grpc_resource_user_alloc(exec_ctx, tcp->resource_user,
murgatroid9969259d42016-10-31 14:34:10 -0700271 sizeof(uv_buf_t) * buffer_count, NULL);
murgatroid999030c812016-09-16 13:25:08 -0700272 for (i = 0; i < buffer_count; i++) {
273 slice = &tcp->write_slices->slices[i];
Craig Tiller618e67d2016-10-26 21:08:10 -0700274 buffers[i].base = (char *)GRPC_SLICE_START_PTR(*slice);
275 buffers[i].len = GRPC_SLICE_LENGTH(*slice);
murgatroid999030c812016-09-16 13:25:08 -0700276 }
murgatroid9969259d42016-10-31 14:34:10 -0700277 tcp->write_buffers = buffers;
278 write_req = &tcp->write_req;
murgatroid999030c812016-09-16 13:25:08 -0700279 write_req->data = tcp;
280 TCP_REF(tcp, "write");
281 // TODO(murgatroid99): figure out what the return value here means
282 uv_write(write_req, (uv_stream_t *)tcp->handle, buffers, buffer_count,
283 write_callback);
284}
285
286static void uv_add_to_pollset(grpc_exec_ctx *exec_ctx, grpc_endpoint *ep,
287 grpc_pollset *pollset) {
288 // No-op. We're ignoring pollsets currently
murgatroid99dedb9232016-09-26 13:54:04 -0700289 (void)exec_ctx;
290 (void)ep;
291 (void)pollset;
292 grpc_tcp *tcp = (grpc_tcp *)ep;
murgatroid999030c812016-09-16 13:25:08 -0700293 tcp->pollset = pollset;
294}
295
296static void uv_add_to_pollset_set(grpc_exec_ctx *exec_ctx, grpc_endpoint *ep,
297 grpc_pollset_set *pollset) {
298 // No-op. We're ignoring pollsets currently
murgatroid99dedb9232016-09-26 13:54:04 -0700299 (void)exec_ctx;
300 (void)ep;
301 (void)pollset;
murgatroid999030c812016-09-16 13:25:08 -0700302}
303
murgatroid9969259d42016-10-31 14:34:10 -0700304static void shutdown_callback(uv_shutdown_t *req, int status) {}
305
murgatroid999030c812016-09-16 13:25:08 -0700306static void uv_endpoint_shutdown(grpc_exec_ctx *exec_ctx, grpc_endpoint *ep) {
307 grpc_tcp *tcp = (grpc_tcp *)ep;
murgatroid992c287ca2016-10-07 09:55:35 -0700308 if (!tcp->shutting_down) {
309 tcp->shutting_down = true;
murgatroid9969259d42016-10-31 14:34:10 -0700310 uv_shutdown_t *req = &tcp->shutdown_req;
murgatroid992c287ca2016-10-07 09:55:35 -0700311 uv_shutdown(req, (uv_stream_t *)tcp->handle, shutdown_callback);
312 }
murgatroid999030c812016-09-16 13:25:08 -0700313}
314
315static void uv_destroy(grpc_exec_ctx *exec_ctx, grpc_endpoint *ep) {
316 grpc_network_status_unregister_endpoint(ep);
317 grpc_tcp *tcp = (grpc_tcp *)ep;
murgatroid999030c812016-09-16 13:25:08 -0700318 uv_close((uv_handle_t *)tcp->handle, uv_close_callback);
murgatroid999030c812016-09-16 13:25:08 -0700319}
320
321static char *uv_get_peer(grpc_endpoint *ep) {
322 grpc_tcp *tcp = (grpc_tcp *)ep;
323 return gpr_strdup(tcp->peer_string);
324}
325
murgatroid9969259d42016-10-31 14:34:10 -0700326static grpc_resource_user *uv_get_resource_user(grpc_endpoint *ep) {
327 grpc_tcp *tcp = (grpc_tcp *)ep;
murgatroid99e2672c92016-11-09 15:12:22 -0800328 return tcp->resource_user;
murgatroid9969259d42016-10-31 14:34:10 -0700329}
330
murgatroid99dedb9232016-09-26 13:54:04 -0700331static grpc_workqueue *uv_get_workqueue(grpc_endpoint *ep) { return NULL; }
murgatroid999030c812016-09-16 13:25:08 -0700332
murgatroid992e012342016-11-10 18:24:08 -0800333static int uv_get_fd(grpc_endpoint *ep) { return -1; }
334
murgatroid9969259d42016-10-31 14:34:10 -0700335static grpc_endpoint_vtable vtable = {
336 uv_endpoint_read, uv_endpoint_write, uv_get_workqueue,
337 uv_add_to_pollset, uv_add_to_pollset_set, uv_endpoint_shutdown,
murgatroid992e012342016-11-10 18:24:08 -0800338 uv_destroy, uv_get_resource_user, uv_get_peer,
339 uv_get_fd};
murgatroid999030c812016-09-16 13:25:08 -0700340
murgatroid9969259d42016-10-31 14:34:10 -0700341grpc_endpoint *grpc_tcp_create(uv_tcp_t *handle,
342 grpc_resource_quota *resource_quota,
343 char *peer_string) {
murgatroid999030c812016-09-16 13:25:08 -0700344 grpc_tcp *tcp = (grpc_tcp *)gpr_malloc(sizeof(grpc_tcp));
345
346 if (grpc_tcp_trace) {
347 gpr_log(GPR_DEBUG, "Creating TCP endpoint %p", tcp);
348 }
349
murgatroid9904d28292016-10-27 14:36:57 -0700350 /* Disable Nagle's Algorithm */
murgatroid9912e57752016-10-27 14:30:41 -0700351 uv_tcp_nodelay(handle, 1);
352
murgatroid999030c812016-09-16 13:25:08 -0700353 memset(tcp, 0, sizeof(grpc_tcp));
354 tcp->base.vtable = &vtable;
355 tcp->handle = handle;
356 handle->data = tcp;
357 gpr_ref_init(&tcp->refcount, 1);
358 tcp->peer_string = gpr_strdup(peer_string);
murgatroid992c287ca2016-10-07 09:55:35 -0700359 tcp->shutting_down = false;
murgatroid99e2672c92016-11-09 15:12:22 -0800360 tcp->resource_user = grpc_resource_user_create(resource_quota, peer_string);
murgatroid999030c812016-09-16 13:25:08 -0700361 /* Tell network status tracking code about the new endpoint */
362 grpc_network_status_register_endpoint(&tcp->base);
363
364#ifndef GRPC_UV_TCP_HOLD_LOOP
365 uv_unref((uv_handle_t *)handle);
366#endif
367
368 return &tcp->base;
369}
370
371#endif /* GRPC_UV */