| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365 | /* * * Copyright 2015, Google Inc. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * *     * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. *     * Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following disclaimer * in the documentation and/or other materials provided with the * distribution. *     * Neither the name of Google Inc. nor the names of its * contributors may be used to endorse or promote products derived from * this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * */#include "src/core/lib/iomgr/port.h"#ifdef GRPC_UV#include <string.h>#include <grpc/support/alloc.h>#include <grpc/support/log.h>#include "src/core/lib/iomgr/error.h"#include "src/core/lib/iomgr/exec_ctx.h"#include "src/core/lib/iomgr/sockaddr.h"#include "src/core/lib/iomgr/sockaddr_utils.h"#include "src/core/lib/iomgr/tcp_server.h"#include "src/core/lib/iomgr/tcp_uv.h"/* one listening port */typedef struct grpc_tcp_listener grpc_tcp_listener;struct grpc_tcp_listener {  uv_tcp_t *handle;  grpc_tcp_server *server;  unsigned port_index;  int port;  /* linked list */  struct grpc_tcp_listener *next;};struct grpc_tcp_server {  gpr_refcount refs;  /* Called whenever accept() succeeds on a server port. */  grpc_tcp_server_cb on_accept_cb;  void *on_accept_cb_arg;  int open_ports;  /* linked list of server ports */  grpc_tcp_listener *head;  grpc_tcp_listener *tail;  /* List of closures passed to shutdown_starting_add(). */  grpc_closure_list shutdown_starting;  /* shutdown callback */  grpc_closure *shutdown_complete;};grpc_error *grpc_tcp_server_create(grpc_closure *shutdown_complete,                                   const grpc_channel_args *args,                                   grpc_tcp_server **server) {  grpc_tcp_server *s = gpr_malloc(sizeof(grpc_tcp_server));  (void)args;  gpr_ref_init(&s->refs, 1);  s->on_accept_cb = NULL;  s->on_accept_cb_arg = NULL;  s->open_ports = 0;  s->head = NULL;  s->tail = NULL;  s->shutdown_starting.head = NULL;  s->shutdown_starting.tail = NULL;  s->shutdown_complete = shutdown_complete;  *server = s;  return GRPC_ERROR_NONE;}grpc_tcp_server *grpc_tcp_server_ref(grpc_tcp_server *s) {  gpr_ref(&s->refs);  return s;}void grpc_tcp_server_shutdown_starting_add(grpc_tcp_server *s,                                           grpc_closure *shutdown_starting) {  grpc_closure_list_append(&s->shutdown_starting, shutdown_starting,                           GRPC_ERROR_NONE);}static void finish_shutdown(grpc_exec_ctx *exec_ctx, grpc_tcp_server *s) {  if (s->shutdown_complete != NULL) {    grpc_exec_ctx_sched(exec_ctx, s->shutdown_complete, GRPC_ERROR_NONE, NULL);  }  while (s->head) {    grpc_tcp_listener *sp = s->head;    s->head = sp->next;    sp->next = NULL;    gpr_free(sp->handle);    gpr_free(sp);  }  gpr_free(s);}static void handle_close_callback(uv_handle_t *handle) {  grpc_tcp_listener *sp = (grpc_tcp_listener *)handle->data;  grpc_exec_ctx exec_ctx = GRPC_EXEC_CTX_INIT;  sp->server->open_ports--;  if (sp->server->open_ports == 0) {    finish_shutdown(&exec_ctx, sp->server);  }  grpc_exec_ctx_finish(&exec_ctx);}static void tcp_server_destroy(grpc_exec_ctx *exec_ctx, grpc_tcp_server *s) {  int immediately_done = 0;  grpc_tcp_listener *sp;  if (s->open_ports == 0) {    immediately_done = 1;  }  for (sp = s->head; sp; sp = sp->next) {    uv_close((uv_handle_t *)sp->handle, handle_close_callback);  }  if (immediately_done) {    finish_shutdown(exec_ctx, s);  }}void grpc_tcp_server_unref(grpc_exec_ctx *exec_ctx, grpc_tcp_server *s) {  if (gpr_unref(&s->refs)) {    /* Complete shutdown_starting work before destroying. */    grpc_exec_ctx local_exec_ctx = GRPC_EXEC_CTX_INIT;    grpc_exec_ctx_enqueue_list(&local_exec_ctx, &s->shutdown_starting, NULL);    if (exec_ctx == NULL) {      grpc_exec_ctx_flush(&local_exec_ctx);      tcp_server_destroy(&local_exec_ctx, s);      grpc_exec_ctx_finish(&local_exec_ctx);    } else {      grpc_exec_ctx_finish(&local_exec_ctx);      tcp_server_destroy(exec_ctx, s);    }  }}static void accepted_connection_close_cb(uv_handle_t *handle) {  gpr_free(handle);}static void on_connect(uv_stream_t *server, int status) {  grpc_tcp_listener *sp = (grpc_tcp_listener *)server->data;  grpc_tcp_server_acceptor acceptor = {sp->server, sp->port_index, 0};  uv_tcp_t *client;  grpc_endpoint *ep = NULL;  grpc_exec_ctx exec_ctx = GRPC_EXEC_CTX_INIT;  grpc_resolved_address peer_name;  char *peer_name_string;  int err;  if (status < 0) {    gpr_log(GPR_INFO, "Skipping on_accept due to error: %s",            uv_strerror(status));    return;  }  client = gpr_malloc(sizeof(uv_tcp_t));  uv_tcp_init(uv_default_loop(), client);  // UV documentation says this is guaranteed to succeed  uv_accept((uv_stream_t *)server, (uv_stream_t *)client);  // If the server has not been started, we discard incoming connections  if (sp->server->on_accept_cb == NULL) {    uv_close((uv_handle_t *)client, accepted_connection_close_cb);  } else {    peer_name_string = NULL;    memset(&peer_name, 0, sizeof(grpc_resolved_address));    peer_name.len = sizeof(struct sockaddr_storage);    err = uv_tcp_getpeername(client, (struct sockaddr *)&peer_name.addr,                             (int *)&peer_name.len);    if (err == 0) {      peer_name_string = grpc_sockaddr_to_uri(&peer_name);    } else {      gpr_log(GPR_INFO, "uv_tcp_getpeername error: %s", uv_strerror(status));    }    ep = grpc_tcp_create(client, peer_name_string);    sp->server->on_accept_cb(&exec_ctx, sp->server->on_accept_cb_arg, ep, NULL,                             &acceptor);    grpc_exec_ctx_finish(&exec_ctx);  }}static grpc_error *add_socket_to_server(grpc_tcp_server *s, uv_tcp_t *handle,                                        const grpc_resolved_address *addr,                                        unsigned port_index,                                        grpc_tcp_listener **listener) {  grpc_tcp_listener *sp = NULL;  int port = -1;  int status;  grpc_error *error;  grpc_resolved_address sockname_temp;  // The last argument to uv_tcp_bind is flags  status = uv_tcp_bind(handle, (struct sockaddr *)addr->addr, 0);  if (status != 0) {    error = GRPC_ERROR_CREATE("Failed to bind to port");    error =        grpc_error_set_str(error, GRPC_ERROR_STR_OS_ERROR, uv_strerror(status));    return error;  }  status = uv_listen((uv_stream_t *)handle, SOMAXCONN, on_connect);  if (status != 0) {    error = GRPC_ERROR_CREATE("Failed to listen to port");    error =        grpc_error_set_str(error, GRPC_ERROR_STR_OS_ERROR, uv_strerror(status));    return error;  }  sockname_temp.len = (int)sizeof(struct sockaddr_storage);  status = uv_tcp_getsockname(handle, (struct sockaddr *)&sockname_temp.addr,                              (int *)&sockname_temp.len);  if (status != 0) {    error = GRPC_ERROR_CREATE("getsockname failed");    error =        grpc_error_set_str(error, GRPC_ERROR_STR_OS_ERROR, uv_strerror(status));    return error;  }  port = grpc_sockaddr_get_port(&sockname_temp);  GPR_ASSERT(port >= 0);  GPR_ASSERT(!s->on_accept_cb && "must add ports before starting server");  sp = gpr_malloc(sizeof(grpc_tcp_listener));  sp->next = NULL;  if (s->head == NULL) {    s->head = sp;  } else {    s->tail->next = sp;  }  s->tail = sp;  sp->server = s;  sp->handle = handle;  sp->port = port;  sp->port_index = port_index;  handle->data = sp;  s->open_ports++;  GPR_ASSERT(sp->handle);  *listener = sp;  return GRPC_ERROR_NONE;}grpc_error *grpc_tcp_server_add_port(grpc_tcp_server *s,                                     const grpc_resolved_address *addr,                                     int *port) {  // This function is mostly copied from tcp_server_windows.c  grpc_tcp_listener *sp = NULL;  uv_tcp_t *handle;  grpc_resolved_address addr6_v4mapped;  grpc_resolved_address wildcard;  grpc_resolved_address *allocated_addr = NULL;  grpc_resolved_address sockname_temp;  unsigned port_index = 0;  int status;  grpc_error *error = GRPC_ERROR_NONE;  if (s->tail != NULL) {    port_index = s->tail->port_index + 1;  }  /* Check if this is a wildcard port, and if so, try to keep the port the same     as some previously created listener. */  if (grpc_sockaddr_get_port(addr) == 0) {    for (sp = s->head; sp; sp = sp->next) {      sockname_temp.len = sizeof(struct sockaddr_storage);      if (0 == uv_tcp_getsockname(sp->handle,                                  (struct sockaddr *)&sockname_temp.addr,                                  (int *)&sockname_temp.len)) {        *port = grpc_sockaddr_get_port(&sockname_temp);        if (*port > 0) {          allocated_addr = gpr_malloc(sizeof(grpc_resolved_address));          memcpy(allocated_addr, addr, sizeof(grpc_resolved_address));          grpc_sockaddr_set_port(allocated_addr, *port);          addr = allocated_addr;          break;        }      }    }  }  if (grpc_sockaddr_to_v4mapped(addr, &addr6_v4mapped)) {    addr = &addr6_v4mapped;  }  /* Treat :: or 0.0.0.0 as a family-agnostic wildcard. */  if (grpc_sockaddr_is_wildcard(addr, port)) {    grpc_sockaddr_make_wildcard6(*port, &wildcard);    addr = &wildcard;  }  handle = gpr_malloc(sizeof(uv_tcp_t));  status = uv_tcp_init(uv_default_loop(), handle);  if (status == 0) {    error = add_socket_to_server(s, handle, addr, port_index, &sp);  } else {    error = GRPC_ERROR_CREATE("Failed to initialize UV tcp handle");    error =        grpc_error_set_str(error, GRPC_ERROR_STR_OS_ERROR, uv_strerror(status));  }  gpr_free(allocated_addr);  if (error != GRPC_ERROR_NONE) {    grpc_error *error_out = GRPC_ERROR_CREATE_REFERENCING(        "Failed to add port to server", &error, 1);    GRPC_ERROR_UNREF(error);    error = error_out;    *port = -1;  } else {    GPR_ASSERT(sp != NULL);    *port = sp->port;  }  return error;}void grpc_tcp_server_start(grpc_exec_ctx *exec_ctx, grpc_tcp_server *server,                           grpc_pollset **pollsets, size_t pollset_count,                           grpc_tcp_server_cb on_accept_cb, void *cb_arg) {  grpc_tcp_listener *sp;  (void)pollsets;  (void)pollset_count;  GPR_ASSERT(on_accept_cb);  GPR_ASSERT(!server->on_accept_cb);  server->on_accept_cb = on_accept_cb;  server->on_accept_cb_arg = cb_arg;  for (sp = server->head; sp; sp = sp->next) {    GPR_ASSERT(uv_listen((uv_stream_t *)sp->handle, SOMAXCONN, on_connect) ==               0);  }}void grpc_tcp_server_shutdown_listeners(grpc_exec_ctx *exec_ctx,                                        grpc_tcp_server *s) {}#endif /* GRPC_UV */
 |