blob: a96b49ac12f016e9b611e0045ace2b70823ec6d5 [file] [log] [blame]
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001/*
2 *
Craig Tillera93a25f2016-01-28 13:55:49 -08003 * Copyright 2015-2016, 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
34#include "src/core/channel/client_channel.h"
35
36#include <stdio.h>
Craig Tillereb3b12e2015-06-26 14:42:49 -070037#include <string.h>
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080038
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080039#include <grpc/support/alloc.h>
40#include <grpc/support/log.h>
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080041#include <grpc/support/sync.h>
42#include <grpc/support/useful.h>
43
Craig Tiller8910ac62015-10-08 16:49:15 -070044#include "src/core/channel/channel_args.h"
45#include "src/core/channel/connected_channel.h"
Craig Tiller577c9b22015-11-02 14:11:15 -080046#include "src/core/channel/subchannel_call_holder.h"
Craig Tiller8910ac62015-10-08 16:49:15 -070047#include "src/core/iomgr/iomgr.h"
48#include "src/core/profiling/timers.h"
49#include "src/core/support/string.h"
50#include "src/core/surface/channel.h"
51#include "src/core/transport/connectivity_state.h"
52
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080053/* Client channel implementation */
54
Craig Tiller577c9b22015-11-02 14:11:15 -080055typedef grpc_subchannel_call_holder call_data;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080056
Craig Tiller800dacb2015-10-06 09:10:26 -070057typedef struct client_channel_channel_data {
Craig Tillerf5f17122015-06-25 08:47:26 -070058 /** resolver for this channel */
59 grpc_resolver *resolver;
Craig Tiller20a3c352015-08-05 08:39:50 -070060 /** have we started resolving this channel */
61 int started_resolving;
Craig Tillerf5f17122015-06-25 08:47:26 -070062
Craig Tiller9d94b602015-07-01 14:23:18 -070063 /** mutex protecting client configuration, including all
64 variables below in this data structure */
Craig Tillerf5f17122015-06-25 08:47:26 -070065 gpr_mu mu_config;
Craig Tillerf5f17122015-06-25 08:47:26 -070066 /** currently active load balancer - guarded by mu_config */
67 grpc_lb_policy *lb_policy;
Craig Tillerf5f17122015-06-25 08:47:26 -070068 /** incoming configuration - set by resolver.next
69 guarded by mu_config */
70 grpc_client_config *incoming_configuration;
Craig Tiller3f475422015-06-25 10:43:05 -070071 /** a list of closures that are all waiting for config to come in */
Craig Tillerd9ccbbf2015-09-22 09:30:00 -070072 grpc_closure_list waiting_for_config_closures;
Craig Tiller3f475422015-06-25 10:43:05 -070073 /** resolver callback */
Craig Tiller33825112015-09-18 07:44:19 -070074 grpc_closure on_config_changed;
Craig Tiller3f475422015-06-25 10:43:05 -070075 /** connectivity state being tracked */
Craig Tillerca3e9d32015-06-27 18:37:27 -070076 grpc_connectivity_state_tracker state_tracker;
Craig Tiller48cb07c2015-07-15 16:16:15 -070077 /** when an lb_policy arrives, should we try to exit idle */
78 int exit_idle_when_lb_policy_arrives;
Craig Tiller906e3bc2015-11-24 07:31:31 -080079 /** owning stack */
80 grpc_channel_stack *owning_stack;
Craig Tiller69b093b2016-02-25 19:04:07 -080081 /** interested parties (owned) */
82 grpc_pollset_set *interested_parties;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080083} channel_data;
84
Craig Tillerd6c98df2015-08-18 09:33:44 -070085/** We create one watcher for each new lb_policy that is returned from a
86 resolver,
87 to watch for state changes from the lb_policy. When a state change is seen,
88 we
Craig Tiller1ada6ad2015-07-16 16:19:14 -070089 update the channel, and create a new watcher */
Craig Tillera82950e2015-09-22 12:33:20 -070090typedef struct {
Craig Tiller1ada6ad2015-07-16 16:19:14 -070091 channel_data *chand;
Craig Tiller33825112015-09-18 07:44:19 -070092 grpc_closure on_changed;
Craig Tiller1ada6ad2015-07-16 16:19:14 -070093 grpc_connectivity_state state;
94 grpc_lb_policy *lb_policy;
95} lb_policy_connectivity_watcher;
96
Craig Tillera82950e2015-09-22 12:33:20 -070097typedef struct {
Craig Tiller33825112015-09-18 07:44:19 -070098 grpc_closure closure;
Craig Tillereb3b12e2015-06-26 14:42:49 -070099 grpc_call_element *elem;
100} waiting_call;
101
Craig Tillera82950e2015-09-22 12:33:20 -0700102static char *cc_get_peer(grpc_exec_ctx *exec_ctx, grpc_call_element *elem) {
Craig Tiller906e3bc2015-11-24 07:31:31 -0800103 return grpc_subchannel_call_holder_get_peer(exec_ctx, elem->call_data);
Craig Tillereb3b12e2015-06-26 14:42:49 -0700104}
Craig Tillerf5f17122015-06-25 08:47:26 -0700105
Craig Tillera82950e2015-09-22 12:33:20 -0700106static void cc_start_transport_stream_op(grpc_exec_ctx *exec_ctx,
107 grpc_call_element *elem,
108 grpc_transport_stream_op *op) {
Craig Tiller577c9b22015-11-02 14:11:15 -0800109 GRPC_CALL_LOG_OP(GPR_INFO, elem, op);
110 grpc_subchannel_call_holder_perform_op(exec_ctx, elem->call_data, op);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800111}
112
Craig Tillera82950e2015-09-22 12:33:20 -0700113static void watch_lb_policy(grpc_exec_ctx *exec_ctx, channel_data *chand,
114 grpc_lb_policy *lb_policy,
115 grpc_connectivity_state current_state);
Craig Tiller1ada6ad2015-07-16 16:19:14 -0700116
Craig Tillera82950e2015-09-22 12:33:20 -0700117static void on_lb_policy_state_changed_locked(
118 grpc_exec_ctx *exec_ctx, lb_policy_connectivity_watcher *w) {
Craig Tillercb2609f2015-11-24 17:19:19 -0800119 grpc_connectivity_state publish_state = w->state;
Craig Tiller5795da72015-09-17 15:27:13 -0700120 /* check if the notification is for a stale policy */
Craig Tillera82950e2015-09-22 12:33:20 -0700121 if (w->lb_policy != w->chand->lb_policy) return;
Craig Tiller5795da72015-09-17 15:27:13 -0700122
Craig Tiller1d881fb2015-12-01 07:39:04 -0800123 if (publish_state == GRPC_CHANNEL_FATAL_FAILURE &&
124 w->chand->resolver != NULL) {
Craig Tillercb2609f2015-11-24 17:19:19 -0800125 publish_state = GRPC_CHANNEL_TRANSIENT_FAILURE;
126 grpc_resolver_channel_saw_error(exec_ctx, w->chand->resolver);
Craig Tillerf62c4d52015-12-04 07:43:07 -0800127 GRPC_LB_POLICY_UNREF(exec_ctx, w->chand->lb_policy, "channel");
128 w->chand->lb_policy = NULL;
Craig Tillercb2609f2015-11-24 17:19:19 -0800129 }
130 grpc_connectivity_state_set(exec_ctx, &w->chand->state_tracker, publish_state,
Craig Tillera82950e2015-09-22 12:33:20 -0700131 "lb_changed");
132 if (w->state != GRPC_CHANNEL_FATAL_FAILURE) {
133 watch_lb_policy(exec_ctx, w->chand, w->lb_policy, w->state);
134 }
Craig Tiller5795da72015-09-17 15:27:13 -0700135}
136
Craig Tillera82950e2015-09-22 12:33:20 -0700137static void on_lb_policy_state_changed(grpc_exec_ctx *exec_ctx, void *arg,
Craig Tiller6c396862016-01-28 13:53:40 -0800138 bool iomgr_success) {
Craig Tiller1ada6ad2015-07-16 16:19:14 -0700139 lb_policy_connectivity_watcher *w = arg;
Craig Tiller1ada6ad2015-07-16 16:19:14 -0700140
Craig Tillera82950e2015-09-22 12:33:20 -0700141 gpr_mu_lock(&w->chand->mu_config);
142 on_lb_policy_state_changed_locked(exec_ctx, w);
143 gpr_mu_unlock(&w->chand->mu_config);
Craig Tiller1ada6ad2015-07-16 16:19:14 -0700144
Craig Tiller906e3bc2015-11-24 07:31:31 -0800145 GRPC_CHANNEL_STACK_UNREF(exec_ctx, w->chand->owning_stack, "watch_lb_policy");
Craig Tillera82950e2015-09-22 12:33:20 -0700146 gpr_free(w);
Craig Tiller1ada6ad2015-07-16 16:19:14 -0700147}
148
Craig Tillera82950e2015-09-22 12:33:20 -0700149static void watch_lb_policy(grpc_exec_ctx *exec_ctx, channel_data *chand,
150 grpc_lb_policy *lb_policy,
151 grpc_connectivity_state current_state) {
152 lb_policy_connectivity_watcher *w = gpr_malloc(sizeof(*w));
Craig Tiller906e3bc2015-11-24 07:31:31 -0800153 GRPC_CHANNEL_STACK_REF(chand->owning_stack, "watch_lb_policy");
Craig Tiller1ada6ad2015-07-16 16:19:14 -0700154
Craig Tiller1ada6ad2015-07-16 16:19:14 -0700155 w->chand = chand;
Craig Tillera82950e2015-09-22 12:33:20 -0700156 grpc_closure_init(&w->on_changed, on_lb_policy_state_changed, w);
Craig Tiller1ada6ad2015-07-16 16:19:14 -0700157 w->state = current_state;
158 w->lb_policy = lb_policy;
Craig Tillera82950e2015-09-22 12:33:20 -0700159 grpc_lb_policy_notify_on_state_change(exec_ctx, lb_policy, &w->state,
160 &w->on_changed);
Craig Tiller1ada6ad2015-07-16 16:19:14 -0700161}
162
Craig Tillera82950e2015-09-22 12:33:20 -0700163static void cc_on_config_changed(grpc_exec_ctx *exec_ctx, void *arg,
Craig Tiller6c396862016-01-28 13:53:40 -0800164 bool iomgr_success) {
Craig Tiller3f475422015-06-25 10:43:05 -0700165 channel_data *chand = arg;
166 grpc_lb_policy *lb_policy = NULL;
167 grpc_lb_policy *old_lb_policy;
168 grpc_resolver *old_resolver;
Craig Tiller1ada6ad2015-07-16 16:19:14 -0700169 grpc_connectivity_state state = GRPC_CHANNEL_TRANSIENT_FAILURE;
Craig Tiller48cb07c2015-07-15 16:16:15 -0700170 int exit_idle = 0;
Craig Tiller3f475422015-06-25 10:43:05 -0700171
Craig Tillera82950e2015-09-22 12:33:20 -0700172 if (chand->incoming_configuration != NULL) {
173 lb_policy = grpc_client_config_get_lb_policy(chand->incoming_configuration);
174 if (lb_policy != NULL) {
175 GRPC_LB_POLICY_REF(lb_policy, "channel");
176 GRPC_LB_POLICY_REF(lb_policy, "config_change");
177 state = grpc_lb_policy_check_connectivity(exec_ctx, lb_policy);
Craig Tiller45724b32015-09-22 10:42:19 -0700178 }
Craig Tiller3f475422015-06-25 10:43:05 -0700179
Craig Tillera82950e2015-09-22 12:33:20 -0700180 grpc_client_config_unref(exec_ctx, chand->incoming_configuration);
181 }
182
Craig Tiller3f475422015-06-25 10:43:05 -0700183 chand->incoming_configuration = NULL;
184
Craig Tiller86c99582015-11-25 15:22:26 -0800185 if (lb_policy != NULL) {
Craig Tiller69b093b2016-02-25 19:04:07 -0800186 grpc_pollset_set_add_pollset_set(exec_ctx, lb_policy->interested_parties,
187 chand->interested_parties);
Craig Tiller86c99582015-11-25 15:22:26 -0800188 }
189
Craig Tillera82950e2015-09-22 12:33:20 -0700190 gpr_mu_lock(&chand->mu_config);
Craig Tiller3f475422015-06-25 10:43:05 -0700191 old_lb_policy = chand->lb_policy;
192 chand->lb_policy = lb_policy;
Craig Tillera82950e2015-09-22 12:33:20 -0700193 if (lb_policy != NULL || chand->resolver == NULL /* disconnected */) {
Craig Tiller6c396862016-01-28 13:53:40 -0800194 grpc_exec_ctx_enqueue_list(exec_ctx, &chand->waiting_for_config_closures,
195 NULL);
Craig Tillera82950e2015-09-22 12:33:20 -0700196 }
197 if (lb_policy != NULL && chand->exit_idle_when_lb_policy_arrives) {
198 GRPC_LB_POLICY_REF(lb_policy, "exit_idle");
199 exit_idle = 1;
200 chand->exit_idle_when_lb_policy_arrives = 0;
201 }
Craig Tiller98465032015-06-29 14:36:42 -0700202
Craig Tillera82950e2015-09-22 12:33:20 -0700203 if (iomgr_success && chand->resolver) {
204 grpc_resolver *resolver = chand->resolver;
205 GRPC_RESOLVER_REF(resolver, "channel-next");
206 grpc_connectivity_state_set(exec_ctx, &chand->state_tracker, state,
207 "new_lb+resolver");
208 if (lb_policy != NULL) {
209 watch_lb_policy(exec_ctx, chand, lb_policy, state);
Craig Tiller45724b32015-09-22 10:42:19 -0700210 }
Craig Tillera82950e2015-09-22 12:33:20 -0700211 gpr_mu_unlock(&chand->mu_config);
Craig Tiller906e3bc2015-11-24 07:31:31 -0800212 GRPC_CHANNEL_STACK_REF(chand->owning_stack, "resolver");
Craig Tillera82950e2015-09-22 12:33:20 -0700213 grpc_resolver_next(exec_ctx, resolver, &chand->incoming_configuration,
214 &chand->on_config_changed);
215 GRPC_RESOLVER_UNREF(exec_ctx, resolver, "channel-next");
216 } else {
217 old_resolver = chand->resolver;
218 chand->resolver = NULL;
219 grpc_connectivity_state_set(exec_ctx, &chand->state_tracker,
220 GRPC_CHANNEL_FATAL_FAILURE, "resolver_gone");
221 gpr_mu_unlock(&chand->mu_config);
222 if (old_resolver != NULL) {
223 grpc_resolver_shutdown(exec_ctx, old_resolver);
224 GRPC_RESOLVER_UNREF(exec_ctx, old_resolver, "channel");
Craig Tiller45724b32015-09-22 10:42:19 -0700225 }
Craig Tillera82950e2015-09-22 12:33:20 -0700226 }
Craig Tiller1ada6ad2015-07-16 16:19:14 -0700227
Craig Tillera82950e2015-09-22 12:33:20 -0700228 if (exit_idle) {
229 grpc_lb_policy_exit_idle(exec_ctx, lb_policy);
230 GRPC_LB_POLICY_UNREF(exec_ctx, lb_policy, "exit_idle");
231 }
Craig Tiller1ada6ad2015-07-16 16:19:14 -0700232
Craig Tillera82950e2015-09-22 12:33:20 -0700233 if (old_lb_policy != NULL) {
Craig Tiller69b093b2016-02-25 19:04:07 -0800234 grpc_pollset_set_del_pollset_set(
235 exec_ctx, old_lb_policy->interested_parties, chand->interested_parties);
Craig Tillera82950e2015-09-22 12:33:20 -0700236 GRPC_LB_POLICY_UNREF(exec_ctx, old_lb_policy, "channel");
237 }
Craig Tiller000cd8f2015-09-18 07:20:29 -0700238
Craig Tillera82950e2015-09-22 12:33:20 -0700239 if (lb_policy != NULL) {
240 GRPC_LB_POLICY_UNREF(exec_ctx, lb_policy, "config_change");
241 }
Craig Tiller45724b32015-09-22 10:42:19 -0700242
Craig Tiller906e3bc2015-11-24 07:31:31 -0800243 GRPC_CHANNEL_STACK_UNREF(exec_ctx, chand->owning_stack, "resolver");
Craig Tiller3f475422015-06-25 10:43:05 -0700244}
245
Craig Tillera82950e2015-09-22 12:33:20 -0700246static void cc_start_transport_op(grpc_exec_ctx *exec_ctx,
247 grpc_channel_element *elem,
248 grpc_transport_op *op) {
Craig Tillerca3e9d32015-06-27 18:37:27 -0700249 channel_data *chand = elem->channel_data;
Craig Tiller98465032015-06-29 14:36:42 -0700250 grpc_resolver *destroy_resolver = NULL;
Craig Tiller000cd8f2015-09-18 07:20:29 -0700251
Craig Tiller6c396862016-01-28 13:53:40 -0800252 grpc_exec_ctx_enqueue(exec_ctx, op->on_consumed, true, NULL);
Craig Tillerca3e9d32015-06-27 18:37:27 -0700253
Craig Tillera82950e2015-09-22 12:33:20 -0700254 GPR_ASSERT(op->set_accept_stream == NULL);
Craig Tiller28bf8912015-12-07 16:07:04 -0800255 if (op->bind_pollset != NULL) {
Craig Tiller69b093b2016-02-25 19:04:07 -0800256 grpc_pollset_set_add_pollset(exec_ctx, chand->interested_parties,
Craig Tillere2c62372015-12-07 16:11:03 -0800257 op->bind_pollset);
Craig Tiller28bf8912015-12-07 16:07:04 -0800258 }
Craig Tillerca3e9d32015-06-27 18:37:27 -0700259
Craig Tillera82950e2015-09-22 12:33:20 -0700260 gpr_mu_lock(&chand->mu_config);
261 if (op->on_connectivity_state_change != NULL) {
262 grpc_connectivity_state_notify_on_state_change(
263 exec_ctx, &chand->state_tracker, op->connectivity_state,
264 op->on_connectivity_state_change);
265 op->on_connectivity_state_change = NULL;
266 op->connectivity_state = NULL;
267 }
268
Craig Tiller26dab312015-12-07 14:43:47 -0800269 if (op->send_ping != NULL) {
Craig Tiller87b71e22015-12-07 15:14:14 -0800270 if (chand->lb_policy == NULL) {
Craig Tiller6c396862016-01-28 13:53:40 -0800271 grpc_exec_ctx_enqueue(exec_ctx, op->send_ping, false, NULL);
Craig Tiller26dab312015-12-07 14:43:47 -0800272 } else {
Craig Tiller28bf8912015-12-07 16:07:04 -0800273 grpc_lb_policy_ping_one(exec_ctx, chand->lb_policy, op->send_ping);
Craig Tiller26dab312015-12-07 14:43:47 -0800274 op->bind_pollset = NULL;
275 }
276 op->send_ping = NULL;
277 }
278
Craig Tillera82950e2015-09-22 12:33:20 -0700279 if (op->disconnect && chand->resolver != NULL) {
280 grpc_connectivity_state_set(exec_ctx, &chand->state_tracker,
281 GRPC_CHANNEL_FATAL_FAILURE, "disconnect");
282 destroy_resolver = chand->resolver;
283 chand->resolver = NULL;
284 if (chand->lb_policy != NULL) {
Craig Tiller1d881fb2015-12-01 07:39:04 -0800285 grpc_pollset_set_del_pollset_set(exec_ctx,
Craig Tiller69b093b2016-02-25 19:04:07 -0800286 chand->lb_policy->interested_parties,
287 chand->interested_parties);
Craig Tillera82950e2015-09-22 12:33:20 -0700288 GRPC_LB_POLICY_UNREF(exec_ctx, chand->lb_policy, "channel");
289 chand->lb_policy = NULL;
Craig Tillerd2cc4592015-07-01 07:50:47 -0700290 }
Craig Tillera82950e2015-09-22 12:33:20 -0700291 }
292 gpr_mu_unlock(&chand->mu_config);
Craig Tillerca3e9d32015-06-27 18:37:27 -0700293
Craig Tillera82950e2015-09-22 12:33:20 -0700294 if (destroy_resolver) {
295 grpc_resolver_shutdown(exec_ctx, destroy_resolver);
296 GRPC_RESOLVER_UNREF(exec_ctx, destroy_resolver, "channel");
297 }
Craig Tillerca3e9d32015-06-27 18:37:27 -0700298}
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800299
Craig Tiller577c9b22015-11-02 14:11:15 -0800300typedef struct {
301 grpc_metadata_batch *initial_metadata;
Craig Tillerb5585d42015-11-17 07:18:31 -0800302 grpc_connected_subchannel **connected_subchannel;
Craig Tiller577c9b22015-11-02 14:11:15 -0800303 grpc_closure *on_ready;
304 grpc_call_element *elem;
305 grpc_closure closure;
306} continue_picking_args;
307
308static int cc_pick_subchannel(grpc_exec_ctx *exec_ctx, void *arg,
309 grpc_metadata_batch *initial_metadata,
Craig Tillerb5585d42015-11-17 07:18:31 -0800310 grpc_connected_subchannel **connected_subchannel,
Craig Tiller577c9b22015-11-02 14:11:15 -0800311 grpc_closure *on_ready);
312
Craig Tiller6c396862016-01-28 13:53:40 -0800313static void continue_picking(grpc_exec_ctx *exec_ctx, void *arg, bool success) {
Craig Tiller577c9b22015-11-02 14:11:15 -0800314 continue_picking_args *cpa = arg;
315 if (!success) {
Craig Tiller6c396862016-01-28 13:53:40 -0800316 grpc_exec_ctx_enqueue(exec_ctx, cpa->on_ready, false, NULL);
Craig Tillerb5585d42015-11-17 07:18:31 -0800317 } else if (cpa->connected_subchannel == NULL) {
Craig Tiller577c9b22015-11-02 14:11:15 -0800318 /* cancelled, do nothing */
319 } else if (cc_pick_subchannel(exec_ctx, cpa->elem, cpa->initial_metadata,
Craig Tillerb5585d42015-11-17 07:18:31 -0800320 cpa->connected_subchannel, cpa->on_ready)) {
Craig Tiller6c396862016-01-28 13:53:40 -0800321 grpc_exec_ctx_enqueue(exec_ctx, cpa->on_ready, true, NULL);
Craig Tiller577c9b22015-11-02 14:11:15 -0800322 }
323 gpr_free(cpa);
324}
325
326static int cc_pick_subchannel(grpc_exec_ctx *exec_ctx, void *elemp,
327 grpc_metadata_batch *initial_metadata,
Craig Tillerb5585d42015-11-17 07:18:31 -0800328 grpc_connected_subchannel **connected_subchannel,
Craig Tiller577c9b22015-11-02 14:11:15 -0800329 grpc_closure *on_ready) {
330 grpc_call_element *elem = elemp;
331 channel_data *chand = elem->channel_data;
332 call_data *calld = elem->call_data;
333 continue_picking_args *cpa;
334 grpc_closure *closure;
335
Craig Tillerb5585d42015-11-17 07:18:31 -0800336 GPR_ASSERT(connected_subchannel);
Craig Tiller577c9b22015-11-02 14:11:15 -0800337
338 gpr_mu_lock(&chand->mu_config);
339 if (initial_metadata == NULL) {
340 if (chand->lb_policy != NULL) {
Craig Tillerab33b482015-11-21 08:11:04 -0800341 grpc_lb_policy_cancel_pick(exec_ctx, chand->lb_policy,
342 connected_subchannel);
Craig Tiller577c9b22015-11-02 14:11:15 -0800343 }
344 for (closure = chand->waiting_for_config_closures.head; closure != NULL;
345 closure = grpc_closure_next(closure)) {
346 cpa = closure->cb_arg;
Craig Tillerb5585d42015-11-17 07:18:31 -0800347 if (cpa->connected_subchannel == connected_subchannel) {
348 cpa->connected_subchannel = NULL;
Craig Tiller6c396862016-01-28 13:53:40 -0800349 grpc_exec_ctx_enqueue(exec_ctx, cpa->on_ready, false, NULL);
Craig Tiller577c9b22015-11-02 14:11:15 -0800350 }
351 }
352 gpr_mu_unlock(&chand->mu_config);
353 return 1;
354 }
355 if (chand->lb_policy != NULL) {
Craig Tiller86c0f8a2015-12-01 20:05:40 -0800356 grpc_lb_policy *lb_policy = chand->lb_policy;
357 int r;
358 GRPC_LB_POLICY_REF(lb_policy, "cc_pick_subchannel");
Craig Tiller577c9b22015-11-02 14:11:15 -0800359 gpr_mu_unlock(&chand->mu_config);
Craig Tiller86c0f8a2015-12-01 20:05:40 -0800360 r = grpc_lb_policy_pick(exec_ctx, lb_policy, calld->pollset,
361 initial_metadata, connected_subchannel, on_ready);
362 GRPC_LB_POLICY_UNREF(exec_ctx, lb_policy, "cc_pick_subchannel");
Craig Tiller577c9b22015-11-02 14:11:15 -0800363 return r;
364 }
365 if (chand->resolver != NULL && !chand->started_resolving) {
366 chand->started_resolving = 1;
Craig Tiller906e3bc2015-11-24 07:31:31 -0800367 GRPC_CHANNEL_STACK_REF(chand->owning_stack, "resolver");
Craig Tiller577c9b22015-11-02 14:11:15 -0800368 grpc_resolver_next(exec_ctx, chand->resolver,
369 &chand->incoming_configuration,
370 &chand->on_config_changed);
371 }
372 cpa = gpr_malloc(sizeof(*cpa));
373 cpa->initial_metadata = initial_metadata;
Craig Tillerb5585d42015-11-17 07:18:31 -0800374 cpa->connected_subchannel = connected_subchannel;
Craig Tiller577c9b22015-11-02 14:11:15 -0800375 cpa->on_ready = on_ready;
376 cpa->elem = elem;
377 grpc_closure_init(&cpa->closure, continue_picking, cpa);
378 grpc_closure_list_add(&chand->waiting_for_config_closures, &cpa->closure, 1);
379 gpr_mu_unlock(&chand->mu_config);
380 return 0;
381}
382
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800383/* Constructor for call_data */
Craig Tillera82950e2015-09-22 12:33:20 -0700384static void init_call_elem(grpc_exec_ctx *exec_ctx, grpc_call_element *elem,
Craig Tiller577c9b22015-11-02 14:11:15 -0800385 grpc_call_element_args *args) {
Craig Tiller11beb9a2015-11-24 10:29:32 -0800386 grpc_subchannel_call_holder_init(elem->call_data, cc_pick_subchannel, elem,
387 args->call_stack);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800388}
389
390/* Destructor for call_data */
Craig Tillera82950e2015-09-22 12:33:20 -0700391static void destroy_call_elem(grpc_exec_ctx *exec_ctx,
392 grpc_call_element *elem) {
Craig Tiller577c9b22015-11-02 14:11:15 -0800393 grpc_subchannel_call_holder_destroy(exec_ctx, elem->call_data);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800394}
395
396/* Constructor for channel_data */
Craig Tillera82950e2015-09-22 12:33:20 -0700397static void init_channel_elem(grpc_exec_ctx *exec_ctx,
Craig Tiller577c9b22015-11-02 14:11:15 -0800398 grpc_channel_element *elem,
399 grpc_channel_element_args *args) {
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800400 channel_data *chand = elem->channel_data;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800401
Craig Tillera82950e2015-09-22 12:33:20 -0700402 memset(chand, 0, sizeof(*chand));
Craig Tillereb3b12e2015-06-26 14:42:49 -0700403
Craig Tiller577c9b22015-11-02 14:11:15 -0800404 GPR_ASSERT(args->is_last);
Craig Tillera82950e2015-09-22 12:33:20 -0700405 GPR_ASSERT(elem->filter == &grpc_client_channel_filter);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800406
Craig Tillera82950e2015-09-22 12:33:20 -0700407 gpr_mu_init(&chand->mu_config);
Craig Tillera82950e2015-09-22 12:33:20 -0700408 grpc_closure_init(&chand->on_config_changed, cc_on_config_changed, chand);
Craig Tiller11beb9a2015-11-24 10:29:32 -0800409 chand->owning_stack = args->channel_stack;
Craig Tiller98465032015-06-29 14:36:42 -0700410
Craig Tillera82950e2015-09-22 12:33:20 -0700411 grpc_connectivity_state_init(&chand->state_tracker, GRPC_CHANNEL_IDLE,
412 "client_channel");
Craig Tiller69b093b2016-02-25 19:04:07 -0800413 chand->interested_parties = grpc_pollset_set_create();
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800414}
415
416/* Destructor for channel_data */
Craig Tillera82950e2015-09-22 12:33:20 -0700417static void destroy_channel_elem(grpc_exec_ctx *exec_ctx,
418 grpc_channel_element *elem) {
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800419 channel_data *chand = elem->channel_data;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800420
Craig Tillera82950e2015-09-22 12:33:20 -0700421 if (chand->resolver != NULL) {
422 grpc_resolver_shutdown(exec_ctx, chand->resolver);
423 GRPC_RESOLVER_UNREF(exec_ctx, chand->resolver, "channel");
424 }
425 if (chand->lb_policy != NULL) {
Craig Tiller1d881fb2015-12-01 07:39:04 -0800426 grpc_pollset_set_del_pollset_set(exec_ctx,
Craig Tiller69b093b2016-02-25 19:04:07 -0800427 chand->lb_policy->interested_parties,
428 chand->interested_parties);
Craig Tillera82950e2015-09-22 12:33:20 -0700429 GRPC_LB_POLICY_UNREF(exec_ctx, chand->lb_policy, "channel");
430 }
431 grpc_connectivity_state_destroy(exec_ctx, &chand->state_tracker);
Craig Tiller69b093b2016-02-25 19:04:07 -0800432 grpc_pollset_set_destroy(chand->interested_parties);
Craig Tillera82950e2015-09-22 12:33:20 -0700433 gpr_mu_destroy(&chand->mu_config);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800434}
435
Craig Tiller577c9b22015-11-02 14:11:15 -0800436static void cc_set_pollset(grpc_exec_ctx *exec_ctx, grpc_call_element *elem,
437 grpc_pollset *pollset) {
438 call_data *calld = elem->call_data;
439 calld->pollset = pollset;
440}
441
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800442const grpc_channel_filter grpc_client_channel_filter = {
Craig Tiller69b093b2016-02-25 19:04:07 -0800443 cc_start_transport_stream_op,
444 cc_start_transport_op,
445 sizeof(call_data),
446 init_call_elem,
447 cc_set_pollset,
448 destroy_call_elem,
449 sizeof(channel_data),
450 init_channel_elem,
451 destroy_channel_elem,
452 cc_get_peer,
453 "client-channel",
Craig Tiller87d5b192015-04-16 14:37:57 -0700454};
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800455
Craig Tillera82950e2015-09-22 12:33:20 -0700456void grpc_client_channel_set_resolver(grpc_exec_ctx *exec_ctx,
457 grpc_channel_stack *channel_stack,
458 grpc_resolver *resolver) {
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800459 /* post construction initialization: set the transport setup pointer */
Craig Tillera82950e2015-09-22 12:33:20 -0700460 grpc_channel_element *elem = grpc_channel_stack_last_element(channel_stack);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800461 channel_data *chand = elem->channel_data;
Craig Tillera82950e2015-09-22 12:33:20 -0700462 gpr_mu_lock(&chand->mu_config);
463 GPR_ASSERT(!chand->resolver);
Craig Tillerf5f17122015-06-25 08:47:26 -0700464 chand->resolver = resolver;
Craig Tillera82950e2015-09-22 12:33:20 -0700465 GRPC_RESOLVER_REF(resolver, "channel");
466 if (!grpc_closure_list_empty(chand->waiting_for_config_closures) ||
467 chand->exit_idle_when_lb_policy_arrives) {
468 chand->started_resolving = 1;
Craig Tiller906e3bc2015-11-24 07:31:31 -0800469 GRPC_CHANNEL_STACK_REF(chand->owning_stack, "resolver");
Craig Tillera82950e2015-09-22 12:33:20 -0700470 grpc_resolver_next(exec_ctx, resolver, &chand->incoming_configuration,
471 &chand->on_config_changed);
472 }
473 gpr_mu_unlock(&chand->mu_config);
Craig Tiller190d3602015-02-18 09:23:38 -0800474}
Craig Tiller48cb07c2015-07-15 16:16:15 -0700475
Craig Tillera82950e2015-09-22 12:33:20 -0700476grpc_connectivity_state grpc_client_channel_check_connectivity_state(
477 grpc_exec_ctx *exec_ctx, grpc_channel_element *elem, int try_to_connect) {
Craig Tiller48cb07c2015-07-15 16:16:15 -0700478 channel_data *chand = elem->channel_data;
479 grpc_connectivity_state out;
Craig Tillera82950e2015-09-22 12:33:20 -0700480 gpr_mu_lock(&chand->mu_config);
481 out = grpc_connectivity_state_check(&chand->state_tracker);
482 if (out == GRPC_CHANNEL_IDLE && try_to_connect) {
483 if (chand->lb_policy != NULL) {
484 grpc_lb_policy_exit_idle(exec_ctx, chand->lb_policy);
485 } else {
486 chand->exit_idle_when_lb_policy_arrives = 1;
487 if (!chand->started_resolving && chand->resolver != NULL) {
Craig Tiller906e3bc2015-11-24 07:31:31 -0800488 GRPC_CHANNEL_STACK_REF(chand->owning_stack, "resolver");
Craig Tillera82950e2015-09-22 12:33:20 -0700489 chand->started_resolving = 1;
490 grpc_resolver_next(exec_ctx, chand->resolver,
491 &chand->incoming_configuration,
492 &chand->on_config_changed);
493 }
Craig Tiller48cb07c2015-07-15 16:16:15 -0700494 }
Craig Tillera82950e2015-09-22 12:33:20 -0700495 }
496 gpr_mu_unlock(&chand->mu_config);
Craig Tiller48cb07c2015-07-15 16:16:15 -0700497 return out;
498}
499
Craig Tiller86c99582015-11-25 15:22:26 -0800500typedef struct {
501 channel_data *chand;
502 grpc_pollset *pollset;
503 grpc_closure *on_complete;
504 grpc_closure my_closure;
505} external_connectivity_watcher;
506
Craig Tiller1d881fb2015-12-01 07:39:04 -0800507static void on_external_watch_complete(grpc_exec_ctx *exec_ctx, void *arg,
Craig Tiller6c396862016-01-28 13:53:40 -0800508 bool iomgr_success) {
Craig Tiller86c99582015-11-25 15:22:26 -0800509 external_connectivity_watcher *w = arg;
510 grpc_closure *follow_up = w->on_complete;
Craig Tiller69b093b2016-02-25 19:04:07 -0800511 grpc_pollset_set_del_pollset(exec_ctx, w->chand->interested_parties,
Craig Tiller1d881fb2015-12-01 07:39:04 -0800512 w->pollset);
513 GRPC_CHANNEL_STACK_UNREF(exec_ctx, w->chand->owning_stack,
514 "external_connectivity_watcher");
Craig Tiller86c99582015-11-25 15:22:26 -0800515 gpr_free(w);
516 follow_up->cb(exec_ctx, follow_up->cb_arg, iomgr_success);
517}
518
Craig Tillera82950e2015-09-22 12:33:20 -0700519void grpc_client_channel_watch_connectivity_state(
Craig Tiller906e3bc2015-11-24 07:31:31 -0800520 grpc_exec_ctx *exec_ctx, grpc_channel_element *elem, grpc_pollset *pollset,
Craig Tillera82950e2015-09-22 12:33:20 -0700521 grpc_connectivity_state *state, grpc_closure *on_complete) {
Craig Tiller48cb07c2015-07-15 16:16:15 -0700522 channel_data *chand = elem->channel_data;
Craig Tiller86c99582015-11-25 15:22:26 -0800523 external_connectivity_watcher *w = gpr_malloc(sizeof(*w));
524 w->chand = chand;
525 w->pollset = pollset;
526 w->on_complete = on_complete;
Craig Tiller69b093b2016-02-25 19:04:07 -0800527 grpc_pollset_set_add_pollset(exec_ctx, chand->interested_parties, pollset);
Craig Tiller86c99582015-11-25 15:22:26 -0800528 grpc_closure_init(&w->my_closure, on_external_watch_complete, w);
Craig Tiller1d881fb2015-12-01 07:39:04 -0800529 GRPC_CHANNEL_STACK_REF(w->chand->owning_stack,
530 "external_connectivity_watcher");
Craig Tillera82950e2015-09-22 12:33:20 -0700531 gpr_mu_lock(&chand->mu_config);
532 grpc_connectivity_state_notify_on_state_change(
Craig Tiller86c99582015-11-25 15:22:26 -0800533 exec_ctx, &chand->state_tracker, state, &w->my_closure);
Craig Tillera82950e2015-09-22 12:33:20 -0700534 gpr_mu_unlock(&chand->mu_config);
Craig Tiller48cb07c2015-07-15 16:16:15 -0700535}