blob: 90c074b007df11f96bf4b3d7840c33ff2f3b7967 [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;
Makarand Dharmapurikar7981e192016-06-20 15:38:15 -070045
Craig Tillerf11b3332016-07-14 16:48:23 -070046void grpc_network_status_shutdown(void) {
Craig Tillerce14c302016-07-01 09:06:38 -070047 if (head != NULL) {
48 gpr_log(GPR_ERROR,
49 "Memory leaked as all network endpoints were not shut down");
Makarand Dharmapurikar7981e192016-06-20 15:38:15 -070050 }
Makarand Dharmapurikar61494432016-06-22 13:34:59 -070051 gpr_mu_destroy(&g_endpoint_mutex);
Makarand Dharmapurikar7981e192016-06-20 15:38:15 -070052}
53
Craig Tillerf11b3332016-07-14 16:48:23 -070054void grpc_network_status_init(void) {
Craig Tillerce14c302016-07-01 09:06:38 -070055 gpr_mu_init(&g_endpoint_mutex);
Craig Tillerce14c302016-07-01 09:06:38 -070056 // TODO(makarandd): Install callback with OS to monitor network status.
57}
58
Makarand Dharmapurikar7981e192016-06-20 15:38:15 -070059void grpc_network_status_register_endpoint(grpc_endpoint *ep) {
Makarand Dharmapurikar61494432016-06-22 13:34:59 -070060 gpr_mu_lock(&g_endpoint_mutex);
Makarand Dharmapurikar7981e192016-06-20 15:38:15 -070061 if (head == NULL) {
62 head = (endpoint_ll_node *)gpr_malloc(sizeof(endpoint_ll_node));
63 head->ep = ep;
64 head->next = NULL;
65 } else {
66 endpoint_ll_node *prev_head = head;
67 head = (endpoint_ll_node *)gpr_malloc(sizeof(endpoint_ll_node));
68 head->ep = ep;
69 head->next = prev_head;
70 }
Makarand Dharmapurikar61494432016-06-22 13:34:59 -070071 gpr_mu_unlock(&g_endpoint_mutex);
72}
73
74void grpc_network_status_unregister_endpoint(grpc_endpoint *ep) {
75 gpr_mu_lock(&g_endpoint_mutex);
76 GPR_ASSERT(head);
Makarand Dharmapurikar61494432016-06-22 13:34:59 -070077 bool found = false;
78 endpoint_ll_node *prev = head;
79 // if we're unregistering the head, just move head to the next
80 if (ep == head->ep) {
Makarand Dharmapurikar932d0272016-06-22 16:17:15 -070081 head = head->next;
82 gpr_free(prev);
83 found = true;
Makarand Dharmapurikar61494432016-06-22 13:34:59 -070084 } else {
85 for (endpoint_ll_node *curr = head->next; curr != NULL; curr = curr->next) {
86 if (ep == curr->ep) {
87 prev->next = curr->next;
88 gpr_free(curr);
89 found = true;
90 break;
91 }
92 prev = curr;
93 }
94 }
95 gpr_mu_unlock(&g_endpoint_mutex);
96 GPR_ASSERT(found);
Makarand Dharmapurikar7981e192016-06-20 15:38:15 -070097}
98
99// Walk the linked-list from head and execute shutdown. It is possible that
100// other threads might be in the process of shutdown as well, but that has
Makarand Dharmapurikar61494432016-06-22 13:34:59 -0700101// no side effect since endpoint shutdown is idempotent.
Makarand Dharmapurikar7981e192016-06-20 15:38:15 -0700102void grpc_network_status_shutdown_all_endpoints() {
Makarand Dharmapurikar61494432016-06-22 13:34:59 -0700103 gpr_mu_lock(&g_endpoint_mutex);
Makarand Dharmapurikar7981e192016-06-20 15:38:15 -0700104 if (head == NULL) {
Makarand Dharmapurikar61494432016-06-22 13:34:59 -0700105 gpr_mu_unlock(&g_endpoint_mutex);
Makarand Dharmapurikar7981e192016-06-20 15:38:15 -0700106 return;
107 }
108 grpc_exec_ctx exec_ctx = GRPC_EXEC_CTX_INIT;
109
110 for (endpoint_ll_node *curr = head; curr != NULL; curr = curr->next) {
111 curr->ep->vtable->shutdown(&exec_ctx, curr->ep);
112 }
Makarand Dharmapurikar61494432016-06-22 13:34:59 -0700113 gpr_mu_unlock(&g_endpoint_mutex);
Makarand Dharmapurikar7981e192016-06-20 15:38:15 -0700114 grpc_exec_ctx_finish(&exec_ctx);
115}