grpc 1.26.0 → 1.28.0

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 (829) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +1699 -1482
  3. data/etc/roots.pem +44 -0
  4. data/include/grpc/grpc_security.h +37 -15
  5. data/include/grpc/grpc_security_constants.h +27 -0
  6. data/include/grpc/impl/codegen/grpc_types.h +19 -0
  7. data/include/grpc/impl/codegen/port_platform.h +8 -1
  8. data/include/grpc/impl/codegen/sync.h +5 -3
  9. data/include/grpc/impl/codegen/sync_abseil.h +36 -0
  10. data/include/grpc/module.modulemap +3 -0
  11. data/{src/core/lib/json/json_common.h → include/grpc/support/sync_abseil.h} +7 -15
  12. data/src/core/ext/filters/client_channel/client_channel.cc +74 -32
  13. data/src/core/ext/filters/client_channel/client_channel_channelz.cc +31 -47
  14. data/src/core/ext/filters/client_channel/client_channel_channelz.h +1 -3
  15. data/src/core/ext/filters/client_channel/http_connect_handshaker.cc +1 -1
  16. data/src/core/ext/filters/client_channel/http_proxy.cc +8 -5
  17. data/src/core/ext/filters/client_channel/lb_policy.cc +4 -3
  18. data/src/core/ext/filters/client_channel/lb_policy/child_policy_handler.cc +291 -0
  19. data/src/core/ext/filters/client_channel/lb_policy/child_policy_handler.h +83 -0
  20. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +224 -367
  21. data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc +88 -121
  22. data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h +28 -57
  23. data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +18 -21
  24. data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +9 -13
  25. data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +85 -83
  26. data/src/core/ext/filters/client_channel/lb_policy/xds/xds.cc +623 -767
  27. data/src/core/ext/filters/client_channel/lb_policy_factory.h +3 -3
  28. data/src/core/ext/filters/client_channel/lb_policy_registry.cc +43 -75
  29. data/src/core/ext/filters/client_channel/lb_policy_registry.h +1 -1
  30. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +57 -70
  31. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_libuv.cc +1 -1
  32. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +1 -1
  33. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +1 -1
  34. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +3 -3
  35. data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +2 -2
  36. data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc +1 -1
  37. data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +3 -3
  38. data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +31 -7
  39. data/src/core/ext/filters/client_channel/resolver_result_parsing.cc +228 -286
  40. data/src/core/ext/filters/client_channel/resolver_result_parsing.h +2 -2
  41. data/src/core/ext/filters/client_channel/resolving_lb_policy.cc +37 -176
  42. data/src/core/ext/filters/client_channel/resolving_lb_policy.h +7 -11
  43. data/src/core/ext/filters/client_channel/service_config.cc +91 -160
  44. data/src/core/ext/filters/client_channel/service_config.h +14 -21
  45. data/src/core/ext/filters/client_channel/xds/xds_api.cc +1426 -229
  46. data/src/core/ext/filters/client_channel/xds/xds_api.h +214 -115
  47. data/src/core/ext/filters/client_channel/xds/xds_bootstrap.cc +236 -339
  48. data/src/core/ext/filters/client_channel/xds/xds_bootstrap.h +32 -45
  49. data/src/core/ext/filters/client_channel/xds/xds_channel.h +3 -1
  50. data/src/core/ext/filters/client_channel/xds/xds_channel_secure.cc +14 -9
  51. data/src/core/ext/filters/client_channel/xds/xds_client.cc +986 -252
  52. data/src/core/ext/filters/client_channel/xds/xds_client.h +84 -36
  53. data/src/core/ext/filters/client_channel/xds/xds_client_stats.cc +53 -131
  54. data/src/core/ext/filters/client_channel/xds/xds_client_stats.h +119 -152
  55. data/src/core/ext/filters/message_size/message_size_filter.cc +32 -35
  56. data/src/core/ext/filters/message_size/message_size_filter.h +1 -1
  57. data/src/core/ext/transport/chttp2/server/chttp2_server.cc +3 -6
  58. data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +6 -8
  59. data/src/core/ext/transport/chttp2/transport/writing.cc +1 -1
  60. data/src/core/ext/transport/inproc/inproc_transport.cc +22 -42
  61. data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.c +17 -0
  62. data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.h +30 -0
  63. data/src/core/ext/upb-generated/envoy/annotations/resource.upb.c +27 -0
  64. data/src/core/ext/upb-generated/envoy/annotations/resource.upb.h +54 -0
  65. data/src/core/ext/upb-generated/envoy/api/v2/auth/cert.upb.c +46 -21
  66. data/src/core/ext/upb-generated/envoy/api/v2/auth/cert.upb.h +116 -29
  67. data/src/core/ext/upb-generated/envoy/api/v2/cds.upb.c +4 -362
  68. data/src/core/ext/upb-generated/envoy/api/v2/cds.upb.h +14 -1337
  69. data/src/core/ext/upb-generated/envoy/api/v2/cluster.upb.c +390 -0
  70. data/src/core/ext/upb-generated/envoy/api/v2/cluster.upb.h +1411 -0
  71. data/src/core/ext/upb-generated/envoy/api/v2/cluster/circuit_breaker.upb.c +29 -8
  72. data/src/core/ext/upb-generated/envoy/api/v2/cluster/circuit_breaker.upb.h +60 -0
  73. data/src/core/ext/upb-generated/envoy/api/v2/cluster/filter.upb.c +1 -0
  74. data/src/core/ext/upb-generated/envoy/api/v2/cluster/outlier_detection.upb.c +1 -0
  75. data/src/core/ext/upb-generated/envoy/api/v2/core/address.upb.c +5 -3
  76. data/src/core/ext/upb-generated/envoy/api/v2/core/address.upb.h +6 -2
  77. data/src/core/ext/upb-generated/envoy/api/v2/core/base.upb.c +48 -5
  78. data/src/core/ext/upb-generated/envoy/api/v2/core/base.upb.h +154 -4
  79. data/src/core/ext/upb-generated/envoy/api/v2/core/config_source.upb.c +19 -15
  80. data/src/core/ext/upb-generated/envoy/api/v2/core/config_source.upb.h +46 -32
  81. data/src/core/ext/upb-generated/envoy/api/v2/core/grpc_service.upb.c +26 -4
  82. data/src/core/ext/upb-generated/envoy/api/v2/core/grpc_service.upb.h +70 -0
  83. data/src/core/ext/upb-generated/envoy/api/v2/core/health_check.upb.c +42 -25
  84. data/src/core/ext/upb-generated/envoy/api/v2/core/health_check.upb.h +83 -25
  85. data/src/core/ext/upb-generated/envoy/api/v2/core/http_uri.upb.c +1 -0
  86. data/src/core/ext/upb-generated/envoy/api/v2/core/protocol.upb.c +43 -7
  87. data/src/core/ext/upb-generated/envoy/api/v2/core/protocol.upb.h +115 -0
  88. data/src/core/ext/upb-generated/envoy/api/v2/discovery.upb.c +1 -0
  89. data/src/core/ext/upb-generated/envoy/api/v2/eds.upb.c +7 -68
  90. data/src/core/ext/upb-generated/envoy/api/v2/eds.upb.h +14 -201
  91. data/src/core/ext/upb-generated/envoy/api/v2/endpoint.upb.c +91 -0
  92. data/src/core/ext/upb-generated/envoy/api/v2/endpoint.upb.h +240 -0
  93. data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint.upb.c +1 -71
  94. data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint.upb.h +3 -228
  95. data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint_components.upb.c +88 -0
  96. data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint_components.upb.h +258 -0
  97. data/src/core/ext/upb-generated/envoy/api/v2/endpoint/load_report.upb.c +1 -0
  98. data/src/core/ext/upb-generated/envoy/api/v2/lds.upb.c +30 -0
  99. data/src/core/ext/upb-generated/envoy/api/v2/lds.upb.h +53 -0
  100. data/src/core/ext/upb-generated/envoy/api/v2/listener.upb.c +104 -0
  101. data/src/core/ext/upb-generated/envoy/api/v2/listener.upb.h +383 -0
  102. data/src/core/ext/upb-generated/envoy/api/v2/listener/listener.upb.c +17 -0
  103. data/src/core/ext/upb-generated/envoy/api/v2/listener/listener.upb.h +33 -0
  104. data/src/core/ext/upb-generated/envoy/api/v2/listener/listener_components.upb.c +144 -0
  105. data/src/core/ext/upb-generated/envoy/api/v2/listener/listener_components.upb.h +527 -0
  106. data/src/core/ext/upb-generated/envoy/api/v2/listener/udp_listener_config.upb.c +42 -0
  107. data/src/core/ext/upb-generated/envoy/api/v2/listener/udp_listener_config.upb.h +112 -0
  108. data/src/core/ext/upb-generated/envoy/api/v2/rds.upb.c +29 -0
  109. data/src/core/ext/upb-generated/envoy/api/v2/rds.upb.h +53 -0
  110. data/src/core/ext/upb-generated/envoy/api/v2/route.upb.c +62 -0
  111. data/src/core/ext/upb-generated/envoy/api/v2/route.upb.h +199 -0
  112. data/src/core/ext/upb-generated/envoy/api/v2/route/route.upb.c +17 -0
  113. data/src/core/ext/upb-generated/envoy/api/v2/route/route.upb.h +33 -0
  114. data/src/core/ext/upb-generated/envoy/api/v2/route/route_components.upb.c +793 -0
  115. data/src/core/ext/upb-generated/envoy/api/v2/route/route_components.upb.h +2936 -0
  116. data/src/core/ext/upb-generated/envoy/api/v2/scoped_route.upb.c +58 -0
  117. data/src/core/ext/upb-generated/envoy/api/v2/scoped_route.upb.h +134 -0
  118. data/src/core/ext/upb-generated/envoy/api/v2/srds.upb.c +27 -0
  119. data/src/core/ext/upb-generated/envoy/api/v2/srds.upb.h +53 -0
  120. data/src/core/ext/upb-generated/envoy/config/filter/accesslog/v2/accesslog.upb.c +227 -0
  121. data/src/core/ext/upb-generated/envoy/config/filter/accesslog/v2/accesslog.upb.h +725 -0
  122. data/src/core/ext/upb-generated/envoy/config/filter/network/http_connection_manager/v2/http_connection_manager.upb.c +296 -0
  123. data/src/core/ext/upb-generated/envoy/config/filter/network/http_connection_manager/v2/http_connection_manager.upb.h +1072 -0
  124. data/src/core/ext/upb-generated/envoy/config/listener/v2/api_listener.upb.c +32 -0
  125. data/src/core/ext/upb-generated/envoy/config/listener/v2/api_listener.upb.h +65 -0
  126. data/src/core/ext/upb-generated/envoy/type/matcher/regex.upb.c +47 -0
  127. data/src/core/ext/upb-generated/envoy/type/matcher/regex.upb.h +108 -0
  128. data/src/core/ext/upb-generated/envoy/type/matcher/string.upb.c +52 -0
  129. data/src/core/ext/upb-generated/envoy/type/matcher/string.upb.h +133 -0
  130. data/src/core/ext/upb-generated/envoy/type/metadata/v2/metadata.upb.c +87 -0
  131. data/src/core/ext/upb-generated/envoy/type/metadata/v2/metadata.upb.h +258 -0
  132. data/src/core/ext/upb-generated/envoy/type/range.upb.c +11 -0
  133. data/src/core/ext/upb-generated/envoy/type/range.upb.h +27 -0
  134. data/src/core/ext/upb-generated/envoy/type/semantic_version.upb.c +28 -0
  135. data/src/core/ext/upb-generated/envoy/type/semantic_version.upb.h +62 -0
  136. data/src/core/ext/upb-generated/envoy/type/tracing/v2/custom_tag.upb.c +88 -0
  137. data/src/core/ext/upb-generated/envoy/type/tracing/v2/custom_tag.upb.h +249 -0
  138. data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.c +30 -27
  139. data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.h +64 -52
  140. data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.c +13 -5
  141. data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.h +34 -0
  142. data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.c +48 -0
  143. data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.h +104 -0
  144. data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.c +17 -0
  145. data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.h +30 -0
  146. data/src/core/ext/upb-generated/validate/validate.upb.c +38 -34
  147. data/src/core/ext/upb-generated/validate/validate.upb.h +129 -99
  148. data/src/core/lib/channel/channel_trace.cc +32 -41
  149. data/src/core/lib/channel/channel_trace.h +3 -3
  150. data/src/core/lib/channel/channelz.cc +158 -248
  151. data/src/core/lib/channel/channelz.h +17 -10
  152. data/src/core/lib/channel/channelz_registry.cc +47 -74
  153. data/src/core/lib/channel/channelz_registry.h +4 -4
  154. data/src/core/lib/gpr/sync_abseil.cc +114 -0
  155. data/src/core/lib/gpr/sync_posix.cc +8 -5
  156. data/src/core/lib/gpr/sync_windows.cc +4 -2
  157. data/src/core/lib/gpr/time_precise.cc +1 -1
  158. data/src/core/lib/gprpp/host_port.cc +1 -1
  159. data/src/core/lib/gprpp/inlined_vector.h +1 -210
  160. data/src/core/lib/gprpp/memory.h +2 -6
  161. data/src/core/lib/gprpp/optional.h +6 -21
  162. data/src/core/lib/gprpp/string_view.h +5 -110
  163. data/src/core/lib/gprpp/sync.h +9 -0
  164. data/src/core/lib/iomgr/buffer_list.cc +36 -35
  165. data/src/core/lib/iomgr/error.h +4 -4
  166. data/src/core/lib/iomgr/ev_epollex_linux.cc +12 -4
  167. data/src/core/lib/iomgr/executor.cc +1 -1
  168. data/src/core/lib/iomgr/fork_posix.cc +4 -0
  169. data/src/core/lib/iomgr/load_file.cc +1 -0
  170. data/src/core/lib/iomgr/poller/eventmanager_libuv.cc +87 -0
  171. data/src/core/lib/iomgr/poller/eventmanager_libuv.h +88 -0
  172. data/src/core/lib/iomgr/socket_utils_common_posix.cc +14 -0
  173. data/src/core/lib/iomgr/socket_utils_posix.h +12 -0
  174. data/src/core/lib/iomgr/tcp_client_posix.cc +17 -17
  175. data/src/core/lib/iomgr/tcp_client_posix.h +6 -6
  176. data/src/core/lib/iomgr/tcp_custom.h +3 -0
  177. data/src/core/lib/iomgr/tcp_posix.cc +608 -56
  178. data/src/core/lib/iomgr/tcp_server_custom.cc +15 -2
  179. data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +8 -0
  180. data/src/core/lib/iomgr/work_serializer.cc +155 -0
  181. data/src/core/lib/iomgr/work_serializer.h +65 -0
  182. data/src/core/lib/json/json.h +208 -68
  183. data/src/core/lib/json/json_reader.cc +511 -319
  184. data/src/core/lib/json/json_writer.cc +201 -110
  185. data/src/core/lib/security/credentials/alts/check_gcp_environment.cc +1 -1
  186. data/src/core/lib/security/credentials/composite/composite_credentials.cc +7 -0
  187. data/src/core/lib/security/credentials/composite/composite_credentials.h +5 -1
  188. data/src/core/lib/security/credentials/credentials.h +10 -1
  189. data/src/core/lib/security/credentials/fake/fake_credentials.h +2 -1
  190. data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +10 -8
  191. data/src/core/lib/security/credentials/jwt/json_token.cc +26 -56
  192. data/src/core/lib/security/credentials/jwt/json_token.h +2 -1
  193. data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +8 -18
  194. data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +149 -159
  195. data/src/core/lib/security/credentials/jwt/jwt_verifier.h +2 -3
  196. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +38 -35
  197. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +1 -1
  198. data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +6 -4
  199. data/src/core/lib/security/credentials/plugin/plugin_credentials.h +2 -1
  200. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +20 -0
  201. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +9 -0
  202. data/src/core/lib/security/credentials/tls/{spiffe_credentials.cc → tls_credentials.cc} +23 -24
  203. data/src/core/lib/security/credentials/tls/{spiffe_credentials.h → tls_credentials.h} +9 -9
  204. data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +13 -0
  205. data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +22 -2
  206. data/src/core/lib/security/security_connector/load_system_roots_fallback.cc +2 -2
  207. data/src/core/lib/security/security_connector/load_system_roots_linux.cc +2 -2
  208. data/src/core/lib/security/security_connector/local/local_security_connector.cc +31 -6
  209. data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +3 -15
  210. data/src/core/lib/security/security_connector/ssl_utils.cc +48 -4
  211. data/src/core/lib/security/security_connector/ssl_utils.h +12 -1
  212. data/src/core/lib/security/security_connector/tls/{spiffe_security_connector.cc → tls_security_connector.cc} +106 -70
  213. data/src/core/lib/security/security_connector/tls/{spiffe_security_connector.h → tls_security_connector.h} +22 -19
  214. data/src/core/lib/security/transport/client_auth_filter.cc +33 -0
  215. data/src/core/lib/security/transport/security_handshaker.cc +2 -2
  216. data/src/core/lib/security/util/json_util.cc +22 -15
  217. data/src/core/lib/security/util/json_util.h +2 -2
  218. data/src/core/lib/surface/completion_queue.cc +22 -1
  219. data/src/core/lib/surface/version.cc +1 -1
  220. data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +1 -1
  221. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +12 -2
  222. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.h +1 -1
  223. data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +3 -3
  224. data/src/core/tsi/fake_transport_security.cc +7 -3
  225. data/src/core/tsi/fake_transport_security.h +2 -0
  226. data/src/core/tsi/grpc_shadow_boringssl.h +1333 -1319
  227. data/src/core/tsi/ssl/session_cache/ssl_session_boringssl.cc +1 -1
  228. data/src/core/tsi/ssl/session_cache/ssl_session_openssl.cc +1 -1
  229. data/src/core/tsi/ssl_transport_security.cc +145 -8
  230. data/src/core/tsi/ssl_transport_security.h +15 -1
  231. data/src/core/tsi/transport_security.cc +13 -0
  232. data/src/core/tsi/transport_security_grpc.cc +2 -2
  233. data/src/core/tsi/transport_security_grpc.h +2 -2
  234. data/src/core/tsi/transport_security_interface.h +12 -0
  235. data/src/ruby/bin/math_pb.rb +5 -5
  236. data/src/ruby/ext/grpc/rb_call_credentials.c +4 -1
  237. data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +2 -0
  238. data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +4 -1
  239. data/src/ruby/lib/grpc/version.rb +1 -1
  240. data/src/ruby/pb/grpc/health/v1/health_pb.rb +3 -3
  241. data/src/ruby/pb/src/proto/grpc/testing/empty_pb.rb +1 -1
  242. data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +23 -13
  243. data/third_party/abseil-cpp/absl/algorithm/algorithm.h +159 -0
  244. data/third_party/abseil-cpp/absl/base/attributes.h +621 -0
  245. data/third_party/abseil-cpp/absl/base/call_once.h +226 -0
  246. data/third_party/abseil-cpp/absl/base/casts.h +184 -0
  247. data/third_party/abseil-cpp/absl/base/config.h +671 -0
  248. data/third_party/abseil-cpp/absl/base/const_init.h +76 -0
  249. data/third_party/abseil-cpp/absl/base/dynamic_annotations.cc +129 -0
  250. data/third_party/abseil-cpp/absl/base/dynamic_annotations.h +389 -0
  251. data/third_party/abseil-cpp/absl/base/internal/atomic_hook.h +200 -0
  252. data/third_party/abseil-cpp/absl/base/internal/bits.h +218 -0
  253. data/third_party/abseil-cpp/absl/base/internal/cycleclock.cc +107 -0
  254. data/third_party/abseil-cpp/absl/base/internal/cycleclock.h +94 -0
  255. data/third_party/abseil-cpp/absl/base/internal/endian.h +266 -0
  256. data/third_party/abseil-cpp/absl/base/internal/errno_saver.h +43 -0
  257. data/third_party/abseil-cpp/absl/base/internal/hide_ptr.h +51 -0
  258. data/third_party/abseil-cpp/absl/base/internal/identity.h +37 -0
  259. data/third_party/abseil-cpp/absl/base/internal/inline_variable.h +107 -0
  260. data/third_party/abseil-cpp/absl/base/internal/invoke.h +187 -0
  261. data/third_party/abseil-cpp/absl/base/internal/low_level_scheduling.h +107 -0
  262. data/third_party/abseil-cpp/absl/base/internal/per_thread_tls.h +52 -0
  263. data/third_party/abseil-cpp/absl/base/internal/raw_logging.cc +240 -0
  264. data/third_party/abseil-cpp/absl/base/internal/raw_logging.h +183 -0
  265. data/third_party/abseil-cpp/absl/base/internal/scheduling_mode.h +58 -0
  266. data/third_party/abseil-cpp/absl/base/internal/spinlock.cc +233 -0
  267. data/third_party/abseil-cpp/absl/base/internal/spinlock.h +243 -0
  268. data/third_party/abseil-cpp/absl/base/internal/spinlock_akaros.inc +35 -0
  269. data/third_party/abseil-cpp/absl/base/internal/spinlock_linux.inc +66 -0
  270. data/third_party/abseil-cpp/absl/base/internal/spinlock_posix.inc +46 -0
  271. data/third_party/abseil-cpp/absl/base/internal/spinlock_wait.cc +81 -0
  272. data/third_party/abseil-cpp/absl/base/internal/spinlock_wait.h +93 -0
  273. data/third_party/abseil-cpp/absl/base/internal/spinlock_win32.inc +37 -0
  274. data/third_party/abseil-cpp/absl/base/internal/sysinfo.cc +416 -0
  275. data/third_party/abseil-cpp/absl/base/internal/sysinfo.h +66 -0
  276. data/third_party/abseil-cpp/absl/base/internal/thread_annotations.h +271 -0
  277. data/third_party/abseil-cpp/absl/base/internal/thread_identity.cc +152 -0
  278. data/third_party/abseil-cpp/absl/base/internal/thread_identity.h +259 -0
  279. data/third_party/abseil-cpp/absl/base/internal/throw_delegate.cc +108 -0
  280. data/third_party/abseil-cpp/absl/base/internal/throw_delegate.h +75 -0
  281. data/third_party/abseil-cpp/absl/base/internal/tsan_mutex_interface.h +66 -0
  282. data/third_party/abseil-cpp/absl/base/internal/unaligned_access.h +158 -0
  283. data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc +140 -0
  284. data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.h +124 -0
  285. data/third_party/abseil-cpp/absl/base/log_severity.cc +27 -0
  286. data/third_party/abseil-cpp/absl/base/log_severity.h +121 -0
  287. data/third_party/abseil-cpp/absl/base/macros.h +220 -0
  288. data/third_party/abseil-cpp/absl/base/optimization.h +181 -0
  289. data/third_party/abseil-cpp/absl/base/options.h +211 -0
  290. data/third_party/abseil-cpp/absl/base/policy_checks.h +111 -0
  291. data/third_party/abseil-cpp/absl/base/port.h +26 -0
  292. data/third_party/abseil-cpp/absl/base/thread_annotations.h +280 -0
  293. data/third_party/abseil-cpp/absl/container/inlined_vector.h +848 -0
  294. data/third_party/abseil-cpp/absl/container/internal/compressed_tuple.h +265 -0
  295. data/third_party/abseil-cpp/absl/container/internal/inlined_vector.h +892 -0
  296. data/third_party/abseil-cpp/absl/memory/memory.h +695 -0
  297. data/third_party/abseil-cpp/absl/meta/type_traits.h +759 -0
  298. data/third_party/abseil-cpp/absl/numeric/int128.cc +404 -0
  299. data/third_party/abseil-cpp/absl/numeric/int128.h +1091 -0
  300. data/third_party/abseil-cpp/absl/numeric/int128_have_intrinsic.inc +302 -0
  301. data/third_party/abseil-cpp/absl/numeric/int128_no_intrinsic.inc +308 -0
  302. data/third_party/abseil-cpp/absl/strings/ascii.cc +200 -0
  303. data/third_party/abseil-cpp/absl/strings/ascii.h +242 -0
  304. data/third_party/abseil-cpp/absl/strings/charconv.cc +984 -0
  305. data/third_party/abseil-cpp/absl/strings/charconv.h +119 -0
  306. data/third_party/abseil-cpp/absl/strings/escaping.cc +949 -0
  307. data/third_party/abseil-cpp/absl/strings/escaping.h +164 -0
  308. data/third_party/abseil-cpp/absl/strings/internal/char_map.h +156 -0
  309. data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.cc +359 -0
  310. data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.h +423 -0
  311. data/third_party/abseil-cpp/absl/strings/internal/charconv_parse.cc +504 -0
  312. data/third_party/abseil-cpp/absl/strings/internal/charconv_parse.h +99 -0
  313. data/third_party/abseil-cpp/absl/strings/internal/escaping.cc +180 -0
  314. data/third_party/abseil-cpp/absl/strings/internal/escaping.h +58 -0
  315. data/third_party/abseil-cpp/absl/strings/internal/memutil.cc +112 -0
  316. data/third_party/abseil-cpp/absl/strings/internal/memutil.h +148 -0
  317. data/third_party/abseil-cpp/absl/strings/internal/ostringstream.cc +36 -0
  318. data/third_party/abseil-cpp/absl/strings/internal/ostringstream.h +89 -0
  319. data/third_party/abseil-cpp/absl/strings/internal/resize_uninitialized.h +73 -0
  320. data/third_party/abseil-cpp/absl/strings/internal/stl_type_traits.h +248 -0
  321. data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.cc +388 -0
  322. data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.h +432 -0
  323. data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.cc +245 -0
  324. data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.h +209 -0
  325. data/third_party/abseil-cpp/absl/strings/internal/str_format/checker.h +326 -0
  326. data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.cc +51 -0
  327. data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.h +415 -0
  328. data/third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.cc +493 -0
  329. data/third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.h +23 -0
  330. data/third_party/abseil-cpp/absl/strings/internal/str_format/output.cc +72 -0
  331. data/third_party/abseil-cpp/absl/strings/internal/str_format/output.h +104 -0
  332. data/third_party/abseil-cpp/absl/strings/internal/str_format/parser.cc +334 -0
  333. data/third_party/abseil-cpp/absl/strings/internal/str_format/parser.h +333 -0
  334. data/third_party/abseil-cpp/absl/strings/internal/str_join_internal.h +314 -0
  335. data/third_party/abseil-cpp/absl/strings/internal/str_split_internal.h +455 -0
  336. data/third_party/abseil-cpp/absl/strings/internal/utf8.cc +53 -0
  337. data/third_party/abseil-cpp/absl/strings/internal/utf8.h +50 -0
  338. data/third_party/abseil-cpp/absl/strings/match.cc +40 -0
  339. data/third_party/abseil-cpp/absl/strings/match.h +90 -0
  340. data/third_party/abseil-cpp/absl/strings/numbers.cc +965 -0
  341. data/third_party/abseil-cpp/absl/strings/numbers.h +266 -0
  342. data/third_party/abseil-cpp/absl/strings/str_cat.cc +246 -0
  343. data/third_party/abseil-cpp/absl/strings/str_cat.h +408 -0
  344. data/third_party/abseil-cpp/absl/strings/str_format.h +537 -0
  345. data/third_party/abseil-cpp/absl/strings/str_join.h +293 -0
  346. data/third_party/abseil-cpp/absl/strings/str_replace.cc +82 -0
  347. data/third_party/abseil-cpp/absl/strings/str_replace.h +219 -0
  348. data/third_party/abseil-cpp/absl/strings/str_split.cc +139 -0
  349. data/third_party/abseil-cpp/absl/strings/str_split.h +513 -0
  350. data/third_party/abseil-cpp/absl/strings/string_view.cc +235 -0
  351. data/third_party/abseil-cpp/absl/strings/string_view.h +622 -0
  352. data/third_party/abseil-cpp/absl/strings/strip.h +91 -0
  353. data/third_party/abseil-cpp/absl/strings/substitute.cc +171 -0
  354. data/third_party/abseil-cpp/absl/strings/substitute.h +693 -0
  355. data/third_party/abseil-cpp/absl/types/bad_optional_access.cc +48 -0
  356. data/third_party/abseil-cpp/absl/types/bad_optional_access.h +78 -0
  357. data/third_party/abseil-cpp/absl/types/internal/optional.h +396 -0
  358. data/third_party/abseil-cpp/absl/types/internal/span.h +128 -0
  359. data/third_party/abseil-cpp/absl/types/optional.h +776 -0
  360. data/third_party/abseil-cpp/absl/types/span.h +713 -0
  361. data/third_party/abseil-cpp/absl/utility/utility.h +350 -0
  362. data/{src/boringssl → third_party/boringssl-with-bazel}/err_data.c +0 -0
  363. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/a_bitstr.c +0 -0
  364. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/a_bool.c +0 -0
  365. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/a_d2i_fp.c +0 -0
  366. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/a_dup.c +0 -0
  367. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/a_enum.c +0 -0
  368. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/a_gentm.c +0 -0
  369. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/a_i2d_fp.c +0 -0
  370. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/a_int.c +0 -0
  371. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/a_mbstr.c +0 -0
  372. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/a_object.c +0 -0
  373. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/a_octet.c +0 -0
  374. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/a_print.c +0 -0
  375. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/a_strnid.c +0 -0
  376. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/a_time.c +3 -4
  377. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/a_type.c +0 -0
  378. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/a_utctm.c +0 -0
  379. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/a_utf8.c +0 -0
  380. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/asn1_lib.c +0 -0
  381. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/asn1_locl.h +0 -0
  382. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/asn1_par.c +0 -0
  383. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/asn_pack.c +0 -0
  384. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/f_enum.c +0 -0
  385. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/f_int.c +0 -0
  386. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/f_string.c +0 -0
  387. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/tasn_dec.c +0 -0
  388. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/tasn_enc.c +0 -0
  389. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/tasn_fre.c +0 -0
  390. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/tasn_new.c +0 -0
  391. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/tasn_typ.c +0 -0
  392. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/tasn_utl.c +0 -0
  393. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/time_support.c +0 -0
  394. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/base64/base64.c +0 -0
  395. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/bio/bio.c +0 -0
  396. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/bio/bio_mem.c +0 -0
  397. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/bio/connect.c +3 -4
  398. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/bio/fd.c +0 -1
  399. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/bio/file.c +5 -6
  400. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/bio/hexdump.c +0 -0
  401. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/bio/internal.h +0 -0
  402. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/bio/pair.c +0 -1
  403. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/bio/printf.c +0 -0
  404. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/bio/socket.c +0 -0
  405. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/bio/socket_helper.c +0 -0
  406. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/bn_extra/bn_asn1.c +0 -0
  407. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/bn_extra/convert.c +0 -0
  408. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/buf/buf.c +10 -69
  409. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/bytestring/asn1_compat.c +0 -0
  410. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/bytestring/ber.c +0 -0
  411. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/bytestring/cbb.c +41 -2
  412. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/bytestring/cbs.c +60 -3
  413. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/bytestring/internal.h +0 -0
  414. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/bytestring/unicode.c +0 -0
  415. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/chacha/chacha.c +0 -0
  416. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/chacha/internal.h +0 -0
  417. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cipher_extra/cipher_extra.c +0 -0
  418. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cipher_extra/derive_key.c +0 -0
  419. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cipher_extra/e_aesccm.c +0 -0
  420. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cipher_extra/e_aesctrhmac.c +0 -0
  421. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cipher_extra/e_aesgcmsiv.c +8 -0
  422. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cipher_extra/e_chacha20poly1305.c +0 -0
  423. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cipher_extra/e_null.c +0 -0
  424. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cipher_extra/e_rc2.c +0 -0
  425. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cipher_extra/e_rc4.c +0 -0
  426. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cipher_extra/e_tls.c +0 -0
  427. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cipher_extra/internal.h +0 -0
  428. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cipher_extra/tls_cbc.c +0 -0
  429. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cmac/cmac.c +0 -0
  430. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/conf/conf.c +0 -0
  431. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/conf/conf_def.h +0 -0
  432. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/conf/internal.h +0 -0
  433. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cpu-aarch64-fuchsia.c +0 -0
  434. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cpu-aarch64-linux.c +0 -0
  435. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cpu-arm-linux.c +0 -1
  436. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cpu-arm-linux.h +0 -0
  437. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cpu-arm.c +0 -0
  438. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cpu-intel.c +0 -0
  439. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cpu-ppc64le.c +0 -0
  440. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/crypto.c +0 -0
  441. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/curve25519/spake25519.c +0 -0
  442. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/dh/check.c +3 -3
  443. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/dh/dh.c +1 -2
  444. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/dh/dh_asn1.c +0 -0
  445. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/dh/params.c +0 -0
  446. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/digest_extra/digest_extra.c +0 -0
  447. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/dsa/dsa.c +0 -0
  448. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/dsa/dsa_asn1.c +0 -0
  449. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/ec_extra/ec_asn1.c +0 -0
  450. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/ec_extra/ec_derive.c +2 -3
  451. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/ecdh_extra/ecdh_extra.c +0 -0
  452. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/ecdsa_extra/ecdsa_asn1.c +0 -0
  453. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/engine/engine.c +0 -0
  454. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/err/err.c +6 -6
  455. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/err/internal.h +0 -0
  456. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/evp/digestsign.c +0 -0
  457. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/evp/evp.c +0 -0
  458. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/evp/evp_asn1.c +0 -0
  459. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/evp/evp_ctx.c +0 -0
  460. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/evp/internal.h +0 -0
  461. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/evp/p_dsa_asn1.c +0 -0
  462. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/evp/p_ec.c +0 -1
  463. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/evp/p_ec_asn1.c +0 -0
  464. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/evp/p_ed25519.c +0 -0
  465. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/evp/p_ed25519_asn1.c +0 -0
  466. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/evp/p_rsa.c +14 -2
  467. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/evp/p_rsa_asn1.c +0 -0
  468. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/evp/p_x25519.c +0 -0
  469. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/evp/p_x25519_asn1.c +1 -2
  470. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/evp/pbkdf.c +0 -0
  471. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/evp/print.c +0 -0
  472. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/evp/scrypt.c +0 -0
  473. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/evp/sign.c +0 -0
  474. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/ex_data.c +0 -0
  475. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes.c +108 -0
  476. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes_nohw.c +1282 -0
  477. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/aes/internal.h +5 -7
  478. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/aes/key_wrap.c +0 -0
  479. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/aes/mode_wrappers.c +0 -2
  480. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bcm.c +2 -0
  481. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/add.c +0 -0
  482. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/asm/x86_64-gcc.c +0 -0
  483. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/bn.c +0 -0
  484. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/bytes.c +0 -0
  485. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/cmp.c +0 -0
  486. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/ctx.c +0 -0
  487. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/div.c +0 -0
  488. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/div_extra.c +0 -0
  489. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/exponentiation.c +0 -0
  490. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/gcd.c +0 -0
  491. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/gcd_extra.c +0 -0
  492. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/generic.c +0 -0
  493. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/internal.h +0 -0
  494. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/jacobi.c +0 -0
  495. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/montgomery.c +0 -0
  496. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/montgomery_inv.c +0 -0
  497. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/mul.c +0 -0
  498. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/prime.c +11 -12
  499. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/random.c +0 -0
  500. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/rsaz_exp.c +0 -0
  501. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/rsaz_exp.h +0 -0
  502. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/shift.c +0 -0
  503. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/sqrt.c +0 -0
  504. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/cipher/aead.c +0 -0
  505. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/cipher/cipher.c +0 -0
  506. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/cipher/e_aes.c +3 -5
  507. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/cipher/e_des.c +0 -0
  508. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/cipher/internal.h +0 -0
  509. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/delocate.h +0 -0
  510. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/des/des.c +0 -0
  511. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/des/internal.h +0 -0
  512. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/digest/digest.c +0 -0
  513. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/digest/digests.c +0 -0
  514. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/digest/internal.h +0 -0
  515. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/digest/md32_common.h +0 -0
  516. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/ec/ec.c +0 -0
  517. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/ec/ec_key.c +1 -1
  518. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/ec/ec_montgomery.c +0 -0
  519. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/ec/felem.c +0 -0
  520. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/ec/internal.h +0 -0
  521. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/ec/oct.c +0 -0
  522. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/ec/p224-64.c +0 -0
  523. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/ec/p256-x86_64-table.h +0 -0
  524. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/ec/p256-x86_64.c +0 -0
  525. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/ec/p256-x86_64.h +0 -0
  526. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/ec/scalar.c +0 -0
  527. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/ec/simple.c +0 -0
  528. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/ec/simple_mul.c +0 -0
  529. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/ec/util.c +0 -0
  530. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/ec/wnaf.c +0 -0
  531. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/ecdh/ecdh.c +0 -0
  532. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/ecdsa/ecdsa.c +0 -0
  533. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/fips_shared_support.c +0 -0
  534. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/hmac/hmac.c +0 -0
  535. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/is_fips.c +0 -0
  536. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/md4/md4.c +0 -0
  537. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/md5/internal.h +0 -0
  538. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/md5/md5.c +0 -0
  539. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/modes/cbc.c +0 -0
  540. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/modes/cfb.c +0 -0
  541. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/modes/ctr.c +0 -0
  542. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/modes/gcm.c +45 -193
  543. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/gcm_nohw.c +304 -0
  544. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/modes/internal.h +8 -18
  545. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/modes/ofb.c +0 -0
  546. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/modes/polyval.c +0 -0
  547. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/rand/ctrdrbg.c +0 -0
  548. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/rand/internal.h +0 -0
  549. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/rand/rand.c +0 -0
  550. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/rand/urandom.c +0 -0
  551. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/rsa/blinding.c +0 -0
  552. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/rsa/internal.h +0 -0
  553. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/rsa/padding.c +0 -0
  554. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/rsa/rsa.c +7 -1
  555. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/rsa/rsa_impl.c +60 -51
  556. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/self_check/self_check.c +0 -0
  557. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/sha/internal.h +0 -0
  558. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/sha/sha1-altivec.c +0 -0
  559. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/sha/sha1.c +0 -0
  560. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/sha/sha256.c +0 -0
  561. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/sha/sha512.c +0 -0
  562. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/tls/internal.h +0 -0
  563. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/tls/kdf.c +0 -0
  564. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/hkdf/hkdf.c +0 -0
  565. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/hrss/hrss.c +210 -311
  566. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/hrss/internal.h +0 -1
  567. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/internal.h +21 -1
  568. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/lhash/lhash.c +0 -0
  569. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/mem.c +70 -0
  570. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/obj/obj.c +16 -21
  571. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/obj/obj_dat.h +27 -6
  572. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/obj/obj_xref.c +0 -0
  573. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/pem/pem_all.c +0 -0
  574. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/pem/pem_info.c +0 -1
  575. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/pem/pem_lib.c +7 -7
  576. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/pem/pem_oth.c +0 -1
  577. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/pem/pem_pk8.c +0 -1
  578. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/pem/pem_pkey.c +0 -1
  579. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/pem/pem_x509.c +0 -0
  580. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/pem/pem_xaux.c +0 -0
  581. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/pkcs7/internal.h +0 -0
  582. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/pkcs7/pkcs7.c +0 -0
  583. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/pkcs7/pkcs7_x509.c +1 -1
  584. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/pkcs8/internal.h +0 -0
  585. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/pkcs8/p5_pbev2.c +0 -0
  586. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/pkcs8/pkcs8.c +0 -0
  587. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/pkcs8/pkcs8_x509.c +0 -0
  588. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/poly1305/internal.h +0 -0
  589. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/poly1305/poly1305.c +2 -2
  590. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/poly1305/poly1305_arm.c +21 -20
  591. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/poly1305/poly1305_vec.c +34 -17
  592. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/pool/internal.h +0 -0
  593. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/pool/pool.c +1 -2
  594. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/rand_extra/deterministic.c +0 -0
  595. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/rand_extra/forkunsafe.c +0 -0
  596. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/rand_extra/fuchsia.c +0 -0
  597. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/rand_extra/rand_extra.c +0 -0
  598. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/rand_extra/windows.c +0 -0
  599. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/rc4/rc4.c +0 -0
  600. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/refcount_c11.c +0 -0
  601. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/refcount_lock.c +0 -0
  602. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/rsa_extra/rsa_asn1.c +0 -0
  603. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/rsa_extra/rsa_print.c +0 -0
  604. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/siphash/siphash.c +3 -1
  605. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/stack/stack.c +0 -0
  606. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/thread.c +0 -0
  607. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/thread_none.c +0 -0
  608. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/thread_pthread.c +0 -0
  609. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/thread_win.c +0 -0
  610. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/a_digest.c +0 -0
  611. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/a_sign.c +0 -0
  612. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/a_strex.c +0 -0
  613. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/a_verify.c +0 -1
  614. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/algorithm.c +0 -0
  615. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/asn1_gen.c +0 -0
  616. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/by_dir.c +1 -1
  617. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/by_file.c +0 -1
  618. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/charmap.h +0 -0
  619. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/i2d_pr.c +0 -0
  620. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/internal.h +0 -0
  621. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/rsa_pss.c +0 -0
  622. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/t_crl.c +0 -0
  623. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/t_req.c +0 -0
  624. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/t_x509.c +0 -0
  625. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/t_x509a.c +0 -0
  626. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/vpm_int.h +0 -0
  627. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509.c +0 -0
  628. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509_att.c +0 -0
  629. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509_cmp.c +0 -1
  630. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509_d2.c +0 -0
  631. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509_def.c +0 -0
  632. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509_ext.c +0 -0
  633. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509_lu.c +0 -0
  634. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509_obj.c +1 -1
  635. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509_r2x.c +0 -1
  636. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509_req.c +0 -1
  637. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509_set.c +0 -0
  638. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509_trs.c +1 -2
  639. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509_txt.c +0 -0
  640. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509_v3.c +0 -0
  641. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509_vfy.c +0 -1
  642. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509_vpm.c +3 -4
  643. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509cset.c +0 -0
  644. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509name.c +0 -0
  645. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509rset.c +0 -0
  646. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509spki.c +0 -0
  647. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_algor.c +0 -0
  648. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_all.c +0 -1
  649. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_attrib.c +0 -0
  650. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_crl.c +0 -0
  651. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_exten.c +0 -0
  652. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_info.c +0 -0
  653. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_name.c +0 -0
  654. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_pkey.c +0 -0
  655. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_pubkey.c +0 -0
  656. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_req.c +0 -0
  657. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_sig.c +0 -0
  658. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_spki.c +0 -0
  659. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_val.c +0 -0
  660. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_x509.c +0 -0
  661. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_x509a.c +0 -0
  662. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/ext_dat.h +0 -0
  663. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/internal.h +0 -0
  664. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/pcy_cache.c +0 -0
  665. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/pcy_data.c +0 -0
  666. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/pcy_int.h +0 -0
  667. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/pcy_lib.c +0 -0
  668. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/pcy_map.c +0 -0
  669. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/pcy_node.c +0 -0
  670. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/pcy_tree.c +0 -0
  671. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_akey.c +0 -0
  672. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_akeya.c +0 -0
  673. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_alt.c +3 -3
  674. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_bcons.c +0 -0
  675. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_bitst.c +0 -0
  676. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_conf.c +0 -0
  677. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_cpols.c +0 -0
  678. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_crld.c +0 -0
  679. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_enum.c +2 -2
  680. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_extku.c +0 -0
  681. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_genn.c +0 -0
  682. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_ia5.c +0 -0
  683. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_info.c +4 -5
  684. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_int.c +0 -0
  685. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_lib.c +0 -0
  686. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_ncons.c +0 -0
  687. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_ocsp.c +0 -0
  688. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_pci.c +0 -0
  689. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_pcia.c +0 -0
  690. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_pcons.c +0 -0
  691. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_pku.c +0 -0
  692. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_pmaps.c +0 -0
  693. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_prn.c +0 -0
  694. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_purp.c +2 -3
  695. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_skey.c +0 -0
  696. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_sxnet.c +0 -0
  697. data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_utl.c +11 -12
  698. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/aead.h +0 -0
  699. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/aes.h +0 -0
  700. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/arm_arch.h +0 -0
  701. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/asn1.h +0 -0
  702. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/asn1_mac.h +0 -0
  703. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/asn1t.h +0 -0
  704. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/base.h +0 -0
  705. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/base64.h +0 -0
  706. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/bio.h +0 -0
  707. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/blowfish.h +0 -0
  708. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/bn.h +32 -20
  709. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/buf.h +9 -9
  710. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/buffer.h +0 -0
  711. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/bytestring.h +34 -0
  712. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/cast.h +0 -0
  713. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/chacha.h +0 -0
  714. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/cipher.h +0 -0
  715. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/cmac.h +0 -0
  716. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/conf.h +0 -0
  717. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/cpu.h +0 -0
  718. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/crypto.h +0 -0
  719. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/curve25519.h +0 -0
  720. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/des.h +0 -0
  721. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/dh.h +0 -0
  722. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/digest.h +0 -0
  723. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/dsa.h +0 -0
  724. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/dtls1.h +0 -0
  725. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/e_os2.h +0 -0
  726. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/ec.h +11 -4
  727. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/ec_key.h +4 -2
  728. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/ecdh.h +0 -0
  729. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/ecdsa.h +0 -0
  730. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/engine.h +0 -0
  731. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/err.h +11 -9
  732. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/evp.h +20 -0
  733. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/ex_data.h +0 -0
  734. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/hkdf.h +0 -0
  735. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/hmac.h +0 -0
  736. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/hrss.h +0 -0
  737. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/is_boringssl.h +0 -0
  738. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/lhash.h +0 -0
  739. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/md4.h +0 -0
  740. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/md5.h +0 -0
  741. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/mem.h +17 -2
  742. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/nid.h +9 -0
  743. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/obj.h +0 -0
  744. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/obj_mac.h +0 -0
  745. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/objects.h +0 -0
  746. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/opensslconf.h +0 -0
  747. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/opensslv.h +0 -0
  748. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/ossl_typ.h +0 -0
  749. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/pem.h +0 -0
  750. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/pkcs12.h +0 -0
  751. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/pkcs7.h +0 -0
  752. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/pkcs8.h +0 -0
  753. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/poly1305.h +5 -7
  754. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/pool.h +0 -0
  755. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/rand.h +0 -0
  756. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/rc4.h +0 -0
  757. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/ripemd.h +0 -0
  758. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/rsa.h +0 -0
  759. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/safestack.h +0 -0
  760. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/sha.h +0 -0
  761. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/siphash.h +0 -0
  762. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/span.h +0 -0
  763. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/srtp.h +0 -0
  764. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/ssl.h +10 -20
  765. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/ssl3.h +0 -0
  766. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/stack.h +0 -0
  767. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/thread.h +0 -0
  768. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/tls1.h +0 -3
  769. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/type_check.h +0 -0
  770. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/x509.h +0 -0
  771. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/x509_vfy.h +0 -0
  772. data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/x509v3.h +0 -0
  773. data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/bio_ssl.cc +0 -0
  774. data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/d1_both.cc +0 -1
  775. data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/d1_lib.cc +0 -0
  776. data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/d1_pkt.cc +0 -1
  777. data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/d1_srtp.cc +0 -0
  778. data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/dtls_method.cc +0 -1
  779. data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/dtls_record.cc +0 -0
  780. data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/handoff.cc +126 -29
  781. data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/handshake.cc +5 -4
  782. data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/handshake_client.cc +24 -13
  783. data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/handshake_server.cc +1 -5
  784. data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/internal.h +32 -26
  785. data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/s3_both.cc +0 -0
  786. data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/s3_lib.cc +2 -3
  787. data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/s3_pkt.cc +0 -1
  788. data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/ssl_aead_ctx.cc +0 -0
  789. data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/ssl_asn1.cc +1 -2
  790. data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/ssl_buffer.cc +34 -15
  791. data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/ssl_cert.cc +0 -1
  792. data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/ssl_cipher.cc +0 -1
  793. data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/ssl_file.cc +0 -0
  794. data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/ssl_key_share.cc +0 -0
  795. data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/ssl_lib.cc +13 -14
  796. data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/ssl_privkey.cc +0 -0
  797. data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/ssl_session.cc +2 -1
  798. data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/ssl_stat.cc +0 -0
  799. data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/ssl_transcript.cc +0 -0
  800. data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/ssl_versions.cc +1 -1
  801. data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/ssl_x509.cc +0 -0
  802. data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/t1_enc.cc +0 -0
  803. data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/t1_lib.cc +11 -171
  804. data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/tls13_both.cc +0 -0
  805. data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/tls13_client.cc +3 -4
  806. data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/tls13_enc.cc +5 -1
  807. data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/tls13_server.cc +78 -101
  808. data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/tls_method.cc +1 -1
  809. data/third_party/{boringssl → boringssl-with-bazel/src}/ssl/tls_record.cc +7 -2
  810. data/third_party/{boringssl → boringssl-with-bazel/src}/third_party/fiat/curve25519.c +0 -0
  811. data/third_party/{boringssl → boringssl-with-bazel/src}/third_party/fiat/curve25519_32.h +0 -0
  812. data/third_party/{boringssl → boringssl-with-bazel/src}/third_party/fiat/curve25519_64.h +0 -0
  813. data/third_party/{boringssl → boringssl-with-bazel/src}/third_party/fiat/curve25519_tables.h +0 -0
  814. data/third_party/{boringssl → boringssl-with-bazel/src}/third_party/fiat/internal.h +0 -0
  815. data/third_party/{boringssl → boringssl-with-bazel/src}/third_party/fiat/p256.c +0 -0
  816. data/third_party/{boringssl → boringssl-with-bazel/src}/third_party/fiat/p256_32.h +0 -0
  817. data/third_party/{boringssl → boringssl-with-bazel/src}/third_party/fiat/p256_64.h +0 -0
  818. data/third_party/upb/upb/decode.c +4 -0
  819. data/third_party/upb/upb/port.c +0 -1
  820. data/third_party/upb/upb/port_def.inc +1 -3
  821. data/third_party/upb/upb/table.c +2 -1
  822. metadata +680 -505
  823. data/src/core/lib/iomgr/logical_thread.cc +0 -103
  824. data/src/core/lib/iomgr/logical_thread.h +0 -52
  825. data/src/core/lib/json/json.cc +0 -94
  826. data/src/core/lib/json/json_reader.h +0 -146
  827. data/src/core/lib/json/json_string.cc +0 -367
  828. data/src/core/lib/json/json_writer.h +0 -84
  829. data/third_party/boringssl/crypto/fipsmodule/aes/aes.c +0 -860
@@ -0,0 +1,17 @@
1
+ /* This file was generated by upbc (the upb compiler) from the input
2
+ * file:
3
+ *
4
+ * envoy/api/v2/route/route.proto
5
+ *
6
+ * Do not edit -- your changes will be discarded when the file is
7
+ * regenerated. */
8
+
9
+ #include <stddef.h>
10
+ #include "upb/msg.h"
11
+ #include "envoy/api/v2/route/route.upb.h"
12
+ #include "envoy/api/v2/route/route_components.upb.h"
13
+
14
+ #include "upb/port_def.inc"
15
+
16
+ #include "upb/port_undef.inc"
17
+
@@ -0,0 +1,33 @@
1
+ /* This file was generated by upbc (the upb compiler) from the input
2
+ * file:
3
+ *
4
+ * envoy/api/v2/route/route.proto
5
+ *
6
+ * Do not edit -- your changes will be discarded when the file is
7
+ * regenerated. */
8
+
9
+ #ifndef ENVOY_API_V2_ROUTE_ROUTE_PROTO_UPB_H_
10
+ #define ENVOY_API_V2_ROUTE_ROUTE_PROTO_UPB_H_
11
+
12
+ #include "upb/generated_util.h"
13
+ #include "upb/msg.h"
14
+ #include "upb/decode.h"
15
+ #include "upb/encode.h"
16
+
17
+ /* Public Imports. */
18
+ #include "envoy/api/v2/route/route_components.upb.h"
19
+
20
+ #include "upb/port_def.inc"
21
+
22
+ #ifdef __cplusplus
23
+ extern "C" {
24
+ #endif
25
+
26
+
27
+ #ifdef __cplusplus
28
+ } /* extern "C" */
29
+ #endif
30
+
31
+ #include "upb/port_undef.inc"
32
+
33
+ #endif /* ENVOY_API_V2_ROUTE_ROUTE_PROTO_UPB_H_ */
@@ -0,0 +1,793 @@
1
+ /* This file was generated by upbc (the upb compiler) from the input
2
+ * file:
3
+ *
4
+ * envoy/api/v2/route/route_components.proto
5
+ *
6
+ * Do not edit -- your changes will be discarded when the file is
7
+ * regenerated. */
8
+
9
+ #include <stddef.h>
10
+ #include "upb/msg.h"
11
+ #include "envoy/api/v2/route/route_components.upb.h"
12
+ #include "envoy/api/v2/core/base.upb.h"
13
+ #include "envoy/type/matcher/regex.upb.h"
14
+ #include "envoy/type/matcher/string.upb.h"
15
+ #include "envoy/type/percent.upb.h"
16
+ #include "envoy/type/range.upb.h"
17
+ #include "envoy/type/tracing/v2/custom_tag.upb.h"
18
+ #include "google/protobuf/any.upb.h"
19
+ #include "google/protobuf/duration.upb.h"
20
+ #include "google/protobuf/struct.upb.h"
21
+ #include "google/protobuf/wrappers.upb.h"
22
+ #include "envoy/annotations/deprecation.upb.h"
23
+ #include "udpa/annotations/migrate.upb.h"
24
+ #include "validate/validate.upb.h"
25
+
26
+ #include "upb/port_def.inc"
27
+
28
+ static const upb_msglayout *const envoy_api_v2_route_VirtualHost_submsgs[11] = {
29
+ &envoy_api_v2_core_HeaderValueOption_msginit,
30
+ &envoy_api_v2_route_CorsPolicy_msginit,
31
+ &envoy_api_v2_route_HedgePolicy_msginit,
32
+ &envoy_api_v2_route_RateLimit_msginit,
33
+ &envoy_api_v2_route_RetryPolicy_msginit,
34
+ &envoy_api_v2_route_Route_msginit,
35
+ &envoy_api_v2_route_VirtualCluster_msginit,
36
+ &envoy_api_v2_route_VirtualHost_PerFilterConfigEntry_msginit,
37
+ &envoy_api_v2_route_VirtualHost_TypedPerFilterConfigEntry_msginit,
38
+ &google_protobuf_UInt32Value_msginit,
39
+ };
40
+
41
+ static const upb_msglayout_field envoy_api_v2_route_VirtualHost__fields[17] = {
42
+ {1, UPB_SIZE(12, 16), 0, 0, 9, 1},
43
+ {2, UPB_SIZE(36, 64), 0, 0, 9, 3},
44
+ {3, UPB_SIZE(40, 72), 0, 5, 11, 3},
45
+ {4, UPB_SIZE(0, 0), 0, 0, 14, 1},
46
+ {5, UPB_SIZE(44, 80), 0, 6, 11, 3},
47
+ {6, UPB_SIZE(48, 88), 0, 3, 11, 3},
48
+ {7, UPB_SIZE(52, 96), 0, 0, 11, 3},
49
+ {8, UPB_SIZE(20, 32), 0, 1, 11, 1},
50
+ {10, UPB_SIZE(56, 104), 0, 0, 11, 3},
51
+ {11, UPB_SIZE(60, 112), 0, 0, 9, 3},
52
+ {12, UPB_SIZE(64, 120), 0, 7, 11, 3},
53
+ {13, UPB_SIZE(68, 128), 0, 0, 9, 3},
54
+ {14, UPB_SIZE(8, 8), 0, 0, 8, 1},
55
+ {15, UPB_SIZE(72, 136), 0, 8, 11, 3},
56
+ {16, UPB_SIZE(24, 40), 0, 4, 11, 1},
57
+ {17, UPB_SIZE(28, 48), 0, 2, 11, 1},
58
+ {18, UPB_SIZE(32, 56), 0, 9, 11, 1},
59
+ };
60
+
61
+ const upb_msglayout envoy_api_v2_route_VirtualHost_msginit = {
62
+ &envoy_api_v2_route_VirtualHost_submsgs[0],
63
+ &envoy_api_v2_route_VirtualHost__fields[0],
64
+ UPB_SIZE(80, 144), 17, false,
65
+ };
66
+
67
+ static const upb_msglayout *const envoy_api_v2_route_VirtualHost_PerFilterConfigEntry_submsgs[1] = {
68
+ &google_protobuf_Struct_msginit,
69
+ };
70
+
71
+ static const upb_msglayout_field envoy_api_v2_route_VirtualHost_PerFilterConfigEntry__fields[2] = {
72
+ {1, UPB_SIZE(0, 0), 0, 0, 9, 1},
73
+ {2, UPB_SIZE(8, 16), 0, 0, 11, 1},
74
+ };
75
+
76
+ const upb_msglayout envoy_api_v2_route_VirtualHost_PerFilterConfigEntry_msginit = {
77
+ &envoy_api_v2_route_VirtualHost_PerFilterConfigEntry_submsgs[0],
78
+ &envoy_api_v2_route_VirtualHost_PerFilterConfigEntry__fields[0],
79
+ UPB_SIZE(16, 32), 2, false,
80
+ };
81
+
82
+ static const upb_msglayout *const envoy_api_v2_route_VirtualHost_TypedPerFilterConfigEntry_submsgs[1] = {
83
+ &google_protobuf_Any_msginit,
84
+ };
85
+
86
+ static const upb_msglayout_field envoy_api_v2_route_VirtualHost_TypedPerFilterConfigEntry__fields[2] = {
87
+ {1, UPB_SIZE(0, 0), 0, 0, 9, 1},
88
+ {2, UPB_SIZE(8, 16), 0, 0, 11, 1},
89
+ };
90
+
91
+ const upb_msglayout envoy_api_v2_route_VirtualHost_TypedPerFilterConfigEntry_msginit = {
92
+ &envoy_api_v2_route_VirtualHost_TypedPerFilterConfigEntry_submsgs[0],
93
+ &envoy_api_v2_route_VirtualHost_TypedPerFilterConfigEntry__fields[0],
94
+ UPB_SIZE(16, 32), 2, false,
95
+ };
96
+
97
+ static const upb_msglayout *const envoy_api_v2_route_FilterAction_submsgs[1] = {
98
+ &google_protobuf_Any_msginit,
99
+ };
100
+
101
+ static const upb_msglayout_field envoy_api_v2_route_FilterAction__fields[1] = {
102
+ {1, UPB_SIZE(0, 0), 0, 0, 11, 1},
103
+ };
104
+
105
+ const upb_msglayout envoy_api_v2_route_FilterAction_msginit = {
106
+ &envoy_api_v2_route_FilterAction_submsgs[0],
107
+ &envoy_api_v2_route_FilterAction__fields[0],
108
+ UPB_SIZE(4, 8), 1, false,
109
+ };
110
+
111
+ static const upb_msglayout *const envoy_api_v2_route_Route_submsgs[13] = {
112
+ &envoy_api_v2_core_HeaderValueOption_msginit,
113
+ &envoy_api_v2_core_Metadata_msginit,
114
+ &envoy_api_v2_route_Decorator_msginit,
115
+ &envoy_api_v2_route_DirectResponseAction_msginit,
116
+ &envoy_api_v2_route_FilterAction_msginit,
117
+ &envoy_api_v2_route_RedirectAction_msginit,
118
+ &envoy_api_v2_route_Route_PerFilterConfigEntry_msginit,
119
+ &envoy_api_v2_route_Route_TypedPerFilterConfigEntry_msginit,
120
+ &envoy_api_v2_route_RouteAction_msginit,
121
+ &envoy_api_v2_route_RouteMatch_msginit,
122
+ &envoy_api_v2_route_Tracing_msginit,
123
+ &google_protobuf_UInt32Value_msginit,
124
+ };
125
+
126
+ static const upb_msglayout_field envoy_api_v2_route_Route__fields[16] = {
127
+ {1, UPB_SIZE(8, 16), 0, 9, 11, 1},
128
+ {2, UPB_SIZE(52, 104), UPB_SIZE(-57, -113), 8, 11, 1},
129
+ {3, UPB_SIZE(52, 104), UPB_SIZE(-57, -113), 5, 11, 1},
130
+ {4, UPB_SIZE(12, 24), 0, 1, 11, 1},
131
+ {5, UPB_SIZE(16, 32), 0, 2, 11, 1},
132
+ {7, UPB_SIZE(52, 104), UPB_SIZE(-57, -113), 3, 11, 1},
133
+ {8, UPB_SIZE(28, 56), 0, 6, 11, 3},
134
+ {9, UPB_SIZE(32, 64), 0, 0, 11, 3},
135
+ {10, UPB_SIZE(36, 72), 0, 0, 11, 3},
136
+ {11, UPB_SIZE(40, 80), 0, 0, 9, 3},
137
+ {12, UPB_SIZE(44, 88), 0, 0, 9, 3},
138
+ {13, UPB_SIZE(48, 96), 0, 7, 11, 3},
139
+ {14, UPB_SIZE(0, 0), 0, 0, 9, 1},
140
+ {15, UPB_SIZE(20, 40), 0, 10, 11, 1},
141
+ {16, UPB_SIZE(24, 48), 0, 11, 11, 1},
142
+ {17, UPB_SIZE(52, 104), UPB_SIZE(-57, -113), 4, 11, 1},
143
+ };
144
+
145
+ const upb_msglayout envoy_api_v2_route_Route_msginit = {
146
+ &envoy_api_v2_route_Route_submsgs[0],
147
+ &envoy_api_v2_route_Route__fields[0],
148
+ UPB_SIZE(64, 128), 16, false,
149
+ };
150
+
151
+ static const upb_msglayout *const envoy_api_v2_route_Route_PerFilterConfigEntry_submsgs[1] = {
152
+ &google_protobuf_Struct_msginit,
153
+ };
154
+
155
+ static const upb_msglayout_field envoy_api_v2_route_Route_PerFilterConfigEntry__fields[2] = {
156
+ {1, UPB_SIZE(0, 0), 0, 0, 9, 1},
157
+ {2, UPB_SIZE(8, 16), 0, 0, 11, 1},
158
+ };
159
+
160
+ const upb_msglayout envoy_api_v2_route_Route_PerFilterConfigEntry_msginit = {
161
+ &envoy_api_v2_route_Route_PerFilterConfigEntry_submsgs[0],
162
+ &envoy_api_v2_route_Route_PerFilterConfigEntry__fields[0],
163
+ UPB_SIZE(16, 32), 2, false,
164
+ };
165
+
166
+ static const upb_msglayout *const envoy_api_v2_route_Route_TypedPerFilterConfigEntry_submsgs[1] = {
167
+ &google_protobuf_Any_msginit,
168
+ };
169
+
170
+ static const upb_msglayout_field envoy_api_v2_route_Route_TypedPerFilterConfigEntry__fields[2] = {
171
+ {1, UPB_SIZE(0, 0), 0, 0, 9, 1},
172
+ {2, UPB_SIZE(8, 16), 0, 0, 11, 1},
173
+ };
174
+
175
+ const upb_msglayout envoy_api_v2_route_Route_TypedPerFilterConfigEntry_msginit = {
176
+ &envoy_api_v2_route_Route_TypedPerFilterConfigEntry_submsgs[0],
177
+ &envoy_api_v2_route_Route_TypedPerFilterConfigEntry__fields[0],
178
+ UPB_SIZE(16, 32), 2, false,
179
+ };
180
+
181
+ static const upb_msglayout *const envoy_api_v2_route_WeightedCluster_submsgs[2] = {
182
+ &envoy_api_v2_route_WeightedCluster_ClusterWeight_msginit,
183
+ &google_protobuf_UInt32Value_msginit,
184
+ };
185
+
186
+ static const upb_msglayout_field envoy_api_v2_route_WeightedCluster__fields[3] = {
187
+ {1, UPB_SIZE(12, 24), 0, 0, 11, 3},
188
+ {2, UPB_SIZE(0, 0), 0, 0, 9, 1},
189
+ {3, UPB_SIZE(8, 16), 0, 1, 11, 1},
190
+ };
191
+
192
+ const upb_msglayout envoy_api_v2_route_WeightedCluster_msginit = {
193
+ &envoy_api_v2_route_WeightedCluster_submsgs[0],
194
+ &envoy_api_v2_route_WeightedCluster__fields[0],
195
+ UPB_SIZE(16, 32), 3, false,
196
+ };
197
+
198
+ static const upb_msglayout *const envoy_api_v2_route_WeightedCluster_ClusterWeight_submsgs[6] = {
199
+ &envoy_api_v2_core_HeaderValueOption_msginit,
200
+ &envoy_api_v2_core_Metadata_msginit,
201
+ &envoy_api_v2_route_WeightedCluster_ClusterWeight_PerFilterConfigEntry_msginit,
202
+ &envoy_api_v2_route_WeightedCluster_ClusterWeight_TypedPerFilterConfigEntry_msginit,
203
+ &google_protobuf_UInt32Value_msginit,
204
+ };
205
+
206
+ static const upb_msglayout_field envoy_api_v2_route_WeightedCluster_ClusterWeight__fields[9] = {
207
+ {1, UPB_SIZE(0, 0), 0, 0, 9, 1},
208
+ {2, UPB_SIZE(8, 16), 0, 4, 11, 1},
209
+ {3, UPB_SIZE(12, 24), 0, 1, 11, 1},
210
+ {4, UPB_SIZE(16, 32), 0, 0, 11, 3},
211
+ {5, UPB_SIZE(20, 40), 0, 0, 11, 3},
212
+ {6, UPB_SIZE(24, 48), 0, 0, 9, 3},
213
+ {8, UPB_SIZE(28, 56), 0, 2, 11, 3},
214
+ {9, UPB_SIZE(32, 64), 0, 0, 9, 3},
215
+ {10, UPB_SIZE(36, 72), 0, 3, 11, 3},
216
+ };
217
+
218
+ const upb_msglayout envoy_api_v2_route_WeightedCluster_ClusterWeight_msginit = {
219
+ &envoy_api_v2_route_WeightedCluster_ClusterWeight_submsgs[0],
220
+ &envoy_api_v2_route_WeightedCluster_ClusterWeight__fields[0],
221
+ UPB_SIZE(40, 80), 9, false,
222
+ };
223
+
224
+ static const upb_msglayout *const envoy_api_v2_route_WeightedCluster_ClusterWeight_PerFilterConfigEntry_submsgs[1] = {
225
+ &google_protobuf_Struct_msginit,
226
+ };
227
+
228
+ static const upb_msglayout_field envoy_api_v2_route_WeightedCluster_ClusterWeight_PerFilterConfigEntry__fields[2] = {
229
+ {1, UPB_SIZE(0, 0), 0, 0, 9, 1},
230
+ {2, UPB_SIZE(8, 16), 0, 0, 11, 1},
231
+ };
232
+
233
+ const upb_msglayout envoy_api_v2_route_WeightedCluster_ClusterWeight_PerFilterConfigEntry_msginit = {
234
+ &envoy_api_v2_route_WeightedCluster_ClusterWeight_PerFilterConfigEntry_submsgs[0],
235
+ &envoy_api_v2_route_WeightedCluster_ClusterWeight_PerFilterConfigEntry__fields[0],
236
+ UPB_SIZE(16, 32), 2, false,
237
+ };
238
+
239
+ static const upb_msglayout *const envoy_api_v2_route_WeightedCluster_ClusterWeight_TypedPerFilterConfigEntry_submsgs[1] = {
240
+ &google_protobuf_Any_msginit,
241
+ };
242
+
243
+ static const upb_msglayout_field envoy_api_v2_route_WeightedCluster_ClusterWeight_TypedPerFilterConfigEntry__fields[2] = {
244
+ {1, UPB_SIZE(0, 0), 0, 0, 9, 1},
245
+ {2, UPB_SIZE(8, 16), 0, 0, 11, 1},
246
+ };
247
+
248
+ const upb_msglayout envoy_api_v2_route_WeightedCluster_ClusterWeight_TypedPerFilterConfigEntry_msginit = {
249
+ &envoy_api_v2_route_WeightedCluster_ClusterWeight_TypedPerFilterConfigEntry_submsgs[0],
250
+ &envoy_api_v2_route_WeightedCluster_ClusterWeight_TypedPerFilterConfigEntry__fields[0],
251
+ UPB_SIZE(16, 32), 2, false,
252
+ };
253
+
254
+ static const upb_msglayout *const envoy_api_v2_route_RouteMatch_submsgs[7] = {
255
+ &envoy_api_v2_core_RuntimeFractionalPercent_msginit,
256
+ &envoy_api_v2_route_HeaderMatcher_msginit,
257
+ &envoy_api_v2_route_QueryParameterMatcher_msginit,
258
+ &envoy_api_v2_route_RouteMatch_GrpcRouteMatchOptions_msginit,
259
+ &envoy_api_v2_route_RouteMatch_TlsContextMatchOptions_msginit,
260
+ &envoy_type_matcher_RegexMatcher_msginit,
261
+ &google_protobuf_BoolValue_msginit,
262
+ };
263
+
264
+ static const upb_msglayout_field envoy_api_v2_route_RouteMatch__fields[10] = {
265
+ {1, UPB_SIZE(24, 48), UPB_SIZE(-33, -65), 0, 9, 1},
266
+ {2, UPB_SIZE(24, 48), UPB_SIZE(-33, -65), 0, 9, 1},
267
+ {3, UPB_SIZE(24, 48), UPB_SIZE(-33, -65), 0, 9, 1},
268
+ {4, UPB_SIZE(0, 0), 0, 6, 11, 1},
269
+ {6, UPB_SIZE(16, 32), 0, 1, 11, 3},
270
+ {7, UPB_SIZE(20, 40), 0, 2, 11, 3},
271
+ {8, UPB_SIZE(4, 8), 0, 3, 11, 1},
272
+ {9, UPB_SIZE(8, 16), 0, 0, 11, 1},
273
+ {10, UPB_SIZE(24, 48), UPB_SIZE(-33, -65), 5, 11, 1},
274
+ {11, UPB_SIZE(12, 24), 0, 4, 11, 1},
275
+ };
276
+
277
+ const upb_msglayout envoy_api_v2_route_RouteMatch_msginit = {
278
+ &envoy_api_v2_route_RouteMatch_submsgs[0],
279
+ &envoy_api_v2_route_RouteMatch__fields[0],
280
+ UPB_SIZE(40, 80), 10, false,
281
+ };
282
+
283
+ const upb_msglayout envoy_api_v2_route_RouteMatch_GrpcRouteMatchOptions_msginit = {
284
+ NULL,
285
+ NULL,
286
+ UPB_SIZE(0, 0), 0, false,
287
+ };
288
+
289
+ static const upb_msglayout *const envoy_api_v2_route_RouteMatch_TlsContextMatchOptions_submsgs[2] = {
290
+ &google_protobuf_BoolValue_msginit,
291
+ };
292
+
293
+ static const upb_msglayout_field envoy_api_v2_route_RouteMatch_TlsContextMatchOptions__fields[2] = {
294
+ {1, UPB_SIZE(0, 0), 0, 0, 11, 1},
295
+ {2, UPB_SIZE(4, 8), 0, 0, 11, 1},
296
+ };
297
+
298
+ const upb_msglayout envoy_api_v2_route_RouteMatch_TlsContextMatchOptions_msginit = {
299
+ &envoy_api_v2_route_RouteMatch_TlsContextMatchOptions_submsgs[0],
300
+ &envoy_api_v2_route_RouteMatch_TlsContextMatchOptions__fields[0],
301
+ UPB_SIZE(8, 16), 2, false,
302
+ };
303
+
304
+ static const upb_msglayout *const envoy_api_v2_route_CorsPolicy_submsgs[5] = {
305
+ &envoy_api_v2_core_RuntimeFractionalPercent_msginit,
306
+ &envoy_type_matcher_StringMatcher_msginit,
307
+ &google_protobuf_BoolValue_msginit,
308
+ };
309
+
310
+ static const upb_msglayout_field envoy_api_v2_route_CorsPolicy__fields[11] = {
311
+ {1, UPB_SIZE(40, 80), 0, 0, 9, 3},
312
+ {2, UPB_SIZE(0, 0), 0, 0, 9, 1},
313
+ {3, UPB_SIZE(8, 16), 0, 0, 9, 1},
314
+ {4, UPB_SIZE(16, 32), 0, 0, 9, 1},
315
+ {5, UPB_SIZE(24, 48), 0, 0, 9, 1},
316
+ {6, UPB_SIZE(32, 64), 0, 2, 11, 1},
317
+ {7, UPB_SIZE(52, 104), UPB_SIZE(-57, -113), 2, 11, 1},
318
+ {8, UPB_SIZE(44, 88), 0, 0, 9, 3},
319
+ {9, UPB_SIZE(52, 104), UPB_SIZE(-57, -113), 0, 11, 1},
320
+ {10, UPB_SIZE(36, 72), 0, 0, 11, 1},
321
+ {11, UPB_SIZE(48, 96), 0, 1, 11, 3},
322
+ };
323
+
324
+ const upb_msglayout envoy_api_v2_route_CorsPolicy_msginit = {
325
+ &envoy_api_v2_route_CorsPolicy_submsgs[0],
326
+ &envoy_api_v2_route_CorsPolicy__fields[0],
327
+ UPB_SIZE(64, 128), 11, false,
328
+ };
329
+
330
+ static const upb_msglayout *const envoy_api_v2_route_RouteAction_submsgs[17] = {
331
+ &envoy_api_v2_core_Metadata_msginit,
332
+ &envoy_api_v2_route_CorsPolicy_msginit,
333
+ &envoy_api_v2_route_HedgePolicy_msginit,
334
+ &envoy_api_v2_route_RateLimit_msginit,
335
+ &envoy_api_v2_route_RetryPolicy_msginit,
336
+ &envoy_api_v2_route_RouteAction_HashPolicy_msginit,
337
+ &envoy_api_v2_route_RouteAction_RequestMirrorPolicy_msginit,
338
+ &envoy_api_v2_route_RouteAction_UpgradeConfig_msginit,
339
+ &envoy_api_v2_route_WeightedCluster_msginit,
340
+ &google_protobuf_BoolValue_msginit,
341
+ &google_protobuf_Duration_msginit,
342
+ &google_protobuf_UInt32Value_msginit,
343
+ };
344
+
345
+ static const upb_msglayout_field envoy_api_v2_route_RouteAction__fields[25] = {
346
+ {1, UPB_SIZE(92, 160), UPB_SIZE(-101, -177), 0, 9, 1},
347
+ {2, UPB_SIZE(92, 160), UPB_SIZE(-101, -177), 0, 9, 1},
348
+ {3, UPB_SIZE(92, 160), UPB_SIZE(-101, -177), 8, 11, 1},
349
+ {4, UPB_SIZE(32, 40), 0, 0, 11, 1},
350
+ {5, UPB_SIZE(24, 24), 0, 0, 9, 1},
351
+ {6, UPB_SIZE(104, 184), UPB_SIZE(-113, -201), 0, 9, 1},
352
+ {7, UPB_SIZE(104, 184), UPB_SIZE(-113, -201), 9, 11, 1},
353
+ {8, UPB_SIZE(36, 48), 0, 10, 11, 1},
354
+ {9, UPB_SIZE(40, 56), 0, 4, 11, 1},
355
+ {10, UPB_SIZE(44, 64), 0, 6, 11, 1},
356
+ {11, UPB_SIZE(0, 0), 0, 0, 14, 1},
357
+ {13, UPB_SIZE(76, 128), 0, 3, 11, 3},
358
+ {14, UPB_SIZE(48, 72), 0, 9, 11, 1},
359
+ {15, UPB_SIZE(80, 136), 0, 5, 11, 3},
360
+ {17, UPB_SIZE(52, 80), 0, 1, 11, 1},
361
+ {20, UPB_SIZE(8, 8), 0, 0, 14, 1},
362
+ {23, UPB_SIZE(56, 88), 0, 10, 11, 1},
363
+ {24, UPB_SIZE(60, 96), 0, 10, 11, 1},
364
+ {25, UPB_SIZE(84, 144), 0, 7, 11, 3},
365
+ {26, UPB_SIZE(16, 16), 0, 0, 14, 1},
366
+ {27, UPB_SIZE(64, 104), 0, 2, 11, 1},
367
+ {28, UPB_SIZE(68, 112), 0, 10, 11, 1},
368
+ {29, UPB_SIZE(104, 184), UPB_SIZE(-113, -201), 0, 9, 1},
369
+ {30, UPB_SIZE(88, 152), 0, 6, 11, 3},
370
+ {31, UPB_SIZE(72, 120), 0, 11, 11, 1},
371
+ };
372
+
373
+ const upb_msglayout envoy_api_v2_route_RouteAction_msginit = {
374
+ &envoy_api_v2_route_RouteAction_submsgs[0],
375
+ &envoy_api_v2_route_RouteAction__fields[0],
376
+ UPB_SIZE(120, 208), 25, false,
377
+ };
378
+
379
+ static const upb_msglayout *const envoy_api_v2_route_RouteAction_RequestMirrorPolicy_submsgs[1] = {
380
+ &envoy_api_v2_core_RuntimeFractionalPercent_msginit,
381
+ };
382
+
383
+ static const upb_msglayout_field envoy_api_v2_route_RouteAction_RequestMirrorPolicy__fields[3] = {
384
+ {1, UPB_SIZE(0, 0), 0, 0, 9, 1},
385
+ {2, UPB_SIZE(8, 16), 0, 0, 9, 1},
386
+ {3, UPB_SIZE(16, 32), 0, 0, 11, 1},
387
+ };
388
+
389
+ const upb_msglayout envoy_api_v2_route_RouteAction_RequestMirrorPolicy_msginit = {
390
+ &envoy_api_v2_route_RouteAction_RequestMirrorPolicy_submsgs[0],
391
+ &envoy_api_v2_route_RouteAction_RequestMirrorPolicy__fields[0],
392
+ UPB_SIZE(24, 48), 3, false,
393
+ };
394
+
395
+ static const upb_msglayout *const envoy_api_v2_route_RouteAction_HashPolicy_submsgs[4] = {
396
+ &envoy_api_v2_route_RouteAction_HashPolicy_ConnectionProperties_msginit,
397
+ &envoy_api_v2_route_RouteAction_HashPolicy_Cookie_msginit,
398
+ &envoy_api_v2_route_RouteAction_HashPolicy_Header_msginit,
399
+ &envoy_api_v2_route_RouteAction_HashPolicy_QueryParameter_msginit,
400
+ };
401
+
402
+ static const upb_msglayout_field envoy_api_v2_route_RouteAction_HashPolicy__fields[5] = {
403
+ {1, UPB_SIZE(4, 8), UPB_SIZE(-9, -17), 2, 11, 1},
404
+ {2, UPB_SIZE(4, 8), UPB_SIZE(-9, -17), 1, 11, 1},
405
+ {3, UPB_SIZE(4, 8), UPB_SIZE(-9, -17), 0, 11, 1},
406
+ {4, UPB_SIZE(0, 0), 0, 0, 8, 1},
407
+ {5, UPB_SIZE(4, 8), UPB_SIZE(-9, -17), 3, 11, 1},
408
+ };
409
+
410
+ const upb_msglayout envoy_api_v2_route_RouteAction_HashPolicy_msginit = {
411
+ &envoy_api_v2_route_RouteAction_HashPolicy_submsgs[0],
412
+ &envoy_api_v2_route_RouteAction_HashPolicy__fields[0],
413
+ UPB_SIZE(12, 24), 5, false,
414
+ };
415
+
416
+ static const upb_msglayout_field envoy_api_v2_route_RouteAction_HashPolicy_Header__fields[1] = {
417
+ {1, UPB_SIZE(0, 0), 0, 0, 9, 1},
418
+ };
419
+
420
+ const upb_msglayout envoy_api_v2_route_RouteAction_HashPolicy_Header_msginit = {
421
+ NULL,
422
+ &envoy_api_v2_route_RouteAction_HashPolicy_Header__fields[0],
423
+ UPB_SIZE(8, 16), 1, false,
424
+ };
425
+
426
+ static const upb_msglayout *const envoy_api_v2_route_RouteAction_HashPolicy_Cookie_submsgs[1] = {
427
+ &google_protobuf_Duration_msginit,
428
+ };
429
+
430
+ static const upb_msglayout_field envoy_api_v2_route_RouteAction_HashPolicy_Cookie__fields[3] = {
431
+ {1, UPB_SIZE(0, 0), 0, 0, 9, 1},
432
+ {2, UPB_SIZE(16, 32), 0, 0, 11, 1},
433
+ {3, UPB_SIZE(8, 16), 0, 0, 9, 1},
434
+ };
435
+
436
+ const upb_msglayout envoy_api_v2_route_RouteAction_HashPolicy_Cookie_msginit = {
437
+ &envoy_api_v2_route_RouteAction_HashPolicy_Cookie_submsgs[0],
438
+ &envoy_api_v2_route_RouteAction_HashPolicy_Cookie__fields[0],
439
+ UPB_SIZE(24, 48), 3, false,
440
+ };
441
+
442
+ static const upb_msglayout_field envoy_api_v2_route_RouteAction_HashPolicy_ConnectionProperties__fields[1] = {
443
+ {1, UPB_SIZE(0, 0), 0, 0, 8, 1},
444
+ };
445
+
446
+ const upb_msglayout envoy_api_v2_route_RouteAction_HashPolicy_ConnectionProperties_msginit = {
447
+ NULL,
448
+ &envoy_api_v2_route_RouteAction_HashPolicy_ConnectionProperties__fields[0],
449
+ UPB_SIZE(1, 1), 1, false,
450
+ };
451
+
452
+ static const upb_msglayout_field envoy_api_v2_route_RouteAction_HashPolicy_QueryParameter__fields[1] = {
453
+ {1, UPB_SIZE(0, 0), 0, 0, 9, 1},
454
+ };
455
+
456
+ const upb_msglayout envoy_api_v2_route_RouteAction_HashPolicy_QueryParameter_msginit = {
457
+ NULL,
458
+ &envoy_api_v2_route_RouteAction_HashPolicy_QueryParameter__fields[0],
459
+ UPB_SIZE(8, 16), 1, false,
460
+ };
461
+
462
+ static const upb_msglayout *const envoy_api_v2_route_RouteAction_UpgradeConfig_submsgs[1] = {
463
+ &google_protobuf_BoolValue_msginit,
464
+ };
465
+
466
+ static const upb_msglayout_field envoy_api_v2_route_RouteAction_UpgradeConfig__fields[2] = {
467
+ {1, UPB_SIZE(0, 0), 0, 0, 9, 1},
468
+ {2, UPB_SIZE(8, 16), 0, 0, 11, 1},
469
+ };
470
+
471
+ const upb_msglayout envoy_api_v2_route_RouteAction_UpgradeConfig_msginit = {
472
+ &envoy_api_v2_route_RouteAction_UpgradeConfig_submsgs[0],
473
+ &envoy_api_v2_route_RouteAction_UpgradeConfig__fields[0],
474
+ UPB_SIZE(16, 32), 2, false,
475
+ };
476
+
477
+ static const upb_msglayout *const envoy_api_v2_route_RetryPolicy_submsgs[7] = {
478
+ &envoy_api_v2_route_HeaderMatcher_msginit,
479
+ &envoy_api_v2_route_RetryPolicy_RetryBackOff_msginit,
480
+ &envoy_api_v2_route_RetryPolicy_RetryHostPredicate_msginit,
481
+ &envoy_api_v2_route_RetryPolicy_RetryPriority_msginit,
482
+ &google_protobuf_Duration_msginit,
483
+ &google_protobuf_UInt32Value_msginit,
484
+ };
485
+
486
+ static const upb_msglayout_field envoy_api_v2_route_RetryPolicy__fields[10] = {
487
+ {1, UPB_SIZE(8, 8), 0, 0, 9, 1},
488
+ {2, UPB_SIZE(16, 24), 0, 5, 11, 1},
489
+ {3, UPB_SIZE(20, 32), 0, 4, 11, 1},
490
+ {4, UPB_SIZE(24, 40), 0, 3, 11, 1},
491
+ {5, UPB_SIZE(32, 56), 0, 2, 11, 3},
492
+ {6, UPB_SIZE(0, 0), 0, 0, 3, 1},
493
+ {7, UPB_SIZE(36, 64), 0, 0, 13, 3},
494
+ {8, UPB_SIZE(28, 48), 0, 1, 11, 1},
495
+ {9, UPB_SIZE(40, 72), 0, 0, 11, 3},
496
+ {10, UPB_SIZE(44, 80), 0, 0, 11, 3},
497
+ };
498
+
499
+ const upb_msglayout envoy_api_v2_route_RetryPolicy_msginit = {
500
+ &envoy_api_v2_route_RetryPolicy_submsgs[0],
501
+ &envoy_api_v2_route_RetryPolicy__fields[0],
502
+ UPB_SIZE(48, 96), 10, false,
503
+ };
504
+
505
+ static const upb_msglayout *const envoy_api_v2_route_RetryPolicy_RetryPriority_submsgs[2] = {
506
+ &google_protobuf_Any_msginit,
507
+ &google_protobuf_Struct_msginit,
508
+ };
509
+
510
+ static const upb_msglayout_field envoy_api_v2_route_RetryPolicy_RetryPriority__fields[3] = {
511
+ {1, UPB_SIZE(0, 0), 0, 0, 9, 1},
512
+ {2, UPB_SIZE(8, 16), UPB_SIZE(-13, -25), 1, 11, 1},
513
+ {3, UPB_SIZE(8, 16), UPB_SIZE(-13, -25), 0, 11, 1},
514
+ };
515
+
516
+ const upb_msglayout envoy_api_v2_route_RetryPolicy_RetryPriority_msginit = {
517
+ &envoy_api_v2_route_RetryPolicy_RetryPriority_submsgs[0],
518
+ &envoy_api_v2_route_RetryPolicy_RetryPriority__fields[0],
519
+ UPB_SIZE(16, 32), 3, false,
520
+ };
521
+
522
+ static const upb_msglayout *const envoy_api_v2_route_RetryPolicy_RetryHostPredicate_submsgs[2] = {
523
+ &google_protobuf_Any_msginit,
524
+ &google_protobuf_Struct_msginit,
525
+ };
526
+
527
+ static const upb_msglayout_field envoy_api_v2_route_RetryPolicy_RetryHostPredicate__fields[3] = {
528
+ {1, UPB_SIZE(0, 0), 0, 0, 9, 1},
529
+ {2, UPB_SIZE(8, 16), UPB_SIZE(-13, -25), 1, 11, 1},
530
+ {3, UPB_SIZE(8, 16), UPB_SIZE(-13, -25), 0, 11, 1},
531
+ };
532
+
533
+ const upb_msglayout envoy_api_v2_route_RetryPolicy_RetryHostPredicate_msginit = {
534
+ &envoy_api_v2_route_RetryPolicy_RetryHostPredicate_submsgs[0],
535
+ &envoy_api_v2_route_RetryPolicy_RetryHostPredicate__fields[0],
536
+ UPB_SIZE(16, 32), 3, false,
537
+ };
538
+
539
+ static const upb_msglayout *const envoy_api_v2_route_RetryPolicy_RetryBackOff_submsgs[2] = {
540
+ &google_protobuf_Duration_msginit,
541
+ };
542
+
543
+ static const upb_msglayout_field envoy_api_v2_route_RetryPolicy_RetryBackOff__fields[2] = {
544
+ {1, UPB_SIZE(0, 0), 0, 0, 11, 1},
545
+ {2, UPB_SIZE(4, 8), 0, 0, 11, 1},
546
+ };
547
+
548
+ const upb_msglayout envoy_api_v2_route_RetryPolicy_RetryBackOff_msginit = {
549
+ &envoy_api_v2_route_RetryPolicy_RetryBackOff_submsgs[0],
550
+ &envoy_api_v2_route_RetryPolicy_RetryBackOff__fields[0],
551
+ UPB_SIZE(8, 16), 2, false,
552
+ };
553
+
554
+ static const upb_msglayout *const envoy_api_v2_route_HedgePolicy_submsgs[2] = {
555
+ &envoy_type_FractionalPercent_msginit,
556
+ &google_protobuf_UInt32Value_msginit,
557
+ };
558
+
559
+ static const upb_msglayout_field envoy_api_v2_route_HedgePolicy__fields[3] = {
560
+ {1, UPB_SIZE(4, 8), 0, 1, 11, 1},
561
+ {2, UPB_SIZE(8, 16), 0, 0, 11, 1},
562
+ {3, UPB_SIZE(0, 0), 0, 0, 8, 1},
563
+ };
564
+
565
+ const upb_msglayout envoy_api_v2_route_HedgePolicy_msginit = {
566
+ &envoy_api_v2_route_HedgePolicy_submsgs[0],
567
+ &envoy_api_v2_route_HedgePolicy__fields[0],
568
+ UPB_SIZE(12, 24), 3, false,
569
+ };
570
+
571
+ static const upb_msglayout_field envoy_api_v2_route_RedirectAction__fields[8] = {
572
+ {1, UPB_SIZE(16, 16), 0, 0, 9, 1},
573
+ {2, UPB_SIZE(24, 32), UPB_SIZE(-33, -49), 0, 9, 1},
574
+ {3, UPB_SIZE(0, 0), 0, 0, 14, 1},
575
+ {4, UPB_SIZE(36, 56), UPB_SIZE(-45, -73), 0, 8, 1},
576
+ {5, UPB_SIZE(24, 32), UPB_SIZE(-33, -49), 0, 9, 1},
577
+ {6, UPB_SIZE(12, 12), 0, 0, 8, 1},
578
+ {7, UPB_SIZE(36, 56), UPB_SIZE(-45, -73), 0, 9, 1},
579
+ {8, UPB_SIZE(8, 8), 0, 0, 13, 1},
580
+ };
581
+
582
+ const upb_msglayout envoy_api_v2_route_RedirectAction_msginit = {
583
+ NULL,
584
+ &envoy_api_v2_route_RedirectAction__fields[0],
585
+ UPB_SIZE(48, 80), 8, false,
586
+ };
587
+
588
+ static const upb_msglayout *const envoy_api_v2_route_DirectResponseAction_submsgs[1] = {
589
+ &envoy_api_v2_core_DataSource_msginit,
590
+ };
591
+
592
+ static const upb_msglayout_field envoy_api_v2_route_DirectResponseAction__fields[2] = {
593
+ {1, UPB_SIZE(0, 0), 0, 0, 13, 1},
594
+ {2, UPB_SIZE(4, 8), 0, 0, 11, 1},
595
+ };
596
+
597
+ const upb_msglayout envoy_api_v2_route_DirectResponseAction_msginit = {
598
+ &envoy_api_v2_route_DirectResponseAction_submsgs[0],
599
+ &envoy_api_v2_route_DirectResponseAction__fields[0],
600
+ UPB_SIZE(8, 16), 2, false,
601
+ };
602
+
603
+ static const upb_msglayout *const envoy_api_v2_route_Decorator_submsgs[1] = {
604
+ &google_protobuf_BoolValue_msginit,
605
+ };
606
+
607
+ static const upb_msglayout_field envoy_api_v2_route_Decorator__fields[2] = {
608
+ {1, UPB_SIZE(0, 0), 0, 0, 9, 1},
609
+ {2, UPB_SIZE(8, 16), 0, 0, 11, 1},
610
+ };
611
+
612
+ const upb_msglayout envoy_api_v2_route_Decorator_msginit = {
613
+ &envoy_api_v2_route_Decorator_submsgs[0],
614
+ &envoy_api_v2_route_Decorator__fields[0],
615
+ UPB_SIZE(16, 32), 2, false,
616
+ };
617
+
618
+ static const upb_msglayout *const envoy_api_v2_route_Tracing_submsgs[4] = {
619
+ &envoy_type_FractionalPercent_msginit,
620
+ &envoy_type_tracing_v2_CustomTag_msginit,
621
+ };
622
+
623
+ static const upb_msglayout_field envoy_api_v2_route_Tracing__fields[4] = {
624
+ {1, UPB_SIZE(0, 0), 0, 0, 11, 1},
625
+ {2, UPB_SIZE(4, 8), 0, 0, 11, 1},
626
+ {3, UPB_SIZE(8, 16), 0, 0, 11, 1},
627
+ {4, UPB_SIZE(12, 24), 0, 1, 11, 3},
628
+ };
629
+
630
+ const upb_msglayout envoy_api_v2_route_Tracing_msginit = {
631
+ &envoy_api_v2_route_Tracing_submsgs[0],
632
+ &envoy_api_v2_route_Tracing__fields[0],
633
+ UPB_SIZE(16, 32), 4, false,
634
+ };
635
+
636
+ static const upb_msglayout *const envoy_api_v2_route_VirtualCluster_submsgs[1] = {
637
+ &envoy_api_v2_route_HeaderMatcher_msginit,
638
+ };
639
+
640
+ static const upb_msglayout_field envoy_api_v2_route_VirtualCluster__fields[4] = {
641
+ {1, UPB_SIZE(8, 8), 0, 0, 9, 1},
642
+ {2, UPB_SIZE(16, 24), 0, 0, 9, 1},
643
+ {3, UPB_SIZE(0, 0), 0, 0, 14, 1},
644
+ {4, UPB_SIZE(24, 40), 0, 0, 11, 3},
645
+ };
646
+
647
+ const upb_msglayout envoy_api_v2_route_VirtualCluster_msginit = {
648
+ &envoy_api_v2_route_VirtualCluster_submsgs[0],
649
+ &envoy_api_v2_route_VirtualCluster__fields[0],
650
+ UPB_SIZE(32, 48), 4, false,
651
+ };
652
+
653
+ static const upb_msglayout *const envoy_api_v2_route_RateLimit_submsgs[2] = {
654
+ &envoy_api_v2_route_RateLimit_Action_msginit,
655
+ &google_protobuf_UInt32Value_msginit,
656
+ };
657
+
658
+ static const upb_msglayout_field envoy_api_v2_route_RateLimit__fields[3] = {
659
+ {1, UPB_SIZE(8, 16), 0, 1, 11, 1},
660
+ {2, UPB_SIZE(0, 0), 0, 0, 9, 1},
661
+ {3, UPB_SIZE(12, 24), 0, 0, 11, 3},
662
+ };
663
+
664
+ const upb_msglayout envoy_api_v2_route_RateLimit_msginit = {
665
+ &envoy_api_v2_route_RateLimit_submsgs[0],
666
+ &envoy_api_v2_route_RateLimit__fields[0],
667
+ UPB_SIZE(16, 32), 3, false,
668
+ };
669
+
670
+ static const upb_msglayout *const envoy_api_v2_route_RateLimit_Action_submsgs[6] = {
671
+ &envoy_api_v2_route_RateLimit_Action_DestinationCluster_msginit,
672
+ &envoy_api_v2_route_RateLimit_Action_GenericKey_msginit,
673
+ &envoy_api_v2_route_RateLimit_Action_HeaderValueMatch_msginit,
674
+ &envoy_api_v2_route_RateLimit_Action_RemoteAddress_msginit,
675
+ &envoy_api_v2_route_RateLimit_Action_RequestHeaders_msginit,
676
+ &envoy_api_v2_route_RateLimit_Action_SourceCluster_msginit,
677
+ };
678
+
679
+ static const upb_msglayout_field envoy_api_v2_route_RateLimit_Action__fields[6] = {
680
+ {1, UPB_SIZE(0, 0), UPB_SIZE(-5, -9), 5, 11, 1},
681
+ {2, UPB_SIZE(0, 0), UPB_SIZE(-5, -9), 0, 11, 1},
682
+ {3, UPB_SIZE(0, 0), UPB_SIZE(-5, -9), 4, 11, 1},
683
+ {4, UPB_SIZE(0, 0), UPB_SIZE(-5, -9), 3, 11, 1},
684
+ {5, UPB_SIZE(0, 0), UPB_SIZE(-5, -9), 1, 11, 1},
685
+ {6, UPB_SIZE(0, 0), UPB_SIZE(-5, -9), 2, 11, 1},
686
+ };
687
+
688
+ const upb_msglayout envoy_api_v2_route_RateLimit_Action_msginit = {
689
+ &envoy_api_v2_route_RateLimit_Action_submsgs[0],
690
+ &envoy_api_v2_route_RateLimit_Action__fields[0],
691
+ UPB_SIZE(8, 16), 6, false,
692
+ };
693
+
694
+ const upb_msglayout envoy_api_v2_route_RateLimit_Action_SourceCluster_msginit = {
695
+ NULL,
696
+ NULL,
697
+ UPB_SIZE(0, 0), 0, false,
698
+ };
699
+
700
+ const upb_msglayout envoy_api_v2_route_RateLimit_Action_DestinationCluster_msginit = {
701
+ NULL,
702
+ NULL,
703
+ UPB_SIZE(0, 0), 0, false,
704
+ };
705
+
706
+ static const upb_msglayout_field envoy_api_v2_route_RateLimit_Action_RequestHeaders__fields[2] = {
707
+ {1, UPB_SIZE(0, 0), 0, 0, 9, 1},
708
+ {2, UPB_SIZE(8, 16), 0, 0, 9, 1},
709
+ };
710
+
711
+ const upb_msglayout envoy_api_v2_route_RateLimit_Action_RequestHeaders_msginit = {
712
+ NULL,
713
+ &envoy_api_v2_route_RateLimit_Action_RequestHeaders__fields[0],
714
+ UPB_SIZE(16, 32), 2, false,
715
+ };
716
+
717
+ const upb_msglayout envoy_api_v2_route_RateLimit_Action_RemoteAddress_msginit = {
718
+ NULL,
719
+ NULL,
720
+ UPB_SIZE(0, 0), 0, false,
721
+ };
722
+
723
+ static const upb_msglayout_field envoy_api_v2_route_RateLimit_Action_GenericKey__fields[1] = {
724
+ {1, UPB_SIZE(0, 0), 0, 0, 9, 1},
725
+ };
726
+
727
+ const upb_msglayout envoy_api_v2_route_RateLimit_Action_GenericKey_msginit = {
728
+ NULL,
729
+ &envoy_api_v2_route_RateLimit_Action_GenericKey__fields[0],
730
+ UPB_SIZE(8, 16), 1, false,
731
+ };
732
+
733
+ static const upb_msglayout *const envoy_api_v2_route_RateLimit_Action_HeaderValueMatch_submsgs[2] = {
734
+ &envoy_api_v2_route_HeaderMatcher_msginit,
735
+ &google_protobuf_BoolValue_msginit,
736
+ };
737
+
738
+ static const upb_msglayout_field envoy_api_v2_route_RateLimit_Action_HeaderValueMatch__fields[3] = {
739
+ {1, UPB_SIZE(0, 0), 0, 0, 9, 1},
740
+ {2, UPB_SIZE(8, 16), 0, 1, 11, 1},
741
+ {3, UPB_SIZE(12, 24), 0, 0, 11, 3},
742
+ };
743
+
744
+ const upb_msglayout envoy_api_v2_route_RateLimit_Action_HeaderValueMatch_msginit = {
745
+ &envoy_api_v2_route_RateLimit_Action_HeaderValueMatch_submsgs[0],
746
+ &envoy_api_v2_route_RateLimit_Action_HeaderValueMatch__fields[0],
747
+ UPB_SIZE(16, 32), 3, false,
748
+ };
749
+
750
+ static const upb_msglayout *const envoy_api_v2_route_HeaderMatcher_submsgs[2] = {
751
+ &envoy_type_Int64Range_msginit,
752
+ &envoy_type_matcher_RegexMatcher_msginit,
753
+ };
754
+
755
+ static const upb_msglayout_field envoy_api_v2_route_HeaderMatcher__fields[9] = {
756
+ {1, UPB_SIZE(4, 8), 0, 0, 9, 1},
757
+ {4, UPB_SIZE(12, 24), UPB_SIZE(-21, -41), 0, 9, 1},
758
+ {5, UPB_SIZE(12, 24), UPB_SIZE(-21, -41), 0, 9, 1},
759
+ {6, UPB_SIZE(12, 24), UPB_SIZE(-21, -41), 0, 11, 1},
760
+ {7, UPB_SIZE(12, 24), UPB_SIZE(-21, -41), 0, 8, 1},
761
+ {8, UPB_SIZE(0, 0), 0, 0, 8, 1},
762
+ {9, UPB_SIZE(12, 24), UPB_SIZE(-21, -41), 0, 9, 1},
763
+ {10, UPB_SIZE(12, 24), UPB_SIZE(-21, -41), 0, 9, 1},
764
+ {11, UPB_SIZE(12, 24), UPB_SIZE(-21, -41), 1, 11, 1},
765
+ };
766
+
767
+ const upb_msglayout envoy_api_v2_route_HeaderMatcher_msginit = {
768
+ &envoy_api_v2_route_HeaderMatcher_submsgs[0],
769
+ &envoy_api_v2_route_HeaderMatcher__fields[0],
770
+ UPB_SIZE(24, 48), 9, false,
771
+ };
772
+
773
+ static const upb_msglayout *const envoy_api_v2_route_QueryParameterMatcher_submsgs[2] = {
774
+ &envoy_type_matcher_StringMatcher_msginit,
775
+ &google_protobuf_BoolValue_msginit,
776
+ };
777
+
778
+ static const upb_msglayout_field envoy_api_v2_route_QueryParameterMatcher__fields[5] = {
779
+ {1, UPB_SIZE(0, 0), 0, 0, 9, 1},
780
+ {3, UPB_SIZE(8, 16), 0, 0, 9, 1},
781
+ {4, UPB_SIZE(16, 32), 0, 1, 11, 1},
782
+ {5, UPB_SIZE(20, 40), UPB_SIZE(-25, -49), 0, 11, 1},
783
+ {6, UPB_SIZE(20, 40), UPB_SIZE(-25, -49), 0, 8, 1},
784
+ };
785
+
786
+ const upb_msglayout envoy_api_v2_route_QueryParameterMatcher_msginit = {
787
+ &envoy_api_v2_route_QueryParameterMatcher_submsgs[0],
788
+ &envoy_api_v2_route_QueryParameterMatcher__fields[0],
789
+ UPB_SIZE(32, 64), 5, false,
790
+ };
791
+
792
+ #include "upb/port_undef.inc"
793
+