blob: 60f2acb9ef45eb7e5a0e49c4dfc817b429c26be8 [file] [log] [blame]
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001/*
2 *
Craig Tiller06059952015-02-18 08:34:56 -08003 * Copyright 2015, 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 Tiller86c99582015-11-25 15:22:26 -080081 /** interested parties */
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);
127 }
128 grpc_connectivity_state_set(exec_ctx, &w->chand->state_tracker, publish_state,
Craig Tillera82950e2015-09-22 12:33:20 -0700129 "lb_changed");
130 if (w->state != GRPC_CHANNEL_FATAL_FAILURE) {
131 watch_lb_policy(exec_ctx, w->chand, w->lb_policy, w->state);
132 }
Craig Tiller5795da72015-09-17 15:27:13 -0700133}
134
Craig Tillera82950e2015-09-22 12:33:20 -0700135static void on_lb_policy_state_changed(grpc_exec_ctx *exec_ctx, void *arg,
136 int iomgr_success) {
Craig Tiller1ada6ad2015-07-16 16:19:14 -0700137 lb_policy_connectivity_watcher *w = arg;
Craig Tiller1ada6ad2015-07-16 16:19:14 -0700138
Craig Tillera82950e2015-09-22 12:33:20 -0700139 gpr_mu_lock(&w->chand->mu_config);
140 on_lb_policy_state_changed_locked(exec_ctx, w);
141 gpr_mu_unlock(&w->chand->mu_config);
Craig Tiller1ada6ad2015-07-16 16:19:14 -0700142
Craig Tiller906e3bc2015-11-24 07:31:31 -0800143 GRPC_CHANNEL_STACK_UNREF(exec_ctx, w->chand->owning_stack, "watch_lb_policy");
Craig Tillera82950e2015-09-22 12:33:20 -0700144 gpr_free(w);
Craig Tiller1ada6ad2015-07-16 16:19:14 -0700145}
146
Craig Tillera82950e2015-09-22 12:33:20 -0700147static void watch_lb_policy(grpc_exec_ctx *exec_ctx, channel_data *chand,
148 grpc_lb_policy *lb_policy,
149 grpc_connectivity_state current_state) {
150 lb_policy_connectivity_watcher *w = gpr_malloc(sizeof(*w));
Craig Tiller906e3bc2015-11-24 07:31:31 -0800151 GRPC_CHANNEL_STACK_REF(chand->owning_stack, "watch_lb_policy");
Craig Tiller1ada6ad2015-07-16 16:19:14 -0700152
Craig Tiller1ada6ad2015-07-16 16:19:14 -0700153 w->chand = chand;
Craig Tillera82950e2015-09-22 12:33:20 -0700154 grpc_closure_init(&w->on_changed, on_lb_policy_state_changed, w);
Craig Tiller1ada6ad2015-07-16 16:19:14 -0700155 w->state = current_state;
156 w->lb_policy = lb_policy;
Craig Tillera82950e2015-09-22 12:33:20 -0700157 grpc_lb_policy_notify_on_state_change(exec_ctx, lb_policy, &w->state,
158 &w->on_changed);
Craig Tiller1ada6ad2015-07-16 16:19:14 -0700159}
160
Craig Tillera82950e2015-09-22 12:33:20 -0700161static void cc_on_config_changed(grpc_exec_ctx *exec_ctx, void *arg,
162 int iomgr_success) {
Craig Tiller3f475422015-06-25 10:43:05 -0700163 channel_data *chand = arg;
164 grpc_lb_policy *lb_policy = NULL;
165 grpc_lb_policy *old_lb_policy;
166 grpc_resolver *old_resolver;
Craig Tiller1ada6ad2015-07-16 16:19:14 -0700167 grpc_connectivity_state state = GRPC_CHANNEL_TRANSIENT_FAILURE;
Craig Tiller48cb07c2015-07-15 16:16:15 -0700168 int exit_idle = 0;
Craig Tiller3f475422015-06-25 10:43:05 -0700169
Craig Tillera82950e2015-09-22 12:33:20 -0700170 if (chand->incoming_configuration != NULL) {
171 lb_policy = grpc_client_config_get_lb_policy(chand->incoming_configuration);
172 if (lb_policy != NULL) {
173 GRPC_LB_POLICY_REF(lb_policy, "channel");
174 GRPC_LB_POLICY_REF(lb_policy, "config_change");
175 state = grpc_lb_policy_check_connectivity(exec_ctx, lb_policy);
Craig Tiller45724b32015-09-22 10:42:19 -0700176 }
Craig Tiller3f475422015-06-25 10:43:05 -0700177
Craig Tillera82950e2015-09-22 12:33:20 -0700178 grpc_client_config_unref(exec_ctx, chand->incoming_configuration);
179 }
180
Craig Tiller3f475422015-06-25 10:43:05 -0700181 chand->incoming_configuration = NULL;
182
Craig Tiller86c99582015-11-25 15:22:26 -0800183 if (lb_policy != NULL) {
Craig Tiller1d881fb2015-12-01 07:39:04 -0800184 grpc_pollset_set_add_pollset_set(exec_ctx, &lb_policy->interested_parties,
185 &chand->interested_parties);
Craig Tiller86c99582015-11-25 15:22:26 -0800186 }
187
Craig Tillera82950e2015-09-22 12:33:20 -0700188 gpr_mu_lock(&chand->mu_config);
Craig Tiller3f475422015-06-25 10:43:05 -0700189 old_lb_policy = chand->lb_policy;
190 chand->lb_policy = lb_policy;
Craig Tillera82950e2015-09-22 12:33:20 -0700191 if (lb_policy != NULL || chand->resolver == NULL /* disconnected */) {
192 grpc_exec_ctx_enqueue_list(exec_ctx, &chand->waiting_for_config_closures);
193 }
194 if (lb_policy != NULL && chand->exit_idle_when_lb_policy_arrives) {
195 GRPC_LB_POLICY_REF(lb_policy, "exit_idle");
196 exit_idle = 1;
197 chand->exit_idle_when_lb_policy_arrives = 0;
198 }
Craig Tiller98465032015-06-29 14:36:42 -0700199
Craig Tillera82950e2015-09-22 12:33:20 -0700200 if (iomgr_success && chand->resolver) {
201 grpc_resolver *resolver = chand->resolver;
202 GRPC_RESOLVER_REF(resolver, "channel-next");
203 grpc_connectivity_state_set(exec_ctx, &chand->state_tracker, state,
204 "new_lb+resolver");
205 if (lb_policy != NULL) {
206 watch_lb_policy(exec_ctx, chand, lb_policy, state);
Craig Tiller45724b32015-09-22 10:42:19 -0700207 }
Craig Tillera82950e2015-09-22 12:33:20 -0700208 gpr_mu_unlock(&chand->mu_config);
Craig Tiller906e3bc2015-11-24 07:31:31 -0800209 GRPC_CHANNEL_STACK_REF(chand->owning_stack, "resolver");
Craig Tillera82950e2015-09-22 12:33:20 -0700210 grpc_resolver_next(exec_ctx, resolver, &chand->incoming_configuration,
211 &chand->on_config_changed);
212 GRPC_RESOLVER_UNREF(exec_ctx, resolver, "channel-next");
213 } else {
214 old_resolver = chand->resolver;
215 chand->resolver = NULL;
216 grpc_connectivity_state_set(exec_ctx, &chand->state_tracker,
217 GRPC_CHANNEL_FATAL_FAILURE, "resolver_gone");
218 gpr_mu_unlock(&chand->mu_config);
219 if (old_resolver != NULL) {
220 grpc_resolver_shutdown(exec_ctx, old_resolver);
221 GRPC_RESOLVER_UNREF(exec_ctx, old_resolver, "channel");
Craig Tiller45724b32015-09-22 10:42:19 -0700222 }
Craig Tillera82950e2015-09-22 12:33:20 -0700223 }
Craig Tiller1ada6ad2015-07-16 16:19:14 -0700224
Craig Tillera82950e2015-09-22 12:33:20 -0700225 if (exit_idle) {
226 grpc_lb_policy_exit_idle(exec_ctx, lb_policy);
227 GRPC_LB_POLICY_UNREF(exec_ctx, lb_policy, "exit_idle");
228 }
Craig Tiller1ada6ad2015-07-16 16:19:14 -0700229
Craig Tillera82950e2015-09-22 12:33:20 -0700230 if (old_lb_policy != NULL) {
Craig Tiller1d881fb2015-12-01 07:39:04 -0800231 grpc_pollset_set_del_pollset_set(exec_ctx,
232 &old_lb_policy->interested_parties,
233 &chand->interested_parties);
Craig Tillera82950e2015-09-22 12:33:20 -0700234 GRPC_LB_POLICY_UNREF(exec_ctx, old_lb_policy, "channel");
235 }
Craig Tiller000cd8f2015-09-18 07:20:29 -0700236
Craig Tillera82950e2015-09-22 12:33:20 -0700237 if (lb_policy != NULL) {
238 GRPC_LB_POLICY_UNREF(exec_ctx, lb_policy, "config_change");
239 }
Craig Tiller45724b32015-09-22 10:42:19 -0700240
Craig Tiller906e3bc2015-11-24 07:31:31 -0800241 GRPC_CHANNEL_STACK_UNREF(exec_ctx, chand->owning_stack, "resolver");
Craig Tiller3f475422015-06-25 10:43:05 -0700242}
243
Craig Tillera82950e2015-09-22 12:33:20 -0700244static void cc_start_transport_op(grpc_exec_ctx *exec_ctx,
245 grpc_channel_element *elem,
246 grpc_transport_op *op) {
Craig Tillerca3e9d32015-06-27 18:37:27 -0700247 grpc_lb_policy *lb_policy = NULL;
248 channel_data *chand = elem->channel_data;
Craig Tiller98465032015-06-29 14:36:42 -0700249 grpc_resolver *destroy_resolver = NULL;
Craig Tiller000cd8f2015-09-18 07:20:29 -0700250
Craig Tillera82950e2015-09-22 12:33:20 -0700251 grpc_exec_ctx_enqueue(exec_ctx, op->on_consumed, 1);
Craig Tillerca3e9d32015-06-27 18:37:27 -0700252
Craig Tillera82950e2015-09-22 12:33:20 -0700253 GPR_ASSERT(op->set_accept_stream == NULL);
254 GPR_ASSERT(op->bind_pollset == NULL);
Craig Tillerca3e9d32015-06-27 18:37:27 -0700255
Craig Tillera82950e2015-09-22 12:33:20 -0700256 gpr_mu_lock(&chand->mu_config);
257 if (op->on_connectivity_state_change != NULL) {
258 grpc_connectivity_state_notify_on_state_change(
259 exec_ctx, &chand->state_tracker, op->connectivity_state,
260 op->on_connectivity_state_change);
261 op->on_connectivity_state_change = NULL;
262 op->connectivity_state = NULL;
263 }
264
Craig Tiller577c9b22015-11-02 14:11:15 -0800265 lb_policy = chand->lb_policy;
Craig Tillera82950e2015-09-22 12:33:20 -0700266 if (op->disconnect && chand->resolver != NULL) {
267 grpc_connectivity_state_set(exec_ctx, &chand->state_tracker,
268 GRPC_CHANNEL_FATAL_FAILURE, "disconnect");
269 destroy_resolver = chand->resolver;
270 chand->resolver = NULL;
271 if (chand->lb_policy != NULL) {
Craig Tiller1d881fb2015-12-01 07:39:04 -0800272 grpc_pollset_set_del_pollset_set(exec_ctx,
273 &chand->lb_policy->interested_parties,
274 &chand->interested_parties);
Craig Tillera82950e2015-09-22 12:33:20 -0700275 GRPC_LB_POLICY_UNREF(exec_ctx, chand->lb_policy, "channel");
276 chand->lb_policy = NULL;
Craig Tillerd2cc4592015-07-01 07:50:47 -0700277 }
Craig Tillera82950e2015-09-22 12:33:20 -0700278 }
279 gpr_mu_unlock(&chand->mu_config);
Craig Tillerca3e9d32015-06-27 18:37:27 -0700280
Craig Tillera82950e2015-09-22 12:33:20 -0700281 if (destroy_resolver) {
282 grpc_resolver_shutdown(exec_ctx, destroy_resolver);
283 GRPC_RESOLVER_UNREF(exec_ctx, destroy_resolver, "channel");
284 }
Craig Tillerca3e9d32015-06-27 18:37:27 -0700285}
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800286
Craig Tiller577c9b22015-11-02 14:11:15 -0800287typedef struct {
288 grpc_metadata_batch *initial_metadata;
Craig Tillerb5585d42015-11-17 07:18:31 -0800289 grpc_connected_subchannel **connected_subchannel;
Craig Tiller577c9b22015-11-02 14:11:15 -0800290 grpc_closure *on_ready;
291 grpc_call_element *elem;
292 grpc_closure closure;
293} continue_picking_args;
294
295static int cc_pick_subchannel(grpc_exec_ctx *exec_ctx, void *arg,
296 grpc_metadata_batch *initial_metadata,
Craig Tillerb5585d42015-11-17 07:18:31 -0800297 grpc_connected_subchannel **connected_subchannel,
Craig Tiller577c9b22015-11-02 14:11:15 -0800298 grpc_closure *on_ready);
299
300static void continue_picking(grpc_exec_ctx *exec_ctx, void *arg, int success) {
301 continue_picking_args *cpa = arg;
302 if (!success) {
303 grpc_exec_ctx_enqueue(exec_ctx, cpa->on_ready, 0);
Craig Tillerb5585d42015-11-17 07:18:31 -0800304 } else if (cpa->connected_subchannel == NULL) {
Craig Tiller577c9b22015-11-02 14:11:15 -0800305 /* cancelled, do nothing */
306 } else if (cc_pick_subchannel(exec_ctx, cpa->elem, cpa->initial_metadata,
Craig Tillerb5585d42015-11-17 07:18:31 -0800307 cpa->connected_subchannel, cpa->on_ready)) {
Craig Tiller577c9b22015-11-02 14:11:15 -0800308 grpc_exec_ctx_enqueue(exec_ctx, cpa->on_ready, 1);
309 }
310 gpr_free(cpa);
311}
312
313static int cc_pick_subchannel(grpc_exec_ctx *exec_ctx, void *elemp,
314 grpc_metadata_batch *initial_metadata,
Craig Tillerb5585d42015-11-17 07:18:31 -0800315 grpc_connected_subchannel **connected_subchannel,
Craig Tiller577c9b22015-11-02 14:11:15 -0800316 grpc_closure *on_ready) {
317 grpc_call_element *elem = elemp;
318 channel_data *chand = elem->channel_data;
319 call_data *calld = elem->call_data;
320 continue_picking_args *cpa;
321 grpc_closure *closure;
322
Craig Tillerb5585d42015-11-17 07:18:31 -0800323 GPR_ASSERT(connected_subchannel);
Craig Tiller577c9b22015-11-02 14:11:15 -0800324
325 gpr_mu_lock(&chand->mu_config);
326 if (initial_metadata == NULL) {
327 if (chand->lb_policy != NULL) {
Craig Tillerab33b482015-11-21 08:11:04 -0800328 grpc_lb_policy_cancel_pick(exec_ctx, chand->lb_policy,
329 connected_subchannel);
Craig Tiller577c9b22015-11-02 14:11:15 -0800330 }
331 for (closure = chand->waiting_for_config_closures.head; closure != NULL;
332 closure = grpc_closure_next(closure)) {
333 cpa = closure->cb_arg;
Craig Tillerb5585d42015-11-17 07:18:31 -0800334 if (cpa->connected_subchannel == connected_subchannel) {
335 cpa->connected_subchannel = NULL;
Craig Tiller577c9b22015-11-02 14:11:15 -0800336 grpc_exec_ctx_enqueue(exec_ctx, cpa->on_ready, 0);
337 }
338 }
339 gpr_mu_unlock(&chand->mu_config);
340 return 1;
341 }
342 if (chand->lb_policy != NULL) {
Craig Tillerab33b482015-11-21 08:11:04 -0800343 int r =
344 grpc_lb_policy_pick(exec_ctx, chand->lb_policy, calld->pollset,
345 initial_metadata, connected_subchannel, on_ready);
Craig Tiller577c9b22015-11-02 14:11:15 -0800346 gpr_mu_unlock(&chand->mu_config);
347 return r;
348 }
349 if (chand->resolver != NULL && !chand->started_resolving) {
350 chand->started_resolving = 1;
Craig Tiller906e3bc2015-11-24 07:31:31 -0800351 GRPC_CHANNEL_STACK_REF(chand->owning_stack, "resolver");
Craig Tiller577c9b22015-11-02 14:11:15 -0800352 grpc_resolver_next(exec_ctx, chand->resolver,
353 &chand->incoming_configuration,
354 &chand->on_config_changed);
355 }
356 cpa = gpr_malloc(sizeof(*cpa));
357 cpa->initial_metadata = initial_metadata;
Craig Tillerb5585d42015-11-17 07:18:31 -0800358 cpa->connected_subchannel = connected_subchannel;
Craig Tiller577c9b22015-11-02 14:11:15 -0800359 cpa->on_ready = on_ready;
360 cpa->elem = elem;
361 grpc_closure_init(&cpa->closure, continue_picking, cpa);
362 grpc_closure_list_add(&chand->waiting_for_config_closures, &cpa->closure, 1);
363 gpr_mu_unlock(&chand->mu_config);
364 return 0;
365}
366
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800367/* Constructor for call_data */
Craig Tillera82950e2015-09-22 12:33:20 -0700368static void init_call_elem(grpc_exec_ctx *exec_ctx, grpc_call_element *elem,
Craig Tiller577c9b22015-11-02 14:11:15 -0800369 grpc_call_element_args *args) {
Craig Tiller11beb9a2015-11-24 10:29:32 -0800370 grpc_subchannel_call_holder_init(elem->call_data, cc_pick_subchannel, elem,
371 args->call_stack);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800372}
373
374/* Destructor for call_data */
Craig Tillera82950e2015-09-22 12:33:20 -0700375static void destroy_call_elem(grpc_exec_ctx *exec_ctx,
376 grpc_call_element *elem) {
Craig Tiller577c9b22015-11-02 14:11:15 -0800377 grpc_subchannel_call_holder_destroy(exec_ctx, elem->call_data);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800378}
379
380/* Constructor for channel_data */
Craig Tillera82950e2015-09-22 12:33:20 -0700381static void init_channel_elem(grpc_exec_ctx *exec_ctx,
Craig Tiller577c9b22015-11-02 14:11:15 -0800382 grpc_channel_element *elem,
383 grpc_channel_element_args *args) {
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800384 channel_data *chand = elem->channel_data;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800385
Craig Tillera82950e2015-09-22 12:33:20 -0700386 memset(chand, 0, sizeof(*chand));
Craig Tillereb3b12e2015-06-26 14:42:49 -0700387
Craig Tiller577c9b22015-11-02 14:11:15 -0800388 GPR_ASSERT(args->is_last);
Craig Tillera82950e2015-09-22 12:33:20 -0700389 GPR_ASSERT(elem->filter == &grpc_client_channel_filter);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800390
Craig Tillera82950e2015-09-22 12:33:20 -0700391 gpr_mu_init(&chand->mu_config);
Craig Tillera82950e2015-09-22 12:33:20 -0700392 grpc_closure_init(&chand->on_config_changed, cc_on_config_changed, chand);
Craig Tiller11beb9a2015-11-24 10:29:32 -0800393 chand->owning_stack = args->channel_stack;
Craig Tiller98465032015-06-29 14:36:42 -0700394
Craig Tillera82950e2015-09-22 12:33:20 -0700395 grpc_connectivity_state_init(&chand->state_tracker, GRPC_CHANNEL_IDLE,
396 "client_channel");
Craig Tiller86c99582015-11-25 15:22:26 -0800397 grpc_pollset_set_init(&chand->interested_parties);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800398}
399
400/* Destructor for channel_data */
Craig Tillera82950e2015-09-22 12:33:20 -0700401static void destroy_channel_elem(grpc_exec_ctx *exec_ctx,
402 grpc_channel_element *elem) {
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800403 channel_data *chand = elem->channel_data;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800404
Craig Tillera82950e2015-09-22 12:33:20 -0700405 if (chand->resolver != NULL) {
406 grpc_resolver_shutdown(exec_ctx, chand->resolver);
407 GRPC_RESOLVER_UNREF(exec_ctx, chand->resolver, "channel");
408 }
409 if (chand->lb_policy != NULL) {
Craig Tiller1d881fb2015-12-01 07:39:04 -0800410 grpc_pollset_set_del_pollset_set(exec_ctx,
411 &chand->lb_policy->interested_parties,
412 &chand->interested_parties);
Craig Tillera82950e2015-09-22 12:33:20 -0700413 GRPC_LB_POLICY_UNREF(exec_ctx, chand->lb_policy, "channel");
414 }
415 grpc_connectivity_state_destroy(exec_ctx, &chand->state_tracker);
Craig Tiller86c99582015-11-25 15:22:26 -0800416 grpc_pollset_set_destroy(&chand->interested_parties);
Craig Tillera82950e2015-09-22 12:33:20 -0700417 gpr_mu_destroy(&chand->mu_config);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800418}
419
Craig Tiller577c9b22015-11-02 14:11:15 -0800420static void cc_set_pollset(grpc_exec_ctx *exec_ctx, grpc_call_element *elem,
421 grpc_pollset *pollset) {
422 call_data *calld = elem->call_data;
423 calld->pollset = pollset;
424}
425
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800426const grpc_channel_filter grpc_client_channel_filter = {
Craig Tiller71a0f9d2015-09-28 17:22:01 -0700427 cc_start_transport_stream_op, cc_start_transport_op, sizeof(call_data),
Craig Tiller577c9b22015-11-02 14:11:15 -0800428 init_call_elem, cc_set_pollset, destroy_call_elem, sizeof(channel_data),
429 init_channel_elem, destroy_channel_elem, cc_get_peer, "client-channel",
Craig Tiller87d5b192015-04-16 14:37:57 -0700430};
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800431
Craig Tillera82950e2015-09-22 12:33:20 -0700432void grpc_client_channel_set_resolver(grpc_exec_ctx *exec_ctx,
433 grpc_channel_stack *channel_stack,
434 grpc_resolver *resolver) {
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800435 /* post construction initialization: set the transport setup pointer */
Craig Tillera82950e2015-09-22 12:33:20 -0700436 grpc_channel_element *elem = grpc_channel_stack_last_element(channel_stack);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800437 channel_data *chand = elem->channel_data;
Craig Tillera82950e2015-09-22 12:33:20 -0700438 gpr_mu_lock(&chand->mu_config);
439 GPR_ASSERT(!chand->resolver);
Craig Tillerf5f17122015-06-25 08:47:26 -0700440 chand->resolver = resolver;
Craig Tillera82950e2015-09-22 12:33:20 -0700441 GRPC_RESOLVER_REF(resolver, "channel");
442 if (!grpc_closure_list_empty(chand->waiting_for_config_closures) ||
443 chand->exit_idle_when_lb_policy_arrives) {
444 chand->started_resolving = 1;
Craig Tiller906e3bc2015-11-24 07:31:31 -0800445 GRPC_CHANNEL_STACK_REF(chand->owning_stack, "resolver");
Craig Tillera82950e2015-09-22 12:33:20 -0700446 grpc_resolver_next(exec_ctx, resolver, &chand->incoming_configuration,
447 &chand->on_config_changed);
448 }
449 gpr_mu_unlock(&chand->mu_config);
Craig Tiller190d3602015-02-18 09:23:38 -0800450}
Craig Tiller48cb07c2015-07-15 16:16:15 -0700451
Craig Tillera82950e2015-09-22 12:33:20 -0700452grpc_connectivity_state grpc_client_channel_check_connectivity_state(
453 grpc_exec_ctx *exec_ctx, grpc_channel_element *elem, int try_to_connect) {
Craig Tiller48cb07c2015-07-15 16:16:15 -0700454 channel_data *chand = elem->channel_data;
455 grpc_connectivity_state out;
Craig Tillera82950e2015-09-22 12:33:20 -0700456 gpr_mu_lock(&chand->mu_config);
457 out = grpc_connectivity_state_check(&chand->state_tracker);
458 if (out == GRPC_CHANNEL_IDLE && try_to_connect) {
459 if (chand->lb_policy != NULL) {
460 grpc_lb_policy_exit_idle(exec_ctx, chand->lb_policy);
461 } else {
462 chand->exit_idle_when_lb_policy_arrives = 1;
463 if (!chand->started_resolving && chand->resolver != NULL) {
Craig Tiller906e3bc2015-11-24 07:31:31 -0800464 GRPC_CHANNEL_STACK_REF(chand->owning_stack, "resolver");
Craig Tillera82950e2015-09-22 12:33:20 -0700465 chand->started_resolving = 1;
466 grpc_resolver_next(exec_ctx, chand->resolver,
467 &chand->incoming_configuration,
468 &chand->on_config_changed);
469 }
Craig Tiller48cb07c2015-07-15 16:16:15 -0700470 }
Craig Tillera82950e2015-09-22 12:33:20 -0700471 }
472 gpr_mu_unlock(&chand->mu_config);
Craig Tiller48cb07c2015-07-15 16:16:15 -0700473 return out;
474}
475
Craig Tiller86c99582015-11-25 15:22:26 -0800476typedef struct {
477 channel_data *chand;
478 grpc_pollset *pollset;
479 grpc_closure *on_complete;
480 grpc_closure my_closure;
481} external_connectivity_watcher;
482
Craig Tiller1d881fb2015-12-01 07:39:04 -0800483static void on_external_watch_complete(grpc_exec_ctx *exec_ctx, void *arg,
484 int iomgr_success) {
Craig Tiller86c99582015-11-25 15:22:26 -0800485 external_connectivity_watcher *w = arg;
486 grpc_closure *follow_up = w->on_complete;
Craig Tiller1d881fb2015-12-01 07:39:04 -0800487 grpc_pollset_set_del_pollset(exec_ctx, &w->chand->interested_parties,
488 w->pollset);
489 GRPC_CHANNEL_STACK_UNREF(exec_ctx, w->chand->owning_stack,
490 "external_connectivity_watcher");
Craig Tiller86c99582015-11-25 15:22:26 -0800491 gpr_free(w);
492 follow_up->cb(exec_ctx, follow_up->cb_arg, iomgr_success);
493}
494
Craig Tillera82950e2015-09-22 12:33:20 -0700495void grpc_client_channel_watch_connectivity_state(
Craig Tiller906e3bc2015-11-24 07:31:31 -0800496 grpc_exec_ctx *exec_ctx, grpc_channel_element *elem, grpc_pollset *pollset,
Craig Tillera82950e2015-09-22 12:33:20 -0700497 grpc_connectivity_state *state, grpc_closure *on_complete) {
Craig Tiller48cb07c2015-07-15 16:16:15 -0700498 channel_data *chand = elem->channel_data;
Craig Tiller86c99582015-11-25 15:22:26 -0800499 external_connectivity_watcher *w = gpr_malloc(sizeof(*w));
500 w->chand = chand;
501 w->pollset = pollset;
502 w->on_complete = on_complete;
503 grpc_pollset_set_add_pollset(exec_ctx, &chand->interested_parties, pollset);
504 grpc_closure_init(&w->my_closure, on_external_watch_complete, w);
Craig Tiller1d881fb2015-12-01 07:39:04 -0800505 GRPC_CHANNEL_STACK_REF(w->chand->owning_stack,
506 "external_connectivity_watcher");
Craig Tillera82950e2015-09-22 12:33:20 -0700507 gpr_mu_lock(&chand->mu_config);
508 grpc_connectivity_state_notify_on_state_change(
Craig Tiller86c99582015-11-25 15:22:26 -0800509 exec_ctx, &chand->state_tracker, state, &w->my_closure);
Craig Tillera82950e2015-09-22 12:33:20 -0700510 gpr_mu_unlock(&chand->mu_config);
Craig Tiller48cb07c2015-07-15 16:16:15 -0700511}