blob: d3f0ea53f87213a06cfe50b44224eb19e6892169 [file] [log] [blame]
Makarand Dharmapurikar7981e192016-06-20 15:38:15 -07001/*
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
Makarand Dharmapurikar7981e192016-06-20 15:38:15 -070034#include <grpc/support/alloc.h>
Makarand Dharmapurikar61494432016-06-22 13:34:59 -070035#include <grpc/support/log.h>
Makarand Dharmapurikar932d0272016-06-22 16:17:15 -070036#include "src/core/lib/iomgr/endpoint.h"
Makarand Dharmapurikar7981e192016-06-20 15:38:15 -070037
38typedef struct endpoint_ll_node {
39 grpc_endpoint *ep;
40 struct endpoint_ll_node *next;
41} endpoint_ll_node;
42
43static endpoint_ll_node *head = NULL;
Makarand Dharmapurikar61494432016-06-22 13:34:59 -070044static gpr_mu g_endpoint_mutex;
Craig Tillerce14c302016-07-01 09:06:38 -070045static gpr_once g_once_init = GPR_ONCE_INIT;
Makarand Dharmapurikar7981e192016-06-20 15:38:15 -070046
Craig Tillerce14c302016-07-01 09:06:38 -070047static void destroy_network_status_monitor() {
48 if (head != NULL) {
49 gpr_log(GPR_ERROR,
50 "Memory leaked as all network endpoints were not shut down");
Makarand Dharmapurikar7981e192016-06-20 15:38:15 -070051 }
Makarand Dharmapurikar61494432016-06-22 13:34:59 -070052 gpr_mu_destroy(&g_endpoint_mutex);
Makarand Dharmapurikar7981e192016-06-20 15:38:15 -070053}
54
Craig Tillerce14c302016-07-01 09:06:38 -070055static void initialize_network_status_monitor() {
56 gpr_mu_init(&g_endpoint_mutex);
57 atexit(destroy_network_status_monitor);
58 // TODO(makarandd): Install callback with OS to monitor network status.
59}
60
Makarand Dharmapurikar7981e192016-06-20 15:38:15 -070061void grpc_network_status_register_endpoint(grpc_endpoint *ep) {
Craig Tillerce14c302016-07-01 09:06:38 -070062 gpr_once_init(&g_once_init, initialize_network_status_monitor);
Makarand Dharmapurikar61494432016-06-22 13:34:59 -070063 gpr_mu_lock(&g_endpoint_mutex);
Makarand Dharmapurikar7981e192016-06-20 15:38:15 -070064 if (head == NULL) {
65 head = (endpoint_ll_node *)gpr_malloc(sizeof(endpoint_ll_node));
66 head->ep = ep;
67 head->next = NULL;
68 } else {
69 endpoint_ll_node *prev_head = head;
70 head = (endpoint_ll_node *)gpr_malloc(sizeof(endpoint_ll_node));
71 head->ep = ep;
72 head->next = prev_head;
73 }
Makarand Dharmapurikar61494432016-06-22 13:34:59 -070074 gpr_mu_unlock(&g_endpoint_mutex);
75}
76
77void grpc_network_status_unregister_endpoint(grpc_endpoint *ep) {
78 gpr_mu_lock(&g_endpoint_mutex);
79 GPR_ASSERT(head);
Makarand Dharmapurikar61494432016-06-22 13:34:59 -070080 bool found = false;
81 endpoint_ll_node *prev = head;
82 // if we're unregistering the head, just move head to the next
83 if (ep == head->ep) {
Makarand Dharmapurikar932d0272016-06-22 16:17:15 -070084 head = head->next;
85 gpr_free(prev);
86 found = true;
Makarand Dharmapurikar61494432016-06-22 13:34:59 -070087 } else {
88 for (endpoint_ll_node *curr = head->next; curr != NULL; curr = curr->next) {
89 if (ep == curr->ep) {
90 prev->next = curr->next;
91 gpr_free(curr);
92 found = true;
93 break;
94 }
95 prev = curr;
96 }
97 }
98 gpr_mu_unlock(&g_endpoint_mutex);
99 GPR_ASSERT(found);
Makarand Dharmapurikar7981e192016-06-20 15:38:15 -0700100}
101
102// Walk the linked-list from head and execute shutdown. It is possible that
103// other threads might be in the process of shutdown as well, but that has
Makarand Dharmapurikar61494432016-06-22 13:34:59 -0700104// no side effect since endpoint shutdown is idempotent.
Makarand Dharmapurikar7981e192016-06-20 15:38:15 -0700105void grpc_network_status_shutdown_all_endpoints() {
Makarand Dharmapurikar61494432016-06-22 13:34:59 -0700106 gpr_mu_lock(&g_endpoint_mutex);
Makarand Dharmapurikar7981e192016-06-20 15:38:15 -0700107 if (head == NULL) {
Makarand Dharmapurikar61494432016-06-22 13:34:59 -0700108 gpr_mu_unlock(&g_endpoint_mutex);
Makarand Dharmapurikar7981e192016-06-20 15:38:15 -0700109 return;
110 }
111 grpc_exec_ctx exec_ctx = GRPC_EXEC_CTX_INIT;
112
113 for (endpoint_ll_node *curr = head; curr != NULL; curr = curr->next) {
114 curr->ep->vtable->shutdown(&exec_ctx, curr->ep);
115 }
Makarand Dharmapurikar61494432016-06-22 13:34:59 -0700116 gpr_mu_unlock(&g_endpoint_mutex);
Makarand Dharmapurikar7981e192016-06-20 15:38:15 -0700117 grpc_exec_ctx_finish(&exec_ctx);
118}