blob: 3aded6b48e1e173653658fca76d1b68db8c335b3 [file] [log] [blame]
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001/*
2 *
Jan Tattermusch7897ae92017-06-07 22:57:36 +02003 * Copyright 2015 gRPC authors.
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004 *
Jan Tattermusch7897ae92017-06-07 22:57:36 +02005 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08008 *
Jan Tattermusch7897ae92017-06-07 22:57:36 +02009 * http://www.apache.org/licenses/LICENSE-2.0
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080010 *
Jan Tattermusch7897ae92017-06-07 22:57:36 +020011 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080016 *
17 */
18
Craig Tiller9eb0fde2017-03-31 16:59:30 -070019#include "src/core/ext/filters/client_channel/client_channel.h"
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080020
Mark D. Roth4c0fe492016-08-31 13:51:55 -070021#include <stdbool.h>
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080022#include <stdio.h>
Craig Tillereb3b12e2015-06-26 14:42:49 -070023#include <string.h>
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080024
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080025#include <grpc/support/alloc.h>
26#include <grpc/support/log.h>
Mark D. Rothb2d24882016-10-27 15:44:07 -070027#include <grpc/support/string_util.h>
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080028#include <grpc/support/sync.h>
29#include <grpc/support/useful.h>
30
Craig Tiller9eb0fde2017-03-31 16:59:30 -070031#include "src/core/ext/filters/client_channel/http_connect_handshaker.h"
32#include "src/core/ext/filters/client_channel/lb_policy_registry.h"
33#include "src/core/ext/filters/client_channel/proxy_mapper_registry.h"
34#include "src/core/ext/filters/client_channel/resolver_registry.h"
35#include "src/core/ext/filters/client_channel/retry_throttle.h"
36#include "src/core/ext/filters/client_channel/subchannel.h"
Craig Tiller3be7dd02017-04-03 14:30:03 -070037#include "src/core/ext/filters/deadline/deadline_filter.h"
Craig Tiller9533d042016-03-25 17:11:06 -070038#include "src/core/lib/channel/channel_args.h"
39#include "src/core/lib/channel/connected_channel.h"
Craig Tillerbefafe62017-02-09 11:30:54 -080040#include "src/core/lib/iomgr/combiner.h"
Craig Tiller9533d042016-03-25 17:11:06 -070041#include "src/core/lib/iomgr/iomgr.h"
Mark D. Roth4c0fe492016-08-31 13:51:55 -070042#include "src/core/lib/iomgr/polling_entity.h"
Craig Tiller9533d042016-03-25 17:11:06 -070043#include "src/core/lib/profiling/timers.h"
Craig Tiller7c70b6c2017-01-23 07:48:42 -080044#include "src/core/lib/slice/slice_internal.h"
Craig Tiller9533d042016-03-25 17:11:06 -070045#include "src/core/lib/support/string.h"
46#include "src/core/lib/surface/channel.h"
47#include "src/core/lib/transport/connectivity_state.h"
Mark D. Roth9fe284e2016-09-12 11:22:27 -070048#include "src/core/lib/transport/metadata.h"
49#include "src/core/lib/transport/metadata_batch.h"
Mark D. Rothea846a02016-11-03 11:32:54 -070050#include "src/core/lib/transport/service_config.h"
Mark D. Roth9fe284e2016-09-12 11:22:27 -070051#include "src/core/lib/transport/static_metadata.h"
Craig Tiller8910ac62015-10-08 16:49:15 -070052
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080053/* Client channel implementation */
54
ncteisen7712c7c2017-07-12 23:11:27 -070055grpc_tracer_flag grpc_client_channel_trace =
56 GRPC_TRACER_INITIALIZER(false, "client_channel");
Mark D. Roth60751fe2017-07-07 12:50:33 -070057
Mark D. Roth26b7be42016-10-24 10:08:07 -070058/*************************************************************************
59 * METHOD-CONFIG TABLE
60 */
61
Mark D. Roth9d480942016-10-19 14:18:05 -070062typedef enum {
Craig Tiller7acc37e2017-02-28 10:01:37 -080063 /* zero so it can be default initialized */
64 WAIT_FOR_READY_UNSET = 0,
Mark D. Roth9d480942016-10-19 14:18:05 -070065 WAIT_FOR_READY_FALSE,
66 WAIT_FOR_READY_TRUE
67} wait_for_ready_value;
68
Mark D. Roth95b627b2017-02-24 11:02:58 -080069typedef struct {
70 gpr_refcount refs;
Mark D. Roth9d480942016-10-19 14:18:05 -070071 gpr_timespec timeout;
72 wait_for_ready_value wait_for_ready;
73} method_parameters;
74
Mark D. Roth722de8d2017-02-27 10:50:44 -080075static method_parameters *method_parameters_ref(
Mark D. Roth95b627b2017-02-24 11:02:58 -080076 method_parameters *method_params) {
77 gpr_ref(&method_params->refs);
78 return method_params;
Mark D. Roth9d480942016-10-19 14:18:05 -070079}
80
Mark D. Roth95b627b2017-02-24 11:02:58 -080081static void method_parameters_unref(method_parameters *method_params) {
82 if (gpr_unref(&method_params->refs)) {
83 gpr_free(method_params);
84 }
85}
86
Mark D. Roth95b627b2017-02-24 11:02:58 -080087static void method_parameters_free(grpc_exec_ctx *exec_ctx, void *value) {
Yash Tibrewalbc130da2017-09-12 22:44:08 -070088 method_parameters_unref((method_parameters *)value);
Craig Tiller87a7e1f2016-11-09 09:42:19 -080089}
90
Mark D. Roth95b627b2017-02-24 11:02:58 -080091static bool parse_wait_for_ready(grpc_json *field,
92 wait_for_ready_value *wait_for_ready) {
93 if (field->type != GRPC_JSON_TRUE && field->type != GRPC_JSON_FALSE) {
94 return false;
95 }
96 *wait_for_ready = field->type == GRPC_JSON_TRUE ? WAIT_FOR_READY_TRUE
97 : WAIT_FOR_READY_FALSE;
98 return true;
99}
100
Mark D. Roth722de8d2017-02-27 10:50:44 -0800101static bool parse_timeout(grpc_json *field, gpr_timespec *timeout) {
Mark D. Roth95b627b2017-02-24 11:02:58 -0800102 if (field->type != GRPC_JSON_STRING) return false;
103 size_t len = strlen(field->value);
104 if (field->value[len - 1] != 's') return false;
105 char *buf = gpr_strdup(field->value);
106 buf[len - 1] = '\0'; // Remove trailing 's'.
107 char *decimal_point = strchr(buf, '.');
108 if (decimal_point != NULL) {
109 *decimal_point = '\0';
110 timeout->tv_nsec = gpr_parse_nonnegative_int(decimal_point + 1);
111 if (timeout->tv_nsec == -1) {
112 gpr_free(buf);
113 return false;
114 }
115 // There should always be exactly 3, 6, or 9 fractional digits.
116 int multiplier = 1;
117 switch (strlen(decimal_point + 1)) {
118 case 9:
119 break;
120 case 6:
121 multiplier *= 1000;
122 break;
123 case 3:
124 multiplier *= 1000000;
125 break;
126 default: // Unsupported number of digits.
127 gpr_free(buf);
128 return false;
129 }
130 timeout->tv_nsec *= multiplier;
131 }
132 timeout->tv_sec = gpr_parse_nonnegative_int(buf);
133 gpr_free(buf);
134 if (timeout->tv_sec == -1) return false;
135 return true;
136}
137
Mark D. Rothe30baeb2016-11-03 08:16:19 -0700138static void *method_parameters_create_from_json(const grpc_json *json) {
Mark D. Rothc968e602016-11-02 14:07:36 -0700139 wait_for_ready_value wait_for_ready = WAIT_FOR_READY_UNSET;
Mark D. Roth47f10842016-11-03 08:45:27 -0700140 gpr_timespec timeout = {0, 0, GPR_TIMESPAN};
141 for (grpc_json *field = json->child; field != NULL; field = field->next) {
Mark D. Rothc968e602016-11-02 14:07:36 -0700142 if (field->key == NULL) continue;
Mark D. Roth84c8a022016-11-10 09:39:34 -0800143 if (strcmp(field->key, "waitForReady") == 0) {
Mark D. Rothc968e602016-11-02 14:07:36 -0700144 if (wait_for_ready != WAIT_FOR_READY_UNSET) return NULL; // Duplicate.
Mark D. Roth95b627b2017-02-24 11:02:58 -0800145 if (!parse_wait_for_ready(field, &wait_for_ready)) return NULL;
Mark D. Rothc968e602016-11-02 14:07:36 -0700146 } else if (strcmp(field->key, "timeout") == 0) {
147 if (timeout.tv_sec > 0 || timeout.tv_nsec > 0) return NULL; // Duplicate.
Mark D. Roth95b627b2017-02-24 11:02:58 -0800148 if (!parse_timeout(field, &timeout)) return NULL;
Mark D. Rothc968e602016-11-02 14:07:36 -0700149 }
150 }
Yash Tibrewalca3c1c02017-09-07 22:47:16 -0700151 method_parameters *value =
152 (method_parameters *)gpr_malloc(sizeof(method_parameters));
Mark D. Roth95b627b2017-02-24 11:02:58 -0800153 gpr_ref_init(&value->refs, 1);
Mark D. Rothc968e602016-11-02 14:07:36 -0700154 value->timeout = timeout;
155 value->wait_for_ready = wait_for_ready;
Mark D. Roth9d480942016-10-19 14:18:05 -0700156 return value;
157}
158
Alexander Polcync3b1f182017-04-18 13:51:36 -0700159struct external_connectivity_watcher;
160
Mark D. Roth2a5959f2016-09-01 08:20:27 -0700161/*************************************************************************
162 * CHANNEL-WIDE FUNCTIONS
163 */
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800164
Craig Tiller800dacb2015-10-06 09:10:26 -0700165typedef struct client_channel_channel_data {
Craig Tillerf5f17122015-06-25 08:47:26 -0700166 /** resolver for this channel */
167 grpc_resolver *resolver;
Craig Tiller20a3c352015-08-05 08:39:50 -0700168 /** have we started resolving this channel */
Mark D. Roth4c0fe492016-08-31 13:51:55 -0700169 bool started_resolving;
Craig Tiller3be7dd02017-04-03 14:30:03 -0700170 /** is deadline checking enabled? */
171 bool deadline_checking_enabled;
Mark D. Roth0e48a9a2016-09-08 14:14:39 -0700172 /** client channel factory */
173 grpc_client_channel_factory *client_channel_factory;
Craig Tillerf5f17122015-06-25 08:47:26 -0700174
Craig Tillerbefafe62017-02-09 11:30:54 -0800175 /** combiner protecting all variables below in this data structure */
176 grpc_combiner *combiner;
Mark D. Roth046cf762016-09-26 11:13:51 -0700177 /** currently active load balancer */
Craig Tillerf5f17122015-06-25 08:47:26 -0700178 grpc_lb_policy *lb_policy;
Mark D. Rothd6d192d2017-02-23 08:58:42 -0800179 /** retry throttle data */
180 grpc_server_retry_throttle_data *retry_throttle_data;
Mark D. Roth9d480942016-10-19 14:18:05 -0700181 /** maps method names to method_parameters structs */
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800182 grpc_slice_hash_table *method_params_table;
Mark D. Roth046cf762016-09-26 11:13:51 -0700183 /** incoming resolver result - set by resolver.next() */
Mark D. Rothaf842452016-10-21 15:05:15 -0700184 grpc_channel_args *resolver_result;
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700185 /** a list of closures that are all waiting for resolver result to come in */
186 grpc_closure_list waiting_for_resolver_result_closures;
Craig Tiller3f475422015-06-25 10:43:05 -0700187 /** resolver callback */
Mark D. Rothff4df062016-08-22 15:02:49 -0700188 grpc_closure on_resolver_result_changed;
Craig Tiller3f475422015-06-25 10:43:05 -0700189 /** connectivity state being tracked */
Craig Tillerca3e9d32015-06-27 18:37:27 -0700190 grpc_connectivity_state_tracker state_tracker;
Craig Tiller48cb07c2015-07-15 16:16:15 -0700191 /** when an lb_policy arrives, should we try to exit idle */
Mark D. Roth4c0fe492016-08-31 13:51:55 -0700192 bool exit_idle_when_lb_policy_arrives;
Craig Tiller906e3bc2015-11-24 07:31:31 -0800193 /** owning stack */
194 grpc_channel_stack *owning_stack;
Craig Tiller69b093b2016-02-25 19:04:07 -0800195 /** interested parties (owned) */
196 grpc_pollset_set *interested_parties;
Craig Tiller613dafa2017-02-09 12:00:43 -0800197
Alexander Polcync3b1f182017-04-18 13:51:36 -0700198 /* external_connectivity_watcher_list head is guarded by its own mutex, since
199 * counts need to be grabbed immediately without polling on a cq */
200 gpr_mu external_connectivity_watcher_list_mu;
201 struct external_connectivity_watcher *external_connectivity_watcher_list_head;
202
Craig Tiller613dafa2017-02-09 12:00:43 -0800203 /* the following properties are guarded by a mutex since API's require them
Craig Tiller46dd7902017-02-23 09:42:16 -0800204 to be instantaneously available */
Craig Tiller613dafa2017-02-09 12:00:43 -0800205 gpr_mu info_mu;
206 char *info_lb_policy_name;
207 /** service config in JSON form */
208 char *info_service_config_json;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800209} channel_data;
210
Craig Tillerd6c98df2015-08-18 09:33:44 -0700211/** We create one watcher for each new lb_policy that is returned from a
Mark D. Roth4c0fe492016-08-31 13:51:55 -0700212 resolver, to watch for state changes from the lb_policy. When a state
213 change is seen, we update the channel, and create a new watcher. */
Craig Tillera82950e2015-09-22 12:33:20 -0700214typedef struct {
Craig Tiller1ada6ad2015-07-16 16:19:14 -0700215 channel_data *chand;
Craig Tiller33825112015-09-18 07:44:19 -0700216 grpc_closure on_changed;
Craig Tiller1ada6ad2015-07-16 16:19:14 -0700217 grpc_connectivity_state state;
218 grpc_lb_policy *lb_policy;
219} lb_policy_connectivity_watcher;
220
Craig Tiller2400bf52017-02-09 16:25:19 -0800221static void watch_lb_policy_locked(grpc_exec_ctx *exec_ctx, channel_data *chand,
222 grpc_lb_policy *lb_policy,
223 grpc_connectivity_state current_state);
Craig Tiller1ada6ad2015-07-16 16:19:14 -0700224
Craig Tiller8c0d96f2016-03-11 14:27:52 -0800225static void set_channel_connectivity_state_locked(grpc_exec_ctx *exec_ctx,
226 channel_data *chand,
227 grpc_connectivity_state state,
Craig Tiller804ff712016-05-05 16:25:40 -0700228 grpc_error *error,
Craig Tiller8c0d96f2016-03-11 14:27:52 -0800229 const char *reason) {
David Garcia Quintas37251282017-04-14 13:46:03 -0700230 /* TODO: Improve failure handling:
231 * - Make it possible for policies to return GRPC_CHANNEL_TRANSIENT_FAILURE.
232 * - Hand over pending picks from old policies during the switch that happens
233 * when resolver provides an update. */
David Garcia Quintas956f7002017-04-13 15:40:06 -0700234 if (chand->lb_policy != NULL) {
235 if (state == GRPC_CHANNEL_TRANSIENT_FAILURE) {
236 /* cancel picks with wait_for_ready=false */
237 grpc_lb_policy_cancel_picks_locked(
238 exec_ctx, chand->lb_policy,
239 /* mask= */ GRPC_INITIAL_METADATA_WAIT_FOR_READY,
240 /* check= */ 0, GRPC_ERROR_REF(error));
241 } else if (state == GRPC_CHANNEL_SHUTDOWN) {
242 /* cancel all picks */
243 grpc_lb_policy_cancel_picks_locked(exec_ctx, chand->lb_policy,
244 /* mask= */ 0, /* check= */ 0,
245 GRPC_ERROR_REF(error));
246 }
Craig Tiller8c0d96f2016-03-11 14:27:52 -0800247 }
Mark D. Roth60751fe2017-07-07 12:50:33 -0700248 if (GRPC_TRACER_ON(grpc_client_channel_trace)) {
249 gpr_log(GPR_DEBUG, "chand=%p: setting connectivity state to %s", chand,
250 grpc_connectivity_state_name(state));
251 }
Craig Tiller9ccf5f12016-05-07 21:41:01 -0700252 grpc_connectivity_state_set(exec_ctx, &chand->state_tracker, state, error,
253 reason);
Craig Tiller8c0d96f2016-03-11 14:27:52 -0800254}
255
Craig Tiller804ff712016-05-05 16:25:40 -0700256static void on_lb_policy_state_changed_locked(grpc_exec_ctx *exec_ctx,
Craig Tillerbefafe62017-02-09 11:30:54 -0800257 void *arg, grpc_error *error) {
Yash Tibrewalca3c1c02017-09-07 22:47:16 -0700258 lb_policy_connectivity_watcher *w = (lb_policy_connectivity_watcher *)arg;
Craig Tillercb2609f2015-11-24 17:19:19 -0800259 grpc_connectivity_state publish_state = w->state;
Craig Tillerc5de8352017-02-09 14:08:05 -0800260 /* check if the notification is for the latest policy */
261 if (w->lb_policy == w->chand->lb_policy) {
Mark D. Roth60751fe2017-07-07 12:50:33 -0700262 if (GRPC_TRACER_ON(grpc_client_channel_trace)) {
263 gpr_log(GPR_DEBUG, "chand=%p: lb_policy=%p state changed to %s", w->chand,
264 w->lb_policy, grpc_connectivity_state_name(w->state));
265 }
Craig Tillerc5de8352017-02-09 14:08:05 -0800266 if (publish_state == GRPC_CHANNEL_SHUTDOWN && w->chand->resolver != NULL) {
267 publish_state = GRPC_CHANNEL_TRANSIENT_FAILURE;
Craig Tiller972470b2017-02-09 15:05:36 -0800268 grpc_resolver_channel_saw_error_locked(exec_ctx, w->chand->resolver);
Craig Tillerc5de8352017-02-09 14:08:05 -0800269 GRPC_LB_POLICY_UNREF(exec_ctx, w->chand->lb_policy, "channel");
270 w->chand->lb_policy = NULL;
271 }
272 set_channel_connectivity_state_locked(exec_ctx, w->chand, publish_state,
273 GRPC_ERROR_REF(error), "lb_changed");
274 if (w->state != GRPC_CHANNEL_SHUTDOWN) {
Craig Tiller2400bf52017-02-09 16:25:19 -0800275 watch_lb_policy_locked(exec_ctx, w->chand, w->lb_policy, w->state);
Craig Tillerc5de8352017-02-09 14:08:05 -0800276 }
Craig Tillera82950e2015-09-22 12:33:20 -0700277 }
Craig Tiller906e3bc2015-11-24 07:31:31 -0800278 GRPC_CHANNEL_STACK_UNREF(exec_ctx, w->chand->owning_stack, "watch_lb_policy");
Craig Tillera82950e2015-09-22 12:33:20 -0700279 gpr_free(w);
Craig Tiller1ada6ad2015-07-16 16:19:14 -0700280}
281
Craig Tiller2400bf52017-02-09 16:25:19 -0800282static void watch_lb_policy_locked(grpc_exec_ctx *exec_ctx, channel_data *chand,
283 grpc_lb_policy *lb_policy,
284 grpc_connectivity_state current_state) {
Yash Tibrewalca3c1c02017-09-07 22:47:16 -0700285 lb_policy_connectivity_watcher *w =
286 (lb_policy_connectivity_watcher *)gpr_malloc(sizeof(*w));
Craig Tiller906e3bc2015-11-24 07:31:31 -0800287 GRPC_CHANNEL_STACK_REF(chand->owning_stack, "watch_lb_policy");
Craig Tiller1ada6ad2015-07-16 16:19:14 -0700288 w->chand = chand;
ncteisen274bbbe2017-06-08 14:57:11 -0700289 GRPC_CLOSURE_INIT(&w->on_changed, on_lb_policy_state_changed_locked, w,
Craig Tilleree4b1452017-05-12 10:56:03 -0700290 grpc_combiner_scheduler(chand->combiner));
Craig Tiller1ada6ad2015-07-16 16:19:14 -0700291 w->state = current_state;
292 w->lb_policy = lb_policy;
Craig Tiller2400bf52017-02-09 16:25:19 -0800293 grpc_lb_policy_notify_on_state_change_locked(exec_ctx, lb_policy, &w->state,
294 &w->on_changed);
Craig Tiller1ada6ad2015-07-16 16:19:14 -0700295}
296
Mark D. Roth60751fe2017-07-07 12:50:33 -0700297static void start_resolving_locked(grpc_exec_ctx *exec_ctx,
298 channel_data *chand) {
299 if (GRPC_TRACER_ON(grpc_client_channel_trace)) {
300 gpr_log(GPR_DEBUG, "chand=%p: starting name resolution", chand);
301 }
302 GPR_ASSERT(!chand->started_resolving);
303 chand->started_resolving = true;
304 GRPC_CHANNEL_STACK_REF(chand->owning_stack, "resolver");
305 grpc_resolver_next_locked(exec_ctx, chand->resolver, &chand->resolver_result,
306 &chand->on_resolver_result_changed);
307}
308
Mark D. Rothd6d192d2017-02-23 08:58:42 -0800309typedef struct {
310 char *server_name;
311 grpc_server_retry_throttle_data *retry_throttle_data;
312} service_config_parsing_state;
313
314static void parse_retry_throttle_params(const grpc_json *field, void *arg) {
Yash Tibrewalca3c1c02017-09-07 22:47:16 -0700315 service_config_parsing_state *parsing_state =
316 (service_config_parsing_state *)arg;
Mark D. Rothd6d192d2017-02-23 08:58:42 -0800317 if (strcmp(field->key, "retryThrottling") == 0) {
318 if (parsing_state->retry_throttle_data != NULL) return; // Duplicate.
319 if (field->type != GRPC_JSON_OBJECT) return;
320 int max_milli_tokens = 0;
321 int milli_token_ratio = 0;
322 for (grpc_json *sub_field = field->child; sub_field != NULL;
323 sub_field = sub_field->next) {
Mark D. Rothb3322562017-02-23 14:38:02 -0800324 if (sub_field->key == NULL) return;
Mark D. Rothd6d192d2017-02-23 08:58:42 -0800325 if (strcmp(sub_field->key, "maxTokens") == 0) {
326 if (max_milli_tokens != 0) return; // Duplicate.
327 if (sub_field->type != GRPC_JSON_NUMBER) return;
328 max_milli_tokens = gpr_parse_nonnegative_int(sub_field->value);
329 if (max_milli_tokens == -1) return;
330 max_milli_tokens *= 1000;
331 } else if (strcmp(sub_field->key, "tokenRatio") == 0) {
332 if (milli_token_ratio != 0) return; // Duplicate.
333 if (sub_field->type != GRPC_JSON_NUMBER) return;
334 // We support up to 3 decimal digits.
335 size_t whole_len = strlen(sub_field->value);
336 uint32_t multiplier = 1;
337 uint32_t decimal_value = 0;
338 const char *decimal_point = strchr(sub_field->value, '.');
339 if (decimal_point != NULL) {
340 whole_len = (size_t)(decimal_point - sub_field->value);
341 multiplier = 1000;
342 size_t decimal_len = strlen(decimal_point + 1);
343 if (decimal_len > 3) decimal_len = 3;
344 if (!gpr_parse_bytes_to_uint32(decimal_point + 1, decimal_len,
345 &decimal_value)) {
346 return;
347 }
348 uint32_t decimal_multiplier = 1;
349 for (size_t i = 0; i < (3 - decimal_len); ++i) {
350 decimal_multiplier *= 10;
351 }
352 decimal_value *= decimal_multiplier;
353 }
354 uint32_t whole_value;
355 if (!gpr_parse_bytes_to_uint32(sub_field->value, whole_len,
356 &whole_value)) {
357 return;
358 }
359 milli_token_ratio = (int)((whole_value * multiplier) + decimal_value);
Mark D. Rothb3322562017-02-23 14:38:02 -0800360 if (milli_token_ratio <= 0) return;
Mark D. Rothd6d192d2017-02-23 08:58:42 -0800361 }
362 }
363 parsing_state->retry_throttle_data =
364 grpc_retry_throttle_map_get_data_for_server(
365 parsing_state->server_name, max_milli_tokens, milli_token_ratio);
366 }
367}
368
Craig Tillerbefafe62017-02-09 11:30:54 -0800369static void on_resolver_result_changed_locked(grpc_exec_ctx *exec_ctx,
370 void *arg, grpc_error *error) {
Yash Tibrewalca3c1c02017-09-07 22:47:16 -0700371 channel_data *chand = (channel_data *)arg;
Mark D. Roth60751fe2017-07-07 12:50:33 -0700372 if (GRPC_TRACER_ON(grpc_client_channel_trace)) {
373 gpr_log(GPR_DEBUG, "chand=%p: got resolver result: error=%s", chand,
374 grpc_error_string(error));
375 }
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700376 // Extract the following fields from the resolver result, if non-NULL.
Mark D. Roth15494b52017-07-12 15:26:55 -0700377 bool lb_policy_updated = false;
Yash Tibrewal9eb86722017-09-17 23:43:30 -0700378 char *lb_policy_name_dup = NULL;
Mark D. Roth60751fe2017-07-07 12:50:33 -0700379 bool lb_policy_name_changed = false;
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700380 grpc_lb_policy *new_lb_policy = NULL;
Mark D. Rothc625c7a2016-11-09 14:12:37 -0800381 char *service_config_json = NULL;
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700382 grpc_server_retry_throttle_data *retry_throttle_data = NULL;
383 grpc_slice_hash_table *method_params_table = NULL;
Mark D. Roth046cf762016-09-26 11:13:51 -0700384 if (chand->resolver_result != NULL) {
Mark D. Roth5bd7be02016-10-21 14:19:50 -0700385 // Find LB policy name.
Yash Tibrewal9eb86722017-09-17 23:43:30 -0700386 const char *lb_policy_name = NULL;
Mark D. Rothaf842452016-10-21 15:05:15 -0700387 const grpc_arg *channel_arg =
Mark D. Roth41124992016-11-03 11:22:20 -0700388 grpc_channel_args_find(chand->resolver_result, GRPC_ARG_LB_POLICY_NAME);
Mark D. Rothaf842452016-10-21 15:05:15 -0700389 if (channel_arg != NULL) {
390 GPR_ASSERT(channel_arg->type == GRPC_ARG_STRING);
391 lb_policy_name = channel_arg->value.string;
Mark D. Roth5bd7be02016-10-21 14:19:50 -0700392 }
Mark D. Roth1eb96dc2017-03-22 12:19:03 -0700393 // Special case: If at least one balancer address is present, we use
394 // the grpclb policy, regardless of what the resolver actually specified.
Mark D. Rothaf842452016-10-21 15:05:15 -0700395 channel_arg =
Mark D. Roth41124992016-11-03 11:22:20 -0700396 grpc_channel_args_find(chand->resolver_result, GRPC_ARG_LB_ADDRESSES);
David Garcia Quintas143cb772017-03-31 13:39:27 -0700397 if (channel_arg != NULL && channel_arg->type == GRPC_ARG_POINTER) {
Yash Tibrewalca3c1c02017-09-07 22:47:16 -0700398 grpc_lb_addresses *addresses =
399 (grpc_lb_addresses *)channel_arg->value.pointer.p;
Mark D. Roth1eb96dc2017-03-22 12:19:03 -0700400 bool found_balancer_address = false;
Mark D. Rothaf842452016-10-21 15:05:15 -0700401 for (size_t i = 0; i < addresses->num_addresses; ++i) {
Mark D. Roth1eb96dc2017-03-22 12:19:03 -0700402 if (addresses->addresses[i].is_balancer) {
403 found_balancer_address = true;
Mark D. Rothaf842452016-10-21 15:05:15 -0700404 break;
405 }
Mark D. Roth88405f72016-10-03 08:24:52 -0700406 }
Mark D. Roth1eb96dc2017-03-22 12:19:03 -0700407 if (found_balancer_address) {
Mark D. Rothaf842452016-10-21 15:05:15 -0700408 if (lb_policy_name != NULL && strcmp(lb_policy_name, "grpclb") != 0) {
409 gpr_log(GPR_INFO,
Mark D. Roth1eb96dc2017-03-22 12:19:03 -0700410 "resolver requested LB policy %s but provided at least one "
411 "balancer address -- forcing use of grpclb LB policy",
Mark D. Roth5f40e5d2016-10-24 13:09:05 -0700412 lb_policy_name);
Mark D. Rothaf842452016-10-21 15:05:15 -0700413 }
414 lb_policy_name = "grpclb";
Mark D. Roth88405f72016-10-03 08:24:52 -0700415 }
Mark D. Roth88405f72016-10-03 08:24:52 -0700416 }
417 // Use pick_first if nothing was specified and we didn't select grpclb
418 // above.
419 if (lb_policy_name == NULL) lb_policy_name = "pick_first";
Mark D. Roth41124992016-11-03 11:22:20 -0700420 grpc_lb_policy_args lb_policy_args;
421 lb_policy_args.args = chand->resolver_result;
422 lb_policy_args.client_channel_factory = chand->client_channel_factory;
Craig Tiller2400bf52017-02-09 16:25:19 -0800423 lb_policy_args.combiner = chand->combiner;
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700424 // Check to see if we're already using the right LB policy.
425 // Note: It's safe to use chand->info_lb_policy_name here without
426 // taking a lock on chand->info_mu, because this function is the
427 // only thing that modifies its value, and it can only be invoked
428 // once at any given time.
Mark D. Roth60751fe2017-07-07 12:50:33 -0700429 lb_policy_name_changed =
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700430 chand->info_lb_policy_name == NULL ||
431 strcmp(chand->info_lb_policy_name, lb_policy_name) != 0;
Mark D. Roth60751fe2017-07-07 12:50:33 -0700432 if (chand->lb_policy != NULL && !lb_policy_name_changed) {
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700433 // Continue using the same LB policy. Update with new addresses.
Mark D. Roth15494b52017-07-12 15:26:55 -0700434 lb_policy_updated = true;
David Garcia Quintas87d5a312017-06-06 19:45:58 -0700435 grpc_lb_policy_update_locked(exec_ctx, chand->lb_policy, &lb_policy_args);
436 } else {
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700437 // Instantiate new LB policy.
438 new_lb_policy =
David Garcia Quintas87d5a312017-06-06 19:45:58 -0700439 grpc_lb_policy_create(exec_ctx, lb_policy_name, &lb_policy_args);
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700440 if (new_lb_policy == NULL) {
441 gpr_log(GPR_ERROR, "could not create LB policy \"%s\"", lb_policy_name);
David Garcia Quintas87d5a312017-06-06 19:45:58 -0700442 }
Craig Tiller45724b32015-09-22 10:42:19 -0700443 }
Mark D. Roth41124992016-11-03 11:22:20 -0700444 // Find service config.
Mark D. Rothaf842452016-10-21 15:05:15 -0700445 channel_arg =
Mark D. Roth41124992016-11-03 11:22:20 -0700446 grpc_channel_args_find(chand->resolver_result, GRPC_ARG_SERVICE_CONFIG);
Mark D. Roth046cf762016-09-26 11:13:51 -0700447 if (channel_arg != NULL) {
Mark D. Roth9ec28af2016-11-03 12:32:39 -0700448 GPR_ASSERT(channel_arg->type == GRPC_ARG_STRING);
Mark D. Rothc625c7a2016-11-09 14:12:37 -0800449 service_config_json = gpr_strdup(channel_arg->value.string);
Mark D. Roth70a1abd2016-11-04 09:26:37 -0700450 grpc_service_config *service_config =
Mark D. Rothc625c7a2016-11-09 14:12:37 -0800451 grpc_service_config_create(service_config_json);
Mark D. Rothbdc58b22016-11-04 09:25:57 -0700452 if (service_config != NULL) {
Mark D. Rothd6d192d2017-02-23 08:58:42 -0800453 channel_arg =
454 grpc_channel_args_find(chand->resolver_result, GRPC_ARG_SERVER_URI);
455 GPR_ASSERT(channel_arg != NULL);
456 GPR_ASSERT(channel_arg->type == GRPC_ARG_STRING);
Mark D. Roth9ccbc4d2017-03-15 08:30:04 -0700457 grpc_uri *uri =
458 grpc_uri_parse(exec_ctx, channel_arg->value.string, true);
Mark D. Rothd6d192d2017-02-23 08:58:42 -0800459 GPR_ASSERT(uri->path[0] != '\0');
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700460 service_config_parsing_state parsing_state;
461 memset(&parsing_state, 0, sizeof(parsing_state));
Mark D. Rothd6d192d2017-02-23 08:58:42 -0800462 parsing_state.server_name =
463 uri->path[0] == '/' ? uri->path + 1 : uri->path;
464 grpc_service_config_parse_global_params(
465 service_config, parse_retry_throttle_params, &parsing_state);
Mark D. Rothd6d192d2017-02-23 08:58:42 -0800466 grpc_uri_destroy(uri);
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700467 retry_throttle_data = parsing_state.retry_throttle_data;
Mark D. Rothbdc58b22016-11-04 09:25:57 -0700468 method_params_table = grpc_service_config_create_method_config_table(
Craig Tillerb28c7e82016-11-18 10:29:04 -0800469 exec_ctx, service_config, method_parameters_create_from_json,
Mark D. Rothe3006702017-04-19 07:43:56 -0700470 method_parameters_free);
Mark D. Rothbdc58b22016-11-04 09:25:57 -0700471 grpc_service_config_destroy(service_config);
472 }
Mark D. Roth9fe284e2016-09-12 11:22:27 -0700473 }
Mark D. Rothf79ce7d2016-11-04 08:43:36 -0700474 // Before we clean up, save a copy of lb_policy_name, since it might
475 // be pointing to data inside chand->resolver_result.
476 // The copy will be saved in chand->lb_policy_name below.
Yash Tibrewal9eb86722017-09-17 23:43:30 -0700477 lb_policy_name_dup = gpr_strdup(lb_policy_name);
Craig Tiller87a7e1f2016-11-09 09:42:19 -0800478 grpc_channel_args_destroy(exec_ctx, chand->resolver_result);
Mark D. Roth046cf762016-09-26 11:13:51 -0700479 chand->resolver_result = NULL;
Craig Tillera82950e2015-09-22 12:33:20 -0700480 }
Mark D. Roth60751fe2017-07-07 12:50:33 -0700481 if (GRPC_TRACER_ON(grpc_client_channel_trace)) {
482 gpr_log(GPR_DEBUG,
483 "chand=%p: resolver result: lb_policy_name=\"%s\"%s, "
484 "service_config=\"%s\"",
Yash Tibrewal9eb86722017-09-17 23:43:30 -0700485 chand, lb_policy_name_dup,
486 lb_policy_name_changed ? " (changed)" : "", service_config_json);
Mark D. Roth60751fe2017-07-07 12:50:33 -0700487 }
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700488 // Now swap out fields in chand. Note that the new values may still
489 // be NULL if (e.g.) the resolver failed to return results or the
490 // results did not contain the necessary data.
491 //
492 // First, swap out the data used by cc_get_channel_info().
Craig Tiller613dafa2017-02-09 12:00:43 -0800493 gpr_mu_lock(&chand->info_mu);
Yash Tibrewal9eb86722017-09-17 23:43:30 -0700494 if (lb_policy_name_dup != NULL) {
Craig Tiller613dafa2017-02-09 12:00:43 -0800495 gpr_free(chand->info_lb_policy_name);
Yash Tibrewal9eb86722017-09-17 23:43:30 -0700496 chand->info_lb_policy_name = lb_policy_name_dup;
Mark D. Rothb2d24882016-10-27 15:44:07 -0700497 }
Mark D. Rothc625c7a2016-11-09 14:12:37 -0800498 if (service_config_json != NULL) {
Craig Tiller613dafa2017-02-09 12:00:43 -0800499 gpr_free(chand->info_service_config_json);
500 chand->info_service_config_json = service_config_json;
Mark D. Rothc625c7a2016-11-09 14:12:37 -0800501 }
Craig Tiller613dafa2017-02-09 12:00:43 -0800502 gpr_mu_unlock(&chand->info_mu);
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700503 // Swap out the retry throttle data.
Mark D. Rothd6d192d2017-02-23 08:58:42 -0800504 if (chand->retry_throttle_data != NULL) {
505 grpc_server_retry_throttle_data_unref(chand->retry_throttle_data);
506 }
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700507 chand->retry_throttle_data = retry_throttle_data;
508 // Swap out the method params table.
Mark D. Roth9d480942016-10-19 14:18:05 -0700509 if (chand->method_params_table != NULL) {
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800510 grpc_slice_hash_table_unref(exec_ctx, chand->method_params_table);
Mark D. Roth046cf762016-09-26 11:13:51 -0700511 }
Mark D. Roth9d480942016-10-19 14:18:05 -0700512 chand->method_params_table = method_params_table;
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700513 // If we have a new LB policy or are shutting down (in which case
514 // new_lb_policy will be NULL), swap out the LB policy, unreffing the
515 // old one and removing its fds from chand->interested_parties.
516 // Note that we do NOT do this if either (a) we updated the existing
517 // LB policy above or (b) we failed to create the new LB policy (in
518 // which case we want to continue using the most recent one we had).
519 if (new_lb_policy != NULL || error != GRPC_ERROR_NONE ||
520 chand->resolver == NULL) {
521 if (chand->lb_policy != NULL) {
Mark D. Roth60751fe2017-07-07 12:50:33 -0700522 if (GRPC_TRACER_ON(grpc_client_channel_trace)) {
523 gpr_log(GPR_DEBUG, "chand=%p: unreffing lb_policy=%p", chand,
524 chand->lb_policy);
525 }
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700526 grpc_pollset_set_del_pollset_set(exec_ctx,
527 chand->lb_policy->interested_parties,
528 chand->interested_parties);
529 GRPC_LB_POLICY_UNREF(exec_ctx, chand->lb_policy, "channel");
Craig Tiller45724b32015-09-22 10:42:19 -0700530 }
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700531 chand->lb_policy = new_lb_policy;
532 }
533 // Now that we've swapped out the relevant fields of chand, check for
534 // error or shutdown.
535 if (error != GRPC_ERROR_NONE || chand->resolver == NULL) {
Mark D. Roth60751fe2017-07-07 12:50:33 -0700536 if (GRPC_TRACER_ON(grpc_client_channel_trace)) {
537 gpr_log(GPR_DEBUG, "chand=%p: shutting down", chand);
538 }
Craig Tiller76a5c0e2016-03-09 09:05:30 -0800539 if (chand->resolver != NULL) {
Mark D. Roth60751fe2017-07-07 12:50:33 -0700540 if (GRPC_TRACER_ON(grpc_client_channel_trace)) {
541 gpr_log(GPR_DEBUG, "chand=%p: shutting down resolver", chand);
542 }
Craig Tiller972470b2017-02-09 15:05:36 -0800543 grpc_resolver_shutdown_locked(exec_ctx, chand->resolver);
Craig Tiller76a5c0e2016-03-09 09:05:30 -0800544 GRPC_RESOLVER_UNREF(exec_ctx, chand->resolver, "channel");
545 chand->resolver = NULL;
546 }
Craig Tiller8c0d96f2016-03-11 14:27:52 -0800547 set_channel_connectivity_state_locked(
Craig Tillerd925c932016-06-06 08:38:50 -0700548 exec_ctx, chand, GRPC_CHANNEL_SHUTDOWN,
ncteisen4b36a3d2017-03-13 19:08:06 -0700549 GRPC_ERROR_CREATE_REFERENCING_FROM_STATIC_STRING(
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700550 "Got resolver result after disconnection", &error, 1),
Craig Tiller804ff712016-05-05 16:25:40 -0700551 "resolver_gone");
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700552 GRPC_CHANNEL_STACK_UNREF(exec_ctx, chand->owning_stack, "resolver");
553 grpc_closure_list_fail_all(&chand->waiting_for_resolver_result_closures,
554 GRPC_ERROR_CREATE_REFERENCING_FROM_STATIC_STRING(
555 "Channel disconnected", &error, 1));
556 GRPC_CLOSURE_LIST_SCHED(exec_ctx,
557 &chand->waiting_for_resolver_result_closures);
558 } else { // Not shutting down.
559 grpc_connectivity_state state = GRPC_CHANNEL_TRANSIENT_FAILURE;
560 grpc_error *state_error =
561 GRPC_ERROR_CREATE_FROM_STATIC_STRING("No load balancing policy");
562 if (new_lb_policy != NULL) {
Mark D. Roth60751fe2017-07-07 12:50:33 -0700563 if (GRPC_TRACER_ON(grpc_client_channel_trace)) {
564 gpr_log(GPR_DEBUG, "chand=%p: initializing new LB policy", chand);
565 }
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700566 GRPC_ERROR_UNREF(state_error);
567 state = grpc_lb_policy_check_connectivity_locked(exec_ctx, new_lb_policy,
568 &state_error);
569 grpc_pollset_set_add_pollset_set(exec_ctx,
570 new_lb_policy->interested_parties,
571 chand->interested_parties);
572 GRPC_CLOSURE_LIST_SCHED(exec_ctx,
573 &chand->waiting_for_resolver_result_closures);
574 if (chand->exit_idle_when_lb_policy_arrives) {
575 grpc_lb_policy_exit_idle_locked(exec_ctx, new_lb_policy);
576 chand->exit_idle_when_lb_policy_arrives = false;
577 }
578 watch_lb_policy_locked(exec_ctx, chand, new_lb_policy, state);
579 }
Mark D. Roth15494b52017-07-12 15:26:55 -0700580 if (!lb_policy_updated) {
581 set_channel_connectivity_state_locked(exec_ctx, chand, state,
582 GRPC_ERROR_REF(state_error),
583 "new_lb+resolver");
584 }
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700585 grpc_resolver_next_locked(exec_ctx, chand->resolver,
586 &chand->resolver_result,
587 &chand->on_resolver_result_changed);
588 GRPC_ERROR_UNREF(state_error);
Craig Tillera82950e2015-09-22 12:33:20 -0700589 }
Craig Tiller3f475422015-06-25 10:43:05 -0700590}
591
Craig Tillera8610c02017-02-14 10:05:11 -0800592static void start_transport_op_locked(grpc_exec_ctx *exec_ctx, void *arg,
593 grpc_error *error_ignored) {
Yash Tibrewalca3c1c02017-09-07 22:47:16 -0700594 grpc_transport_op *op = (grpc_transport_op *)arg;
595 grpc_channel_element *elem =
596 (grpc_channel_element *)op->handler_private.extra_arg;
597 channel_data *chand = (channel_data *)elem->channel_data;
Craig Tiller000cd8f2015-09-18 07:20:29 -0700598
Craig Tillera82950e2015-09-22 12:33:20 -0700599 if (op->on_connectivity_state_change != NULL) {
600 grpc_connectivity_state_notify_on_state_change(
601 exec_ctx, &chand->state_tracker, op->connectivity_state,
602 op->on_connectivity_state_change);
603 op->on_connectivity_state_change = NULL;
604 op->connectivity_state = NULL;
605 }
606
Craig Tiller26dab312015-12-07 14:43:47 -0800607 if (op->send_ping != NULL) {
Craig Tiller87b71e22015-12-07 15:14:14 -0800608 if (chand->lb_policy == NULL) {
ncteisen274bbbe2017-06-08 14:57:11 -0700609 GRPC_CLOSURE_SCHED(
ncteisen4b36a3d2017-03-13 19:08:06 -0700610 exec_ctx, op->send_ping,
611 GRPC_ERROR_CREATE_FROM_STATIC_STRING("Ping with no load balancing"));
Craig Tiller26dab312015-12-07 14:43:47 -0800612 } else {
Craig Tiller2400bf52017-02-09 16:25:19 -0800613 grpc_lb_policy_ping_one_locked(exec_ctx, chand->lb_policy, op->send_ping);
Craig Tiller26dab312015-12-07 14:43:47 -0800614 op->bind_pollset = NULL;
615 }
616 op->send_ping = NULL;
617 }
618
Craig Tiller1c51edc2016-05-07 16:18:43 -0700619 if (op->disconnect_with_error != GRPC_ERROR_NONE) {
620 if (chand->resolver != NULL) {
621 set_channel_connectivity_state_locked(
Craig Tillerd925c932016-06-06 08:38:50 -0700622 exec_ctx, chand, GRPC_CHANNEL_SHUTDOWN,
Craig Tiller1c51edc2016-05-07 16:18:43 -0700623 GRPC_ERROR_REF(op->disconnect_with_error), "disconnect");
Craig Tiller972470b2017-02-09 15:05:36 -0800624 grpc_resolver_shutdown_locked(exec_ctx, chand->resolver);
Craig Tiller1c51edc2016-05-07 16:18:43 -0700625 GRPC_RESOLVER_UNREF(exec_ctx, chand->resolver, "channel");
626 chand->resolver = NULL;
627 if (!chand->started_resolving) {
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700628 grpc_closure_list_fail_all(&chand->waiting_for_resolver_result_closures,
Craig Tiller1c51edc2016-05-07 16:18:43 -0700629 GRPC_ERROR_REF(op->disconnect_with_error));
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700630 GRPC_CLOSURE_LIST_SCHED(exec_ctx,
631 &chand->waiting_for_resolver_result_closures);
Craig Tiller1c51edc2016-05-07 16:18:43 -0700632 }
633 if (chand->lb_policy != NULL) {
634 grpc_pollset_set_del_pollset_set(exec_ctx,
635 chand->lb_policy->interested_parties,
636 chand->interested_parties);
637 GRPC_LB_POLICY_UNREF(exec_ctx, chand->lb_policy, "channel");
638 chand->lb_policy = NULL;
639 }
Craig Tillerb12d22a2016-04-23 12:50:21 -0700640 }
Craig Tiller1c51edc2016-05-07 16:18:43 -0700641 GRPC_ERROR_UNREF(op->disconnect_with_error);
Craig Tillera82950e2015-09-22 12:33:20 -0700642 }
Craig Tillerd2e5cfc2017-02-09 13:02:20 -0800643 GRPC_CHANNEL_STACK_UNREF(exec_ctx, chand->owning_stack, "start_transport_op");
644
ncteisen274bbbe2017-06-08 14:57:11 -0700645 GRPC_CLOSURE_SCHED(exec_ctx, op->on_consumed, GRPC_ERROR_NONE);
Craig Tillerbefafe62017-02-09 11:30:54 -0800646}
647
648static void cc_start_transport_op(grpc_exec_ctx *exec_ctx,
649 grpc_channel_element *elem,
650 grpc_transport_op *op) {
Yash Tibrewalca3c1c02017-09-07 22:47:16 -0700651 channel_data *chand = (channel_data *)elem->channel_data;
Craig Tillerbefafe62017-02-09 11:30:54 -0800652
Craig Tillerbefafe62017-02-09 11:30:54 -0800653 GPR_ASSERT(op->set_accept_stream == false);
654 if (op->bind_pollset != NULL) {
655 grpc_pollset_set_add_pollset(exec_ctx, chand->interested_parties,
656 op->bind_pollset);
657 }
658
Craig Tillerc55c1022017-03-10 10:26:42 -0800659 op->handler_private.extra_arg = elem;
Craig Tillerd2e5cfc2017-02-09 13:02:20 -0800660 GRPC_CHANNEL_STACK_REF(chand->owning_stack, "start_transport_op");
ncteisen274bbbe2017-06-08 14:57:11 -0700661 GRPC_CLOSURE_SCHED(
Craig Tillerc55c1022017-03-10 10:26:42 -0800662 exec_ctx,
ncteisen274bbbe2017-06-08 14:57:11 -0700663 GRPC_CLOSURE_INIT(&op->handler_private.closure, start_transport_op_locked,
Craig Tilleree4b1452017-05-12 10:56:03 -0700664 op, grpc_combiner_scheduler(chand->combiner)),
Craig Tillerbefafe62017-02-09 11:30:54 -0800665 GRPC_ERROR_NONE);
Craig Tillerca3e9d32015-06-27 18:37:27 -0700666}
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800667
Mark D. Rothb2d24882016-10-27 15:44:07 -0700668static void cc_get_channel_info(grpc_exec_ctx *exec_ctx,
669 grpc_channel_element *elem,
Mark D. Rothf79ce7d2016-11-04 08:43:36 -0700670 const grpc_channel_info *info) {
Yash Tibrewalca3c1c02017-09-07 22:47:16 -0700671 channel_data *chand = (channel_data *)elem->channel_data;
Craig Tiller613dafa2017-02-09 12:00:43 -0800672 gpr_mu_lock(&chand->info_mu);
Mark D. Rothb2d24882016-10-27 15:44:07 -0700673 if (info->lb_policy_name != NULL) {
Craig Tiller613dafa2017-02-09 12:00:43 -0800674 *info->lb_policy_name = chand->info_lb_policy_name == NULL
Mark D. Roth78afd772016-11-04 12:49:49 -0700675 ? NULL
Craig Tiller613dafa2017-02-09 12:00:43 -0800676 : gpr_strdup(chand->info_lb_policy_name);
Mark D. Rothb2d24882016-10-27 15:44:07 -0700677 }
Mark D. Rothc625c7a2016-11-09 14:12:37 -0800678 if (info->service_config_json != NULL) {
Craig Tiller613dafa2017-02-09 12:00:43 -0800679 *info->service_config_json =
680 chand->info_service_config_json == NULL
681 ? NULL
682 : gpr_strdup(chand->info_service_config_json);
Mark D. Rothc625c7a2016-11-09 14:12:37 -0800683 }
Craig Tiller613dafa2017-02-09 12:00:43 -0800684 gpr_mu_unlock(&chand->info_mu);
Mark D. Rothb2d24882016-10-27 15:44:07 -0700685}
686
Mark D. Roth2a5959f2016-09-01 08:20:27 -0700687/* Constructor for channel_data */
Mark D. Rothc1087882016-11-18 10:54:45 -0800688static grpc_error *cc_init_channel_elem(grpc_exec_ctx *exec_ctx,
Mark D. Roth5e2566e2016-11-18 10:53:13 -0800689 grpc_channel_element *elem,
690 grpc_channel_element_args *args) {
Yash Tibrewalca3c1c02017-09-07 22:47:16 -0700691 channel_data *chand = (channel_data *)elem->channel_data;
Mark D. Roth2a5959f2016-09-01 08:20:27 -0700692 GPR_ASSERT(args->is_last);
693 GPR_ASSERT(elem->filter == &grpc_client_channel_filter);
Mark D. Roth21d4b2d2016-11-18 09:53:41 -0800694 // Initialize data members.
Craig Tilleree4b1452017-05-12 10:56:03 -0700695 chand->combiner = grpc_combiner_create();
Craig Tillerd85477512017-02-09 12:02:39 -0800696 gpr_mu_init(&chand->info_mu);
Alexander Polcync3b1f182017-04-18 13:51:36 -0700697 gpr_mu_init(&chand->external_connectivity_watcher_list_mu);
698
699 gpr_mu_lock(&chand->external_connectivity_watcher_list_mu);
700 chand->external_connectivity_watcher_list_head = NULL;
701 gpr_mu_unlock(&chand->external_connectivity_watcher_list_mu);
702
Mark D. Roth21d4b2d2016-11-18 09:53:41 -0800703 chand->owning_stack = args->channel_stack;
ncteisen274bbbe2017-06-08 14:57:11 -0700704 GRPC_CLOSURE_INIT(&chand->on_resolver_result_changed,
Craig Tillerbefafe62017-02-09 11:30:54 -0800705 on_resolver_result_changed_locked, chand,
Craig Tilleree4b1452017-05-12 10:56:03 -0700706 grpc_combiner_scheduler(chand->combiner));
Mark D. Roth21d4b2d2016-11-18 09:53:41 -0800707 chand->interested_parties = grpc_pollset_set_create();
Mark D. Roth2a5959f2016-09-01 08:20:27 -0700708 grpc_connectivity_state_init(&chand->state_tracker, GRPC_CHANNEL_IDLE,
709 "client_channel");
Mark D. Roth21d4b2d2016-11-18 09:53:41 -0800710 // Record client channel factory.
711 const grpc_arg *arg = grpc_channel_args_find(args->channel_args,
712 GRPC_ARG_CLIENT_CHANNEL_FACTORY);
David Garcia Quintas228a5142017-03-30 19:43:00 -0700713 if (arg == NULL) {
714 return GRPC_ERROR_CREATE_FROM_STATIC_STRING(
715 "Missing client channel factory in args for client channel filter");
716 }
717 if (arg->type != GRPC_ARG_POINTER) {
718 return GRPC_ERROR_CREATE_FROM_STATIC_STRING(
719 "client channel factory arg must be a pointer");
720 }
Yash Tibrewalbc130da2017-09-12 22:44:08 -0700721 grpc_client_channel_factory_ref(
722 (grpc_client_channel_factory *)arg->value.pointer.p);
Yash Tibrewalca3c1c02017-09-07 22:47:16 -0700723 chand->client_channel_factory =
724 (grpc_client_channel_factory *)arg->value.pointer.p;
Mark D. Rothdc9bee72017-02-07 12:29:14 -0800725 // Get server name to resolve, using proxy mapper if needed.
Mark D. Roth86e90592016-11-18 09:56:40 -0800726 arg = grpc_channel_args_find(args->channel_args, GRPC_ARG_SERVER_URI);
David Garcia Quintas228a5142017-03-30 19:43:00 -0700727 if (arg == NULL) {
728 return GRPC_ERROR_CREATE_FROM_STATIC_STRING(
729 "Missing server uri in args for client channel filter");
730 }
731 if (arg->type != GRPC_ARG_STRING) {
732 return GRPC_ERROR_CREATE_FROM_STATIC_STRING(
733 "server uri arg must be a string");
734 }
Mark D. Rothdc9bee72017-02-07 12:29:14 -0800735 char *proxy_name = NULL;
736 grpc_channel_args *new_args = NULL;
737 grpc_proxy_mappers_map_name(exec_ctx, arg->value.string, args->channel_args,
738 &proxy_name, &new_args);
739 // Instantiate resolver.
Mark D. Roth45ccec52017-01-18 14:04:01 -0800740 chand->resolver = grpc_resolver_create(
Mark D. Rothdc9bee72017-02-07 12:29:14 -0800741 exec_ctx, proxy_name != NULL ? proxy_name : arg->value.string,
742 new_args != NULL ? new_args : args->channel_args,
Craig Tiller972470b2017-02-09 15:05:36 -0800743 chand->interested_parties, chand->combiner);
Mark D. Rothdc9bee72017-02-07 12:29:14 -0800744 if (proxy_name != NULL) gpr_free(proxy_name);
745 if (new_args != NULL) grpc_channel_args_destroy(exec_ctx, new_args);
Mark D. Roth5e2566e2016-11-18 10:53:13 -0800746 if (chand->resolver == NULL) {
ncteisen4b36a3d2017-03-13 19:08:06 -0700747 return GRPC_ERROR_CREATE_FROM_STATIC_STRING("resolver creation failed");
Mark D. Roth5e2566e2016-11-18 10:53:13 -0800748 }
Craig Tiller3be7dd02017-04-03 14:30:03 -0700749 chand->deadline_checking_enabled =
750 grpc_deadline_checking_enabled(args->channel_args);
Mark D. Roth5e2566e2016-11-18 10:53:13 -0800751 return GRPC_ERROR_NONE;
Mark D. Roth2a5959f2016-09-01 08:20:27 -0700752}
753
Craig Tiller972470b2017-02-09 15:05:36 -0800754static void shutdown_resolver_locked(grpc_exec_ctx *exec_ctx, void *arg,
755 grpc_error *error) {
Yash Tibrewalca3c1c02017-09-07 22:47:16 -0700756 grpc_resolver *resolver = (grpc_resolver *)arg;
Craig Tiller972470b2017-02-09 15:05:36 -0800757 grpc_resolver_shutdown_locked(exec_ctx, resolver);
758 GRPC_RESOLVER_UNREF(exec_ctx, resolver, "channel");
759}
760
Mark D. Roth2a5959f2016-09-01 08:20:27 -0700761/* Destructor for channel_data */
762static void cc_destroy_channel_elem(grpc_exec_ctx *exec_ctx,
763 grpc_channel_element *elem) {
Yash Tibrewalca3c1c02017-09-07 22:47:16 -0700764 channel_data *chand = (channel_data *)elem->channel_data;
Mark D. Roth2a5959f2016-09-01 08:20:27 -0700765 if (chand->resolver != NULL) {
ncteisen274bbbe2017-06-08 14:57:11 -0700766 GRPC_CLOSURE_SCHED(
767 exec_ctx, GRPC_CLOSURE_CREATE(shutdown_resolver_locked, chand->resolver,
Craig Tilleree4b1452017-05-12 10:56:03 -0700768 grpc_combiner_scheduler(chand->combiner)),
Craig Tiller972470b2017-02-09 15:05:36 -0800769 GRPC_ERROR_NONE);
Mark D. Roth2a5959f2016-09-01 08:20:27 -0700770 }
Mark D. Roth0e48a9a2016-09-08 14:14:39 -0700771 if (chand->client_channel_factory != NULL) {
772 grpc_client_channel_factory_unref(exec_ctx, chand->client_channel_factory);
773 }
Mark D. Roth2a5959f2016-09-01 08:20:27 -0700774 if (chand->lb_policy != NULL) {
775 grpc_pollset_set_del_pollset_set(exec_ctx,
776 chand->lb_policy->interested_parties,
777 chand->interested_parties);
778 GRPC_LB_POLICY_UNREF(exec_ctx, chand->lb_policy, "channel");
779 }
Craig Tiller613dafa2017-02-09 12:00:43 -0800780 gpr_free(chand->info_lb_policy_name);
781 gpr_free(chand->info_service_config_json);
Mark D. Rothd6d192d2017-02-23 08:58:42 -0800782 if (chand->retry_throttle_data != NULL) {
783 grpc_server_retry_throttle_data_unref(chand->retry_throttle_data);
784 }
Mark D. Roth9d480942016-10-19 14:18:05 -0700785 if (chand->method_params_table != NULL) {
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800786 grpc_slice_hash_table_unref(exec_ctx, chand->method_params_table);
Mark D. Roth9fe284e2016-09-12 11:22:27 -0700787 }
Mark D. Roth2a5959f2016-09-01 08:20:27 -0700788 grpc_connectivity_state_destroy(exec_ctx, &chand->state_tracker);
Craig Tiller9e5ac1b2017-02-14 22:25:50 -0800789 grpc_pollset_set_destroy(exec_ctx, chand->interested_parties);
Craig Tillerf1021672017-02-09 21:29:50 -0800790 GRPC_COMBINER_UNREF(exec_ctx, chand->combiner, "client_channel");
Craig Tillerd85477512017-02-09 12:02:39 -0800791 gpr_mu_destroy(&chand->info_mu);
Alexander Polcync3b1f182017-04-18 13:51:36 -0700792 gpr_mu_destroy(&chand->external_connectivity_watcher_list_mu);
Mark D. Roth2a5959f2016-09-01 08:20:27 -0700793}
794
795/*************************************************************************
796 * PER-CALL FUNCTIONS
797 */
798
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700799// Max number of batches that can be pending on a call at any given
800// time. This includes:
801// recv_initial_metadata
802// send_initial_metadata
803// recv_message
804// send_message
805// recv_trailing_metadata
806// send_trailing_metadata
Mark D. Roth764cf042017-09-01 09:00:06 -0700807// We also add room for a single cancel_stream batch.
808#define MAX_WAITING_BATCHES 7
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700809
Mark D. Roth2a5959f2016-09-01 08:20:27 -0700810/** Call data. Holds a pointer to grpc_subchannel_call and the
811 associated machinery to create such a pointer.
812 Handles queueing of stream ops until a call object is ready, waiting
813 for initial metadata before trying to create a call object,
814 and handling cancellation gracefully. */
815typedef struct client_channel_call_data {
Mark D. Roth72f6da82016-09-02 13:42:38 -0700816 // State for handling deadlines.
817 // The code in deadline_filter.c requires this to be the first field.
Mark D. Roth72f6da82016-09-02 13:42:38 -0700818 // TODO(roth): This is slightly sub-optimal in that grpc_deadline_state
Mark D. Roth66f3d2b2017-09-01 09:02:17 -0700819 // and this struct both independently store pointers to the call stack
820 // and call combiner. If/when we have time, find a way to avoid this
821 // without breaking the grpc_deadline_state abstraction.
Mark D. Roth72f6da82016-09-02 13:42:38 -0700822 grpc_deadline_state deadline_state;
Mark D. Rothf28763c2016-09-14 15:18:40 -0700823
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800824 grpc_slice path; // Request path.
Mark D. Rothe40dd292016-10-05 14:58:37 -0700825 gpr_timespec call_start_time;
826 gpr_timespec deadline;
Mark D. Roth764cf042017-09-01 09:00:06 -0700827 gpr_arena *arena;
Mark D. Roth66f3d2b2017-09-01 09:02:17 -0700828 grpc_call_stack *owning_call;
Mark D. Roth764cf042017-09-01 09:00:06 -0700829 grpc_call_combiner *call_combiner;
830
Mark D. Roth9ccbc4d2017-03-15 08:30:04 -0700831 grpc_server_retry_throttle_data *retry_throttle_data;
Mark D. Roth95b627b2017-02-24 11:02:58 -0800832 method_parameters *method_params;
Mark D. Rothaa850a72016-09-26 13:38:02 -0700833
Mark D. Roth764cf042017-09-01 09:00:06 -0700834 grpc_subchannel_call *subchannel_call;
835 grpc_error *error;
Mark D. Roth2a5959f2016-09-01 08:20:27 -0700836
Mark D. Roth60751fe2017-07-07 12:50:33 -0700837 grpc_lb_policy *lb_policy; // Holds ref while LB pick is pending.
838 grpc_closure lb_pick_closure;
Mark D. Roth66f3d2b2017-09-01 09:02:17 -0700839 grpc_closure lb_pick_cancel_closure;
Mark D. Roth60751fe2017-07-07 12:50:33 -0700840
Mark D. Roth2a5959f2016-09-01 08:20:27 -0700841 grpc_connected_subchannel *connected_subchannel;
Mark D. Roth09e458c2017-05-02 08:13:26 -0700842 grpc_call_context_element subchannel_call_context[GRPC_CONTEXT_COUNT];
Mark D. Roth2a5959f2016-09-01 08:20:27 -0700843 grpc_polling_entity *pollent;
844
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700845 grpc_transport_stream_op_batch *waiting_for_pick_batches[MAX_WAITING_BATCHES];
846 size_t waiting_for_pick_batches_count;
Mark D. Roth764cf042017-09-01 09:00:06 -0700847 grpc_closure handle_pending_batch_in_call_combiner[MAX_WAITING_BATCHES];
Mark D. Roth2a5959f2016-09-01 08:20:27 -0700848
Mark D. Roth764cf042017-09-01 09:00:06 -0700849 grpc_transport_stream_op_batch *initial_metadata_batch;
David Garcia Quintasd1a47f12016-09-02 12:46:44 +0200850
851 grpc_linked_mdelem lb_token_mdelem;
Mark D. Rothd6d192d2017-02-23 08:58:42 -0800852
853 grpc_closure on_complete;
854 grpc_closure *original_on_complete;
Mark D. Roth2a5959f2016-09-01 08:20:27 -0700855} call_data;
856
Mark D. Rothbf199612017-08-29 16:59:07 -0700857grpc_subchannel_call *grpc_client_channel_get_subchannel_call(
Mark D. Roth764cf042017-09-01 09:00:06 -0700858 grpc_call_element *elem) {
Yash Tibrewalca3c1c02017-09-07 22:47:16 -0700859 call_data *calld = (call_data *)elem->call_data;
Mark D. Roth764cf042017-09-01 09:00:06 -0700860 return calld->subchannel_call;
Mark D. Roth76e264b2017-08-25 09:03:33 -0700861}
862
Mark D. Roth764cf042017-09-01 09:00:06 -0700863// This is called via the call combiner, so access to calld is synchronized.
864static void waiting_for_pick_batches_add(
Mark D. Rothbf199612017-08-29 16:59:07 -0700865 call_data *calld, grpc_transport_stream_op_batch *batch) {
Mark D. Roth764cf042017-09-01 09:00:06 -0700866 if (batch->send_initial_metadata) {
867 GPR_ASSERT(calld->initial_metadata_batch == NULL);
868 calld->initial_metadata_batch = batch;
869 } else {
870 GPR_ASSERT(calld->waiting_for_pick_batches_count < MAX_WAITING_BATCHES);
871 calld->waiting_for_pick_batches[calld->waiting_for_pick_batches_count++] =
872 batch;
873 }
Mark D. Rothbf199612017-08-29 16:59:07 -0700874}
875
Mark D. Roth764cf042017-09-01 09:00:06 -0700876// This is called via the call combiner, so access to calld is synchronized.
877static void fail_pending_batch_in_call_combiner(grpc_exec_ctx *exec_ctx,
878 void *arg, grpc_error *error) {
Yash Tibrewalca3c1c02017-09-07 22:47:16 -0700879 call_data *calld = (call_data *)arg;
Mark D. Roth764cf042017-09-01 09:00:06 -0700880 if (calld->waiting_for_pick_batches_count > 0) {
881 --calld->waiting_for_pick_batches_count;
882 grpc_transport_stream_op_batch_finish_with_failure(
883 exec_ctx,
884 calld->waiting_for_pick_batches[calld->waiting_for_pick_batches_count],
885 GRPC_ERROR_REF(error), calld->call_combiner);
886 }
887}
888
889// This is called via the call combiner, so access to calld is synchronized.
890static void waiting_for_pick_batches_fail(grpc_exec_ctx *exec_ctx,
891 grpc_call_element *elem,
892 grpc_error *error) {
Yash Tibrewalca3c1c02017-09-07 22:47:16 -0700893 call_data *calld = (call_data *)elem->call_data;
Mark D. Roth60751fe2017-07-07 12:50:33 -0700894 if (GRPC_TRACER_ON(grpc_client_channel_trace)) {
895 gpr_log(GPR_DEBUG,
896 "chand=%p calld=%p: failing %" PRIdPTR " pending batches: %s",
897 elem->channel_data, calld, calld->waiting_for_pick_batches_count,
898 grpc_error_string(error));
899 }
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700900 for (size_t i = 0; i < calld->waiting_for_pick_batches_count; ++i) {
Mark D. Roth764cf042017-09-01 09:00:06 -0700901 GRPC_CLOSURE_INIT(&calld->handle_pending_batch_in_call_combiner[i],
902 fail_pending_batch_in_call_combiner, calld,
903 grpc_schedule_on_exec_ctx);
904 GRPC_CALL_COMBINER_START(exec_ctx, calld->call_combiner,
905 &calld->handle_pending_batch_in_call_combiner[i],
906 GRPC_ERROR_REF(error),
907 "waiting_for_pick_batches_fail");
Mark D. Roth76e264b2017-08-25 09:03:33 -0700908 }
Mark D. Roth764cf042017-09-01 09:00:06 -0700909 if (calld->initial_metadata_batch != NULL) {
910 grpc_transport_stream_op_batch_finish_with_failure(
911 exec_ctx, calld->initial_metadata_batch, GRPC_ERROR_REF(error),
912 calld->call_combiner);
913 } else {
914 GRPC_CALL_COMBINER_STOP(exec_ctx, calld->call_combiner,
915 "waiting_for_pick_batches_fail");
916 }
Mark D. Roth2a5959f2016-09-01 08:20:27 -0700917 GRPC_ERROR_UNREF(error);
918}
919
Mark D. Roth764cf042017-09-01 09:00:06 -0700920// This is called via the call combiner, so access to calld is synchronized.
921static void run_pending_batch_in_call_combiner(grpc_exec_ctx *exec_ctx,
922 void *arg, grpc_error *ignored) {
Yash Tibrewalca3c1c02017-09-07 22:47:16 -0700923 call_data *calld = (call_data *)arg;
Mark D. Roth764cf042017-09-01 09:00:06 -0700924 if (calld->waiting_for_pick_batches_count > 0) {
925 --calld->waiting_for_pick_batches_count;
926 grpc_subchannel_call_process_op(
927 exec_ctx, calld->subchannel_call,
928 calld->waiting_for_pick_batches[calld->waiting_for_pick_batches_count]);
Mark D. Rothbf199612017-08-29 16:59:07 -0700929 }
Mark D. Roth764cf042017-09-01 09:00:06 -0700930}
931
932// This is called via the call combiner, so access to calld is synchronized.
933static void waiting_for_pick_batches_resume(grpc_exec_ctx *exec_ctx,
934 grpc_call_element *elem) {
Yash Tibrewalca3c1c02017-09-07 22:47:16 -0700935 channel_data *chand = (channel_data *)elem->channel_data;
936 call_data *calld = (call_data *)elem->call_data;
Mark D. Roth60751fe2017-07-07 12:50:33 -0700937 if (GRPC_TRACER_ON(grpc_client_channel_trace)) {
938 gpr_log(GPR_DEBUG, "chand=%p calld=%p: sending %" PRIdPTR
939 " pending batches to subchannel_call=%p",
Mark D. Roth764cf042017-09-01 09:00:06 -0700940 chand, calld, calld->waiting_for_pick_batches_count,
941 calld->subchannel_call);
Mark D. Roth60751fe2017-07-07 12:50:33 -0700942 }
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700943 for (size_t i = 0; i < calld->waiting_for_pick_batches_count; ++i) {
Mark D. Roth764cf042017-09-01 09:00:06 -0700944 GRPC_CLOSURE_INIT(&calld->handle_pending_batch_in_call_combiner[i],
945 run_pending_batch_in_call_combiner, calld,
946 grpc_schedule_on_exec_ctx);
947 GRPC_CALL_COMBINER_START(exec_ctx, calld->call_combiner,
948 &calld->handle_pending_batch_in_call_combiner[i],
949 GRPC_ERROR_NONE,
950 "waiting_for_pick_batches_resume");
Mark D. Roth2a5959f2016-09-01 08:20:27 -0700951 }
Mark D. Roth764cf042017-09-01 09:00:06 -0700952 GPR_ASSERT(calld->initial_metadata_batch != NULL);
953 grpc_subchannel_call_process_op(exec_ctx, calld->subchannel_call,
954 calld->initial_metadata_batch);
Mark D. Roth2a5959f2016-09-01 08:20:27 -0700955}
956
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700957// Applies service config to the call. Must be invoked once we know
958// that the resolver has returned results to the channel.
959static void apply_service_config_to_call_locked(grpc_exec_ctx *exec_ctx,
960 grpc_call_element *elem) {
Yash Tibrewalca3c1c02017-09-07 22:47:16 -0700961 channel_data *chand = (channel_data *)elem->channel_data;
962 call_data *calld = (call_data *)elem->call_data;
Mark D. Roth60751fe2017-07-07 12:50:33 -0700963 if (GRPC_TRACER_ON(grpc_client_channel_trace)) {
964 gpr_log(GPR_DEBUG, "chand=%p calld=%p: applying service config to call",
965 chand, calld);
966 }
Mark D. Roth9ccbc4d2017-03-15 08:30:04 -0700967 if (chand->retry_throttle_data != NULL) {
968 calld->retry_throttle_data =
969 grpc_server_retry_throttle_data_ref(chand->retry_throttle_data);
970 }
Craig Tiller11c17d42017-03-13 13:36:34 -0700971 if (chand->method_params_table != NULL) {
Yash Tibrewalca3c1c02017-09-07 22:47:16 -0700972 calld->method_params = (method_parameters *)grpc_method_config_table_get(
Craig Tiller11c17d42017-03-13 13:36:34 -0700973 exec_ctx, chand->method_params_table, calld->path);
974 if (calld->method_params != NULL) {
975 method_parameters_ref(calld->method_params);
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700976 // If the deadline from the service config is shorter than the one
977 // from the client API, reset the deadline timer.
978 if (chand->deadline_checking_enabled &&
979 gpr_time_cmp(calld->method_params->timeout,
Craig Tiller11c17d42017-03-13 13:36:34 -0700980 gpr_time_0(GPR_TIMESPAN)) != 0) {
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700981 const gpr_timespec per_method_deadline =
Craig Tiller11c17d42017-03-13 13:36:34 -0700982 gpr_time_add(calld->call_start_time, calld->method_params->timeout);
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700983 if (gpr_time_cmp(per_method_deadline, calld->deadline) < 0) {
984 calld->deadline = per_method_deadline;
985 grpc_deadline_state_reset(exec_ctx, elem, calld->deadline);
986 }
Craig Tiller11c17d42017-03-13 13:36:34 -0700987 }
988 }
989 }
Craig Tiller11c17d42017-03-13 13:36:34 -0700990}
Craig Tillerea4a4f12017-03-13 13:36:52 -0700991
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700992static void create_subchannel_call_locked(grpc_exec_ctx *exec_ctx,
Mark D. Roth60751fe2017-07-07 12:50:33 -0700993 grpc_call_element *elem,
994 grpc_error *error) {
Yash Tibrewalca3c1c02017-09-07 22:47:16 -0700995 channel_data *chand = (channel_data *)elem->channel_data;
996 call_data *calld = (call_data *)elem->call_data;
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700997 const grpc_connected_subchannel_call_args call_args = {
Yash Tibrewald8b84a22017-09-25 13:38:03 -0700998 calld->pollent, // pollent
999 calld->path, // path
1000 calld->call_start_time, // start_time
1001 calld->deadline, // deadline
1002 calld->arena, // arena
1003 calld->subchannel_call_context, // context
1004 calld->call_combiner // call_combiner
1005 };
Mark D. Roth0ca0be82017-06-20 07:49:33 -07001006 grpc_error *new_error = grpc_connected_subchannel_create_call(
Mark D. Roth764cf042017-09-01 09:00:06 -07001007 exec_ctx, calld->connected_subchannel, &call_args,
1008 &calld->subchannel_call);
Mark D. Roth60751fe2017-07-07 12:50:33 -07001009 if (GRPC_TRACER_ON(grpc_client_channel_trace)) {
1010 gpr_log(GPR_DEBUG, "chand=%p calld=%p: create subchannel_call=%p: error=%s",
Mark D. Roth764cf042017-09-01 09:00:06 -07001011 chand, calld, calld->subchannel_call, grpc_error_string(new_error));
Mark D. Roth60751fe2017-07-07 12:50:33 -07001012 }
Mark D. Roth0ca0be82017-06-20 07:49:33 -07001013 if (new_error != GRPC_ERROR_NONE) {
1014 new_error = grpc_error_add_child(new_error, error);
Mark D. Roth764cf042017-09-01 09:00:06 -07001015 waiting_for_pick_batches_fail(exec_ctx, elem, new_error);
Mark D. Roth0ca0be82017-06-20 07:49:33 -07001016 } else {
Mark D. Roth764cf042017-09-01 09:00:06 -07001017 waiting_for_pick_batches_resume(exec_ctx, elem);
Craig Tiller11c17d42017-03-13 13:36:34 -07001018 }
Mark D. Roth0ca0be82017-06-20 07:49:33 -07001019 GRPC_ERROR_UNREF(error);
Craig Tiller11c17d42017-03-13 13:36:34 -07001020}
1021
Mark D. Rothb2929602017-09-11 09:31:11 -07001022// Invoked when a pick is completed, on both success or failure.
1023static void pick_done_locked(grpc_exec_ctx *exec_ctx, grpc_call_element *elem,
1024 grpc_error *error) {
Yash Tibrewalca3c1c02017-09-07 22:47:16 -07001025 call_data *calld = (call_data *)elem->call_data;
1026 channel_data *chand = (channel_data *)elem->channel_data;
Mark D. Roth2a5959f2016-09-01 08:20:27 -07001027 if (calld->connected_subchannel == NULL) {
Mark D. Roth0ca0be82017-06-20 07:49:33 -07001028 // Failed to create subchannel.
Mark D. Roth764cf042017-09-01 09:00:06 -07001029 GRPC_ERROR_UNREF(calld->error);
1030 calld->error = error == GRPC_ERROR_NONE
1031 ? GRPC_ERROR_CREATE_FROM_STATIC_STRING(
1032 "Call dropped by load balancing policy")
1033 : GRPC_ERROR_CREATE_REFERENCING_FROM_STATIC_STRING(
1034 "Failed to create subchannel", &error, 1);
Mark D. Roth60751fe2017-07-07 12:50:33 -07001035 if (GRPC_TRACER_ON(grpc_client_channel_trace)) {
1036 gpr_log(GPR_DEBUG,
1037 "chand=%p calld=%p: failed to create subchannel: error=%s", chand,
Mark D. Roth764cf042017-09-01 09:00:06 -07001038 calld, grpc_error_string(calld->error));
Mark D. Roth60751fe2017-07-07 12:50:33 -07001039 }
Mark D. Roth764cf042017-09-01 09:00:06 -07001040 waiting_for_pick_batches_fail(exec_ctx, elem, GRPC_ERROR_REF(calld->error));
Mark D. Roth2a5959f2016-09-01 08:20:27 -07001041 } else {
Mark D. Roth9fe284e2016-09-12 11:22:27 -07001042 /* Create call on subchannel. */
Mark D. Roth60751fe2017-07-07 12:50:33 -07001043 create_subchannel_call_locked(exec_ctx, elem, GRPC_ERROR_REF(error));
Mark D. Roth2a5959f2016-09-01 08:20:27 -07001044 }
Mark D. Roth0ca0be82017-06-20 07:49:33 -07001045 GRPC_ERROR_UNREF(error);
Mark D. Roth2a5959f2016-09-01 08:20:27 -07001046}
1047
Mark D. Rothb2929602017-09-11 09:31:11 -07001048// A wrapper around pick_done_locked() that is used in cases where
1049// either (a) the pick was deferred pending a resolver result or (b) the
1050// pick was done asynchronously. Removes the call's polling entity from
1051// chand->interested_parties before invoking pick_done_locked().
1052static void async_pick_done_locked(grpc_exec_ctx *exec_ctx,
1053 grpc_call_element *elem, grpc_error *error) {
1054 channel_data *chand = (channel_data *)elem->channel_data;
1055 call_data *calld = (call_data *)elem->call_data;
1056 grpc_polling_entity_del_from_pollset_set(exec_ctx, calld->pollent,
1057 chand->interested_parties);
1058 pick_done_locked(exec_ctx, elem, error);
1059}
1060
1061// Note: This runs under the client_channel combiner, but will NOT be
1062// holding the call combiner.
1063static void pick_callback_cancel_locked(grpc_exec_ctx *exec_ctx, void *arg,
1064 grpc_error *error) {
1065 grpc_call_element *elem = (grpc_call_element *)arg;
1066 channel_data *chand = (channel_data *)elem->channel_data;
1067 call_data *calld = (call_data *)elem->call_data;
1068 if (calld->lb_policy != NULL) {
1069 if (GRPC_TRACER_ON(grpc_client_channel_trace)) {
1070 gpr_log(GPR_DEBUG, "chand=%p calld=%p: cancelling pick from LB policy %p",
1071 chand, calld, calld->lb_policy);
1072 }
1073 grpc_lb_policy_cancel_pick_locked(exec_ctx, calld->lb_policy,
1074 &calld->connected_subchannel,
1075 GRPC_ERROR_REF(error));
1076 }
1077 GRPC_CALL_STACK_UNREF(exec_ctx, calld->owning_call, "pick_callback_cancel");
1078}
1079
1080// Callback invoked by grpc_lb_policy_pick_locked() for async picks.
1081// Unrefs the LB policy and invokes async_pick_done_locked().
1082static void pick_callback_done_locked(grpc_exec_ctx *exec_ctx, void *arg,
1083 grpc_error *error) {
1084 grpc_call_element *elem = (grpc_call_element *)arg;
1085 channel_data *chand = (channel_data *)elem->channel_data;
1086 call_data *calld = (call_data *)elem->call_data;
1087 if (GRPC_TRACER_ON(grpc_client_channel_trace)) {
1088 gpr_log(GPR_DEBUG, "chand=%p calld=%p: pick completed asynchronously",
1089 chand, calld);
1090 }
1091 GPR_ASSERT(calld->lb_policy != NULL);
1092 GRPC_LB_POLICY_UNREF(exec_ctx, calld->lb_policy, "pick_subchannel");
1093 calld->lb_policy = NULL;
1094 async_pick_done_locked(exec_ctx, elem, GRPC_ERROR_REF(error));
1095}
1096
1097// Takes a ref to chand->lb_policy and calls grpc_lb_policy_pick_locked().
1098// If the pick was completed synchronously, unrefs the LB policy and
1099// returns true.
1100static bool pick_callback_start_locked(grpc_exec_ctx *exec_ctx,
1101 grpc_call_element *elem) {
1102 channel_data *chand = (channel_data *)elem->channel_data;
1103 call_data *calld = (call_data *)elem->call_data;
1104 if (GRPC_TRACER_ON(grpc_client_channel_trace)) {
1105 gpr_log(GPR_DEBUG, "chand=%p calld=%p: starting pick on lb_policy=%p",
1106 chand, calld, chand->lb_policy);
1107 }
1108 apply_service_config_to_call_locked(exec_ctx, elem);
1109 // If the application explicitly set wait_for_ready, use that.
1110 // Otherwise, if the service config specified a value for this
1111 // method, use that.
1112 uint32_t initial_metadata_flags =
1113 calld->initial_metadata_batch->payload->send_initial_metadata
1114 .send_initial_metadata_flags;
1115 const bool wait_for_ready_set_from_api =
1116 initial_metadata_flags &
1117 GRPC_INITIAL_METADATA_WAIT_FOR_READY_EXPLICITLY_SET;
1118 const bool wait_for_ready_set_from_service_config =
1119 calld->method_params != NULL &&
1120 calld->method_params->wait_for_ready != WAIT_FOR_READY_UNSET;
1121 if (!wait_for_ready_set_from_api && wait_for_ready_set_from_service_config) {
1122 if (calld->method_params->wait_for_ready == WAIT_FOR_READY_TRUE) {
1123 initial_metadata_flags |= GRPC_INITIAL_METADATA_WAIT_FOR_READY;
1124 } else {
1125 initial_metadata_flags &= ~GRPC_INITIAL_METADATA_WAIT_FOR_READY;
1126 }
1127 }
1128 const grpc_lb_policy_pick_args inputs = {
1129 calld->initial_metadata_batch->payload->send_initial_metadata
1130 .send_initial_metadata,
1131 initial_metadata_flags, &calld->lb_token_mdelem};
1132 // Keep a ref to the LB policy in calld while the pick is pending.
1133 GRPC_LB_POLICY_REF(chand->lb_policy, "pick_subchannel");
1134 calld->lb_policy = chand->lb_policy;
1135 GRPC_CLOSURE_INIT(&calld->lb_pick_closure, pick_callback_done_locked, elem,
1136 grpc_combiner_scheduler(chand->combiner));
1137 const bool pick_done = grpc_lb_policy_pick_locked(
1138 exec_ctx, chand->lb_policy, &inputs, &calld->connected_subchannel,
1139 calld->subchannel_call_context, NULL, &calld->lb_pick_closure);
1140 if (pick_done) {
1141 /* synchronous grpc_lb_policy_pick call. Unref the LB policy. */
1142 if (GRPC_TRACER_ON(grpc_client_channel_trace)) {
1143 gpr_log(GPR_DEBUG, "chand=%p calld=%p: pick completed synchronously",
1144 chand, calld);
1145 }
1146 GRPC_LB_POLICY_UNREF(exec_ctx, calld->lb_policy, "pick_subchannel");
1147 calld->lb_policy = NULL;
1148 } else {
1149 GRPC_CALL_STACK_REF(calld->owning_call, "pick_callback_cancel");
1150 grpc_call_combiner_set_notify_on_cancel(
1151 exec_ctx, calld->call_combiner,
1152 GRPC_CLOSURE_INIT(&calld->lb_pick_cancel_closure,
1153 pick_callback_cancel_locked, elem,
1154 grpc_combiner_scheduler(chand->combiner)));
1155 }
1156 return pick_done;
1157}
Mark D. Roth0ca0be82017-06-20 07:49:33 -07001158
Craig Tiller577c9b22015-11-02 14:11:15 -08001159typedef struct {
Craig Tiller577c9b22015-11-02 14:11:15 -08001160 grpc_call_element *elem;
Mark D. Roth66f3d2b2017-09-01 09:02:17 -07001161 bool finished;
Craig Tiller577c9b22015-11-02 14:11:15 -08001162 grpc_closure closure;
Mark D. Roth66f3d2b2017-09-01 09:02:17 -07001163 grpc_closure cancel_closure;
Mark D. Roth0ca0be82017-06-20 07:49:33 -07001164} pick_after_resolver_result_args;
Craig Tiller577c9b22015-11-02 14:11:15 -08001165
Mark D. Roth764cf042017-09-01 09:00:06 -07001166// Note: This runs under the client_channel combiner, but will NOT be
1167// holding the call combiner.
1168static void pick_after_resolver_result_cancel_locked(grpc_exec_ctx *exec_ctx,
1169 void *arg,
1170 grpc_error *error) {
Yash Tibrewalca3c1c02017-09-07 22:47:16 -07001171 pick_after_resolver_result_args *args =
1172 (pick_after_resolver_result_args *)arg;
Mark D. Roth66f3d2b2017-09-01 09:02:17 -07001173 if (args->finished) {
1174 gpr_free(args);
Mark D. Rothb2b9a0f2017-09-01 09:06:47 -07001175 return;
Mark D. Roth764cf042017-09-01 09:00:06 -07001176 }
Mark D. Rothb2b9a0f2017-09-01 09:06:47 -07001177 // If we don't yet have a resolver result, then a closure for
1178 // pick_after_resolver_result_done_locked() will have been added to
1179 // chand->waiting_for_resolver_result_closures, and it may not be invoked
1180 // until after this call has been destroyed. We mark the operation as
1181 // finished, so that when pick_after_resolver_result_done_locked()
1182 // is called, it will be a no-op. We also immediately invoke
Mark D. Rothb2929602017-09-11 09:31:11 -07001183 // async_pick_done_locked() to propagate the error back to the caller.
1184 args->finished = true;
1185 grpc_call_element *elem = args->elem;
1186 channel_data *chand = (channel_data *)elem->channel_data;
1187 call_data *calld = (call_data *)elem->call_data;
Mark D. Rothb2b9a0f2017-09-01 09:06:47 -07001188 if (GRPC_TRACER_ON(grpc_client_channel_trace)) {
1189 gpr_log(GPR_DEBUG,
1190 "chand=%p calld=%p: cancelling pick waiting for resolver result",
1191 chand, calld);
1192 }
1193 // Note: Although we are not in the call combiner here, we are
1194 // basically stealing the call combiner from the pending pick, so
Mark D. Rothb2929602017-09-11 09:31:11 -07001195 // it's safe to call async_pick_done_locked() here -- we are
Mark D. Rothb2b9a0f2017-09-01 09:06:47 -07001196 // essentially calling it here instead of calling it in
1197 // pick_after_resolver_result_done_locked().
Mark D. Rothb2929602017-09-11 09:31:11 -07001198 async_pick_done_locked(exec_ctx, elem,
1199 GRPC_ERROR_CREATE_REFERENCING_FROM_STATIC_STRING(
1200 "Pick cancelled", &error, 1));
Mark D. Roth764cf042017-09-01 09:00:06 -07001201}
1202
Mark D. Roth60751fe2017-07-07 12:50:33 -07001203static void pick_after_resolver_result_done_locked(grpc_exec_ctx *exec_ctx,
1204 void *arg,
1205 grpc_error *error) {
Yash Tibrewalca3c1c02017-09-07 22:47:16 -07001206 pick_after_resolver_result_args *args =
1207 (pick_after_resolver_result_args *)arg;
Mark D. Roth66f3d2b2017-09-01 09:02:17 -07001208 if (args->finished) {
Craig Tiller577c9b22015-11-02 14:11:15 -08001209 /* cancelled, do nothing */
Mark D. Roth60751fe2017-07-07 12:50:33 -07001210 if (GRPC_TRACER_ON(grpc_client_channel_trace)) {
1211 gpr_log(GPR_DEBUG, "call cancelled before resolver result");
1212 }
Mark D. Roth66f3d2b2017-09-01 09:02:17 -07001213 gpr_free(args);
Mark D. Rothb2b9a0f2017-09-01 09:06:47 -07001214 return;
1215 }
1216 args->finished = true;
1217 grpc_call_element *elem = args->elem;
Yash Tibrewalca3c1c02017-09-07 22:47:16 -07001218 channel_data *chand = (channel_data *)elem->channel_data;
1219 call_data *calld = (call_data *)elem->call_data;
Mark D. Rothb2b9a0f2017-09-01 09:06:47 -07001220 if (error != GRPC_ERROR_NONE) {
1221 if (GRPC_TRACER_ON(grpc_client_channel_trace)) {
1222 gpr_log(GPR_DEBUG, "chand=%p calld=%p: resolver failed to return data",
1223 chand, calld);
1224 }
Mark D. Rothb2929602017-09-11 09:31:11 -07001225 async_pick_done_locked(exec_ctx, elem, GRPC_ERROR_REF(error));
Mark D. Roth9dab7d52016-10-07 07:48:03 -07001226 } else {
Mark D. Rothb2b9a0f2017-09-01 09:06:47 -07001227 if (GRPC_TRACER_ON(grpc_client_channel_trace)) {
1228 gpr_log(GPR_DEBUG, "chand=%p calld=%p: resolver returned, doing pick",
1229 chand, calld);
1230 }
Mark D. Rothb2929602017-09-11 09:31:11 -07001231 if (pick_callback_start_locked(exec_ctx, elem)) {
1232 // Even if the LB policy returns a result synchronously, we have
1233 // already added our polling entity to chand->interested_parties
1234 // in order to wait for the resolver result, so we need to
1235 // remove it here. Therefore, we call async_pick_done_locked()
1236 // instead of pick_done_locked().
1237 async_pick_done_locked(exec_ctx, elem, GRPC_ERROR_NONE);
Mark D. Roth9dab7d52016-10-07 07:48:03 -07001238 }
Craig Tiller577c9b22015-11-02 14:11:15 -08001239 }
Craig Tiller577c9b22015-11-02 14:11:15 -08001240}
1241
Mark D. Roth60751fe2017-07-07 12:50:33 -07001242static void pick_after_resolver_result_start_locked(grpc_exec_ctx *exec_ctx,
1243 grpc_call_element *elem) {
Yash Tibrewalca3c1c02017-09-07 22:47:16 -07001244 channel_data *chand = (channel_data *)elem->channel_data;
1245 call_data *calld = (call_data *)elem->call_data;
Mark D. Roth60751fe2017-07-07 12:50:33 -07001246 if (GRPC_TRACER_ON(grpc_client_channel_trace)) {
1247 gpr_log(GPR_DEBUG,
1248 "chand=%p calld=%p: deferring pick pending resolver result", chand,
1249 calld);
Mark D. Roth64a317c2017-05-02 08:27:08 -07001250 }
Mark D. Roth60751fe2017-07-07 12:50:33 -07001251 pick_after_resolver_result_args *args =
1252 (pick_after_resolver_result_args *)gpr_zalloc(sizeof(*args));
1253 args->elem = elem;
1254 GRPC_CLOSURE_INIT(&args->closure, pick_after_resolver_result_done_locked,
1255 args, grpc_combiner_scheduler(chand->combiner));
1256 grpc_closure_list_append(&chand->waiting_for_resolver_result_closures,
1257 &args->closure, GRPC_ERROR_NONE);
Mark D. Roth764cf042017-09-01 09:00:06 -07001258 grpc_call_combiner_set_notify_on_cancel(
1259 exec_ctx, calld->call_combiner,
Mark D. Roth66f3d2b2017-09-01 09:02:17 -07001260 GRPC_CLOSURE_INIT(&args->cancel_closure,
1261 pick_after_resolver_result_cancel_locked, args,
Mark D. Roth764cf042017-09-01 09:00:06 -07001262 grpc_combiner_scheduler(chand->combiner)));
Mark D. Roth60751fe2017-07-07 12:50:33 -07001263}
1264
Mark D. Roth764cf042017-09-01 09:00:06 -07001265static void start_pick_locked(grpc_exec_ctx *exec_ctx, void *arg,
Mark D. Rothb2929602017-09-11 09:31:11 -07001266 grpc_error *ignored) {
Mark D. Roth764cf042017-09-01 09:00:06 -07001267 grpc_call_element *elem = (grpc_call_element *)arg;
1268 call_data *calld = (call_data *)elem->call_data;
1269 channel_data *chand = (channel_data *)elem->channel_data;
1270 GPR_ASSERT(calld->connected_subchannel == NULL);
Mark D. Rothb2929602017-09-11 09:31:11 -07001271 if (chand->lb_policy != NULL) {
1272 // We already have an LB policy, so ask it for a pick.
1273 if (pick_callback_start_locked(exec_ctx, elem)) {
1274 // Pick completed synchronously.
1275 pick_done_locked(exec_ctx, elem, GRPC_ERROR_NONE);
1276 return;
Mark D. Rothbf199612017-08-29 16:59:07 -07001277 }
Mark D. Roth764cf042017-09-01 09:00:06 -07001278 } else {
Mark D. Rothb2929602017-09-11 09:31:11 -07001279 // We do not yet have an LB policy, so wait for a resolver result.
1280 if (chand->resolver == NULL) {
1281 pick_done_locked(exec_ctx, elem,
1282 GRPC_ERROR_CREATE_FROM_STATIC_STRING("Disconnected"));
1283 return;
1284 }
1285 if (!chand->started_resolving) {
1286 start_resolving_locked(exec_ctx, chand);
1287 }
1288 pick_after_resolver_result_start_locked(exec_ctx, elem);
Mark D. Rothbf199612017-08-29 16:59:07 -07001289 }
Mark D. Rothb2929602017-09-11 09:31:11 -07001290 // We need to wait for either a resolver result or for an async result
1291 // from the LB policy. Add the polling entity from call_data to the
1292 // channel_data's interested_parties, so that the I/O of the LB policy
1293 // and resolver can be done under it. The polling entity will be
1294 // removed in async_pick_done_locked().
1295 grpc_polling_entity_add_to_pollset_set(exec_ctx, calld->pollent,
1296 chand->interested_parties);
Craig Tillera11bfc82017-02-14 09:56:33 -08001297}
1298
Mark D. Rothde144102017-03-15 10:11:03 -07001299static void on_complete(grpc_exec_ctx *exec_ctx, void *arg, grpc_error *error) {
Yash Tibrewalca3c1c02017-09-07 22:47:16 -07001300 grpc_call_element *elem = (grpc_call_element *)arg;
1301 call_data *calld = (call_data *)elem->call_data;
Mark D. Roth9ccbc4d2017-03-15 08:30:04 -07001302 if (calld->retry_throttle_data != NULL) {
Mark D. Rothd6d192d2017-02-23 08:58:42 -08001303 if (error == GRPC_ERROR_NONE) {
1304 grpc_server_retry_throttle_data_record_success(
Mark D. Roth9ccbc4d2017-03-15 08:30:04 -07001305 calld->retry_throttle_data);
Mark D. Rothd6d192d2017-02-23 08:58:42 -08001306 } else {
1307 // TODO(roth): In a subsequent PR, check the return value here and
Mark D. Rothb3322562017-02-23 14:38:02 -08001308 // decide whether or not to retry. Note that we should only
1309 // record failures whose statuses match the configured retryable
1310 // or non-fatal status codes.
Mark D. Rothd6d192d2017-02-23 08:58:42 -08001311 grpc_server_retry_throttle_data_record_failure(
Mark D. Roth9ccbc4d2017-03-15 08:30:04 -07001312 calld->retry_throttle_data);
Mark D. Rothd6d192d2017-02-23 08:58:42 -08001313 }
1314 }
ncteisen274bbbe2017-06-08 14:57:11 -07001315 GRPC_CLOSURE_RUN(exec_ctx, calld->original_on_complete,
Mark D. Roth95039b52017-02-24 07:59:45 -08001316 GRPC_ERROR_REF(error));
Mark D. Rothd6d192d2017-02-23 08:58:42 -08001317}
1318
Craig Tillere1b51da2017-03-31 15:44:33 -07001319static void cc_start_transport_stream_op_batch(
1320 grpc_exec_ctx *exec_ctx, grpc_call_element *elem,
Mark D. Roth60751fe2017-07-07 12:50:33 -07001321 grpc_transport_stream_op_batch *batch) {
Yash Tibrewalca3c1c02017-09-07 22:47:16 -07001322 call_data *calld = (call_data *)elem->call_data;
1323 channel_data *chand = (channel_data *)elem->channel_data;
Craig Tiller3be7dd02017-04-03 14:30:03 -07001324 if (chand->deadline_checking_enabled) {
Craig Tiller29ebc572017-04-04 08:00:55 -07001325 grpc_deadline_state_client_start_transport_stream_op_batch(exec_ctx, elem,
Mark D. Roth60751fe2017-07-07 12:50:33 -07001326 batch);
Craig Tiller3be7dd02017-04-03 14:30:03 -07001327 }
Mark D. Roth764cf042017-09-01 09:00:06 -07001328 GPR_TIMER_BEGIN("cc_start_transport_stream_op_batch", 0);
1329 // If we've previously been cancelled, immediately fail any new batches.
1330 if (calld->error != GRPC_ERROR_NONE) {
1331 if (GRPC_TRACER_ON(grpc_client_channel_trace)) {
1332 gpr_log(GPR_DEBUG, "chand=%p calld=%p: failing batch with error: %s",
1333 chand, calld, grpc_error_string(calld->error));
1334 }
1335 grpc_transport_stream_op_batch_finish_with_failure(
1336 exec_ctx, batch, GRPC_ERROR_REF(calld->error), calld->call_combiner);
1337 goto done;
1338 }
1339 if (batch->cancel_stream) {
1340 // Stash a copy of cancel_error in our call data, so that we can use
1341 // it for subsequent operations. This ensures that if the call is
1342 // cancelled before any batches are passed down (e.g., if the deadline
1343 // is in the past when the call starts), we can return the right
1344 // error to the caller when the first batch does get passed down.
1345 GRPC_ERROR_UNREF(calld->error);
1346 calld->error = GRPC_ERROR_REF(batch->payload->cancel_stream.cancel_error);
1347 if (GRPC_TRACER_ON(grpc_client_channel_trace)) {
1348 gpr_log(GPR_DEBUG, "chand=%p calld=%p: recording cancel_error=%s", chand,
1349 calld, grpc_error_string(calld->error));
1350 }
1351 // If we have a subchannel call, send the cancellation batch down.
1352 // Otherwise, fail all pending batches.
1353 if (calld->subchannel_call != NULL) {
1354 grpc_subchannel_call_process_op(exec_ctx, calld->subchannel_call, batch);
1355 } else {
1356 waiting_for_pick_batches_add(calld, batch);
1357 waiting_for_pick_batches_fail(exec_ctx, elem,
1358 GRPC_ERROR_REF(calld->error));
1359 }
1360 goto done;
1361 }
Mark D. Roth0ca0be82017-06-20 07:49:33 -07001362 // Intercept on_complete for recv_trailing_metadata so that we can
1363 // check retry throttle status.
Mark D. Roth60751fe2017-07-07 12:50:33 -07001364 if (batch->recv_trailing_metadata) {
1365 GPR_ASSERT(batch->on_complete != NULL);
1366 calld->original_on_complete = batch->on_complete;
Mark D. Roth0ca0be82017-06-20 07:49:33 -07001367 GRPC_CLOSURE_INIT(&calld->on_complete, on_complete, elem,
1368 grpc_schedule_on_exec_ctx);
Mark D. Roth60751fe2017-07-07 12:50:33 -07001369 batch->on_complete = &calld->on_complete;
Mark D. Roth0ca0be82017-06-20 07:49:33 -07001370 }
Mark D. Roth764cf042017-09-01 09:00:06 -07001371 // Check if we've already gotten a subchannel call.
1372 // Note that once we have completed the pick, we do not need to enter
1373 // the channel combiner, which is more efficient (especially for
1374 // streaming calls).
1375 if (calld->subchannel_call != NULL) {
Mark D. Roth60751fe2017-07-07 12:50:33 -07001376 if (GRPC_TRACER_ON(grpc_client_channel_trace)) {
1377 gpr_log(GPR_DEBUG,
1378 "chand=%p calld=%p: sending batch to subchannel_call=%p", chand,
Mark D. Roth764cf042017-09-01 09:00:06 -07001379 calld, calld->subchannel_call);
Mark D. Roth60751fe2017-07-07 12:50:33 -07001380 }
Mark D. Roth764cf042017-09-01 09:00:06 -07001381 grpc_subchannel_call_process_op(exec_ctx, calld->subchannel_call, batch);
Mark D. Roth60751fe2017-07-07 12:50:33 -07001382 goto done;
Mark D. Roth2a5959f2016-09-01 08:20:27 -07001383 }
Mark D. Roth764cf042017-09-01 09:00:06 -07001384 // We do not yet have a subchannel call.
1385 // Add the batch to the waiting-for-pick list.
1386 waiting_for_pick_batches_add(calld, batch);
1387 // For batches containing a send_initial_metadata op, enter the channel
1388 // combiner to start a pick.
1389 if (batch->send_initial_metadata) {
1390 if (GRPC_TRACER_ON(grpc_client_channel_trace)) {
Mark D. Rothb2929602017-09-11 09:31:11 -07001391 gpr_log(GPR_DEBUG, "chand=%p calld=%p: entering client_channel combiner",
1392 chand, calld);
Mark D. Roth764cf042017-09-01 09:00:06 -07001393 }
1394 GRPC_CLOSURE_SCHED(
1395 exec_ctx,
1396 GRPC_CLOSURE_INIT(&batch->handler_private.closure, start_pick_locked,
1397 elem, grpc_combiner_scheduler(chand->combiner)),
1398 GRPC_ERROR_NONE);
1399 } else {
1400 // For all other batches, release the call combiner.
1401 if (GRPC_TRACER_ON(grpc_client_channel_trace)) {
1402 gpr_log(GPR_DEBUG,
1403 "chand=%p calld=%p: saved batch, yeilding call combiner", chand,
1404 calld);
1405 }
1406 GRPC_CALL_COMBINER_STOP(exec_ctx, calld->call_combiner,
1407 "batch does not include send_initial_metadata");
Mark D. Roth60751fe2017-07-07 12:50:33 -07001408 }
Mark D. Roth60751fe2017-07-07 12:50:33 -07001409done:
Craig Tillera0f3abd2017-03-31 15:42:16 -07001410 GPR_TIMER_END("cc_start_transport_stream_op_batch", 0);
Mark D. Roth2a5959f2016-09-01 08:20:27 -07001411}
1412
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001413/* Constructor for call_data */
Mark D. Roth2a5959f2016-09-01 08:20:27 -07001414static grpc_error *cc_init_call_elem(grpc_exec_ctx *exec_ctx,
1415 grpc_call_element *elem,
Craig Tillerc52ba3a2017-02-15 22:57:43 -08001416 const grpc_call_element_args *args) {
Yash Tibrewalca3c1c02017-09-07 22:47:16 -07001417 call_data *calld = (call_data *)elem->call_data;
1418 channel_data *chand = (channel_data *)elem->channel_data;
Mark D. Rothe40dd292016-10-05 14:58:37 -07001419 // Initialize data members.
Craig Tiller7c70b6c2017-01-23 07:48:42 -08001420 calld->path = grpc_slice_ref_internal(args->path);
Mark D. Rothff08f332016-10-14 13:01:01 -07001421 calld->call_start_time = args->start_time;
Mark D. Rothe40dd292016-10-05 14:58:37 -07001422 calld->deadline = gpr_convert_clock_type(args->deadline, GPR_CLOCK_MONOTONIC);
Craig Tillerd426cac2017-03-13 12:30:45 -07001423 calld->arena = args->arena;
Mark D. Roth66f3d2b2017-09-01 09:02:17 -07001424 calld->owning_call = args->call_stack;
Mark D. Roth764cf042017-09-01 09:00:06 -07001425 calld->call_combiner = args->call_combiner;
Craig Tiller3be7dd02017-04-03 14:30:03 -07001426 if (chand->deadline_checking_enabled) {
Mark D. Roth764cf042017-09-01 09:00:06 -07001427 grpc_deadline_state_init(exec_ctx, elem, args->call_stack,
1428 args->call_combiner, calld->deadline);
Craig Tiller3be7dd02017-04-03 14:30:03 -07001429 }
Mark D. Roth0badbe82016-06-23 10:15:12 -07001430 return GRPC_ERROR_NONE;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001431}
1432
1433/* Destructor for call_data */
Mark D. Roth2a5959f2016-09-01 08:20:27 -07001434static void cc_destroy_call_elem(grpc_exec_ctx *exec_ctx,
1435 grpc_call_element *elem,
1436 const grpc_call_final_info *final_info,
Craig Tillerd426cac2017-03-13 12:30:45 -07001437 grpc_closure *then_schedule_closure) {
Yash Tibrewalca3c1c02017-09-07 22:47:16 -07001438 call_data *calld = (call_data *)elem->call_data;
1439 channel_data *chand = (channel_data *)elem->channel_data;
Craig Tiller3be7dd02017-04-03 14:30:03 -07001440 if (chand->deadline_checking_enabled) {
1441 grpc_deadline_state_destroy(exec_ctx, elem);
1442 }
Craig Tiller7c70b6c2017-01-23 07:48:42 -08001443 grpc_slice_unref_internal(exec_ctx, calld->path);
Mark D. Roth95b627b2017-02-24 11:02:58 -08001444 if (calld->method_params != NULL) {
1445 method_parameters_unref(calld->method_params);
1446 }
Mark D. Roth764cf042017-09-01 09:00:06 -07001447 GRPC_ERROR_UNREF(calld->error);
1448 if (calld->subchannel_call != NULL) {
1449 grpc_subchannel_call_set_cleanup_closure(calld->subchannel_call,
Craig Tillerf7c8c9f2017-05-17 15:22:05 -07001450 then_schedule_closure);
Craig Tillerd426cac2017-03-13 12:30:45 -07001451 then_schedule_closure = NULL;
Mark D. Roth764cf042017-09-01 09:00:06 -07001452 GRPC_SUBCHANNEL_CALL_UNREF(exec_ctx, calld->subchannel_call,
Craig Tillerf7c8c9f2017-05-17 15:22:05 -07001453 "client_channel_destroy_call");
Mark D. Roth4c0fe492016-08-31 13:51:55 -07001454 }
Mark D. Roth60751fe2017-07-07 12:50:33 -07001455 GPR_ASSERT(calld->lb_policy == NULL);
Mark D. Roth0ca0be82017-06-20 07:49:33 -07001456 GPR_ASSERT(calld->waiting_for_pick_batches_count == 0);
Craig Tiller693d3942016-10-27 16:51:25 -07001457 if (calld->connected_subchannel != NULL) {
1458 GRPC_CONNECTED_SUBCHANNEL_UNREF(exec_ctx, calld->connected_subchannel,
1459 "picked");
1460 }
Mark D. Roth09e458c2017-05-02 08:13:26 -07001461 for (size_t i = 0; i < GRPC_CONTEXT_COUNT; ++i) {
1462 if (calld->subchannel_call_context[i].value != NULL) {
1463 calld->subchannel_call_context[i].destroy(
1464 calld->subchannel_call_context[i].value);
1465 }
1466 }
ncteisen274bbbe2017-06-08 14:57:11 -07001467 GRPC_CLOSURE_SCHED(exec_ctx, then_schedule_closure, GRPC_ERROR_NONE);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001468}
1469
David Garcia Quintasf72eb972016-05-03 18:28:09 -07001470static void cc_set_pollset_or_pollset_set(grpc_exec_ctx *exec_ctx,
1471 grpc_call_element *elem,
David Garcia Quintas2a50dfe2016-05-31 15:09:12 -07001472 grpc_polling_entity *pollent) {
Yash Tibrewalca3c1c02017-09-07 22:47:16 -07001473 call_data *calld = (call_data *)elem->call_data;
David Garcia Quintas2a50dfe2016-05-31 15:09:12 -07001474 calld->pollent = pollent;
Craig Tiller577c9b22015-11-02 14:11:15 -08001475}
1476
Mark D. Roth2a5959f2016-09-01 08:20:27 -07001477/*************************************************************************
1478 * EXPORTED SYMBOLS
1479 */
1480
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001481const grpc_channel_filter grpc_client_channel_filter = {
Craig Tillera0f3abd2017-03-31 15:42:16 -07001482 cc_start_transport_stream_op_batch,
Craig Tillerf40df232016-03-25 13:38:14 -07001483 cc_start_transport_op,
1484 sizeof(call_data),
Mark D. Roth2a5959f2016-09-01 08:20:27 -07001485 cc_init_call_elem,
David Garcia Quintas4afce7e2016-04-18 16:25:17 -07001486 cc_set_pollset_or_pollset_set,
Mark D. Roth2a5959f2016-09-01 08:20:27 -07001487 cc_destroy_call_elem,
Craig Tillerf40df232016-03-25 13:38:14 -07001488 sizeof(channel_data),
Mark D. Roth2a5959f2016-09-01 08:20:27 -07001489 cc_init_channel_elem,
1490 cc_destroy_channel_elem,
Mark D. Rothb2d24882016-10-27 15:44:07 -07001491 cc_get_channel_info,
Craig Tillerf40df232016-03-25 13:38:14 -07001492 "client-channel",
Craig Tiller87d5b192015-04-16 14:37:57 -07001493};
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001494
Craig Tiller613dafa2017-02-09 12:00:43 -08001495static void try_to_connect_locked(grpc_exec_ctx *exec_ctx, void *arg,
1496 grpc_error *error_ignored) {
Yash Tibrewalca3c1c02017-09-07 22:47:16 -07001497 channel_data *chand = (channel_data *)arg;
Craig Tiller613dafa2017-02-09 12:00:43 -08001498 if (chand->lb_policy != NULL) {
Craig Tiller2400bf52017-02-09 16:25:19 -08001499 grpc_lb_policy_exit_idle_locked(exec_ctx, chand->lb_policy);
Craig Tiller613dafa2017-02-09 12:00:43 -08001500 } else {
1501 chand->exit_idle_when_lb_policy_arrives = true;
1502 if (!chand->started_resolving && chand->resolver != NULL) {
Mark D. Roth60751fe2017-07-07 12:50:33 -07001503 start_resolving_locked(exec_ctx, chand);
Craig Tiller613dafa2017-02-09 12:00:43 -08001504 }
1505 }
Craig Tillerd2e5cfc2017-02-09 13:02:20 -08001506 GRPC_CHANNEL_STACK_UNREF(exec_ctx, chand->owning_stack, "try_to_connect");
Craig Tiller613dafa2017-02-09 12:00:43 -08001507}
1508
Craig Tillera82950e2015-09-22 12:33:20 -07001509grpc_connectivity_state grpc_client_channel_check_connectivity_state(
1510 grpc_exec_ctx *exec_ctx, grpc_channel_element *elem, int try_to_connect) {
Yash Tibrewalca3c1c02017-09-07 22:47:16 -07001511 channel_data *chand = (channel_data *)elem->channel_data;
Craig Tillera8610c02017-02-14 10:05:11 -08001512 grpc_connectivity_state out =
1513 grpc_connectivity_state_check(&chand->state_tracker);
Craig Tillera82950e2015-09-22 12:33:20 -07001514 if (out == GRPC_CHANNEL_IDLE && try_to_connect) {
Craig Tillerd2e5cfc2017-02-09 13:02:20 -08001515 GRPC_CHANNEL_STACK_REF(chand->owning_stack, "try_to_connect");
ncteisen274bbbe2017-06-08 14:57:11 -07001516 GRPC_CLOSURE_SCHED(
1517 exec_ctx, GRPC_CLOSURE_CREATE(try_to_connect_locked, chand,
Craig Tilleree4b1452017-05-12 10:56:03 -07001518 grpc_combiner_scheduler(chand->combiner)),
Craig Tiller613dafa2017-02-09 12:00:43 -08001519 GRPC_ERROR_NONE);
Craig Tillera82950e2015-09-22 12:33:20 -07001520 }
Craig Tiller48cb07c2015-07-15 16:16:15 -07001521 return out;
1522}
1523
Alexander Polcync3b1f182017-04-18 13:51:36 -07001524typedef struct external_connectivity_watcher {
Craig Tiller86c99582015-11-25 15:22:26 -08001525 channel_data *chand;
David Garcia Quintas87d5a312017-06-06 19:45:58 -07001526 grpc_polling_entity pollent;
Craig Tiller86c99582015-11-25 15:22:26 -08001527 grpc_closure *on_complete;
Alexander Polcync3b1f182017-04-18 13:51:36 -07001528 grpc_closure *watcher_timer_init;
Craig Tiller613dafa2017-02-09 12:00:43 -08001529 grpc_connectivity_state *state;
Craig Tiller86c99582015-11-25 15:22:26 -08001530 grpc_closure my_closure;
Alexander Polcync3b1f182017-04-18 13:51:36 -07001531 struct external_connectivity_watcher *next;
Craig Tiller86c99582015-11-25 15:22:26 -08001532} external_connectivity_watcher;
1533
Alexander Polcync3b1f182017-04-18 13:51:36 -07001534static external_connectivity_watcher *lookup_external_connectivity_watcher(
1535 channel_data *chand, grpc_closure *on_complete) {
1536 gpr_mu_lock(&chand->external_connectivity_watcher_list_mu);
1537 external_connectivity_watcher *w =
1538 chand->external_connectivity_watcher_list_head;
1539 while (w != NULL && w->on_complete != on_complete) {
1540 w = w->next;
1541 }
1542 gpr_mu_unlock(&chand->external_connectivity_watcher_list_mu);
1543 return w;
1544}
1545
1546static void external_connectivity_watcher_list_append(
1547 channel_data *chand, external_connectivity_watcher *w) {
1548 GPR_ASSERT(!lookup_external_connectivity_watcher(chand, w->on_complete));
1549
1550 gpr_mu_lock(&w->chand->external_connectivity_watcher_list_mu);
1551 GPR_ASSERT(!w->next);
1552 w->next = chand->external_connectivity_watcher_list_head;
1553 chand->external_connectivity_watcher_list_head = w;
1554 gpr_mu_unlock(&w->chand->external_connectivity_watcher_list_mu);
1555}
1556
1557static void external_connectivity_watcher_list_remove(
1558 channel_data *chand, external_connectivity_watcher *too_remove) {
1559 GPR_ASSERT(
1560 lookup_external_connectivity_watcher(chand, too_remove->on_complete));
1561 gpr_mu_lock(&chand->external_connectivity_watcher_list_mu);
1562 if (too_remove == chand->external_connectivity_watcher_list_head) {
1563 chand->external_connectivity_watcher_list_head = too_remove->next;
1564 gpr_mu_unlock(&chand->external_connectivity_watcher_list_mu);
1565 return;
1566 }
1567 external_connectivity_watcher *w =
1568 chand->external_connectivity_watcher_list_head;
1569 while (w != NULL) {
1570 if (w->next == too_remove) {
1571 w->next = w->next->next;
1572 gpr_mu_unlock(&chand->external_connectivity_watcher_list_mu);
1573 return;
1574 }
1575 w = w->next;
1576 }
1577 GPR_UNREACHABLE_CODE(return );
1578}
1579
1580int grpc_client_channel_num_external_connectivity_watchers(
1581 grpc_channel_element *elem) {
Yash Tibrewalca3c1c02017-09-07 22:47:16 -07001582 channel_data *chand = (channel_data *)elem->channel_data;
Alexander Polcync3b1f182017-04-18 13:51:36 -07001583 int count = 0;
1584
1585 gpr_mu_lock(&chand->external_connectivity_watcher_list_mu);
1586 external_connectivity_watcher *w =
1587 chand->external_connectivity_watcher_list_head;
1588 while (w != NULL) {
1589 count++;
1590 w = w->next;
1591 }
1592 gpr_mu_unlock(&chand->external_connectivity_watcher_list_mu);
1593
1594 return count;
1595}
1596
Craig Tiller1d881fb2015-12-01 07:39:04 -08001597static void on_external_watch_complete(grpc_exec_ctx *exec_ctx, void *arg,
Craig Tiller804ff712016-05-05 16:25:40 -07001598 grpc_error *error) {
Yash Tibrewalca3c1c02017-09-07 22:47:16 -07001599 external_connectivity_watcher *w = (external_connectivity_watcher *)arg;
Craig Tiller86c99582015-11-25 15:22:26 -08001600 grpc_closure *follow_up = w->on_complete;
David Garcia Quintas87d5a312017-06-06 19:45:58 -07001601 grpc_polling_entity_del_from_pollset_set(exec_ctx, &w->pollent,
1602 w->chand->interested_parties);
Craig Tiller1d881fb2015-12-01 07:39:04 -08001603 GRPC_CHANNEL_STACK_UNREF(exec_ctx, w->chand->owning_stack,
1604 "external_connectivity_watcher");
Alexander Polcync3b1f182017-04-18 13:51:36 -07001605 external_connectivity_watcher_list_remove(w->chand, w);
Craig Tiller86c99582015-11-25 15:22:26 -08001606 gpr_free(w);
ncteisen274bbbe2017-06-08 14:57:11 -07001607 GRPC_CLOSURE_RUN(exec_ctx, follow_up, GRPC_ERROR_REF(error));
Craig Tiller613dafa2017-02-09 12:00:43 -08001608}
1609
Craig Tillera8610c02017-02-14 10:05:11 -08001610static void watch_connectivity_state_locked(grpc_exec_ctx *exec_ctx, void *arg,
1611 grpc_error *error_ignored) {
Yash Tibrewalca3c1c02017-09-07 22:47:16 -07001612 external_connectivity_watcher *w = (external_connectivity_watcher *)arg;
Alexander Polcync3b1f182017-04-18 13:51:36 -07001613 external_connectivity_watcher *found = NULL;
1614 if (w->state != NULL) {
1615 external_connectivity_watcher_list_append(w->chand, w);
ncteisen274bbbe2017-06-08 14:57:11 -07001616 GRPC_CLOSURE_RUN(exec_ctx, w->watcher_timer_init, GRPC_ERROR_NONE);
1617 GRPC_CLOSURE_INIT(&w->my_closure, on_external_watch_complete, w,
Alexander Polcync3b1f182017-04-18 13:51:36 -07001618 grpc_schedule_on_exec_ctx);
1619 grpc_connectivity_state_notify_on_state_change(
1620 exec_ctx, &w->chand->state_tracker, w->state, &w->my_closure);
1621 } else {
1622 GPR_ASSERT(w->watcher_timer_init == NULL);
1623 found = lookup_external_connectivity_watcher(w->chand, w->on_complete);
1624 if (found) {
1625 GPR_ASSERT(found->on_complete == w->on_complete);
1626 grpc_connectivity_state_notify_on_state_change(
1627 exec_ctx, &found->chand->state_tracker, NULL, &found->my_closure);
1628 }
David Garcia Quintas87d5a312017-06-06 19:45:58 -07001629 grpc_polling_entity_del_from_pollset_set(exec_ctx, &w->pollent,
1630 w->chand->interested_parties);
Alexander Polcync3b1f182017-04-18 13:51:36 -07001631 GRPC_CHANNEL_STACK_UNREF(exec_ctx, w->chand->owning_stack,
1632 "external_connectivity_watcher");
1633 gpr_free(w);
1634 }
Craig Tiller86c99582015-11-25 15:22:26 -08001635}
1636
Craig Tillera82950e2015-09-22 12:33:20 -07001637void grpc_client_channel_watch_connectivity_state(
David Garcia Quintas87d5a312017-06-06 19:45:58 -07001638 grpc_exec_ctx *exec_ctx, grpc_channel_element *elem,
1639 grpc_polling_entity pollent, grpc_connectivity_state *state,
1640 grpc_closure *closure, grpc_closure *watcher_timer_init) {
Yash Tibrewalca3c1c02017-09-07 22:47:16 -07001641 channel_data *chand = (channel_data *)elem->channel_data;
1642 external_connectivity_watcher *w =
1643 (external_connectivity_watcher *)gpr_zalloc(sizeof(*w));
Craig Tiller86c99582015-11-25 15:22:26 -08001644 w->chand = chand;
David Garcia Quintas87d5a312017-06-06 19:45:58 -07001645 w->pollent = pollent;
Mark D. Roth92210832017-05-02 15:04:39 -07001646 w->on_complete = closure;
Craig Tiller613dafa2017-02-09 12:00:43 -08001647 w->state = state;
Alexander Polcync3b1f182017-04-18 13:51:36 -07001648 w->watcher_timer_init = watcher_timer_init;
David Garcia Quintas87d5a312017-06-06 19:45:58 -07001649 grpc_polling_entity_add_to_pollset_set(exec_ctx, &w->pollent,
1650 chand->interested_parties);
Craig Tiller1d881fb2015-12-01 07:39:04 -08001651 GRPC_CHANNEL_STACK_REF(w->chand->owning_stack,
1652 "external_connectivity_watcher");
ncteisen274bbbe2017-06-08 14:57:11 -07001653 GRPC_CLOSURE_SCHED(
Craig Tiller613dafa2017-02-09 12:00:43 -08001654 exec_ctx,
ncteisen274bbbe2017-06-08 14:57:11 -07001655 GRPC_CLOSURE_INIT(&w->my_closure, watch_connectivity_state_locked, w,
Craig Tilleree4b1452017-05-12 10:56:03 -07001656 grpc_combiner_scheduler(chand->combiner)),
Craig Tiller613dafa2017-02-09 12:00:43 -08001657 GRPC_ERROR_NONE);
Craig Tiller48cb07c2015-07-15 16:16:15 -07001658}