blob: f21b28a53fed9b10f17d9ffc641488e6b782d53d [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. Roth48854d22018-04-25 13:05:26 -0700177 gpr_log(GPR_INFO, "chand=%p: setting connectivity state to %s", chand,
Mark D. Roth60751fe2017-07-07 12:50:33 -0700178 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. Roth48854d22018-04-25 13:05:26 -0700189 gpr_log(GPR_INFO, "chand=%p: lb_policy=%p state changed to %s", w->chand,
Mark D. Roth60751fe2017-07-07 12:50:33 -0700190 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. Roth48854d22018-04-25 13:05:26 -0700218 gpr_log(GPR_INFO, "chand=%p: starting name resolution", chand);
Mark D. Roth60751fe2017-07-07 12:50:33 -0700219 }
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()) {
Mark D. Roth48854d22018-04-25 13:05:26 -0700300 gpr_log(GPR_INFO, "chand=%p: started name re-resolving", chand);
Juanli Shen592cf342017-12-04 20:52:01 -0800301 }
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. Roth48854d22018-04-25 13:05:26 -0700314 gpr_log(GPR_INFO,
Mark D. Rothe63e06d2018-03-23 08:12:11 -0700315 "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);
Yash Tibrewal7f51ba82018-04-12 13:21:20 -0700382 if (GPR_UNLIKELY(new_lb_policy == nullptr)) {
Juanli Shen592cf342017-12-04 20:52:01 -0800383 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. Roth48854d22018-04-25 13:05:26 -0700434 gpr_log(GPR_INFO,
Mark D. Roth60751fe2017-07-07 12:50:33 -0700435 "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. Roth48854d22018-04-25 13:05:26 -0700469 gpr_log(GPR_INFO, "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. Roth48854d22018-04-25 13:05:26 -0700483 gpr_log(GPR_INFO, "chand=%p: shutting down", chand);
Mark D. Roth60751fe2017-07-07 12:50:33 -0700484 }
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. Roth48854d22018-04-25 13:05:26 -0700487 gpr_log(GPR_INFO, "chand=%p: shutting down resolver", chand);
Mark D. Roth60751fe2017-07-07 12:50:33 -0700488 }
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. Roth48854d22018-04-25 13:05:26 -0700509 gpr_log(GPR_INFO, "chand=%p: initializing new LB policy", chand);
Mark D. Roth60751fe2017-07-07 12:50:33 -0700510 }
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;
Mark D. Rothde077ac2018-04-12 08:05:44 -0700845 subchannel_batch_data* recv_initial_metadata_ready_deferred_batch;
Mark D. Roth718c8342018-02-28 13:00:04 -0800846 grpc_error* recv_initial_metadata_error;
Mark D. Rothde077ac2018-04-12 08:05:44 -0700847 subchannel_batch_data* recv_message_ready_deferred_batch;
Mark D. Roth718c8342018-02-28 13:00:04 -0800848 grpc_error* recv_message_error;
Mark D. Rothde077ac2018-04-12 08:05:44 -0700849 subchannel_batch_data* recv_trailing_metadata_internal_batch;
Mark D. Roth718c8342018-02-28 13:00:04 -0800850} subchannel_call_retry_state;
851
852// Pending batches stored in call data.
853typedef struct {
854 // The pending batch. If nullptr, this slot is empty.
855 grpc_transport_stream_op_batch* batch;
856 // Indicates whether payload for send ops has been cached in call data.
857 bool send_ops_cached;
858} pending_batch;
Mark D. Roth0ca0be82017-06-20 07:49:33 -0700859
Mark D. Roth2a5959f2016-09-01 08:20:27 -0700860/** Call data. Holds a pointer to grpc_subchannel_call and the
861 associated machinery to create such a pointer.
862 Handles queueing of stream ops until a call object is ready, waiting
863 for initial metadata before trying to create a call object,
864 and handling cancellation gracefully. */
865typedef struct client_channel_call_data {
Mark D. Roth72f6da82016-09-02 13:42:38 -0700866 // State for handling deadlines.
867 // The code in deadline_filter.c requires this to be the first field.
Mark D. Roth72f6da82016-09-02 13:42:38 -0700868 // TODO(roth): This is slightly sub-optimal in that grpc_deadline_state
Mark D. Roth66f3d2b2017-09-01 09:02:17 -0700869 // and this struct both independently store pointers to the call stack
870 // and call combiner. If/when we have time, find a way to avoid this
871 // without breaking the grpc_deadline_state abstraction.
Mark D. Roth72f6da82016-09-02 13:42:38 -0700872 grpc_deadline_state deadline_state;
Mark D. Rothf28763c2016-09-14 15:18:40 -0700873
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800874 grpc_slice path; // Request path.
Mark D. Rothe40dd292016-10-05 14:58:37 -0700875 gpr_timespec call_start_time;
Craig Tiller89c14282017-07-19 15:32:27 -0700876 grpc_millis deadline;
Craig Tillerbaa14a92017-11-03 09:09:36 -0700877 gpr_arena* arena;
878 grpc_call_stack* owning_call;
879 grpc_call_combiner* call_combiner;
Mark D. Roth76e264b2017-08-25 09:03:33 -0700880
Mark D. Roth9db86fc2018-03-28 07:42:20 -0700881 grpc_core::RefCountedPtr<ServerRetryThrottleData> retry_throttle_data;
Mark D. Roth3e7f2df2018-02-26 13:17:06 -0800882 grpc_core::RefCountedPtr<ClientChannelMethodParams> method_params;
Mark D. Rothaa850a72016-09-26 13:38:02 -0700883
Craig Tillerbaa14a92017-11-03 09:09:36 -0700884 grpc_subchannel_call* subchannel_call;
Mark D. Roth718c8342018-02-28 13:00:04 -0800885
886 // Set when we get a cancel_stream op.
887 grpc_error* cancel_error;
Mark D. Roth2a5959f2016-09-01 08:20:27 -0700888
Mark D. Rothc8875492018-02-20 08:33:48 -0800889 grpc_core::LoadBalancingPolicy::PickState pick;
Mark D. Roth718c8342018-02-28 13:00:04 -0800890 grpc_closure pick_closure;
891 grpc_closure pick_cancel_closure;
Mark D. Roth60751fe2017-07-07 12:50:33 -0700892
Craig Tillerbaa14a92017-11-03 09:09:36 -0700893 grpc_polling_entity* pollent;
Mark D. Roth2a5959f2016-09-01 08:20:27 -0700894
Mark D. Roth718c8342018-02-28 13:00:04 -0800895 // Batches are added to this list when received from above.
896 // They are removed when we are done handling the batch (i.e., when
897 // either we have invoked all of the batch's callbacks or we have
898 // passed the batch down to the subchannel call and are not
899 // intercepting any of its callbacks).
900 pending_batch pending_batches[MAX_PENDING_BATCHES];
901 bool pending_send_initial_metadata : 1;
902 bool pending_send_message : 1;
903 bool pending_send_trailing_metadata : 1;
Mark D. Roth2a5959f2016-09-01 08:20:27 -0700904
Mark D. Roth718c8342018-02-28 13:00:04 -0800905 // Retry state.
906 bool enable_retries : 1;
907 bool retry_committed : 1;
908 bool last_attempt_got_server_pushback : 1;
909 int num_attempts_completed;
910 size_t bytes_buffered_for_retry;
911 grpc_core::ManualConstructor<grpc_core::BackOff> retry_backoff;
912 grpc_timer retry_timer;
David Garcia Quintasd1a47f12016-09-02 12:46:44 +0200913
Mark D. Roth718c8342018-02-28 13:00:04 -0800914 // Cached data for retrying send ops.
915 // send_initial_metadata
916 bool seen_send_initial_metadata;
917 grpc_linked_mdelem* send_initial_metadata_storage;
918 grpc_metadata_batch send_initial_metadata;
919 uint32_t send_initial_metadata_flags;
920 gpr_atm* peer_string;
921 // send_message
922 // When we get a send_message op, we replace the original byte stream
Mark D. Roth3d8b32d2018-03-09 13:25:40 -0800923 // with a CachingByteStream that caches the slices to a local buffer for
924 // use in retries.
Mark D. Roth718c8342018-02-28 13:00:04 -0800925 // Note: We inline the cache for the first 3 send_message ops and use
926 // dynamic allocation after that. This number was essentially picked
927 // at random; it could be changed in the future to tune performance.
Mark D. Rothefcd45b2018-03-28 10:49:59 -0700928 grpc_core::ManualConstructor<
929 grpc_core::InlinedVector<grpc_core::ByteStreamCache*, 3>>
930 send_messages;
Mark D. Roth718c8342018-02-28 13:00:04 -0800931 // send_trailing_metadata
932 bool seen_send_trailing_metadata;
933 grpc_linked_mdelem* send_trailing_metadata_storage;
934 grpc_metadata_batch send_trailing_metadata;
Mark D. Roth2a5959f2016-09-01 08:20:27 -0700935} call_data;
936
Mark D. Roth718c8342018-02-28 13:00:04 -0800937// Forward declarations.
938static void retry_commit(grpc_call_element* elem,
939 subchannel_call_retry_state* retry_state);
940static void start_internal_recv_trailing_metadata(grpc_call_element* elem);
941static void on_complete(void* arg, grpc_error* error);
942static void start_retriable_subchannel_batches(void* arg, grpc_error* ignored);
943static void pick_after_resolver_result_start_locked(grpc_call_element* elem);
944static void start_pick_locked(void* arg, grpc_error* ignored);
Craig Tiller8b1d59c2016-12-27 15:15:30 -0800945
Mark D. Roth718c8342018-02-28 13:00:04 -0800946//
947// send op data caching
948//
949
950// Caches data for send ops so that it can be retried later, if not
951// already cached.
952static void maybe_cache_send_ops_for_batch(call_data* calld,
953 pending_batch* pending) {
954 if (pending->send_ops_cached) return;
955 pending->send_ops_cached = true;
956 grpc_transport_stream_op_batch* batch = pending->batch;
957 // Save a copy of metadata for send_initial_metadata ops.
Mark D. Roth76e264b2017-08-25 09:03:33 -0700958 if (batch->send_initial_metadata) {
Mark D. Roth718c8342018-02-28 13:00:04 -0800959 calld->seen_send_initial_metadata = true;
960 GPR_ASSERT(calld->send_initial_metadata_storage == nullptr);
961 grpc_metadata_batch* send_initial_metadata =
962 batch->payload->send_initial_metadata.send_initial_metadata;
963 calld->send_initial_metadata_storage = (grpc_linked_mdelem*)gpr_arena_alloc(
964 calld->arena,
965 sizeof(grpc_linked_mdelem) * send_initial_metadata->list.count);
966 grpc_metadata_batch_copy(send_initial_metadata,
967 &calld->send_initial_metadata,
968 calld->send_initial_metadata_storage);
969 calld->send_initial_metadata_flags =
970 batch->payload->send_initial_metadata.send_initial_metadata_flags;
971 calld->peer_string = batch->payload->send_initial_metadata.peer_string;
972 }
973 // Set up cache for send_message ops.
974 if (batch->send_message) {
Mark D. Roth3d8b32d2018-03-09 13:25:40 -0800975 grpc_core::ByteStreamCache* cache =
976 static_cast<grpc_core::ByteStreamCache*>(
977 gpr_arena_alloc(calld->arena, sizeof(grpc_core::ByteStreamCache)));
978 new (cache) grpc_core::ByteStreamCache(
979 std::move(batch->payload->send_message.send_message));
Mark D. Rothefcd45b2018-03-28 10:49:59 -0700980 calld->send_messages->push_back(cache);
Mark D. Roth718c8342018-02-28 13:00:04 -0800981 }
982 // Save metadata batch for send_trailing_metadata ops.
983 if (batch->send_trailing_metadata) {
984 calld->seen_send_trailing_metadata = true;
985 GPR_ASSERT(calld->send_trailing_metadata_storage == nullptr);
986 grpc_metadata_batch* send_trailing_metadata =
987 batch->payload->send_trailing_metadata.send_trailing_metadata;
988 calld->send_trailing_metadata_storage =
989 (grpc_linked_mdelem*)gpr_arena_alloc(
990 calld->arena,
991 sizeof(grpc_linked_mdelem) * send_trailing_metadata->list.count);
992 grpc_metadata_batch_copy(send_trailing_metadata,
993 &calld->send_trailing_metadata,
994 calld->send_trailing_metadata_storage);
Mark D. Roth76e264b2017-08-25 09:03:33 -0700995 }
Mark D. Roth2a5959f2016-09-01 08:20:27 -0700996}
997
Mark D. Rothde077ac2018-04-12 08:05:44 -0700998// Frees cached send_initial_metadata.
999static void free_cached_send_initial_metadata(channel_data* chand,
1000 call_data* calld) {
1001 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07001002 gpr_log(GPR_INFO,
Mark D. Rothde077ac2018-04-12 08:05:44 -07001003 "chand=%p calld=%p: destroying calld->send_initial_metadata", chand,
1004 calld);
1005 }
1006 grpc_metadata_batch_destroy(&calld->send_initial_metadata);
1007}
1008
1009// Frees cached send_message at index idx.
1010static void free_cached_send_message(channel_data* chand, call_data* calld,
1011 size_t idx) {
1012 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07001013 gpr_log(GPR_INFO,
Mark D. Rothde077ac2018-04-12 08:05:44 -07001014 "chand=%p calld=%p: destroying calld->send_messages[%" PRIuPTR "]",
1015 chand, calld, idx);
1016 }
1017 (*calld->send_messages)[idx]->Destroy();
1018}
1019
1020// Frees cached send_trailing_metadata.
1021static void free_cached_send_trailing_metadata(channel_data* chand,
1022 call_data* calld) {
1023 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07001024 gpr_log(GPR_INFO,
Mark D. Rothde077ac2018-04-12 08:05:44 -07001025 "chand=%p calld=%p: destroying calld->send_trailing_metadata",
1026 chand, calld);
1027 }
1028 grpc_metadata_batch_destroy(&calld->send_trailing_metadata);
1029}
1030
Mark D. Roth718c8342018-02-28 13:00:04 -08001031// Frees cached send ops that have already been completed after
1032// committing the call.
1033static void free_cached_send_op_data_after_commit(
1034 grpc_call_element* elem, subchannel_call_retry_state* retry_state) {
Noah Eisenbe82e642018-02-09 09:16:55 -08001035 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
1036 call_data* calld = static_cast<call_data*>(elem->call_data);
Mark D. Roth718c8342018-02-28 13:00:04 -08001037 if (retry_state->completed_send_initial_metadata) {
Mark D. Rothde077ac2018-04-12 08:05:44 -07001038 free_cached_send_initial_metadata(chand, calld);
Mark D. Roth60751fe2017-07-07 12:50:33 -07001039 }
Mark D. Roth718c8342018-02-28 13:00:04 -08001040 for (size_t i = 0; i < retry_state->completed_send_message_count; ++i) {
Mark D. Rothde077ac2018-04-12 08:05:44 -07001041 free_cached_send_message(chand, calld, i);
Mark D. Roth2a5959f2016-09-01 08:20:27 -07001042 }
Mark D. Roth718c8342018-02-28 13:00:04 -08001043 if (retry_state->completed_send_trailing_metadata) {
Mark D. Rothde077ac2018-04-12 08:05:44 -07001044 free_cached_send_trailing_metadata(chand, calld);
Mark D. Roth718c8342018-02-28 13:00:04 -08001045 }
Mark D. Roth2a5959f2016-09-01 08:20:27 -07001046}
1047
Mark D. Roth718c8342018-02-28 13:00:04 -08001048// Frees cached send ops that were completed by the completed batch in
1049// batch_data. Used when batches are completed after the call is committed.
1050static void free_cached_send_op_data_for_completed_batch(
1051 grpc_call_element* elem, subchannel_batch_data* batch_data,
1052 subchannel_call_retry_state* retry_state) {
Noah Eisenbe82e642018-02-09 09:16:55 -08001053 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
1054 call_data* calld = static_cast<call_data*>(elem->call_data);
Mark D. Roth718c8342018-02-28 13:00:04 -08001055 if (batch_data->batch.send_initial_metadata) {
Mark D. Rothde077ac2018-04-12 08:05:44 -07001056 free_cached_send_initial_metadata(chand, calld);
Mark D. Roth718c8342018-02-28 13:00:04 -08001057 }
1058 if (batch_data->batch.send_message) {
Mark D. Rothde077ac2018-04-12 08:05:44 -07001059 free_cached_send_message(chand, calld,
1060 retry_state->completed_send_message_count - 1);
Mark D. Roth718c8342018-02-28 13:00:04 -08001061 }
1062 if (batch_data->batch.send_trailing_metadata) {
Mark D. Rothde077ac2018-04-12 08:05:44 -07001063 free_cached_send_trailing_metadata(chand, calld);
Mark D. Roth718c8342018-02-28 13:00:04 -08001064 }
1065}
1066
1067//
1068// pending_batches management
1069//
1070
1071// Returns the index into calld->pending_batches to be used for batch.
1072static size_t get_batch_index(grpc_transport_stream_op_batch* batch) {
1073 // Note: It is important the send_initial_metadata be the first entry
1074 // here, since the code in pick_subchannel_locked() assumes it will be.
1075 if (batch->send_initial_metadata) return 0;
1076 if (batch->send_message) return 1;
1077 if (batch->send_trailing_metadata) return 2;
1078 if (batch->recv_initial_metadata) return 3;
1079 if (batch->recv_message) return 4;
1080 if (batch->recv_trailing_metadata) return 5;
1081 GPR_UNREACHABLE_CODE(return (size_t)-1);
1082}
1083
1084// This is called via the call combiner, so access to calld is synchronized.
1085static void pending_batches_add(grpc_call_element* elem,
1086 grpc_transport_stream_op_batch* batch) {
1087 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
1088 call_data* calld = static_cast<call_data*>(elem->call_data);
1089 const size_t idx = get_batch_index(batch);
Craig Tiller6014e8a2017-10-16 13:50:29 -07001090 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07001091 gpr_log(GPR_INFO,
Mark D. Roth718c8342018-02-28 13:00:04 -08001092 "chand=%p calld=%p: adding pending batch at index %" PRIuPTR, chand,
1093 calld, idx);
Mark D. Roth60751fe2017-07-07 12:50:33 -07001094 }
Mark D. Roth718c8342018-02-28 13:00:04 -08001095 pending_batch* pending = &calld->pending_batches[idx];
1096 GPR_ASSERT(pending->batch == nullptr);
1097 pending->batch = batch;
1098 pending->send_ops_cached = false;
1099 if (calld->enable_retries) {
1100 // Update state in calld about pending batches.
1101 // Also check if the batch takes us over the retry buffer limit.
1102 // Note: We don't check the size of trailing metadata here, because
1103 // gRPC clients do not send trailing metadata.
1104 if (batch->send_initial_metadata) {
1105 calld->pending_send_initial_metadata = true;
1106 calld->bytes_buffered_for_retry += grpc_metadata_batch_size(
1107 batch->payload->send_initial_metadata.send_initial_metadata);
1108 }
1109 if (batch->send_message) {
1110 calld->pending_send_message = true;
1111 calld->bytes_buffered_for_retry +=
Mark D. Roth3d8b32d2018-03-09 13:25:40 -08001112 batch->payload->send_message.send_message->length();
Mark D. Roth718c8342018-02-28 13:00:04 -08001113 }
1114 if (batch->send_trailing_metadata) {
1115 calld->pending_send_trailing_metadata = true;
1116 }
Yash Tibrewal8c5b8832018-05-14 11:44:18 -07001117 if (GPR_UNLIKELY(calld->bytes_buffered_for_retry >
1118 chand->per_rpc_retry_buffer_size)) {
Mark D. Roth718c8342018-02-28 13:00:04 -08001119 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07001120 gpr_log(GPR_INFO,
Mark D. Roth718c8342018-02-28 13:00:04 -08001121 "chand=%p calld=%p: exceeded retry buffer size, committing",
1122 chand, calld);
1123 }
1124 subchannel_call_retry_state* retry_state =
1125 calld->subchannel_call == nullptr
1126 ? nullptr
1127 : static_cast<subchannel_call_retry_state*>(
1128 grpc_connected_subchannel_call_get_parent_data(
1129 calld->subchannel_call));
1130 retry_commit(elem, retry_state);
1131 // If we are not going to retry and have not yet started, pretend
1132 // retries are disabled so that we don't bother with retry overhead.
1133 if (calld->num_attempts_completed == 0) {
1134 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07001135 gpr_log(GPR_INFO,
Mark D. Roth718c8342018-02-28 13:00:04 -08001136 "chand=%p calld=%p: disabling retries before first attempt",
1137 chand, calld);
Mark D. Roth0ca0be82017-06-20 07:49:33 -07001138 }
Mark D. Roth718c8342018-02-28 13:00:04 -08001139 calld->enable_retries = false;
Craig Tiller11c17d42017-03-13 13:36:34 -07001140 }
1141 }
1142 }
Craig Tiller11c17d42017-03-13 13:36:34 -07001143}
Craig Tillerea4a4f12017-03-13 13:36:52 -07001144
Mark D. Roth718c8342018-02-28 13:00:04 -08001145static void pending_batch_clear(call_data* calld, pending_batch* pending) {
1146 if (calld->enable_retries) {
1147 if (pending->batch->send_initial_metadata) {
1148 calld->pending_send_initial_metadata = false;
1149 }
1150 if (pending->batch->send_message) {
1151 calld->pending_send_message = false;
1152 }
1153 if (pending->batch->send_trailing_metadata) {
1154 calld->pending_send_trailing_metadata = false;
1155 }
1156 }
1157 pending->batch = nullptr;
1158}
1159
1160// This is called via the call combiner, so access to calld is synchronized.
1161static void fail_pending_batch_in_call_combiner(void* arg, grpc_error* error) {
1162 grpc_transport_stream_op_batch* batch =
1163 static_cast<grpc_transport_stream_op_batch*>(arg);
1164 call_data* calld = static_cast<call_data*>(batch->handler_private.extra_arg);
1165 // Note: This will release the call combiner.
1166 grpc_transport_stream_op_batch_finish_with_failure(
1167 batch, GRPC_ERROR_REF(error), calld->call_combiner);
1168}
1169
1170// This is called via the call combiner, so access to calld is synchronized.
1171// If yield_call_combiner is true, assumes responsibility for yielding
1172// the call combiner.
1173static void pending_batches_fail(grpc_call_element* elem, grpc_error* error,
1174 bool yield_call_combiner) {
1175 GPR_ASSERT(error != GRPC_ERROR_NONE);
1176 call_data* calld = static_cast<call_data*>(elem->call_data);
1177 if (grpc_client_channel_trace.enabled()) {
1178 size_t num_batches = 0;
1179 for (size_t i = 0; i < GPR_ARRAY_SIZE(calld->pending_batches); ++i) {
1180 if (calld->pending_batches[i].batch != nullptr) ++num_batches;
1181 }
Mark D. Roth48854d22018-04-25 13:05:26 -07001182 gpr_log(GPR_INFO,
Mark D. Roth718c8342018-02-28 13:00:04 -08001183 "chand=%p calld=%p: failing %" PRIuPTR " pending batches: %s",
1184 elem->channel_data, calld, num_batches, grpc_error_string(error));
1185 }
1186 grpc_transport_stream_op_batch*
1187 batches[GPR_ARRAY_SIZE(calld->pending_batches)];
1188 size_t num_batches = 0;
1189 for (size_t i = 0; i < GPR_ARRAY_SIZE(calld->pending_batches); ++i) {
1190 pending_batch* pending = &calld->pending_batches[i];
1191 grpc_transport_stream_op_batch* batch = pending->batch;
1192 if (batch != nullptr) {
1193 batches[num_batches++] = batch;
1194 pending_batch_clear(calld, pending);
1195 }
1196 }
1197 for (size_t i = yield_call_combiner ? 1 : 0; i < num_batches; ++i) {
1198 grpc_transport_stream_op_batch* batch = batches[i];
1199 batch->handler_private.extra_arg = calld;
1200 GRPC_CLOSURE_INIT(&batch->handler_private.closure,
1201 fail_pending_batch_in_call_combiner, batch,
1202 grpc_schedule_on_exec_ctx);
1203 GRPC_CALL_COMBINER_START(calld->call_combiner,
1204 &batch->handler_private.closure,
1205 GRPC_ERROR_REF(error), "pending_batches_fail");
1206 }
1207 if (yield_call_combiner) {
1208 if (num_batches > 0) {
1209 // Note: This will release the call combiner.
1210 grpc_transport_stream_op_batch_finish_with_failure(
1211 batches[0], GRPC_ERROR_REF(error), calld->call_combiner);
1212 } else {
1213 GRPC_CALL_COMBINER_STOP(calld->call_combiner, "pending_batches_fail");
1214 }
1215 }
1216 GRPC_ERROR_UNREF(error);
1217}
1218
1219// This is called via the call combiner, so access to calld is synchronized.
1220static void resume_pending_batch_in_call_combiner(void* arg,
1221 grpc_error* ignored) {
1222 grpc_transport_stream_op_batch* batch =
1223 static_cast<grpc_transport_stream_op_batch*>(arg);
1224 grpc_subchannel_call* subchannel_call =
1225 static_cast<grpc_subchannel_call*>(batch->handler_private.extra_arg);
1226 // Note: This will release the call combiner.
1227 grpc_subchannel_call_process_op(subchannel_call, batch);
1228}
1229
1230// This is called via the call combiner, so access to calld is synchronized.
1231static void pending_batches_resume(grpc_call_element* elem) {
Noah Eisenbe82e642018-02-09 09:16:55 -08001232 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
1233 call_data* calld = static_cast<call_data*>(elem->call_data);
Mark D. Roth718c8342018-02-28 13:00:04 -08001234 if (calld->enable_retries) {
1235 start_retriable_subchannel_batches(elem, GRPC_ERROR_NONE);
1236 return;
1237 }
1238 // Retries not enabled; send down batches as-is.
1239 if (grpc_client_channel_trace.enabled()) {
1240 size_t num_batches = 0;
1241 for (size_t i = 0; i < GPR_ARRAY_SIZE(calld->pending_batches); ++i) {
1242 if (calld->pending_batches[i].batch != nullptr) ++num_batches;
1243 }
Mark D. Roth48854d22018-04-25 13:05:26 -07001244 gpr_log(GPR_INFO,
Mark D. Roth718c8342018-02-28 13:00:04 -08001245 "chand=%p calld=%p: starting %" PRIuPTR
1246 " pending batches on subchannel_call=%p",
1247 chand, calld, num_batches, calld->subchannel_call);
1248 }
1249 grpc_transport_stream_op_batch*
1250 batches[GPR_ARRAY_SIZE(calld->pending_batches)];
1251 size_t num_batches = 0;
1252 for (size_t i = 0; i < GPR_ARRAY_SIZE(calld->pending_batches); ++i) {
1253 pending_batch* pending = &calld->pending_batches[i];
1254 grpc_transport_stream_op_batch* batch = pending->batch;
1255 if (batch != nullptr) {
1256 batches[num_batches++] = batch;
1257 pending_batch_clear(calld, pending);
1258 }
1259 }
1260 for (size_t i = 1; i < num_batches; ++i) {
1261 grpc_transport_stream_op_batch* batch = batches[i];
1262 batch->handler_private.extra_arg = calld->subchannel_call;
1263 GRPC_CLOSURE_INIT(&batch->handler_private.closure,
1264 resume_pending_batch_in_call_combiner, batch,
1265 grpc_schedule_on_exec_ctx);
1266 GRPC_CALL_COMBINER_START(calld->call_combiner,
1267 &batch->handler_private.closure, GRPC_ERROR_NONE,
1268 "pending_batches_resume");
1269 }
1270 GPR_ASSERT(num_batches > 0);
1271 // Note: This will release the call combiner.
1272 grpc_subchannel_call_process_op(calld->subchannel_call, batches[0]);
1273}
1274
1275static void maybe_clear_pending_batch(grpc_call_element* elem,
1276 pending_batch* pending) {
1277 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
1278 call_data* calld = static_cast<call_data*>(elem->call_data);
1279 grpc_transport_stream_op_batch* batch = pending->batch;
1280 // We clear the pending batch if all of its callbacks have been
1281 // scheduled and reset to nullptr.
1282 if (batch->on_complete == nullptr &&
1283 (!batch->recv_initial_metadata ||
1284 batch->payload->recv_initial_metadata.recv_initial_metadata_ready ==
1285 nullptr) &&
1286 (!batch->recv_message ||
1287 batch->payload->recv_message.recv_message_ready == nullptr)) {
1288 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07001289 gpr_log(GPR_INFO, "chand=%p calld=%p: clearing pending batch", chand,
Mark D. Roth718c8342018-02-28 13:00:04 -08001290 calld);
1291 }
1292 pending_batch_clear(calld, pending);
1293 }
1294}
1295
1296// Returns true if all ops in the pending batch have been completed.
1297static bool pending_batch_is_completed(
1298 pending_batch* pending, call_data* calld,
1299 subchannel_call_retry_state* retry_state) {
1300 if (pending->batch == nullptr || pending->batch->on_complete == nullptr) {
1301 return false;
1302 }
1303 if (pending->batch->send_initial_metadata &&
1304 !retry_state->completed_send_initial_metadata) {
1305 return false;
1306 }
1307 if (pending->batch->send_message &&
Mark D. Rothefcd45b2018-03-28 10:49:59 -07001308 retry_state->completed_send_message_count <
1309 calld->send_messages->size()) {
Mark D. Roth718c8342018-02-28 13:00:04 -08001310 return false;
1311 }
1312 if (pending->batch->send_trailing_metadata &&
1313 !retry_state->completed_send_trailing_metadata) {
1314 return false;
1315 }
1316 if (pending->batch->recv_initial_metadata &&
1317 !retry_state->completed_recv_initial_metadata) {
1318 return false;
1319 }
1320 if (pending->batch->recv_message &&
1321 retry_state->completed_recv_message_count <
1322 retry_state->started_recv_message_count) {
1323 return false;
1324 }
1325 if (pending->batch->recv_trailing_metadata &&
1326 !retry_state->completed_recv_trailing_metadata) {
1327 return false;
1328 }
1329 return true;
1330}
1331
1332// Returns true if any op in the batch was not yet started.
1333static bool pending_batch_is_unstarted(
1334 pending_batch* pending, call_data* calld,
1335 subchannel_call_retry_state* retry_state) {
1336 if (pending->batch == nullptr || pending->batch->on_complete == nullptr) {
1337 return false;
1338 }
1339 if (pending->batch->send_initial_metadata &&
1340 !retry_state->started_send_initial_metadata) {
1341 return true;
1342 }
1343 if (pending->batch->send_message &&
Mark D. Rothefcd45b2018-03-28 10:49:59 -07001344 retry_state->started_send_message_count < calld->send_messages->size()) {
Mark D. Roth718c8342018-02-28 13:00:04 -08001345 return true;
1346 }
1347 if (pending->batch->send_trailing_metadata &&
1348 !retry_state->started_send_trailing_metadata) {
1349 return true;
1350 }
1351 if (pending->batch->recv_initial_metadata &&
1352 !retry_state->started_recv_initial_metadata) {
1353 return true;
1354 }
1355 if (pending->batch->recv_message &&
1356 retry_state->completed_recv_message_count ==
1357 retry_state->started_recv_message_count) {
1358 return true;
1359 }
1360 if (pending->batch->recv_trailing_metadata &&
1361 !retry_state->started_recv_trailing_metadata) {
1362 return true;
1363 }
1364 return false;
1365}
1366
1367//
1368// retry code
1369//
1370
1371// Commits the call so that no further retry attempts will be performed.
1372static void retry_commit(grpc_call_element* elem,
1373 subchannel_call_retry_state* retry_state) {
1374 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
1375 call_data* calld = static_cast<call_data*>(elem->call_data);
1376 if (calld->retry_committed) return;
1377 calld->retry_committed = true;
1378 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07001379 gpr_log(GPR_INFO, "chand=%p calld=%p: committing retries", chand, calld);
Mark D. Roth718c8342018-02-28 13:00:04 -08001380 }
1381 if (retry_state != nullptr) {
1382 free_cached_send_op_data_after_commit(elem, retry_state);
1383 }
1384}
1385
1386// Starts a retry after appropriate back-off.
1387static void do_retry(grpc_call_element* elem,
1388 subchannel_call_retry_state* retry_state,
1389 grpc_millis server_pushback_ms) {
1390 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
1391 call_data* calld = static_cast<call_data*>(elem->call_data);
1392 GPR_ASSERT(calld->method_params != nullptr);
1393 const ClientChannelMethodParams::RetryPolicy* retry_policy =
1394 calld->method_params->retry_policy();
1395 GPR_ASSERT(retry_policy != nullptr);
1396 // Reset subchannel call and connected subchannel.
1397 if (calld->subchannel_call != nullptr) {
1398 GRPC_SUBCHANNEL_CALL_UNREF(calld->subchannel_call,
1399 "client_channel_call_retry");
1400 calld->subchannel_call = nullptr;
1401 }
1402 if (calld->pick.connected_subchannel != nullptr) {
1403 calld->pick.connected_subchannel.reset();
1404 }
1405 // Compute backoff delay.
1406 grpc_millis next_attempt_time;
1407 if (server_pushback_ms >= 0) {
1408 next_attempt_time = grpc_core::ExecCtx::Get()->Now() + server_pushback_ms;
1409 calld->last_attempt_got_server_pushback = true;
1410 } else {
1411 if (calld->num_attempts_completed == 1 ||
1412 calld->last_attempt_got_server_pushback) {
1413 calld->retry_backoff.Init(
1414 grpc_core::BackOff::Options()
1415 .set_initial_backoff(retry_policy->initial_backoff)
1416 .set_multiplier(retry_policy->backoff_multiplier)
1417 .set_jitter(RETRY_BACKOFF_JITTER)
1418 .set_max_backoff(retry_policy->max_backoff));
1419 calld->last_attempt_got_server_pushback = false;
1420 }
1421 next_attempt_time = calld->retry_backoff->NextAttemptTime();
1422 }
1423 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07001424 gpr_log(GPR_INFO,
Mark D. Roth718c8342018-02-28 13:00:04 -08001425 "chand=%p calld=%p: retrying failed call in %" PRIuPTR " ms", chand,
1426 calld, next_attempt_time - grpc_core::ExecCtx::Get()->Now());
1427 }
1428 // Schedule retry after computed delay.
1429 GRPC_CLOSURE_INIT(&calld->pick_closure, start_pick_locked, elem,
1430 grpc_combiner_scheduler(chand->combiner));
1431 grpc_timer_init(&calld->retry_timer, next_attempt_time, &calld->pick_closure);
1432 // Update bookkeeping.
1433 if (retry_state != nullptr) retry_state->retry_dispatched = true;
1434}
1435
1436// Returns true if the call is being retried.
1437static bool maybe_retry(grpc_call_element* elem,
1438 subchannel_batch_data* batch_data,
1439 grpc_status_code status,
1440 grpc_mdelem* server_pushback_md) {
1441 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
1442 call_data* calld = static_cast<call_data*>(elem->call_data);
1443 // Get retry policy.
1444 if (calld->method_params == nullptr) return false;
1445 const ClientChannelMethodParams::RetryPolicy* retry_policy =
1446 calld->method_params->retry_policy();
1447 if (retry_policy == nullptr) return false;
1448 // If we've already dispatched a retry from this call, return true.
1449 // This catches the case where the batch has multiple callbacks
1450 // (i.e., it includes either recv_message or recv_initial_metadata).
1451 subchannel_call_retry_state* retry_state = nullptr;
1452 if (batch_data != nullptr) {
1453 retry_state = static_cast<subchannel_call_retry_state*>(
1454 grpc_connected_subchannel_call_get_parent_data(
1455 batch_data->subchannel_call));
1456 if (retry_state->retry_dispatched) {
1457 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07001458 gpr_log(GPR_INFO, "chand=%p calld=%p: retry already dispatched", chand,
Mark D. Roth718c8342018-02-28 13:00:04 -08001459 calld);
1460 }
1461 return true;
1462 }
1463 }
1464 // Check status.
Yash Tibrewal8c5b8832018-05-14 11:44:18 -07001465 if (GPR_LIKELY(status == GRPC_STATUS_OK)) {
Mark D. Roth9db86fc2018-03-28 07:42:20 -07001466 if (calld->retry_throttle_data != nullptr) {
1467 calld->retry_throttle_data->RecordSuccess();
1468 }
Mark D. Roth718c8342018-02-28 13:00:04 -08001469 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07001470 gpr_log(GPR_INFO, "chand=%p calld=%p: call succeeded", chand, calld);
Mark D. Roth718c8342018-02-28 13:00:04 -08001471 }
1472 return false;
1473 }
1474 // Status is not OK. Check whether the status is retryable.
1475 if (!retry_policy->retryable_status_codes.Contains(status)) {
1476 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07001477 gpr_log(GPR_INFO,
Mark D. Roth718c8342018-02-28 13:00:04 -08001478 "chand=%p calld=%p: status %s not configured as retryable", chand,
1479 calld, grpc_status_code_to_string(status));
1480 }
1481 return false;
1482 }
1483 // Record the failure and check whether retries are throttled.
1484 // Note that it's important for this check to come after the status
1485 // code check above, since we should only record failures whose statuses
1486 // match the configured retryable status codes, so that we don't count
1487 // things like failures due to malformed requests (INVALID_ARGUMENT).
1488 // Conversely, it's important for this to come before the remaining
1489 // checks, so that we don't fail to record failures due to other factors.
Mark D. Roth9db86fc2018-03-28 07:42:20 -07001490 if (calld->retry_throttle_data != nullptr &&
1491 !calld->retry_throttle_data->RecordFailure()) {
Mark D. Roth718c8342018-02-28 13:00:04 -08001492 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07001493 gpr_log(GPR_INFO, "chand=%p calld=%p: retries throttled", chand, calld);
Mark D. Roth718c8342018-02-28 13:00:04 -08001494 }
1495 return false;
1496 }
1497 // Check whether the call is committed.
1498 if (calld->retry_committed) {
1499 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07001500 gpr_log(GPR_INFO, "chand=%p calld=%p: retries already committed", chand,
Mark D. Roth718c8342018-02-28 13:00:04 -08001501 calld);
1502 }
1503 return false;
1504 }
1505 // Check whether we have retries remaining.
1506 ++calld->num_attempts_completed;
1507 if (calld->num_attempts_completed >= retry_policy->max_attempts) {
1508 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07001509 gpr_log(GPR_INFO, "chand=%p calld=%p: exceeded %d retry attempts", chand,
Mark D. Roth718c8342018-02-28 13:00:04 -08001510 calld, retry_policy->max_attempts);
1511 }
1512 return false;
1513 }
1514 // If the call was cancelled from the surface, don't retry.
1515 if (calld->cancel_error != GRPC_ERROR_NONE) {
1516 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07001517 gpr_log(GPR_INFO,
Mark D. Roth718c8342018-02-28 13:00:04 -08001518 "chand=%p calld=%p: call cancelled from surface, not retrying",
1519 chand, calld);
1520 }
1521 return false;
1522 }
1523 // Check server push-back.
1524 grpc_millis server_pushback_ms = -1;
1525 if (server_pushback_md != nullptr) {
1526 // If the value is "-1" or any other unparseable string, we do not retry.
1527 uint32_t ms;
1528 if (!grpc_parse_slice_to_uint32(GRPC_MDVALUE(*server_pushback_md), &ms)) {
1529 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07001530 gpr_log(GPR_INFO,
Mark D. Roth718c8342018-02-28 13:00:04 -08001531 "chand=%p calld=%p: not retrying due to server push-back",
1532 chand, calld);
1533 }
1534 return false;
1535 } else {
1536 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07001537 gpr_log(GPR_INFO, "chand=%p calld=%p: server push-back: retry in %u ms",
1538 chand, calld, ms);
Mark D. Roth718c8342018-02-28 13:00:04 -08001539 }
1540 server_pushback_ms = (grpc_millis)ms;
1541 }
1542 }
1543 do_retry(elem, retry_state, server_pushback_ms);
1544 return true;
1545}
1546
1547//
1548// subchannel_batch_data
1549//
1550
1551static subchannel_batch_data* batch_data_create(grpc_call_element* elem,
1552 int refcount) {
1553 call_data* calld = static_cast<call_data*>(elem->call_data);
1554 subchannel_call_retry_state* retry_state =
1555 static_cast<subchannel_call_retry_state*>(
1556 grpc_connected_subchannel_call_get_parent_data(
1557 calld->subchannel_call));
1558 subchannel_batch_data* batch_data = static_cast<subchannel_batch_data*>(
1559 gpr_arena_alloc(calld->arena, sizeof(*batch_data)));
1560 batch_data->elem = elem;
1561 batch_data->subchannel_call =
1562 GRPC_SUBCHANNEL_CALL_REF(calld->subchannel_call, "batch_data_create");
1563 batch_data->batch.payload = &retry_state->batch_payload;
1564 gpr_ref_init(&batch_data->refs, refcount);
1565 GRPC_CLOSURE_INIT(&batch_data->on_complete, on_complete, batch_data,
1566 grpc_schedule_on_exec_ctx);
1567 batch_data->batch.on_complete = &batch_data->on_complete;
1568 GRPC_CALL_STACK_REF(calld->owning_call, "batch_data");
1569 return batch_data;
1570}
1571
1572static void batch_data_unref(subchannel_batch_data* batch_data) {
1573 if (gpr_unref(&batch_data->refs)) {
1574 if (batch_data->send_initial_metadata_storage != nullptr) {
1575 grpc_metadata_batch_destroy(&batch_data->send_initial_metadata);
1576 }
1577 if (batch_data->send_trailing_metadata_storage != nullptr) {
1578 grpc_metadata_batch_destroy(&batch_data->send_trailing_metadata);
1579 }
1580 if (batch_data->batch.recv_initial_metadata) {
1581 grpc_metadata_batch_destroy(&batch_data->recv_initial_metadata);
1582 }
1583 if (batch_data->batch.recv_trailing_metadata) {
1584 grpc_metadata_batch_destroy(&batch_data->recv_trailing_metadata);
1585 }
1586 GRPC_SUBCHANNEL_CALL_UNREF(batch_data->subchannel_call, "batch_data_unref");
1587 call_data* calld = static_cast<call_data*>(batch_data->elem->call_data);
1588 GRPC_CALL_STACK_UNREF(calld->owning_call, "batch_data");
1589 }
1590}
1591
1592//
1593// recv_initial_metadata callback handling
1594//
1595
1596// Invokes recv_initial_metadata_ready for a subchannel batch.
1597static void invoke_recv_initial_metadata_callback(void* arg,
1598 grpc_error* error) {
1599 subchannel_batch_data* batch_data = static_cast<subchannel_batch_data*>(arg);
1600 channel_data* chand =
1601 static_cast<channel_data*>(batch_data->elem->channel_data);
1602 call_data* calld = static_cast<call_data*>(batch_data->elem->call_data);
1603 // Find pending batch.
1604 pending_batch* pending = nullptr;
1605 for (size_t i = 0; i < GPR_ARRAY_SIZE(calld->pending_batches); ++i) {
1606 grpc_transport_stream_op_batch* batch = calld->pending_batches[i].batch;
1607 if (batch != nullptr && batch->recv_initial_metadata &&
1608 batch->payload->recv_initial_metadata.recv_initial_metadata_ready !=
1609 nullptr) {
1610 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07001611 gpr_log(GPR_INFO,
Mark D. Roth718c8342018-02-28 13:00:04 -08001612 "chand=%p calld=%p: invoking recv_initial_metadata_ready for "
1613 "pending batch at index %" PRIuPTR,
1614 chand, calld, i);
1615 }
1616 pending = &calld->pending_batches[i];
1617 break;
1618 }
1619 }
1620 GPR_ASSERT(pending != nullptr);
1621 // Return metadata.
1622 grpc_metadata_batch_move(
1623 &batch_data->recv_initial_metadata,
1624 pending->batch->payload->recv_initial_metadata.recv_initial_metadata);
1625 // Update bookkeeping.
1626 // Note: Need to do this before invoking the callback, since invoking
1627 // the callback will result in yielding the call combiner.
1628 grpc_closure* recv_initial_metadata_ready =
1629 pending->batch->payload->recv_initial_metadata
1630 .recv_initial_metadata_ready;
1631 pending->batch->payload->recv_initial_metadata.recv_initial_metadata_ready =
1632 nullptr;
1633 maybe_clear_pending_batch(batch_data->elem, pending);
1634 batch_data_unref(batch_data);
1635 // Invoke callback.
1636 GRPC_CLOSURE_RUN(recv_initial_metadata_ready, GRPC_ERROR_REF(error));
1637}
1638
1639// Intercepts recv_initial_metadata_ready callback for retries.
1640// Commits the call and returns the initial metadata up the stack.
1641static void recv_initial_metadata_ready(void* arg, grpc_error* error) {
1642 subchannel_batch_data* batch_data = static_cast<subchannel_batch_data*>(arg);
1643 grpc_call_element* elem = batch_data->elem;
1644 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
1645 call_data* calld = static_cast<call_data*>(elem->call_data);
1646 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07001647 gpr_log(GPR_INFO,
Mark D. Roth718c8342018-02-28 13:00:04 -08001648 "chand=%p calld=%p: got recv_initial_metadata_ready, error=%s",
1649 chand, calld, grpc_error_string(error));
1650 }
1651 subchannel_call_retry_state* retry_state =
1652 static_cast<subchannel_call_retry_state*>(
1653 grpc_connected_subchannel_call_get_parent_data(
1654 batch_data->subchannel_call));
1655 // If we got an error or a Trailers-Only response and have not yet gotten
1656 // the recv_trailing_metadata on_complete callback, then defer
1657 // propagating this callback back to the surface. We can evaluate whether
1658 // to retry when recv_trailing_metadata comes back.
Yash Tibrewal8c5b8832018-05-14 11:44:18 -07001659 if (GPR_UNLIKELY((batch_data->trailing_metadata_available ||
1660 error != GRPC_ERROR_NONE) &&
1661 !retry_state->completed_recv_trailing_metadata)) {
Mark D. Roth718c8342018-02-28 13:00:04 -08001662 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07001663 gpr_log(GPR_INFO,
Mark D. Roth718c8342018-02-28 13:00:04 -08001664 "chand=%p calld=%p: deferring recv_initial_metadata_ready "
1665 "(Trailers-Only)",
1666 chand, calld);
1667 }
Mark D. Rothde077ac2018-04-12 08:05:44 -07001668 retry_state->recv_initial_metadata_ready_deferred_batch = batch_data;
Mark D. Roth718c8342018-02-28 13:00:04 -08001669 retry_state->recv_initial_metadata_error = GRPC_ERROR_REF(error);
1670 if (!retry_state->started_recv_trailing_metadata) {
1671 // recv_trailing_metadata not yet started by application; start it
1672 // ourselves to get status.
1673 start_internal_recv_trailing_metadata(elem);
1674 } else {
1675 GRPC_CALL_COMBINER_STOP(
1676 calld->call_combiner,
1677 "recv_initial_metadata_ready trailers-only or error");
1678 }
1679 return;
1680 }
1681 // Received valid initial metadata, so commit the call.
1682 retry_commit(elem, retry_state);
1683 // Manually invoking a callback function; it does not take ownership of error.
1684 invoke_recv_initial_metadata_callback(batch_data, error);
1685 GRPC_ERROR_UNREF(error);
1686}
1687
1688//
1689// recv_message callback handling
1690//
1691
1692// Invokes recv_message_ready for a subchannel batch.
1693static void invoke_recv_message_callback(void* arg, grpc_error* error) {
1694 subchannel_batch_data* batch_data = static_cast<subchannel_batch_data*>(arg);
1695 channel_data* chand =
1696 static_cast<channel_data*>(batch_data->elem->channel_data);
1697 call_data* calld = static_cast<call_data*>(batch_data->elem->call_data);
1698 // Find pending op.
1699 pending_batch* pending = nullptr;
1700 for (size_t i = 0; i < GPR_ARRAY_SIZE(calld->pending_batches); ++i) {
1701 grpc_transport_stream_op_batch* batch = calld->pending_batches[i].batch;
1702 if (batch != nullptr && batch->recv_message &&
1703 batch->payload->recv_message.recv_message_ready != nullptr) {
1704 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07001705 gpr_log(GPR_INFO,
Mark D. Roth718c8342018-02-28 13:00:04 -08001706 "chand=%p calld=%p: invoking recv_message_ready for "
1707 "pending batch at index %" PRIuPTR,
1708 chand, calld, i);
1709 }
1710 pending = &calld->pending_batches[i];
1711 break;
1712 }
1713 }
1714 GPR_ASSERT(pending != nullptr);
1715 // Return payload.
1716 *pending->batch->payload->recv_message.recv_message =
Mark D. Roth3d8b32d2018-03-09 13:25:40 -08001717 std::move(batch_data->recv_message);
Mark D. Roth718c8342018-02-28 13:00:04 -08001718 // Update bookkeeping.
1719 // Note: Need to do this before invoking the callback, since invoking
1720 // the callback will result in yielding the call combiner.
1721 grpc_closure* recv_message_ready =
1722 pending->batch->payload->recv_message.recv_message_ready;
1723 pending->batch->payload->recv_message.recv_message_ready = nullptr;
1724 maybe_clear_pending_batch(batch_data->elem, pending);
1725 batch_data_unref(batch_data);
1726 // Invoke callback.
1727 GRPC_CLOSURE_RUN(recv_message_ready, GRPC_ERROR_REF(error));
1728}
1729
1730// Intercepts recv_message_ready callback for retries.
1731// Commits the call and returns the message up the stack.
1732static void recv_message_ready(void* arg, grpc_error* error) {
1733 subchannel_batch_data* batch_data = static_cast<subchannel_batch_data*>(arg);
1734 grpc_call_element* elem = batch_data->elem;
1735 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
1736 call_data* calld = static_cast<call_data*>(elem->call_data);
1737 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07001738 gpr_log(GPR_INFO, "chand=%p calld=%p: got recv_message_ready, error=%s",
Mark D. Roth718c8342018-02-28 13:00:04 -08001739 chand, calld, grpc_error_string(error));
1740 }
1741 subchannel_call_retry_state* retry_state =
1742 static_cast<subchannel_call_retry_state*>(
1743 grpc_connected_subchannel_call_get_parent_data(
1744 batch_data->subchannel_call));
1745 // If we got an error or the payload was nullptr and we have not yet gotten
1746 // the recv_trailing_metadata on_complete callback, then defer
1747 // propagating this callback back to the surface. We can evaluate whether
1748 // to retry when recv_trailing_metadata comes back.
Yash Tibrewal8c5b8832018-05-14 11:44:18 -07001749 if (GPR_UNLIKELY(
1750 (batch_data->recv_message == nullptr || error != GRPC_ERROR_NONE) &&
1751 !retry_state->completed_recv_trailing_metadata)) {
Mark D. Roth718c8342018-02-28 13:00:04 -08001752 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07001753 gpr_log(GPR_INFO,
Mark D. Roth718c8342018-02-28 13:00:04 -08001754 "chand=%p calld=%p: deferring recv_message_ready (nullptr "
1755 "message and recv_trailing_metadata pending)",
1756 chand, calld);
1757 }
Mark D. Rothde077ac2018-04-12 08:05:44 -07001758 retry_state->recv_message_ready_deferred_batch = batch_data;
Mark D. Roth718c8342018-02-28 13:00:04 -08001759 retry_state->recv_message_error = GRPC_ERROR_REF(error);
1760 if (!retry_state->started_recv_trailing_metadata) {
1761 // recv_trailing_metadata not yet started by application; start it
1762 // ourselves to get status.
1763 start_internal_recv_trailing_metadata(elem);
1764 } else {
1765 GRPC_CALL_COMBINER_STOP(calld->call_combiner, "recv_message_ready null");
1766 }
1767 return;
1768 }
1769 // Received a valid message, so commit the call.
1770 retry_commit(elem, retry_state);
1771 // Manually invoking a callback function; it does not take ownership of error.
1772 invoke_recv_message_callback(batch_data, error);
1773 GRPC_ERROR_UNREF(error);
1774}
1775
1776//
Mark D. Rothde077ac2018-04-12 08:05:44 -07001777// list of closures to execute in call combiner
1778//
1779
1780// Represents a closure that needs to run in the call combiner as part of
1781// starting or completing a batch.
1782typedef struct {
1783 grpc_closure* closure;
1784 grpc_error* error;
1785 const char* reason;
1786 bool free_reason = false;
1787} closure_to_execute;
1788
1789static void execute_closures_in_call_combiner(grpc_call_element* elem,
1790 const char* caller,
1791 closure_to_execute* closures,
1792 size_t num_closures) {
1793 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
1794 call_data* calld = static_cast<call_data*>(elem->call_data);
1795 // Note that the call combiner will be yielded for each closure that
1796 // we schedule. We're already running in the call combiner, so one of
1797 // the closures can be scheduled directly, but the others will
1798 // have to re-enter the call combiner.
1799 if (num_closures > 0) {
1800 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07001801 gpr_log(GPR_INFO, "chand=%p calld=%p: %s starting closure: %s", chand,
Mark D. Rothde077ac2018-04-12 08:05:44 -07001802 calld, caller, closures[0].reason);
1803 }
1804 GRPC_CLOSURE_SCHED(closures[0].closure, closures[0].error);
1805 if (closures[0].free_reason) {
1806 gpr_free(const_cast<char*>(closures[0].reason));
1807 }
1808 for (size_t i = 1; i < num_closures; ++i) {
1809 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07001810 gpr_log(GPR_INFO,
Mark D. Rothde077ac2018-04-12 08:05:44 -07001811 "chand=%p calld=%p: %s starting closure in call combiner: %s",
1812 chand, calld, caller, closures[i].reason);
1813 }
1814 GRPC_CALL_COMBINER_START(calld->call_combiner, closures[i].closure,
1815 closures[i].error, closures[i].reason);
1816 if (closures[i].free_reason) {
1817 gpr_free(const_cast<char*>(closures[i].reason));
1818 }
1819 }
1820 } else {
1821 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07001822 gpr_log(GPR_INFO, "chand=%p calld=%p: no closures to run for %s", chand,
Mark D. Rothde077ac2018-04-12 08:05:44 -07001823 calld, caller);
1824 }
1825 GRPC_CALL_COMBINER_STOP(calld->call_combiner, "no closures to run");
1826 }
1827}
1828
1829//
Mark D. Roth718c8342018-02-28 13:00:04 -08001830// on_complete callback handling
1831//
1832
1833// Updates retry_state to reflect the ops completed in batch_data.
1834static void update_retry_state_for_completed_batch(
1835 subchannel_batch_data* batch_data,
1836 subchannel_call_retry_state* retry_state) {
1837 if (batch_data->batch.send_initial_metadata) {
1838 retry_state->completed_send_initial_metadata = true;
1839 }
1840 if (batch_data->batch.send_message) {
1841 ++retry_state->completed_send_message_count;
1842 }
1843 if (batch_data->batch.send_trailing_metadata) {
1844 retry_state->completed_send_trailing_metadata = true;
1845 }
1846 if (batch_data->batch.recv_initial_metadata) {
1847 retry_state->completed_recv_initial_metadata = true;
1848 }
1849 if (batch_data->batch.recv_message) {
1850 ++retry_state->completed_recv_message_count;
1851 }
1852 if (batch_data->batch.recv_trailing_metadata) {
1853 retry_state->completed_recv_trailing_metadata = true;
1854 }
1855}
1856
Mark D. Roth718c8342018-02-28 13:00:04 -08001857// Adds any necessary closures for deferred recv_initial_metadata and
1858// recv_message callbacks to closures, updating *num_closures as needed.
1859static void add_closures_for_deferred_recv_callbacks(
1860 subchannel_batch_data* batch_data, subchannel_call_retry_state* retry_state,
1861 closure_to_execute* closures, size_t* num_closures) {
Mark D. Rothde077ac2018-04-12 08:05:44 -07001862 if (batch_data->batch.recv_trailing_metadata) {
1863 // Add closure for deferred recv_initial_metadata_ready.
Yash Tibrewalcff3f9f2018-05-21 15:51:47 -07001864 if (GPR_UNLIKELY(retry_state->recv_initial_metadata_ready_deferred_batch !=
1865 nullptr)) {
Mark D. Rothde077ac2018-04-12 08:05:44 -07001866 closure_to_execute* closure = &closures[(*num_closures)++];
1867 closure->closure = GRPC_CLOSURE_INIT(
1868 &batch_data->recv_initial_metadata_ready,
1869 invoke_recv_initial_metadata_callback,
1870 retry_state->recv_initial_metadata_ready_deferred_batch,
1871 grpc_schedule_on_exec_ctx);
1872 closure->error = retry_state->recv_initial_metadata_error;
1873 closure->reason = "resuming recv_initial_metadata_ready";
1874 retry_state->recv_initial_metadata_ready_deferred_batch = nullptr;
1875 }
1876 // Add closure for deferred recv_message_ready.
Yash Tibrewal8c5b8832018-05-14 11:44:18 -07001877 if (GPR_UNLIKELY(retry_state->recv_message_ready_deferred_batch !=
1878 nullptr)) {
Mark D. Rothde077ac2018-04-12 08:05:44 -07001879 closure_to_execute* closure = &closures[(*num_closures)++];
1880 closure->closure = GRPC_CLOSURE_INIT(
1881 &batch_data->recv_message_ready, invoke_recv_message_callback,
1882 retry_state->recv_message_ready_deferred_batch,
1883 grpc_schedule_on_exec_ctx);
1884 closure->error = retry_state->recv_message_error;
1885 closure->reason = "resuming recv_message_ready";
1886 retry_state->recv_message_ready_deferred_batch = nullptr;
1887 }
Mark D. Roth718c8342018-02-28 13:00:04 -08001888 }
1889}
1890
1891// If there are any cached ops to replay or pending ops to start on the
1892// subchannel call, adds a closure to closures to invoke
1893// start_retriable_subchannel_batches(), updating *num_closures as needed.
1894static void add_closures_for_replay_or_pending_send_ops(
1895 grpc_call_element* elem, subchannel_batch_data* batch_data,
1896 subchannel_call_retry_state* retry_state, closure_to_execute* closures,
1897 size_t* num_closures) {
1898 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
1899 call_data* calld = static_cast<call_data*>(elem->call_data);
1900 bool have_pending_send_message_ops =
Mark D. Rothefcd45b2018-03-28 10:49:59 -07001901 retry_state->started_send_message_count < calld->send_messages->size();
Mark D. Roth718c8342018-02-28 13:00:04 -08001902 bool have_pending_send_trailing_metadata_op =
1903 calld->seen_send_trailing_metadata &&
1904 !retry_state->started_send_trailing_metadata;
1905 if (!have_pending_send_message_ops &&
1906 !have_pending_send_trailing_metadata_op) {
1907 for (size_t i = 0; i < GPR_ARRAY_SIZE(calld->pending_batches); ++i) {
1908 pending_batch* pending = &calld->pending_batches[i];
1909 grpc_transport_stream_op_batch* batch = pending->batch;
1910 if (batch == nullptr || pending->send_ops_cached) continue;
1911 if (batch->send_message) have_pending_send_message_ops = true;
1912 if (batch->send_trailing_metadata) {
1913 have_pending_send_trailing_metadata_op = true;
1914 }
1915 }
1916 }
1917 if (have_pending_send_message_ops || have_pending_send_trailing_metadata_op) {
1918 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07001919 gpr_log(GPR_INFO,
Mark D. Roth718c8342018-02-28 13:00:04 -08001920 "chand=%p calld=%p: starting next batch for pending send op(s)",
1921 chand, calld);
1922 }
1923 closure_to_execute* closure = &closures[(*num_closures)++];
1924 closure->closure = GRPC_CLOSURE_INIT(
1925 &batch_data->batch.handler_private.closure,
1926 start_retriable_subchannel_batches, elem, grpc_schedule_on_exec_ctx);
1927 closure->error = GRPC_ERROR_NONE;
1928 closure->reason = "starting next batch for send_* op(s)";
1929 }
1930}
1931
1932// For any pending batch completed in batch_data, adds the necessary
1933// completion closures to closures, updating *num_closures as needed.
1934static void add_closures_for_completed_pending_batches(
1935 grpc_call_element* elem, subchannel_batch_data* batch_data,
1936 subchannel_call_retry_state* retry_state, grpc_error* error,
1937 closure_to_execute* closures, size_t* num_closures) {
1938 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
1939 call_data* calld = static_cast<call_data*>(elem->call_data);
1940 for (size_t i = 0; i < GPR_ARRAY_SIZE(calld->pending_batches); ++i) {
1941 pending_batch* pending = &calld->pending_batches[i];
1942 if (pending_batch_is_completed(pending, calld, retry_state)) {
1943 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07001944 gpr_log(GPR_INFO,
Mark D. Roth718c8342018-02-28 13:00:04 -08001945 "chand=%p calld=%p: pending batch completed at index %" PRIuPTR,
1946 chand, calld, i);
1947 }
1948 // Copy the trailing metadata to return it to the surface.
1949 if (batch_data->batch.recv_trailing_metadata) {
1950 grpc_metadata_batch_move(&batch_data->recv_trailing_metadata,
1951 pending->batch->payload->recv_trailing_metadata
1952 .recv_trailing_metadata);
1953 }
1954 closure_to_execute* closure = &closures[(*num_closures)++];
1955 closure->closure = pending->batch->on_complete;
1956 closure->error = GRPC_ERROR_REF(error);
1957 closure->reason = "on_complete for pending batch";
1958 pending->batch->on_complete = nullptr;
1959 maybe_clear_pending_batch(elem, pending);
1960 }
1961 }
1962 GRPC_ERROR_UNREF(error);
1963}
1964
1965// For any pending batch containing an op that has not yet been started,
1966// adds the pending batch's completion closures to closures, updating
1967// *num_closures as needed.
1968static void add_closures_to_fail_unstarted_pending_batches(
1969 grpc_call_element* elem, subchannel_call_retry_state* retry_state,
1970 grpc_error* error, closure_to_execute* closures, size_t* num_closures) {
1971 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
1972 call_data* calld = static_cast<call_data*>(elem->call_data);
1973 for (size_t i = 0; i < GPR_ARRAY_SIZE(calld->pending_batches); ++i) {
1974 pending_batch* pending = &calld->pending_batches[i];
1975 if (pending_batch_is_unstarted(pending, calld, retry_state)) {
1976 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07001977 gpr_log(GPR_INFO,
Mark D. Roth718c8342018-02-28 13:00:04 -08001978 "chand=%p calld=%p: failing unstarted pending batch at index "
1979 "%" PRIuPTR,
1980 chand, calld, i);
1981 }
1982 if (pending->batch->recv_initial_metadata) {
1983 closure_to_execute* closure = &closures[(*num_closures)++];
1984 closure->closure = pending->batch->payload->recv_initial_metadata
1985 .recv_initial_metadata_ready;
1986 closure->error = GRPC_ERROR_REF(error);
1987 closure->reason =
1988 "failing recv_initial_metadata_ready for pending batch";
1989 pending->batch->payload->recv_initial_metadata
1990 .recv_initial_metadata_ready = nullptr;
1991 }
1992 if (pending->batch->recv_message) {
1993 *pending->batch->payload->recv_message.recv_message = nullptr;
1994 closure_to_execute* closure = &closures[(*num_closures)++];
1995 closure->closure =
1996 pending->batch->payload->recv_message.recv_message_ready;
1997 closure->error = GRPC_ERROR_REF(error);
1998 closure->reason = "failing recv_message_ready for pending batch";
1999 pending->batch->payload->recv_message.recv_message_ready = nullptr;
2000 }
2001 closure_to_execute* closure = &closures[(*num_closures)++];
2002 closure->closure = pending->batch->on_complete;
2003 closure->error = GRPC_ERROR_REF(error);
2004 closure->reason = "failing on_complete for pending batch";
2005 pending->batch->on_complete = nullptr;
2006 maybe_clear_pending_batch(elem, pending);
2007 }
2008 }
2009 GRPC_ERROR_UNREF(error);
2010}
2011
2012// Callback used to intercept on_complete from subchannel calls.
2013// Called only when retries are enabled.
2014static void on_complete(void* arg, grpc_error* error) {
2015 subchannel_batch_data* batch_data = static_cast<subchannel_batch_data*>(arg);
2016 grpc_call_element* elem = batch_data->elem;
2017 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
2018 call_data* calld = static_cast<call_data*>(elem->call_data);
2019 if (grpc_client_channel_trace.enabled()) {
2020 char* batch_str = grpc_transport_stream_op_batch_string(&batch_data->batch);
Mark D. Roth48854d22018-04-25 13:05:26 -07002021 gpr_log(GPR_INFO, "chand=%p calld=%p: got on_complete, error=%s, batch=%s",
Mark D. Roth718c8342018-02-28 13:00:04 -08002022 chand, calld, grpc_error_string(error), batch_str);
2023 gpr_free(batch_str);
2024 }
2025 subchannel_call_retry_state* retry_state =
2026 static_cast<subchannel_call_retry_state*>(
2027 grpc_connected_subchannel_call_get_parent_data(
2028 batch_data->subchannel_call));
2029 // If we have previously completed recv_trailing_metadata, then the
2030 // call is finished.
2031 bool call_finished = retry_state->completed_recv_trailing_metadata;
Mark D. Rothde077ac2018-04-12 08:05:44 -07002032 // Record whether we were already committed before receiving this callback.
2033 const bool previously_committed = calld->retry_committed;
Mark D. Roth718c8342018-02-28 13:00:04 -08002034 // Update bookkeeping in retry_state.
2035 update_retry_state_for_completed_batch(batch_data, retry_state);
2036 if (call_finished) {
2037 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07002038 gpr_log(GPR_INFO, "chand=%p calld=%p: call already finished", chand,
Mark D. Roth718c8342018-02-28 13:00:04 -08002039 calld);
2040 }
2041 } else {
2042 // Check if this batch finished the call, and if so, get its status.
2043 // The call is finished if either (a) this callback was invoked with
2044 // an error or (b) we receive status.
2045 grpc_status_code status = GRPC_STATUS_OK;
2046 grpc_mdelem* server_pushback_md = nullptr;
Yash Tibrewal8c5b8832018-05-14 11:44:18 -07002047 if (GPR_UNLIKELY(error != GRPC_ERROR_NONE)) { // Case (a).
Mark D. Roth718c8342018-02-28 13:00:04 -08002048 call_finished = true;
2049 grpc_error_get_status(error, calld->deadline, &status, nullptr, nullptr,
2050 nullptr);
2051 } else if (batch_data->batch.recv_trailing_metadata) { // Case (b).
2052 call_finished = true;
2053 grpc_metadata_batch* md_batch =
2054 batch_data->batch.payload->recv_trailing_metadata
2055 .recv_trailing_metadata;
2056 GPR_ASSERT(md_batch->idx.named.grpc_status != nullptr);
2057 status = grpc_get_status_code_from_metadata(
2058 md_batch->idx.named.grpc_status->md);
2059 if (md_batch->idx.named.grpc_retry_pushback_ms != nullptr) {
2060 server_pushback_md = &md_batch->idx.named.grpc_retry_pushback_ms->md;
2061 }
Mark D. Roth718c8342018-02-28 13:00:04 -08002062 }
Mark D. Rothde077ac2018-04-12 08:05:44 -07002063 // If the call just finished, check if we should retry.
2064 if (call_finished) {
2065 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07002066 gpr_log(GPR_INFO, "chand=%p calld=%p: call finished, status=%s", chand,
Mark D. Rothde077ac2018-04-12 08:05:44 -07002067 calld, grpc_status_code_to_string(status));
Mark D. Roth718c8342018-02-28 13:00:04 -08002068 }
Mark D. Rothde077ac2018-04-12 08:05:44 -07002069 if (maybe_retry(elem, batch_data, status, server_pushback_md)) {
2070 // Unref batch_data for deferred recv_initial_metadata_ready or
2071 // recv_message_ready callbacks, if any.
2072 if (batch_data->batch.recv_trailing_metadata &&
2073 retry_state->recv_initial_metadata_ready_deferred_batch !=
2074 nullptr) {
2075 batch_data_unref(batch_data);
2076 GRPC_ERROR_UNREF(retry_state->recv_initial_metadata_error);
2077 }
2078 if (batch_data->batch.recv_trailing_metadata &&
2079 retry_state->recv_message_ready_deferred_batch != nullptr) {
2080 batch_data_unref(batch_data);
2081 GRPC_ERROR_UNREF(retry_state->recv_message_error);
2082 }
Mark D. Roth718c8342018-02-28 13:00:04 -08002083 batch_data_unref(batch_data);
Mark D. Rothde077ac2018-04-12 08:05:44 -07002084 return;
Mark D. Roth718c8342018-02-28 13:00:04 -08002085 }
Mark D. Rothde077ac2018-04-12 08:05:44 -07002086 // Not retrying, so commit the call.
2087 retry_commit(elem, retry_state);
Mark D. Roth718c8342018-02-28 13:00:04 -08002088 }
2089 }
Mark D. Rothde077ac2018-04-12 08:05:44 -07002090 // If we were already committed before receiving this callback, free
2091 // cached data for send ops that we've just completed. (If the call has
2092 // just now finished, the call to retry_commit() above will have freed all
2093 // cached send ops, so we don't need to do it here.)
2094 if (previously_committed) {
Mark D. Roth718c8342018-02-28 13:00:04 -08002095 free_cached_send_op_data_for_completed_batch(elem, batch_data, retry_state);
2096 }
2097 // Call not being retried.
2098 // Construct list of closures to execute.
2099 // Max number of closures is number of pending batches plus one for
2100 // each of:
2101 // - recv_initial_metadata_ready (either deferred or unstarted)
2102 // - recv_message_ready (either deferred or unstarted)
2103 // - starting a new batch for pending send ops
2104 closure_to_execute closures[GPR_ARRAY_SIZE(calld->pending_batches) + 3];
2105 size_t num_closures = 0;
2106 // If there are deferred recv_initial_metadata_ready or recv_message_ready
2107 // callbacks, add them to closures.
2108 add_closures_for_deferred_recv_callbacks(batch_data, retry_state, closures,
2109 &num_closures);
2110 // Find pending batches whose ops are now complete and add their
2111 // on_complete callbacks to closures.
2112 add_closures_for_completed_pending_batches(elem, batch_data, retry_state,
2113 GRPC_ERROR_REF(error), closures,
2114 &num_closures);
2115 // Add closures to handle any pending batches that have not yet been started.
2116 // If the call is finished, we fail these batches; otherwise, we add a
2117 // callback to start_retriable_subchannel_batches() to start them on
2118 // the subchannel call.
2119 if (call_finished) {
2120 add_closures_to_fail_unstarted_pending_batches(
2121 elem, retry_state, GRPC_ERROR_REF(error), closures, &num_closures);
2122 } else {
2123 add_closures_for_replay_or_pending_send_ops(elem, batch_data, retry_state,
2124 closures, &num_closures);
2125 }
2126 // Don't need batch_data anymore.
2127 batch_data_unref(batch_data);
2128 // Schedule all of the closures identified above.
Mark D. Rothde077ac2018-04-12 08:05:44 -07002129 execute_closures_in_call_combiner(elem, "on_complete", closures,
2130 num_closures);
Mark D. Roth718c8342018-02-28 13:00:04 -08002131}
2132
2133//
2134// subchannel batch construction
2135//
2136
2137// Helper function used to start a subchannel batch in the call combiner.
2138static void start_batch_in_call_combiner(void* arg, grpc_error* ignored) {
2139 grpc_transport_stream_op_batch* batch =
2140 static_cast<grpc_transport_stream_op_batch*>(arg);
2141 grpc_subchannel_call* subchannel_call =
2142 static_cast<grpc_subchannel_call*>(batch->handler_private.extra_arg);
2143 // Note: This will release the call combiner.
2144 grpc_subchannel_call_process_op(subchannel_call, batch);
2145}
2146
Mark D. Rothde077ac2018-04-12 08:05:44 -07002147// Adds a closure to closures that will execute batch in the call combiner.
2148static void add_closure_for_subchannel_batch(
2149 call_data* calld, grpc_transport_stream_op_batch* batch,
2150 closure_to_execute* closures, size_t* num_closures) {
2151 batch->handler_private.extra_arg = calld->subchannel_call;
2152 GRPC_CLOSURE_INIT(&batch->handler_private.closure,
2153 start_batch_in_call_combiner, batch,
2154 grpc_schedule_on_exec_ctx);
2155 closure_to_execute* closure = &closures[(*num_closures)++];
2156 closure->closure = &batch->handler_private.closure;
2157 closure->error = GRPC_ERROR_NONE;
2158 // If the tracer is enabled, we log a more detailed message, which
2159 // requires dynamic allocation. This will be freed in
2160 // start_retriable_subchannel_batches().
2161 if (grpc_client_channel_trace.enabled()) {
2162 char* batch_str = grpc_transport_stream_op_batch_string(batch);
2163 gpr_asprintf(const_cast<char**>(&closure->reason),
2164 "starting batch in call combiner: %s", batch_str);
2165 gpr_free(batch_str);
2166 closure->free_reason = true;
2167 } else {
2168 closure->reason = "start_subchannel_batch";
2169 }
2170}
2171
Mark D. Roth718c8342018-02-28 13:00:04 -08002172// Adds retriable send_initial_metadata op to batch_data.
2173static void add_retriable_send_initial_metadata_op(
2174 call_data* calld, subchannel_call_retry_state* retry_state,
2175 subchannel_batch_data* batch_data) {
2176 // Maps the number of retries to the corresponding metadata value slice.
2177 static const grpc_slice* retry_count_strings[] = {
2178 &GRPC_MDSTR_1, &GRPC_MDSTR_2, &GRPC_MDSTR_3, &GRPC_MDSTR_4};
2179 // We need to make a copy of the metadata batch for each attempt, since
2180 // the filters in the subchannel stack may modify this batch, and we don't
2181 // want those modifications to be passed forward to subsequent attempts.
2182 //
2183 // If we've already completed one or more attempts, add the
2184 // grpc-retry-attempts header.
2185 batch_data->send_initial_metadata_storage =
2186 static_cast<grpc_linked_mdelem*>(gpr_arena_alloc(
2187 calld->arena, sizeof(grpc_linked_mdelem) *
2188 (calld->send_initial_metadata.list.count +
2189 (calld->num_attempts_completed > 0))));
2190 grpc_metadata_batch_copy(&calld->send_initial_metadata,
2191 &batch_data->send_initial_metadata,
2192 batch_data->send_initial_metadata_storage);
Yash Tibrewal8c5b8832018-05-14 11:44:18 -07002193 if (GPR_UNLIKELY(batch_data->send_initial_metadata.idx.named
2194 .grpc_previous_rpc_attempts != nullptr)) {
Mark D. Roth718c8342018-02-28 13:00:04 -08002195 grpc_metadata_batch_remove(
2196 &batch_data->send_initial_metadata,
2197 batch_data->send_initial_metadata.idx.named.grpc_previous_rpc_attempts);
2198 }
Yash Tibrewal8c5b8832018-05-14 11:44:18 -07002199 if (GPR_UNLIKELY(calld->num_attempts_completed > 0)) {
Mark D. Roth718c8342018-02-28 13:00:04 -08002200 grpc_mdelem retry_md = grpc_mdelem_from_slices(
2201 GRPC_MDSTR_GRPC_PREVIOUS_RPC_ATTEMPTS,
2202 *retry_count_strings[calld->num_attempts_completed - 1]);
2203 grpc_error* error = grpc_metadata_batch_add_tail(
2204 &batch_data->send_initial_metadata,
2205 &batch_data->send_initial_metadata_storage[calld->send_initial_metadata
2206 .list.count],
2207 retry_md);
Yash Tibrewal7f51ba82018-04-12 13:21:20 -07002208 if (GPR_UNLIKELY(error != GRPC_ERROR_NONE)) {
Mark D. Roth718c8342018-02-28 13:00:04 -08002209 gpr_log(GPR_ERROR, "error adding retry metadata: %s",
2210 grpc_error_string(error));
2211 GPR_ASSERT(false);
2212 }
2213 }
2214 retry_state->started_send_initial_metadata = true;
2215 batch_data->batch.send_initial_metadata = true;
2216 batch_data->batch.payload->send_initial_metadata.send_initial_metadata =
2217 &batch_data->send_initial_metadata;
2218 batch_data->batch.payload->send_initial_metadata.send_initial_metadata_flags =
2219 calld->send_initial_metadata_flags;
2220 batch_data->batch.payload->send_initial_metadata.peer_string =
2221 calld->peer_string;
2222}
2223
2224// Adds retriable send_message op to batch_data.
2225static void add_retriable_send_message_op(
2226 grpc_call_element* elem, subchannel_call_retry_state* retry_state,
2227 subchannel_batch_data* batch_data) {
2228 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
2229 call_data* calld = static_cast<call_data*>(elem->call_data);
2230 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07002231 gpr_log(GPR_INFO,
Mark D. Roth718c8342018-02-28 13:00:04 -08002232 "chand=%p calld=%p: starting calld->send_messages[%" PRIuPTR "]",
2233 chand, calld, retry_state->started_send_message_count);
2234 }
Mark D. Roth3d8b32d2018-03-09 13:25:40 -08002235 grpc_core::ByteStreamCache* cache =
Mark D. Rothefcd45b2018-03-28 10:49:59 -07002236 (*calld->send_messages)[retry_state->started_send_message_count];
Mark D. Roth718c8342018-02-28 13:00:04 -08002237 ++retry_state->started_send_message_count;
Mark D. Roth3d8b32d2018-03-09 13:25:40 -08002238 batch_data->send_message.Init(cache);
Mark D. Roth718c8342018-02-28 13:00:04 -08002239 batch_data->batch.send_message = true;
Mark D. Roth3d8b32d2018-03-09 13:25:40 -08002240 batch_data->batch.payload->send_message.send_message.reset(
2241 batch_data->send_message.get());
Mark D. Roth718c8342018-02-28 13:00:04 -08002242}
2243
2244// Adds retriable send_trailing_metadata op to batch_data.
2245static void add_retriable_send_trailing_metadata_op(
2246 call_data* calld, subchannel_call_retry_state* retry_state,
2247 subchannel_batch_data* batch_data) {
2248 // We need to make a copy of the metadata batch for each attempt, since
2249 // the filters in the subchannel stack may modify this batch, and we don't
2250 // want those modifications to be passed forward to subsequent attempts.
2251 batch_data->send_trailing_metadata_storage =
2252 static_cast<grpc_linked_mdelem*>(gpr_arena_alloc(
2253 calld->arena, sizeof(grpc_linked_mdelem) *
2254 calld->send_trailing_metadata.list.count));
2255 grpc_metadata_batch_copy(&calld->send_trailing_metadata,
2256 &batch_data->send_trailing_metadata,
2257 batch_data->send_trailing_metadata_storage);
2258 retry_state->started_send_trailing_metadata = true;
2259 batch_data->batch.send_trailing_metadata = true;
2260 batch_data->batch.payload->send_trailing_metadata.send_trailing_metadata =
2261 &batch_data->send_trailing_metadata;
2262}
2263
2264// Adds retriable recv_initial_metadata op to batch_data.
2265static void add_retriable_recv_initial_metadata_op(
2266 call_data* calld, subchannel_call_retry_state* retry_state,
2267 subchannel_batch_data* batch_data) {
2268 retry_state->started_recv_initial_metadata = true;
2269 batch_data->batch.recv_initial_metadata = true;
2270 grpc_metadata_batch_init(&batch_data->recv_initial_metadata);
2271 batch_data->batch.payload->recv_initial_metadata.recv_initial_metadata =
2272 &batch_data->recv_initial_metadata;
2273 batch_data->batch.payload->recv_initial_metadata.trailing_metadata_available =
2274 &batch_data->trailing_metadata_available;
2275 GRPC_CLOSURE_INIT(&batch_data->recv_initial_metadata_ready,
2276 recv_initial_metadata_ready, batch_data,
2277 grpc_schedule_on_exec_ctx);
2278 batch_data->batch.payload->recv_initial_metadata.recv_initial_metadata_ready =
2279 &batch_data->recv_initial_metadata_ready;
2280}
2281
2282// Adds retriable recv_message op to batch_data.
2283static void add_retriable_recv_message_op(
2284 call_data* calld, subchannel_call_retry_state* retry_state,
2285 subchannel_batch_data* batch_data) {
2286 ++retry_state->started_recv_message_count;
2287 batch_data->batch.recv_message = true;
2288 batch_data->batch.payload->recv_message.recv_message =
2289 &batch_data->recv_message;
2290 GRPC_CLOSURE_INIT(&batch_data->recv_message_ready, recv_message_ready,
2291 batch_data, grpc_schedule_on_exec_ctx);
2292 batch_data->batch.payload->recv_message.recv_message_ready =
2293 &batch_data->recv_message_ready;
2294}
2295
2296// Adds retriable recv_trailing_metadata op to batch_data.
2297static void add_retriable_recv_trailing_metadata_op(
2298 call_data* calld, subchannel_call_retry_state* retry_state,
2299 subchannel_batch_data* batch_data) {
2300 retry_state->started_recv_trailing_metadata = true;
2301 batch_data->batch.recv_trailing_metadata = true;
2302 grpc_metadata_batch_init(&batch_data->recv_trailing_metadata);
2303 batch_data->batch.payload->recv_trailing_metadata.recv_trailing_metadata =
2304 &batch_data->recv_trailing_metadata;
2305 batch_data->batch.collect_stats = true;
2306 batch_data->batch.payload->collect_stats.collect_stats =
2307 &batch_data->collect_stats;
2308}
2309
2310// Helper function used to start a recv_trailing_metadata batch. This
2311// is used in the case where a recv_initial_metadata or recv_message
2312// op fails in a way that we know the call is over but when the application
2313// has not yet started its own recv_trailing_metadata op.
2314static void start_internal_recv_trailing_metadata(grpc_call_element* elem) {
2315 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
2316 call_data* calld = static_cast<call_data*>(elem->call_data);
2317 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07002318 gpr_log(GPR_INFO,
Mark D. Roth718c8342018-02-28 13:00:04 -08002319 "chand=%p calld=%p: call failed but recv_trailing_metadata not "
2320 "started; starting it internally",
2321 chand, calld);
2322 }
2323 subchannel_call_retry_state* retry_state =
2324 static_cast<subchannel_call_retry_state*>(
2325 grpc_connected_subchannel_call_get_parent_data(
2326 calld->subchannel_call));
Mark D. Rothde077ac2018-04-12 08:05:44 -07002327 // Create batch_data with 2 refs, since this batch will be unreffed twice:
2328 // once when the subchannel batch returns, and again when we actually get
2329 // a recv_trailing_metadata op from the surface.
2330 subchannel_batch_data* batch_data = batch_data_create(elem, 2);
Mark D. Roth718c8342018-02-28 13:00:04 -08002331 add_retriable_recv_trailing_metadata_op(calld, retry_state, batch_data);
Mark D. Rothde077ac2018-04-12 08:05:44 -07002332 retry_state->recv_trailing_metadata_internal_batch = batch_data;
Mark D. Roth718c8342018-02-28 13:00:04 -08002333 // Note: This will release the call combiner.
2334 grpc_subchannel_call_process_op(calld->subchannel_call, &batch_data->batch);
2335}
2336
2337// If there are any cached send ops that need to be replayed on the
2338// current subchannel call, creates and returns a new subchannel batch
2339// to replay those ops. Otherwise, returns nullptr.
2340static subchannel_batch_data* maybe_create_subchannel_batch_for_replay(
2341 grpc_call_element* elem, subchannel_call_retry_state* retry_state) {
2342 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
2343 call_data* calld = static_cast<call_data*>(elem->call_data);
2344 subchannel_batch_data* replay_batch_data = nullptr;
2345 // send_initial_metadata.
2346 if (calld->seen_send_initial_metadata &&
2347 !retry_state->started_send_initial_metadata &&
2348 !calld->pending_send_initial_metadata) {
2349 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07002350 gpr_log(GPR_INFO,
Mark D. Roth718c8342018-02-28 13:00:04 -08002351 "chand=%p calld=%p: replaying previously completed "
2352 "send_initial_metadata op",
2353 chand, calld);
2354 }
2355 replay_batch_data = batch_data_create(elem, 1);
2356 add_retriable_send_initial_metadata_op(calld, retry_state,
2357 replay_batch_data);
2358 }
2359 // send_message.
2360 // Note that we can only have one send_message op in flight at a time.
Mark D. Rothefcd45b2018-03-28 10:49:59 -07002361 if (retry_state->started_send_message_count < calld->send_messages->size() &&
Mark D. Roth718c8342018-02-28 13:00:04 -08002362 retry_state->started_send_message_count ==
2363 retry_state->completed_send_message_count &&
2364 !calld->pending_send_message) {
2365 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07002366 gpr_log(GPR_INFO,
Mark D. Roth718c8342018-02-28 13:00:04 -08002367 "chand=%p calld=%p: replaying previously completed "
2368 "send_message op",
2369 chand, calld);
2370 }
2371 if (replay_batch_data == nullptr) {
2372 replay_batch_data = batch_data_create(elem, 1);
2373 }
2374 add_retriable_send_message_op(elem, retry_state, replay_batch_data);
2375 }
2376 // send_trailing_metadata.
2377 // Note that we only add this op if we have no more send_message ops
2378 // to start, since we can't send down any more send_message ops after
2379 // send_trailing_metadata.
2380 if (calld->seen_send_trailing_metadata &&
Mark D. Rothefcd45b2018-03-28 10:49:59 -07002381 retry_state->started_send_message_count == calld->send_messages->size() &&
Mark D. Roth718c8342018-02-28 13:00:04 -08002382 !retry_state->started_send_trailing_metadata &&
2383 !calld->pending_send_trailing_metadata) {
2384 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07002385 gpr_log(GPR_INFO,
Mark D. Roth718c8342018-02-28 13:00:04 -08002386 "chand=%p calld=%p: replaying previously completed "
2387 "send_trailing_metadata op",
2388 chand, calld);
2389 }
2390 if (replay_batch_data == nullptr) {
2391 replay_batch_data = batch_data_create(elem, 1);
2392 }
2393 add_retriable_send_trailing_metadata_op(calld, retry_state,
2394 replay_batch_data);
2395 }
2396 return replay_batch_data;
2397}
2398
2399// Adds subchannel batches for pending batches to batches, updating
2400// *num_batches as needed.
2401static void add_subchannel_batches_for_pending_batches(
2402 grpc_call_element* elem, subchannel_call_retry_state* retry_state,
Mark D. Rothde077ac2018-04-12 08:05:44 -07002403 closure_to_execute* closures, size_t* num_closures) {
Mark D. Roth718c8342018-02-28 13:00:04 -08002404 call_data* calld = static_cast<call_data*>(elem->call_data);
2405 for (size_t i = 0; i < GPR_ARRAY_SIZE(calld->pending_batches); ++i) {
2406 pending_batch* pending = &calld->pending_batches[i];
2407 grpc_transport_stream_op_batch* batch = pending->batch;
2408 if (batch == nullptr) continue;
2409 // Skip any batch that either (a) has already been started on this
2410 // subchannel call or (b) we can't start yet because we're still
2411 // replaying send ops that need to be completed first.
2412 // TODO(roth): Note that if any one op in the batch can't be sent
2413 // yet due to ops that we're replaying, we don't start any of the ops
2414 // in the batch. This is probably okay, but it could conceivably
2415 // lead to increased latency in some cases -- e.g., we could delay
2416 // starting a recv op due to it being in the same batch with a send
2417 // op. If/when we revamp the callback protocol in
2418 // transport_stream_op_batch, we may be able to fix this.
2419 if (batch->send_initial_metadata &&
2420 retry_state->started_send_initial_metadata) {
2421 continue;
2422 }
2423 if (batch->send_message && retry_state->completed_send_message_count <
2424 retry_state->started_send_message_count) {
2425 continue;
2426 }
2427 // Note that we only start send_trailing_metadata if we have no more
2428 // send_message ops to start, since we can't send down any more
2429 // send_message ops after send_trailing_metadata.
2430 if (batch->send_trailing_metadata &&
2431 (retry_state->started_send_message_count + batch->send_message <
Mark D. Rothefcd45b2018-03-28 10:49:59 -07002432 calld->send_messages->size() ||
Mark D. Roth718c8342018-02-28 13:00:04 -08002433 retry_state->started_send_trailing_metadata)) {
2434 continue;
2435 }
2436 if (batch->recv_initial_metadata &&
2437 retry_state->started_recv_initial_metadata) {
2438 continue;
2439 }
2440 if (batch->recv_message && retry_state->completed_recv_message_count <
2441 retry_state->started_recv_message_count) {
2442 continue;
2443 }
2444 if (batch->recv_trailing_metadata &&
2445 retry_state->started_recv_trailing_metadata) {
Mark D. Rothde077ac2018-04-12 08:05:44 -07002446 // If we previously completed a recv_trailing_metadata op
2447 // initiated by start_internal_recv_trailing_metadata(), use the
2448 // result of that instead of trying to re-start this op.
Yash Tibrewal8c5b8832018-05-14 11:44:18 -07002449 if (GPR_UNLIKELY((retry_state->recv_trailing_metadata_internal_batch !=
2450 nullptr))) {
Mark D. Rothde077ac2018-04-12 08:05:44 -07002451 // If the batch completed, then trigger the completion callback
2452 // directly, so that we return the previously returned results to
2453 // the application. Otherwise, just unref the internally
2454 // started subchannel batch, since we'll propagate the
2455 // completion when it completes.
2456 if (retry_state->completed_recv_trailing_metadata) {
2457 subchannel_batch_data* batch_data =
2458 retry_state->recv_trailing_metadata_internal_batch;
2459 closure_to_execute* closure = &closures[(*num_closures)++];
2460 closure->closure = &batch_data->on_complete;
2461 // Batches containing recv_trailing_metadata always succeed.
2462 closure->error = GRPC_ERROR_NONE;
2463 closure->reason =
2464 "re-executing on_complete for recv_trailing_metadata "
2465 "to propagate internally triggered result";
2466 } else {
2467 batch_data_unref(retry_state->recv_trailing_metadata_internal_batch);
2468 }
2469 retry_state->recv_trailing_metadata_internal_batch = nullptr;
2470 }
Mark D. Roth718c8342018-02-28 13:00:04 -08002471 continue;
2472 }
2473 // If we're not retrying, just send the batch as-is.
2474 if (calld->method_params == nullptr ||
2475 calld->method_params->retry_policy() == nullptr ||
2476 calld->retry_committed) {
Mark D. Rothde077ac2018-04-12 08:05:44 -07002477 add_closure_for_subchannel_batch(calld, batch, closures, num_closures);
Mark D. Roth718c8342018-02-28 13:00:04 -08002478 pending_batch_clear(calld, pending);
2479 continue;
2480 }
2481 // Create batch with the right number of callbacks.
2482 const int num_callbacks =
2483 1 + batch->recv_initial_metadata + batch->recv_message;
2484 subchannel_batch_data* batch_data = batch_data_create(elem, num_callbacks);
2485 // Cache send ops if needed.
2486 maybe_cache_send_ops_for_batch(calld, pending);
2487 // send_initial_metadata.
2488 if (batch->send_initial_metadata) {
2489 add_retriable_send_initial_metadata_op(calld, retry_state, batch_data);
2490 }
2491 // send_message.
2492 if (batch->send_message) {
2493 add_retriable_send_message_op(elem, retry_state, batch_data);
2494 }
2495 // send_trailing_metadata.
2496 if (batch->send_trailing_metadata) {
2497 add_retriable_send_trailing_metadata_op(calld, retry_state, batch_data);
2498 }
2499 // recv_initial_metadata.
2500 if (batch->recv_initial_metadata) {
2501 // recv_flags is only used on the server side.
2502 GPR_ASSERT(batch->payload->recv_initial_metadata.recv_flags == nullptr);
2503 add_retriable_recv_initial_metadata_op(calld, retry_state, batch_data);
2504 }
2505 // recv_message.
2506 if (batch->recv_message) {
2507 add_retriable_recv_message_op(calld, retry_state, batch_data);
2508 }
2509 // recv_trailing_metadata.
2510 if (batch->recv_trailing_metadata) {
2511 GPR_ASSERT(batch->collect_stats);
2512 add_retriable_recv_trailing_metadata_op(calld, retry_state, batch_data);
2513 }
Mark D. Rothde077ac2018-04-12 08:05:44 -07002514 add_closure_for_subchannel_batch(calld, &batch_data->batch, closures,
2515 num_closures);
Mark D. Roth718c8342018-02-28 13:00:04 -08002516 }
2517}
2518
2519// Constructs and starts whatever subchannel batches are needed on the
2520// subchannel call.
2521static void start_retriable_subchannel_batches(void* arg, grpc_error* ignored) {
2522 grpc_call_element* elem = static_cast<grpc_call_element*>(arg);
2523 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
2524 call_data* calld = static_cast<call_data*>(elem->call_data);
2525 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07002526 gpr_log(GPR_INFO, "chand=%p calld=%p: constructing retriable batches",
Mark D. Roth718c8342018-02-28 13:00:04 -08002527 chand, calld);
2528 }
2529 subchannel_call_retry_state* retry_state =
2530 static_cast<subchannel_call_retry_state*>(
2531 grpc_connected_subchannel_call_get_parent_data(
2532 calld->subchannel_call));
Mark D. Rothde077ac2018-04-12 08:05:44 -07002533 // Construct list of closures to execute, one for each pending batch.
Mark D. Roth718c8342018-02-28 13:00:04 -08002534 // We can start up to 6 batches.
Mark D. Rothde077ac2018-04-12 08:05:44 -07002535 closure_to_execute closures[GPR_ARRAY_SIZE(calld->pending_batches)];
2536 size_t num_closures = 0;
Mark D. Roth718c8342018-02-28 13:00:04 -08002537 // Replay previously-returned send_* ops if needed.
2538 subchannel_batch_data* replay_batch_data =
2539 maybe_create_subchannel_batch_for_replay(elem, retry_state);
2540 if (replay_batch_data != nullptr) {
Mark D. Rothde077ac2018-04-12 08:05:44 -07002541 add_closure_for_subchannel_batch(calld, &replay_batch_data->batch, closures,
2542 &num_closures);
Mark D. Roth718c8342018-02-28 13:00:04 -08002543 }
2544 // Now add pending batches.
Mark D. Rothde077ac2018-04-12 08:05:44 -07002545 add_subchannel_batches_for_pending_batches(elem, retry_state, closures,
2546 &num_closures);
Mark D. Roth718c8342018-02-28 13:00:04 -08002547 // Start batches on subchannel call.
Mark D. Roth718c8342018-02-28 13:00:04 -08002548 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07002549 gpr_log(GPR_INFO,
Mark D. Roth718c8342018-02-28 13:00:04 -08002550 "chand=%p calld=%p: starting %" PRIuPTR
2551 " retriable batches on subchannel_call=%p",
Mark D. Rothde077ac2018-04-12 08:05:44 -07002552 chand, calld, num_closures, calld->subchannel_call);
Mark D. Roth718c8342018-02-28 13:00:04 -08002553 }
Mark D. Rothde077ac2018-04-12 08:05:44 -07002554 execute_closures_in_call_combiner(elem, "start_retriable_subchannel_batches",
2555 closures, num_closures);
Mark D. Roth718c8342018-02-28 13:00:04 -08002556}
2557
2558//
2559// LB pick
2560//
2561
2562static void create_subchannel_call(grpc_call_element* elem, grpc_error* error) {
2563 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
2564 call_data* calld = static_cast<call_data*>(elem->call_data);
2565 const size_t parent_data_size =
2566 calld->enable_retries ? sizeof(subchannel_call_retry_state) : 0;
David Garcia Quintasbaf1ac72018-01-09 14:24:32 -08002567 const grpc_core::ConnectedSubchannel::CallArgs call_args = {
Mark D. Rothc0febd32018-01-09 10:25:24 -08002568 calld->pollent, // pollent
2569 calld->path, // path
2570 calld->call_start_time, // start_time
2571 calld->deadline, // deadline
2572 calld->arena, // arena
2573 calld->pick.subchannel_call_context, // context
Mark D. Roth718c8342018-02-28 13:00:04 -08002574 calld->call_combiner, // call_combiner
2575 parent_data_size // parent_data_size
Yash Tibrewald8b84a22017-09-25 13:38:03 -07002576 };
David Garcia Quintas70fbe622018-01-09 19:27:46 -08002577 grpc_error* new_error = calld->pick.connected_subchannel->CreateCall(
David Garcia Quintasbaf1ac72018-01-09 14:24:32 -08002578 call_args, &calld->subchannel_call);
Craig Tiller6014e8a2017-10-16 13:50:29 -07002579 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07002580 gpr_log(GPR_INFO, "chand=%p calld=%p: create subchannel_call=%p: error=%s",
Mark D. Roth76e264b2017-08-25 09:03:33 -07002581 chand, calld, calld->subchannel_call, grpc_error_string(new_error));
Mark D. Roth60751fe2017-07-07 12:50:33 -07002582 }
Yash Tibrewal8c5b8832018-05-14 11:44:18 -07002583 if (GPR_UNLIKELY(new_error != GRPC_ERROR_NONE)) {
Mark D. Roth0ca0be82017-06-20 07:49:33 -07002584 new_error = grpc_error_add_child(new_error, error);
Mark D. Roth718c8342018-02-28 13:00:04 -08002585 pending_batches_fail(elem, new_error, true /* yield_call_combiner */);
Mark D. Roth0ca0be82017-06-20 07:49:33 -07002586 } else {
Mark D. Roth718c8342018-02-28 13:00:04 -08002587 if (parent_data_size > 0) {
2588 subchannel_call_retry_state* retry_state =
2589 static_cast<subchannel_call_retry_state*>(
2590 grpc_connected_subchannel_call_get_parent_data(
2591 calld->subchannel_call));
2592 retry_state->batch_payload.context = calld->pick.subchannel_call_context;
2593 }
2594 pending_batches_resume(elem);
Craig Tiller11c17d42017-03-13 13:36:34 -07002595 }
Mark D. Roth0ca0be82017-06-20 07:49:33 -07002596 GRPC_ERROR_UNREF(error);
Craig Tiller11c17d42017-03-13 13:36:34 -07002597}
2598
Mark D. Rothb2929602017-09-11 09:31:11 -07002599// Invoked when a pick is completed, on both success or failure.
Mark D. Roth718c8342018-02-28 13:00:04 -08002600static void pick_done(void* arg, grpc_error* error) {
2601 grpc_call_element* elem = static_cast<grpc_call_element*>(arg);
Noah Eisenbe82e642018-02-09 09:16:55 -08002602 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
Mark D. Roth718c8342018-02-28 13:00:04 -08002603 call_data* calld = static_cast<call_data*>(elem->call_data);
Yash Tibrewal8c5b8832018-05-14 11:44:18 -07002604 if (GPR_UNLIKELY(calld->pick.connected_subchannel == nullptr)) {
Mark D. Roth0ca0be82017-06-20 07:49:33 -07002605 // Failed to create subchannel.
Mark D. Roth718c8342018-02-28 13:00:04 -08002606 // If there was no error, this is an LB policy drop, in which case
2607 // we return an error; otherwise, we may retry.
2608 grpc_status_code status = GRPC_STATUS_OK;
2609 grpc_error_get_status(error, calld->deadline, &status, nullptr, nullptr,
2610 nullptr);
2611 if (error == GRPC_ERROR_NONE || !calld->enable_retries ||
2612 !maybe_retry(elem, nullptr /* batch_data */, status,
2613 nullptr /* server_pushback_md */)) {
2614 grpc_error* new_error =
2615 error == GRPC_ERROR_NONE
2616 ? GRPC_ERROR_CREATE_FROM_STATIC_STRING(
2617 "Call dropped by load balancing policy")
2618 : GRPC_ERROR_CREATE_REFERENCING_FROM_STATIC_STRING(
2619 "Failed to create subchannel", &error, 1);
2620 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07002621 gpr_log(GPR_INFO,
Mark D. Roth718c8342018-02-28 13:00:04 -08002622 "chand=%p calld=%p: failed to create subchannel: error=%s",
2623 chand, calld, grpc_error_string(new_error));
2624 }
2625 pending_batches_fail(elem, new_error, true /* yield_call_combiner */);
Mark D. Roth60751fe2017-07-07 12:50:33 -07002626 }
Mark D. Roth2a5959f2016-09-01 08:20:27 -07002627 } else {
Mark D. Roth9fe284e2016-09-12 11:22:27 -07002628 /* Create call on subchannel. */
Mark D. Roth718c8342018-02-28 13:00:04 -08002629 create_subchannel_call(elem, GRPC_ERROR_REF(error));
Mark D. Roth2a5959f2016-09-01 08:20:27 -07002630 }
Mark D. Roth718c8342018-02-28 13:00:04 -08002631}
2632
2633// Invoked when a pick is completed to leave the client_channel combiner
2634// and continue processing in the call combiner.
2635static void pick_done_locked(grpc_call_element* elem, grpc_error* error) {
2636 call_data* calld = static_cast<call_data*>(elem->call_data);
2637 GRPC_CLOSURE_INIT(&calld->pick_closure, pick_done, elem,
2638 grpc_schedule_on_exec_ctx);
2639 GRPC_CLOSURE_SCHED(&calld->pick_closure, error);
Mark D. Roth2a5959f2016-09-01 08:20:27 -07002640}
2641
Mark D. Rothb2929602017-09-11 09:31:11 -07002642// A wrapper around pick_done_locked() that is used in cases where
2643// either (a) the pick was deferred pending a resolver result or (b) the
2644// pick was done asynchronously. Removes the call's polling entity from
2645// chand->interested_parties before invoking pick_done_locked().
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002646static void async_pick_done_locked(grpc_call_element* elem, grpc_error* error) {
Noah Eisenbe82e642018-02-09 09:16:55 -08002647 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
2648 call_data* calld = static_cast<call_data*>(elem->call_data);
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002649 grpc_polling_entity_del_from_pollset_set(calld->pollent,
Mark D. Rothb2929602017-09-11 09:31:11 -07002650 chand->interested_parties);
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002651 pick_done_locked(elem, error);
Mark D. Rothb2929602017-09-11 09:31:11 -07002652}
2653
2654// Note: This runs under the client_channel combiner, but will NOT be
2655// holding the call combiner.
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002656static void pick_callback_cancel_locked(void* arg, grpc_error* error) {
Noah Eisenbe82e642018-02-09 09:16:55 -08002657 grpc_call_element* elem = static_cast<grpc_call_element*>(arg);
2658 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
2659 call_data* calld = static_cast<call_data*>(elem->call_data);
Mark D. Rothc0febd32018-01-09 10:25:24 -08002660 // Note: chand->lb_policy may have changed since we started our pick,
2661 // in which case we will be cancelling the pick on a policy other than
2662 // the one we started it on. However, this will just be a no-op.
Yash Tibrewal8c5b8832018-05-14 11:44:18 -07002663 if (GPR_LIKELY(error != GRPC_ERROR_NONE && chand->lb_policy != nullptr)) {
Craig Tiller6014e8a2017-10-16 13:50:29 -07002664 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07002665 gpr_log(GPR_INFO, "chand=%p calld=%p: cancelling pick from LB policy %p",
Mark D. Rothc8875492018-02-20 08:33:48 -08002666 chand, calld, chand->lb_policy.get());
Mark D. Rothb2929602017-09-11 09:31:11 -07002667 }
Mark D. Rothc8875492018-02-20 08:33:48 -08002668 chand->lb_policy->CancelPickLocked(&calld->pick, GRPC_ERROR_REF(error));
Mark D. Rothb2929602017-09-11 09:31:11 -07002669 }
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002670 GRPC_CALL_STACK_UNREF(calld->owning_call, "pick_callback_cancel");
Mark D. Rothb2929602017-09-11 09:31:11 -07002671}
2672
Mark D. Rothc8875492018-02-20 08:33:48 -08002673// Callback invoked by LoadBalancingPolicy::PickLocked() for async picks.
Mark D. Rothb2929602017-09-11 09:31:11 -07002674// Unrefs the LB policy and invokes async_pick_done_locked().
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002675static void pick_callback_done_locked(void* arg, grpc_error* error) {
Noah Eisenbe82e642018-02-09 09:16:55 -08002676 grpc_call_element* elem = static_cast<grpc_call_element*>(arg);
2677 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
2678 call_data* calld = static_cast<call_data*>(elem->call_data);
Craig Tiller6014e8a2017-10-16 13:50:29 -07002679 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07002680 gpr_log(GPR_INFO, "chand=%p calld=%p: pick completed asynchronously", chand,
2681 calld);
Mark D. Rothb2929602017-09-11 09:31:11 -07002682 }
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002683 async_pick_done_locked(elem, GRPC_ERROR_REF(error));
Ken Paysonf069dd42018-02-05 09:15:05 -08002684 GRPC_CALL_STACK_UNREF(calld->owning_call, "pick_callback");
Mark D. Rothb2929602017-09-11 09:31:11 -07002685}
2686
Mark D. Roth718c8342018-02-28 13:00:04 -08002687// Applies service config to the call. Must be invoked once we know
2688// that the resolver has returned results to the channel.
2689static void apply_service_config_to_call_locked(grpc_call_element* elem) {
2690 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
2691 call_data* calld = static_cast<call_data*>(elem->call_data);
2692 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07002693 gpr_log(GPR_INFO, "chand=%p calld=%p: applying service config to call",
Mark D. Roth718c8342018-02-28 13:00:04 -08002694 chand, calld);
2695 }
2696 if (chand->retry_throttle_data != nullptr) {
Mark D. Roth9db86fc2018-03-28 07:42:20 -07002697 calld->retry_throttle_data = chand->retry_throttle_data->Ref();
Mark D. Roth718c8342018-02-28 13:00:04 -08002698 }
2699 if (chand->method_params_table != nullptr) {
2700 calld->method_params = grpc_core::ServiceConfig::MethodConfigTableLookup(
2701 *chand->method_params_table, calld->path);
2702 if (calld->method_params != nullptr) {
2703 // If the deadline from the service config is shorter than the one
2704 // from the client API, reset the deadline timer.
2705 if (chand->deadline_checking_enabled &&
2706 calld->method_params->timeout() != 0) {
2707 const grpc_millis per_method_deadline =
2708 grpc_timespec_to_millis_round_up(calld->call_start_time) +
2709 calld->method_params->timeout();
2710 if (per_method_deadline < calld->deadline) {
2711 calld->deadline = per_method_deadline;
2712 grpc_deadline_state_reset(elem, calld->deadline);
2713 }
2714 }
2715 }
2716 }
2717 // If no retry policy, disable retries.
2718 // TODO(roth): Remove this when adding support for transparent retries.
2719 if (calld->method_params == nullptr ||
2720 calld->method_params->retry_policy() == nullptr) {
2721 calld->enable_retries = false;
2722 }
2723}
2724
Mark D. Rothc8875492018-02-20 08:33:48 -08002725// Starts a pick on chand->lb_policy.
2726// Returns true if pick is completed synchronously.
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002727static bool pick_callback_start_locked(grpc_call_element* elem) {
Noah Eisenbe82e642018-02-09 09:16:55 -08002728 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
2729 call_data* calld = static_cast<call_data*>(elem->call_data);
Craig Tiller6014e8a2017-10-16 13:50:29 -07002730 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07002731 gpr_log(GPR_INFO, "chand=%p calld=%p: starting pick on lb_policy=%p", chand,
2732 calld, chand->lb_policy.get());
Mark D. Rothb2929602017-09-11 09:31:11 -07002733 }
Mark D. Roth718c8342018-02-28 13:00:04 -08002734 // Only get service config data on the first attempt.
Yash Tibrewal8c5b8832018-05-14 11:44:18 -07002735 if (GPR_LIKELY(calld->num_attempts_completed == 0)) {
Mark D. Roth718c8342018-02-28 13:00:04 -08002736 apply_service_config_to_call_locked(elem);
2737 }
Mark D. Rothb2929602017-09-11 09:31:11 -07002738 // If the application explicitly set wait_for_ready, use that.
2739 // Otherwise, if the service config specified a value for this
2740 // method, use that.
Mark D. Roth718c8342018-02-28 13:00:04 -08002741 //
2742 // The send_initial_metadata batch will be the first one in the list,
2743 // as set by get_batch_index() above.
2744 calld->pick.initial_metadata =
2745 calld->seen_send_initial_metadata
2746 ? &calld->send_initial_metadata
2747 : calld->pending_batches[0]
2748 .batch->payload->send_initial_metadata.send_initial_metadata;
2749 uint32_t send_initial_metadata_flags =
2750 calld->seen_send_initial_metadata
2751 ? calld->send_initial_metadata_flags
2752 : calld->pending_batches[0]
2753 .batch->payload->send_initial_metadata
2754 .send_initial_metadata_flags;
Mark D. Rothb2929602017-09-11 09:31:11 -07002755 const bool wait_for_ready_set_from_api =
Mark D. Roth718c8342018-02-28 13:00:04 -08002756 send_initial_metadata_flags &
Mark D. Rothb2929602017-09-11 09:31:11 -07002757 GRPC_INITIAL_METADATA_WAIT_FOR_READY_EXPLICITLY_SET;
2758 const bool wait_for_ready_set_from_service_config =
Craig Tiller4782d922017-11-10 09:53:21 -08002759 calld->method_params != nullptr &&
Mark D. Roth3e7f2df2018-02-26 13:17:06 -08002760 calld->method_params->wait_for_ready() !=
2761 ClientChannelMethodParams::WAIT_FOR_READY_UNSET;
Yash Tibrewal8c5b8832018-05-14 11:44:18 -07002762 if (GPR_UNLIKELY(!wait_for_ready_set_from_api &&
2763 wait_for_ready_set_from_service_config)) {
Mark D. Roth3e7f2df2018-02-26 13:17:06 -08002764 if (calld->method_params->wait_for_ready() ==
2765 ClientChannelMethodParams::WAIT_FOR_READY_TRUE) {
Mark D. Roth718c8342018-02-28 13:00:04 -08002766 send_initial_metadata_flags |= GRPC_INITIAL_METADATA_WAIT_FOR_READY;
Mark D. Rothb2929602017-09-11 09:31:11 -07002767 } else {
Mark D. Roth718c8342018-02-28 13:00:04 -08002768 send_initial_metadata_flags &= ~GRPC_INITIAL_METADATA_WAIT_FOR_READY;
Mark D. Rothb2929602017-09-11 09:31:11 -07002769 }
2770 }
Mark D. Roth718c8342018-02-28 13:00:04 -08002771 calld->pick.initial_metadata_flags = send_initial_metadata_flags;
2772 GRPC_CLOSURE_INIT(&calld->pick_closure, pick_callback_done_locked, elem,
Mark D. Rothb2929602017-09-11 09:31:11 -07002773 grpc_combiner_scheduler(chand->combiner));
Mark D. Roth718c8342018-02-28 13:00:04 -08002774 calld->pick.on_complete = &calld->pick_closure;
Ken Paysonf069dd42018-02-05 09:15:05 -08002775 GRPC_CALL_STACK_REF(calld->owning_call, "pick_callback");
Mark D. Rothc8875492018-02-20 08:33:48 -08002776 const bool pick_done = chand->lb_policy->PickLocked(&calld->pick);
Yash Tibrewal8c5b8832018-05-14 11:44:18 -07002777 if (GPR_LIKELY(pick_done)) {
Mark D. Rothc8875492018-02-20 08:33:48 -08002778 // Pick completed synchronously.
Craig Tiller6014e8a2017-10-16 13:50:29 -07002779 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07002780 gpr_log(GPR_INFO, "chand=%p calld=%p: pick completed synchronously",
Mark D. Rothb2929602017-09-11 09:31:11 -07002781 chand, calld);
2782 }
Ken Paysonf069dd42018-02-05 09:15:05 -08002783 GRPC_CALL_STACK_UNREF(calld->owning_call, "pick_callback");
Mark D. Rothb2929602017-09-11 09:31:11 -07002784 } else {
2785 GRPC_CALL_STACK_REF(calld->owning_call, "pick_callback_cancel");
2786 grpc_call_combiner_set_notify_on_cancel(
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002787 calld->call_combiner,
Mark D. Roth718c8342018-02-28 13:00:04 -08002788 GRPC_CLOSURE_INIT(&calld->pick_cancel_closure,
Mark D. Rothb2929602017-09-11 09:31:11 -07002789 pick_callback_cancel_locked, elem,
2790 grpc_combiner_scheduler(chand->combiner)));
2791 }
2792 return pick_done;
2793}
Mark D. Roth0ca0be82017-06-20 07:49:33 -07002794
Craig Tiller577c9b22015-11-02 14:11:15 -08002795typedef struct {
Craig Tillerbaa14a92017-11-03 09:09:36 -07002796 grpc_call_element* elem;
Mark D. Roth66f3d2b2017-09-01 09:02:17 -07002797 bool finished;
Craig Tiller577c9b22015-11-02 14:11:15 -08002798 grpc_closure closure;
Mark D. Roth66f3d2b2017-09-01 09:02:17 -07002799 grpc_closure cancel_closure;
Mark D. Roth0ca0be82017-06-20 07:49:33 -07002800} pick_after_resolver_result_args;
Craig Tiller577c9b22015-11-02 14:11:15 -08002801
Mark D. Roth76e264b2017-08-25 09:03:33 -07002802// Note: This runs under the client_channel combiner, but will NOT be
2803// holding the call combiner.
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002804static void pick_after_resolver_result_cancel_locked(void* arg,
Craig Tillerbaa14a92017-11-03 09:09:36 -07002805 grpc_error* error) {
Noah Eisen4d20a662018-02-09 09:34:04 -08002806 pick_after_resolver_result_args* args =
2807 static_cast<pick_after_resolver_result_args*>(arg);
Yash Tibrewal8c5b8832018-05-14 11:44:18 -07002808 if (GPR_LIKELY(args->finished)) {
Mark D. Roth66f3d2b2017-09-01 09:02:17 -07002809 gpr_free(args);
Mark D. Rothb2b9a0f2017-09-01 09:06:47 -07002810 return;
Mark D. Roth764cf042017-09-01 09:00:06 -07002811 }
Mark D. Roth76e264b2017-08-25 09:03:33 -07002812 // If we don't yet have a resolver result, then a closure for
2813 // pick_after_resolver_result_done_locked() will have been added to
2814 // chand->waiting_for_resolver_result_closures, and it may not be invoked
2815 // until after this call has been destroyed. We mark the operation as
Mark D. Rothb2b9a0f2017-09-01 09:06:47 -07002816 // finished, so that when pick_after_resolver_result_done_locked()
Mark D. Roth76e264b2017-08-25 09:03:33 -07002817 // is called, it will be a no-op. We also immediately invoke
Mark D. Rothb2929602017-09-11 09:31:11 -07002818 // async_pick_done_locked() to propagate the error back to the caller.
2819 args->finished = true;
Craig Tillerbaa14a92017-11-03 09:09:36 -07002820 grpc_call_element* elem = args->elem;
Noah Eisenbe82e642018-02-09 09:16:55 -08002821 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
2822 call_data* calld = static_cast<call_data*>(elem->call_data);
Craig Tiller6014e8a2017-10-16 13:50:29 -07002823 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07002824 gpr_log(GPR_INFO,
Mark D. Rothb2b9a0f2017-09-01 09:06:47 -07002825 "chand=%p calld=%p: cancelling pick waiting for resolver result",
2826 chand, calld);
Mark D. Roth76e264b2017-08-25 09:03:33 -07002827 }
Mark D. Rothb2b9a0f2017-09-01 09:06:47 -07002828 // Note: Although we are not in the call combiner here, we are
2829 // basically stealing the call combiner from the pending pick, so
Mark D. Rothb2929602017-09-11 09:31:11 -07002830 // it's safe to call async_pick_done_locked() here -- we are
Mark D. Rothb2b9a0f2017-09-01 09:06:47 -07002831 // essentially calling it here instead of calling it in
2832 // pick_after_resolver_result_done_locked().
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002833 async_pick_done_locked(elem, GRPC_ERROR_CREATE_REFERENCING_FROM_STATIC_STRING(
2834 "Pick cancelled", &error, 1));
Mark D. Roth76e264b2017-08-25 09:03:33 -07002835}
2836
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002837static void pick_after_resolver_result_done_locked(void* arg,
Craig Tillerbaa14a92017-11-03 09:09:36 -07002838 grpc_error* error) {
Noah Eisen4d20a662018-02-09 09:34:04 -08002839 pick_after_resolver_result_args* args =
2840 static_cast<pick_after_resolver_result_args*>(arg);
Yash Tibrewal8c5b8832018-05-14 11:44:18 -07002841 if (GPR_UNLIKELY(args->finished)) {
Craig Tiller577c9b22015-11-02 14:11:15 -08002842 /* cancelled, do nothing */
Craig Tiller6014e8a2017-10-16 13:50:29 -07002843 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07002844 gpr_log(GPR_INFO, "call cancelled before resolver result");
Mark D. Roth60751fe2017-07-07 12:50:33 -07002845 }
Mark D. Roth66f3d2b2017-09-01 09:02:17 -07002846 gpr_free(args);
Mark D. Rothb2b9a0f2017-09-01 09:06:47 -07002847 return;
2848 }
2849 args->finished = true;
Craig Tillerbaa14a92017-11-03 09:09:36 -07002850 grpc_call_element* elem = args->elem;
Noah Eisenbe82e642018-02-09 09:16:55 -08002851 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
2852 call_data* calld = static_cast<call_data*>(elem->call_data);
Yash Tibrewal8c5b8832018-05-14 11:44:18 -07002853 if (GPR_UNLIKELY(error != GRPC_ERROR_NONE)) {
Craig Tiller6014e8a2017-10-16 13:50:29 -07002854 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07002855 gpr_log(GPR_INFO, "chand=%p calld=%p: resolver failed to return data",
Mark D. Rothb2b9a0f2017-09-01 09:06:47 -07002856 chand, calld);
2857 }
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002858 async_pick_done_locked(elem, GRPC_ERROR_REF(error));
Yash Tibrewal8c5b8832018-05-14 11:44:18 -07002859 } else if (GPR_UNLIKELY(chand->resolver == nullptr)) {
Mark D. Rothe63e06d2018-03-23 08:12:11 -07002860 // Shutting down.
2861 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07002862 gpr_log(GPR_INFO, "chand=%p calld=%p: resolver disconnected", chand,
Mark D. Rothe63e06d2018-03-23 08:12:11 -07002863 calld);
2864 }
2865 async_pick_done_locked(
2866 elem, GRPC_ERROR_CREATE_FROM_STATIC_STRING("Disconnected"));
Yash Tibrewal8c5b8832018-05-14 11:44:18 -07002867 } else if (GPR_UNLIKELY(chand->lb_policy == nullptr)) {
Mark D. Rothe63e06d2018-03-23 08:12:11 -07002868 // Transient resolver failure.
2869 // If call has wait_for_ready=true, try again; otherwise, fail.
2870 uint32_t send_initial_metadata_flags =
2871 calld->seen_send_initial_metadata
2872 ? calld->send_initial_metadata_flags
2873 : calld->pending_batches[0]
2874 .batch->payload->send_initial_metadata
2875 .send_initial_metadata_flags;
2876 if (send_initial_metadata_flags & GRPC_INITIAL_METADATA_WAIT_FOR_READY) {
2877 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07002878 gpr_log(GPR_INFO,
Mark D. Rothe63e06d2018-03-23 08:12:11 -07002879 "chand=%p calld=%p: resolver returned but no LB policy; "
2880 "wait_for_ready=true; trying again",
2881 chand, calld);
2882 }
2883 pick_after_resolver_result_start_locked(elem);
2884 } else {
2885 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07002886 gpr_log(GPR_INFO,
Mark D. Rothe63e06d2018-03-23 08:12:11 -07002887 "chand=%p calld=%p: resolver returned but no LB policy; "
2888 "wait_for_ready=false; failing",
2889 chand, calld);
2890 }
2891 async_pick_done_locked(
2892 elem,
2893 grpc_error_set_int(
2894 GRPC_ERROR_CREATE_FROM_STATIC_STRING("Name resolution failure"),
2895 GRPC_ERROR_INT_GRPC_STATUS, GRPC_STATUS_UNAVAILABLE));
2896 }
2897 } else {
Craig Tiller6014e8a2017-10-16 13:50:29 -07002898 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07002899 gpr_log(GPR_INFO, "chand=%p calld=%p: resolver returned, doing pick",
Mark D. Rothb2b9a0f2017-09-01 09:06:47 -07002900 chand, calld);
2901 }
Yash Tibrewal8c5b8832018-05-14 11:44:18 -07002902 if (GPR_LIKELY(pick_callback_start_locked(elem))) {
Mark D. Rothb2929602017-09-11 09:31:11 -07002903 // Even if the LB policy returns a result synchronously, we have
2904 // already added our polling entity to chand->interested_parties
2905 // in order to wait for the resolver result, so we need to
2906 // remove it here. Therefore, we call async_pick_done_locked()
2907 // instead of pick_done_locked().
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002908 async_pick_done_locked(elem, GRPC_ERROR_NONE);
Mark D. Roth9dab7d52016-10-07 07:48:03 -07002909 }
Craig Tiller577c9b22015-11-02 14:11:15 -08002910 }
Craig Tiller577c9b22015-11-02 14:11:15 -08002911}
2912
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002913static void pick_after_resolver_result_start_locked(grpc_call_element* elem) {
Noah Eisenbe82e642018-02-09 09:16:55 -08002914 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
2915 call_data* calld = static_cast<call_data*>(elem->call_data);
Craig Tiller6014e8a2017-10-16 13:50:29 -07002916 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07002917 gpr_log(GPR_INFO,
Mark D. Roth60751fe2017-07-07 12:50:33 -07002918 "chand=%p calld=%p: deferring pick pending resolver result", chand,
2919 calld);
Mark D. Roth64a317c2017-05-02 08:27:08 -07002920 }
Craig Tillerbaa14a92017-11-03 09:09:36 -07002921 pick_after_resolver_result_args* args =
Noah Eisenbe82e642018-02-09 09:16:55 -08002922 static_cast<pick_after_resolver_result_args*>(gpr_zalloc(sizeof(*args)));
Mark D. Roth60751fe2017-07-07 12:50:33 -07002923 args->elem = elem;
2924 GRPC_CLOSURE_INIT(&args->closure, pick_after_resolver_result_done_locked,
2925 args, grpc_combiner_scheduler(chand->combiner));
2926 grpc_closure_list_append(&chand->waiting_for_resolver_result_closures,
2927 &args->closure, GRPC_ERROR_NONE);
Mark D. Roth76e264b2017-08-25 09:03:33 -07002928 grpc_call_combiner_set_notify_on_cancel(
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002929 calld->call_combiner,
Mark D. Roth66f3d2b2017-09-01 09:02:17 -07002930 GRPC_CLOSURE_INIT(&args->cancel_closure,
2931 pick_after_resolver_result_cancel_locked, args,
Mark D. Roth76e264b2017-08-25 09:03:33 -07002932 grpc_combiner_scheduler(chand->combiner)));
Mark D. Roth60751fe2017-07-07 12:50:33 -07002933}
2934
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002935static void start_pick_locked(void* arg, grpc_error* ignored) {
Noah Eisenbe82e642018-02-09 09:16:55 -08002936 grpc_call_element* elem = static_cast<grpc_call_element*>(arg);
2937 call_data* calld = static_cast<call_data*>(elem->call_data);
2938 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
David Garcia Quintasbe1b7f92018-01-12 14:01:38 -08002939 GPR_ASSERT(calld->pick.connected_subchannel == nullptr);
Mark D. Roth718c8342018-02-28 13:00:04 -08002940 GPR_ASSERT(calld->subchannel_call == nullptr);
Yash Tibrewal8c5b8832018-05-14 11:44:18 -07002941 if (GPR_LIKELY(chand->lb_policy != nullptr)) {
Mark D. Rothb2929602017-09-11 09:31:11 -07002942 // We already have an LB policy, so ask it for a pick.
Yash Tibrewal8c5b8832018-05-14 11:44:18 -07002943 if (GPR_LIKELY(pick_callback_start_locked(elem))) {
Mark D. Rothb2929602017-09-11 09:31:11 -07002944 // Pick completed synchronously.
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002945 pick_done_locked(elem, GRPC_ERROR_NONE);
Mark D. Rothb2929602017-09-11 09:31:11 -07002946 return;
Mark D. Roth2a5959f2016-09-01 08:20:27 -07002947 }
Mark D. Roth76e264b2017-08-25 09:03:33 -07002948 } else {
Mark D. Rothb2929602017-09-11 09:31:11 -07002949 // We do not yet have an LB policy, so wait for a resolver result.
Yash Tibrewal8c5b8832018-05-14 11:44:18 -07002950 if (GPR_UNLIKELY(chand->resolver == nullptr)) {
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002951 pick_done_locked(elem,
Mark D. Rothb2929602017-09-11 09:31:11 -07002952 GRPC_ERROR_CREATE_FROM_STATIC_STRING("Disconnected"));
2953 return;
2954 }
Yash Tibrewal137eb932018-05-23 15:07:39 -07002955 if (GPR_UNLIKELY(!chand->started_resolving)) {
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002956 start_resolving_locked(chand);
Mark D. Rothb2929602017-09-11 09:31:11 -07002957 }
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002958 pick_after_resolver_result_start_locked(elem);
Mark D. Roth2a5959f2016-09-01 08:20:27 -07002959 }
Mark D. Rothb2929602017-09-11 09:31:11 -07002960 // We need to wait for either a resolver result or for an async result
2961 // from the LB policy. Add the polling entity from call_data to the
2962 // channel_data's interested_parties, so that the I/O of the LB policy
2963 // and resolver can be done under it. The polling entity will be
2964 // removed in async_pick_done_locked().
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002965 grpc_polling_entity_add_to_pollset_set(calld->pollent,
Mark D. Rothb2929602017-09-11 09:31:11 -07002966 chand->interested_parties);
Craig Tillera11bfc82017-02-14 09:56:33 -08002967}
2968
Mark D. Roth718c8342018-02-28 13:00:04 -08002969//
2970// filter call vtable functions
2971//
Mark D. Rothd6d192d2017-02-23 08:58:42 -08002972
Craig Tillere1b51da2017-03-31 15:44:33 -07002973static void cc_start_transport_stream_op_batch(
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002974 grpc_call_element* elem, grpc_transport_stream_op_batch* batch) {
yang-gce1cfea2018-01-31 15:59:50 -08002975 GPR_TIMER_SCOPE("cc_start_transport_stream_op_batch", 0);
Noah Eisenbe82e642018-02-09 09:16:55 -08002976 call_data* calld = static_cast<call_data*>(elem->call_data);
2977 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
Yash Tibrewalcff3f9f2018-05-21 15:51:47 -07002978 if (GPR_LIKELY(chand->deadline_checking_enabled)) {
Yash Tibrewal8cf14702017-12-06 09:47:54 -08002979 grpc_deadline_state_client_start_transport_stream_op_batch(elem, batch);
Craig Tiller3be7dd02017-04-03 14:30:03 -07002980 }
Mark D. Roth76e264b2017-08-25 09:03:33 -07002981 // If we've previously been cancelled, immediately fail any new batches.
Yash Tibrewal8c5b8832018-05-14 11:44:18 -07002982 if (GPR_UNLIKELY(calld->cancel_error != GRPC_ERROR_NONE)) {
Craig Tiller6014e8a2017-10-16 13:50:29 -07002983 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07002984 gpr_log(GPR_INFO, "chand=%p calld=%p: failing batch with error: %s",
Mark D. Roth718c8342018-02-28 13:00:04 -08002985 chand, calld, grpc_error_string(calld->cancel_error));
Mark D. Roth76e264b2017-08-25 09:03:33 -07002986 }
Mark D. Roth718c8342018-02-28 13:00:04 -08002987 // Note: This will release the call combiner.
Mark D. Roth76e264b2017-08-25 09:03:33 -07002988 grpc_transport_stream_op_batch_finish_with_failure(
Mark D. Roth718c8342018-02-28 13:00:04 -08002989 batch, GRPC_ERROR_REF(calld->cancel_error), calld->call_combiner);
yang-gce1cfea2018-01-31 15:59:50 -08002990 return;
Mark D. Roth76e264b2017-08-25 09:03:33 -07002991 }
Mark D. Roth718c8342018-02-28 13:00:04 -08002992 // Handle cancellation.
Yash Tibrewalcff3f9f2018-05-21 15:51:47 -07002993 if (GPR_UNLIKELY(batch->cancel_stream)) {
Mark D. Roth76e264b2017-08-25 09:03:33 -07002994 // Stash a copy of cancel_error in our call data, so that we can use
2995 // it for subsequent operations. This ensures that if the call is
2996 // cancelled before any batches are passed down (e.g., if the deadline
2997 // is in the past when the call starts), we can return the right
2998 // error to the caller when the first batch does get passed down.
Mark D. Roth718c8342018-02-28 13:00:04 -08002999 GRPC_ERROR_UNREF(calld->cancel_error);
3000 calld->cancel_error =
3001 GRPC_ERROR_REF(batch->payload->cancel_stream.cancel_error);
Craig Tiller6014e8a2017-10-16 13:50:29 -07003002 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07003003 gpr_log(GPR_INFO, "chand=%p calld=%p: recording cancel_error=%s", chand,
Mark D. Roth718c8342018-02-28 13:00:04 -08003004 calld, grpc_error_string(calld->cancel_error));
Mark D. Roth76e264b2017-08-25 09:03:33 -07003005 }
Mark D. Roth718c8342018-02-28 13:00:04 -08003006 // If we do not have a subchannel call (i.e., a pick has not yet
3007 // been started), fail all pending batches. Otherwise, send the
3008 // cancellation down to the subchannel call.
3009 if (calld->subchannel_call == nullptr) {
3010 pending_batches_fail(elem, GRPC_ERROR_REF(calld->cancel_error),
3011 false /* yield_call_combiner */);
3012 // Note: This will release the call combiner.
3013 grpc_transport_stream_op_batch_finish_with_failure(
3014 batch, GRPC_ERROR_REF(calld->cancel_error), calld->call_combiner);
Mark D. Roth76e264b2017-08-25 09:03:33 -07003015 } else {
Mark D. Roth718c8342018-02-28 13:00:04 -08003016 // Note: This will release the call combiner.
3017 grpc_subchannel_call_process_op(calld->subchannel_call, batch);
Mark D. Roth76e264b2017-08-25 09:03:33 -07003018 }
yang-gce1cfea2018-01-31 15:59:50 -08003019 return;
Mark D. Roth76e264b2017-08-25 09:03:33 -07003020 }
Mark D. Roth718c8342018-02-28 13:00:04 -08003021 // Add the batch to the pending list.
3022 pending_batches_add(elem, batch);
Mark D. Roth76e264b2017-08-25 09:03:33 -07003023 // Check if we've already gotten a subchannel call.
3024 // Note that once we have completed the pick, we do not need to enter
3025 // the channel combiner, which is more efficient (especially for
3026 // streaming calls).
Craig Tiller4782d922017-11-10 09:53:21 -08003027 if (calld->subchannel_call != nullptr) {
Craig Tiller6014e8a2017-10-16 13:50:29 -07003028 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07003029 gpr_log(GPR_INFO,
Mark D. Roth718c8342018-02-28 13:00:04 -08003030 "chand=%p calld=%p: starting batch on subchannel_call=%p", chand,
Mark D. Roth76e264b2017-08-25 09:03:33 -07003031 calld, calld->subchannel_call);
Mark D. Roth60751fe2017-07-07 12:50:33 -07003032 }
Mark D. Roth718c8342018-02-28 13:00:04 -08003033 pending_batches_resume(elem);
yang-gce1cfea2018-01-31 15:59:50 -08003034 return;
Mark D. Roth2a5959f2016-09-01 08:20:27 -07003035 }
Mark D. Roth76e264b2017-08-25 09:03:33 -07003036 // We do not yet have a subchannel call.
Mark D. Roth76e264b2017-08-25 09:03:33 -07003037 // For batches containing a send_initial_metadata op, enter the channel
3038 // combiner to start a pick.
Yash Tibrewal8c5b8832018-05-14 11:44:18 -07003039 if (GPR_LIKELY(batch->send_initial_metadata)) {
Craig Tiller6014e8a2017-10-16 13:50:29 -07003040 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07003041 gpr_log(GPR_INFO, "chand=%p calld=%p: entering client_channel combiner",
Mark D. Rothb2929602017-09-11 09:31:11 -07003042 chand, calld);
Mark D. Roth76e264b2017-08-25 09:03:33 -07003043 }
3044 GRPC_CLOSURE_SCHED(
Mark D. Roth76e264b2017-08-25 09:03:33 -07003045 GRPC_CLOSURE_INIT(&batch->handler_private.closure, start_pick_locked,
3046 elem, grpc_combiner_scheduler(chand->combiner)),
3047 GRPC_ERROR_NONE);
3048 } else {
3049 // For all other batches, release the call combiner.
Craig Tiller6014e8a2017-10-16 13:50:29 -07003050 if (grpc_client_channel_trace.enabled()) {
Mark D. Roth48854d22018-04-25 13:05:26 -07003051 gpr_log(GPR_INFO,
Mark D. Roth76e264b2017-08-25 09:03:33 -07003052 "chand=%p calld=%p: saved batch, yeilding call combiner", chand,
3053 calld);
3054 }
Yash Tibrewal8cf14702017-12-06 09:47:54 -08003055 GRPC_CALL_COMBINER_STOP(calld->call_combiner,
Mark D. Roth76e264b2017-08-25 09:03:33 -07003056 "batch does not include send_initial_metadata");
Mark D. Roth60751fe2017-07-07 12:50:33 -07003057 }
Mark D. Roth2a5959f2016-09-01 08:20:27 -07003058}
3059
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003060/* Constructor for call_data */
Yash Tibrewal8cf14702017-12-06 09:47:54 -08003061static grpc_error* cc_init_call_elem(grpc_call_element* elem,
Craig Tillerbaa14a92017-11-03 09:09:36 -07003062 const grpc_call_element_args* args) {
Noah Eisenbe82e642018-02-09 09:16:55 -08003063 call_data* calld = static_cast<call_data*>(elem->call_data);
3064 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
Mark D. Rothe40dd292016-10-05 14:58:37 -07003065 // Initialize data members.
Craig Tiller7c70b6c2017-01-23 07:48:42 -08003066 calld->path = grpc_slice_ref_internal(args->path);
Mark D. Rothff08f332016-10-14 13:01:01 -07003067 calld->call_start_time = args->start_time;
Craig Tiller89c14282017-07-19 15:32:27 -07003068 calld->deadline = args->deadline;
Craig Tillerd426cac2017-03-13 12:30:45 -07003069 calld->arena = args->arena;
Mark D. Roth66f3d2b2017-09-01 09:02:17 -07003070 calld->owning_call = args->call_stack;
Mark D. Roth76e264b2017-08-25 09:03:33 -07003071 calld->call_combiner = args->call_combiner;
Yash Tibrewalcff3f9f2018-05-21 15:51:47 -07003072 if (GPR_LIKELY(chand->deadline_checking_enabled)) {
Yash Tibrewal8cf14702017-12-06 09:47:54 -08003073 grpc_deadline_state_init(elem, args->call_stack, args->call_combiner,
3074 calld->deadline);
Craig Tiller3be7dd02017-04-03 14:30:03 -07003075 }
Mark D. Roth718c8342018-02-28 13:00:04 -08003076 calld->enable_retries = chand->enable_retries;
Mark D. Rothefcd45b2018-03-28 10:49:59 -07003077 calld->send_messages.Init();
Mark D. Roth0badbe82016-06-23 10:15:12 -07003078 return GRPC_ERROR_NONE;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003079}
3080
3081/* Destructor for call_data */
Yash Tibrewal8cf14702017-12-06 09:47:54 -08003082static void cc_destroy_call_elem(grpc_call_element* elem,
Craig Tillerbaa14a92017-11-03 09:09:36 -07003083 const grpc_call_final_info* final_info,
3084 grpc_closure* then_schedule_closure) {
Noah Eisenbe82e642018-02-09 09:16:55 -08003085 call_data* calld = static_cast<call_data*>(elem->call_data);
3086 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
Yash Tibrewalcff3f9f2018-05-21 15:51:47 -07003087 if (GPR_LIKELY(chand->deadline_checking_enabled)) {
Yash Tibrewal8cf14702017-12-06 09:47:54 -08003088 grpc_deadline_state_destroy(elem);
Craig Tiller3be7dd02017-04-03 14:30:03 -07003089 }
Yash Tibrewal8cf14702017-12-06 09:47:54 -08003090 grpc_slice_unref_internal(calld->path);
Mark D. Roth9db86fc2018-03-28 07:42:20 -07003091 calld->retry_throttle_data.reset();
Mark D. Roth3e7f2df2018-02-26 13:17:06 -08003092 calld->method_params.reset();
Mark D. Roth718c8342018-02-28 13:00:04 -08003093 GRPC_ERROR_UNREF(calld->cancel_error);
Yash Tibrewal8c5b8832018-05-14 11:44:18 -07003094 if (GPR_LIKELY(calld->subchannel_call != nullptr)) {
Mark D. Roth76e264b2017-08-25 09:03:33 -07003095 grpc_subchannel_call_set_cleanup_closure(calld->subchannel_call,
Craig Tillerf7c8c9f2017-05-17 15:22:05 -07003096 then_schedule_closure);
Craig Tiller4782d922017-11-10 09:53:21 -08003097 then_schedule_closure = nullptr;
Yash Tibrewal8cf14702017-12-06 09:47:54 -08003098 GRPC_SUBCHANNEL_CALL_UNREF(calld->subchannel_call,
Craig Tillerf7c8c9f2017-05-17 15:22:05 -07003099 "client_channel_destroy_call");
Mark D. Roth4c0fe492016-08-31 13:51:55 -07003100 }
Mark D. Roth718c8342018-02-28 13:00:04 -08003101 for (size_t i = 0; i < GPR_ARRAY_SIZE(calld->pending_batches); ++i) {
3102 GPR_ASSERT(calld->pending_batches[i].batch == nullptr);
3103 }
Yash Tibrewal8c5b8832018-05-14 11:44:18 -07003104 if (GPR_LIKELY(calld->pick.connected_subchannel != nullptr)) {
David Garcia Quintasdfa28512018-01-11 18:31:13 -08003105 calld->pick.connected_subchannel.reset();
Craig Tiller693d3942016-10-27 16:51:25 -07003106 }
Mark D. Roth09e458c2017-05-02 08:13:26 -07003107 for (size_t i = 0; i < GRPC_CONTEXT_COUNT; ++i) {
Mark D. Rothc0febd32018-01-09 10:25:24 -08003108 if (calld->pick.subchannel_call_context[i].value != nullptr) {
3109 calld->pick.subchannel_call_context[i].destroy(
3110 calld->pick.subchannel_call_context[i].value);
Mark D. Roth09e458c2017-05-02 08:13:26 -07003111 }
3112 }
Mark D. Rothefcd45b2018-03-28 10:49:59 -07003113 calld->send_messages.Destroy();
Yash Tibrewal8cf14702017-12-06 09:47:54 -08003114 GRPC_CLOSURE_SCHED(then_schedule_closure, GRPC_ERROR_NONE);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003115}
3116
Yash Tibrewal8cf14702017-12-06 09:47:54 -08003117static void cc_set_pollset_or_pollset_set(grpc_call_element* elem,
Craig Tillerbaa14a92017-11-03 09:09:36 -07003118 grpc_polling_entity* pollent) {
Noah Eisenbe82e642018-02-09 09:16:55 -08003119 call_data* calld = static_cast<call_data*>(elem->call_data);
David Garcia Quintas2a50dfe2016-05-31 15:09:12 -07003120 calld->pollent = pollent;
Craig Tiller577c9b22015-11-02 14:11:15 -08003121}
3122
Mark D. Roth2a5959f2016-09-01 08:20:27 -07003123/*************************************************************************
3124 * EXPORTED SYMBOLS
3125 */
3126
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003127const grpc_channel_filter grpc_client_channel_filter = {
Craig Tillera0f3abd2017-03-31 15:42:16 -07003128 cc_start_transport_stream_op_batch,
Craig Tillerf40df232016-03-25 13:38:14 -07003129 cc_start_transport_op,
3130 sizeof(call_data),
Mark D. Roth2a5959f2016-09-01 08:20:27 -07003131 cc_init_call_elem,
David Garcia Quintas4afce7e2016-04-18 16:25:17 -07003132 cc_set_pollset_or_pollset_set,
Mark D. Roth2a5959f2016-09-01 08:20:27 -07003133 cc_destroy_call_elem,
Craig Tillerf40df232016-03-25 13:38:14 -07003134 sizeof(channel_data),
Mark D. Roth2a5959f2016-09-01 08:20:27 -07003135 cc_init_channel_elem,
3136 cc_destroy_channel_elem,
Mark D. Rothb2d24882016-10-27 15:44:07 -07003137 cc_get_channel_info,
Craig Tillerf40df232016-03-25 13:38:14 -07003138 "client-channel",
Craig Tiller87d5b192015-04-16 14:37:57 -07003139};
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003140
Yash Tibrewal8cf14702017-12-06 09:47:54 -08003141static void try_to_connect_locked(void* arg, grpc_error* error_ignored) {
Noah Eisenbe82e642018-02-09 09:16:55 -08003142 channel_data* chand = static_cast<channel_data*>(arg);
Craig Tiller4782d922017-11-10 09:53:21 -08003143 if (chand->lb_policy != nullptr) {
Mark D. Rothc8875492018-02-20 08:33:48 -08003144 chand->lb_policy->ExitIdleLocked();
Craig Tiller613dafa2017-02-09 12:00:43 -08003145 } else {
3146 chand->exit_idle_when_lb_policy_arrives = true;
Craig Tiller4782d922017-11-10 09:53:21 -08003147 if (!chand->started_resolving && chand->resolver != nullptr) {
Yash Tibrewal8cf14702017-12-06 09:47:54 -08003148 start_resolving_locked(chand);
Craig Tiller613dafa2017-02-09 12:00:43 -08003149 }
3150 }
Yash Tibrewal8cf14702017-12-06 09:47:54 -08003151 GRPC_CHANNEL_STACK_UNREF(chand->owning_stack, "try_to_connect");
Craig Tiller613dafa2017-02-09 12:00:43 -08003152}
3153
Craig Tillera82950e2015-09-22 12:33:20 -07003154grpc_connectivity_state grpc_client_channel_check_connectivity_state(
Yash Tibrewal8cf14702017-12-06 09:47:54 -08003155 grpc_channel_element* elem, int try_to_connect) {
Noah Eisenbe82e642018-02-09 09:16:55 -08003156 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
Craig Tillera8610c02017-02-14 10:05:11 -08003157 grpc_connectivity_state out =
3158 grpc_connectivity_state_check(&chand->state_tracker);
Craig Tillera82950e2015-09-22 12:33:20 -07003159 if (out == GRPC_CHANNEL_IDLE && try_to_connect) {
Craig Tillerd2e5cfc2017-02-09 13:02:20 -08003160 GRPC_CHANNEL_STACK_REF(chand->owning_stack, "try_to_connect");
ncteisen274bbbe2017-06-08 14:57:11 -07003161 GRPC_CLOSURE_SCHED(
Yash Tibrewal0ee75742017-10-13 16:07:13 -07003162 GRPC_CLOSURE_CREATE(try_to_connect_locked, chand,
3163 grpc_combiner_scheduler(chand->combiner)),
Craig Tiller613dafa2017-02-09 12:00:43 -08003164 GRPC_ERROR_NONE);
Craig Tillera82950e2015-09-22 12:33:20 -07003165 }
Craig Tiller48cb07c2015-07-15 16:16:15 -07003166 return out;
3167}
3168
Alexander Polcync3b1f182017-04-18 13:51:36 -07003169typedef struct external_connectivity_watcher {
Craig Tillerbaa14a92017-11-03 09:09:36 -07003170 channel_data* chand;
David Garcia Quintas87d5a312017-06-06 19:45:58 -07003171 grpc_polling_entity pollent;
Craig Tillerbaa14a92017-11-03 09:09:36 -07003172 grpc_closure* on_complete;
3173 grpc_closure* watcher_timer_init;
3174 grpc_connectivity_state* state;
Craig Tiller86c99582015-11-25 15:22:26 -08003175 grpc_closure my_closure;
Craig Tillerbaa14a92017-11-03 09:09:36 -07003176 struct external_connectivity_watcher* next;
Craig Tiller86c99582015-11-25 15:22:26 -08003177} external_connectivity_watcher;
3178
Craig Tillerbaa14a92017-11-03 09:09:36 -07003179static external_connectivity_watcher* lookup_external_connectivity_watcher(
3180 channel_data* chand, grpc_closure* on_complete) {
Alexander Polcync3b1f182017-04-18 13:51:36 -07003181 gpr_mu_lock(&chand->external_connectivity_watcher_list_mu);
Craig Tillerbaa14a92017-11-03 09:09:36 -07003182 external_connectivity_watcher* w =
Alexander Polcync3b1f182017-04-18 13:51:36 -07003183 chand->external_connectivity_watcher_list_head;
Craig Tiller4782d922017-11-10 09:53:21 -08003184 while (w != nullptr && w->on_complete != on_complete) {
Alexander Polcync3b1f182017-04-18 13:51:36 -07003185 w = w->next;
3186 }
3187 gpr_mu_unlock(&chand->external_connectivity_watcher_list_mu);
3188 return w;
3189}
3190
3191static void external_connectivity_watcher_list_append(
Craig Tillerbaa14a92017-11-03 09:09:36 -07003192 channel_data* chand, external_connectivity_watcher* w) {
Alexander Polcync3b1f182017-04-18 13:51:36 -07003193 GPR_ASSERT(!lookup_external_connectivity_watcher(chand, w->on_complete));
3194
3195 gpr_mu_lock(&w->chand->external_connectivity_watcher_list_mu);
3196 GPR_ASSERT(!w->next);
3197 w->next = chand->external_connectivity_watcher_list_head;
3198 chand->external_connectivity_watcher_list_head = w;
3199 gpr_mu_unlock(&w->chand->external_connectivity_watcher_list_mu);
3200}
3201
3202static void external_connectivity_watcher_list_remove(
Craig Tillerbaa14a92017-11-03 09:09:36 -07003203 channel_data* chand, external_connectivity_watcher* too_remove) {
Alexander Polcync3b1f182017-04-18 13:51:36 -07003204 GPR_ASSERT(
3205 lookup_external_connectivity_watcher(chand, too_remove->on_complete));
3206 gpr_mu_lock(&chand->external_connectivity_watcher_list_mu);
3207 if (too_remove == chand->external_connectivity_watcher_list_head) {
3208 chand->external_connectivity_watcher_list_head = too_remove->next;
3209 gpr_mu_unlock(&chand->external_connectivity_watcher_list_mu);
3210 return;
3211 }
Craig Tillerbaa14a92017-11-03 09:09:36 -07003212 external_connectivity_watcher* w =
Alexander Polcync3b1f182017-04-18 13:51:36 -07003213 chand->external_connectivity_watcher_list_head;
Craig Tiller4782d922017-11-10 09:53:21 -08003214 while (w != nullptr) {
Alexander Polcync3b1f182017-04-18 13:51:36 -07003215 if (w->next == too_remove) {
3216 w->next = w->next->next;
3217 gpr_mu_unlock(&chand->external_connectivity_watcher_list_mu);
3218 return;
3219 }
3220 w = w->next;
3221 }
3222 GPR_UNREACHABLE_CODE(return );
3223}
3224
3225int grpc_client_channel_num_external_connectivity_watchers(
Craig Tillerbaa14a92017-11-03 09:09:36 -07003226 grpc_channel_element* elem) {
Noah Eisenbe82e642018-02-09 09:16:55 -08003227 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
Alexander Polcync3b1f182017-04-18 13:51:36 -07003228 int count = 0;
3229
3230 gpr_mu_lock(&chand->external_connectivity_watcher_list_mu);
Craig Tillerbaa14a92017-11-03 09:09:36 -07003231 external_connectivity_watcher* w =
Alexander Polcync3b1f182017-04-18 13:51:36 -07003232 chand->external_connectivity_watcher_list_head;
Craig Tiller4782d922017-11-10 09:53:21 -08003233 while (w != nullptr) {
Alexander Polcync3b1f182017-04-18 13:51:36 -07003234 count++;
3235 w = w->next;
3236 }
3237 gpr_mu_unlock(&chand->external_connectivity_watcher_list_mu);
3238
3239 return count;
3240}
3241
Yash Tibrewal8cf14702017-12-06 09:47:54 -08003242static void on_external_watch_complete_locked(void* arg, grpc_error* error) {
Noah Eisen4d20a662018-02-09 09:34:04 -08003243 external_connectivity_watcher* w =
3244 static_cast<external_connectivity_watcher*>(arg);
Craig Tillerbaa14a92017-11-03 09:09:36 -07003245 grpc_closure* follow_up = w->on_complete;
Yash Tibrewal8cf14702017-12-06 09:47:54 -08003246 grpc_polling_entity_del_from_pollset_set(&w->pollent,
David Garcia Quintas87d5a312017-06-06 19:45:58 -07003247 w->chand->interested_parties);
Yash Tibrewal8cf14702017-12-06 09:47:54 -08003248 GRPC_CHANNEL_STACK_UNREF(w->chand->owning_stack,
Craig Tiller1d881fb2015-12-01 07:39:04 -08003249 "external_connectivity_watcher");
Alexander Polcync3b1f182017-04-18 13:51:36 -07003250 external_connectivity_watcher_list_remove(w->chand, w);
Craig Tiller86c99582015-11-25 15:22:26 -08003251 gpr_free(w);
Yash Tibrewal2629f462018-04-30 14:52:31 -07003252 GRPC_CLOSURE_SCHED(follow_up, GRPC_ERROR_REF(error));
Craig Tiller613dafa2017-02-09 12:00:43 -08003253}
3254
Yash Tibrewal8cf14702017-12-06 09:47:54 -08003255static void watch_connectivity_state_locked(void* arg,
Craig Tillerbaa14a92017-11-03 09:09:36 -07003256 grpc_error* error_ignored) {
Noah Eisen4d20a662018-02-09 09:34:04 -08003257 external_connectivity_watcher* w =
3258 static_cast<external_connectivity_watcher*>(arg);
Craig Tiller4782d922017-11-10 09:53:21 -08003259 external_connectivity_watcher* found = nullptr;
3260 if (w->state != nullptr) {
Alexander Polcync3b1f182017-04-18 13:51:36 -07003261 external_connectivity_watcher_list_append(w->chand, w);
Yash Tibrewal446d1ea2018-04-30 16:58:21 -07003262 // An assumption is being made that the closure is scheduled on the exec ctx
3263 // scheduler and that GRPC_CLOSURE_RUN would run the closure immediately.
Yash Tibrewal8cf14702017-12-06 09:47:54 -08003264 GRPC_CLOSURE_RUN(w->watcher_timer_init, GRPC_ERROR_NONE);
Alexander Polcyn2004e392017-10-16 15:14:46 -07003265 GRPC_CLOSURE_INIT(&w->my_closure, on_external_watch_complete_locked, w,
3266 grpc_combiner_scheduler(w->chand->combiner));
Yash Tibrewal8cf14702017-12-06 09:47:54 -08003267 grpc_connectivity_state_notify_on_state_change(&w->chand->state_tracker,
3268 w->state, &w->my_closure);
Alexander Polcync3b1f182017-04-18 13:51:36 -07003269 } else {
Craig Tiller4782d922017-11-10 09:53:21 -08003270 GPR_ASSERT(w->watcher_timer_init == nullptr);
Alexander Polcync3b1f182017-04-18 13:51:36 -07003271 found = lookup_external_connectivity_watcher(w->chand, w->on_complete);
3272 if (found) {
3273 GPR_ASSERT(found->on_complete == w->on_complete);
3274 grpc_connectivity_state_notify_on_state_change(
Yash Tibrewal8cf14702017-12-06 09:47:54 -08003275 &found->chand->state_tracker, nullptr, &found->my_closure);
Alexander Polcync3b1f182017-04-18 13:51:36 -07003276 }
Yash Tibrewal8cf14702017-12-06 09:47:54 -08003277 grpc_polling_entity_del_from_pollset_set(&w->pollent,
David Garcia Quintas87d5a312017-06-06 19:45:58 -07003278 w->chand->interested_parties);
Yash Tibrewal8cf14702017-12-06 09:47:54 -08003279 GRPC_CHANNEL_STACK_UNREF(w->chand->owning_stack,
Alexander Polcync3b1f182017-04-18 13:51:36 -07003280 "external_connectivity_watcher");
3281 gpr_free(w);
3282 }
Craig Tiller86c99582015-11-25 15:22:26 -08003283}
3284
Craig Tillera82950e2015-09-22 12:33:20 -07003285void grpc_client_channel_watch_connectivity_state(
Yash Tibrewal8cf14702017-12-06 09:47:54 -08003286 grpc_channel_element* elem, grpc_polling_entity pollent,
3287 grpc_connectivity_state* state, grpc_closure* closure,
3288 grpc_closure* watcher_timer_init) {
Noah Eisenbe82e642018-02-09 09:16:55 -08003289 channel_data* chand = static_cast<channel_data*>(elem->channel_data);
Craig Tillerbaa14a92017-11-03 09:09:36 -07003290 external_connectivity_watcher* w =
Noah Eisenbe82e642018-02-09 09:16:55 -08003291 static_cast<external_connectivity_watcher*>(gpr_zalloc(sizeof(*w)));
Craig Tiller86c99582015-11-25 15:22:26 -08003292 w->chand = chand;
David Garcia Quintas87d5a312017-06-06 19:45:58 -07003293 w->pollent = pollent;
Mark D. Roth92210832017-05-02 15:04:39 -07003294 w->on_complete = closure;
Craig Tiller613dafa2017-02-09 12:00:43 -08003295 w->state = state;
Alexander Polcync3b1f182017-04-18 13:51:36 -07003296 w->watcher_timer_init = watcher_timer_init;
Yash Tibrewal8cf14702017-12-06 09:47:54 -08003297 grpc_polling_entity_add_to_pollset_set(&w->pollent,
David Garcia Quintas87d5a312017-06-06 19:45:58 -07003298 chand->interested_parties);
Craig Tiller1d881fb2015-12-01 07:39:04 -08003299 GRPC_CHANNEL_STACK_REF(w->chand->owning_stack,
3300 "external_connectivity_watcher");
ncteisen274bbbe2017-06-08 14:57:11 -07003301 GRPC_CLOSURE_SCHED(
ncteisen274bbbe2017-06-08 14:57:11 -07003302 GRPC_CLOSURE_INIT(&w->my_closure, watch_connectivity_state_locked, w,
Craig Tilleree4b1452017-05-12 10:56:03 -07003303 grpc_combiner_scheduler(chand->combiner)),
Craig Tiller613dafa2017-02-09 12:00:43 -08003304 GRPC_ERROR_NONE);
Craig Tiller48cb07c2015-07-15 16:16:15 -07003305}
Mark D. Roth718c8342018-02-28 13:00:04 -08003306
3307grpc_subchannel_call* grpc_client_channel_get_subchannel_call(
3308 grpc_call_element* elem) {
3309 call_data* calld = static_cast<call_data*>(elem->call_data);
3310 return calld->subchannel_call;
3311}