blob: 51f9ae000a3b2b02016e933ab6cd204155224a6d [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
Yash Tibrewal37fdb732017-09-25 16:45:02 -070019#include <grpc/support/port_platform.h>
20
Craig Tiller9eb0fde2017-03-31 16:59:30 -070021#include "src/core/ext/filters/client_channel/client_channel.h"
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080022
Yash Tibrewalfcd26bc2017-09-25 15:08:28 -070023#include <inttypes.h>
Mark D. Roth718c8342018-02-28 13:00:04 -080024#include <limits.h>
Mark D. Roth4c0fe492016-08-31 13:51:55 -070025#include <stdbool.h>
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080026#include <stdio.h>
Craig Tillereb3b12e2015-06-26 14:42:49 -070027#include <string.h>
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080028
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080029#include <grpc/support/alloc.h>
30#include <grpc/support/log.h>
Mark D. Rothb2d24882016-10-27 15:44:07 -070031#include <grpc/support/string_util.h>
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080032#include <grpc/support/sync.h>
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080033
Yuchen Zeng0bad30a2017-10-05 21:47:39 -070034#include "src/core/ext/filters/client_channel/backup_poller.h"
Craig Tiller9eb0fde2017-03-31 16:59:30 -070035#include "src/core/ext/filters/client_channel/http_connect_handshaker.h"
36#include "src/core/ext/filters/client_channel/lb_policy_registry.h"
Mark D. Roth3e7f2df2018-02-26 13:17:06 -080037#include "src/core/ext/filters/client_channel/method_params.h"
Craig Tiller9eb0fde2017-03-31 16:59:30 -070038#include "src/core/ext/filters/client_channel/proxy_mapper_registry.h"
39#include "src/core/ext/filters/client_channel/resolver_registry.h"
40#include "src/core/ext/filters/client_channel/retry_throttle.h"
41#include "src/core/ext/filters/client_channel/subchannel.h"
Craig Tiller3be7dd02017-04-03 14:30:03 -070042#include "src/core/ext/filters/deadline/deadline_filter.h"
Mark D. Roth718c8342018-02-28 13:00:04 -080043#include "src/core/lib/backoff/backoff.h"
Craig Tiller9533d042016-03-25 17:11:06 -070044#include "src/core/lib/channel/channel_args.h"
45#include "src/core/lib/channel/connected_channel.h"
ncteisen3b42f832018-03-19 13:22:35 -070046#include "src/core/lib/channel/status_util.h"
Mark D. Rothdbdf4952018-01-18 11:21:12 -080047#include "src/core/lib/gpr/string.h"
Mark D. Roth718c8342018-02-28 13:00:04 -080048#include "src/core/lib/gprpp/inlined_vector.h"
49#include "src/core/lib/gprpp/manual_constructor.h"
Craig Tillerbefafe62017-02-09 11:30:54 -080050#include "src/core/lib/iomgr/combiner.h"
Craig Tiller9533d042016-03-25 17:11:06 -070051#include "src/core/lib/iomgr/iomgr.h"
Mark D. Roth4c0fe492016-08-31 13:51:55 -070052#include "src/core/lib/iomgr/polling_entity.h"
Craig Tiller9533d042016-03-25 17:11:06 -070053#include "src/core/lib/profiling/timers.h"
Craig Tiller7c70b6c2017-01-23 07:48:42 -080054#include "src/core/lib/slice/slice_internal.h"
Mark D. Roth718c8342018-02-28 13:00:04 -080055#include "src/core/lib/slice/slice_string_helpers.h"
Craig Tiller9533d042016-03-25 17:11:06 -070056#include "src/core/lib/surface/channel.h"
57#include "src/core/lib/transport/connectivity_state.h"
Mark D. Roth718c8342018-02-28 13:00:04 -080058#include "src/core/lib/transport/error_utils.h"
Mark D. Roth9fe284e2016-09-12 11:22:27 -070059#include "src/core/lib/transport/metadata.h"
60#include "src/core/lib/transport/metadata_batch.h"
Mark D. Rothea846a02016-11-03 11:32:54 -070061#include "src/core/lib/transport/service_config.h"
Mark D. Roth9fe284e2016-09-12 11:22:27 -070062#include "src/core/lib/transport/static_metadata.h"
Mark D. Roth718c8342018-02-28 13:00:04 -080063#include "src/core/lib/transport/status_metadata.h"
Craig Tiller8910ac62015-10-08 16:49:15 -070064
Mark D. Roth3e7f2df2018-02-26 13:17:06 -080065using grpc_core::internal::ClientChannelMethodParams;
Mark D. Roth9db86fc2018-03-28 07:42:20 -070066using grpc_core::internal::ServerRetryThrottleData;
Mark D. Roth3e7f2df2018-02-26 13:17:06 -080067
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080068/* Client channel implementation */
69
Mark D. Roth718c8342018-02-28 13:00:04 -080070// By default, we buffer 256 KiB per RPC for retries.
71// TODO(roth): Do we have any data to suggest a better value?
72#define DEFAULT_PER_RPC_RETRY_BUFFER_SIZE (256 << 10)
73
74// This value was picked arbitrarily. It can be changed if there is
75// any even moderately compelling reason to do so.
76#define RETRY_BACKOFF_JITTER 0.2
77
Craig Tiller694580f2017-10-18 14:48:14 -070078grpc_core::TraceFlag grpc_client_channel_trace(false, "client_channel");
Mark D. Roth60751fe2017-07-07 12:50:33 -070079
Mark D. Roth26b7be42016-10-24 10:08:07 -070080/*************************************************************************
Mark D. Roth3e7f2df2018-02-26 13:17:06 -080081 * CHANNEL-WIDE FUNCTIONS
Mark D. Roth26b7be42016-10-24 10:08:07 -070082 */
83
Alexander Polcync3b1f182017-04-18 13:51:36 -070084struct external_connectivity_watcher;
85
Mark D. Roth3e7f2df2018-02-26 13:17:06 -080086typedef grpc_core::SliceHashTable<
87 grpc_core::RefCountedPtr<ClientChannelMethodParams>>
88 MethodParamsTable;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080089
Craig Tiller800dacb2015-10-06 09:10:26 -070090typedef struct client_channel_channel_data {
Mark D. Roth209f6442018-02-08 10:26:46 -080091 grpc_core::OrphanablePtr<grpc_core::Resolver> resolver;
Mark D. Roth4c0fe492016-08-31 13:51:55 -070092 bool started_resolving;
Craig Tiller3be7dd02017-04-03 14:30:03 -070093 bool deadline_checking_enabled;
Craig Tillerbaa14a92017-11-03 09:09:36 -070094 grpc_client_channel_factory* client_channel_factory;
Mark D. Roth718c8342018-02-28 13:00:04 -080095 bool enable_retries;
96 size_t per_rpc_retry_buffer_size;
Craig Tillerf5f17122015-06-25 08:47:26 -070097
Craig Tillerbefafe62017-02-09 11:30:54 -080098 /** combiner protecting all variables below in this data structure */
Craig Tillerbaa14a92017-11-03 09:09:36 -070099 grpc_combiner* combiner;
Mark D. Roth046cf762016-09-26 11:13:51 -0700100 /** currently active load balancer */
Mark D. Rothc8875492018-02-20 08:33:48 -0800101 grpc_core::OrphanablePtr<grpc_core::LoadBalancingPolicy> lb_policy;
Mark D. Rothd6d192d2017-02-23 08:58:42 -0800102 /** retry throttle data */
Mark D. Roth9db86fc2018-03-28 07:42:20 -0700103 grpc_core::RefCountedPtr<ServerRetryThrottleData> retry_throttle_data;
Mark D. Roth9d480942016-10-19 14:18:05 -0700104 /** maps method names to method_parameters structs */
Mark D. Roth3e7f2df2018-02-26 13:17:06 -0800105 grpc_core::RefCountedPtr<MethodParamsTable> method_params_table;
Mark D. Roth046cf762016-09-26 11:13:51 -0700106 /** incoming resolver result - set by resolver.next() */
Craig Tillerbaa14a92017-11-03 09:09:36 -0700107 grpc_channel_args* resolver_result;
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700108 /** a list of closures that are all waiting for resolver result to come in */
109 grpc_closure_list waiting_for_resolver_result_closures;
Craig Tiller3f475422015-06-25 10:43:05 -0700110 /** resolver callback */
Mark D. Rothff4df062016-08-22 15:02:49 -0700111 grpc_closure on_resolver_result_changed;
Craig Tiller3f475422015-06-25 10:43:05 -0700112 /** connectivity state being tracked */
Craig Tillerca3e9d32015-06-27 18:37:27 -0700113 grpc_connectivity_state_tracker state_tracker;
Craig Tiller48cb07c2015-07-15 16:16:15 -0700114 /** when an lb_policy arrives, should we try to exit idle */
Mark D. Roth4c0fe492016-08-31 13:51:55 -0700115 bool exit_idle_when_lb_policy_arrives;
Craig Tiller906e3bc2015-11-24 07:31:31 -0800116 /** owning stack */
Craig Tillerbaa14a92017-11-03 09:09:36 -0700117 grpc_channel_stack* owning_stack;
Craig Tiller69b093b2016-02-25 19:04:07 -0800118 /** interested parties (owned) */
Craig Tillerbaa14a92017-11-03 09:09:36 -0700119 grpc_pollset_set* interested_parties;
Craig Tiller613dafa2017-02-09 12:00:43 -0800120
Alexander Polcync3b1f182017-04-18 13:51:36 -0700121 /* external_connectivity_watcher_list head is guarded by its own mutex, since
122 * counts need to be grabbed immediately without polling on a cq */
123 gpr_mu external_connectivity_watcher_list_mu;
Craig Tillerbaa14a92017-11-03 09:09:36 -0700124 struct external_connectivity_watcher* external_connectivity_watcher_list_head;
Alexander Polcync3b1f182017-04-18 13:51:36 -0700125
Mark D. Roth718c8342018-02-28 13:00:04 -0800126 /* the following properties are guarded by a mutex since APIs require them
Craig Tiller46dd7902017-02-23 09:42:16 -0800127 to be instantaneously available */
Craig Tiller613dafa2017-02-09 12:00:43 -0800128 gpr_mu info_mu;
Craig Tillerbaa14a92017-11-03 09:09:36 -0700129 char* info_lb_policy_name;
Craig Tiller613dafa2017-02-09 12:00:43 -0800130 /** service config in JSON form */
Craig Tillerbaa14a92017-11-03 09:09:36 -0700131 char* info_service_config_json;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800132} channel_data;
133
Juanli Shen592cf342017-12-04 20:52:01 -0800134typedef struct {
135 channel_data* chand;
136 /** used as an identifier, don't dereference it because the LB policy may be
137 * non-existing when the callback is run */
Mark D. Rothc8875492018-02-20 08:33:48 -0800138 grpc_core::LoadBalancingPolicy* lb_policy;
Juanli Shen592cf342017-12-04 20:52:01 -0800139 grpc_closure closure;
140} reresolution_request_args;
141
Craig Tillerd6c98df2015-08-18 09:33:44 -0700142/** We create one watcher for each new lb_policy that is returned from a
Mark D. Roth4c0fe492016-08-31 13:51:55 -0700143 resolver, to watch for state changes from the lb_policy. When a state
144 change is seen, we update the channel, and create a new watcher. */
Craig Tillera82950e2015-09-22 12:33:20 -0700145typedef struct {
Craig Tillerbaa14a92017-11-03 09:09:36 -0700146 channel_data* chand;
Craig Tiller33825112015-09-18 07:44:19 -0700147 grpc_closure on_changed;
Craig Tiller1ada6ad2015-07-16 16:19:14 -0700148 grpc_connectivity_state state;
Mark D. Rothc8875492018-02-20 08:33:48 -0800149 grpc_core::LoadBalancingPolicy* lb_policy;
Craig Tiller1ada6ad2015-07-16 16:19:14 -0700150} lb_policy_connectivity_watcher;
151
Yash Tibrewal8cf14702017-12-06 09:47:54 -0800152static void watch_lb_policy_locked(channel_data* chand,
Mark D. Rothc8875492018-02-20 08:33:48 -0800153 grpc_core::LoadBalancingPolicy* lb_policy,
Craig Tiller2400bf52017-02-09 16:25:19 -0800154 grpc_connectivity_state current_state);
Craig Tiller1ada6ad2015-07-16 16:19:14 -0700155
Yash Tibrewal8cf14702017-12-06 09:47:54 -0800156static void set_channel_connectivity_state_locked(channel_data* chand,
Craig Tiller8c0d96f2016-03-11 14:27:52 -0800157 grpc_connectivity_state state,
Craig Tillerbaa14a92017-11-03 09:09:36 -0700158 grpc_error* error,
159 const char* reason) {
David Garcia Quintas37251282017-04-14 13:46:03 -0700160 /* TODO: Improve failure handling:
161 * - Make it possible for policies to return GRPC_CHANNEL_TRANSIENT_FAILURE.
162 * - Hand over pending picks from old policies during the switch that happens
163 * when resolver provides an update. */
Craig Tiller4782d922017-11-10 09:53:21 -0800164 if (chand->lb_policy != nullptr) {
David Garcia Quintas956f7002017-04-13 15:40:06 -0700165 if (state == GRPC_CHANNEL_TRANSIENT_FAILURE) {
166 /* cancel picks with wait_for_ready=false */
Mark D. Rothc8875492018-02-20 08:33:48 -0800167 chand->lb_policy->CancelMatchingPicksLocked(
David Garcia Quintas956f7002017-04-13 15:40:06 -0700168 /* mask= */ GRPC_INITIAL_METADATA_WAIT_FOR_READY,
169 /* check= */ 0, GRPC_ERROR_REF(error));
170 } else if (state == GRPC_CHANNEL_SHUTDOWN) {
171 /* cancel all picks */
Mark D. Rothc8875492018-02-20 08:33:48 -0800172 chand->lb_policy->CancelMatchingPicksLocked(/* mask= */ 0, /* check= */ 0,
173 GRPC_ERROR_REF(error));
David Garcia Quintas956f7002017-04-13 15:40:06 -0700174 }
Craig Tiller8c0d96f2016-03-11 14:27:52 -0800175 }
Craig Tiller6014e8a2017-10-16 13:50:29 -0700176 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth60751fe2017-07-07 12:50:33 -0700177 gpr_log(GPR_DEBUG, "chand=%p: setting connectivity state to %s", chand,
178 grpc_connectivity_state_name(state));
179 }
Yash Tibrewal8cf14702017-12-06 09:47:54 -0800180 grpc_connectivity_state_set(&chand->state_tracker, state, error, reason);
Craig Tiller8c0d96f2016-03-11 14:27:52 -0800181}
182
Yash Tibrewal8cf14702017-12-06 09:47:54 -0800183static void on_lb_policy_state_changed_locked(void* arg, grpc_error* error) {
Noah Eisen4d20a662018-02-09 09:34:04 -0800184 lb_policy_connectivity_watcher* w =
185 static_cast<lb_policy_connectivity_watcher*>(arg);
Craig Tillerc5de8352017-02-09 14:08:05 -0800186 /* check if the notification is for the latest policy */
Mark D. Rothc8875492018-02-20 08:33:48 -0800187 if (w->lb_policy == w->chand->lb_policy.get()) {
Craig Tiller6014e8a2017-10-16 13:50:29 -0700188 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth60751fe2017-07-07 12:50:33 -0700189 gpr_log(GPR_DEBUG, "chand=%p: lb_policy=%p state changed to %s", w->chand,
190 w->lb_policy, grpc_connectivity_state_name(w->state));
191 }
Yash Tibrewal8cf14702017-12-06 09:47:54 -0800192 set_channel_connectivity_state_locked(w->chand, w->state,
Craig Tillerc5de8352017-02-09 14:08:05 -0800193 GRPC_ERROR_REF(error), "lb_changed");
194 if (w->state != GRPC_CHANNEL_SHUTDOWN) {
Yash Tibrewal8cf14702017-12-06 09:47:54 -0800195 watch_lb_policy_locked(w->chand, w->lb_policy, w->state);
Craig Tillerc5de8352017-02-09 14:08:05 -0800196 }
Craig Tillera82950e2015-09-22 12:33:20 -0700197 }
Yash Tibrewal8cf14702017-12-06 09:47:54 -0800198 GRPC_CHANNEL_STACK_UNREF(w->chand->owning_stack, "watch_lb_policy");
Craig Tillera82950e2015-09-22 12:33:20 -0700199 gpr_free(w);
Craig Tiller1ada6ad2015-07-16 16:19:14 -0700200}
201
Yash Tibrewal8cf14702017-12-06 09:47:54 -0800202static void watch_lb_policy_locked(channel_data* chand,
Mark D. Rothc8875492018-02-20 08:33:48 -0800203 grpc_core::LoadBalancingPolicy* lb_policy,
Craig Tiller2400bf52017-02-09 16:25:19 -0800204 grpc_connectivity_state current_state) {
Craig Tillerbaa14a92017-11-03 09:09:36 -0700205 lb_policy_connectivity_watcher* w =
Noah Eisenbe82e642018-02-09 09:16:55 -0800206 static_cast<lb_policy_connectivity_watcher*>(gpr_malloc(sizeof(*w)));
Craig Tiller906e3bc2015-11-24 07:31:31 -0800207 GRPC_CHANNEL_STACK_REF(chand->owning_stack, "watch_lb_policy");
Craig Tiller1ada6ad2015-07-16 16:19:14 -0700208 w->chand = chand;
ncteisen274bbbe2017-06-08 14:57:11 -0700209 GRPC_CLOSURE_INIT(&w->on_changed, on_lb_policy_state_changed_locked, w,
Craig Tilleree4b1452017-05-12 10:56:03 -0700210 grpc_combiner_scheduler(chand->combiner));
Craig Tiller1ada6ad2015-07-16 16:19:14 -0700211 w->state = current_state;
212 w->lb_policy = lb_policy;
Mark D. Rothc8875492018-02-20 08:33:48 -0800213 lb_policy->NotifyOnStateChangeLocked(&w->state, &w->on_changed);
Craig Tiller1ada6ad2015-07-16 16:19:14 -0700214}
215
Yash Tibrewal8cf14702017-12-06 09:47:54 -0800216static void start_resolving_locked(channel_data* chand) {
Craig Tiller6014e8a2017-10-16 13:50:29 -0700217 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth60751fe2017-07-07 12:50:33 -0700218 gpr_log(GPR_DEBUG, "chand=%p: starting name resolution", chand);
219 }
220 GPR_ASSERT(!chand->started_resolving);
221 chand->started_resolving = true;
222 GRPC_CHANNEL_STACK_REF(chand->owning_stack, "resolver");
Mark D. Roth209f6442018-02-08 10:26:46 -0800223 chand->resolver->NextLocked(&chand->resolver_result,
224 &chand->on_resolver_result_changed);
Mark D. Roth60751fe2017-07-07 12:50:33 -0700225}
226
Mark D. Rothd6d192d2017-02-23 08:58:42 -0800227typedef struct {
Craig Tillerbaa14a92017-11-03 09:09:36 -0700228 char* server_name;
Mark D. Roth9db86fc2018-03-28 07:42:20 -0700229 grpc_core::RefCountedPtr<ServerRetryThrottleData> retry_throttle_data;
Mark D. Rothd6d192d2017-02-23 08:58:42 -0800230} service_config_parsing_state;
231
Mark D. Roth3e7f2df2018-02-26 13:17:06 -0800232static void parse_retry_throttle_params(
233 const grpc_json* field, service_config_parsing_state* parsing_state) {
Mark D. Rothd6d192d2017-02-23 08:58:42 -0800234 if (strcmp(field->key, "retryThrottling") == 0) {
Craig Tiller4782d922017-11-10 09:53:21 -0800235 if (parsing_state->retry_throttle_data != nullptr) return; // Duplicate.
Mark D. Rothd6d192d2017-02-23 08:58:42 -0800236 if (field->type != GRPC_JSON_OBJECT) return;
237 int max_milli_tokens = 0;
238 int milli_token_ratio = 0;
Craig Tiller4782d922017-11-10 09:53:21 -0800239 for (grpc_json* sub_field = field->child; sub_field != nullptr;
Mark D. Rothd6d192d2017-02-23 08:58:42 -0800240 sub_field = sub_field->next) {
Craig Tiller4782d922017-11-10 09:53:21 -0800241 if (sub_field->key == nullptr) return;
Mark D. Rothd6d192d2017-02-23 08:58:42 -0800242 if (strcmp(sub_field->key, "maxTokens") == 0) {
243 if (max_milli_tokens != 0) return; // Duplicate.
244 if (sub_field->type != GRPC_JSON_NUMBER) return;
245 max_milli_tokens = gpr_parse_nonnegative_int(sub_field->value);
246 if (max_milli_tokens == -1) return;
247 max_milli_tokens *= 1000;
248 } else if (strcmp(sub_field->key, "tokenRatio") == 0) {
249 if (milli_token_ratio != 0) return; // Duplicate.
250 if (sub_field->type != GRPC_JSON_NUMBER) return;
251 // We support up to 3 decimal digits.
252 size_t whole_len = strlen(sub_field->value);
253 uint32_t multiplier = 1;
254 uint32_t decimal_value = 0;
Craig Tillerbaa14a92017-11-03 09:09:36 -0700255 const char* decimal_point = strchr(sub_field->value, '.');
Craig Tiller4782d922017-11-10 09:53:21 -0800256 if (decimal_point != nullptr) {
Noah Eisenbe82e642018-02-09 09:16:55 -0800257 whole_len = static_cast<size_t>(decimal_point - sub_field->value);
Mark D. Rothd6d192d2017-02-23 08:58:42 -0800258 multiplier = 1000;
259 size_t decimal_len = strlen(decimal_point + 1);
260 if (decimal_len > 3) decimal_len = 3;
261 if (!gpr_parse_bytes_to_uint32(decimal_point + 1, decimal_len,
262 &decimal_value)) {
263 return;
264 }
265 uint32_t decimal_multiplier = 1;
266 for (size_t i = 0; i < (3 - decimal_len); ++i) {
267 decimal_multiplier *= 10;
268 }
269 decimal_value *= decimal_multiplier;
270 }
271 uint32_t whole_value;
272 if (!gpr_parse_bytes_to_uint32(sub_field->value, whole_len,
273 &whole_value)) {
274 return;
275 }
Noah Eisen4d20a662018-02-09 09:34:04 -0800276 milli_token_ratio =
277 static_cast<int>((whole_value * multiplier) + decimal_value);
Mark D. Rothb3322562017-02-23 14:38:02 -0800278 if (milli_token_ratio <= 0) return;
Mark D. Rothd6d192d2017-02-23 08:58:42 -0800279 }
280 }
281 parsing_state->retry_throttle_data =
Mark D. Roth9db86fc2018-03-28 07:42:20 -0700282 grpc_core::internal::ServerRetryThrottleMap::GetDataForServer(
Mark D. Rothd6d192d2017-02-23 08:58:42 -0800283 parsing_state->server_name, max_milli_tokens, milli_token_ratio);
284 }
285}
286
Yash Tibrewal8cf14702017-12-06 09:47:54 -0800287static void request_reresolution_locked(void* arg, grpc_error* error) {
Noah Eisen4d20a662018-02-09 09:34:04 -0800288 reresolution_request_args* args =
289 static_cast<reresolution_request_args*>(arg);
Juanli Shen592cf342017-12-04 20:52:01 -0800290 channel_data* chand = args->chand;
291 // If this invocation is for a stale LB policy, treat it as an LB shutdown
292 // signal.
Mark D. Rothc8875492018-02-20 08:33:48 -0800293 if (args->lb_policy != chand->lb_policy.get() || error != GRPC_ERROR_NONE ||
Juanli Shen592cf342017-12-04 20:52:01 -0800294 chand->resolver == nullptr) {
Yash Tibrewal8cf14702017-12-06 09:47:54 -0800295 GRPC_CHANNEL_STACK_UNREF(chand->owning_stack, "re-resolution");
Juanli Shen592cf342017-12-04 20:52:01 -0800296 gpr_free(args);
297 return;
298 }
299 if (grpc_client_channel_trace.enabled()) {
300 gpr_log(GPR_DEBUG, "chand=%p: started name re-resolving", chand);
301 }
Mark D. Roth209f6442018-02-08 10:26:46 -0800302 chand->resolver->RequestReresolutionLocked();
Juanli Shen592cf342017-12-04 20:52:01 -0800303 // Give back the closure to the LB policy.
Mark D. Rothc8875492018-02-20 08:33:48 -0800304 chand->lb_policy->SetReresolutionClosureLocked(&args->closure);
Juanli Shen592cf342017-12-04 20:52:01 -0800305}
306
Mark D. Rothe63e06d2018-03-23 08:12:11 -0700307// TODO(roth): The logic in this function is very hard to follow. We
308// should refactor this so that it's easier to understand, perhaps as
309// part of changing the resolver API to more clearly differentiate
310// between transient failures and shutdown.
Yash Tibrewal8cf14702017-12-06 09:47:54 -0800311static void on_resolver_result_changed_locked(void* arg, grpc_error* error) {
Noah Eisenbe82e642018-02-09 09:16:55 -0800312 channel_data* chand = static_cast<channel_data*>(arg);
Craig Tiller6014e8a2017-10-16 13:50:29 -0700313 if (grpc_client_channel_trace.enabled()) {
Mark D. Rothe63e06d2018-03-23 08:12:11 -0700314 gpr_log(GPR_DEBUG,
315 "chand=%p: got resolver result: resolver_result=%p error=%s", chand,
316 chand->resolver_result, grpc_error_string(error));
Mark D. Roth60751fe2017-07-07 12:50:33 -0700317 }
Mark D. Roth718c8342018-02-28 13:00:04 -0800318 // Extract the following fields from the resolver result, if non-nullptr.
Mark D. Roth15494b52017-07-12 15:26:55 -0700319 bool lb_policy_updated = false;
Mark D. Rothc8875492018-02-20 08:33:48 -0800320 bool lb_policy_created = false;
Craig Tiller4782d922017-11-10 09:53:21 -0800321 char* lb_policy_name_dup = nullptr;
Mark D. Roth60751fe2017-07-07 12:50:33 -0700322 bool lb_policy_name_changed = false;
Mark D. Rothc8875492018-02-20 08:33:48 -0800323 grpc_core::OrphanablePtr<grpc_core::LoadBalancingPolicy> new_lb_policy;
Craig Tiller4782d922017-11-10 09:53:21 -0800324 char* service_config_json = nullptr;
Mark D. Roth9db86fc2018-03-28 07:42:20 -0700325 grpc_core::RefCountedPtr<ServerRetryThrottleData> retry_throttle_data;
Mark D. Roth3e7f2df2018-02-26 13:17:06 -0800326 grpc_core::RefCountedPtr<MethodParamsTable> method_params_table;
Craig Tiller4782d922017-11-10 09:53:21 -0800327 if (chand->resolver_result != nullptr) {
Juanli Shen592cf342017-12-04 20:52:01 -0800328 if (chand->resolver != nullptr) {
329 // Find LB policy name.
Juanli Shen592cf342017-12-04 20:52:01 -0800330 const grpc_arg* channel_arg = grpc_channel_args_find(
331 chand->resolver_result, GRPC_ARG_LB_POLICY_NAME);
ncteisenbf323a92018-02-14 17:34:05 -0800332 const char* lb_policy_name = grpc_channel_arg_get_string(channel_arg);
Juanli Shen592cf342017-12-04 20:52:01 -0800333 // Special case: If at least one balancer address is present, we use
334 // the grpclb policy, regardless of what the resolver actually specified.
335 channel_arg =
336 grpc_channel_args_find(chand->resolver_result, GRPC_ARG_LB_ADDRESSES);
337 if (channel_arg != nullptr && channel_arg->type == GRPC_ARG_POINTER) {
338 grpc_lb_addresses* addresses =
Noah Eisenbe82e642018-02-09 09:16:55 -0800339 static_cast<grpc_lb_addresses*>(channel_arg->value.pointer.p);
Juanli Shen592cf342017-12-04 20:52:01 -0800340 bool found_balancer_address = false;
341 for (size_t i = 0; i < addresses->num_addresses; ++i) {
342 if (addresses->addresses[i].is_balancer) {
343 found_balancer_address = true;
344 break;
345 }
346 }
347 if (found_balancer_address) {
348 if (lb_policy_name != nullptr &&
349 strcmp(lb_policy_name, "grpclb") != 0) {
350 gpr_log(GPR_INFO,
351 "resolver requested LB policy %s but provided at least one "
352 "balancer address -- forcing use of grpclb LB policy",
353 lb_policy_name);
354 }
355 lb_policy_name = "grpclb";
356 }
357 }
358 // Use pick_first if nothing was specified and we didn't select grpclb
359 // above.
360 if (lb_policy_name == nullptr) lb_policy_name = "pick_first";
Juanli Shen592cf342017-12-04 20:52:01 -0800361 // Check to see if we're already using the right LB policy.
362 // Note: It's safe to use chand->info_lb_policy_name here without
363 // taking a lock on chand->info_mu, because this function is the
364 // only thing that modifies its value, and it can only be invoked
365 // once at any given time.
366 lb_policy_name_changed =
367 chand->info_lb_policy_name == nullptr ||
368 gpr_stricmp(chand->info_lb_policy_name, lb_policy_name) != 0;
369 if (chand->lb_policy != nullptr && !lb_policy_name_changed) {
370 // Continue using the same LB policy. Update with new addresses.
371 lb_policy_updated = true;
Mark D. Rothc8875492018-02-20 08:33:48 -0800372 chand->lb_policy->UpdateLocked(*chand->resolver_result);
Juanli Shen592cf342017-12-04 20:52:01 -0800373 } else {
374 // Instantiate new LB policy.
Mark D. Rothc8875492018-02-20 08:33:48 -0800375 grpc_core::LoadBalancingPolicy::Args lb_policy_args;
376 lb_policy_args.combiner = chand->combiner;
377 lb_policy_args.client_channel_factory = chand->client_channel_factory;
378 lb_policy_args.args = chand->resolver_result;
379 new_lb_policy =
380 grpc_core::LoadBalancingPolicyRegistry::CreateLoadBalancingPolicy(
381 lb_policy_name, lb_policy_args);
Juanli Shen592cf342017-12-04 20:52:01 -0800382 if (new_lb_policy == nullptr) {
383 gpr_log(GPR_ERROR, "could not create LB policy \"%s\"",
384 lb_policy_name);
385 } else {
Mark D. Roth3ef4af22018-02-21 07:53:26 -0800386 lb_policy_created = true;
Juanli Shen592cf342017-12-04 20:52:01 -0800387 reresolution_request_args* args =
Noah Eisen4d20a662018-02-09 09:34:04 -0800388 static_cast<reresolution_request_args*>(
389 gpr_zalloc(sizeof(*args)));
Juanli Shen592cf342017-12-04 20:52:01 -0800390 args->chand = chand;
Mark D. Rothc8875492018-02-20 08:33:48 -0800391 args->lb_policy = new_lb_policy.get();
Juanli Shen592cf342017-12-04 20:52:01 -0800392 GRPC_CLOSURE_INIT(&args->closure, request_reresolution_locked, args,
393 grpc_combiner_scheduler(chand->combiner));
394 GRPC_CHANNEL_STACK_REF(chand->owning_stack, "re-resolution");
Mark D. Rothc8875492018-02-20 08:33:48 -0800395 new_lb_policy->SetReresolutionClosureLocked(&args->closure);
Juanli Shen592cf342017-12-04 20:52:01 -0800396 }
397 }
Mark D. Roth718c8342018-02-28 13:00:04 -0800398 // Before we clean up, save a copy of lb_policy_name, since it might
399 // be pointing to data inside chand->resolver_result.
400 // The copy will be saved in chand->lb_policy_name below.
401 lb_policy_name_dup = gpr_strdup(lb_policy_name);
Juanli Shen592cf342017-12-04 20:52:01 -0800402 // Find service config.
403 channel_arg = grpc_channel_args_find(chand->resolver_result,
404 GRPC_ARG_SERVICE_CONFIG);
ncteisenbf323a92018-02-14 17:34:05 -0800405 service_config_json =
406 gpr_strdup(grpc_channel_arg_get_string(channel_arg));
407 if (service_config_json != nullptr) {
Mark D. Roth3e7f2df2018-02-26 13:17:06 -0800408 grpc_core::UniquePtr<grpc_core::ServiceConfig> service_config =
409 grpc_core::ServiceConfig::Create(service_config_json);
Juanli Shen592cf342017-12-04 20:52:01 -0800410 if (service_config != nullptr) {
Mark D. Roth718c8342018-02-28 13:00:04 -0800411 if (chand->enable_retries) {
412 channel_arg = grpc_channel_args_find(chand->resolver_result,
413 GRPC_ARG_SERVER_URI);
414 const char* server_uri = grpc_channel_arg_get_string(channel_arg);
415 GPR_ASSERT(server_uri != nullptr);
416 grpc_uri* uri = grpc_uri_parse(server_uri, true);
417 GPR_ASSERT(uri->path[0] != '\0');
418 service_config_parsing_state parsing_state;
419 memset(&parsing_state, 0, sizeof(parsing_state));
420 parsing_state.server_name =
421 uri->path[0] == '/' ? uri->path + 1 : uri->path;
422 service_config->ParseGlobalParams(parse_retry_throttle_params,
423 &parsing_state);
424 grpc_uri_destroy(uri);
Mark D. Roth9db86fc2018-03-28 07:42:20 -0700425 retry_throttle_data = std::move(parsing_state.retry_throttle_data);
Mark D. Roth718c8342018-02-28 13:00:04 -0800426 }
Mark D. Roth3e7f2df2018-02-26 13:17:06 -0800427 method_params_table = service_config->CreateMethodConfigTable(
428 ClientChannelMethodParams::CreateFromJson);
Juanli Shen592cf342017-12-04 20:52:01 -0800429 }
430 }
Mark D. Roth9fe284e2016-09-12 11:22:27 -0700431 }
Craig Tillera82950e2015-09-22 12:33:20 -0700432 }
Craig Tiller6014e8a2017-10-16 13:50:29 -0700433 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth60751fe2017-07-07 12:50:33 -0700434 gpr_log(GPR_DEBUG,
435 "chand=%p: resolver result: lb_policy_name=\"%s\"%s, "
436 "service_config=\"%s\"",
Yash Tibrewal9eb86722017-09-17 23:43:30 -0700437 chand, lb_policy_name_dup,
438 lb_policy_name_changed ? " (changed)" : "", service_config_json);
Mark D. Roth60751fe2017-07-07 12:50:33 -0700439 }
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700440 // Now swap out fields in chand. Note that the new values may still
Mark D. Roth718c8342018-02-28 13:00:04 -0800441 // be nullptr if (e.g.) the resolver failed to return results or the
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700442 // results did not contain the necessary data.
443 //
444 // First, swap out the data used by cc_get_channel_info().
Craig Tiller613dafa2017-02-09 12:00:43 -0800445 gpr_mu_lock(&chand->info_mu);
Craig Tiller4782d922017-11-10 09:53:21 -0800446 if (lb_policy_name_dup != nullptr) {
Craig Tiller613dafa2017-02-09 12:00:43 -0800447 gpr_free(chand->info_lb_policy_name);
Yash Tibrewal9eb86722017-09-17 23:43:30 -0700448 chand->info_lb_policy_name = lb_policy_name_dup;
Mark D. Rothb2d24882016-10-27 15:44:07 -0700449 }
Craig Tiller4782d922017-11-10 09:53:21 -0800450 if (service_config_json != nullptr) {
Craig Tiller613dafa2017-02-09 12:00:43 -0800451 gpr_free(chand->info_service_config_json);
452 chand->info_service_config_json = service_config_json;
Mark D. Rothc625c7a2016-11-09 14:12:37 -0800453 }
Craig Tiller613dafa2017-02-09 12:00:43 -0800454 gpr_mu_unlock(&chand->info_mu);
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700455 // Swap out the retry throttle data.
Mark D. Roth9db86fc2018-03-28 07:42:20 -0700456 chand->retry_throttle_data = std::move(retry_throttle_data);
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700457 // Swap out the method params table.
Mark D. Roth3e7f2df2018-02-26 13:17:06 -0800458 chand->method_params_table = std::move(method_params_table);
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700459 // If we have a new LB policy or are shutting down (in which case
Mark D. Roth718c8342018-02-28 13:00:04 -0800460 // new_lb_policy will be nullptr), swap out the LB policy, unreffing the
461 // old one and removing its fds from chand->interested_parties.
462 // Note that we do NOT do this if either (a) we updated the existing
463 // LB policy above or (b) we failed to create the new LB policy (in
464 // which case we want to continue using the most recent one we had).
Craig Tiller4782d922017-11-10 09:53:21 -0800465 if (new_lb_policy != nullptr || error != GRPC_ERROR_NONE ||
466 chand->resolver == nullptr) {
467 if (chand->lb_policy != nullptr) {
Craig Tiller6014e8a2017-10-16 13:50:29 -0700468 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth60751fe2017-07-07 12:50:33 -0700469 gpr_log(GPR_DEBUG, "chand=%p: unreffing lb_policy=%p", chand,
Mark D. Rothc8875492018-02-20 08:33:48 -0800470 chand->lb_policy.get());
Mark D. Roth60751fe2017-07-07 12:50:33 -0700471 }
Mark D. Rothc8875492018-02-20 08:33:48 -0800472 grpc_pollset_set_del_pollset_set(chand->lb_policy->interested_parties(),
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700473 chand->interested_parties);
Mark D. Rothc8875492018-02-20 08:33:48 -0800474 chand->lb_policy->HandOffPendingPicksLocked(new_lb_policy.get());
475 chand->lb_policy.reset();
Craig Tiller45724b32015-09-22 10:42:19 -0700476 }
Mark D. Rothc8875492018-02-20 08:33:48 -0800477 chand->lb_policy = std::move(new_lb_policy);
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700478 }
479 // Now that we've swapped out the relevant fields of chand, check for
480 // error or shutdown.
Craig Tiller4782d922017-11-10 09:53:21 -0800481 if (error != GRPC_ERROR_NONE || chand->resolver == nullptr) {
Craig Tiller6014e8a2017-10-16 13:50:29 -0700482 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth60751fe2017-07-07 12:50:33 -0700483 gpr_log(GPR_DEBUG, "chand=%p: shutting down", chand);
484 }
Craig Tiller4782d922017-11-10 09:53:21 -0800485 if (chand->resolver != nullptr) {
Craig Tiller6014e8a2017-10-16 13:50:29 -0700486 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth60751fe2017-07-07 12:50:33 -0700487 gpr_log(GPR_DEBUG, "chand=%p: shutting down resolver", chand);
488 }
Mark D. Roth209f6442018-02-08 10:26:46 -0800489 chand->resolver.reset();
Craig Tiller76a5c0e2016-03-09 09:05:30 -0800490 }
Craig Tiller8c0d96f2016-03-11 14:27:52 -0800491 set_channel_connectivity_state_locked(
Yash Tibrewal8cf14702017-12-06 09:47:54 -0800492 chand, GRPC_CHANNEL_SHUTDOWN,
ncteisen4b36a3d2017-03-13 19:08:06 -0700493 GRPC_ERROR_CREATE_REFERENCING_FROM_STATIC_STRING(
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700494 "Got resolver result after disconnection", &error, 1),
Craig Tiller804ff712016-05-05 16:25:40 -0700495 "resolver_gone");
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700496 grpc_closure_list_fail_all(&chand->waiting_for_resolver_result_closures,
497 GRPC_ERROR_CREATE_REFERENCING_FROM_STATIC_STRING(
498 "Channel disconnected", &error, 1));
Yash Tibrewal8cf14702017-12-06 09:47:54 -0800499 GRPC_CLOSURE_LIST_SCHED(&chand->waiting_for_resolver_result_closures);
Mark D. Roth1b95f472018-02-15 12:54:02 -0800500 GRPC_CHANNEL_STACK_UNREF(chand->owning_stack, "resolver");
Mark D. Rothe63e06d2018-03-23 08:12:11 -0700501 grpc_channel_args_destroy(chand->resolver_result);
502 chand->resolver_result = nullptr;
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700503 } else { // Not shutting down.
504 grpc_connectivity_state state = GRPC_CHANNEL_TRANSIENT_FAILURE;
Craig Tillerbaa14a92017-11-03 09:09:36 -0700505 grpc_error* state_error =
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700506 GRPC_ERROR_CREATE_FROM_STATIC_STRING("No load balancing policy");
Mark D. Rothc8875492018-02-20 08:33:48 -0800507 if (lb_policy_created) {
Craig Tiller6014e8a2017-10-16 13:50:29 -0700508 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth60751fe2017-07-07 12:50:33 -0700509 gpr_log(GPR_DEBUG, "chand=%p: initializing new LB policy", chand);
510 }
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700511 GRPC_ERROR_UNREF(state_error);
Mark D. Rothc8875492018-02-20 08:33:48 -0800512 state = chand->lb_policy->CheckConnectivityLocked(&state_error);
513 grpc_pollset_set_add_pollset_set(chand->lb_policy->interested_parties(),
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700514 chand->interested_parties);
Yash Tibrewal8cf14702017-12-06 09:47:54 -0800515 GRPC_CLOSURE_LIST_SCHED(&chand->waiting_for_resolver_result_closures);
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700516 if (chand->exit_idle_when_lb_policy_arrives) {
Mark D. Rothc8875492018-02-20 08:33:48 -0800517 chand->lb_policy->ExitIdleLocked();
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700518 chand->exit_idle_when_lb_policy_arrives = false;
519 }
Mark D. Rothc8875492018-02-20 08:33:48 -0800520 watch_lb_policy_locked(chand, chand->lb_policy.get(), state);
Mark D. Rothe63e06d2018-03-23 08:12:11 -0700521 } else if (chand->resolver_result == nullptr) {
522 // Transient failure.
523 GRPC_CLOSURE_LIST_SCHED(&chand->waiting_for_resolver_result_closures);
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700524 }
Mark D. Roth15494b52017-07-12 15:26:55 -0700525 if (!lb_policy_updated) {
Yash Tibrewal8cf14702017-12-06 09:47:54 -0800526 set_channel_connectivity_state_locked(
527 chand, state, GRPC_ERROR_REF(state_error), "new_lb+resolver");
Mark D. Roth15494b52017-07-12 15:26:55 -0700528 }
Mark D. Rothe63e06d2018-03-23 08:12:11 -0700529 grpc_channel_args_destroy(chand->resolver_result);
530 chand->resolver_result = nullptr;
Mark D. Roth209f6442018-02-08 10:26:46 -0800531 chand->resolver->NextLocked(&chand->resolver_result,
532 &chand->on_resolver_result_changed);
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700533 GRPC_ERROR_UNREF(state_error);
Craig Tillera82950e2015-09-22 12:33:20 -0700534 }
Craig Tiller3f475422015-06-25 10:43:05 -0700535}
536
Yash Tibrewal8cf14702017-12-06 09:47:54 -0800537static void start_transport_op_locked(void* arg, grpc_error* error_ignored) {
Noah Eisenbe82e642018-02-09 09:16:55 -0800538 grpc_transport_op* op = static_cast<grpc_transport_op*>(arg);
Craig Tillerbaa14a92017-11-03 09:09:36 -0700539 grpc_channel_element* elem =
Noah Eisenbe82e642018-02-09 09:16:55 -0800540 static_cast<grpc_channel_element*>(op->handler_private.extra_arg);
541 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
Craig Tiller000cd8f2015-09-18 07:20:29 -0700542
Craig Tiller4782d922017-11-10 09:53:21 -0800543 if (op->on_connectivity_state_change != nullptr) {
Craig Tillera82950e2015-09-22 12:33:20 -0700544 grpc_connectivity_state_notify_on_state_change(
Yash Tibrewal8cf14702017-12-06 09:47:54 -0800545 &chand->state_tracker, op->connectivity_state,
Craig Tillera82950e2015-09-22 12:33:20 -0700546 op->on_connectivity_state_change);
Craig Tiller4782d922017-11-10 09:53:21 -0800547 op->on_connectivity_state_change = nullptr;
548 op->connectivity_state = nullptr;
Craig Tillera82950e2015-09-22 12:33:20 -0700549 }
550
Yuchen Zengc272dd72017-12-05 12:18:34 -0800551 if (op->send_ping.on_initiate != nullptr || op->send_ping.on_ack != nullptr) {
Craig Tiller4782d922017-11-10 09:53:21 -0800552 if (chand->lb_policy == nullptr) {
ncteisen274bbbe2017-06-08 14:57:11 -0700553 GRPC_CLOSURE_SCHED(
Yash Tibrewald6c292f2017-12-07 19:38:43 -0800554 op->send_ping.on_initiate,
Yuchen Zengc272dd72017-12-05 12:18:34 -0800555 GRPC_ERROR_CREATE_FROM_STATIC_STRING("Ping with no load balancing"));
556 GRPC_CLOSURE_SCHED(
Yash Tibrewald6c292f2017-12-07 19:38:43 -0800557 op->send_ping.on_ack,
ncteisen4b36a3d2017-03-13 19:08:06 -0700558 GRPC_ERROR_CREATE_FROM_STATIC_STRING("Ping with no load balancing"));
Craig Tiller26dab312015-12-07 14:43:47 -0800559 } else {
Mark D. Rothc8875492018-02-20 08:33:48 -0800560 chand->lb_policy->PingOneLocked(op->send_ping.on_initiate,
561 op->send_ping.on_ack);
Craig Tiller4782d922017-11-10 09:53:21 -0800562 op->bind_pollset = nullptr;
Craig Tiller26dab312015-12-07 14:43:47 -0800563 }
Yuchen Zengc272dd72017-12-05 12:18:34 -0800564 op->send_ping.on_initiate = nullptr;
565 op->send_ping.on_ack = nullptr;
Craig Tiller26dab312015-12-07 14:43:47 -0800566 }
567
Craig Tiller1c51edc2016-05-07 16:18:43 -0700568 if (op->disconnect_with_error != GRPC_ERROR_NONE) {
Craig Tiller4782d922017-11-10 09:53:21 -0800569 if (chand->resolver != nullptr) {
Craig Tiller1c51edc2016-05-07 16:18:43 -0700570 set_channel_connectivity_state_locked(
Yash Tibrewal8cf14702017-12-06 09:47:54 -0800571 chand, GRPC_CHANNEL_SHUTDOWN,
Craig Tiller1c51edc2016-05-07 16:18:43 -0700572 GRPC_ERROR_REF(op->disconnect_with_error), "disconnect");
Mark D. Roth209f6442018-02-08 10:26:46 -0800573 chand->resolver.reset();
Craig Tiller1c51edc2016-05-07 16:18:43 -0700574 if (!chand->started_resolving) {
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700575 grpc_closure_list_fail_all(&chand->waiting_for_resolver_result_closures,
Craig Tiller1c51edc2016-05-07 16:18:43 -0700576 GRPC_ERROR_REF(op->disconnect_with_error));
Yash Tibrewal8cf14702017-12-06 09:47:54 -0800577 GRPC_CLOSURE_LIST_SCHED(&chand->waiting_for_resolver_result_closures);
Craig Tiller1c51edc2016-05-07 16:18:43 -0700578 }
Craig Tiller4782d922017-11-10 09:53:21 -0800579 if (chand->lb_policy != nullptr) {
Mark D. Rothc8875492018-02-20 08:33:48 -0800580 grpc_pollset_set_del_pollset_set(chand->lb_policy->interested_parties(),
Craig Tiller1c51edc2016-05-07 16:18:43 -0700581 chand->interested_parties);
Mark D. Rothc8875492018-02-20 08:33:48 -0800582 chand->lb_policy.reset();
Craig Tiller1c51edc2016-05-07 16:18:43 -0700583 }
Craig Tillerb12d22a2016-04-23 12:50:21 -0700584 }
Craig Tiller1c51edc2016-05-07 16:18:43 -0700585 GRPC_ERROR_UNREF(op->disconnect_with_error);
Craig Tillera82950e2015-09-22 12:33:20 -0700586 }
Yash Tibrewal8cf14702017-12-06 09:47:54 -0800587 GRPC_CHANNEL_STACK_UNREF(chand->owning_stack, "start_transport_op");
Craig Tillerd2e5cfc2017-02-09 13:02:20 -0800588
Yash Tibrewal8cf14702017-12-06 09:47:54 -0800589 GRPC_CLOSURE_SCHED(op->on_consumed, GRPC_ERROR_NONE);
Craig Tillerbefafe62017-02-09 11:30:54 -0800590}
591
Yash Tibrewal8cf14702017-12-06 09:47:54 -0800592static void cc_start_transport_op(grpc_channel_element* elem,
Craig Tillerbaa14a92017-11-03 09:09:36 -0700593 grpc_transport_op* op) {
Noah Eisenbe82e642018-02-09 09:16:55 -0800594 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
Craig Tillerbefafe62017-02-09 11:30:54 -0800595
Craig Tillerbefafe62017-02-09 11:30:54 -0800596 GPR_ASSERT(op->set_accept_stream == false);
Craig Tiller4782d922017-11-10 09:53:21 -0800597 if (op->bind_pollset != nullptr) {
Yash Tibrewal8cf14702017-12-06 09:47:54 -0800598 grpc_pollset_set_add_pollset(chand->interested_parties, op->bind_pollset);
Craig Tillerbefafe62017-02-09 11:30:54 -0800599 }
600
Craig Tillerc55c1022017-03-10 10:26:42 -0800601 op->handler_private.extra_arg = elem;
Craig Tillerd2e5cfc2017-02-09 13:02:20 -0800602 GRPC_CHANNEL_STACK_REF(chand->owning_stack, "start_transport_op");
ncteisen274bbbe2017-06-08 14:57:11 -0700603 GRPC_CLOSURE_SCHED(
ncteisen274bbbe2017-06-08 14:57:11 -0700604 GRPC_CLOSURE_INIT(&op->handler_private.closure, start_transport_op_locked,
Craig Tilleree4b1452017-05-12 10:56:03 -0700605 op, grpc_combiner_scheduler(chand->combiner)),
Craig Tillerbefafe62017-02-09 11:30:54 -0800606 GRPC_ERROR_NONE);
Craig Tillerca3e9d32015-06-27 18:37:27 -0700607}
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800608
Yash Tibrewal8cf14702017-12-06 09:47:54 -0800609static void cc_get_channel_info(grpc_channel_element* elem,
Craig Tillerbaa14a92017-11-03 09:09:36 -0700610 const grpc_channel_info* info) {
Noah Eisenbe82e642018-02-09 09:16:55 -0800611 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
Craig Tiller613dafa2017-02-09 12:00:43 -0800612 gpr_mu_lock(&chand->info_mu);
Craig Tiller4782d922017-11-10 09:53:21 -0800613 if (info->lb_policy_name != nullptr) {
614 *info->lb_policy_name = chand->info_lb_policy_name == nullptr
615 ? nullptr
Craig Tiller613dafa2017-02-09 12:00:43 -0800616 : gpr_strdup(chand->info_lb_policy_name);
Mark D. Rothb2d24882016-10-27 15:44:07 -0700617 }
Craig Tiller4782d922017-11-10 09:53:21 -0800618 if (info->service_config_json != nullptr) {
Craig Tiller613dafa2017-02-09 12:00:43 -0800619 *info->service_config_json =
Craig Tiller4782d922017-11-10 09:53:21 -0800620 chand->info_service_config_json == nullptr
621 ? nullptr
Craig Tiller613dafa2017-02-09 12:00:43 -0800622 : gpr_strdup(chand->info_service_config_json);
Mark D. Rothc625c7a2016-11-09 14:12:37 -0800623 }
Craig Tiller613dafa2017-02-09 12:00:43 -0800624 gpr_mu_unlock(&chand->info_mu);
Mark D. Rothb2d24882016-10-27 15:44:07 -0700625}
626
Mark D. Roth2a5959f2016-09-01 08:20:27 -0700627/* Constructor for channel_data */
Yash Tibrewal8cf14702017-12-06 09:47:54 -0800628static grpc_error* cc_init_channel_elem(grpc_channel_element* elem,
Craig Tillerbaa14a92017-11-03 09:09:36 -0700629 grpc_channel_element_args* args) {
Noah Eisenbe82e642018-02-09 09:16:55 -0800630 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
Mark D. Roth2a5959f2016-09-01 08:20:27 -0700631 GPR_ASSERT(args->is_last);
632 GPR_ASSERT(elem->filter == &grpc_client_channel_filter);
Mark D. Roth21d4b2d2016-11-18 09:53:41 -0800633 // Initialize data members.
Craig Tilleree4b1452017-05-12 10:56:03 -0700634 chand->combiner = grpc_combiner_create();
Craig Tillerd85477512017-02-09 12:02:39 -0800635 gpr_mu_init(&chand->info_mu);
Alexander Polcync3b1f182017-04-18 13:51:36 -0700636 gpr_mu_init(&chand->external_connectivity_watcher_list_mu);
637
638 gpr_mu_lock(&chand->external_connectivity_watcher_list_mu);
Craig Tiller4782d922017-11-10 09:53:21 -0800639 chand->external_connectivity_watcher_list_head = nullptr;
Alexander Polcync3b1f182017-04-18 13:51:36 -0700640 gpr_mu_unlock(&chand->external_connectivity_watcher_list_mu);
641
Mark D. Roth21d4b2d2016-11-18 09:53:41 -0800642 chand->owning_stack = args->channel_stack;
ncteisen274bbbe2017-06-08 14:57:11 -0700643 GRPC_CLOSURE_INIT(&chand->on_resolver_result_changed,
Craig Tillerbefafe62017-02-09 11:30:54 -0800644 on_resolver_result_changed_locked, chand,
Craig Tilleree4b1452017-05-12 10:56:03 -0700645 grpc_combiner_scheduler(chand->combiner));
Mark D. Roth21d4b2d2016-11-18 09:53:41 -0800646 chand->interested_parties = grpc_pollset_set_create();
Mark D. Roth2a5959f2016-09-01 08:20:27 -0700647 grpc_connectivity_state_init(&chand->state_tracker, GRPC_CHANNEL_IDLE,
648 "client_channel");
Yash Tibrewal8cf14702017-12-06 09:47:54 -0800649 grpc_client_channel_start_backup_polling(chand->interested_parties);
Mark D. Roth718c8342018-02-28 13:00:04 -0800650 // Record max per-RPC retry buffer size.
651 const grpc_arg* arg = grpc_channel_args_find(
652 args->channel_args, GRPC_ARG_PER_RPC_RETRY_BUFFER_SIZE);
653 chand->per_rpc_retry_buffer_size = (size_t)grpc_channel_arg_get_integer(
654 arg, {DEFAULT_PER_RPC_RETRY_BUFFER_SIZE, 0, INT_MAX});
655 // Record enable_retries.
656 arg = grpc_channel_args_find(args->channel_args, GRPC_ARG_ENABLE_RETRIES);
657 chand->enable_retries = grpc_channel_arg_get_bool(arg, true);
Mark D. Roth21d4b2d2016-11-18 09:53:41 -0800658 // Record client channel factory.
Mark D. Roth718c8342018-02-28 13:00:04 -0800659 arg = grpc_channel_args_find(args->channel_args,
660 GRPC_ARG_CLIENT_CHANNEL_FACTORY);
Craig Tiller4782d922017-11-10 09:53:21 -0800661 if (arg == nullptr) {
David Garcia Quintas228a5142017-03-30 19:43:00 -0700662 return GRPC_ERROR_CREATE_FROM_STATIC_STRING(
663 "Missing client channel factory in args for client channel filter");
664 }
665 if (arg->type != GRPC_ARG_POINTER) {
666 return GRPC_ERROR_CREATE_FROM_STATIC_STRING(
667 "client channel factory arg must be a pointer");
668 }
Yash Tibrewalbc130da2017-09-12 22:44:08 -0700669 grpc_client_channel_factory_ref(
Noah Eisenbe82e642018-02-09 09:16:55 -0800670 static_cast<grpc_client_channel_factory*>(arg->value.pointer.p));
Yash Tibrewalca3c1c02017-09-07 22:47:16 -0700671 chand->client_channel_factory =
Noah Eisenbe82e642018-02-09 09:16:55 -0800672 static_cast<grpc_client_channel_factory*>(arg->value.pointer.p);
Mark D. Rothdc9bee72017-02-07 12:29:14 -0800673 // Get server name to resolve, using proxy mapper if needed.
Mark D. Roth86e90592016-11-18 09:56:40 -0800674 arg = grpc_channel_args_find(args->channel_args, GRPC_ARG_SERVER_URI);
Craig Tiller4782d922017-11-10 09:53:21 -0800675 if (arg == nullptr) {
David Garcia Quintas228a5142017-03-30 19:43:00 -0700676 return GRPC_ERROR_CREATE_FROM_STATIC_STRING(
677 "Missing server uri in args for client channel filter");
678 }
679 if (arg->type != GRPC_ARG_STRING) {
680 return GRPC_ERROR_CREATE_FROM_STATIC_STRING(
681 "server uri arg must be a string");
682 }
Craig Tiller4782d922017-11-10 09:53:21 -0800683 char* proxy_name = nullptr;
684 grpc_channel_args* new_args = nullptr;
Yash Tibrewal8cf14702017-12-06 09:47:54 -0800685 grpc_proxy_mappers_map_name(arg->value.string, args->channel_args,
Mark D. Rothdc9bee72017-02-07 12:29:14 -0800686 &proxy_name, &new_args);
687 // Instantiate resolver.
Mark D. Roth209f6442018-02-08 10:26:46 -0800688 chand->resolver = grpc_core::ResolverRegistry::CreateResolver(
Yash Tibrewal8cf14702017-12-06 09:47:54 -0800689 proxy_name != nullptr ? proxy_name : arg->value.string,
Craig Tiller4782d922017-11-10 09:53:21 -0800690 new_args != nullptr ? new_args : args->channel_args,
Craig Tiller972470b2017-02-09 15:05:36 -0800691 chand->interested_parties, chand->combiner);
Craig Tiller4782d922017-11-10 09:53:21 -0800692 if (proxy_name != nullptr) gpr_free(proxy_name);
Yash Tibrewal8cf14702017-12-06 09:47:54 -0800693 if (new_args != nullptr) grpc_channel_args_destroy(new_args);
Craig Tiller4782d922017-11-10 09:53:21 -0800694 if (chand->resolver == nullptr) {
ncteisen4b36a3d2017-03-13 19:08:06 -0700695 return GRPC_ERROR_CREATE_FROM_STATIC_STRING("resolver creation failed");
Mark D. Roth5e2566e2016-11-18 10:53:13 -0800696 }
Craig Tiller3be7dd02017-04-03 14:30:03 -0700697 chand->deadline_checking_enabled =
698 grpc_deadline_checking_enabled(args->channel_args);
Mark D. Roth5e2566e2016-11-18 10:53:13 -0800699 return GRPC_ERROR_NONE;
Mark D. Roth2a5959f2016-09-01 08:20:27 -0700700}
701
Yash Tibrewal8cf14702017-12-06 09:47:54 -0800702static void shutdown_resolver_locked(void* arg, grpc_error* error) {
Mark D. Roth209f6442018-02-08 10:26:46 -0800703 grpc_core::Resolver* resolver = static_cast<grpc_core::Resolver*>(arg);
704 resolver->Orphan();
Craig Tiller972470b2017-02-09 15:05:36 -0800705}
706
Mark D. Roth2a5959f2016-09-01 08:20:27 -0700707/* Destructor for channel_data */
Yash Tibrewal8cf14702017-12-06 09:47:54 -0800708static void cc_destroy_channel_elem(grpc_channel_element* elem) {
Noah Eisenbe82e642018-02-09 09:16:55 -0800709 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
Craig Tiller4782d922017-11-10 09:53:21 -0800710 if (chand->resolver != nullptr) {
ncteisen274bbbe2017-06-08 14:57:11 -0700711 GRPC_CLOSURE_SCHED(
Mark D. Roth209f6442018-02-08 10:26:46 -0800712 GRPC_CLOSURE_CREATE(shutdown_resolver_locked, chand->resolver.release(),
Yash Tibrewal0ee75742017-10-13 16:07:13 -0700713 grpc_combiner_scheduler(chand->combiner)),
Craig Tiller972470b2017-02-09 15:05:36 -0800714 GRPC_ERROR_NONE);
Mark D. Roth2a5959f2016-09-01 08:20:27 -0700715 }
Craig Tiller4782d922017-11-10 09:53:21 -0800716 if (chand->client_channel_factory != nullptr) {
Yash Tibrewal8cf14702017-12-06 09:47:54 -0800717 grpc_client_channel_factory_unref(chand->client_channel_factory);
Mark D. Roth0e48a9a2016-09-08 14:14:39 -0700718 }
Craig Tiller4782d922017-11-10 09:53:21 -0800719 if (chand->lb_policy != nullptr) {
Mark D. Rothc8875492018-02-20 08:33:48 -0800720 grpc_pollset_set_del_pollset_set(chand->lb_policy->interested_parties(),
Mark D. Roth2a5959f2016-09-01 08:20:27 -0700721 chand->interested_parties);
Mark D. Rothc8875492018-02-20 08:33:48 -0800722 chand->lb_policy.reset();
Mark D. Roth2a5959f2016-09-01 08:20:27 -0700723 }
Craig Tiller613dafa2017-02-09 12:00:43 -0800724 gpr_free(chand->info_lb_policy_name);
725 gpr_free(chand->info_service_config_json);
Mark D. Roth9db86fc2018-03-28 07:42:20 -0700726 chand->retry_throttle_data.reset();
727 chand->method_params_table.reset();
Yash Tibrewal8cf14702017-12-06 09:47:54 -0800728 grpc_client_channel_stop_backup_polling(chand->interested_parties);
729 grpc_connectivity_state_destroy(&chand->state_tracker);
730 grpc_pollset_set_destroy(chand->interested_parties);
731 GRPC_COMBINER_UNREF(chand->combiner, "client_channel");
Craig Tillerd85477512017-02-09 12:02:39 -0800732 gpr_mu_destroy(&chand->info_mu);
Alexander Polcync3b1f182017-04-18 13:51:36 -0700733 gpr_mu_destroy(&chand->external_connectivity_watcher_list_mu);
Mark D. Roth2a5959f2016-09-01 08:20:27 -0700734}
735
736/*************************************************************************
737 * PER-CALL FUNCTIONS
738 */
739
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700740// Max number of batches that can be pending on a call at any given
Mark D. Roth718c8342018-02-28 13:00:04 -0800741// time. This includes one batch for each of the following ops:
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700742// recv_initial_metadata
743// send_initial_metadata
744// recv_message
745// send_message
746// recv_trailing_metadata
747// send_trailing_metadata
Mark D. Roth718c8342018-02-28 13:00:04 -0800748#define MAX_PENDING_BATCHES 6
749
750// Retry support:
751//
752// In order to support retries, we act as a proxy for stream op batches.
753// When we get a batch from the surface, we add it to our list of pending
754// batches, and we then use those batches to construct separate "child"
755// batches to be started on the subchannel call. When the child batches
756// return, we then decide which pending batches have been completed and
757// schedule their callbacks accordingly. If a subchannel call fails and
758// we want to retry it, we do a new pick and start again, constructing
759// new "child" batches for the new subchannel call.
760//
761// Note that retries are committed when receiving data from the server
762// (except for Trailers-Only responses). However, there may be many
763// send ops started before receiving any data, so we may have already
764// completed some number of send ops (and returned the completions up to
765// the surface) by the time we realize that we need to retry. To deal
766// with this, we cache data for send ops, so that we can replay them on a
767// different subchannel call even after we have completed the original
768// batches.
769//
770// There are two sets of data to maintain:
771// - In call_data (in the parent channel), we maintain a list of pending
772// ops and cached data for send ops.
773// - In the subchannel call, we maintain state to indicate what ops have
774// already been sent down to that call.
775//
776// When constructing the "child" batches, we compare those two sets of
777// data to see which batches need to be sent to the subchannel call.
778
779// TODO(roth): In subsequent PRs:
780// - add support for transparent retries (including initial metadata)
781// - figure out how to record stats in census for retries
782// (census filter is on top of this one)
783// - add census stats for retries
784
785// State used for starting a retryable batch on a subchannel call.
786// This provides its own grpc_transport_stream_op_batch and other data
787// structures needed to populate the ops in the batch.
788// We allocate one struct on the arena for each attempt at starting a
789// batch on a given subchannel call.
790typedef struct {
791 gpr_refcount refs;
792 grpc_call_element* elem;
793 grpc_subchannel_call* subchannel_call; // Holds a ref.
794 // The batch to use in the subchannel call.
795 // Its payload field points to subchannel_call_retry_state.batch_payload.
796 grpc_transport_stream_op_batch batch;
797 // For send_initial_metadata.
798 // Note that we need to make a copy of the initial metadata for each
799 // subchannel call instead of just referring to the copy in call_data,
800 // because filters in the subchannel stack will probably add entries,
801 // so we need to start in a pristine state for each attempt of the call.
802 grpc_linked_mdelem* send_initial_metadata_storage;
803 grpc_metadata_batch send_initial_metadata;
804 // For send_message.
Mark D. Roth3d8b32d2018-03-09 13:25:40 -0800805 grpc_core::ManualConstructor<grpc_core::ByteStreamCache::CachingByteStream>
806 send_message;
Mark D. Roth718c8342018-02-28 13:00:04 -0800807 // For send_trailing_metadata.
808 grpc_linked_mdelem* send_trailing_metadata_storage;
809 grpc_metadata_batch send_trailing_metadata;
810 // For intercepting recv_initial_metadata.
811 grpc_metadata_batch recv_initial_metadata;
812 grpc_closure recv_initial_metadata_ready;
813 bool trailing_metadata_available;
814 // For intercepting recv_message.
815 grpc_closure recv_message_ready;
Mark D. Roth3d8b32d2018-03-09 13:25:40 -0800816 grpc_core::OrphanablePtr<grpc_core::ByteStream> recv_message;
Mark D. Roth718c8342018-02-28 13:00:04 -0800817 // For intercepting recv_trailing_metadata.
818 grpc_metadata_batch recv_trailing_metadata;
819 grpc_transport_stream_stats collect_stats;
820 // For intercepting on_complete.
821 grpc_closure on_complete;
822} subchannel_batch_data;
823
824// Retry state associated with a subchannel call.
825// Stored in the parent_data of the subchannel call object.
826typedef struct {
827 // subchannel_batch_data.batch.payload points to this.
828 grpc_transport_stream_op_batch_payload batch_payload;
829 // These fields indicate which ops have been started and completed on
830 // this subchannel call.
831 size_t started_send_message_count;
832 size_t completed_send_message_count;
833 size_t started_recv_message_count;
834 size_t completed_recv_message_count;
835 bool started_send_initial_metadata : 1;
836 bool completed_send_initial_metadata : 1;
837 bool started_send_trailing_metadata : 1;
838 bool completed_send_trailing_metadata : 1;
839 bool started_recv_initial_metadata : 1;
840 bool completed_recv_initial_metadata : 1;
841 bool started_recv_trailing_metadata : 1;
842 bool completed_recv_trailing_metadata : 1;
843 // State for callback processing.
844 bool retry_dispatched : 1;
845 bool recv_initial_metadata_ready_deferred : 1;
846 bool recv_message_ready_deferred : 1;
847 grpc_error* recv_initial_metadata_error;
848 grpc_error* recv_message_error;
849} subchannel_call_retry_state;
850
851// Pending batches stored in call data.
852typedef struct {
853 // The pending batch. If nullptr, this slot is empty.
854 grpc_transport_stream_op_batch* batch;
855 // Indicates whether payload for send ops has been cached in call data.
856 bool send_ops_cached;
857} pending_batch;
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700858
Mark D. Roth2a5959f2016-09-01 08:20:27 -0700859/** Call data. Holds a pointer to grpc_subchannel_call and the
860 associated machinery to create such a pointer.
861 Handles queueing of stream ops until a call object is ready, waiting
862 for initial metadata before trying to create a call object,
863 and handling cancellation gracefully. */
864typedef struct client_channel_call_data {
Mark D. Roth72f6da82016-09-02 13:42:38 -0700865 // State for handling deadlines.
866 // The code in deadline_filter.c requires this to be the first field.
Mark D. Roth72f6da82016-09-02 13:42:38 -0700867 // TODO(roth): This is slightly sub-optimal in that grpc_deadline_state
Mark D. Roth66f3d2b2017-09-01 09:02:17 -0700868 // and this struct both independently store pointers to the call stack
869 // and call combiner. If/when we have time, find a way to avoid this
870 // without breaking the grpc_deadline_state abstraction.
Mark D. Roth72f6da82016-09-02 13:42:38 -0700871 grpc_deadline_state deadline_state;
Mark D. Rothf28763c2016-09-14 15:18:40 -0700872
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800873 grpc_slice path; // Request path.
Mark D. Rothe40dd292016-10-05 14:58:37 -0700874 gpr_timespec call_start_time;
Craig Tiller89c14282017-07-19 15:32:27 -0700875 grpc_millis deadline;
Craig Tillerbaa14a92017-11-03 09:09:36 -0700876 gpr_arena* arena;
877 grpc_call_stack* owning_call;
878 grpc_call_combiner* call_combiner;
Mark D. Roth76e264b2017-08-25 09:03:33 -0700879
Mark D. Roth9db86fc2018-03-28 07:42:20 -0700880 grpc_core::RefCountedPtr<ServerRetryThrottleData> retry_throttle_data;
Mark D. Roth3e7f2df2018-02-26 13:17:06 -0800881 grpc_core::RefCountedPtr<ClientChannelMethodParams> method_params;
Mark D. Rothaa850a72016-09-26 13:38:02 -0700882
Craig Tillerbaa14a92017-11-03 09:09:36 -0700883 grpc_subchannel_call* subchannel_call;
Mark D. Roth718c8342018-02-28 13:00:04 -0800884
885 // Set when we get a cancel_stream op.
886 grpc_error* cancel_error;
Mark D. Roth2a5959f2016-09-01 08:20:27 -0700887
Mark D. Rothc8875492018-02-20 08:33:48 -0800888 grpc_core::LoadBalancingPolicy::PickState pick;
Mark D. Roth718c8342018-02-28 13:00:04 -0800889 grpc_closure pick_closure;
890 grpc_closure pick_cancel_closure;
Mark D. Roth60751fe2017-07-07 12:50:33 -0700891
Craig Tillerbaa14a92017-11-03 09:09:36 -0700892 grpc_polling_entity* pollent;
Mark D. Roth2a5959f2016-09-01 08:20:27 -0700893
Mark D. Roth718c8342018-02-28 13:00:04 -0800894 // Batches are added to this list when received from above.
895 // They are removed when we are done handling the batch (i.e., when
896 // either we have invoked all of the batch's callbacks or we have
897 // passed the batch down to the subchannel call and are not
898 // intercepting any of its callbacks).
899 pending_batch pending_batches[MAX_PENDING_BATCHES];
900 bool pending_send_initial_metadata : 1;
901 bool pending_send_message : 1;
902 bool pending_send_trailing_metadata : 1;
Mark D. Roth2a5959f2016-09-01 08:20:27 -0700903
Mark D. Roth718c8342018-02-28 13:00:04 -0800904 // Retry state.
905 bool enable_retries : 1;
906 bool retry_committed : 1;
907 bool last_attempt_got_server_pushback : 1;
908 int num_attempts_completed;
909 size_t bytes_buffered_for_retry;
910 grpc_core::ManualConstructor<grpc_core::BackOff> retry_backoff;
911 grpc_timer retry_timer;
David Garcia Quintasd1a47f12016-09-02 12:46:44 +0200912
Mark D. Roth718c8342018-02-28 13:00:04 -0800913 // Cached data for retrying send ops.
914 // send_initial_metadata
915 bool seen_send_initial_metadata;
916 grpc_linked_mdelem* send_initial_metadata_storage;
917 grpc_metadata_batch send_initial_metadata;
918 uint32_t send_initial_metadata_flags;
919 gpr_atm* peer_string;
920 // send_message
921 // When we get a send_message op, we replace the original byte stream
Mark D. Roth3d8b32d2018-03-09 13:25:40 -0800922 // with a CachingByteStream that caches the slices to a local buffer for
923 // use in retries.
Mark D. Roth718c8342018-02-28 13:00:04 -0800924 // Note: We inline the cache for the first 3 send_message ops and use
925 // dynamic allocation after that. This number was essentially picked
926 // at random; it could be changed in the future to tune performance.
Mark D. Roth3d8b32d2018-03-09 13:25:40 -0800927 grpc_core::InlinedVector<grpc_core::ByteStreamCache*, 3> send_messages;
Mark D. Roth718c8342018-02-28 13:00:04 -0800928 // send_trailing_metadata
929 bool seen_send_trailing_metadata;
930 grpc_linked_mdelem* send_trailing_metadata_storage;
931 grpc_metadata_batch send_trailing_metadata;
Mark D. Roth2a5959f2016-09-01 08:20:27 -0700932} call_data;
933
Mark D. Roth718c8342018-02-28 13:00:04 -0800934// Forward declarations.
935static void retry_commit(grpc_call_element* elem,
936 subchannel_call_retry_state* retry_state);
937static void start_internal_recv_trailing_metadata(grpc_call_element* elem);
938static void on_complete(void* arg, grpc_error* error);
939static void start_retriable_subchannel_batches(void* arg, grpc_error* ignored);
940static void pick_after_resolver_result_start_locked(grpc_call_element* elem);
941static void start_pick_locked(void* arg, grpc_error* ignored);
Craig Tiller8b1d59c2016-12-27 15:15:30 -0800942
Mark D. Roth718c8342018-02-28 13:00:04 -0800943//
944// send op data caching
945//
946
947// Caches data for send ops so that it can be retried later, if not
948// already cached.
949static void maybe_cache_send_ops_for_batch(call_data* calld,
950 pending_batch* pending) {
951 if (pending->send_ops_cached) return;
952 pending->send_ops_cached = true;
953 grpc_transport_stream_op_batch* batch = pending->batch;
954 // Save a copy of metadata for send_initial_metadata ops.
Mark D. Roth76e264b2017-08-25 09:03:33 -0700955 if (batch->send_initial_metadata) {
Mark D. Roth718c8342018-02-28 13:00:04 -0800956 calld->seen_send_initial_metadata = true;
957 GPR_ASSERT(calld->send_initial_metadata_storage == nullptr);
958 grpc_metadata_batch* send_initial_metadata =
959 batch->payload->send_initial_metadata.send_initial_metadata;
960 calld->send_initial_metadata_storage = (grpc_linked_mdelem*)gpr_arena_alloc(
961 calld->arena,
962 sizeof(grpc_linked_mdelem) * send_initial_metadata->list.count);
963 grpc_metadata_batch_copy(send_initial_metadata,
964 &calld->send_initial_metadata,
965 calld->send_initial_metadata_storage);
966 calld->send_initial_metadata_flags =
967 batch->payload->send_initial_metadata.send_initial_metadata_flags;
968 calld->peer_string = batch->payload->send_initial_metadata.peer_string;
969 }
970 // Set up cache for send_message ops.
971 if (batch->send_message) {
Mark D. Roth3d8b32d2018-03-09 13:25:40 -0800972 grpc_core::ByteStreamCache* cache =
973 static_cast<grpc_core::ByteStreamCache*>(
974 gpr_arena_alloc(calld->arena, sizeof(grpc_core::ByteStreamCache)));
975 new (cache) grpc_core::ByteStreamCache(
976 std::move(batch->payload->send_message.send_message));
Mark D. Roth718c8342018-02-28 13:00:04 -0800977 calld->send_messages.push_back(cache);
978 }
979 // Save metadata batch for send_trailing_metadata ops.
980 if (batch->send_trailing_metadata) {
981 calld->seen_send_trailing_metadata = true;
982 GPR_ASSERT(calld->send_trailing_metadata_storage == nullptr);
983 grpc_metadata_batch* send_trailing_metadata =
984 batch->payload->send_trailing_metadata.send_trailing_metadata;
985 calld->send_trailing_metadata_storage =
986 (grpc_linked_mdelem*)gpr_arena_alloc(
987 calld->arena,
988 sizeof(grpc_linked_mdelem) * send_trailing_metadata->list.count);
989 grpc_metadata_batch_copy(send_trailing_metadata,
990 &calld->send_trailing_metadata,
991 calld->send_trailing_metadata_storage);
Mark D. Roth76e264b2017-08-25 09:03:33 -0700992 }
Mark D. Roth2a5959f2016-09-01 08:20:27 -0700993}
994
Mark D. Roth718c8342018-02-28 13:00:04 -0800995// Frees cached send ops that have already been completed after
996// committing the call.
997static void free_cached_send_op_data_after_commit(
998 grpc_call_element* elem, subchannel_call_retry_state* retry_state) {
Noah Eisenbe82e642018-02-09 09:16:55 -0800999 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
1000 call_data* calld = static_cast<call_data*>(elem->call_data);
Mark D. Roth718c8342018-02-28 13:00:04 -08001001 if (retry_state->completed_send_initial_metadata) {
1002 grpc_metadata_batch_destroy(&calld->send_initial_metadata);
Mark D. Roth60751fe2017-07-07 12:50:33 -07001003 }
Mark D. Roth718c8342018-02-28 13:00:04 -08001004 for (size_t i = 0; i < retry_state->completed_send_message_count; ++i) {
1005 if (grpc_client_channel_trace.enabled()) {
1006 gpr_log(GPR_DEBUG,
1007 "chand=%p calld=%p: destroying calld->send_messages[%" PRIuPTR
1008 "]",
1009 chand, calld, i);
1010 }
Mark D. Roth3d8b32d2018-03-09 13:25:40 -08001011 calld->send_messages[i]->Destroy();
Mark D. Roth2a5959f2016-09-01 08:20:27 -07001012 }
Mark D. Roth718c8342018-02-28 13:00:04 -08001013 if (retry_state->completed_send_trailing_metadata) {
1014 grpc_metadata_batch_destroy(&calld->send_trailing_metadata);
1015 }
Mark D. Roth2a5959f2016-09-01 08:20:27 -07001016}
1017
Mark D. Roth718c8342018-02-28 13:00:04 -08001018// Frees cached send ops that were completed by the completed batch in
1019// batch_data. Used when batches are completed after the call is committed.
1020static void free_cached_send_op_data_for_completed_batch(
1021 grpc_call_element* elem, subchannel_batch_data* batch_data,
1022 subchannel_call_retry_state* retry_state) {
Noah Eisenbe82e642018-02-09 09:16:55 -08001023 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
1024 call_data* calld = static_cast<call_data*>(elem->call_data);
Mark D. Roth718c8342018-02-28 13:00:04 -08001025 if (batch_data->batch.send_initial_metadata) {
1026 grpc_metadata_batch_destroy(&calld->send_initial_metadata);
1027 }
1028 if (batch_data->batch.send_message) {
1029 if (grpc_client_channel_trace.enabled()) {
1030 gpr_log(GPR_DEBUG,
1031 "chand=%p calld=%p: destroying calld->send_messages[%" PRIuPTR
1032 "]",
1033 chand, calld, retry_state->completed_send_message_count - 1);
1034 }
Mark D. Roth3d8b32d2018-03-09 13:25:40 -08001035 calld->send_messages[retry_state->completed_send_message_count - 1]
1036 ->Destroy();
Mark D. Roth718c8342018-02-28 13:00:04 -08001037 }
1038 if (batch_data->batch.send_trailing_metadata) {
1039 grpc_metadata_batch_destroy(&calld->send_trailing_metadata);
1040 }
1041}
1042
1043//
1044// pending_batches management
1045//
1046
1047// Returns the index into calld->pending_batches to be used for batch.
1048static size_t get_batch_index(grpc_transport_stream_op_batch* batch) {
1049 // Note: It is important the send_initial_metadata be the first entry
1050 // here, since the code in pick_subchannel_locked() assumes it will be.
1051 if (batch->send_initial_metadata) return 0;
1052 if (batch->send_message) return 1;
1053 if (batch->send_trailing_metadata) return 2;
1054 if (batch->recv_initial_metadata) return 3;
1055 if (batch->recv_message) return 4;
1056 if (batch->recv_trailing_metadata) return 5;
1057 GPR_UNREACHABLE_CODE(return (size_t)-1);
1058}
1059
1060// This is called via the call combiner, so access to calld is synchronized.
1061static void pending_batches_add(grpc_call_element* elem,
1062 grpc_transport_stream_op_batch* batch) {
1063 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
1064 call_data* calld = static_cast<call_data*>(elem->call_data);
1065 const size_t idx = get_batch_index(batch);
Craig Tiller6014e8a2017-10-16 13:50:29 -07001066 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth718c8342018-02-28 13:00:04 -08001067 gpr_log(GPR_DEBUG,
1068 "chand=%p calld=%p: adding pending batch at index %" PRIuPTR, chand,
1069 calld, idx);
Mark D. Roth60751fe2017-07-07 12:50:33 -07001070 }
Mark D. Roth718c8342018-02-28 13:00:04 -08001071 pending_batch* pending = &calld->pending_batches[idx];
1072 GPR_ASSERT(pending->batch == nullptr);
1073 pending->batch = batch;
1074 pending->send_ops_cached = false;
1075 if (calld->enable_retries) {
1076 // Update state in calld about pending batches.
1077 // Also check if the batch takes us over the retry buffer limit.
1078 // Note: We don't check the size of trailing metadata here, because
1079 // gRPC clients do not send trailing metadata.
1080 if (batch->send_initial_metadata) {
1081 calld->pending_send_initial_metadata = true;
1082 calld->bytes_buffered_for_retry += grpc_metadata_batch_size(
1083 batch->payload->send_initial_metadata.send_initial_metadata);
1084 }
1085 if (batch->send_message) {
1086 calld->pending_send_message = true;
1087 calld->bytes_buffered_for_retry +=
Mark D. Roth3d8b32d2018-03-09 13:25:40 -08001088 batch->payload->send_message.send_message->length();
Mark D. Roth718c8342018-02-28 13:00:04 -08001089 }
1090 if (batch->send_trailing_metadata) {
1091 calld->pending_send_trailing_metadata = true;
1092 }
1093 if (calld->bytes_buffered_for_retry > chand->per_rpc_retry_buffer_size) {
1094 if (grpc_client_channel_trace.enabled()) {
1095 gpr_log(GPR_DEBUG,
1096 "chand=%p calld=%p: exceeded retry buffer size, committing",
1097 chand, calld);
1098 }
1099 subchannel_call_retry_state* retry_state =
1100 calld->subchannel_call == nullptr
1101 ? nullptr
1102 : static_cast<subchannel_call_retry_state*>(
1103 grpc_connected_subchannel_call_get_parent_data(
1104 calld->subchannel_call));
1105 retry_commit(elem, retry_state);
1106 // If we are not going to retry and have not yet started, pretend
1107 // retries are disabled so that we don't bother with retry overhead.
1108 if (calld->num_attempts_completed == 0) {
1109 if (grpc_client_channel_trace.enabled()) {
1110 gpr_log(GPR_DEBUG,
1111 "chand=%p calld=%p: disabling retries before first attempt",
1112 chand, calld);
Mark D. Roth0ca0be82017-06-20 07:49:33 -07001113 }
Mark D. Roth718c8342018-02-28 13:00:04 -08001114 calld->enable_retries = false;
Craig Tiller11c17d42017-03-13 13:36:34 -07001115 }
1116 }
1117 }
Craig Tiller11c17d42017-03-13 13:36:34 -07001118}
Craig Tillerea4a4f12017-03-13 13:36:52 -07001119
Mark D. Roth718c8342018-02-28 13:00:04 -08001120static void pending_batch_clear(call_data* calld, pending_batch* pending) {
1121 if (calld->enable_retries) {
1122 if (pending->batch->send_initial_metadata) {
1123 calld->pending_send_initial_metadata = false;
1124 }
1125 if (pending->batch->send_message) {
1126 calld->pending_send_message = false;
1127 }
1128 if (pending->batch->send_trailing_metadata) {
1129 calld->pending_send_trailing_metadata = false;
1130 }
1131 }
1132 pending->batch = nullptr;
1133}
1134
1135// This is called via the call combiner, so access to calld is synchronized.
1136static void fail_pending_batch_in_call_combiner(void* arg, grpc_error* error) {
1137 grpc_transport_stream_op_batch* batch =
1138 static_cast<grpc_transport_stream_op_batch*>(arg);
1139 call_data* calld = static_cast<call_data*>(batch->handler_private.extra_arg);
1140 // Note: This will release the call combiner.
1141 grpc_transport_stream_op_batch_finish_with_failure(
1142 batch, GRPC_ERROR_REF(error), calld->call_combiner);
1143}
1144
1145// This is called via the call combiner, so access to calld is synchronized.
1146// If yield_call_combiner is true, assumes responsibility for yielding
1147// the call combiner.
1148static void pending_batches_fail(grpc_call_element* elem, grpc_error* error,
1149 bool yield_call_combiner) {
1150 GPR_ASSERT(error != GRPC_ERROR_NONE);
1151 call_data* calld = static_cast<call_data*>(elem->call_data);
1152 if (grpc_client_channel_trace.enabled()) {
1153 size_t num_batches = 0;
1154 for (size_t i = 0; i < GPR_ARRAY_SIZE(calld->pending_batches); ++i) {
1155 if (calld->pending_batches[i].batch != nullptr) ++num_batches;
1156 }
1157 gpr_log(GPR_DEBUG,
1158 "chand=%p calld=%p: failing %" PRIuPTR " pending batches: %s",
1159 elem->channel_data, calld, num_batches, grpc_error_string(error));
1160 }
1161 grpc_transport_stream_op_batch*
1162 batches[GPR_ARRAY_SIZE(calld->pending_batches)];
1163 size_t num_batches = 0;
1164 for (size_t i = 0; i < GPR_ARRAY_SIZE(calld->pending_batches); ++i) {
1165 pending_batch* pending = &calld->pending_batches[i];
1166 grpc_transport_stream_op_batch* batch = pending->batch;
1167 if (batch != nullptr) {
1168 batches[num_batches++] = batch;
1169 pending_batch_clear(calld, pending);
1170 }
1171 }
1172 for (size_t i = yield_call_combiner ? 1 : 0; i < num_batches; ++i) {
1173 grpc_transport_stream_op_batch* batch = batches[i];
1174 batch->handler_private.extra_arg = calld;
1175 GRPC_CLOSURE_INIT(&batch->handler_private.closure,
1176 fail_pending_batch_in_call_combiner, batch,
1177 grpc_schedule_on_exec_ctx);
1178 GRPC_CALL_COMBINER_START(calld->call_combiner,
1179 &batch->handler_private.closure,
1180 GRPC_ERROR_REF(error), "pending_batches_fail");
1181 }
1182 if (yield_call_combiner) {
1183 if (num_batches > 0) {
1184 // Note: This will release the call combiner.
1185 grpc_transport_stream_op_batch_finish_with_failure(
1186 batches[0], GRPC_ERROR_REF(error), calld->call_combiner);
1187 } else {
1188 GRPC_CALL_COMBINER_STOP(calld->call_combiner, "pending_batches_fail");
1189 }
1190 }
1191 GRPC_ERROR_UNREF(error);
1192}
1193
1194// This is called via the call combiner, so access to calld is synchronized.
1195static void resume_pending_batch_in_call_combiner(void* arg,
1196 grpc_error* ignored) {
1197 grpc_transport_stream_op_batch* batch =
1198 static_cast<grpc_transport_stream_op_batch*>(arg);
1199 grpc_subchannel_call* subchannel_call =
1200 static_cast<grpc_subchannel_call*>(batch->handler_private.extra_arg);
1201 // Note: This will release the call combiner.
1202 grpc_subchannel_call_process_op(subchannel_call, batch);
1203}
1204
1205// This is called via the call combiner, so access to calld is synchronized.
1206static void pending_batches_resume(grpc_call_element* elem) {
Noah Eisenbe82e642018-02-09 09:16:55 -08001207 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
1208 call_data* calld = static_cast<call_data*>(elem->call_data);
Mark D. Roth718c8342018-02-28 13:00:04 -08001209 if (calld->enable_retries) {
1210 start_retriable_subchannel_batches(elem, GRPC_ERROR_NONE);
1211 return;
1212 }
1213 // Retries not enabled; send down batches as-is.
1214 if (grpc_client_channel_trace.enabled()) {
1215 size_t num_batches = 0;
1216 for (size_t i = 0; i < GPR_ARRAY_SIZE(calld->pending_batches); ++i) {
1217 if (calld->pending_batches[i].batch != nullptr) ++num_batches;
1218 }
1219 gpr_log(GPR_DEBUG,
1220 "chand=%p calld=%p: starting %" PRIuPTR
1221 " pending batches on subchannel_call=%p",
1222 chand, calld, num_batches, calld->subchannel_call);
1223 }
1224 grpc_transport_stream_op_batch*
1225 batches[GPR_ARRAY_SIZE(calld->pending_batches)];
1226 size_t num_batches = 0;
1227 for (size_t i = 0; i < GPR_ARRAY_SIZE(calld->pending_batches); ++i) {
1228 pending_batch* pending = &calld->pending_batches[i];
1229 grpc_transport_stream_op_batch* batch = pending->batch;
1230 if (batch != nullptr) {
1231 batches[num_batches++] = batch;
1232 pending_batch_clear(calld, pending);
1233 }
1234 }
1235 for (size_t i = 1; i < num_batches; ++i) {
1236 grpc_transport_stream_op_batch* batch = batches[i];
1237 batch->handler_private.extra_arg = calld->subchannel_call;
1238 GRPC_CLOSURE_INIT(&batch->handler_private.closure,
1239 resume_pending_batch_in_call_combiner, batch,
1240 grpc_schedule_on_exec_ctx);
1241 GRPC_CALL_COMBINER_START(calld->call_combiner,
1242 &batch->handler_private.closure, GRPC_ERROR_NONE,
1243 "pending_batches_resume");
1244 }
1245 GPR_ASSERT(num_batches > 0);
1246 // Note: This will release the call combiner.
1247 grpc_subchannel_call_process_op(calld->subchannel_call, batches[0]);
1248}
1249
1250static void maybe_clear_pending_batch(grpc_call_element* elem,
1251 pending_batch* pending) {
1252 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
1253 call_data* calld = static_cast<call_data*>(elem->call_data);
1254 grpc_transport_stream_op_batch* batch = pending->batch;
1255 // We clear the pending batch if all of its callbacks have been
1256 // scheduled and reset to nullptr.
1257 if (batch->on_complete == nullptr &&
1258 (!batch->recv_initial_metadata ||
1259 batch->payload->recv_initial_metadata.recv_initial_metadata_ready ==
1260 nullptr) &&
1261 (!batch->recv_message ||
1262 batch->payload->recv_message.recv_message_ready == nullptr)) {
1263 if (grpc_client_channel_trace.enabled()) {
1264 gpr_log(GPR_DEBUG, "chand=%p calld=%p: clearing pending batch", chand,
1265 calld);
1266 }
1267 pending_batch_clear(calld, pending);
1268 }
1269}
1270
1271// Returns true if all ops in the pending batch have been completed.
1272static bool pending_batch_is_completed(
1273 pending_batch* pending, call_data* calld,
1274 subchannel_call_retry_state* retry_state) {
1275 if (pending->batch == nullptr || pending->batch->on_complete == nullptr) {
1276 return false;
1277 }
1278 if (pending->batch->send_initial_metadata &&
1279 !retry_state->completed_send_initial_metadata) {
1280 return false;
1281 }
1282 if (pending->batch->send_message &&
1283 retry_state->completed_send_message_count < calld->send_messages.size()) {
1284 return false;
1285 }
1286 if (pending->batch->send_trailing_metadata &&
1287 !retry_state->completed_send_trailing_metadata) {
1288 return false;
1289 }
1290 if (pending->batch->recv_initial_metadata &&
1291 !retry_state->completed_recv_initial_metadata) {
1292 return false;
1293 }
1294 if (pending->batch->recv_message &&
1295 retry_state->completed_recv_message_count <
1296 retry_state->started_recv_message_count) {
1297 return false;
1298 }
1299 if (pending->batch->recv_trailing_metadata &&
1300 !retry_state->completed_recv_trailing_metadata) {
1301 return false;
1302 }
1303 return true;
1304}
1305
1306// Returns true if any op in the batch was not yet started.
1307static bool pending_batch_is_unstarted(
1308 pending_batch* pending, call_data* calld,
1309 subchannel_call_retry_state* retry_state) {
1310 if (pending->batch == nullptr || pending->batch->on_complete == nullptr) {
1311 return false;
1312 }
1313 if (pending->batch->send_initial_metadata &&
1314 !retry_state->started_send_initial_metadata) {
1315 return true;
1316 }
1317 if (pending->batch->send_message &&
1318 retry_state->started_send_message_count < calld->send_messages.size()) {
1319 return true;
1320 }
1321 if (pending->batch->send_trailing_metadata &&
1322 !retry_state->started_send_trailing_metadata) {
1323 return true;
1324 }
1325 if (pending->batch->recv_initial_metadata &&
1326 !retry_state->started_recv_initial_metadata) {
1327 return true;
1328 }
1329 if (pending->batch->recv_message &&
1330 retry_state->completed_recv_message_count ==
1331 retry_state->started_recv_message_count) {
1332 return true;
1333 }
1334 if (pending->batch->recv_trailing_metadata &&
1335 !retry_state->started_recv_trailing_metadata) {
1336 return true;
1337 }
1338 return false;
1339}
1340
1341//
1342// retry code
1343//
1344
1345// Commits the call so that no further retry attempts will be performed.
1346static void retry_commit(grpc_call_element* elem,
1347 subchannel_call_retry_state* retry_state) {
1348 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
1349 call_data* calld = static_cast<call_data*>(elem->call_data);
1350 if (calld->retry_committed) return;
1351 calld->retry_committed = true;
1352 if (grpc_client_channel_trace.enabled()) {
1353 gpr_log(GPR_DEBUG, "chand=%p calld=%p: committing retries", chand, calld);
1354 }
1355 if (retry_state != nullptr) {
1356 free_cached_send_op_data_after_commit(elem, retry_state);
1357 }
1358}
1359
1360// Starts a retry after appropriate back-off.
1361static void do_retry(grpc_call_element* elem,
1362 subchannel_call_retry_state* retry_state,
1363 grpc_millis server_pushback_ms) {
1364 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
1365 call_data* calld = static_cast<call_data*>(elem->call_data);
1366 GPR_ASSERT(calld->method_params != nullptr);
1367 const ClientChannelMethodParams::RetryPolicy* retry_policy =
1368 calld->method_params->retry_policy();
1369 GPR_ASSERT(retry_policy != nullptr);
1370 // Reset subchannel call and connected subchannel.
1371 if (calld->subchannel_call != nullptr) {
1372 GRPC_SUBCHANNEL_CALL_UNREF(calld->subchannel_call,
1373 "client_channel_call_retry");
1374 calld->subchannel_call = nullptr;
1375 }
1376 if (calld->pick.connected_subchannel != nullptr) {
1377 calld->pick.connected_subchannel.reset();
1378 }
1379 // Compute backoff delay.
1380 grpc_millis next_attempt_time;
1381 if (server_pushback_ms >= 0) {
1382 next_attempt_time = grpc_core::ExecCtx::Get()->Now() + server_pushback_ms;
1383 calld->last_attempt_got_server_pushback = true;
1384 } else {
1385 if (calld->num_attempts_completed == 1 ||
1386 calld->last_attempt_got_server_pushback) {
1387 calld->retry_backoff.Init(
1388 grpc_core::BackOff::Options()
1389 .set_initial_backoff(retry_policy->initial_backoff)
1390 .set_multiplier(retry_policy->backoff_multiplier)
1391 .set_jitter(RETRY_BACKOFF_JITTER)
1392 .set_max_backoff(retry_policy->max_backoff));
1393 calld->last_attempt_got_server_pushback = false;
1394 }
1395 next_attempt_time = calld->retry_backoff->NextAttemptTime();
1396 }
1397 if (grpc_client_channel_trace.enabled()) {
1398 gpr_log(GPR_DEBUG,
1399 "chand=%p calld=%p: retrying failed call in %" PRIuPTR " ms", chand,
1400 calld, next_attempt_time - grpc_core::ExecCtx::Get()->Now());
1401 }
1402 // Schedule retry after computed delay.
1403 GRPC_CLOSURE_INIT(&calld->pick_closure, start_pick_locked, elem,
1404 grpc_combiner_scheduler(chand->combiner));
1405 grpc_timer_init(&calld->retry_timer, next_attempt_time, &calld->pick_closure);
1406 // Update bookkeeping.
1407 if (retry_state != nullptr) retry_state->retry_dispatched = true;
1408}
1409
1410// Returns true if the call is being retried.
1411static bool maybe_retry(grpc_call_element* elem,
1412 subchannel_batch_data* batch_data,
1413 grpc_status_code status,
1414 grpc_mdelem* server_pushback_md) {
1415 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
1416 call_data* calld = static_cast<call_data*>(elem->call_data);
1417 // Get retry policy.
1418 if (calld->method_params == nullptr) return false;
1419 const ClientChannelMethodParams::RetryPolicy* retry_policy =
1420 calld->method_params->retry_policy();
1421 if (retry_policy == nullptr) return false;
1422 // If we've already dispatched a retry from this call, return true.
1423 // This catches the case where the batch has multiple callbacks
1424 // (i.e., it includes either recv_message or recv_initial_metadata).
1425 subchannel_call_retry_state* retry_state = nullptr;
1426 if (batch_data != nullptr) {
1427 retry_state = static_cast<subchannel_call_retry_state*>(
1428 grpc_connected_subchannel_call_get_parent_data(
1429 batch_data->subchannel_call));
1430 if (retry_state->retry_dispatched) {
1431 if (grpc_client_channel_trace.enabled()) {
1432 gpr_log(GPR_DEBUG, "chand=%p calld=%p: retry already dispatched", chand,
1433 calld);
1434 }
1435 return true;
1436 }
1437 }
1438 // Check status.
1439 if (status == GRPC_STATUS_OK) {
Mark D. Roth9db86fc2018-03-28 07:42:20 -07001440 if (calld->retry_throttle_data != nullptr) {
1441 calld->retry_throttle_data->RecordSuccess();
1442 }
Mark D. Roth718c8342018-02-28 13:00:04 -08001443 if (grpc_client_channel_trace.enabled()) {
1444 gpr_log(GPR_DEBUG, "chand=%p calld=%p: call succeeded", chand, calld);
1445 }
1446 return false;
1447 }
1448 // Status is not OK. Check whether the status is retryable.
1449 if (!retry_policy->retryable_status_codes.Contains(status)) {
1450 if (grpc_client_channel_trace.enabled()) {
1451 gpr_log(GPR_DEBUG,
1452 "chand=%p calld=%p: status %s not configured as retryable", chand,
1453 calld, grpc_status_code_to_string(status));
1454 }
1455 return false;
1456 }
1457 // Record the failure and check whether retries are throttled.
1458 // Note that it's important for this check to come after the status
1459 // code check above, since we should only record failures whose statuses
1460 // match the configured retryable status codes, so that we don't count
1461 // things like failures due to malformed requests (INVALID_ARGUMENT).
1462 // Conversely, it's important for this to come before the remaining
1463 // checks, so that we don't fail to record failures due to other factors.
Mark D. Roth9db86fc2018-03-28 07:42:20 -07001464 if (calld->retry_throttle_data != nullptr &&
1465 !calld->retry_throttle_data->RecordFailure()) {
Mark D. Roth718c8342018-02-28 13:00:04 -08001466 if (grpc_client_channel_trace.enabled()) {
1467 gpr_log(GPR_DEBUG, "chand=%p calld=%p: retries throttled", chand, calld);
1468 }
1469 return false;
1470 }
1471 // Check whether the call is committed.
1472 if (calld->retry_committed) {
1473 if (grpc_client_channel_trace.enabled()) {
1474 gpr_log(GPR_DEBUG, "chand=%p calld=%p: retries already committed", chand,
1475 calld);
1476 }
1477 return false;
1478 }
1479 // Check whether we have retries remaining.
1480 ++calld->num_attempts_completed;
1481 if (calld->num_attempts_completed >= retry_policy->max_attempts) {
1482 if (grpc_client_channel_trace.enabled()) {
1483 gpr_log(GPR_DEBUG, "chand=%p calld=%p: exceeded %d retry attempts", chand,
1484 calld, retry_policy->max_attempts);
1485 }
1486 return false;
1487 }
1488 // If the call was cancelled from the surface, don't retry.
1489 if (calld->cancel_error != GRPC_ERROR_NONE) {
1490 if (grpc_client_channel_trace.enabled()) {
1491 gpr_log(GPR_DEBUG,
1492 "chand=%p calld=%p: call cancelled from surface, not retrying",
1493 chand, calld);
1494 }
1495 return false;
1496 }
1497 // Check server push-back.
1498 grpc_millis server_pushback_ms = -1;
1499 if (server_pushback_md != nullptr) {
1500 // If the value is "-1" or any other unparseable string, we do not retry.
1501 uint32_t ms;
1502 if (!grpc_parse_slice_to_uint32(GRPC_MDVALUE(*server_pushback_md), &ms)) {
1503 if (grpc_client_channel_trace.enabled()) {
1504 gpr_log(GPR_DEBUG,
1505 "chand=%p calld=%p: not retrying due to server push-back",
1506 chand, calld);
1507 }
1508 return false;
1509 } else {
1510 if (grpc_client_channel_trace.enabled()) {
1511 gpr_log(GPR_DEBUG,
1512 "chand=%p calld=%p: server push-back: retry in %u ms", chand,
1513 calld, ms);
1514 }
1515 server_pushback_ms = (grpc_millis)ms;
1516 }
1517 }
1518 do_retry(elem, retry_state, server_pushback_ms);
1519 return true;
1520}
1521
1522//
1523// subchannel_batch_data
1524//
1525
1526static subchannel_batch_data* batch_data_create(grpc_call_element* elem,
1527 int refcount) {
1528 call_data* calld = static_cast<call_data*>(elem->call_data);
1529 subchannel_call_retry_state* retry_state =
1530 static_cast<subchannel_call_retry_state*>(
1531 grpc_connected_subchannel_call_get_parent_data(
1532 calld->subchannel_call));
1533 subchannel_batch_data* batch_data = static_cast<subchannel_batch_data*>(
1534 gpr_arena_alloc(calld->arena, sizeof(*batch_data)));
1535 batch_data->elem = elem;
1536 batch_data->subchannel_call =
1537 GRPC_SUBCHANNEL_CALL_REF(calld->subchannel_call, "batch_data_create");
1538 batch_data->batch.payload = &retry_state->batch_payload;
1539 gpr_ref_init(&batch_data->refs, refcount);
1540 GRPC_CLOSURE_INIT(&batch_data->on_complete, on_complete, batch_data,
1541 grpc_schedule_on_exec_ctx);
1542 batch_data->batch.on_complete = &batch_data->on_complete;
1543 GRPC_CALL_STACK_REF(calld->owning_call, "batch_data");
1544 return batch_data;
1545}
1546
1547static void batch_data_unref(subchannel_batch_data* batch_data) {
1548 if (gpr_unref(&batch_data->refs)) {
1549 if (batch_data->send_initial_metadata_storage != nullptr) {
1550 grpc_metadata_batch_destroy(&batch_data->send_initial_metadata);
1551 }
1552 if (batch_data->send_trailing_metadata_storage != nullptr) {
1553 grpc_metadata_batch_destroy(&batch_data->send_trailing_metadata);
1554 }
1555 if (batch_data->batch.recv_initial_metadata) {
1556 grpc_metadata_batch_destroy(&batch_data->recv_initial_metadata);
1557 }
1558 if (batch_data->batch.recv_trailing_metadata) {
1559 grpc_metadata_batch_destroy(&batch_data->recv_trailing_metadata);
1560 }
1561 GRPC_SUBCHANNEL_CALL_UNREF(batch_data->subchannel_call, "batch_data_unref");
1562 call_data* calld = static_cast<call_data*>(batch_data->elem->call_data);
1563 GRPC_CALL_STACK_UNREF(calld->owning_call, "batch_data");
1564 }
1565}
1566
1567//
1568// recv_initial_metadata callback handling
1569//
1570
1571// Invokes recv_initial_metadata_ready for a subchannel batch.
1572static void invoke_recv_initial_metadata_callback(void* arg,
1573 grpc_error* error) {
1574 subchannel_batch_data* batch_data = static_cast<subchannel_batch_data*>(arg);
1575 channel_data* chand =
1576 static_cast<channel_data*>(batch_data->elem->channel_data);
1577 call_data* calld = static_cast<call_data*>(batch_data->elem->call_data);
1578 // Find pending batch.
1579 pending_batch* pending = nullptr;
1580 for (size_t i = 0; i < GPR_ARRAY_SIZE(calld->pending_batches); ++i) {
1581 grpc_transport_stream_op_batch* batch = calld->pending_batches[i].batch;
1582 if (batch != nullptr && batch->recv_initial_metadata &&
1583 batch->payload->recv_initial_metadata.recv_initial_metadata_ready !=
1584 nullptr) {
1585 if (grpc_client_channel_trace.enabled()) {
1586 gpr_log(GPR_DEBUG,
1587 "chand=%p calld=%p: invoking recv_initial_metadata_ready for "
1588 "pending batch at index %" PRIuPTR,
1589 chand, calld, i);
1590 }
1591 pending = &calld->pending_batches[i];
1592 break;
1593 }
1594 }
1595 GPR_ASSERT(pending != nullptr);
1596 // Return metadata.
1597 grpc_metadata_batch_move(
1598 &batch_data->recv_initial_metadata,
1599 pending->batch->payload->recv_initial_metadata.recv_initial_metadata);
1600 // Update bookkeeping.
1601 // Note: Need to do this before invoking the callback, since invoking
1602 // the callback will result in yielding the call combiner.
1603 grpc_closure* recv_initial_metadata_ready =
1604 pending->batch->payload->recv_initial_metadata
1605 .recv_initial_metadata_ready;
1606 pending->batch->payload->recv_initial_metadata.recv_initial_metadata_ready =
1607 nullptr;
1608 maybe_clear_pending_batch(batch_data->elem, pending);
1609 batch_data_unref(batch_data);
1610 // Invoke callback.
1611 GRPC_CLOSURE_RUN(recv_initial_metadata_ready, GRPC_ERROR_REF(error));
1612}
1613
1614// Intercepts recv_initial_metadata_ready callback for retries.
1615// Commits the call and returns the initial metadata up the stack.
1616static void recv_initial_metadata_ready(void* arg, grpc_error* error) {
1617 subchannel_batch_data* batch_data = static_cast<subchannel_batch_data*>(arg);
1618 grpc_call_element* elem = batch_data->elem;
1619 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
1620 call_data* calld = static_cast<call_data*>(elem->call_data);
1621 if (grpc_client_channel_trace.enabled()) {
1622 gpr_log(GPR_DEBUG,
1623 "chand=%p calld=%p: got recv_initial_metadata_ready, error=%s",
1624 chand, calld, grpc_error_string(error));
1625 }
1626 subchannel_call_retry_state* retry_state =
1627 static_cast<subchannel_call_retry_state*>(
1628 grpc_connected_subchannel_call_get_parent_data(
1629 batch_data->subchannel_call));
1630 // If we got an error or a Trailers-Only response and have not yet gotten
1631 // the recv_trailing_metadata on_complete callback, then defer
1632 // propagating this callback back to the surface. We can evaluate whether
1633 // to retry when recv_trailing_metadata comes back.
1634 if ((batch_data->trailing_metadata_available || error != GRPC_ERROR_NONE) &&
1635 !retry_state->completed_recv_trailing_metadata) {
1636 if (grpc_client_channel_trace.enabled()) {
1637 gpr_log(GPR_DEBUG,
1638 "chand=%p calld=%p: deferring recv_initial_metadata_ready "
1639 "(Trailers-Only)",
1640 chand, calld);
1641 }
1642 retry_state->recv_initial_metadata_ready_deferred = true;
1643 retry_state->recv_initial_metadata_error = GRPC_ERROR_REF(error);
1644 if (!retry_state->started_recv_trailing_metadata) {
1645 // recv_trailing_metadata not yet started by application; start it
1646 // ourselves to get status.
1647 start_internal_recv_trailing_metadata(elem);
1648 } else {
1649 GRPC_CALL_COMBINER_STOP(
1650 calld->call_combiner,
1651 "recv_initial_metadata_ready trailers-only or error");
1652 }
1653 return;
1654 }
1655 // Received valid initial metadata, so commit the call.
1656 retry_commit(elem, retry_state);
1657 // Manually invoking a callback function; it does not take ownership of error.
1658 invoke_recv_initial_metadata_callback(batch_data, error);
1659 GRPC_ERROR_UNREF(error);
1660}
1661
1662//
1663// recv_message callback handling
1664//
1665
1666// Invokes recv_message_ready for a subchannel batch.
1667static void invoke_recv_message_callback(void* arg, grpc_error* error) {
1668 subchannel_batch_data* batch_data = static_cast<subchannel_batch_data*>(arg);
1669 channel_data* chand =
1670 static_cast<channel_data*>(batch_data->elem->channel_data);
1671 call_data* calld = static_cast<call_data*>(batch_data->elem->call_data);
1672 // Find pending op.
1673 pending_batch* pending = nullptr;
1674 for (size_t i = 0; i < GPR_ARRAY_SIZE(calld->pending_batches); ++i) {
1675 grpc_transport_stream_op_batch* batch = calld->pending_batches[i].batch;
1676 if (batch != nullptr && batch->recv_message &&
1677 batch->payload->recv_message.recv_message_ready != nullptr) {
1678 if (grpc_client_channel_trace.enabled()) {
1679 gpr_log(GPR_DEBUG,
1680 "chand=%p calld=%p: invoking recv_message_ready for "
1681 "pending batch at index %" PRIuPTR,
1682 chand, calld, i);
1683 }
1684 pending = &calld->pending_batches[i];
1685 break;
1686 }
1687 }
1688 GPR_ASSERT(pending != nullptr);
1689 // Return payload.
1690 *pending->batch->payload->recv_message.recv_message =
Mark D. Roth3d8b32d2018-03-09 13:25:40 -08001691 std::move(batch_data->recv_message);
Mark D. Roth718c8342018-02-28 13:00:04 -08001692 // Update bookkeeping.
1693 // Note: Need to do this before invoking the callback, since invoking
1694 // the callback will result in yielding the call combiner.
1695 grpc_closure* recv_message_ready =
1696 pending->batch->payload->recv_message.recv_message_ready;
1697 pending->batch->payload->recv_message.recv_message_ready = nullptr;
1698 maybe_clear_pending_batch(batch_data->elem, pending);
1699 batch_data_unref(batch_data);
1700 // Invoke callback.
1701 GRPC_CLOSURE_RUN(recv_message_ready, GRPC_ERROR_REF(error));
1702}
1703
1704// Intercepts recv_message_ready callback for retries.
1705// Commits the call and returns the message up the stack.
1706static void recv_message_ready(void* arg, grpc_error* error) {
1707 subchannel_batch_data* batch_data = static_cast<subchannel_batch_data*>(arg);
1708 grpc_call_element* elem = batch_data->elem;
1709 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
1710 call_data* calld = static_cast<call_data*>(elem->call_data);
1711 if (grpc_client_channel_trace.enabled()) {
1712 gpr_log(GPR_DEBUG, "chand=%p calld=%p: got recv_message_ready, error=%s",
1713 chand, calld, grpc_error_string(error));
1714 }
1715 subchannel_call_retry_state* retry_state =
1716 static_cast<subchannel_call_retry_state*>(
1717 grpc_connected_subchannel_call_get_parent_data(
1718 batch_data->subchannel_call));
1719 // If we got an error or the payload was nullptr and we have not yet gotten
1720 // the recv_trailing_metadata on_complete callback, then defer
1721 // propagating this callback back to the surface. We can evaluate whether
1722 // to retry when recv_trailing_metadata comes back.
1723 if ((batch_data->recv_message == nullptr || error != GRPC_ERROR_NONE) &&
1724 !retry_state->completed_recv_trailing_metadata) {
1725 if (grpc_client_channel_trace.enabled()) {
1726 gpr_log(GPR_DEBUG,
1727 "chand=%p calld=%p: deferring recv_message_ready (nullptr "
1728 "message and recv_trailing_metadata pending)",
1729 chand, calld);
1730 }
1731 retry_state->recv_message_ready_deferred = true;
1732 retry_state->recv_message_error = GRPC_ERROR_REF(error);
1733 if (!retry_state->started_recv_trailing_metadata) {
1734 // recv_trailing_metadata not yet started by application; start it
1735 // ourselves to get status.
1736 start_internal_recv_trailing_metadata(elem);
1737 } else {
1738 GRPC_CALL_COMBINER_STOP(calld->call_combiner, "recv_message_ready null");
1739 }
1740 return;
1741 }
1742 // Received a valid message, so commit the call.
1743 retry_commit(elem, retry_state);
1744 // Manually invoking a callback function; it does not take ownership of error.
1745 invoke_recv_message_callback(batch_data, error);
1746 GRPC_ERROR_UNREF(error);
1747}
1748
1749//
1750// on_complete callback handling
1751//
1752
1753// Updates retry_state to reflect the ops completed in batch_data.
1754static void update_retry_state_for_completed_batch(
1755 subchannel_batch_data* batch_data,
1756 subchannel_call_retry_state* retry_state) {
1757 if (batch_data->batch.send_initial_metadata) {
1758 retry_state->completed_send_initial_metadata = true;
1759 }
1760 if (batch_data->batch.send_message) {
1761 ++retry_state->completed_send_message_count;
1762 }
1763 if (batch_data->batch.send_trailing_metadata) {
1764 retry_state->completed_send_trailing_metadata = true;
1765 }
1766 if (batch_data->batch.recv_initial_metadata) {
1767 retry_state->completed_recv_initial_metadata = true;
1768 }
1769 if (batch_data->batch.recv_message) {
1770 ++retry_state->completed_recv_message_count;
1771 }
1772 if (batch_data->batch.recv_trailing_metadata) {
1773 retry_state->completed_recv_trailing_metadata = true;
1774 }
1775}
1776
1777// Represents a closure that needs to run as a result of a completed batch.
1778typedef struct {
1779 grpc_closure* closure;
1780 grpc_error* error;
1781 const char* reason;
1782} closure_to_execute;
1783
1784// Adds any necessary closures for deferred recv_initial_metadata and
1785// recv_message callbacks to closures, updating *num_closures as needed.
1786static void add_closures_for_deferred_recv_callbacks(
1787 subchannel_batch_data* batch_data, subchannel_call_retry_state* retry_state,
1788 closure_to_execute* closures, size_t* num_closures) {
1789 if (batch_data->batch.recv_trailing_metadata &&
1790 retry_state->recv_initial_metadata_ready_deferred) {
1791 closure_to_execute* closure = &closures[(*num_closures)++];
1792 closure->closure =
1793 GRPC_CLOSURE_INIT(&batch_data->recv_initial_metadata_ready,
1794 invoke_recv_initial_metadata_callback, batch_data,
1795 grpc_schedule_on_exec_ctx);
1796 closure->error = retry_state->recv_initial_metadata_error;
1797 closure->reason = "resuming recv_initial_metadata_ready";
1798 }
1799 if (batch_data->batch.recv_trailing_metadata &&
1800 retry_state->recv_message_ready_deferred) {
1801 closure_to_execute* closure = &closures[(*num_closures)++];
1802 closure->closure = GRPC_CLOSURE_INIT(&batch_data->recv_message_ready,
1803 invoke_recv_message_callback,
1804 batch_data, grpc_schedule_on_exec_ctx);
1805 closure->error = retry_state->recv_message_error;
1806 closure->reason = "resuming recv_message_ready";
1807 }
1808}
1809
1810// If there are any cached ops to replay or pending ops to start on the
1811// subchannel call, adds a closure to closures to invoke
1812// start_retriable_subchannel_batches(), updating *num_closures as needed.
1813static void add_closures_for_replay_or_pending_send_ops(
1814 grpc_call_element* elem, subchannel_batch_data* batch_data,
1815 subchannel_call_retry_state* retry_state, closure_to_execute* closures,
1816 size_t* num_closures) {
1817 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
1818 call_data* calld = static_cast<call_data*>(elem->call_data);
1819 bool have_pending_send_message_ops =
1820 retry_state->started_send_message_count < calld->send_messages.size();
1821 bool have_pending_send_trailing_metadata_op =
1822 calld->seen_send_trailing_metadata &&
1823 !retry_state->started_send_trailing_metadata;
1824 if (!have_pending_send_message_ops &&
1825 !have_pending_send_trailing_metadata_op) {
1826 for (size_t i = 0; i < GPR_ARRAY_SIZE(calld->pending_batches); ++i) {
1827 pending_batch* pending = &calld->pending_batches[i];
1828 grpc_transport_stream_op_batch* batch = pending->batch;
1829 if (batch == nullptr || pending->send_ops_cached) continue;
1830 if (batch->send_message) have_pending_send_message_ops = true;
1831 if (batch->send_trailing_metadata) {
1832 have_pending_send_trailing_metadata_op = true;
1833 }
1834 }
1835 }
1836 if (have_pending_send_message_ops || have_pending_send_trailing_metadata_op) {
1837 if (grpc_client_channel_trace.enabled()) {
1838 gpr_log(GPR_DEBUG,
1839 "chand=%p calld=%p: starting next batch for pending send op(s)",
1840 chand, calld);
1841 }
1842 closure_to_execute* closure = &closures[(*num_closures)++];
1843 closure->closure = GRPC_CLOSURE_INIT(
1844 &batch_data->batch.handler_private.closure,
1845 start_retriable_subchannel_batches, elem, grpc_schedule_on_exec_ctx);
1846 closure->error = GRPC_ERROR_NONE;
1847 closure->reason = "starting next batch for send_* op(s)";
1848 }
1849}
1850
1851// For any pending batch completed in batch_data, adds the necessary
1852// completion closures to closures, updating *num_closures as needed.
1853static void add_closures_for_completed_pending_batches(
1854 grpc_call_element* elem, subchannel_batch_data* batch_data,
1855 subchannel_call_retry_state* retry_state, grpc_error* error,
1856 closure_to_execute* closures, size_t* num_closures) {
1857 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
1858 call_data* calld = static_cast<call_data*>(elem->call_data);
1859 for (size_t i = 0; i < GPR_ARRAY_SIZE(calld->pending_batches); ++i) {
1860 pending_batch* pending = &calld->pending_batches[i];
1861 if (pending_batch_is_completed(pending, calld, retry_state)) {
1862 if (grpc_client_channel_trace.enabled()) {
1863 gpr_log(GPR_DEBUG,
1864 "chand=%p calld=%p: pending batch completed at index %" PRIuPTR,
1865 chand, calld, i);
1866 }
1867 // Copy the trailing metadata to return it to the surface.
1868 if (batch_data->batch.recv_trailing_metadata) {
1869 grpc_metadata_batch_move(&batch_data->recv_trailing_metadata,
1870 pending->batch->payload->recv_trailing_metadata
1871 .recv_trailing_metadata);
1872 }
1873 closure_to_execute* closure = &closures[(*num_closures)++];
1874 closure->closure = pending->batch->on_complete;
1875 closure->error = GRPC_ERROR_REF(error);
1876 closure->reason = "on_complete for pending batch";
1877 pending->batch->on_complete = nullptr;
1878 maybe_clear_pending_batch(elem, pending);
1879 }
1880 }
1881 GRPC_ERROR_UNREF(error);
1882}
1883
1884// For any pending batch containing an op that has not yet been started,
1885// adds the pending batch's completion closures to closures, updating
1886// *num_closures as needed.
1887static void add_closures_to_fail_unstarted_pending_batches(
1888 grpc_call_element* elem, subchannel_call_retry_state* retry_state,
1889 grpc_error* error, closure_to_execute* closures, size_t* num_closures) {
1890 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
1891 call_data* calld = static_cast<call_data*>(elem->call_data);
1892 for (size_t i = 0; i < GPR_ARRAY_SIZE(calld->pending_batches); ++i) {
1893 pending_batch* pending = &calld->pending_batches[i];
1894 if (pending_batch_is_unstarted(pending, calld, retry_state)) {
1895 if (grpc_client_channel_trace.enabled()) {
1896 gpr_log(GPR_DEBUG,
1897 "chand=%p calld=%p: failing unstarted pending batch at index "
1898 "%" PRIuPTR,
1899 chand, calld, i);
1900 }
1901 if (pending->batch->recv_initial_metadata) {
1902 closure_to_execute* closure = &closures[(*num_closures)++];
1903 closure->closure = pending->batch->payload->recv_initial_metadata
1904 .recv_initial_metadata_ready;
1905 closure->error = GRPC_ERROR_REF(error);
1906 closure->reason =
1907 "failing recv_initial_metadata_ready for pending batch";
1908 pending->batch->payload->recv_initial_metadata
1909 .recv_initial_metadata_ready = nullptr;
1910 }
1911 if (pending->batch->recv_message) {
1912 *pending->batch->payload->recv_message.recv_message = nullptr;
1913 closure_to_execute* closure = &closures[(*num_closures)++];
1914 closure->closure =
1915 pending->batch->payload->recv_message.recv_message_ready;
1916 closure->error = GRPC_ERROR_REF(error);
1917 closure->reason = "failing recv_message_ready for pending batch";
1918 pending->batch->payload->recv_message.recv_message_ready = nullptr;
1919 }
1920 closure_to_execute* closure = &closures[(*num_closures)++];
1921 closure->closure = pending->batch->on_complete;
1922 closure->error = GRPC_ERROR_REF(error);
1923 closure->reason = "failing on_complete for pending batch";
1924 pending->batch->on_complete = nullptr;
1925 maybe_clear_pending_batch(elem, pending);
1926 }
1927 }
1928 GRPC_ERROR_UNREF(error);
1929}
1930
1931// Callback used to intercept on_complete from subchannel calls.
1932// Called only when retries are enabled.
1933static void on_complete(void* arg, grpc_error* error) {
1934 subchannel_batch_data* batch_data = static_cast<subchannel_batch_data*>(arg);
1935 grpc_call_element* elem = batch_data->elem;
1936 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
1937 call_data* calld = static_cast<call_data*>(elem->call_data);
1938 if (grpc_client_channel_trace.enabled()) {
1939 char* batch_str = grpc_transport_stream_op_batch_string(&batch_data->batch);
1940 gpr_log(GPR_DEBUG, "chand=%p calld=%p: got on_complete, error=%s, batch=%s",
1941 chand, calld, grpc_error_string(error), batch_str);
1942 gpr_free(batch_str);
1943 }
1944 subchannel_call_retry_state* retry_state =
1945 static_cast<subchannel_call_retry_state*>(
1946 grpc_connected_subchannel_call_get_parent_data(
1947 batch_data->subchannel_call));
1948 // If we have previously completed recv_trailing_metadata, then the
1949 // call is finished.
1950 bool call_finished = retry_state->completed_recv_trailing_metadata;
1951 // Update bookkeeping in retry_state.
1952 update_retry_state_for_completed_batch(batch_data, retry_state);
1953 if (call_finished) {
1954 if (grpc_client_channel_trace.enabled()) {
1955 gpr_log(GPR_DEBUG, "chand=%p calld=%p: call already finished", chand,
1956 calld);
1957 }
1958 } else {
1959 // Check if this batch finished the call, and if so, get its status.
1960 // The call is finished if either (a) this callback was invoked with
1961 // an error or (b) we receive status.
1962 grpc_status_code status = GRPC_STATUS_OK;
1963 grpc_mdelem* server_pushback_md = nullptr;
1964 if (error != GRPC_ERROR_NONE) { // Case (a).
1965 call_finished = true;
1966 grpc_error_get_status(error, calld->deadline, &status, nullptr, nullptr,
1967 nullptr);
1968 } else if (batch_data->batch.recv_trailing_metadata) { // Case (b).
1969 call_finished = true;
1970 grpc_metadata_batch* md_batch =
1971 batch_data->batch.payload->recv_trailing_metadata
1972 .recv_trailing_metadata;
1973 GPR_ASSERT(md_batch->idx.named.grpc_status != nullptr);
1974 status = grpc_get_status_code_from_metadata(
1975 md_batch->idx.named.grpc_status->md);
1976 if (md_batch->idx.named.grpc_retry_pushback_ms != nullptr) {
1977 server_pushback_md = &md_batch->idx.named.grpc_retry_pushback_ms->md;
1978 }
1979 } else if (retry_state->completed_recv_trailing_metadata) {
1980 call_finished = true;
1981 }
1982 if (call_finished && grpc_client_channel_trace.enabled()) {
1983 gpr_log(GPR_DEBUG, "chand=%p calld=%p: call finished, status=%s", chand,
1984 calld, grpc_status_code_to_string(status));
1985 }
1986 // If the call is finished, check if we should retry.
1987 if (call_finished &&
1988 maybe_retry(elem, batch_data, status, server_pushback_md)) {
1989 // Unref batch_data for deferred recv_initial_metadata_ready or
1990 // recv_message_ready callbacks, if any.
1991 if (batch_data->batch.recv_trailing_metadata &&
1992 retry_state->recv_initial_metadata_ready_deferred) {
1993 batch_data_unref(batch_data);
1994 GRPC_ERROR_UNREF(retry_state->recv_initial_metadata_error);
1995 }
1996 if (batch_data->batch.recv_trailing_metadata &&
1997 retry_state->recv_message_ready_deferred) {
1998 batch_data_unref(batch_data);
1999 GRPC_ERROR_UNREF(retry_state->recv_message_error);
2000 }
2001 batch_data_unref(batch_data);
2002 return;
2003 }
2004 }
2005 // If the call is finished or retries are committed, free cached data for
2006 // send ops that we've just completed.
2007 if (call_finished || calld->retry_committed) {
2008 free_cached_send_op_data_for_completed_batch(elem, batch_data, retry_state);
2009 }
2010 // Call not being retried.
2011 // Construct list of closures to execute.
2012 // Max number of closures is number of pending batches plus one for
2013 // each of:
2014 // - recv_initial_metadata_ready (either deferred or unstarted)
2015 // - recv_message_ready (either deferred or unstarted)
2016 // - starting a new batch for pending send ops
2017 closure_to_execute closures[GPR_ARRAY_SIZE(calld->pending_batches) + 3];
2018 size_t num_closures = 0;
2019 // If there are deferred recv_initial_metadata_ready or recv_message_ready
2020 // callbacks, add them to closures.
2021 add_closures_for_deferred_recv_callbacks(batch_data, retry_state, closures,
2022 &num_closures);
2023 // Find pending batches whose ops are now complete and add their
2024 // on_complete callbacks to closures.
2025 add_closures_for_completed_pending_batches(elem, batch_data, retry_state,
2026 GRPC_ERROR_REF(error), closures,
2027 &num_closures);
2028 // Add closures to handle any pending batches that have not yet been started.
2029 // If the call is finished, we fail these batches; otherwise, we add a
2030 // callback to start_retriable_subchannel_batches() to start them on
2031 // the subchannel call.
2032 if (call_finished) {
2033 add_closures_to_fail_unstarted_pending_batches(
2034 elem, retry_state, GRPC_ERROR_REF(error), closures, &num_closures);
2035 } else {
2036 add_closures_for_replay_or_pending_send_ops(elem, batch_data, retry_state,
2037 closures, &num_closures);
2038 }
2039 // Don't need batch_data anymore.
2040 batch_data_unref(batch_data);
2041 // Schedule all of the closures identified above.
2042 // Note that the call combiner will be yielded for each closure that
2043 // we schedule. We're already running in the call combiner, so one of
2044 // the closures can be scheduled directly, but the others will
2045 // have to re-enter the call combiner.
2046 if (num_closures > 0) {
2047 GRPC_CLOSURE_SCHED(closures[0].closure, closures[0].error);
2048 for (size_t i = 1; i < num_closures; ++i) {
2049 GRPC_CALL_COMBINER_START(calld->call_combiner, closures[i].closure,
2050 closures[i].error, closures[i].reason);
2051 }
2052 } else {
2053 GRPC_CALL_COMBINER_STOP(calld->call_combiner,
2054 "no closures to run for on_complete");
2055 }
2056}
2057
2058//
2059// subchannel batch construction
2060//
2061
2062// Helper function used to start a subchannel batch in the call combiner.
2063static void start_batch_in_call_combiner(void* arg, grpc_error* ignored) {
2064 grpc_transport_stream_op_batch* batch =
2065 static_cast<grpc_transport_stream_op_batch*>(arg);
2066 grpc_subchannel_call* subchannel_call =
2067 static_cast<grpc_subchannel_call*>(batch->handler_private.extra_arg);
2068 // Note: This will release the call combiner.
2069 grpc_subchannel_call_process_op(subchannel_call, batch);
2070}
2071
2072// Adds retriable send_initial_metadata op to batch_data.
2073static void add_retriable_send_initial_metadata_op(
2074 call_data* calld, subchannel_call_retry_state* retry_state,
2075 subchannel_batch_data* batch_data) {
2076 // Maps the number of retries to the corresponding metadata value slice.
2077 static const grpc_slice* retry_count_strings[] = {
2078 &GRPC_MDSTR_1, &GRPC_MDSTR_2, &GRPC_MDSTR_3, &GRPC_MDSTR_4};
2079 // We need to make a copy of the metadata batch for each attempt, since
2080 // the filters in the subchannel stack may modify this batch, and we don't
2081 // want those modifications to be passed forward to subsequent attempts.
2082 //
2083 // If we've already completed one or more attempts, add the
2084 // grpc-retry-attempts header.
2085 batch_data->send_initial_metadata_storage =
2086 static_cast<grpc_linked_mdelem*>(gpr_arena_alloc(
2087 calld->arena, sizeof(grpc_linked_mdelem) *
2088 (calld->send_initial_metadata.list.count +
2089 (calld->num_attempts_completed > 0))));
2090 grpc_metadata_batch_copy(&calld->send_initial_metadata,
2091 &batch_data->send_initial_metadata,
2092 batch_data->send_initial_metadata_storage);
2093 if (batch_data->send_initial_metadata.idx.named.grpc_previous_rpc_attempts !=
2094 nullptr) {
2095 grpc_metadata_batch_remove(
2096 &batch_data->send_initial_metadata,
2097 batch_data->send_initial_metadata.idx.named.grpc_previous_rpc_attempts);
2098 }
2099 if (calld->num_attempts_completed > 0) {
2100 grpc_mdelem retry_md = grpc_mdelem_from_slices(
2101 GRPC_MDSTR_GRPC_PREVIOUS_RPC_ATTEMPTS,
2102 *retry_count_strings[calld->num_attempts_completed - 1]);
2103 grpc_error* error = grpc_metadata_batch_add_tail(
2104 &batch_data->send_initial_metadata,
2105 &batch_data->send_initial_metadata_storage[calld->send_initial_metadata
2106 .list.count],
2107 retry_md);
2108 if (error != GRPC_ERROR_NONE) {
2109 gpr_log(GPR_ERROR, "error adding retry metadata: %s",
2110 grpc_error_string(error));
2111 GPR_ASSERT(false);
2112 }
2113 }
2114 retry_state->started_send_initial_metadata = true;
2115 batch_data->batch.send_initial_metadata = true;
2116 batch_data->batch.payload->send_initial_metadata.send_initial_metadata =
2117 &batch_data->send_initial_metadata;
2118 batch_data->batch.payload->send_initial_metadata.send_initial_metadata_flags =
2119 calld->send_initial_metadata_flags;
2120 batch_data->batch.payload->send_initial_metadata.peer_string =
2121 calld->peer_string;
2122}
2123
2124// Adds retriable send_message op to batch_data.
2125static void add_retriable_send_message_op(
2126 grpc_call_element* elem, subchannel_call_retry_state* retry_state,
2127 subchannel_batch_data* batch_data) {
2128 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
2129 call_data* calld = static_cast<call_data*>(elem->call_data);
2130 if (grpc_client_channel_trace.enabled()) {
2131 gpr_log(GPR_DEBUG,
2132 "chand=%p calld=%p: starting calld->send_messages[%" PRIuPTR "]",
2133 chand, calld, retry_state->started_send_message_count);
2134 }
Mark D. Roth3d8b32d2018-03-09 13:25:40 -08002135 grpc_core::ByteStreamCache* cache =
Mark D. Roth718c8342018-02-28 13:00:04 -08002136 calld->send_messages[retry_state->started_send_message_count];
2137 ++retry_state->started_send_message_count;
Mark D. Roth3d8b32d2018-03-09 13:25:40 -08002138 batch_data->send_message.Init(cache);
Mark D. Roth718c8342018-02-28 13:00:04 -08002139 batch_data->batch.send_message = true;
Mark D. Roth3d8b32d2018-03-09 13:25:40 -08002140 batch_data->batch.payload->send_message.send_message.reset(
2141 batch_data->send_message.get());
Mark D. Roth718c8342018-02-28 13:00:04 -08002142}
2143
2144// Adds retriable send_trailing_metadata op to batch_data.
2145static void add_retriable_send_trailing_metadata_op(
2146 call_data* calld, subchannel_call_retry_state* retry_state,
2147 subchannel_batch_data* batch_data) {
2148 // We need to make a copy of the metadata batch for each attempt, since
2149 // the filters in the subchannel stack may modify this batch, and we don't
2150 // want those modifications to be passed forward to subsequent attempts.
2151 batch_data->send_trailing_metadata_storage =
2152 static_cast<grpc_linked_mdelem*>(gpr_arena_alloc(
2153 calld->arena, sizeof(grpc_linked_mdelem) *
2154 calld->send_trailing_metadata.list.count));
2155 grpc_metadata_batch_copy(&calld->send_trailing_metadata,
2156 &batch_data->send_trailing_metadata,
2157 batch_data->send_trailing_metadata_storage);
2158 retry_state->started_send_trailing_metadata = true;
2159 batch_data->batch.send_trailing_metadata = true;
2160 batch_data->batch.payload->send_trailing_metadata.send_trailing_metadata =
2161 &batch_data->send_trailing_metadata;
2162}
2163
2164// Adds retriable recv_initial_metadata op to batch_data.
2165static void add_retriable_recv_initial_metadata_op(
2166 call_data* calld, subchannel_call_retry_state* retry_state,
2167 subchannel_batch_data* batch_data) {
2168 retry_state->started_recv_initial_metadata = true;
2169 batch_data->batch.recv_initial_metadata = true;
2170 grpc_metadata_batch_init(&batch_data->recv_initial_metadata);
2171 batch_data->batch.payload->recv_initial_metadata.recv_initial_metadata =
2172 &batch_data->recv_initial_metadata;
2173 batch_data->batch.payload->recv_initial_metadata.trailing_metadata_available =
2174 &batch_data->trailing_metadata_available;
2175 GRPC_CLOSURE_INIT(&batch_data->recv_initial_metadata_ready,
2176 recv_initial_metadata_ready, batch_data,
2177 grpc_schedule_on_exec_ctx);
2178 batch_data->batch.payload->recv_initial_metadata.recv_initial_metadata_ready =
2179 &batch_data->recv_initial_metadata_ready;
2180}
2181
2182// Adds retriable recv_message op to batch_data.
2183static void add_retriable_recv_message_op(
2184 call_data* calld, subchannel_call_retry_state* retry_state,
2185 subchannel_batch_data* batch_data) {
2186 ++retry_state->started_recv_message_count;
2187 batch_data->batch.recv_message = true;
2188 batch_data->batch.payload->recv_message.recv_message =
2189 &batch_data->recv_message;
2190 GRPC_CLOSURE_INIT(&batch_data->recv_message_ready, recv_message_ready,
2191 batch_data, grpc_schedule_on_exec_ctx);
2192 batch_data->batch.payload->recv_message.recv_message_ready =
2193 &batch_data->recv_message_ready;
2194}
2195
2196// Adds retriable recv_trailing_metadata op to batch_data.
2197static void add_retriable_recv_trailing_metadata_op(
2198 call_data* calld, subchannel_call_retry_state* retry_state,
2199 subchannel_batch_data* batch_data) {
2200 retry_state->started_recv_trailing_metadata = true;
2201 batch_data->batch.recv_trailing_metadata = true;
2202 grpc_metadata_batch_init(&batch_data->recv_trailing_metadata);
2203 batch_data->batch.payload->recv_trailing_metadata.recv_trailing_metadata =
2204 &batch_data->recv_trailing_metadata;
2205 batch_data->batch.collect_stats = true;
2206 batch_data->batch.payload->collect_stats.collect_stats =
2207 &batch_data->collect_stats;
2208}
2209
2210// Helper function used to start a recv_trailing_metadata batch. This
2211// is used in the case where a recv_initial_metadata or recv_message
2212// op fails in a way that we know the call is over but when the application
2213// has not yet started its own recv_trailing_metadata op.
2214static void start_internal_recv_trailing_metadata(grpc_call_element* elem) {
2215 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
2216 call_data* calld = static_cast<call_data*>(elem->call_data);
2217 if (grpc_client_channel_trace.enabled()) {
2218 gpr_log(GPR_DEBUG,
2219 "chand=%p calld=%p: call failed but recv_trailing_metadata not "
2220 "started; starting it internally",
2221 chand, calld);
2222 }
2223 subchannel_call_retry_state* retry_state =
2224 static_cast<subchannel_call_retry_state*>(
2225 grpc_connected_subchannel_call_get_parent_data(
2226 calld->subchannel_call));
2227 subchannel_batch_data* batch_data = batch_data_create(elem, 1);
2228 add_retriable_recv_trailing_metadata_op(calld, retry_state, batch_data);
2229 // Note: This will release the call combiner.
2230 grpc_subchannel_call_process_op(calld->subchannel_call, &batch_data->batch);
2231}
2232
2233// If there are any cached send ops that need to be replayed on the
2234// current subchannel call, creates and returns a new subchannel batch
2235// to replay those ops. Otherwise, returns nullptr.
2236static subchannel_batch_data* maybe_create_subchannel_batch_for_replay(
2237 grpc_call_element* elem, subchannel_call_retry_state* retry_state) {
2238 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
2239 call_data* calld = static_cast<call_data*>(elem->call_data);
2240 subchannel_batch_data* replay_batch_data = nullptr;
2241 // send_initial_metadata.
2242 if (calld->seen_send_initial_metadata &&
2243 !retry_state->started_send_initial_metadata &&
2244 !calld->pending_send_initial_metadata) {
2245 if (grpc_client_channel_trace.enabled()) {
2246 gpr_log(GPR_DEBUG,
2247 "chand=%p calld=%p: replaying previously completed "
2248 "send_initial_metadata op",
2249 chand, calld);
2250 }
2251 replay_batch_data = batch_data_create(elem, 1);
2252 add_retriable_send_initial_metadata_op(calld, retry_state,
2253 replay_batch_data);
2254 }
2255 // send_message.
2256 // Note that we can only have one send_message op in flight at a time.
2257 if (retry_state->started_send_message_count < calld->send_messages.size() &&
2258 retry_state->started_send_message_count ==
2259 retry_state->completed_send_message_count &&
2260 !calld->pending_send_message) {
2261 if (grpc_client_channel_trace.enabled()) {
2262 gpr_log(GPR_DEBUG,
2263 "chand=%p calld=%p: replaying previously completed "
2264 "send_message op",
2265 chand, calld);
2266 }
2267 if (replay_batch_data == nullptr) {
2268 replay_batch_data = batch_data_create(elem, 1);
2269 }
2270 add_retriable_send_message_op(elem, retry_state, replay_batch_data);
2271 }
2272 // send_trailing_metadata.
2273 // Note that we only add this op if we have no more send_message ops
2274 // to start, since we can't send down any more send_message ops after
2275 // send_trailing_metadata.
2276 if (calld->seen_send_trailing_metadata &&
2277 retry_state->started_send_message_count == calld->send_messages.size() &&
2278 !retry_state->started_send_trailing_metadata &&
2279 !calld->pending_send_trailing_metadata) {
2280 if (grpc_client_channel_trace.enabled()) {
2281 gpr_log(GPR_DEBUG,
2282 "chand=%p calld=%p: replaying previously completed "
2283 "send_trailing_metadata op",
2284 chand, calld);
2285 }
2286 if (replay_batch_data == nullptr) {
2287 replay_batch_data = batch_data_create(elem, 1);
2288 }
2289 add_retriable_send_trailing_metadata_op(calld, retry_state,
2290 replay_batch_data);
2291 }
2292 return replay_batch_data;
2293}
2294
2295// Adds subchannel batches for pending batches to batches, updating
2296// *num_batches as needed.
2297static void add_subchannel_batches_for_pending_batches(
2298 grpc_call_element* elem, subchannel_call_retry_state* retry_state,
2299 grpc_transport_stream_op_batch** batches, size_t* num_batches) {
2300 call_data* calld = static_cast<call_data*>(elem->call_data);
2301 for (size_t i = 0; i < GPR_ARRAY_SIZE(calld->pending_batches); ++i) {
2302 pending_batch* pending = &calld->pending_batches[i];
2303 grpc_transport_stream_op_batch* batch = pending->batch;
2304 if (batch == nullptr) continue;
2305 // Skip any batch that either (a) has already been started on this
2306 // subchannel call or (b) we can't start yet because we're still
2307 // replaying send ops that need to be completed first.
2308 // TODO(roth): Note that if any one op in the batch can't be sent
2309 // yet due to ops that we're replaying, we don't start any of the ops
2310 // in the batch. This is probably okay, but it could conceivably
2311 // lead to increased latency in some cases -- e.g., we could delay
2312 // starting a recv op due to it being in the same batch with a send
2313 // op. If/when we revamp the callback protocol in
2314 // transport_stream_op_batch, we may be able to fix this.
2315 if (batch->send_initial_metadata &&
2316 retry_state->started_send_initial_metadata) {
2317 continue;
2318 }
2319 if (batch->send_message && retry_state->completed_send_message_count <
2320 retry_state->started_send_message_count) {
2321 continue;
2322 }
2323 // Note that we only start send_trailing_metadata if we have no more
2324 // send_message ops to start, since we can't send down any more
2325 // send_message ops after send_trailing_metadata.
2326 if (batch->send_trailing_metadata &&
2327 (retry_state->started_send_message_count + batch->send_message <
2328 calld->send_messages.size() ||
2329 retry_state->started_send_trailing_metadata)) {
2330 continue;
2331 }
2332 if (batch->recv_initial_metadata &&
2333 retry_state->started_recv_initial_metadata) {
2334 continue;
2335 }
2336 if (batch->recv_message && retry_state->completed_recv_message_count <
2337 retry_state->started_recv_message_count) {
2338 continue;
2339 }
2340 if (batch->recv_trailing_metadata &&
2341 retry_state->started_recv_trailing_metadata) {
2342 continue;
2343 }
2344 // If we're not retrying, just send the batch as-is.
2345 if (calld->method_params == nullptr ||
2346 calld->method_params->retry_policy() == nullptr ||
2347 calld->retry_committed) {
2348 batches[(*num_batches)++] = batch;
2349 pending_batch_clear(calld, pending);
2350 continue;
2351 }
2352 // Create batch with the right number of callbacks.
2353 const int num_callbacks =
2354 1 + batch->recv_initial_metadata + batch->recv_message;
2355 subchannel_batch_data* batch_data = batch_data_create(elem, num_callbacks);
2356 // Cache send ops if needed.
2357 maybe_cache_send_ops_for_batch(calld, pending);
2358 // send_initial_metadata.
2359 if (batch->send_initial_metadata) {
2360 add_retriable_send_initial_metadata_op(calld, retry_state, batch_data);
2361 }
2362 // send_message.
2363 if (batch->send_message) {
2364 add_retriable_send_message_op(elem, retry_state, batch_data);
2365 }
2366 // send_trailing_metadata.
2367 if (batch->send_trailing_metadata) {
2368 add_retriable_send_trailing_metadata_op(calld, retry_state, batch_data);
2369 }
2370 // recv_initial_metadata.
2371 if (batch->recv_initial_metadata) {
2372 // recv_flags is only used on the server side.
2373 GPR_ASSERT(batch->payload->recv_initial_metadata.recv_flags == nullptr);
2374 add_retriable_recv_initial_metadata_op(calld, retry_state, batch_data);
2375 }
2376 // recv_message.
2377 if (batch->recv_message) {
2378 add_retriable_recv_message_op(calld, retry_state, batch_data);
2379 }
2380 // recv_trailing_metadata.
2381 if (batch->recv_trailing_metadata) {
2382 GPR_ASSERT(batch->collect_stats);
2383 add_retriable_recv_trailing_metadata_op(calld, retry_state, batch_data);
2384 }
2385 batches[(*num_batches)++] = &batch_data->batch;
2386 }
2387}
2388
2389// Constructs and starts whatever subchannel batches are needed on the
2390// subchannel call.
2391static void start_retriable_subchannel_batches(void* arg, grpc_error* ignored) {
2392 grpc_call_element* elem = static_cast<grpc_call_element*>(arg);
2393 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
2394 call_data* calld = static_cast<call_data*>(elem->call_data);
2395 if (grpc_client_channel_trace.enabled()) {
2396 gpr_log(GPR_DEBUG, "chand=%p calld=%p: constructing retriable batches",
2397 chand, calld);
2398 }
2399 subchannel_call_retry_state* retry_state =
2400 static_cast<subchannel_call_retry_state*>(
2401 grpc_connected_subchannel_call_get_parent_data(
2402 calld->subchannel_call));
2403 // We can start up to 6 batches.
2404 grpc_transport_stream_op_batch*
2405 batches[GPR_ARRAY_SIZE(calld->pending_batches)];
2406 size_t num_batches = 0;
2407 // Replay previously-returned send_* ops if needed.
2408 subchannel_batch_data* replay_batch_data =
2409 maybe_create_subchannel_batch_for_replay(elem, retry_state);
2410 if (replay_batch_data != nullptr) {
2411 batches[num_batches++] = &replay_batch_data->batch;
2412 }
2413 // Now add pending batches.
2414 add_subchannel_batches_for_pending_batches(elem, retry_state, batches,
2415 &num_batches);
2416 // Start batches on subchannel call.
2417 // Note that the call combiner will be yielded for each batch that we
2418 // send down. We're already running in the call combiner, so one of
2419 // the batches can be started directly, but the others will have to
2420 // re-enter the call combiner.
2421 if (grpc_client_channel_trace.enabled()) {
2422 gpr_log(GPR_DEBUG,
2423 "chand=%p calld=%p: starting %" PRIuPTR
2424 " retriable batches on subchannel_call=%p",
2425 chand, calld, num_batches, calld->subchannel_call);
2426 }
2427 if (num_batches == 0) {
2428 // This should be fairly rare, but it can happen when (e.g.) an
2429 // attempt completes before it has finished replaying all
2430 // previously sent messages.
2431 GRPC_CALL_COMBINER_STOP(calld->call_combiner,
2432 "no retriable subchannel batches to start");
2433 } else {
2434 for (size_t i = 1; i < num_batches; ++i) {
2435 if (grpc_client_channel_trace.enabled()) {
2436 char* batch_str = grpc_transport_stream_op_batch_string(batches[i]);
2437 gpr_log(GPR_DEBUG,
2438 "chand=%p calld=%p: starting batch in call combiner: %s", chand,
2439 calld, batch_str);
2440 gpr_free(batch_str);
2441 }
2442 batches[i]->handler_private.extra_arg = calld->subchannel_call;
2443 GRPC_CLOSURE_INIT(&batches[i]->handler_private.closure,
2444 start_batch_in_call_combiner, batches[i],
2445 grpc_schedule_on_exec_ctx);
2446 GRPC_CALL_COMBINER_START(calld->call_combiner,
2447 &batches[i]->handler_private.closure,
2448 GRPC_ERROR_NONE, "start_subchannel_batch");
2449 }
2450 if (grpc_client_channel_trace.enabled()) {
2451 char* batch_str = grpc_transport_stream_op_batch_string(batches[0]);
2452 gpr_log(GPR_DEBUG, "chand=%p calld=%p: starting batch: %s", chand, calld,
2453 batch_str);
2454 gpr_free(batch_str);
2455 }
2456 // Note: This will release the call combiner.
2457 grpc_subchannel_call_process_op(calld->subchannel_call, batches[0]);
2458 }
2459}
2460
2461//
2462// LB pick
2463//
2464
2465static void create_subchannel_call(grpc_call_element* elem, grpc_error* error) {
2466 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
2467 call_data* calld = static_cast<call_data*>(elem->call_data);
2468 const size_t parent_data_size =
2469 calld->enable_retries ? sizeof(subchannel_call_retry_state) : 0;
David Garcia Quintasbaf1ac72018-01-09 14:24:32 -08002470 const grpc_core::ConnectedSubchannel::CallArgs call_args = {
Mark D. Rothc0febd32018-01-09 10:25:24 -08002471 calld->pollent, // pollent
2472 calld->path, // path
2473 calld->call_start_time, // start_time
2474 calld->deadline, // deadline
2475 calld->arena, // arena
2476 calld->pick.subchannel_call_context, // context
Mark D. Roth718c8342018-02-28 13:00:04 -08002477 calld->call_combiner, // call_combiner
2478 parent_data_size // parent_data_size
Yash Tibrewald8b84a22017-09-25 13:38:03 -07002479 };
David Garcia Quintas70fbe622018-01-09 19:27:46 -08002480 grpc_error* new_error = calld->pick.connected_subchannel->CreateCall(
David Garcia Quintasbaf1ac72018-01-09 14:24:32 -08002481 call_args, &calld->subchannel_call);
Craig Tiller6014e8a2017-10-16 13:50:29 -07002482 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth60751fe2017-07-07 12:50:33 -07002483 gpr_log(GPR_DEBUG, "chand=%p calld=%p: create subchannel_call=%p: error=%s",
Mark D. Roth76e264b2017-08-25 09:03:33 -07002484 chand, calld, calld->subchannel_call, grpc_error_string(new_error));
Mark D. Roth60751fe2017-07-07 12:50:33 -07002485 }
Mark D. Roth0ca0be82017-06-20 07:49:33 -07002486 if (new_error != GRPC_ERROR_NONE) {
2487 new_error = grpc_error_add_child(new_error, error);
Mark D. Roth718c8342018-02-28 13:00:04 -08002488 pending_batches_fail(elem, new_error, true /* yield_call_combiner */);
Mark D. Roth0ca0be82017-06-20 07:49:33 -07002489 } else {
Mark D. Roth718c8342018-02-28 13:00:04 -08002490 if (parent_data_size > 0) {
2491 subchannel_call_retry_state* retry_state =
2492 static_cast<subchannel_call_retry_state*>(
2493 grpc_connected_subchannel_call_get_parent_data(
2494 calld->subchannel_call));
2495 retry_state->batch_payload.context = calld->pick.subchannel_call_context;
2496 }
2497 pending_batches_resume(elem);
Craig Tiller11c17d42017-03-13 13:36:34 -07002498 }
Mark D. Roth0ca0be82017-06-20 07:49:33 -07002499 GRPC_ERROR_UNREF(error);
Craig Tiller11c17d42017-03-13 13:36:34 -07002500}
2501
Mark D. Rothb2929602017-09-11 09:31:11 -07002502// Invoked when a pick is completed, on both success or failure.
Mark D. Roth718c8342018-02-28 13:00:04 -08002503static void pick_done(void* arg, grpc_error* error) {
2504 grpc_call_element* elem = static_cast<grpc_call_element*>(arg);
Noah Eisenbe82e642018-02-09 09:16:55 -08002505 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
Mark D. Roth718c8342018-02-28 13:00:04 -08002506 call_data* calld = static_cast<call_data*>(elem->call_data);
David Garcia Quintasbe1b7f92018-01-12 14:01:38 -08002507 if (calld->pick.connected_subchannel == nullptr) {
Mark D. Roth0ca0be82017-06-20 07:49:33 -07002508 // Failed to create subchannel.
Mark D. Roth718c8342018-02-28 13:00:04 -08002509 // If there was no error, this is an LB policy drop, in which case
2510 // we return an error; otherwise, we may retry.
2511 grpc_status_code status = GRPC_STATUS_OK;
2512 grpc_error_get_status(error, calld->deadline, &status, nullptr, nullptr,
2513 nullptr);
2514 if (error == GRPC_ERROR_NONE || !calld->enable_retries ||
2515 !maybe_retry(elem, nullptr /* batch_data */, status,
2516 nullptr /* server_pushback_md */)) {
2517 grpc_error* new_error =
2518 error == GRPC_ERROR_NONE
2519 ? GRPC_ERROR_CREATE_FROM_STATIC_STRING(
2520 "Call dropped by load balancing policy")
2521 : GRPC_ERROR_CREATE_REFERENCING_FROM_STATIC_STRING(
2522 "Failed to create subchannel", &error, 1);
2523 if (grpc_client_channel_trace.enabled()) {
2524 gpr_log(GPR_DEBUG,
2525 "chand=%p calld=%p: failed to create subchannel: error=%s",
2526 chand, calld, grpc_error_string(new_error));
2527 }
2528 pending_batches_fail(elem, new_error, true /* yield_call_combiner */);
Mark D. Roth60751fe2017-07-07 12:50:33 -07002529 }
Mark D. Roth2a5959f2016-09-01 08:20:27 -07002530 } else {
Mark D. Roth9fe284e2016-09-12 11:22:27 -07002531 /* Create call on subchannel. */
Mark D. Roth718c8342018-02-28 13:00:04 -08002532 create_subchannel_call(elem, GRPC_ERROR_REF(error));
Mark D. Roth2a5959f2016-09-01 08:20:27 -07002533 }
Mark D. Roth718c8342018-02-28 13:00:04 -08002534}
2535
2536// Invoked when a pick is completed to leave the client_channel combiner
2537// and continue processing in the call combiner.
2538static void pick_done_locked(grpc_call_element* elem, grpc_error* error) {
2539 call_data* calld = static_cast<call_data*>(elem->call_data);
2540 GRPC_CLOSURE_INIT(&calld->pick_closure, pick_done, elem,
2541 grpc_schedule_on_exec_ctx);
2542 GRPC_CLOSURE_SCHED(&calld->pick_closure, error);
Mark D. Roth2a5959f2016-09-01 08:20:27 -07002543}
2544
Mark D. Rothb2929602017-09-11 09:31:11 -07002545// A wrapper around pick_done_locked() that is used in cases where
2546// either (a) the pick was deferred pending a resolver result or (b) the
2547// pick was done asynchronously. Removes the call's polling entity from
2548// chand->interested_parties before invoking pick_done_locked().
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002549static void async_pick_done_locked(grpc_call_element* elem, grpc_error* error) {
Noah Eisenbe82e642018-02-09 09:16:55 -08002550 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
2551 call_data* calld = static_cast<call_data*>(elem->call_data);
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002552 grpc_polling_entity_del_from_pollset_set(calld->pollent,
Mark D. Rothb2929602017-09-11 09:31:11 -07002553 chand->interested_parties);
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002554 pick_done_locked(elem, error);
Mark D. Rothb2929602017-09-11 09:31:11 -07002555}
2556
2557// Note: This runs under the client_channel combiner, but will NOT be
2558// holding the call combiner.
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002559static void pick_callback_cancel_locked(void* arg, grpc_error* error) {
Noah Eisenbe82e642018-02-09 09:16:55 -08002560 grpc_call_element* elem = static_cast<grpc_call_element*>(arg);
2561 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
2562 call_data* calld = static_cast<call_data*>(elem->call_data);
Mark D. Rothc0febd32018-01-09 10:25:24 -08002563 // Note: chand->lb_policy may have changed since we started our pick,
2564 // in which case we will be cancelling the pick on a policy other than
2565 // the one we started it on. However, this will just be a no-op.
2566 if (error != GRPC_ERROR_NONE && chand->lb_policy != nullptr) {
Craig Tiller6014e8a2017-10-16 13:50:29 -07002567 if (grpc_client_channel_trace.enabled()) {
Mark D. Rothb2929602017-09-11 09:31:11 -07002568 gpr_log(GPR_DEBUG, "chand=%p calld=%p: cancelling pick from LB policy %p",
Mark D. Rothc8875492018-02-20 08:33:48 -08002569 chand, calld, chand->lb_policy.get());
Mark D. Rothb2929602017-09-11 09:31:11 -07002570 }
Mark D. Rothc8875492018-02-20 08:33:48 -08002571 chand->lb_policy->CancelPickLocked(&calld->pick, GRPC_ERROR_REF(error));
Mark D. Rothb2929602017-09-11 09:31:11 -07002572 }
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002573 GRPC_CALL_STACK_UNREF(calld->owning_call, "pick_callback_cancel");
Mark D. Rothb2929602017-09-11 09:31:11 -07002574}
2575
Mark D. Rothc8875492018-02-20 08:33:48 -08002576// Callback invoked by LoadBalancingPolicy::PickLocked() for async picks.
Mark D. Rothb2929602017-09-11 09:31:11 -07002577// Unrefs the LB policy and invokes async_pick_done_locked().
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002578static void pick_callback_done_locked(void* arg, grpc_error* error) {
Noah Eisenbe82e642018-02-09 09:16:55 -08002579 grpc_call_element* elem = static_cast<grpc_call_element*>(arg);
2580 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
2581 call_data* calld = static_cast<call_data*>(elem->call_data);
Craig Tiller6014e8a2017-10-16 13:50:29 -07002582 if (grpc_client_channel_trace.enabled()) {
Mark D. Rothb2929602017-09-11 09:31:11 -07002583 gpr_log(GPR_DEBUG, "chand=%p calld=%p: pick completed asynchronously",
2584 chand, calld);
2585 }
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002586 async_pick_done_locked(elem, GRPC_ERROR_REF(error));
Ken Paysonf069dd42018-02-05 09:15:05 -08002587 GRPC_CALL_STACK_UNREF(calld->owning_call, "pick_callback");
Mark D. Rothb2929602017-09-11 09:31:11 -07002588}
2589
Mark D. Roth718c8342018-02-28 13:00:04 -08002590// Applies service config to the call. Must be invoked once we know
2591// that the resolver has returned results to the channel.
2592static void apply_service_config_to_call_locked(grpc_call_element* elem) {
2593 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
2594 call_data* calld = static_cast<call_data*>(elem->call_data);
2595 if (grpc_client_channel_trace.enabled()) {
2596 gpr_log(GPR_DEBUG, "chand=%p calld=%p: applying service config to call",
2597 chand, calld);
2598 }
2599 if (chand->retry_throttle_data != nullptr) {
Mark D. Roth9db86fc2018-03-28 07:42:20 -07002600 calld->retry_throttle_data = chand->retry_throttle_data->Ref();
Mark D. Roth718c8342018-02-28 13:00:04 -08002601 }
2602 if (chand->method_params_table != nullptr) {
2603 calld->method_params = grpc_core::ServiceConfig::MethodConfigTableLookup(
2604 *chand->method_params_table, calld->path);
2605 if (calld->method_params != nullptr) {
2606 // If the deadline from the service config is shorter than the one
2607 // from the client API, reset the deadline timer.
2608 if (chand->deadline_checking_enabled &&
2609 calld->method_params->timeout() != 0) {
2610 const grpc_millis per_method_deadline =
2611 grpc_timespec_to_millis_round_up(calld->call_start_time) +
2612 calld->method_params->timeout();
2613 if (per_method_deadline < calld->deadline) {
2614 calld->deadline = per_method_deadline;
2615 grpc_deadline_state_reset(elem, calld->deadline);
2616 }
2617 }
2618 }
2619 }
2620 // If no retry policy, disable retries.
2621 // TODO(roth): Remove this when adding support for transparent retries.
2622 if (calld->method_params == nullptr ||
2623 calld->method_params->retry_policy() == nullptr) {
2624 calld->enable_retries = false;
2625 }
2626}
2627
Mark D. Rothc8875492018-02-20 08:33:48 -08002628// Starts a pick on chand->lb_policy.
2629// Returns true if pick is completed synchronously.
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002630static bool pick_callback_start_locked(grpc_call_element* elem) {
Noah Eisenbe82e642018-02-09 09:16:55 -08002631 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
2632 call_data* calld = static_cast<call_data*>(elem->call_data);
Craig Tiller6014e8a2017-10-16 13:50:29 -07002633 if (grpc_client_channel_trace.enabled()) {
Mark D. Rothb2929602017-09-11 09:31:11 -07002634 gpr_log(GPR_DEBUG, "chand=%p calld=%p: starting pick on lb_policy=%p",
Mark D. Rothc8875492018-02-20 08:33:48 -08002635 chand, calld, chand->lb_policy.get());
Mark D. Rothb2929602017-09-11 09:31:11 -07002636 }
Mark D. Roth718c8342018-02-28 13:00:04 -08002637 // Only get service config data on the first attempt.
2638 if (calld->num_attempts_completed == 0) {
2639 apply_service_config_to_call_locked(elem);
2640 }
Mark D. Rothb2929602017-09-11 09:31:11 -07002641 // If the application explicitly set wait_for_ready, use that.
2642 // Otherwise, if the service config specified a value for this
2643 // method, use that.
Mark D. Roth718c8342018-02-28 13:00:04 -08002644 //
2645 // The send_initial_metadata batch will be the first one in the list,
2646 // as set by get_batch_index() above.
2647 calld->pick.initial_metadata =
2648 calld->seen_send_initial_metadata
2649 ? &calld->send_initial_metadata
2650 : calld->pending_batches[0]
2651 .batch->payload->send_initial_metadata.send_initial_metadata;
2652 uint32_t send_initial_metadata_flags =
2653 calld->seen_send_initial_metadata
2654 ? calld->send_initial_metadata_flags
2655 : calld->pending_batches[0]
2656 .batch->payload->send_initial_metadata
2657 .send_initial_metadata_flags;
Mark D. Rothb2929602017-09-11 09:31:11 -07002658 const bool wait_for_ready_set_from_api =
Mark D. Roth718c8342018-02-28 13:00:04 -08002659 send_initial_metadata_flags &
Mark D. Rothb2929602017-09-11 09:31:11 -07002660 GRPC_INITIAL_METADATA_WAIT_FOR_READY_EXPLICITLY_SET;
2661 const bool wait_for_ready_set_from_service_config =
Craig Tiller4782d922017-11-10 09:53:21 -08002662 calld->method_params != nullptr &&
Mark D. Roth3e7f2df2018-02-26 13:17:06 -08002663 calld->method_params->wait_for_ready() !=
2664 ClientChannelMethodParams::WAIT_FOR_READY_UNSET;
Mark D. Rothb2929602017-09-11 09:31:11 -07002665 if (!wait_for_ready_set_from_api && wait_for_ready_set_from_service_config) {
Mark D. Roth3e7f2df2018-02-26 13:17:06 -08002666 if (calld->method_params->wait_for_ready() ==
2667 ClientChannelMethodParams::WAIT_FOR_READY_TRUE) {
Mark D. Roth718c8342018-02-28 13:00:04 -08002668 send_initial_metadata_flags |= GRPC_INITIAL_METADATA_WAIT_FOR_READY;
Mark D. Rothb2929602017-09-11 09:31:11 -07002669 } else {
Mark D. Roth718c8342018-02-28 13:00:04 -08002670 send_initial_metadata_flags &= ~GRPC_INITIAL_METADATA_WAIT_FOR_READY;
Mark D. Rothb2929602017-09-11 09:31:11 -07002671 }
2672 }
Mark D. Roth718c8342018-02-28 13:00:04 -08002673 calld->pick.initial_metadata_flags = send_initial_metadata_flags;
2674 GRPC_CLOSURE_INIT(&calld->pick_closure, pick_callback_done_locked, elem,
Mark D. Rothb2929602017-09-11 09:31:11 -07002675 grpc_combiner_scheduler(chand->combiner));
Mark D. Roth718c8342018-02-28 13:00:04 -08002676 calld->pick.on_complete = &calld->pick_closure;
Ken Paysonf069dd42018-02-05 09:15:05 -08002677 GRPC_CALL_STACK_REF(calld->owning_call, "pick_callback");
Mark D. Rothc8875492018-02-20 08:33:48 -08002678 const bool pick_done = chand->lb_policy->PickLocked(&calld->pick);
Mark D. Rothb2929602017-09-11 09:31:11 -07002679 if (pick_done) {
Mark D. Rothc8875492018-02-20 08:33:48 -08002680 // Pick completed synchronously.
Craig Tiller6014e8a2017-10-16 13:50:29 -07002681 if (grpc_client_channel_trace.enabled()) {
Mark D. Rothb2929602017-09-11 09:31:11 -07002682 gpr_log(GPR_DEBUG, "chand=%p calld=%p: pick completed synchronously",
2683 chand, calld);
2684 }
Ken Paysonf069dd42018-02-05 09:15:05 -08002685 GRPC_CALL_STACK_UNREF(calld->owning_call, "pick_callback");
Mark D. Rothb2929602017-09-11 09:31:11 -07002686 } else {
2687 GRPC_CALL_STACK_REF(calld->owning_call, "pick_callback_cancel");
2688 grpc_call_combiner_set_notify_on_cancel(
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002689 calld->call_combiner,
Mark D. Roth718c8342018-02-28 13:00:04 -08002690 GRPC_CLOSURE_INIT(&calld->pick_cancel_closure,
Mark D. Rothb2929602017-09-11 09:31:11 -07002691 pick_callback_cancel_locked, elem,
2692 grpc_combiner_scheduler(chand->combiner)));
2693 }
2694 return pick_done;
2695}
Mark D. Roth0ca0be82017-06-20 07:49:33 -07002696
Craig Tiller577c9b22015-11-02 14:11:15 -08002697typedef struct {
Craig Tillerbaa14a92017-11-03 09:09:36 -07002698 grpc_call_element* elem;
Mark D. Roth66f3d2b2017-09-01 09:02:17 -07002699 bool finished;
Craig Tiller577c9b22015-11-02 14:11:15 -08002700 grpc_closure closure;
Mark D. Roth66f3d2b2017-09-01 09:02:17 -07002701 grpc_closure cancel_closure;
Mark D. Roth0ca0be82017-06-20 07:49:33 -07002702} pick_after_resolver_result_args;
Craig Tiller577c9b22015-11-02 14:11:15 -08002703
Mark D. Roth76e264b2017-08-25 09:03:33 -07002704// Note: This runs under the client_channel combiner, but will NOT be
2705// holding the call combiner.
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002706static void pick_after_resolver_result_cancel_locked(void* arg,
Craig Tillerbaa14a92017-11-03 09:09:36 -07002707 grpc_error* error) {
Noah Eisen4d20a662018-02-09 09:34:04 -08002708 pick_after_resolver_result_args* args =
2709 static_cast<pick_after_resolver_result_args*>(arg);
Mark D. Roth66f3d2b2017-09-01 09:02:17 -07002710 if (args->finished) {
2711 gpr_free(args);
Mark D. Rothb2b9a0f2017-09-01 09:06:47 -07002712 return;
Mark D. Roth764cf042017-09-01 09:00:06 -07002713 }
Mark D. Roth76e264b2017-08-25 09:03:33 -07002714 // If we don't yet have a resolver result, then a closure for
2715 // pick_after_resolver_result_done_locked() will have been added to
2716 // chand->waiting_for_resolver_result_closures, and it may not be invoked
2717 // until after this call has been destroyed. We mark the operation as
Mark D. Rothb2b9a0f2017-09-01 09:06:47 -07002718 // finished, so that when pick_after_resolver_result_done_locked()
Mark D. Roth76e264b2017-08-25 09:03:33 -07002719 // is called, it will be a no-op. We also immediately invoke
Mark D. Rothb2929602017-09-11 09:31:11 -07002720 // async_pick_done_locked() to propagate the error back to the caller.
2721 args->finished = true;
Craig Tillerbaa14a92017-11-03 09:09:36 -07002722 grpc_call_element* elem = args->elem;
Noah Eisenbe82e642018-02-09 09:16:55 -08002723 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
2724 call_data* calld = static_cast<call_data*>(elem->call_data);
Craig Tiller6014e8a2017-10-16 13:50:29 -07002725 if (grpc_client_channel_trace.enabled()) {
Mark D. Rothb2b9a0f2017-09-01 09:06:47 -07002726 gpr_log(GPR_DEBUG,
2727 "chand=%p calld=%p: cancelling pick waiting for resolver result",
2728 chand, calld);
Mark D. Roth76e264b2017-08-25 09:03:33 -07002729 }
Mark D. Rothb2b9a0f2017-09-01 09:06:47 -07002730 // Note: Although we are not in the call combiner here, we are
2731 // basically stealing the call combiner from the pending pick, so
Mark D. Rothb2929602017-09-11 09:31:11 -07002732 // it's safe to call async_pick_done_locked() here -- we are
Mark D. Rothb2b9a0f2017-09-01 09:06:47 -07002733 // essentially calling it here instead of calling it in
2734 // pick_after_resolver_result_done_locked().
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002735 async_pick_done_locked(elem, GRPC_ERROR_CREATE_REFERENCING_FROM_STATIC_STRING(
2736 "Pick cancelled", &error, 1));
Mark D. Roth76e264b2017-08-25 09:03:33 -07002737}
2738
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002739static void pick_after_resolver_result_done_locked(void* arg,
Craig Tillerbaa14a92017-11-03 09:09:36 -07002740 grpc_error* error) {
Noah Eisen4d20a662018-02-09 09:34:04 -08002741 pick_after_resolver_result_args* args =
2742 static_cast<pick_after_resolver_result_args*>(arg);
Mark D. Roth66f3d2b2017-09-01 09:02:17 -07002743 if (args->finished) {
Craig Tiller577c9b22015-11-02 14:11:15 -08002744 /* cancelled, do nothing */
Craig Tiller6014e8a2017-10-16 13:50:29 -07002745 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth60751fe2017-07-07 12:50:33 -07002746 gpr_log(GPR_DEBUG, "call cancelled before resolver result");
2747 }
Mark D. Roth66f3d2b2017-09-01 09:02:17 -07002748 gpr_free(args);
Mark D. Rothb2b9a0f2017-09-01 09:06:47 -07002749 return;
2750 }
2751 args->finished = true;
Craig Tillerbaa14a92017-11-03 09:09:36 -07002752 grpc_call_element* elem = args->elem;
Noah Eisenbe82e642018-02-09 09:16:55 -08002753 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
2754 call_data* calld = static_cast<call_data*>(elem->call_data);
Mark D. Rothb2b9a0f2017-09-01 09:06:47 -07002755 if (error != GRPC_ERROR_NONE) {
Craig Tiller6014e8a2017-10-16 13:50:29 -07002756 if (grpc_client_channel_trace.enabled()) {
Mark D. Rothb2b9a0f2017-09-01 09:06:47 -07002757 gpr_log(GPR_DEBUG, "chand=%p calld=%p: resolver failed to return data",
2758 chand, calld);
2759 }
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002760 async_pick_done_locked(elem, GRPC_ERROR_REF(error));
Mark D. Rothe63e06d2018-03-23 08:12:11 -07002761 } else if (chand->resolver == nullptr) {
2762 // Shutting down.
2763 if (grpc_client_channel_trace.enabled()) {
2764 gpr_log(GPR_DEBUG, "chand=%p calld=%p: resolver disconnected", chand,
2765 calld);
2766 }
2767 async_pick_done_locked(
2768 elem, GRPC_ERROR_CREATE_FROM_STATIC_STRING("Disconnected"));
2769 } else if (chand->lb_policy == nullptr) {
2770 // Transient resolver failure.
2771 // If call has wait_for_ready=true, try again; otherwise, fail.
2772 uint32_t send_initial_metadata_flags =
2773 calld->seen_send_initial_metadata
2774 ? calld->send_initial_metadata_flags
2775 : calld->pending_batches[0]
2776 .batch->payload->send_initial_metadata
2777 .send_initial_metadata_flags;
2778 if (send_initial_metadata_flags & GRPC_INITIAL_METADATA_WAIT_FOR_READY) {
2779 if (grpc_client_channel_trace.enabled()) {
2780 gpr_log(GPR_DEBUG,
2781 "chand=%p calld=%p: resolver returned but no LB policy; "
2782 "wait_for_ready=true; trying again",
2783 chand, calld);
2784 }
2785 pick_after_resolver_result_start_locked(elem);
2786 } else {
2787 if (grpc_client_channel_trace.enabled()) {
2788 gpr_log(GPR_DEBUG,
2789 "chand=%p calld=%p: resolver returned but no LB policy; "
2790 "wait_for_ready=false; failing",
2791 chand, calld);
2792 }
2793 async_pick_done_locked(
2794 elem,
2795 grpc_error_set_int(
2796 GRPC_ERROR_CREATE_FROM_STATIC_STRING("Name resolution failure"),
2797 GRPC_ERROR_INT_GRPC_STATUS, GRPC_STATUS_UNAVAILABLE));
2798 }
2799 } else {
Craig Tiller6014e8a2017-10-16 13:50:29 -07002800 if (grpc_client_channel_trace.enabled()) {
Mark D. Rothb2b9a0f2017-09-01 09:06:47 -07002801 gpr_log(GPR_DEBUG, "chand=%p calld=%p: resolver returned, doing pick",
2802 chand, calld);
2803 }
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002804 if (pick_callback_start_locked(elem)) {
Mark D. Rothb2929602017-09-11 09:31:11 -07002805 // Even if the LB policy returns a result synchronously, we have
2806 // already added our polling entity to chand->interested_parties
2807 // in order to wait for the resolver result, so we need to
2808 // remove it here. Therefore, we call async_pick_done_locked()
2809 // instead of pick_done_locked().
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002810 async_pick_done_locked(elem, GRPC_ERROR_NONE);
Mark D. Roth9dab7d52016-10-07 07:48:03 -07002811 }
Craig Tiller577c9b22015-11-02 14:11:15 -08002812 }
Craig Tiller577c9b22015-11-02 14:11:15 -08002813}
2814
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002815static void pick_after_resolver_result_start_locked(grpc_call_element* elem) {
Noah Eisenbe82e642018-02-09 09:16:55 -08002816 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
2817 call_data* calld = static_cast<call_data*>(elem->call_data);
Craig Tiller6014e8a2017-10-16 13:50:29 -07002818 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth60751fe2017-07-07 12:50:33 -07002819 gpr_log(GPR_DEBUG,
2820 "chand=%p calld=%p: deferring pick pending resolver result", chand,
2821 calld);
Mark D. Roth64a317c2017-05-02 08:27:08 -07002822 }
Craig Tillerbaa14a92017-11-03 09:09:36 -07002823 pick_after_resolver_result_args* args =
Noah Eisenbe82e642018-02-09 09:16:55 -08002824 static_cast<pick_after_resolver_result_args*>(gpr_zalloc(sizeof(*args)));
Mark D. Roth60751fe2017-07-07 12:50:33 -07002825 args->elem = elem;
2826 GRPC_CLOSURE_INIT(&args->closure, pick_after_resolver_result_done_locked,
2827 args, grpc_combiner_scheduler(chand->combiner));
2828 grpc_closure_list_append(&chand->waiting_for_resolver_result_closures,
2829 &args->closure, GRPC_ERROR_NONE);
Mark D. Roth76e264b2017-08-25 09:03:33 -07002830 grpc_call_combiner_set_notify_on_cancel(
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002831 calld->call_combiner,
Mark D. Roth66f3d2b2017-09-01 09:02:17 -07002832 GRPC_CLOSURE_INIT(&args->cancel_closure,
2833 pick_after_resolver_result_cancel_locked, args,
Mark D. Roth76e264b2017-08-25 09:03:33 -07002834 grpc_combiner_scheduler(chand->combiner)));
Mark D. Roth60751fe2017-07-07 12:50:33 -07002835}
2836
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002837static void start_pick_locked(void* arg, grpc_error* ignored) {
Noah Eisenbe82e642018-02-09 09:16:55 -08002838 grpc_call_element* elem = static_cast<grpc_call_element*>(arg);
2839 call_data* calld = static_cast<call_data*>(elem->call_data);
2840 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
David Garcia Quintasbe1b7f92018-01-12 14:01:38 -08002841 GPR_ASSERT(calld->pick.connected_subchannel == nullptr);
Mark D. Roth718c8342018-02-28 13:00:04 -08002842 GPR_ASSERT(calld->subchannel_call == nullptr);
Craig Tiller4782d922017-11-10 09:53:21 -08002843 if (chand->lb_policy != nullptr) {
Mark D. Rothb2929602017-09-11 09:31:11 -07002844 // We already have an LB policy, so ask it for a pick.
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002845 if (pick_callback_start_locked(elem)) {
Mark D. Rothb2929602017-09-11 09:31:11 -07002846 // Pick completed synchronously.
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002847 pick_done_locked(elem, GRPC_ERROR_NONE);
Mark D. Rothb2929602017-09-11 09:31:11 -07002848 return;
Mark D. Roth2a5959f2016-09-01 08:20:27 -07002849 }
Mark D. Roth76e264b2017-08-25 09:03:33 -07002850 } else {
Mark D. Rothb2929602017-09-11 09:31:11 -07002851 // We do not yet have an LB policy, so wait for a resolver result.
Craig Tiller4782d922017-11-10 09:53:21 -08002852 if (chand->resolver == nullptr) {
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002853 pick_done_locked(elem,
Mark D. Rothb2929602017-09-11 09:31:11 -07002854 GRPC_ERROR_CREATE_FROM_STATIC_STRING("Disconnected"));
2855 return;
2856 }
2857 if (!chand->started_resolving) {
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002858 start_resolving_locked(chand);
Mark D. Rothb2929602017-09-11 09:31:11 -07002859 }
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002860 pick_after_resolver_result_start_locked(elem);
Mark D. Roth2a5959f2016-09-01 08:20:27 -07002861 }
Mark D. Rothb2929602017-09-11 09:31:11 -07002862 // We need to wait for either a resolver result or for an async result
2863 // from the LB policy. Add the polling entity from call_data to the
2864 // channel_data's interested_parties, so that the I/O of the LB policy
2865 // and resolver can be done under it. The polling entity will be
2866 // removed in async_pick_done_locked().
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002867 grpc_polling_entity_add_to_pollset_set(calld->pollent,
Mark D. Rothb2929602017-09-11 09:31:11 -07002868 chand->interested_parties);
Craig Tillera11bfc82017-02-14 09:56:33 -08002869}
2870
Mark D. Roth718c8342018-02-28 13:00:04 -08002871//
2872// filter call vtable functions
2873//
Mark D. Rothd6d192d2017-02-23 08:58:42 -08002874
Craig Tillere1b51da2017-03-31 15:44:33 -07002875static void cc_start_transport_stream_op_batch(
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002876 grpc_call_element* elem, grpc_transport_stream_op_batch* batch) {
yang-gce1cfea2018-01-31 15:59:50 -08002877 GPR_TIMER_SCOPE("cc_start_transport_stream_op_batch", 0);
Noah Eisenbe82e642018-02-09 09:16:55 -08002878 call_data* calld = static_cast<call_data*>(elem->call_data);
2879 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
Craig Tiller3be7dd02017-04-03 14:30:03 -07002880 if (chand->deadline_checking_enabled) {
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002881 grpc_deadline_state_client_start_transport_stream_op_batch(elem, batch);
Craig Tiller3be7dd02017-04-03 14:30:03 -07002882 }
Mark D. Roth76e264b2017-08-25 09:03:33 -07002883 // If we've previously been cancelled, immediately fail any new batches.
Mark D. Roth718c8342018-02-28 13:00:04 -08002884 if (calld->cancel_error != GRPC_ERROR_NONE) {
Craig Tiller6014e8a2017-10-16 13:50:29 -07002885 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth76e264b2017-08-25 09:03:33 -07002886 gpr_log(GPR_DEBUG, "chand=%p calld=%p: failing batch with error: %s",
Mark D. Roth718c8342018-02-28 13:00:04 -08002887 chand, calld, grpc_error_string(calld->cancel_error));
Mark D. Roth76e264b2017-08-25 09:03:33 -07002888 }
Mark D. Roth718c8342018-02-28 13:00:04 -08002889 // Note: This will release the call combiner.
Mark D. Roth76e264b2017-08-25 09:03:33 -07002890 grpc_transport_stream_op_batch_finish_with_failure(
Mark D. Roth718c8342018-02-28 13:00:04 -08002891 batch, GRPC_ERROR_REF(calld->cancel_error), calld->call_combiner);
yang-gce1cfea2018-01-31 15:59:50 -08002892 return;
Mark D. Roth76e264b2017-08-25 09:03:33 -07002893 }
Mark D. Roth718c8342018-02-28 13:00:04 -08002894 // Handle cancellation.
Mark D. Roth76e264b2017-08-25 09:03:33 -07002895 if (batch->cancel_stream) {
2896 // Stash a copy of cancel_error in our call data, so that we can use
2897 // it for subsequent operations. This ensures that if the call is
2898 // cancelled before any batches are passed down (e.g., if the deadline
2899 // is in the past when the call starts), we can return the right
2900 // error to the caller when the first batch does get passed down.
Mark D. Roth718c8342018-02-28 13:00:04 -08002901 GRPC_ERROR_UNREF(calld->cancel_error);
2902 calld->cancel_error =
2903 GRPC_ERROR_REF(batch->payload->cancel_stream.cancel_error);
Craig Tiller6014e8a2017-10-16 13:50:29 -07002904 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth76e264b2017-08-25 09:03:33 -07002905 gpr_log(GPR_DEBUG, "chand=%p calld=%p: recording cancel_error=%s", chand,
Mark D. Roth718c8342018-02-28 13:00:04 -08002906 calld, grpc_error_string(calld->cancel_error));
Mark D. Roth76e264b2017-08-25 09:03:33 -07002907 }
Mark D. Roth718c8342018-02-28 13:00:04 -08002908 // If we do not have a subchannel call (i.e., a pick has not yet
2909 // been started), fail all pending batches. Otherwise, send the
2910 // cancellation down to the subchannel call.
2911 if (calld->subchannel_call == nullptr) {
2912 pending_batches_fail(elem, GRPC_ERROR_REF(calld->cancel_error),
2913 false /* yield_call_combiner */);
2914 // Note: This will release the call combiner.
2915 grpc_transport_stream_op_batch_finish_with_failure(
2916 batch, GRPC_ERROR_REF(calld->cancel_error), calld->call_combiner);
Mark D. Roth76e264b2017-08-25 09:03:33 -07002917 } else {
Mark D. Roth718c8342018-02-28 13:00:04 -08002918 // Note: This will release the call combiner.
2919 grpc_subchannel_call_process_op(calld->subchannel_call, batch);
Mark D. Roth76e264b2017-08-25 09:03:33 -07002920 }
yang-gce1cfea2018-01-31 15:59:50 -08002921 return;
Mark D. Roth76e264b2017-08-25 09:03:33 -07002922 }
Mark D. Roth718c8342018-02-28 13:00:04 -08002923 // Add the batch to the pending list.
2924 pending_batches_add(elem, batch);
Mark D. Roth76e264b2017-08-25 09:03:33 -07002925 // Check if we've already gotten a subchannel call.
2926 // Note that once we have completed the pick, we do not need to enter
2927 // the channel combiner, which is more efficient (especially for
2928 // streaming calls).
Craig Tiller4782d922017-11-10 09:53:21 -08002929 if (calld->subchannel_call != nullptr) {
Craig Tiller6014e8a2017-10-16 13:50:29 -07002930 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth60751fe2017-07-07 12:50:33 -07002931 gpr_log(GPR_DEBUG,
Mark D. Roth718c8342018-02-28 13:00:04 -08002932 "chand=%p calld=%p: starting batch on subchannel_call=%p", chand,
Mark D. Roth76e264b2017-08-25 09:03:33 -07002933 calld, calld->subchannel_call);
Mark D. Roth60751fe2017-07-07 12:50:33 -07002934 }
Mark D. Roth718c8342018-02-28 13:00:04 -08002935 pending_batches_resume(elem);
yang-gce1cfea2018-01-31 15:59:50 -08002936 return;
Mark D. Roth2a5959f2016-09-01 08:20:27 -07002937 }
Mark D. Roth76e264b2017-08-25 09:03:33 -07002938 // We do not yet have a subchannel call.
Mark D. Roth76e264b2017-08-25 09:03:33 -07002939 // For batches containing a send_initial_metadata op, enter the channel
2940 // combiner to start a pick.
2941 if (batch->send_initial_metadata) {
Craig Tiller6014e8a2017-10-16 13:50:29 -07002942 if (grpc_client_channel_trace.enabled()) {
Mark D. Rothb2929602017-09-11 09:31:11 -07002943 gpr_log(GPR_DEBUG, "chand=%p calld=%p: entering client_channel combiner",
2944 chand, calld);
Mark D. Roth76e264b2017-08-25 09:03:33 -07002945 }
2946 GRPC_CLOSURE_SCHED(
Mark D. Roth76e264b2017-08-25 09:03:33 -07002947 GRPC_CLOSURE_INIT(&batch->handler_private.closure, start_pick_locked,
2948 elem, grpc_combiner_scheduler(chand->combiner)),
2949 GRPC_ERROR_NONE);
2950 } else {
2951 // For all other batches, release the call combiner.
Craig Tiller6014e8a2017-10-16 13:50:29 -07002952 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth76e264b2017-08-25 09:03:33 -07002953 gpr_log(GPR_DEBUG,
2954 "chand=%p calld=%p: saved batch, yeilding call combiner", chand,
2955 calld);
2956 }
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002957 GRPC_CALL_COMBINER_STOP(calld->call_combiner,
Mark D. Roth76e264b2017-08-25 09:03:33 -07002958 "batch does not include send_initial_metadata");
Mark D. Roth60751fe2017-07-07 12:50:33 -07002959 }
Mark D. Roth2a5959f2016-09-01 08:20:27 -07002960}
2961
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002962/* Constructor for call_data */
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002963static grpc_error* cc_init_call_elem(grpc_call_element* elem,
Craig Tillerbaa14a92017-11-03 09:09:36 -07002964 const grpc_call_element_args* args) {
Noah Eisenbe82e642018-02-09 09:16:55 -08002965 call_data* calld = static_cast<call_data*>(elem->call_data);
2966 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
Mark D. Rothe40dd292016-10-05 14:58:37 -07002967 // Initialize data members.
Craig Tiller7c70b6c2017-01-23 07:48:42 -08002968 calld->path = grpc_slice_ref_internal(args->path);
Mark D. Rothff08f332016-10-14 13:01:01 -07002969 calld->call_start_time = args->start_time;
Craig Tiller89c14282017-07-19 15:32:27 -07002970 calld->deadline = args->deadline;
Craig Tillerd426cac2017-03-13 12:30:45 -07002971 calld->arena = args->arena;
Mark D. Roth66f3d2b2017-09-01 09:02:17 -07002972 calld->owning_call = args->call_stack;
Mark D. Roth76e264b2017-08-25 09:03:33 -07002973 calld->call_combiner = args->call_combiner;
Craig Tiller3be7dd02017-04-03 14:30:03 -07002974 if (chand->deadline_checking_enabled) {
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002975 grpc_deadline_state_init(elem, args->call_stack, args->call_combiner,
2976 calld->deadline);
Craig Tiller3be7dd02017-04-03 14:30:03 -07002977 }
Mark D. Roth718c8342018-02-28 13:00:04 -08002978 calld->enable_retries = chand->enable_retries;
Mark D. Roth0badbe82016-06-23 10:15:12 -07002979 return GRPC_ERROR_NONE;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08002980}
2981
2982/* Destructor for call_data */
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002983static void cc_destroy_call_elem(grpc_call_element* elem,
Craig Tillerbaa14a92017-11-03 09:09:36 -07002984 const grpc_call_final_info* final_info,
2985 grpc_closure* then_schedule_closure) {
Noah Eisenbe82e642018-02-09 09:16:55 -08002986 call_data* calld = static_cast<call_data*>(elem->call_data);
2987 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
Craig Tiller3be7dd02017-04-03 14:30:03 -07002988 if (chand->deadline_checking_enabled) {
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002989 grpc_deadline_state_destroy(elem);
Craig Tiller3be7dd02017-04-03 14:30:03 -07002990 }
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002991 grpc_slice_unref_internal(calld->path);
Mark D. Roth9db86fc2018-03-28 07:42:20 -07002992 calld->retry_throttle_data.reset();
Mark D. Roth3e7f2df2018-02-26 13:17:06 -08002993 calld->method_params.reset();
Mark D. Roth718c8342018-02-28 13:00:04 -08002994 GRPC_ERROR_UNREF(calld->cancel_error);
Craig Tiller4782d922017-11-10 09:53:21 -08002995 if (calld->subchannel_call != nullptr) {
Mark D. Roth76e264b2017-08-25 09:03:33 -07002996 grpc_subchannel_call_set_cleanup_closure(calld->subchannel_call,
Craig Tillerf7c8c9f2017-05-17 15:22:05 -07002997 then_schedule_closure);
Craig Tiller4782d922017-11-10 09:53:21 -08002998 then_schedule_closure = nullptr;
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002999 GRPC_SUBCHANNEL_CALL_UNREF(calld->subchannel_call,
Craig Tillerf7c8c9f2017-05-17 15:22:05 -07003000 "client_channel_destroy_call");
Mark D. Roth4c0fe492016-08-31 13:51:55 -07003001 }
Mark D. Roth718c8342018-02-28 13:00:04 -08003002 for (size_t i = 0; i < GPR_ARRAY_SIZE(calld->pending_batches); ++i) {
3003 GPR_ASSERT(calld->pending_batches[i].batch == nullptr);
3004 }
David Garcia Quintasbe1b7f92018-01-12 14:01:38 -08003005 if (calld->pick.connected_subchannel != nullptr) {
David Garcia Quintasdfa28512018-01-11 18:31:13 -08003006 calld->pick.connected_subchannel.reset();
Craig Tiller693d3942016-10-27 16:51:25 -07003007 }
Mark D. Roth09e458c2017-05-02 08:13:26 -07003008 for (size_t i = 0; i < GRPC_CONTEXT_COUNT; ++i) {
Mark D. Rothc0febd32018-01-09 10:25:24 -08003009 if (calld->pick.subchannel_call_context[i].value != nullptr) {
3010 calld->pick.subchannel_call_context[i].destroy(
3011 calld->pick.subchannel_call_context[i].value);
Mark D. Roth09e458c2017-05-02 08:13:26 -07003012 }
3013 }
Yash Tibrewal8cf14702017-12-06 09:47:54 -08003014 GRPC_CLOSURE_SCHED(then_schedule_closure, GRPC_ERROR_NONE);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003015}
3016
Yash Tibrewal8cf14702017-12-06 09:47:54 -08003017static void cc_set_pollset_or_pollset_set(grpc_call_element* elem,
Craig Tillerbaa14a92017-11-03 09:09:36 -07003018 grpc_polling_entity* pollent) {
Noah Eisenbe82e642018-02-09 09:16:55 -08003019 call_data* calld = static_cast<call_data*>(elem->call_data);
David Garcia Quintas2a50dfe2016-05-31 15:09:12 -07003020 calld->pollent = pollent;
Craig Tiller577c9b22015-11-02 14:11:15 -08003021}
3022
Mark D. Roth2a5959f2016-09-01 08:20:27 -07003023/*************************************************************************
3024 * EXPORTED SYMBOLS
3025 */
3026
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003027const grpc_channel_filter grpc_client_channel_filter = {
Craig Tillera0f3abd2017-03-31 15:42:16 -07003028 cc_start_transport_stream_op_batch,
Craig Tillerf40df232016-03-25 13:38:14 -07003029 cc_start_transport_op,
3030 sizeof(call_data),
Mark D. Roth2a5959f2016-09-01 08:20:27 -07003031 cc_init_call_elem,
David Garcia Quintas4afce7e2016-04-18 16:25:17 -07003032 cc_set_pollset_or_pollset_set,
Mark D. Roth2a5959f2016-09-01 08:20:27 -07003033 cc_destroy_call_elem,
Craig Tillerf40df232016-03-25 13:38:14 -07003034 sizeof(channel_data),
Mark D. Roth2a5959f2016-09-01 08:20:27 -07003035 cc_init_channel_elem,
3036 cc_destroy_channel_elem,
Mark D. Rothb2d24882016-10-27 15:44:07 -07003037 cc_get_channel_info,
Craig Tillerf40df232016-03-25 13:38:14 -07003038 "client-channel",
Craig Tiller87d5b192015-04-16 14:37:57 -07003039};
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003040
Yash Tibrewal8cf14702017-12-06 09:47:54 -08003041static void try_to_connect_locked(void* arg, grpc_error* error_ignored) {
Noah Eisenbe82e642018-02-09 09:16:55 -08003042 channel_data* chand = static_cast<channel_data*>(arg);
Craig Tiller4782d922017-11-10 09:53:21 -08003043 if (chand->lb_policy != nullptr) {
Mark D. Rothc8875492018-02-20 08:33:48 -08003044 chand->lb_policy->ExitIdleLocked();
Craig Tiller613dafa2017-02-09 12:00:43 -08003045 } else {
3046 chand->exit_idle_when_lb_policy_arrives = true;
Craig Tiller4782d922017-11-10 09:53:21 -08003047 if (!chand->started_resolving && chand->resolver != nullptr) {
Yash Tibrewal8cf14702017-12-06 09:47:54 -08003048 start_resolving_locked(chand);
Craig Tiller613dafa2017-02-09 12:00:43 -08003049 }
3050 }
Yash Tibrewal8cf14702017-12-06 09:47:54 -08003051 GRPC_CHANNEL_STACK_UNREF(chand->owning_stack, "try_to_connect");
Craig Tiller613dafa2017-02-09 12:00:43 -08003052}
3053
Craig Tillera82950e2015-09-22 12:33:20 -07003054grpc_connectivity_state grpc_client_channel_check_connectivity_state(
Yash Tibrewal8cf14702017-12-06 09:47:54 -08003055 grpc_channel_element* elem, int try_to_connect) {
Noah Eisenbe82e642018-02-09 09:16:55 -08003056 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
Craig Tillera8610c02017-02-14 10:05:11 -08003057 grpc_connectivity_state out =
3058 grpc_connectivity_state_check(&chand->state_tracker);
Craig Tillera82950e2015-09-22 12:33:20 -07003059 if (out == GRPC_CHANNEL_IDLE && try_to_connect) {
Craig Tillerd2e5cfc2017-02-09 13:02:20 -08003060 GRPC_CHANNEL_STACK_REF(chand->owning_stack, "try_to_connect");
ncteisen274bbbe2017-06-08 14:57:11 -07003061 GRPC_CLOSURE_SCHED(
Yash Tibrewal0ee75742017-10-13 16:07:13 -07003062 GRPC_CLOSURE_CREATE(try_to_connect_locked, chand,
3063 grpc_combiner_scheduler(chand->combiner)),
Craig Tiller613dafa2017-02-09 12:00:43 -08003064 GRPC_ERROR_NONE);
Craig Tillera82950e2015-09-22 12:33:20 -07003065 }
Craig Tiller48cb07c2015-07-15 16:16:15 -07003066 return out;
3067}
3068
Alexander Polcync3b1f182017-04-18 13:51:36 -07003069typedef struct external_connectivity_watcher {
Craig Tillerbaa14a92017-11-03 09:09:36 -07003070 channel_data* chand;
David Garcia Quintas87d5a312017-06-06 19:45:58 -07003071 grpc_polling_entity pollent;
Craig Tillerbaa14a92017-11-03 09:09:36 -07003072 grpc_closure* on_complete;
3073 grpc_closure* watcher_timer_init;
3074 grpc_connectivity_state* state;
Craig Tiller86c99582015-11-25 15:22:26 -08003075 grpc_closure my_closure;
Craig Tillerbaa14a92017-11-03 09:09:36 -07003076 struct external_connectivity_watcher* next;
Craig Tiller86c99582015-11-25 15:22:26 -08003077} external_connectivity_watcher;
3078
Craig Tillerbaa14a92017-11-03 09:09:36 -07003079static external_connectivity_watcher* lookup_external_connectivity_watcher(
3080 channel_data* chand, grpc_closure* on_complete) {
Alexander Polcync3b1f182017-04-18 13:51:36 -07003081 gpr_mu_lock(&chand->external_connectivity_watcher_list_mu);
Craig Tillerbaa14a92017-11-03 09:09:36 -07003082 external_connectivity_watcher* w =
Alexander Polcync3b1f182017-04-18 13:51:36 -07003083 chand->external_connectivity_watcher_list_head;
Craig Tiller4782d922017-11-10 09:53:21 -08003084 while (w != nullptr && w->on_complete != on_complete) {
Alexander Polcync3b1f182017-04-18 13:51:36 -07003085 w = w->next;
3086 }
3087 gpr_mu_unlock(&chand->external_connectivity_watcher_list_mu);
3088 return w;
3089}
3090
3091static void external_connectivity_watcher_list_append(
Craig Tillerbaa14a92017-11-03 09:09:36 -07003092 channel_data* chand, external_connectivity_watcher* w) {
Alexander Polcync3b1f182017-04-18 13:51:36 -07003093 GPR_ASSERT(!lookup_external_connectivity_watcher(chand, w->on_complete));
3094
3095 gpr_mu_lock(&w->chand->external_connectivity_watcher_list_mu);
3096 GPR_ASSERT(!w->next);
3097 w->next = chand->external_connectivity_watcher_list_head;
3098 chand->external_connectivity_watcher_list_head = w;
3099 gpr_mu_unlock(&w->chand->external_connectivity_watcher_list_mu);
3100}
3101
3102static void external_connectivity_watcher_list_remove(
Craig Tillerbaa14a92017-11-03 09:09:36 -07003103 channel_data* chand, external_connectivity_watcher* too_remove) {
Alexander Polcync3b1f182017-04-18 13:51:36 -07003104 GPR_ASSERT(
3105 lookup_external_connectivity_watcher(chand, too_remove->on_complete));
3106 gpr_mu_lock(&chand->external_connectivity_watcher_list_mu);
3107 if (too_remove == chand->external_connectivity_watcher_list_head) {
3108 chand->external_connectivity_watcher_list_head = too_remove->next;
3109 gpr_mu_unlock(&chand->external_connectivity_watcher_list_mu);
3110 return;
3111 }
Craig Tillerbaa14a92017-11-03 09:09:36 -07003112 external_connectivity_watcher* w =
Alexander Polcync3b1f182017-04-18 13:51:36 -07003113 chand->external_connectivity_watcher_list_head;
Craig Tiller4782d922017-11-10 09:53:21 -08003114 while (w != nullptr) {
Alexander Polcync3b1f182017-04-18 13:51:36 -07003115 if (w->next == too_remove) {
3116 w->next = w->next->next;
3117 gpr_mu_unlock(&chand->external_connectivity_watcher_list_mu);
3118 return;
3119 }
3120 w = w->next;
3121 }
3122 GPR_UNREACHABLE_CODE(return );
3123}
3124
3125int grpc_client_channel_num_external_connectivity_watchers(
Craig Tillerbaa14a92017-11-03 09:09:36 -07003126 grpc_channel_element* elem) {
Noah Eisenbe82e642018-02-09 09:16:55 -08003127 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
Alexander Polcync3b1f182017-04-18 13:51:36 -07003128 int count = 0;
3129
3130 gpr_mu_lock(&chand->external_connectivity_watcher_list_mu);
Craig Tillerbaa14a92017-11-03 09:09:36 -07003131 external_connectivity_watcher* w =
Alexander Polcync3b1f182017-04-18 13:51:36 -07003132 chand->external_connectivity_watcher_list_head;
Craig Tiller4782d922017-11-10 09:53:21 -08003133 while (w != nullptr) {
Alexander Polcync3b1f182017-04-18 13:51:36 -07003134 count++;
3135 w = w->next;
3136 }
3137 gpr_mu_unlock(&chand->external_connectivity_watcher_list_mu);
3138
3139 return count;
3140}
3141
Yash Tibrewal8cf14702017-12-06 09:47:54 -08003142static void on_external_watch_complete_locked(void* arg, grpc_error* error) {
Noah Eisen4d20a662018-02-09 09:34:04 -08003143 external_connectivity_watcher* w =
3144 static_cast<external_connectivity_watcher*>(arg);
Craig Tillerbaa14a92017-11-03 09:09:36 -07003145 grpc_closure* follow_up = w->on_complete;
Yash Tibrewal8cf14702017-12-06 09:47:54 -08003146 grpc_polling_entity_del_from_pollset_set(&w->pollent,
David Garcia Quintas87d5a312017-06-06 19:45:58 -07003147 w->chand->interested_parties);
Yash Tibrewal8cf14702017-12-06 09:47:54 -08003148 GRPC_CHANNEL_STACK_UNREF(w->chand->owning_stack,
Craig Tiller1d881fb2015-12-01 07:39:04 -08003149 "external_connectivity_watcher");
Alexander Polcync3b1f182017-04-18 13:51:36 -07003150 external_connectivity_watcher_list_remove(w->chand, w);
Craig Tiller86c99582015-11-25 15:22:26 -08003151 gpr_free(w);
Yash Tibrewal8cf14702017-12-06 09:47:54 -08003152 GRPC_CLOSURE_RUN(follow_up, GRPC_ERROR_REF(error));
Craig Tiller613dafa2017-02-09 12:00:43 -08003153}
3154
Yash Tibrewal8cf14702017-12-06 09:47:54 -08003155static void watch_connectivity_state_locked(void* arg,
Craig Tillerbaa14a92017-11-03 09:09:36 -07003156 grpc_error* error_ignored) {
Noah Eisen4d20a662018-02-09 09:34:04 -08003157 external_connectivity_watcher* w =
3158 static_cast<external_connectivity_watcher*>(arg);
Craig Tiller4782d922017-11-10 09:53:21 -08003159 external_connectivity_watcher* found = nullptr;
3160 if (w->state != nullptr) {
Alexander Polcync3b1f182017-04-18 13:51:36 -07003161 external_connectivity_watcher_list_append(w->chand, w);
Yash Tibrewal8cf14702017-12-06 09:47:54 -08003162 GRPC_CLOSURE_RUN(w->watcher_timer_init, GRPC_ERROR_NONE);
Alexander Polcyn2004e392017-10-16 15:14:46 -07003163 GRPC_CLOSURE_INIT(&w->my_closure, on_external_watch_complete_locked, w,
3164 grpc_combiner_scheduler(w->chand->combiner));
Yash Tibrewal8cf14702017-12-06 09:47:54 -08003165 grpc_connectivity_state_notify_on_state_change(&w->chand->state_tracker,
3166 w->state, &w->my_closure);
Alexander Polcync3b1f182017-04-18 13:51:36 -07003167 } else {
Craig Tiller4782d922017-11-10 09:53:21 -08003168 GPR_ASSERT(w->watcher_timer_init == nullptr);
Alexander Polcync3b1f182017-04-18 13:51:36 -07003169 found = lookup_external_connectivity_watcher(w->chand, w->on_complete);
3170 if (found) {
3171 GPR_ASSERT(found->on_complete == w->on_complete);
3172 grpc_connectivity_state_notify_on_state_change(
Yash Tibrewal8cf14702017-12-06 09:47:54 -08003173 &found->chand->state_tracker, nullptr, &found->my_closure);
Alexander Polcync3b1f182017-04-18 13:51:36 -07003174 }
Yash Tibrewal8cf14702017-12-06 09:47:54 -08003175 grpc_polling_entity_del_from_pollset_set(&w->pollent,
David Garcia Quintas87d5a312017-06-06 19:45:58 -07003176 w->chand->interested_parties);
Yash Tibrewal8cf14702017-12-06 09:47:54 -08003177 GRPC_CHANNEL_STACK_UNREF(w->chand->owning_stack,
Alexander Polcync3b1f182017-04-18 13:51:36 -07003178 "external_connectivity_watcher");
3179 gpr_free(w);
3180 }
Craig Tiller86c99582015-11-25 15:22:26 -08003181}
3182
Craig Tillera82950e2015-09-22 12:33:20 -07003183void grpc_client_channel_watch_connectivity_state(
Yash Tibrewal8cf14702017-12-06 09:47:54 -08003184 grpc_channel_element* elem, grpc_polling_entity pollent,
3185 grpc_connectivity_state* state, grpc_closure* closure,
3186 grpc_closure* watcher_timer_init) {
Noah Eisenbe82e642018-02-09 09:16:55 -08003187 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
Craig Tillerbaa14a92017-11-03 09:09:36 -07003188 external_connectivity_watcher* w =
Noah Eisenbe82e642018-02-09 09:16:55 -08003189 static_cast<external_connectivity_watcher*>(gpr_zalloc(sizeof(*w)));
Craig Tiller86c99582015-11-25 15:22:26 -08003190 w->chand = chand;
David Garcia Quintas87d5a312017-06-06 19:45:58 -07003191 w->pollent = pollent;
Mark D. Roth92210832017-05-02 15:04:39 -07003192 w->on_complete = closure;
Craig Tiller613dafa2017-02-09 12:00:43 -08003193 w->state = state;
Alexander Polcync3b1f182017-04-18 13:51:36 -07003194 w->watcher_timer_init = watcher_timer_init;
Yash Tibrewal8cf14702017-12-06 09:47:54 -08003195 grpc_polling_entity_add_to_pollset_set(&w->pollent,
David Garcia Quintas87d5a312017-06-06 19:45:58 -07003196 chand->interested_parties);
Craig Tiller1d881fb2015-12-01 07:39:04 -08003197 GRPC_CHANNEL_STACK_REF(w->chand->owning_stack,
3198 "external_connectivity_watcher");
ncteisen274bbbe2017-06-08 14:57:11 -07003199 GRPC_CLOSURE_SCHED(
ncteisen274bbbe2017-06-08 14:57:11 -07003200 GRPC_CLOSURE_INIT(&w->my_closure, watch_connectivity_state_locked, w,
Craig Tilleree4b1452017-05-12 10:56:03 -07003201 grpc_combiner_scheduler(chand->combiner)),
Craig Tiller613dafa2017-02-09 12:00:43 -08003202 GRPC_ERROR_NONE);
Craig Tiller48cb07c2015-07-15 16:16:15 -07003203}
Mark D. Roth718c8342018-02-28 13:00:04 -08003204
3205grpc_subchannel_call* grpc_client_channel_get_subchannel_call(
3206 grpc_call_element* elem) {
3207 call_data* calld = static_cast<call_data*>(elem->call_data);
3208 return calld->subchannel_call;
3209}