grpc 1.45.0 → 1.46.2

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of grpc might be problematic. Click here for more details.

Files changed (513) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +36 -29
  3. data/include/grpc/impl/codegen/grpc_types.h +7 -13
  4. data/src/core/ext/filters/channel_idle/channel_idle_filter.cc +309 -0
  5. data/src/core/ext/filters/channel_idle/channel_idle_filter.h +122 -0
  6. data/src/core/ext/filters/{client_idle → channel_idle}/idle_filter_state.cc +1 -1
  7. data/src/core/ext/filters/{client_idle → channel_idle}/idle_filter_state.h +3 -3
  8. data/src/core/ext/filters/client_channel/client_channel.cc +163 -96
  9. data/src/core/ext/filters/client_channel/client_channel.h +2 -0
  10. data/src/core/ext/filters/client_channel/health/health_check_client.cc +124 -581
  11. data/src/core/ext/filters/client_channel/health/health_check_client.h +24 -160
  12. data/src/core/ext/filters/client_channel/http_proxy.cc +88 -110
  13. data/src/core/ext/filters/client_channel/http_proxy.h +17 -0
  14. data/src/core/ext/filters/client_channel/lb_policy/priority/priority.cc +182 -142
  15. data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.cc +2 -6
  16. data/src/core/ext/filters/client_channel/lb_policy/rls/rls.cc +1 -10
  17. data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +87 -58
  18. data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +51 -48
  19. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_manager.cc +14 -7
  20. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_resolver.cc +229 -284
  21. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +92 -257
  22. data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +51 -221
  23. data/src/core/ext/filters/client_channel/resolver/polling_resolver.cc +201 -0
  24. data/src/core/ext/filters/client_channel/resolver/polling_resolver.h +106 -0
  25. data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +102 -55
  26. data/src/core/ext/filters/client_channel/retry_filter.cc +18 -3
  27. data/src/core/ext/filters/client_channel/subchannel.cc +5 -5
  28. data/src/core/ext/filters/client_channel/subchannel_stream_client.cc +544 -0
  29. data/src/core/ext/filters/client_channel/subchannel_stream_client.h +214 -0
  30. data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +127 -367
  31. data/src/core/ext/filters/fault_injection/fault_injection_filter.h +24 -1
  32. data/src/core/ext/filters/http/client/http_client_filter.cc +78 -458
  33. data/src/core/ext/filters/http/client/http_client_filter.h +21 -4
  34. data/src/core/ext/filters/http/client_authority_filter.cc +17 -22
  35. data/src/core/ext/filters/http/client_authority_filter.h +6 -5
  36. data/src/core/ext/filters/http/http_filters_plugin.cc +9 -6
  37. data/src/core/ext/filters/http/server/http_server_filter.cc +2 -116
  38. data/src/core/ext/filters/server_config_selector/server_config_selector.cc +2 -8
  39. data/src/core/ext/filters/server_config_selector/server_config_selector.h +2 -2
  40. data/src/core/ext/filters/server_config_selector/server_config_selector_filter.cc +73 -201
  41. data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +2 -1
  42. data/src/core/ext/transport/chttp2/server/chttp2_server.cc +5 -4
  43. data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +139 -28
  44. data/src/core/ext/transport/chttp2/transport/frame_settings.cc +2 -0
  45. data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +2 -6
  46. data/src/core/ext/transport/chttp2/transport/internal.h +4 -2
  47. data/src/core/ext/transport/chttp2/transport/parsing.cc +8 -0
  48. data/src/core/ext/transport/chttp2/transport/writing.cc +24 -13
  49. data/src/core/ext/upb-generated/envoy/admin/v3/certs.upb.c +27 -24
  50. data/src/core/ext/upb-generated/envoy/admin/v3/certs.upb.h +143 -63
  51. data/src/core/ext/upb-generated/envoy/admin/v3/clusters.upb.c +37 -35
  52. data/src/core/ext/upb-generated/envoy/admin/v3/clusters.upb.h +177 -77
  53. data/src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.c +115 -111
  54. data/src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.h +547 -207
  55. data/src/core/ext/upb-generated/envoy/admin/v3/init_dump.upb.c +5 -5
  56. data/src/core/ext/upb-generated/envoy/admin/v3/init_dump.upb.h +26 -13
  57. data/src/core/ext/upb-generated/envoy/admin/v3/listeners.upb.c +5 -5
  58. data/src/core/ext/upb-generated/envoy/admin/v3/listeners.upb.h +23 -9
  59. data/src/core/ext/upb-generated/envoy/admin/v3/memory.upb.c +7 -7
  60. data/src/core/ext/upb-generated/envoy/admin/v3/memory.upb.h +18 -0
  61. data/src/core/ext/upb-generated/envoy/admin/v3/metrics.upb.c +4 -4
  62. data/src/core/ext/upb-generated/envoy/admin/v3/metrics.upb.h +13 -4
  63. data/src/core/ext/upb-generated/envoy/admin/v3/mutex_stats.upb.c +4 -4
  64. data/src/core/ext/upb-generated/envoy/admin/v3/mutex_stats.upb.h +9 -0
  65. data/src/core/ext/upb-generated/envoy/admin/v3/server_info.upb.c +49 -46
  66. data/src/core/ext/upb-generated/envoy/admin/v3/server_info.upb.h +217 -78
  67. data/src/core/ext/upb-generated/envoy/admin/v3/tap.upb.c +3 -3
  68. data/src/core/ext/upb-generated/envoy/admin/v3/tap.upb.h +10 -2
  69. data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.c +12 -12
  70. data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.h +40 -8
  71. data/src/core/ext/upb-generated/envoy/annotations/resource.upb.c +5 -5
  72. data/src/core/ext/upb-generated/envoy/annotations/resource.upb.h +20 -2
  73. data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.c +55 -55
  74. data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.h +289 -110
  75. data/src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.c +133 -125
  76. data/src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.h +656 -267
  77. data/src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.c +24 -18
  78. data/src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.h +96 -23
  79. data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.c +185 -173
  80. data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.h +860 -309
  81. data/src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.c +3 -3
  82. data/src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.h +10 -2
  83. data/src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.c +44 -24
  84. data/src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.h +165 -40
  85. data/src/core/ext/upb-generated/envoy/config/common/matcher/v3/matcher.upb.c +72 -63
  86. data/src/core/ext/upb-generated/envoy/config/common/matcher/v3/matcher.upb.h +433 -174
  87. data/src/core/ext/upb-generated/envoy/config/core/v3/address.upb.c +33 -31
  88. data/src/core/ext/upb-generated/envoy/config/core/v3/address.upb.h +154 -52
  89. data/src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.c +5 -4
  90. data/src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.h +14 -4
  91. data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.c +89 -89
  92. data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.h +460 -166
  93. data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.c +76 -33
  94. data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.h +379 -69
  95. data/src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.c +2 -2
  96. data/src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.h +14 -6
  97. data/src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.c +5 -25
  98. data/src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.h +10 -91
  99. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_method_list.upb.c +5 -5
  100. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_method_list.upb.h +26 -13
  101. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.c +70 -68
  102. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.h +369 -131
  103. data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.c +94 -65
  104. data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.h +447 -161
  105. data/src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.c +4 -4
  106. data/src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.h +27 -11
  107. data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.c +104 -85
  108. data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.h +378 -113
  109. data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.c +2 -2
  110. data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.h +3 -0
  111. data/src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.c +6 -6
  112. data/src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.h +30 -13
  113. data/src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.c +7 -7
  114. data/src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.h +43 -16
  115. data/src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.c +8 -8
  116. data/src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.h +58 -24
  117. data/src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.c +4 -4
  118. data/src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.h +14 -4
  119. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.c +18 -18
  120. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.h +100 -43
  121. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.c +31 -30
  122. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.h +171 -71
  123. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.c +32 -32
  124. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.h +196 -95
  125. data/src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.c +2 -2
  126. data/src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.h +7 -2
  127. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.c +53 -46
  128. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.h +284 -129
  129. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.c +56 -50
  130. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.h +337 -146
  131. data/src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.c +13 -11
  132. data/src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.h +49 -14
  133. data/src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.c +4 -4
  134. data/src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.h +14 -4
  135. data/src/core/ext/upb-generated/envoy/config/metrics/v3/metrics_service.upb.c +5 -5
  136. data/src/core/ext/upb-generated/envoy/config/metrics/v3/metrics_service.upb.h +20 -4
  137. data/src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.c +33 -32
  138. data/src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.h +205 -86
  139. data/src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.c +34 -34
  140. data/src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.h +175 -74
  141. data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.c +56 -52
  142. data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.h +370 -146
  143. data/src/core/ext/upb-generated/envoy/config/route/v3/route.upb.c +27 -23
  144. data/src/core/ext/upb-generated/envoy/config/route/v3/route.upb.h +173 -74
  145. data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.c +362 -341
  146. data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.h +2056 -845
  147. data/src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.c +11 -11
  148. data/src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.h +49 -16
  149. data/src/core/ext/upb-generated/envoy/config/tap/v3/common.upb.c +56 -50
  150. data/src/core/ext/upb-generated/envoy/config/tap/v3/common.upb.h +293 -111
  151. data/src/core/ext/upb-generated/envoy/config/trace/v3/datadog.upb.c +3 -3
  152. data/src/core/ext/upb-generated/envoy/config/trace/v3/datadog.upb.h +6 -0
  153. data/src/core/ext/upb-generated/envoy/config/trace/v3/dynamic_ot.upb.c +3 -3
  154. data/src/core/ext/upb-generated/envoy/config/trace/v3/dynamic_ot.upb.h +10 -2
  155. data/src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.c +5 -5
  156. data/src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.h +26 -10
  157. data/src/core/ext/upb-generated/envoy/config/trace/v3/lightstep.upb.c +5 -5
  158. data/src/core/ext/upb-generated/envoy/config/trace/v3/lightstep.upb.h +27 -12
  159. data/src/core/ext/upb-generated/envoy/config/trace/v3/opencensus.upb.c +17 -16
  160. data/src/core/ext/upb-generated/envoy/config/trace/v3/opencensus.upb.h +83 -36
  161. data/src/core/ext/upb-generated/envoy/config/trace/v3/service.upb.c +2 -2
  162. data/src/core/ext/upb-generated/envoy/config/trace/v3/service.upb.h +7 -2
  163. data/src/core/ext/upb-generated/envoy/config/trace/v3/skywalking.upb.c +8 -8
  164. data/src/core/ext/upb-generated/envoy/config/trace/v3/skywalking.upb.h +46 -17
  165. data/src/core/ext/upb-generated/envoy/config/trace/v3/xray.upb.c +9 -9
  166. data/src/core/ext/upb-generated/envoy/config/trace/v3/xray.upb.h +38 -12
  167. data/src/core/ext/upb-generated/envoy/config/trace/v3/zipkin.upb.c +7 -7
  168. data/src/core/ext/upb-generated/envoy/config/trace/v3/zipkin.upb.h +30 -10
  169. data/src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.c +2 -2
  170. data/src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.h +10 -6
  171. data/src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.c +15 -15
  172. data/src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.h +71 -28
  173. data/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.c +25 -25
  174. data/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.h +149 -65
  175. data/src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.c +8 -7
  176. data/src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.h +30 -12
  177. data/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.c +9 -9
  178. data/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.h +42 -15
  179. data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.c +173 -144
  180. data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +898 -323
  181. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.c +51 -45
  182. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.h +261 -116
  183. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.c +13 -13
  184. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.h +70 -25
  185. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.c +80 -55
  186. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +410 -124
  187. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.c +5 -5
  188. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.h +23 -9
  189. data/src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.c +1 -1
  190. data/src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.c +44 -44
  191. data/src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.h +261 -122
  192. data/src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.c +8 -8
  193. data/src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.h +47 -21
  194. data/src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.c +32 -32
  195. data/src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.h +175 -66
  196. data/src/core/ext/upb-generated/envoy/type/http/v3/cookie.upb.c +4 -4
  197. data/src/core/ext/upb-generated/envoy/type/http/v3/cookie.upb.h +17 -6
  198. data/src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.c +8 -8
  199. data/src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.h +38 -17
  200. data/src/core/ext/upb-generated/envoy/type/matcher/v3/http_inputs.upb.c +8 -8
  201. data/src/core/ext/upb-generated/envoy/type/matcher/v3/http_inputs.upb.h +12 -0
  202. data/src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.c +7 -7
  203. data/src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.h +43 -18
  204. data/src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.c +3 -3
  205. data/src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.h +20 -9
  206. data/src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.c +3 -3
  207. data/src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.h +24 -9
  208. data/src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.c +2 -2
  209. data/src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.h +14 -6
  210. data/src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.c +8 -8
  211. data/src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.h +40 -16
  212. data/src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.c +9 -9
  213. data/src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.h +70 -25
  214. data/src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.c +5 -5
  215. data/src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.h +37 -18
  216. data/src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.c +12 -12
  217. data/src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.h +81 -30
  218. data/src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.c +16 -16
  219. data/src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.h +76 -30
  220. data/src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.c +20 -20
  221. data/src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.h +90 -30
  222. data/src/core/ext/upb-generated/envoy/type/v3/hash_policy.upb.c +7 -7
  223. data/src/core/ext/upb-generated/envoy/type/v3/hash_policy.upb.h +28 -10
  224. data/src/core/ext/upb-generated/envoy/type/v3/http_status.upb.c +2 -2
  225. data/src/core/ext/upb-generated/envoy/type/v3/http_status.upb.h +3 -0
  226. data/src/core/ext/upb-generated/envoy/type/v3/percent.upb.c +5 -5
  227. data/src/core/ext/upb-generated/envoy/type/v3/percent.upb.h +13 -4
  228. data/src/core/ext/upb-generated/envoy/type/v3/range.upb.c +9 -9
  229. data/src/core/ext/upb-generated/envoy/type/v3/range.upb.h +18 -0
  230. data/src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.c +4 -4
  231. data/src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.h +9 -0
  232. data/src/core/ext/upb-generated/envoy/type/v3/token_bucket.upb.c +5 -5
  233. data/src/core/ext/upb-generated/envoy/type/v3/token_bucket.upb.h +17 -4
  234. data/src/core/ext/upb-generated/google/api/annotations.upb.c +3 -3
  235. data/src/core/ext/upb-generated/google/api/annotations.upb.h +17 -2
  236. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.c +70 -66
  237. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.h +410 -162
  238. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.c +80 -74
  239. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.h +440 -158
  240. data/src/core/ext/upb-generated/google/api/http.upb.c +17 -17
  241. data/src/core/ext/upb-generated/google/api/http.upb.h +116 -43
  242. data/src/core/ext/upb-generated/google/api/httpbody.upb.c +4 -4
  243. data/src/core/ext/upb-generated/google/api/httpbody.upb.h +19 -7
  244. data/src/core/ext/upb-generated/google/protobuf/any.upb.c +3 -3
  245. data/src/core/ext/upb-generated/google/protobuf/any.upb.h +6 -0
  246. data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.c +163 -162
  247. data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.h +1157 -435
  248. data/src/core/ext/upb-generated/google/protobuf/duration.upb.c +3 -3
  249. data/src/core/ext/upb-generated/google/protobuf/duration.upb.h +10 -4
  250. data/src/core/ext/upb-generated/google/protobuf/empty.upb.c +1 -1
  251. data/src/core/ext/upb-generated/google/protobuf/struct.upb.c +15 -15
  252. data/src/core/ext/upb-generated/google/protobuf/struct.upb.h +108 -40
  253. data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.c +3 -3
  254. data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.h +10 -4
  255. data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.c +18 -18
  256. data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.h +27 -0
  257. data/src/core/ext/upb-generated/google/rpc/status.upb.c +4 -4
  258. data/src/core/ext/upb-generated/google/rpc/status.upb.h +19 -7
  259. data/src/core/ext/upb-generated/opencensus/proto/trace/v1/trace_config.upb.c +15 -15
  260. data/src/core/ext/upb-generated/opencensus/proto/trace/v1/trace_config.upb.h +65 -22
  261. data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.c +12 -12
  262. data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.h +49 -12
  263. data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.c +69 -65
  264. data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.h +364 -149
  265. data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.c +8 -7
  266. data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.h +20 -4
  267. data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.c +4 -4
  268. data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.h +6 -0
  269. data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.c +31 -31
  270. data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.h +150 -58
  271. data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.c +11 -11
  272. data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.h +51 -18
  273. data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls_config.upb.c +175 -0
  274. data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls_config.upb.h +764 -0
  275. data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.c +22 -22
  276. data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.h +97 -10
  277. data/src/core/ext/upb-generated/udpa/annotations/security.upb.c +6 -6
  278. data/src/core/ext/upb-generated/udpa/annotations/security.upb.h +23 -2
  279. data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.c +3 -3
  280. data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.h +10 -2
  281. data/src/core/ext/upb-generated/udpa/annotations/status.upb.c +6 -6
  282. data/src/core/ext/upb-generated/udpa/annotations/status.upb.h +27 -6
  283. data/src/core/ext/upb-generated/udpa/annotations/versioning.upb.c +5 -5
  284. data/src/core/ext/upb-generated/udpa/annotations/versioning.upb.h +20 -2
  285. data/src/core/ext/upb-generated/validate/validate.upb.c +261 -250
  286. data/src/core/ext/upb-generated/validate/validate.upb.h +1836 -663
  287. data/src/core/ext/upb-generated/xds/annotations/v3/migrate.upb.c +22 -22
  288. data/src/core/ext/upb-generated/xds/annotations/v3/migrate.upb.h +97 -10
  289. data/src/core/ext/upb-generated/xds/annotations/v3/security.upb.c +6 -6
  290. data/src/core/ext/upb-generated/xds/annotations/v3/security.upb.h +23 -2
  291. data/src/core/ext/upb-generated/xds/annotations/v3/sensitive.upb.c +3 -3
  292. data/src/core/ext/upb-generated/xds/annotations/v3/sensitive.upb.h +10 -2
  293. data/src/core/ext/upb-generated/xds/annotations/v3/status.upb.c +18 -18
  294. data/src/core/ext/upb-generated/xds/annotations/v3/status.upb.h +70 -10
  295. data/src/core/ext/upb-generated/xds/annotations/v3/versioning.upb.c +5 -5
  296. data/src/core/ext/upb-generated/xds/annotations/v3/versioning.upb.h +20 -2
  297. data/src/core/ext/upb-generated/xds/core/v3/authority.upb.c +2 -2
  298. data/src/core/ext/upb-generated/xds/core/v3/authority.upb.h +3 -0
  299. data/src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.c +8 -8
  300. data/src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.h +38 -12
  301. data/src/core/ext/upb-generated/xds/core/v3/context_params.upb.c +5 -5
  302. data/src/core/ext/upb-generated/xds/core/v3/context_params.upb.h +27 -10
  303. data/src/core/ext/upb-generated/xds/core/v3/extension.upb.c +3 -3
  304. data/src/core/ext/upb-generated/xds/core/v3/extension.upb.h +10 -2
  305. data/src/core/ext/upb-generated/xds/core/v3/resource.upb.c +5 -5
  306. data/src/core/ext/upb-generated/xds/core/v3/resource.upb.h +21 -8
  307. data/src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.c +10 -10
  308. data/src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.h +71 -30
  309. data/src/core/ext/upb-generated/xds/core/v3/resource_name.upb.c +5 -5
  310. data/src/core/ext/upb-generated/xds/core/v3/resource_name.upb.h +16 -2
  311. data/src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.c +12 -12
  312. data/src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.h +69 -26
  313. data/src/core/ext/upb-generated/xds/type/matcher/v3/matcher.upb.c +43 -39
  314. data/src/core/ext/upb-generated/xds/type/matcher/v3/matcher.upb.h +255 -103
  315. data/src/core/ext/upb-generated/xds/type/matcher/v3/regex.upb.c +4 -4
  316. data/src/core/ext/upb-generated/xds/type/matcher/v3/regex.upb.h +19 -8
  317. data/src/core/ext/upb-generated/xds/type/matcher/v3/string.upb.c +9 -9
  318. data/src/core/ext/upb-generated/xds/type/matcher/v3/string.upb.h +70 -25
  319. data/src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.c +3 -3
  320. data/src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.h +10 -2
  321. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/circuit_breaker.upbdefs.c +50 -46
  322. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.c +195 -185
  323. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/outlier_detection.upbdefs.c +16 -12
  324. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.c +129 -94
  325. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.h +10 -0
  326. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.c +18 -33
  327. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.h +0 -5
  328. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.c +163 -155
  329. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.h +5 -0
  330. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.c +141 -138
  331. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.c +26 -20
  332. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.c +738 -730
  333. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +271 -251
  334. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h +5 -0
  335. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c +207 -193
  336. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h +5 -0
  337. data/src/core/ext/upbdefs-generated/src/proto/grpc/lookup/v1/rls_config.upbdefs.c +99 -0
  338. data/src/core/ext/upbdefs-generated/src/proto/grpc/lookup/v1/rls_config.upbdefs.h +75 -0
  339. data/src/core/ext/xds/certificate_provider_store.cc +8 -0
  340. data/src/core/ext/xds/certificate_provider_store.h +9 -0
  341. data/src/core/ext/xds/xds_api.cc +20 -0
  342. data/src/core/ext/xds/xds_certificate_provider.cc +2 -0
  343. data/src/core/ext/xds/xds_certificate_provider.h +8 -0
  344. data/src/core/ext/xds/xds_client.cc +83 -93
  345. data/src/core/ext/xds/xds_client.h +11 -4
  346. data/src/core/ext/xds/xds_cluster_specifier_plugin.cc +142 -0
  347. data/src/core/ext/xds/xds_cluster_specifier_plugin.h +79 -0
  348. data/src/core/ext/xds/xds_common_types.cc +9 -9
  349. data/src/core/ext/xds/xds_common_types.h +3 -3
  350. data/src/core/ext/xds/xds_endpoint.cc +12 -5
  351. data/src/core/ext/xds/xds_http_fault_filter.cc +1 -1
  352. data/src/core/ext/xds/xds_listener.cc +1 -1
  353. data/src/core/ext/xds/xds_route_config.cc +162 -25
  354. data/src/core/ext/xds/xds_route_config.h +13 -10
  355. data/src/core/ext/xds/xds_server_config_fetcher.cc +17 -22
  356. data/src/core/lib/avl/avl.h +68 -5
  357. data/src/core/lib/channel/call_tracer.h +4 -1
  358. data/src/core/lib/channel/channel_args.cc +138 -59
  359. data/src/core/lib/channel/channel_args.h +210 -9
  360. data/src/core/lib/channel/channel_args_preconditioning.cc +3 -9
  361. data/src/core/lib/channel/channel_args_preconditioning.h +1 -2
  362. data/src/core/lib/channel/channel_stack.h +2 -5
  363. data/src/core/lib/channel/channel_stack_builder.cc +0 -65
  364. data/src/core/lib/channel/channel_stack_builder.h +27 -6
  365. data/src/core/lib/channel/channel_stack_builder_impl.cc +102 -0
  366. data/src/core/lib/channel/channel_stack_builder_impl.h +48 -0
  367. data/src/core/lib/channel/connected_channel.h +1 -0
  368. data/src/core/lib/channel/promise_based_filter.cc +495 -162
  369. data/src/core/lib/channel/promise_based_filter.h +55 -41
  370. data/src/core/lib/compression/compression_internal.cc +1 -7
  371. data/src/core/lib/debug/stats_data.cc +2 -6
  372. data/src/core/lib/debug/stats_data.h +18 -21
  373. data/src/core/lib/gpr/tls.h +1 -0
  374. data/src/core/lib/gprpp/bitset.h +12 -0
  375. data/src/core/lib/gprpp/cpp_impl_of.h +4 -0
  376. data/src/core/lib/gprpp/match.h +73 -0
  377. data/src/core/lib/gprpp/overload.h +59 -0
  378. data/src/core/lib/gprpp/ref_counted.h +2 -0
  379. data/src/core/lib/gprpp/single_set_ptr.h +87 -0
  380. data/src/core/lib/gprpp/status_helper.cc +18 -2
  381. data/src/core/lib/gprpp/time.cc +12 -0
  382. data/src/core/lib/gprpp/time.h +1 -1
  383. data/src/core/lib/http/format_request.cc +1 -2
  384. data/src/core/lib/http/httpcli_security_connector.cc +5 -5
  385. data/src/core/lib/http/parser.cc +80 -9
  386. data/src/core/lib/http/parser.h +14 -1
  387. data/src/core/lib/iomgr/ev_posix.cc +6 -7
  388. data/src/core/lib/iomgr/fork_posix.cc +1 -1
  389. data/src/core/lib/iomgr/port.h +0 -2
  390. data/src/core/lib/iomgr/tcp_client_posix.cc +2 -2
  391. data/src/core/lib/iomgr/tcp_posix.cc +93 -35
  392. data/src/core/lib/iomgr/tcp_server_posix.cc +26 -17
  393. data/src/core/lib/json/json_util.h +3 -3
  394. data/src/core/lib/promise/call_push_pull.h +144 -0
  395. data/src/core/lib/promise/detail/status.h +2 -1
  396. data/src/core/lib/promise/intra_activity_waiter.h +49 -0
  397. data/src/core/lib/promise/latch.h +104 -0
  398. data/src/core/lib/resource_quota/api.cc +5 -30
  399. data/src/core/lib/resource_quota/api.h +1 -1
  400. data/src/core/lib/resource_quota/resource_quota.h +8 -0
  401. data/src/core/lib/security/authorization/authorization_policy_provider.h +7 -0
  402. data/src/core/lib/security/authorization/grpc_server_authz_filter.cc +9 -12
  403. data/src/core/lib/security/authorization/grpc_server_authz_filter.h +5 -6
  404. data/src/core/lib/security/context/security_context.h +8 -1
  405. data/src/core/lib/security/credentials/alts/alts_credentials.cc +6 -5
  406. data/src/core/lib/security/credentials/alts/alts_credentials.h +4 -0
  407. data/src/core/lib/security/credentials/call_creds_util.cc +3 -3
  408. data/src/core/lib/security/credentials/call_creds_util.h +2 -2
  409. data/src/core/lib/security/credentials/composite/composite_credentials.cc +15 -10
  410. data/src/core/lib/security/credentials/composite/composite_credentials.h +9 -8
  411. data/src/core/lib/security/credentials/credentials.h +16 -33
  412. data/src/core/lib/security/credentials/fake/fake_credentials.cc +8 -12
  413. data/src/core/lib/security/credentials/fake/fake_credentials.h +8 -5
  414. data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +4 -0
  415. data/src/core/lib/security/credentials/google_default/google_default_credentials.h +3 -3
  416. data/src/core/lib/security/credentials/iam/iam_credentials.cc +5 -4
  417. data/src/core/lib/security/credentials/iam/iam_credentials.h +6 -2
  418. data/src/core/lib/security/credentials/insecure/insecure_credentials.cc +22 -29
  419. data/src/core/lib/security/credentials/insecure/insecure_credentials.h +57 -0
  420. data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +7 -3
  421. data/src/core/lib/security/credentials/jwt/jwt_credentials.h +6 -2
  422. data/src/core/lib/security/credentials/local/local_credentials.cc +6 -6
  423. data/src/core/lib/security/credentials/local/local_credentials.h +4 -0
  424. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +17 -9
  425. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +14 -6
  426. data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +8 -6
  427. data/src/core/lib/security/credentials/plugin/plugin_credentials.h +8 -6
  428. data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +6 -4
  429. data/src/core/lib/security/credentials/ssl/ssl_credentials.h +8 -0
  430. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h +49 -0
  431. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.cc +8 -0
  432. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.h +42 -3
  433. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +66 -95
  434. data/src/core/lib/security/credentials/tls/tls_credentials.cc +9 -6
  435. data/src/core/lib/security/credentials/tls/tls_credentials.h +5 -5
  436. data/src/core/lib/security/credentials/xds/xds_credentials.cc +48 -50
  437. data/src/core/lib/security/credentials/xds/xds_credentials.h +31 -5
  438. data/src/core/lib/security/security_connector/local/local_security_connector.cc +2 -2
  439. data/src/core/lib/security/security_connector/security_connector.h +9 -0
  440. data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +4 -2
  441. data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +4 -2
  442. data/src/core/lib/security/transport/auth_filters.h +7 -7
  443. data/src/core/lib/security/transport/client_auth_filter.cc +28 -20
  444. data/src/core/lib/security/transport/secure_endpoint.cc +198 -129
  445. data/src/core/lib/security/transport/secure_endpoint.h +1 -1
  446. data/src/core/lib/security/transport/security_handshaker.cc +6 -4
  447. data/src/core/lib/surface/call.cc +1023 -903
  448. data/src/core/lib/surface/call.h +0 -14
  449. data/src/core/lib/surface/channel.cc +4 -3
  450. data/src/core/lib/surface/channel_init.cc +2 -3
  451. data/src/core/lib/surface/channel_init.h +2 -6
  452. data/src/core/lib/surface/init.cc +1 -1
  453. data/src/core/lib/surface/server.cc +3 -14
  454. data/src/core/lib/surface/server.h +1 -2
  455. data/src/core/lib/surface/version.cc +2 -2
  456. data/src/core/lib/transport/byte_stream.cc +2 -0
  457. data/src/core/lib/transport/metadata_batch.h +12 -8
  458. data/src/core/lib/transport/transport.h +20 -5
  459. data/src/core/lib/transport/transport_impl.h +4 -3
  460. data/src/core/plugin_registry/grpc_plugin_registry.cc +2 -4
  461. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +2 -2
  462. data/src/core/tsi/ssl_transport_security.cc +75 -38
  463. data/src/core/tsi/ssl_transport_security.h +8 -2
  464. data/src/core/tsi/transport_security_interface.h +2 -0
  465. data/src/ruby/ext/grpc/extconf.rb +1 -1
  466. data/src/ruby/lib/grpc/generic/active_call.rb +7 -1
  467. data/src/ruby/lib/grpc/grpc.rb +1 -1
  468. data/src/ruby/lib/grpc/version.rb +1 -1
  469. data/src/ruby/pb/generate_proto_ruby.sh +1 -0
  470. data/src/ruby/pb/test/client.rb +769 -0
  471. data/src/ruby/pb/test/server.rb +252 -0
  472. data/src/ruby/pb/test/xds_client.rb +415 -0
  473. data/third_party/upb/third_party/utf8_range/utf8_range.h +1 -1
  474. data/third_party/upb/upb/decode.c +32 -16
  475. data/third_party/upb/upb/def.c +118 -55
  476. data/third_party/upb/upb/def.h +12 -3
  477. data/third_party/upb/upb/encode.c +14 -8
  478. data/third_party/upb/upb/json_encode.c +776 -0
  479. data/third_party/upb/upb/json_encode.h +62 -0
  480. data/third_party/upb/upb/msg.c +5 -7
  481. data/third_party/upb/upb/msg.h +1 -2
  482. data/third_party/upb/upb/msg_internal.h +49 -36
  483. data/third_party/upb/upb/port_def.inc +8 -0
  484. data/third_party/upb/upb/port_undef.inc +1 -0
  485. data/third_party/upb/upb/table.c +10 -6
  486. data/third_party/upb/upb/table_internal.h +2 -0
  487. data/third_party/upb/upb/upb.h +41 -11
  488. data/third_party/zlib/crc32.c +966 -292
  489. data/third_party/zlib/crc32.h +9441 -436
  490. data/third_party/zlib/deflate.c +78 -30
  491. data/third_party/zlib/deflate.h +12 -15
  492. data/third_party/zlib/gzguts.h +3 -2
  493. data/third_party/zlib/gzlib.c +5 -3
  494. data/third_party/zlib/gzread.c +5 -7
  495. data/third_party/zlib/gzwrite.c +25 -13
  496. data/third_party/zlib/infback.c +2 -1
  497. data/third_party/zlib/inffast.c +14 -14
  498. data/third_party/zlib/inflate.c +39 -8
  499. data/third_party/zlib/inflate.h +3 -2
  500. data/third_party/zlib/inftrees.c +3 -3
  501. data/third_party/zlib/trees.c +27 -48
  502. data/third_party/zlib/zlib.h +123 -100
  503. data/third_party/zlib/zutil.c +2 -2
  504. data/third_party/zlib/zutil.h +12 -9
  505. metadata +66 -45
  506. data/src/core/ext/filters/client_idle/client_idle_filter.cc +0 -201
  507. data/src/core/ext/filters/max_age/max_age_filter.cc +0 -566
  508. data/src/core/ext/filters/max_age/max_age_filter.h +0 -26
  509. data/src/core/lib/iomgr/ev_epollex_linux.cc +0 -1657
  510. data/src/core/lib/iomgr/ev_epollex_linux.h +0 -30
  511. data/src/core/lib/iomgr/is_epollexclusive_available.cc +0 -119
  512. data/src/core/lib/iomgr/is_epollexclusive_available.h +0 -36
  513. data/src/core/lib/iomgr/sys_epoll_wrapper.h +0 -30
@@ -1,566 +0,0 @@
1
- /*
2
- *
3
- * Copyright 2017 gRPC authors.
4
- *
5
- * 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
8
- *
9
- * http://www.apache.org/licenses/LICENSE-2.0
10
- *
11
- * 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.
16
- *
17
- */
18
-
19
- #include <grpc/support/port_platform.h>
20
-
21
- #include "src/core/ext/filters/max_age/max_age_filter.h"
22
-
23
- #include <limits.h>
24
- #include <string.h>
25
-
26
- #include "src/core/lib/channel/channel_args.h"
27
- #include "src/core/lib/channel/channel_stack_builder.h"
28
- #include "src/core/lib/config/core_configuration.h"
29
- #include "src/core/lib/iomgr/timer.h"
30
- #include "src/core/lib/transport/http2_errors.h"
31
-
32
- /* If these settings change, make sure that we are not sending a GOAWAY for
33
- * inproc transport, since a GOAWAY to inproc ends up destroying the transport.
34
- */
35
- #define DEFAULT_MAX_CONNECTION_AGE_MS INT_MAX
36
- #define DEFAULT_MAX_CONNECTION_AGE_GRACE_MS INT_MAX
37
- #define DEFAULT_MAX_CONNECTION_IDLE_MS INT_MAX
38
- #define MAX_CONNECTION_AGE_JITTER 0.1
39
-
40
- #define MAX_CONNECTION_AGE_INTEGER_OPTIONS \
41
- { DEFAULT_MAX_CONNECTION_AGE_MS, 1, INT_MAX }
42
- #define MAX_CONNECTION_IDLE_INTEGER_OPTIONS \
43
- { DEFAULT_MAX_CONNECTION_IDLE_MS, 1, INT_MAX }
44
-
45
- /* States for idle_state in channel_data */
46
- #define MAX_IDLE_STATE_INIT ((gpr_atm)0)
47
- #define MAX_IDLE_STATE_SEEN_EXIT_IDLE ((gpr_atm)1)
48
- #define MAX_IDLE_STATE_SEEN_ENTER_IDLE ((gpr_atm)2)
49
- #define MAX_IDLE_STATE_TIMER_SET ((gpr_atm)3)
50
-
51
- namespace {
52
- struct channel_data {
53
- /* The channel stack to which we take refs for pending callbacks. */
54
- grpc_channel_stack* channel_stack;
55
- /* Guards access to max_age_timer, max_age_timer_pending, max_age_grace_timer
56
- and max_age_grace_timer_pending */
57
- grpc_core::Mutex max_age_timer_mu;
58
- /* True if the max_age timer callback is currently pending */
59
- bool max_age_timer_pending ABSL_GUARDED_BY(max_age_timer_mu) = false;
60
- /* True if the max_age_grace timer callback is currently pending */
61
- bool max_age_grace_timer_pending ABSL_GUARDED_BY(max_age_timer_mu) = false;
62
- /* The timer for checking if the channel has reached its max age */
63
- grpc_timer max_age_timer ABSL_GUARDED_BY(max_age_timer_mu);
64
- /* The timer for checking if the max-aged channel has uesed up the grace
65
- period */
66
- grpc_timer max_age_grace_timer ABSL_GUARDED_BY(max_age_timer_mu);
67
- /* The timer for checking if the channel's idle duration reaches
68
- max_connection_idle */
69
- grpc_timer max_idle_timer;
70
- /* Allowed max time a channel may have no outstanding rpcs */
71
- grpc_core::Duration max_connection_idle;
72
- /* Allowed max time a channel may exist */
73
- grpc_core::Duration max_connection_age;
74
- /* Allowed grace period after the channel reaches its max age */
75
- grpc_core::Duration max_connection_age_grace;
76
- /* Closure to run when the channel's idle duration reaches max_connection_idle
77
- and should be closed gracefully */
78
- grpc_closure max_idle_timer_cb;
79
- /* Closure to run when the channel reaches its max age and should be closed
80
- gracefully */
81
- grpc_closure close_max_age_channel;
82
- /* Closure to run the channel uses up its max age grace time and should be
83
- closed forcibly */
84
- grpc_closure force_close_max_age_channel;
85
- /* Closure to run when the init fo channel stack is done and the max_idle
86
- timer should be started */
87
- grpc_closure start_max_idle_timer_after_init;
88
- /* Closure to run when the init fo channel stack is done and the max_age timer
89
- should be started */
90
- grpc_closure start_max_age_timer_after_init;
91
- /* Closure to run when the goaway op is finished and the max_age_timer */
92
- grpc_closure start_max_age_grace_timer_after_goaway_op;
93
- /* Number of active calls */
94
- gpr_atm call_count;
95
- /* TODO(zyc): C++lize this state machine */
96
- /* 'idle_state' holds the states of max_idle_timer and channel idleness.
97
- It can contain one of the following values:
98
- +--------------------------------+----------------+---------+
99
- | idle_state | max_idle_timer | channel |
100
- +--------------------------------+----------------+---------+
101
- | MAX_IDLE_STATE_INIT | unset | busy |
102
- | MAX_IDLE_STATE_TIMER_SET | set, valid | idle |
103
- | MAX_IDLE_STATE_SEEN_EXIT_IDLE | set, invalid | busy |
104
- | MAX_IDLE_STATE_SEEN_ENTER_IDLE | set, invalid | idle |
105
- +--------------------------------+----------------+---------+
106
-
107
- MAX_IDLE_STATE_INIT: The initial and final state of 'idle_state'. The
108
- channel has 1 or 1+ active calls, and the timer is not set. Note that
109
- we may put a virtual call to hold this state at channel initialization or
110
- shutdown, so that the channel won't enter other states.
111
-
112
- MAX_IDLE_STATE_TIMER_SET: The state after the timer is set and no calls
113
- have arrived after the timer is set. The channel must have 0 active call in
114
- this state. If the timer is fired in this state, we will close the channel
115
- due to idleness.
116
-
117
- MAX_IDLE_STATE_SEEN_EXIT_IDLE: The state after the timer is set and at
118
- least one call has arrived after the timer is set. The channel must have 1
119
- or 1+ active calls in this state. If the timer is fired in this state, we
120
- won't reschudle it.
121
-
122
- MAX_IDLE_STATE_SEEN_ENTER_IDLE: The state after the timer is set and the at
123
- least one call has arrived after the timer is set, BUT the channel
124
- currently has 0 active calls. If the timer is fired in this state, we will
125
- reschudle it.
126
-
127
- max_idle_timer will not be cancelled (unless the channel is shutting down).
128
- If the timer callback is called when the max_idle_timer is valid (i.e.
129
- idle_state is MAX_IDLE_STATE_TIMER_SET), the channel will be closed due to
130
- idleness, otherwise the channel won't be changed.
131
-
132
- State transitions:
133
- MAX_IDLE_STATE_INIT <-------3------ MAX_IDLE_STATE_SEEN_EXIT_IDLE
134
- ^ | ^ ^ |
135
- | | | | |
136
- 1 2 +-----------4------------+ 6 7
137
- | | | | |
138
- | v | | v
139
- MAX_IDLE_STATE_TIMER_SET <----5------ MAX_IDLE_STATE_SEEN_ENTER_IDLE
140
-
141
- For 1, 3, 5 : See max_idle_timer_cb() function
142
- For 2, 7 : See decrease_call_count() function
143
- For 4, 6 : See increase_call_count() function */
144
- gpr_atm idle_state;
145
- /* Time when the channel finished its last outstanding call, in
146
- * grpc_core::Timestamp */
147
- gpr_atm last_enter_idle_time_millis;
148
- };
149
- } // namespace
150
-
151
- /* Increase the nubmer of active calls. Before the increasement, if there are no
152
- calls, the max_idle_timer should be cancelled. */
153
- static void increase_call_count(channel_data* chand) {
154
- /* Exit idle */
155
- if (gpr_atm_full_fetch_add(&chand->call_count, 1) == 0) {
156
- while (true) {
157
- gpr_atm idle_state = gpr_atm_acq_load(&chand->idle_state);
158
- switch (idle_state) {
159
- case MAX_IDLE_STATE_TIMER_SET:
160
- /* max_idle_timer_cb may have already set idle_state to
161
- MAX_IDLE_STATE_INIT, in this case, we don't need to set it to
162
- MAX_IDLE_STATE_SEEN_EXIT_IDLE */
163
- gpr_atm_rel_cas(&chand->idle_state, MAX_IDLE_STATE_TIMER_SET,
164
- MAX_IDLE_STATE_SEEN_EXIT_IDLE);
165
- return;
166
- case MAX_IDLE_STATE_SEEN_ENTER_IDLE:
167
- gpr_atm_rel_store(&chand->idle_state, MAX_IDLE_STATE_SEEN_EXIT_IDLE);
168
- return;
169
- default:
170
- /* try again */
171
- break;
172
- }
173
- }
174
- }
175
- }
176
-
177
- /* Decrease the nubmer of active calls. After the decrement, if there are no
178
- calls, the max_idle_timer should be started. */
179
- static void decrease_call_count(channel_data* chand) {
180
- /* Enter idle */
181
- if (gpr_atm_full_fetch_add(&chand->call_count, -1) == 1) {
182
- gpr_atm_no_barrier_store(&chand->last_enter_idle_time_millis,
183
- (gpr_atm)grpc_core::ExecCtx::Get()
184
- ->Now()
185
- .milliseconds_after_process_epoch());
186
- while (true) {
187
- gpr_atm idle_state = gpr_atm_acq_load(&chand->idle_state);
188
- switch (idle_state) {
189
- case MAX_IDLE_STATE_INIT:
190
- GRPC_CHANNEL_STACK_REF(chand->channel_stack,
191
- "max_age max_idle_timer");
192
- grpc_timer_init(
193
- &chand->max_idle_timer,
194
- grpc_core::ExecCtx::Get()->Now() + chand->max_connection_idle,
195
- &chand->max_idle_timer_cb);
196
- gpr_atm_rel_store(&chand->idle_state, MAX_IDLE_STATE_TIMER_SET);
197
- return;
198
- case MAX_IDLE_STATE_SEEN_EXIT_IDLE:
199
- if (gpr_atm_rel_cas(&chand->idle_state, MAX_IDLE_STATE_SEEN_EXIT_IDLE,
200
- MAX_IDLE_STATE_SEEN_ENTER_IDLE)) {
201
- return;
202
- }
203
- break;
204
- default:
205
- /* try again */
206
- break;
207
- }
208
- }
209
- }
210
- }
211
-
212
- static void start_max_idle_timer_after_init(void* arg,
213
- grpc_error_handle /*error*/) {
214
- channel_data* chand = static_cast<channel_data*>(arg);
215
- /* Decrease call_count. If there are no active calls at this time,
216
- max_idle_timer will start here. If the number of active calls is not 0,
217
- max_idle_timer will start after all the active calls end. */
218
- decrease_call_count(chand);
219
- GRPC_CHANNEL_STACK_UNREF(chand->channel_stack,
220
- "max_age start_max_idle_timer_after_init");
221
- }
222
-
223
- namespace grpc_core {
224
-
225
- class ConnectivityWatcher : public AsyncConnectivityStateWatcherInterface {
226
- public:
227
- explicit ConnectivityWatcher(channel_data* chand) : chand_(chand) {
228
- GRPC_CHANNEL_STACK_REF(chand_->channel_stack, "max_age conn_watch");
229
- }
230
-
231
- ~ConnectivityWatcher() override {
232
- GRPC_CHANNEL_STACK_UNREF(chand_->channel_stack, "max_age conn_watch");
233
- }
234
-
235
- private:
236
- void OnConnectivityStateChange(grpc_connectivity_state new_state,
237
- const absl::Status& /* status */) override {
238
- if (new_state != GRPC_CHANNEL_SHUTDOWN) return;
239
- {
240
- MutexLock lock(&chand_->max_age_timer_mu);
241
- if (chand_->max_age_timer_pending) {
242
- grpc_timer_cancel(&chand_->max_age_timer);
243
- chand_->max_age_timer_pending = false;
244
- }
245
- if (chand_->max_age_grace_timer_pending) {
246
- grpc_timer_cancel(&chand_->max_age_grace_timer);
247
- chand_->max_age_grace_timer_pending = false;
248
- }
249
- }
250
- /* If there are no active calls, this increasement will cancel
251
- max_idle_timer, and prevent max_idle_timer from being started in the
252
- future. */
253
- increase_call_count(chand_);
254
- if (gpr_atm_acq_load(&chand_->idle_state) ==
255
- MAX_IDLE_STATE_SEEN_EXIT_IDLE) {
256
- grpc_timer_cancel(&chand_->max_idle_timer);
257
- }
258
- }
259
-
260
- channel_data* chand_;
261
- };
262
-
263
- } // namespace grpc_core
264
-
265
- static void start_max_age_timer_after_init(void* arg,
266
- grpc_error_handle /*error*/) {
267
- channel_data* chand = static_cast<channel_data*>(arg);
268
- {
269
- grpc_core::MutexLock lock(&chand->max_age_timer_mu);
270
- chand->max_age_timer_pending = true;
271
- GRPC_CHANNEL_STACK_REF(chand->channel_stack, "max_age max_age_timer");
272
- grpc_timer_init(
273
- &chand->max_age_timer,
274
- grpc_core::ExecCtx::Get()->Now() + chand->max_connection_age,
275
- &chand->close_max_age_channel);
276
- }
277
- grpc_transport_op* op = grpc_make_transport_op(nullptr);
278
- op->start_connectivity_watch.reset(new grpc_core::ConnectivityWatcher(chand));
279
- op->start_connectivity_watch_state = GRPC_CHANNEL_IDLE;
280
- grpc_channel_next_op(grpc_channel_stack_element(chand->channel_stack, 0), op);
281
- GRPC_CHANNEL_STACK_UNREF(chand->channel_stack,
282
- "max_age start_max_age_timer_after_init");
283
- }
284
-
285
- static void start_max_age_grace_timer_after_goaway_op(
286
- void* arg, grpc_error_handle /*error*/) {
287
- channel_data* chand = static_cast<channel_data*>(arg);
288
- {
289
- grpc_core::MutexLock lock(&chand->max_age_timer_mu);
290
- chand->max_age_grace_timer_pending = true;
291
- GRPC_CHANNEL_STACK_REF(chand->channel_stack, "max_age max_age_grace_timer");
292
- grpc_timer_init(
293
- &chand->max_age_grace_timer,
294
- grpc_core::ExecCtx::Get()->Now() + chand->max_connection_age_grace,
295
- &chand->force_close_max_age_channel);
296
- }
297
- GRPC_CHANNEL_STACK_UNREF(chand->channel_stack,
298
- "max_age start_max_age_grace_timer_after_goaway_op");
299
- }
300
-
301
- static void close_max_idle_channel(channel_data* chand) {
302
- /* Prevent the max idle timer from being set again */
303
- gpr_atm_no_barrier_fetch_add(&chand->call_count, 1);
304
- grpc_transport_op* op = grpc_make_transport_op(nullptr);
305
- op->goaway_error =
306
- grpc_error_set_int(GRPC_ERROR_CREATE_FROM_STATIC_STRING("max_idle"),
307
- GRPC_ERROR_INT_HTTP2_ERROR, GRPC_HTTP2_NO_ERROR);
308
- grpc_channel_element* elem =
309
- grpc_channel_stack_element(chand->channel_stack, 0);
310
- elem->filter->start_transport_op(elem, op);
311
- }
312
-
313
- static void max_idle_timer_cb(void* arg, grpc_error_handle error) {
314
- channel_data* chand = static_cast<channel_data*>(arg);
315
- if (error == GRPC_ERROR_NONE) {
316
- bool try_again = true;
317
- while (try_again) {
318
- gpr_atm idle_state = gpr_atm_acq_load(&chand->idle_state);
319
- switch (idle_state) {
320
- case MAX_IDLE_STATE_TIMER_SET:
321
- close_max_idle_channel(chand);
322
- /* This MAX_IDLE_STATE_INIT is a final state, we don't have to check
323
- * if idle_state has been changed */
324
- gpr_atm_rel_store(&chand->idle_state, MAX_IDLE_STATE_INIT);
325
- try_again = false;
326
- break;
327
- case MAX_IDLE_STATE_SEEN_EXIT_IDLE:
328
- if (gpr_atm_rel_cas(&chand->idle_state, MAX_IDLE_STATE_SEEN_EXIT_IDLE,
329
- MAX_IDLE_STATE_INIT)) {
330
- try_again = false;
331
- }
332
- break;
333
- case MAX_IDLE_STATE_SEEN_ENTER_IDLE:
334
- GRPC_CHANNEL_STACK_REF(chand->channel_stack,
335
- "max_age max_idle_timer");
336
- grpc_timer_init(
337
- &chand->max_idle_timer,
338
- grpc_core::Timestamp::FromMillisecondsAfterProcessEpoch(
339
- gpr_atm_no_barrier_load(
340
- &chand->last_enter_idle_time_millis)) +
341
- chand->max_connection_idle,
342
- &chand->max_idle_timer_cb);
343
- /* idle_state may have already been set to
344
- MAX_IDLE_STATE_SEEN_EXIT_IDLE by increase_call_count(), in this
345
- case, we don't need to set it to MAX_IDLE_STATE_TIMER_SET */
346
- gpr_atm_rel_cas(&chand->idle_state, MAX_IDLE_STATE_SEEN_ENTER_IDLE,
347
- MAX_IDLE_STATE_TIMER_SET);
348
- try_again = false;
349
- break;
350
- default:
351
- /* try again */
352
- break;
353
- }
354
- }
355
- }
356
- GRPC_CHANNEL_STACK_UNREF(chand->channel_stack, "max_age max_idle_timer");
357
- }
358
-
359
- static void close_max_age_channel(void* arg, grpc_error_handle error) {
360
- channel_data* chand = static_cast<channel_data*>(arg);
361
- {
362
- grpc_core::MutexLock lock(&chand->max_age_timer_mu);
363
- chand->max_age_timer_pending = false;
364
- }
365
- if (error == GRPC_ERROR_NONE) {
366
- GRPC_CHANNEL_STACK_REF(chand->channel_stack,
367
- "max_age start_max_age_grace_timer_after_goaway_op");
368
- grpc_transport_op* op = grpc_make_transport_op(
369
- &chand->start_max_age_grace_timer_after_goaway_op);
370
- op->goaway_error =
371
- grpc_error_set_int(GRPC_ERROR_CREATE_FROM_STATIC_STRING("max_age"),
372
- GRPC_ERROR_INT_HTTP2_ERROR, GRPC_HTTP2_NO_ERROR);
373
- grpc_channel_element* elem =
374
- grpc_channel_stack_element(chand->channel_stack, 0);
375
- elem->filter->start_transport_op(elem, op);
376
- } else if (error != GRPC_ERROR_CANCELLED) {
377
- GRPC_LOG_IF_ERROR("close_max_age_channel", error);
378
- }
379
- GRPC_CHANNEL_STACK_UNREF(chand->channel_stack, "max_age max_age_timer");
380
- }
381
-
382
- static void force_close_max_age_channel(void* arg, grpc_error_handle error) {
383
- channel_data* chand = static_cast<channel_data*>(arg);
384
- {
385
- grpc_core::MutexLock lock(&chand->max_age_timer_mu);
386
- chand->max_age_grace_timer_pending = false;
387
- }
388
- if (error == GRPC_ERROR_NONE) {
389
- grpc_transport_op* op = grpc_make_transport_op(nullptr);
390
- op->disconnect_with_error =
391
- GRPC_ERROR_CREATE_FROM_STATIC_STRING("Channel reaches max age");
392
- grpc_channel_element* elem =
393
- grpc_channel_stack_element(chand->channel_stack, 0);
394
- elem->filter->start_transport_op(elem, op);
395
- } else if (error != GRPC_ERROR_CANCELLED) {
396
- GRPC_LOG_IF_ERROR("force_close_max_age_channel", error);
397
- }
398
- GRPC_CHANNEL_STACK_UNREF(chand->channel_stack, "max_age max_age_grace_timer");
399
- }
400
-
401
- /* A random jitter of +/-10% will be added to MAX_CONNECTION_AGE to spread out
402
- connection storms. Note that the MAX_CONNECTION_AGE option without jitter
403
- would not create connection storms by itself, but if there happened to be a
404
- connection storm it could cause it to repeat at a fixed period. */
405
- static grpc_core::Duration
406
- add_random_max_connection_age_jitter_and_convert_to_duration(int value) {
407
- /* generate a random number between 1 - MAX_CONNECTION_AGE_JITTER and
408
- 1 + MAX_CONNECTION_AGE_JITTER */
409
- double multiplier = rand() * MAX_CONNECTION_AGE_JITTER * 2.0 / RAND_MAX +
410
- 1.0 - MAX_CONNECTION_AGE_JITTER;
411
- double result = multiplier * value;
412
- /* INT_MAX - 0.5 converts the value to float, so that result will not be
413
- cast to int implicitly before the comparison. */
414
- return result > (static_cast<double>(
415
- grpc_core::Duration::Infinity().millis())) -
416
- 0.5
417
- ? grpc_core::Duration::Infinity()
418
- : grpc_core::Duration::Milliseconds(result);
419
- }
420
-
421
- /* Constructor for call_data. */
422
- static grpc_error_handle max_age_init_call_elem(
423
- grpc_call_element* elem, const grpc_call_element_args* /*args*/) {
424
- channel_data* chand = static_cast<channel_data*>(elem->channel_data);
425
- increase_call_count(chand);
426
- return GRPC_ERROR_NONE;
427
- }
428
-
429
- /* Destructor for call_data. */
430
- static void max_age_destroy_call_elem(
431
- grpc_call_element* elem, const grpc_call_final_info* /*final_info*/,
432
- grpc_closure* /*ignored*/) {
433
- channel_data* chand = static_cast<channel_data*>(elem->channel_data);
434
- decrease_call_count(chand);
435
- }
436
-
437
- /* Constructor for channel_data. */
438
- static grpc_error_handle max_age_init_channel_elem(
439
- grpc_channel_element* elem, grpc_channel_element_args* args) {
440
- channel_data* chand = static_cast<channel_data*>(elem->channel_data);
441
- new (chand) channel_data();
442
- chand->channel_stack = args->channel_stack;
443
- chand->max_connection_age =
444
- add_random_max_connection_age_jitter_and_convert_to_duration(
445
- DEFAULT_MAX_CONNECTION_AGE_MS);
446
- chand->max_connection_age_grace =
447
- DEFAULT_MAX_CONNECTION_AGE_GRACE_MS == INT_MAX
448
- ? grpc_core::Duration::Infinity()
449
- : grpc_core::Duration::Milliseconds(
450
- DEFAULT_MAX_CONNECTION_AGE_GRACE_MS);
451
- chand->max_connection_idle =
452
- DEFAULT_MAX_CONNECTION_IDLE_MS == INT_MAX
453
- ? grpc_core::Duration::Infinity()
454
- : grpc_core::Duration::Milliseconds(DEFAULT_MAX_CONNECTION_IDLE_MS);
455
- chand->idle_state = MAX_IDLE_STATE_INIT;
456
- gpr_atm_no_barrier_store(&chand->last_enter_idle_time_millis, GPR_ATM_MIN);
457
- for (size_t i = 0; i < args->channel_args->num_args; ++i) {
458
- if (0 == strcmp(args->channel_args->args[i].key,
459
- GRPC_ARG_MAX_CONNECTION_AGE_MS)) {
460
- const int value = grpc_channel_arg_get_integer(
461
- &args->channel_args->args[i], MAX_CONNECTION_AGE_INTEGER_OPTIONS);
462
- chand->max_connection_age =
463
- add_random_max_connection_age_jitter_and_convert_to_duration(value);
464
- } else if (0 == strcmp(args->channel_args->args[i].key,
465
- GRPC_ARG_MAX_CONNECTION_AGE_GRACE_MS)) {
466
- const int value = grpc_channel_arg_get_integer(
467
- &args->channel_args->args[i],
468
- {DEFAULT_MAX_CONNECTION_AGE_GRACE_MS, 0, INT_MAX});
469
- chand->max_connection_age_grace =
470
- value == INT_MAX ? grpc_core::Duration::Infinity()
471
- : grpc_core::Duration::Milliseconds(value);
472
- } else if (0 == strcmp(args->channel_args->args[i].key,
473
- GRPC_ARG_MAX_CONNECTION_IDLE_MS)) {
474
- const int value = grpc_channel_arg_get_integer(
475
- &args->channel_args->args[i], MAX_CONNECTION_IDLE_INTEGER_OPTIONS);
476
- chand->max_connection_idle =
477
- value == INT_MAX ? grpc_core::Duration::Infinity()
478
- : grpc_core::Duration::Milliseconds(value);
479
- }
480
- }
481
- GRPC_CLOSURE_INIT(&chand->max_idle_timer_cb, max_idle_timer_cb, chand,
482
- grpc_schedule_on_exec_ctx);
483
- GRPC_CLOSURE_INIT(&chand->close_max_age_channel, close_max_age_channel, chand,
484
- grpc_schedule_on_exec_ctx);
485
- GRPC_CLOSURE_INIT(&chand->force_close_max_age_channel,
486
- force_close_max_age_channel, chand,
487
- grpc_schedule_on_exec_ctx);
488
- GRPC_CLOSURE_INIT(&chand->start_max_idle_timer_after_init,
489
- start_max_idle_timer_after_init, chand,
490
- grpc_schedule_on_exec_ctx);
491
- GRPC_CLOSURE_INIT(&chand->start_max_age_timer_after_init,
492
- start_max_age_timer_after_init, chand,
493
- grpc_schedule_on_exec_ctx);
494
- GRPC_CLOSURE_INIT(&chand->start_max_age_grace_timer_after_goaway_op,
495
- start_max_age_grace_timer_after_goaway_op, chand,
496
- grpc_schedule_on_exec_ctx);
497
-
498
- if (chand->max_connection_age != grpc_core::Duration::Infinity()) {
499
- /* When the channel reaches its max age, we send down an op with
500
- goaway_error set. However, we can't send down any ops until after the
501
- channel stack is fully initialized. If we start the timer here, we have
502
- no guarantee that the timer won't pop before channel stack initialization
503
- is finished. To avoid that problem, we create a closure to start the
504
- timer, and we schedule that closure to be run after call stack
505
- initialization is done. */
506
- GRPC_CHANNEL_STACK_REF(chand->channel_stack,
507
- "max_age start_max_age_timer_after_init");
508
- grpc_core::ExecCtx::Run(DEBUG_LOCATION,
509
- &chand->start_max_age_timer_after_init,
510
- GRPC_ERROR_NONE);
511
- }
512
-
513
- /* Initialize the number of calls as 1, so that the max_idle_timer will not
514
- start until start_max_idle_timer_after_init is invoked. */
515
- gpr_atm_rel_store(&chand->call_count, 1);
516
- if (chand->max_connection_idle != grpc_core::Duration::Infinity()) {
517
- GRPC_CHANNEL_STACK_REF(chand->channel_stack,
518
- "max_age start_max_idle_timer_after_init");
519
- grpc_core::ExecCtx::Run(DEBUG_LOCATION,
520
- &chand->start_max_idle_timer_after_init,
521
- GRPC_ERROR_NONE);
522
- }
523
- return GRPC_ERROR_NONE;
524
- }
525
-
526
- /* Destructor for channel_data. */
527
- static void max_age_destroy_channel_elem(grpc_channel_element* elem) {
528
- channel_data* chand = static_cast<channel_data*>(elem->channel_data);
529
- chand->~channel_data();
530
- }
531
-
532
- const grpc_channel_filter grpc_max_age_filter = {
533
- grpc_call_next_op,
534
- nullptr,
535
- grpc_channel_next_op,
536
- 0, /* sizeof_call_data */
537
- max_age_init_call_elem,
538
- grpc_call_stack_ignore_set_pollset_or_pollset_set,
539
- max_age_destroy_call_elem,
540
- sizeof(channel_data),
541
- max_age_init_channel_elem,
542
- max_age_destroy_channel_elem,
543
- grpc_channel_next_get_info,
544
- "max_age"};
545
-
546
- namespace grpc_core {
547
- void RegisterMaxAgeFilter(CoreConfiguration::Builder* builder) {
548
- builder->channel_init()->RegisterStage(
549
- GRPC_SERVER_CHANNEL, GRPC_CHANNEL_INIT_BUILTIN_PRIORITY,
550
- [](ChannelStackBuilder* builder) {
551
- const grpc_channel_args* channel_args = builder->channel_args();
552
- bool enable = grpc_channel_arg_get_integer(
553
- grpc_channel_args_find(
554
- channel_args, GRPC_ARG_MAX_CONNECTION_AGE_MS),
555
- MAX_CONNECTION_AGE_INTEGER_OPTIONS) != INT_MAX ||
556
- grpc_channel_arg_get_integer(
557
- grpc_channel_args_find(
558
- channel_args, GRPC_ARG_MAX_CONNECTION_IDLE_MS),
559
- MAX_CONNECTION_IDLE_INTEGER_OPTIONS) != INT_MAX;
560
- if (enable) {
561
- builder->PrependFilter(&grpc_max_age_filter, nullptr);
562
- }
563
- return true;
564
- });
565
- }
566
- } // namespace grpc_core
@@ -1,26 +0,0 @@
1
- //
2
- // Copyright 2017 gRPC authors.
3
- //
4
- // Licensed under the Apache License, Version 2.0 (the "License");
5
- // you may not use this file except in compliance with the License.
6
- // You may obtain a copy of the License at
7
- //
8
- // http://www.apache.org/licenses/LICENSE-2.0
9
- //
10
- // Unless required by applicable law or agreed to in writing, software
11
- // distributed under the License is distributed on an "AS IS" BASIS,
12
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- // See the License for the specific language governing permissions and
14
- // limitations under the License.
15
- //
16
-
17
- #ifndef GRPC_CORE_EXT_FILTERS_MAX_AGE_MAX_AGE_FILTER_H
18
- #define GRPC_CORE_EXT_FILTERS_MAX_AGE_MAX_AGE_FILTER_H
19
-
20
- #include <grpc/support/port_platform.h>
21
-
22
- #include "src/core/lib/channel/channel_stack.h"
23
-
24
- extern const grpc_channel_filter grpc_max_age_filter;
25
-
26
- #endif /* GRPC_CORE_EXT_FILTERS_MAX_AGE_MAX_AGE_FILTER_H */