grpc 1.28.0 → 1.36.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 (1466) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +1692 -22343
  3. data/etc/roots.pem +257 -573
  4. data/include/grpc/compression.h +1 -1
  5. data/include/grpc/grpc.h +17 -9
  6. data/include/grpc/grpc_security.h +274 -180
  7. data/include/grpc/grpc_security_constants.h +4 -0
  8. data/include/grpc/impl/codegen/README.md +22 -0
  9. data/include/grpc/impl/codegen/atm_windows.h +4 -0
  10. data/include/grpc/impl/codegen/byte_buffer.h +1 -1
  11. data/include/grpc/impl/codegen/grpc_types.h +32 -30
  12. data/include/grpc/impl/codegen/log.h +0 -2
  13. data/include/grpc/impl/codegen/port_platform.h +34 -90
  14. data/include/grpc/impl/codegen/sync_windows.h +4 -0
  15. data/include/grpc/module.modulemap +24 -39
  16. data/include/grpc/slice_buffer.h +3 -3
  17. data/include/grpc/support/sync.h +3 -3
  18. data/include/grpc/support/time.h +7 -7
  19. data/src/core/ext/filters/client_channel/backend_metric.cc +16 -12
  20. data/src/core/ext/filters/client_channel/backup_poller.cc +3 -2
  21. data/src/core/ext/filters/client_channel/client_channel.cc +3750 -2341
  22. data/src/core/ext/filters/client_channel/client_channel.h +1 -7
  23. data/src/core/ext/filters/client_channel/client_channel_channelz.h +0 -3
  24. data/src/core/ext/filters/client_channel/client_channel_plugin.cc +4 -3
  25. data/src/core/ext/filters/client_channel/config_selector.cc +58 -0
  26. data/src/core/ext/filters/client_channel/config_selector.h +125 -0
  27. data/src/core/ext/filters/client_channel/dynamic_filters.cc +186 -0
  28. data/src/core/ext/filters/client_channel/dynamic_filters.h +99 -0
  29. data/src/core/ext/filters/client_channel/global_subchannel_pool.cc +24 -2
  30. data/src/core/ext/filters/client_channel/health/health_check_client.cc +25 -30
  31. data/src/core/ext/filters/client_channel/health/health_check_client.h +7 -7
  32. data/src/core/ext/filters/client_channel/http_connect_handshaker.cc +15 -16
  33. data/src/core/ext/filters/client_channel/http_proxy.cc +44 -34
  34. data/src/core/ext/filters/client_channel/lb_policy.cc +25 -20
  35. data/src/core/ext/filters/client_channel/lb_policy.h +50 -38
  36. data/src/core/ext/filters/client_channel/lb_policy/address_filtering.cc +96 -0
  37. data/src/core/ext/filters/client_channel/lb_policy/address_filtering.h +101 -0
  38. data/src/core/ext/filters/client_channel/lb_policy/child_policy_handler.cc +20 -11
  39. data/src/core/ext/filters/client_channel/lb_policy/child_policy_handler.h +1 -1
  40. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +481 -510
  41. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.cc +76 -0
  42. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.h +37 -0
  43. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.h +1 -2
  44. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.cc +6 -41
  45. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.cc +3 -1
  46. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h +3 -2
  47. data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc +3 -3
  48. data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h +1 -1
  49. data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +24 -18
  50. data/src/core/ext/filters/client_channel/lb_policy/priority/priority.cc +922 -0
  51. data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +11 -10
  52. data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +18 -46
  53. data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +744 -0
  54. data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +520 -134
  55. data/src/core/ext/filters/client_channel/lb_policy/xds/xds.h +53 -26
  56. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_channel_args.h +29 -0
  57. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_impl.cc +810 -0
  58. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_manager.cc +722 -0
  59. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_resolver.cc +1384 -0
  60. data/src/core/ext/filters/client_channel/lb_policy_registry.cc +18 -8
  61. data/src/core/ext/filters/client_channel/local_subchannel_pool.h +2 -1
  62. data/src/core/ext/filters/client_channel/resolver.cc +6 -10
  63. data/src/core/ext/filters/client_channel/resolver.h +10 -20
  64. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +111 -110
  65. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h +4 -34
  66. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_libuv.cc +22 -24
  67. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +13 -11
  68. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +79 -122
  69. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +642 -180
  70. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +10 -3
  71. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_libuv.cc +1 -1
  72. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc +1 -1
  73. data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +61 -61
  74. data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc +102 -108
  75. data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h +1 -5
  76. data/src/core/ext/filters/client_channel/resolver/google_c2p/google_c2p_resolver.cc +362 -0
  77. data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +38 -31
  78. data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +625 -46
  79. data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.h +28 -0
  80. data/src/core/ext/filters/client_channel/resolver_factory.h +8 -8
  81. data/src/core/ext/filters/client_channel/resolver_registry.cc +55 -52
  82. data/src/core/ext/filters/client_channel/resolver_registry.h +10 -10
  83. data/src/core/ext/filters/client_channel/resolver_result_parsing.cc +47 -93
  84. data/src/core/ext/filters/client_channel/resolver_result_parsing.h +30 -26
  85. data/src/core/ext/filters/client_channel/retry_throttle.cc +5 -3
  86. data/src/core/ext/filters/client_channel/retry_throttle.h +4 -2
  87. data/src/core/ext/filters/client_channel/server_address.cc +129 -13
  88. data/src/core/ext/filters/client_channel/server_address.h +80 -32
  89. data/src/core/ext/filters/client_channel/service_config.cc +114 -149
  90. data/src/core/ext/filters/client_channel/service_config.h +33 -100
  91. data/src/core/ext/filters/client_channel/service_config_call_data.h +86 -0
  92. data/src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc +142 -0
  93. data/src/core/ext/filters/client_channel/service_config_parser.cc +89 -0
  94. data/src/core/ext/filters/client_channel/service_config_parser.h +92 -0
  95. data/src/core/ext/filters/client_channel/subchannel.cc +156 -98
  96. data/src/core/ext/filters/client_channel/subchannel.h +65 -35
  97. data/src/core/ext/filters/client_channel/subchannel_interface.h +41 -5
  98. data/src/core/ext/filters/client_channel/subchannel_pool_interface.h +6 -2
  99. data/src/core/ext/filters/deadline/deadline_filter.cc +87 -79
  100. data/src/core/ext/filters/deadline/deadline_filter.h +7 -11
  101. data/src/core/ext/filters/http/client/http_client_filter.cc +29 -34
  102. data/src/core/ext/filters/http/client_authority_filter.cc +10 -10
  103. data/src/core/ext/filters/http/http_filters_plugin.cc +34 -15
  104. data/src/core/ext/filters/http/message_compress/message_compress_filter.cc +258 -221
  105. data/src/core/ext/filters/http/message_compress/message_decompress_filter.cc +399 -0
  106. data/src/core/ext/filters/http/message_compress/message_decompress_filter.h +31 -0
  107. data/src/core/ext/filters/http/server/http_server_filter.cc +3 -3
  108. data/src/core/ext/filters/max_age/max_age_filter.cc +38 -34
  109. data/src/core/ext/filters/message_size/message_size_filter.cc +64 -90
  110. data/src/core/ext/filters/message_size/message_size_filter.h +12 -5
  111. data/src/core/ext/filters/workarounds/workaround_utils.cc +1 -1
  112. data/src/core/ext/transport/chttp2/client/authority.cc +3 -3
  113. data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +87 -31
  114. data/src/core/ext/transport/chttp2/client/chttp2_connector.h +19 -2
  115. data/src/core/ext/transport/chttp2/client/insecure/channel_create.cc +20 -8
  116. data/src/core/ext/transport/chttp2/client/insecure/channel_create_posix.cc +21 -10
  117. data/src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc +34 -47
  118. data/src/core/ext/transport/chttp2/server/chttp2_server.cc +505 -344
  119. data/src/core/ext/transport/chttp2/server/chttp2_server.h +16 -2
  120. data/src/core/ext/transport/chttp2/server/insecure/server_chttp2.cc +13 -3
  121. data/src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc +19 -18
  122. data/src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.cc +65 -21
  123. data/src/core/ext/transport/chttp2/transport/bin_decoder.cc +7 -7
  124. data/src/core/ext/transport/chttp2/transport/bin_encoder.cc +4 -6
  125. data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +307 -343
  126. data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +1 -0
  127. data/src/core/ext/transport/chttp2/transport/flow_control.cc +36 -33
  128. data/src/core/ext/transport/chttp2/transport/flow_control.h +27 -19
  129. data/src/core/ext/transport/chttp2/transport/frame_data.cc +9 -12
  130. data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +6 -7
  131. data/src/core/ext/transport/chttp2/transport/frame_goaway.h +2 -3
  132. data/src/core/ext/transport/chttp2/transport/frame_ping.cc +5 -6
  133. data/src/core/ext/transport/chttp2/transport/frame_ping.h +2 -3
  134. data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +12 -13
  135. data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +2 -3
  136. data/src/core/ext/transport/chttp2/transport/frame_settings.cc +8 -9
  137. data/src/core/ext/transport/chttp2/transport/frame_settings.h +4 -4
  138. data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +15 -18
  139. data/src/core/ext/transport/chttp2/transport/frame_window_update.h +2 -3
  140. data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +29 -16
  141. data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +2 -3
  142. data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +37 -37
  143. data/src/core/ext/transport/chttp2/transport/hpack_parser.h +2 -3
  144. data/src/core/ext/transport/chttp2/transport/hpack_table.cc +13 -17
  145. data/src/core/ext/transport/chttp2/transport/hpack_table.h +2 -2
  146. data/src/core/ext/transport/chttp2/transport/http2_settings.h +4 -5
  147. data/src/core/ext/transport/chttp2/transport/huffsyms.h +2 -3
  148. data/src/core/ext/transport/chttp2/transport/internal.h +37 -23
  149. data/src/core/ext/transport/chttp2/transport/parsing.cc +52 -74
  150. data/src/core/ext/transport/chttp2/transport/stream_map.h +2 -3
  151. data/src/core/ext/transport/chttp2/transport/writing.cc +30 -28
  152. data/src/core/ext/transport/inproc/inproc_transport.cc +106 -33
  153. data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.h +1 -1
  154. data/src/core/ext/upb-generated/envoy/annotations/resource.upb.c +1 -1
  155. data/src/core/ext/upb-generated/envoy/annotations/resource.upb.h +10 -4
  156. data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.c +243 -0
  157. data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.h +865 -0
  158. data/src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.c +74 -0
  159. data/src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.h +253 -0
  160. data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.c +453 -0
  161. data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.h +1801 -0
  162. data/src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.c +35 -0
  163. data/src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.h +77 -0
  164. data/src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.c +56 -0
  165. data/src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.h +364 -0
  166. data/src/core/ext/upb-generated/envoy/config/core/v3/address.upb.c +124 -0
  167. data/src/core/ext/upb-generated/envoy/config/core/v3/address.upb.h +428 -0
  168. data/src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.c +35 -0
  169. data/src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.h +88 -0
  170. data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.c +334 -0
  171. data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.h +1066 -0
  172. data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.c +103 -0
  173. data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.h +388 -0
  174. data/src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.c +34 -0
  175. data/src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.h +78 -0
  176. data/src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.c +53 -0
  177. data/src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.h +149 -0
  178. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.c +241 -0
  179. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.h +839 -0
  180. data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.c +170 -0
  181. data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.h +767 -0
  182. data/src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.c +36 -0
  183. data/src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.h +88 -0
  184. data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.c +176 -0
  185. data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.h +730 -0
  186. data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.c +27 -0
  187. data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.h +65 -0
  188. data/src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.c +34 -0
  189. data/src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.h +95 -0
  190. data/src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.c +42 -0
  191. data/src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.h +126 -0
  192. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.c +90 -0
  193. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.h +243 -0
  194. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.c +91 -0
  195. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.h +305 -0
  196. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.c +112 -0
  197. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.h +367 -0
  198. data/src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.c +33 -0
  199. data/src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.h +73 -0
  200. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.c +130 -0
  201. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.h +557 -0
  202. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.c +159 -0
  203. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.h +623 -0
  204. data/src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.c +40 -0
  205. data/src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.h +107 -0
  206. data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.c +178 -0
  207. data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.h +662 -0
  208. data/src/core/ext/upb-generated/envoy/config/route/v3/route.upb.c +65 -0
  209. data/src/core/ext/upb-generated/envoy/config/route/v3/route.upb.h +237 -0
  210. data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.c +926 -0
  211. data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.h +3746 -0
  212. data/src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.c +60 -0
  213. data/src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.h +159 -0
  214. data/src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.c +49 -0
  215. data/src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.h +122 -0
  216. data/src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.c +29 -0
  217. data/src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.h +67 -0
  218. data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.c +361 -0
  219. data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +1484 -0
  220. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.c +19 -0
  221. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.h +35 -0
  222. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.c +113 -0
  223. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.h +458 -0
  224. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.c +73 -0
  225. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.h +219 -0
  226. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.c +146 -0
  227. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +621 -0
  228. data/src/core/ext/upb-generated/envoy/{api/v2/rds.upb.c → service/cluster/v3/cds.upb.c} +7 -9
  229. data/src/core/ext/upb-generated/envoy/service/cluster/v3/cds.upb.h +56 -0
  230. data/src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.c +25 -0
  231. data/src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.h +56 -0
  232. data/src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.c +146 -0
  233. data/src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.h +499 -0
  234. data/src/core/ext/upb-generated/envoy/service/endpoint/v3/eds.upb.c +27 -0
  235. data/src/core/ext/upb-generated/envoy/service/endpoint/v3/eds.upb.h +56 -0
  236. data/src/core/ext/upb-generated/envoy/service/listener/v3/lds.upb.c +27 -0
  237. data/src/core/ext/upb-generated/envoy/service/listener/v3/lds.upb.h +56 -0
  238. data/src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.c +54 -0
  239. data/src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.h +151 -0
  240. data/src/core/ext/upb-generated/envoy/{api/v2/srds.upb.c → service/route/v3/rds.upb.c} +7 -7
  241. data/src/core/ext/upb-generated/envoy/service/route/v3/rds.upb.h +56 -0
  242. data/src/core/ext/upb-generated/envoy/{api/v2/cds.upb.c → service/route/v3/srds.upb.c} +7 -7
  243. data/src/core/ext/upb-generated/envoy/service/route/v3/srds.upb.h +56 -0
  244. data/src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.c +47 -0
  245. data/src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.h +128 -0
  246. data/src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.c +35 -0
  247. data/src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.h +84 -0
  248. data/src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.c +34 -0
  249. data/src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.h +78 -0
  250. data/src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.c +64 -0
  251. data/src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.h +166 -0
  252. data/src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.c +53 -0
  253. data/src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.h +146 -0
  254. data/src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.c +63 -0
  255. data/src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.h +207 -0
  256. data/src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.c +88 -0
  257. data/src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.h +301 -0
  258. data/src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.c +90 -0
  259. data/src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.h +283 -0
  260. data/src/core/ext/upb-generated/envoy/type/{http.upb.c → v3/http.upb.c} +3 -2
  261. data/src/core/ext/upb-generated/envoy/type/{http.upb.h → v3/http.upb.h} +9 -9
  262. data/src/core/ext/upb-generated/envoy/type/v3/percent.upb.c +40 -0
  263. data/src/core/ext/upb-generated/envoy/type/v3/percent.upb.h +99 -0
  264. data/src/core/ext/upb-generated/envoy/type/v3/range.upb.c +51 -0
  265. data/src/core/ext/upb-generated/envoy/type/v3/range.upb.h +130 -0
  266. data/src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.c +30 -0
  267. data/src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.h +68 -0
  268. data/src/core/ext/upb-generated/google/api/annotations.upb.h +1 -1
  269. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.c +242 -0
  270. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.h +830 -0
  271. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.c +251 -0
  272. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.h +871 -0
  273. data/src/core/ext/upb-generated/google/api/http.upb.c +3 -3
  274. data/src/core/ext/upb-generated/google/api/http.upb.h +52 -32
  275. data/src/core/ext/upb-generated/google/protobuf/any.upb.c +1 -1
  276. data/src/core/ext/upb-generated/google/protobuf/any.upb.h +12 -6
  277. data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.c +107 -106
  278. data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.h +691 -496
  279. data/src/core/ext/upb-generated/google/protobuf/duration.upb.c +1 -1
  280. data/src/core/ext/upb-generated/google/protobuf/duration.upb.h +12 -6
  281. data/src/core/ext/upb-generated/google/protobuf/empty.upb.c +1 -1
  282. data/src/core/ext/upb-generated/google/protobuf/empty.upb.h +8 -2
  283. data/src/core/ext/upb-generated/google/protobuf/struct.upb.c +5 -5
  284. data/src/core/ext/upb-generated/google/protobuf/struct.upb.h +55 -57
  285. data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.c +1 -1
  286. data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.h +12 -6
  287. data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.c +9 -9
  288. data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.h +82 -28
  289. data/src/core/ext/upb-generated/google/rpc/status.upb.c +1 -1
  290. data/src/core/ext/upb-generated/google/rpc/status.upb.h +17 -10
  291. data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.c +5 -5
  292. data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.h +40 -45
  293. data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.c +43 -43
  294. data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.h +236 -184
  295. data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.c +5 -5
  296. data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.h +29 -13
  297. data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.c +2 -2
  298. data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.h +19 -7
  299. data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.c +17 -17
  300. data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.h +122 -62
  301. data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.c +3 -3
  302. data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.h +30 -12
  303. data/src/core/ext/upb-generated/udpa/annotations/security.upb.c +31 -0
  304. data/src/core/ext/upb-generated/udpa/annotations/security.upb.h +64 -0
  305. data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.h +1 -1
  306. data/src/core/ext/upb-generated/udpa/annotations/status.upb.c +28 -0
  307. data/src/core/ext/upb-generated/udpa/annotations/status.upb.h +71 -0
  308. data/src/core/ext/upb-generated/udpa/annotations/versioning.upb.c +27 -0
  309. data/src/core/ext/upb-generated/udpa/annotations/versioning.upb.h +60 -0
  310. data/src/core/ext/upb-generated/udpa/data/orca/v1/orca_load_report.upb.c +9 -9
  311. data/src/core/ext/upb-generated/udpa/data/orca/v1/orca_load_report.upb.h +48 -68
  312. data/src/core/ext/upb-generated/validate/validate.upb.c +71 -70
  313. data/src/core/ext/upb-generated/validate/validate.upb.h +732 -586
  314. data/src/core/ext/upb-generated/xds/core/v3/authority.upb.c +28 -0
  315. data/src/core/ext/upb-generated/xds/core/v3/authority.upb.h +60 -0
  316. data/src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.c +52 -0
  317. data/src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.h +143 -0
  318. data/src/core/ext/upb-generated/xds/core/v3/context_params.upb.c +42 -0
  319. data/src/core/ext/upb-generated/xds/core/v3/context_params.upb.h +84 -0
  320. data/src/core/ext/upb-generated/xds/core/v3/resource.upb.c +36 -0
  321. data/src/core/ext/upb-generated/xds/core/v3/resource.upb.h +94 -0
  322. data/src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.c +54 -0
  323. data/src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.h +166 -0
  324. data/src/core/ext/upb-generated/xds/core/v3/resource_name.upb.c +36 -0
  325. data/src/core/ext/upb-generated/xds/core/v3/resource_name.upb.h +85 -0
  326. data/src/core/ext/upbdefs-generated/envoy/annotations/deprecation.upbdefs.c +38 -0
  327. data/src/core/ext/upbdefs-generated/envoy/annotations/deprecation.upbdefs.h +30 -0
  328. data/src/core/ext/upbdefs-generated/envoy/annotations/resource.upbdefs.c +41 -0
  329. data/src/core/ext/upbdefs-generated/envoy/annotations/resource.upbdefs.h +35 -0
  330. data/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.c +251 -0
  331. data/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.h +105 -0
  332. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/circuit_breaker.upbdefs.c +100 -0
  333. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/circuit_breaker.upbdefs.h +45 -0
  334. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.c +543 -0
  335. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.h +145 -0
  336. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/filter.upbdefs.c +53 -0
  337. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/filter.upbdefs.h +35 -0
  338. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/outlier_detection.upbdefs.c +136 -0
  339. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/outlier_detection.upbdefs.h +35 -0
  340. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/address.upbdefs.c +127 -0
  341. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/address.upbdefs.h +65 -0
  342. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/backoff.upbdefs.c +56 -0
  343. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/backoff.upbdefs.h +35 -0
  344. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.c +272 -0
  345. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.h +135 -0
  346. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.c +143 -0
  347. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.h +55 -0
  348. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/event_service_config.upbdefs.c +56 -0
  349. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/event_service_config.upbdefs.h +35 -0
  350. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.c +66 -0
  351. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.h +40 -0
  352. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.c +263 -0
  353. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.h +100 -0
  354. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.c +233 -0
  355. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.h +70 -0
  356. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/http_uri.upbdefs.c +56 -0
  357. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/http_uri.upbdefs.h +35 -0
  358. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.c +228 -0
  359. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.h +80 -0
  360. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.c +43 -0
  361. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.h +35 -0
  362. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/socket_option.upbdefs.c +59 -0
  363. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/socket_option.upbdefs.h +35 -0
  364. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.c +68 -0
  365. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.h +35 -0
  366. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint.upbdefs.c +107 -0
  367. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint.upbdefs.h +50 -0
  368. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint_components.upbdefs.c +113 -0
  369. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint_components.upbdefs.h +50 -0
  370. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/load_report.upbdefs.c +146 -0
  371. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/load_report.upbdefs.h +55 -0
  372. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/api_listener.upbdefs.c +50 -0
  373. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/api_listener.upbdefs.h +35 -0
  374. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.c +195 -0
  375. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.h +55 -0
  376. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.c +193 -0
  377. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.h +65 -0
  378. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.c +59 -0
  379. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.h +40 -0
  380. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.c +101 -0
  381. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.h +40 -0
  382. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.c +938 -0
  383. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.h +285 -0
  384. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/scoped_route.upbdefs.c +71 -0
  385. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/scoped_route.upbdefs.h +45 -0
  386. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/http_tracer.upbdefs.c +61 -0
  387. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/http_tracer.upbdefs.h +40 -0
  388. data/src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.c +51 -0
  389. data/src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h +35 -0
  390. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +504 -0
  391. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h +115 -0
  392. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.c +44 -0
  393. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.h +30 -0
  394. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c +170 -0
  395. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h +55 -0
  396. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.c +97 -0
  397. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h +45 -0
  398. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c +246 -0
  399. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h +60 -0
  400. data/src/core/ext/upbdefs-generated/envoy/service/cluster/v3/cds.upbdefs.c +72 -0
  401. data/src/core/ext/upbdefs-generated/envoy/service/cluster/v3/cds.upbdefs.h +35 -0
  402. data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/ads.upbdefs.c +60 -0
  403. data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/ads.upbdefs.h +35 -0
  404. data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.c +142 -0
  405. data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.h +65 -0
  406. data/src/core/ext/upbdefs-generated/envoy/service/endpoint/v3/eds.upbdefs.c +73 -0
  407. data/src/core/ext/upbdefs-generated/envoy/service/endpoint/v3/eds.upbdefs.h +35 -0
  408. data/src/core/ext/upbdefs-generated/envoy/service/listener/v3/lds.upbdefs.c +72 -0
  409. data/src/core/ext/upbdefs-generated/envoy/service/listener/v3/lds.upbdefs.h +35 -0
  410. data/src/core/ext/upbdefs-generated/envoy/service/load_stats/v3/lrs.upbdefs.c +80 -0
  411. data/src/core/ext/upbdefs-generated/envoy/service/load_stats/v3/lrs.upbdefs.h +40 -0
  412. data/src/core/ext/upbdefs-generated/envoy/service/route/v3/rds.upbdefs.c +80 -0
  413. data/src/core/ext/upbdefs-generated/envoy/service/route/v3/rds.upbdefs.h +35 -0
  414. data/src/core/ext/upbdefs-generated/envoy/service/route/v3/srds.upbdefs.c +74 -0
  415. data/src/core/ext/upbdefs-generated/envoy/service/route/v3/srds.upbdefs.h +35 -0
  416. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/metadata.upbdefs.c +64 -0
  417. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/metadata.upbdefs.h +40 -0
  418. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/number.upbdefs.c +54 -0
  419. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/number.upbdefs.h +35 -0
  420. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/path.upbdefs.c +53 -0
  421. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/path.upbdefs.h +35 -0
  422. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.c +73 -0
  423. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.h +45 -0
  424. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/string.upbdefs.c +69 -0
  425. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/string.upbdefs.h +40 -0
  426. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/value.upbdefs.c +81 -0
  427. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/value.upbdefs.h +45 -0
  428. data/src/core/ext/upbdefs-generated/envoy/type/metadata/v3/metadata.upbdefs.c +92 -0
  429. data/src/core/ext/upbdefs-generated/envoy/type/metadata/v3/metadata.upbdefs.h +65 -0
  430. data/src/core/ext/upbdefs-generated/envoy/type/tracing/v3/custom_tag.upbdefs.c +95 -0
  431. data/src/core/ext/upbdefs-generated/envoy/type/tracing/v3/custom_tag.upbdefs.h +55 -0
  432. data/src/core/ext/upbdefs-generated/envoy/type/v3/http.upbdefs.c +34 -0
  433. data/src/core/ext/{upb-generated/gogoproto/gogo.upb.h → upbdefs-generated/envoy/type/v3/http.upbdefs.h} +10 -10
  434. data/src/core/ext/upbdefs-generated/envoy/type/v3/percent.upbdefs.c +59 -0
  435. data/src/core/ext/upbdefs-generated/envoy/type/v3/percent.upbdefs.h +40 -0
  436. data/src/core/ext/upbdefs-generated/envoy/type/v3/range.upbdefs.c +54 -0
  437. data/src/core/ext/upbdefs-generated/envoy/type/v3/range.upbdefs.h +45 -0
  438. data/src/core/ext/upbdefs-generated/envoy/type/v3/semantic_version.upbdefs.c +47 -0
  439. data/src/core/ext/upbdefs-generated/envoy/type/v3/semantic_version.upbdefs.h +35 -0
  440. data/src/core/ext/upbdefs-generated/google/api/annotations.upbdefs.c +40 -0
  441. data/src/core/ext/upbdefs-generated/google/api/annotations.upbdefs.h +30 -0
  442. data/src/core/ext/upbdefs-generated/google/api/http.upbdefs.c +61 -0
  443. data/src/core/ext/upbdefs-generated/google/api/http.upbdefs.h +45 -0
  444. data/src/core/ext/upbdefs-generated/google/protobuf/any.upbdefs.c +39 -0
  445. data/src/core/ext/upbdefs-generated/google/protobuf/any.upbdefs.h +35 -0
  446. data/src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.c +386 -0
  447. data/src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.h +165 -0
  448. data/src/core/ext/upbdefs-generated/google/protobuf/duration.upbdefs.c +40 -0
  449. data/src/core/ext/upbdefs-generated/google/protobuf/duration.upbdefs.h +35 -0
  450. data/src/core/ext/upbdefs-generated/google/protobuf/empty.upbdefs.c +37 -0
  451. data/src/core/ext/upbdefs-generated/google/protobuf/empty.upbdefs.h +35 -0
  452. data/src/core/ext/upbdefs-generated/google/protobuf/struct.upbdefs.c +65 -0
  453. data/src/core/ext/upbdefs-generated/google/protobuf/struct.upbdefs.h +50 -0
  454. data/src/core/ext/upbdefs-generated/google/protobuf/timestamp.upbdefs.c +40 -0
  455. data/src/core/ext/upbdefs-generated/google/protobuf/timestamp.upbdefs.h +35 -0
  456. data/src/core/ext/upbdefs-generated/google/protobuf/wrappers.upbdefs.c +66 -0
  457. data/src/core/ext/upbdefs-generated/google/protobuf/wrappers.upbdefs.h +75 -0
  458. data/src/core/ext/upbdefs-generated/google/rpc/status.upbdefs.c +42 -0
  459. data/src/core/ext/upbdefs-generated/google/rpc/status.upbdefs.h +35 -0
  460. data/src/core/ext/upbdefs-generated/udpa/annotations/migrate.upbdefs.c +70 -0
  461. data/src/core/ext/upbdefs-generated/udpa/annotations/migrate.upbdefs.h +45 -0
  462. data/src/core/ext/upbdefs-generated/udpa/annotations/security.upbdefs.c +56 -0
  463. data/src/core/ext/upbdefs-generated/udpa/annotations/security.upbdefs.h +35 -0
  464. data/src/core/ext/upbdefs-generated/udpa/annotations/sensitive.upbdefs.c +33 -0
  465. data/src/core/ext/upbdefs-generated/udpa/annotations/sensitive.upbdefs.h +30 -0
  466. data/src/core/ext/upbdefs-generated/udpa/annotations/status.upbdefs.c +49 -0
  467. data/src/core/ext/upbdefs-generated/udpa/annotations/status.upbdefs.h +35 -0
  468. data/src/core/ext/upbdefs-generated/udpa/annotations/versioning.upbdefs.c +43 -0
  469. data/src/core/ext/upbdefs-generated/udpa/annotations/versioning.upbdefs.h +35 -0
  470. data/src/core/ext/upbdefs-generated/validate/validate.upbdefs.c +310 -0
  471. data/src/core/ext/upbdefs-generated/validate/validate.upbdefs.h +145 -0
  472. data/src/core/ext/upbdefs-generated/xds/core/v3/authority.upbdefs.c +42 -0
  473. data/src/core/ext/upbdefs-generated/xds/core/v3/authority.upbdefs.h +35 -0
  474. data/src/core/ext/upbdefs-generated/xds/core/v3/collection_entry.upbdefs.c +62 -0
  475. data/src/core/ext/upbdefs-generated/xds/core/v3/collection_entry.upbdefs.h +40 -0
  476. data/src/core/ext/upbdefs-generated/xds/core/v3/context_params.upbdefs.c +45 -0
  477. data/src/core/ext/upbdefs-generated/xds/core/v3/context_params.upbdefs.h +40 -0
  478. data/src/core/ext/upbdefs-generated/xds/core/v3/resource.upbdefs.c +49 -0
  479. data/src/core/ext/upbdefs-generated/xds/core/v3/resource.upbdefs.h +35 -0
  480. data/src/core/ext/upbdefs-generated/xds/core/v3/resource_locator.upbdefs.c +67 -0
  481. data/src/core/ext/upbdefs-generated/xds/core/v3/resource_locator.upbdefs.h +40 -0
  482. data/src/core/ext/upbdefs-generated/xds/core/v3/resource_name.upbdefs.c +50 -0
  483. data/src/core/ext/upbdefs-generated/xds/core/v3/resource_name.upbdefs.h +35 -0
  484. data/src/core/ext/xds/certificate_provider_factory.h +61 -0
  485. data/src/core/ext/xds/certificate_provider_registry.cc +103 -0
  486. data/src/core/ext/xds/certificate_provider_registry.h +57 -0
  487. data/src/core/ext/xds/certificate_provider_store.cc +87 -0
  488. data/src/core/ext/xds/certificate_provider_store.h +112 -0
  489. data/src/core/ext/xds/file_watcher_certificate_provider_factory.cc +144 -0
  490. data/src/core/ext/xds/file_watcher_certificate_provider_factory.h +69 -0
  491. data/src/core/ext/xds/xds_api.cc +2479 -0
  492. data/src/core/ext/xds/xds_api.h +431 -0
  493. data/src/core/ext/xds/xds_bootstrap.cc +539 -0
  494. data/src/core/ext/xds/xds_bootstrap.h +116 -0
  495. data/src/core/ext/xds/xds_certificate_provider.cc +405 -0
  496. data/src/core/ext/xds/xds_certificate_provider.h +151 -0
  497. data/src/core/ext/{filters/client_channel/xds → xds}/xds_channel_args.h +9 -6
  498. data/src/core/ext/{filters/client_channel/xds → xds}/xds_client.cc +839 -774
  499. data/src/core/ext/xds/xds_client.h +339 -0
  500. data/src/core/ext/xds/xds_client_stats.cc +159 -0
  501. data/src/core/ext/{filters/client_channel/xds → xds}/xds_client_stats.h +78 -38
  502. data/src/core/ext/xds/xds_server_config_fetcher.cc +267 -0
  503. data/src/core/lib/channel/channel_args.cc +24 -22
  504. data/src/core/lib/channel/channel_args.h +3 -2
  505. data/src/core/lib/channel/channel_stack.h +20 -13
  506. data/src/core/lib/channel/channel_trace.cc +6 -8
  507. data/src/core/lib/channel/channel_trace.h +1 -1
  508. data/src/core/lib/channel/channelz.cc +46 -94
  509. data/src/core/lib/channel/channelz.h +17 -25
  510. data/src/core/lib/channel/channelz_registry.cc +20 -15
  511. data/src/core/lib/channel/channelz_registry.h +3 -1
  512. data/src/core/lib/channel/connected_channel.cc +7 -5
  513. data/src/core/lib/channel/context.h +1 -1
  514. data/src/core/lib/channel/handshaker.cc +15 -20
  515. data/src/core/lib/channel/handshaker.h +7 -5
  516. data/src/core/lib/channel/handshaker_registry.cc +5 -17
  517. data/src/core/lib/channel/status_util.cc +2 -3
  518. data/src/core/lib/compression/compression.cc +8 -4
  519. data/src/core/lib/compression/compression_args.cc +3 -2
  520. data/src/core/lib/compression/compression_internal.cc +10 -5
  521. data/src/core/lib/compression/compression_internal.h +2 -1
  522. data/src/core/lib/compression/message_compress.cc +5 -1
  523. data/src/core/lib/compression/stream_compression_identity.cc +1 -3
  524. data/src/core/lib/debug/stats.cc +21 -27
  525. data/src/core/lib/debug/stats.h +5 -3
  526. data/src/core/lib/debug/stats_data.cc +1 -0
  527. data/src/core/lib/debug/stats_data.h +13 -13
  528. data/src/core/lib/gpr/alloc.cc +3 -2
  529. data/src/core/lib/gpr/cpu_iphone.cc +10 -2
  530. data/src/core/lib/gpr/log.cc +59 -17
  531. data/src/core/lib/gpr/log_linux.cc +23 -9
  532. data/src/core/lib/gpr/log_posix.cc +19 -7
  533. data/src/core/lib/gpr/log_windows.cc +18 -4
  534. data/src/core/lib/gpr/murmur_hash.cc +1 -1
  535. data/src/core/lib/gpr/spinlock.h +12 -5
  536. data/src/core/lib/gpr/string.cc +33 -55
  537. data/src/core/lib/gpr/string.h +9 -24
  538. data/src/core/lib/gpr/sync.cc +4 -4
  539. data/src/core/lib/gpr/sync_abseil.cc +2 -0
  540. data/src/core/lib/gpr/sync_posix.cc +2 -8
  541. data/src/core/lib/gpr/time.cc +16 -12
  542. data/src/core/lib/gpr/time_posix.cc +1 -1
  543. data/src/core/lib/gpr/time_precise.cc +5 -2
  544. data/src/core/lib/gpr/time_precise.h +6 -2
  545. data/src/core/lib/gpr/tls.h +4 -0
  546. data/src/core/lib/gpr/tls_msvc.h +2 -0
  547. data/src/core/lib/gpr/tls_stdcpp.h +48 -0
  548. data/src/core/lib/gpr/useful.h +5 -4
  549. data/src/core/lib/gprpp/arena.h +3 -2
  550. data/src/core/lib/gprpp/atomic.h +6 -6
  551. data/src/core/lib/gprpp/dual_ref_counted.h +331 -0
  552. data/src/core/lib/gprpp/examine_stack.cc +43 -0
  553. data/src/core/lib/gprpp/examine_stack.h +46 -0
  554. data/src/core/lib/gprpp/fork.cc +3 -3
  555. data/src/core/lib/gprpp/global_config_env.cc +8 -6
  556. data/src/core/lib/gprpp/host_port.cc +29 -35
  557. data/src/core/lib/gprpp/host_port.h +14 -17
  558. data/src/core/lib/gprpp/manual_constructor.h +1 -1
  559. data/src/core/lib/gprpp/mpscq.cc +2 -2
  560. data/src/core/lib/gprpp/orphanable.h +4 -8
  561. data/src/core/lib/gprpp/ref_counted.h +91 -68
  562. data/src/core/lib/gprpp/ref_counted_ptr.h +171 -7
  563. data/src/core/lib/gprpp/stat.h +38 -0
  564. data/src/core/lib/gprpp/stat_posix.cc +49 -0
  565. data/src/core/lib/gprpp/stat_windows.cc +48 -0
  566. data/src/core/lib/gprpp/sync.h +129 -40
  567. data/src/core/lib/gprpp/thd.h +2 -2
  568. data/src/core/lib/gprpp/thd_posix.cc +42 -37
  569. data/src/core/lib/gprpp/thd_windows.cc +3 -1
  570. data/src/core/lib/gprpp/time_util.cc +77 -0
  571. data/src/core/lib/gprpp/time_util.h +42 -0
  572. data/src/core/lib/http/format_request.cc +46 -65
  573. data/src/core/lib/http/httpcli.cc +16 -14
  574. data/src/core/lib/http/httpcli.h +4 -6
  575. data/src/core/lib/http/httpcli_security_connector.cc +13 -13
  576. data/src/core/lib/http/parser.cc +47 -27
  577. data/src/core/lib/http/parser.h +2 -3
  578. data/src/core/lib/iomgr/buffer_list.h +22 -21
  579. data/src/core/lib/iomgr/call_combiner.cc +8 -5
  580. data/src/core/lib/iomgr/call_combiner.h +3 -2
  581. data/src/core/lib/iomgr/cfstream_handle.cc +4 -2
  582. data/src/core/lib/iomgr/closure.h +2 -3
  583. data/src/core/lib/iomgr/combiner.cc +2 -1
  584. data/src/core/lib/iomgr/dualstack_socket_posix.cc +47 -0
  585. data/src/core/lib/iomgr/endpoint.cc +5 -1
  586. data/src/core/lib/iomgr/endpoint.h +8 -4
  587. data/src/core/lib/iomgr/endpoint_cfstream.cc +38 -14
  588. data/src/core/lib/iomgr/endpoint_pair.h +2 -3
  589. data/src/core/lib/iomgr/endpoint_pair_posix.cc +10 -10
  590. data/src/core/lib/iomgr/error.cc +23 -21
  591. data/src/core/lib/iomgr/error.h +0 -1
  592. data/src/core/lib/iomgr/error_cfstream.cc +9 -8
  593. data/src/core/lib/iomgr/error_internal.h +1 -1
  594. data/src/core/lib/iomgr/ev_apple.cc +359 -0
  595. data/src/core/lib/iomgr/ev_apple.h +43 -0
  596. data/src/core/lib/iomgr/ev_epoll1_linux.cc +43 -40
  597. data/src/core/lib/iomgr/ev_epollex_linux.cc +46 -45
  598. data/src/core/lib/iomgr/ev_poll_posix.cc +18 -15
  599. data/src/core/lib/iomgr/ev_posix.cc +2 -3
  600. data/src/core/lib/iomgr/exec_ctx.cc +1 -1
  601. data/src/core/lib/iomgr/exec_ctx.h +26 -10
  602. data/src/core/lib/iomgr/executor.cc +2 -1
  603. data/src/core/lib/iomgr/executor.h +1 -1
  604. data/src/core/lib/iomgr/executor/mpmcqueue.h +5 -5
  605. data/src/core/lib/iomgr/executor/threadpool.h +4 -4
  606. data/src/core/lib/iomgr/iomgr.cc +1 -1
  607. data/src/core/lib/iomgr/iomgr_posix.cc +0 -1
  608. data/src/core/lib/iomgr/iomgr_posix_cfstream.cc +84 -21
  609. data/src/core/lib/iomgr/is_epollexclusive_available.cc +14 -0
  610. data/src/core/lib/iomgr/load_file.h +1 -1
  611. data/src/core/lib/iomgr/lockfree_event.cc +19 -14
  612. data/src/core/lib/iomgr/lockfree_event.h +2 -2
  613. data/src/core/lib/iomgr/parse_address.cc +322 -0
  614. data/src/core/lib/iomgr/parse_address.h +77 -0
  615. data/src/core/lib/iomgr/poller/eventmanager_libuv.cc +2 -1
  616. data/src/core/lib/iomgr/poller/eventmanager_libuv.h +1 -1
  617. data/src/core/lib/iomgr/pollset_set_custom.cc +11 -11
  618. data/src/core/lib/{gprpp/optional.h → iomgr/pollset_uv.h} +11 -12
  619. data/src/core/lib/iomgr/port.h +2 -21
  620. data/src/core/lib/iomgr/python_util.h +46 -0
  621. data/src/core/lib/iomgr/resolve_address.cc +4 -4
  622. data/src/core/lib/iomgr/resolve_address.h +4 -6
  623. data/src/core/lib/iomgr/resolve_address_custom.cc +42 -57
  624. data/src/core/lib/iomgr/resolve_address_custom.h +4 -2
  625. data/src/core/lib/iomgr/resolve_address_posix.cc +11 -16
  626. data/src/core/lib/iomgr/resolve_address_windows.cc +16 -25
  627. data/src/core/lib/iomgr/resource_quota.cc +38 -37
  628. data/src/core/lib/iomgr/sockaddr_utils.cc +41 -44
  629. data/src/core/lib/iomgr/sockaddr_utils.h +13 -17
  630. data/src/core/lib/iomgr/socket_factory_posix.cc +3 -2
  631. data/src/core/lib/iomgr/socket_factory_posix.h +2 -3
  632. data/src/core/lib/iomgr/socket_mutator.cc +3 -2
  633. data/src/core/lib/iomgr/socket_mutator.h +2 -3
  634. data/src/core/lib/iomgr/socket_utils_common_posix.cc +103 -81
  635. data/src/core/lib/iomgr/socket_utils_posix.h +3 -0
  636. data/src/core/lib/iomgr/socket_windows.cc +4 -5
  637. data/src/core/lib/iomgr/tcp_client.cc +3 -3
  638. data/src/core/lib/iomgr/tcp_client_cfstream.cc +14 -18
  639. data/src/core/lib/iomgr/tcp_client_custom.cc +13 -15
  640. data/src/core/lib/iomgr/tcp_client_posix.cc +31 -37
  641. data/src/core/lib/iomgr/tcp_client_windows.cc +10 -11
  642. data/src/core/lib/iomgr/tcp_custom.cc +56 -36
  643. data/src/core/lib/iomgr/tcp_custom.h +1 -1
  644. data/src/core/lib/iomgr/tcp_posix.cc +47 -25
  645. data/src/core/lib/iomgr/tcp_server.cc +3 -4
  646. data/src/core/lib/iomgr/tcp_server.h +7 -5
  647. data/src/core/lib/iomgr/tcp_server_custom.cc +39 -45
  648. data/src/core/lib/iomgr/tcp_server_posix.cc +38 -44
  649. data/src/core/lib/iomgr/tcp_server_utils_posix.h +3 -4
  650. data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +7 -8
  651. data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc +10 -18
  652. data/src/core/lib/iomgr/tcp_server_windows.cc +16 -16
  653. data/src/core/lib/iomgr/tcp_uv.cc +3 -2
  654. data/src/core/lib/iomgr/tcp_windows.cc +26 -10
  655. data/src/core/lib/iomgr/time_averaged_stats.h +2 -3
  656. data/src/core/lib/iomgr/timer_custom.cc +5 -5
  657. data/src/core/lib/iomgr/timer_generic.cc +18 -18
  658. data/src/core/lib/{gprpp/inlined_vector.h → iomgr/timer_generic.h} +19 -17
  659. data/src/core/lib/iomgr/timer_heap.h +2 -3
  660. data/src/core/lib/iomgr/timer_manager.cc +2 -2
  661. data/src/core/lib/iomgr/udp_server.cc +33 -38
  662. data/src/core/lib/iomgr/udp_server.h +6 -4
  663. data/src/core/lib/iomgr/unix_sockets_posix.cc +36 -30
  664. data/src/core/lib/iomgr/unix_sockets_posix.h +8 -1
  665. data/src/core/lib/iomgr/unix_sockets_posix_noop.cc +12 -2
  666. data/src/core/lib/iomgr/wakeup_fd_pipe.cc +2 -2
  667. data/src/core/lib/json/json.h +15 -4
  668. data/src/core/lib/json/json_reader.cc +33 -30
  669. data/src/core/lib/json/json_util.cc +58 -0
  670. data/src/core/lib/json/json_util.h +204 -0
  671. data/src/core/lib/json/json_writer.cc +15 -13
  672. data/src/core/lib/security/authorization/authorization_engine.cc +177 -0
  673. data/src/core/lib/security/authorization/authorization_engine.h +84 -0
  674. data/src/core/lib/security/authorization/evaluate_args.cc +148 -0
  675. data/src/core/lib/security/authorization/evaluate_args.h +59 -0
  676. data/src/core/lib/security/authorization/matchers.cc +339 -0
  677. data/src/core/lib/security/authorization/matchers.h +158 -0
  678. data/src/core/lib/security/authorization/mock_cel/activation.h +57 -0
  679. data/src/core/lib/security/authorization/mock_cel/cel_expr_builder_factory.h +44 -0
  680. data/src/core/lib/security/authorization/mock_cel/cel_expression.h +69 -0
  681. data/src/core/lib/security/authorization/mock_cel/cel_value.h +99 -0
  682. data/src/core/lib/security/authorization/mock_cel/evaluator_core.h +67 -0
  683. data/src/core/lib/security/authorization/mock_cel/flat_expr_builder.h +57 -0
  684. data/src/core/lib/security/context/security_context.cc +4 -3
  685. data/src/core/lib/security/context/security_context.h +3 -1
  686. data/src/core/lib/security/credentials/alts/alts_credentials.cc +2 -1
  687. data/src/core/lib/security/credentials/alts/alts_credentials.h +1 -1
  688. data/src/core/lib/security/credentials/alts/check_gcp_environment.cc +1 -1
  689. data/src/core/lib/security/credentials/composite/composite_credentials.cc +12 -0
  690. data/src/core/lib/security/credentials/composite/composite_credentials.h +6 -3
  691. data/src/core/lib/security/credentials/credentials.cc +7 -91
  692. data/src/core/lib/security/credentials/credentials.h +18 -66
  693. data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +413 -0
  694. data/src/core/lib/security/credentials/external/aws_external_account_credentials.h +80 -0
  695. data/src/core/lib/security/credentials/external/aws_request_signer.cc +213 -0
  696. data/src/core/lib/security/credentials/external/aws_request_signer.h +72 -0
  697. data/src/core/lib/security/credentials/external/external_account_credentials.cc +497 -0
  698. data/src/core/lib/security/credentials/external/external_account_credentials.h +120 -0
  699. data/src/core/lib/security/credentials/external/file_external_account_credentials.cc +135 -0
  700. data/src/core/lib/security/credentials/external/file_external_account_credentials.h +48 -0
  701. data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +213 -0
  702. data/src/core/lib/security/credentials/external/url_external_account_credentials.h +58 -0
  703. data/src/core/lib/security/credentials/fake/fake_credentials.cc +3 -2
  704. data/src/core/lib/security/credentials/fake/fake_credentials.h +4 -0
  705. data/src/core/lib/security/credentials/google_default/credentials_generic.cc +8 -6
  706. data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +90 -67
  707. data/src/core/lib/security/credentials/iam/iam_credentials.cc +8 -6
  708. data/src/core/lib/security/credentials/iam/iam_credentials.h +4 -0
  709. data/src/core/lib/security/credentials/insecure/insecure_credentials.cc +64 -0
  710. data/src/core/lib/security/credentials/jwt/json_token.cc +4 -4
  711. data/src/core/lib/security/credentials/jwt/json_token.h +2 -5
  712. data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +7 -4
  713. data/src/core/lib/security/credentials/jwt/jwt_credentials.h +13 -0
  714. data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +13 -19
  715. data/src/core/lib/security/credentials/jwt/jwt_verifier.h +2 -3
  716. data/src/core/lib/security/credentials/local/local_credentials.cc +2 -1
  717. data/src/core/lib/security/credentials/local/local_credentials.h +1 -1
  718. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +109 -97
  719. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +14 -7
  720. data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +20 -7
  721. data/src/core/lib/security/credentials/plugin/plugin_credentials.h +2 -0
  722. data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +27 -6
  723. data/src/core/lib/security/credentials/ssl/ssl_credentials.h +12 -2
  724. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.cc +346 -0
  725. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.h +213 -0
  726. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +399 -0
  727. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h +138 -0
  728. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +78 -140
  729. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +74 -167
  730. data/src/core/lib/security/credentials/tls/tls_credentials.cc +18 -13
  731. data/src/core/lib/security/credentials/tls/tls_credentials.h +3 -3
  732. data/src/core/lib/security/credentials/tls/tls_utils.cc +91 -0
  733. data/src/core/lib/security/credentials/tls/tls_utils.h +38 -0
  734. data/src/core/lib/security/credentials/xds/xds_credentials.cc +244 -0
  735. data/src/core/lib/security/credentials/xds/xds_credentials.h +69 -0
  736. data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +22 -7
  737. data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +27 -32
  738. data/src/core/lib/security/security_connector/insecure/insecure_security_connector.cc +121 -0
  739. data/src/core/lib/security/security_connector/insecure/insecure_security_connector.h +87 -0
  740. data/src/core/lib/security/security_connector/load_system_roots.h +4 -0
  741. data/src/core/lib/security/security_connector/load_system_roots_linux.cc +3 -2
  742. data/src/core/lib/security/security_connector/load_system_roots_linux.h +2 -0
  743. data/src/core/lib/security/security_connector/local/local_security_connector.cc +4 -4
  744. data/src/core/lib/security/security_connector/security_connector.cc +6 -3
  745. data/src/core/lib/security/security_connector/security_connector.h +6 -4
  746. data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +42 -40
  747. data/src/core/lib/security/security_connector/ssl/ssl_security_connector.h +8 -5
  748. data/src/core/lib/security/security_connector/ssl_utils.cc +94 -23
  749. data/src/core/lib/security/security_connector/ssl_utils.h +37 -31
  750. data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +388 -284
  751. data/src/core/lib/security/security_connector/tls/tls_security_connector.h +108 -42
  752. data/src/core/lib/security/transport/auth_filters.h +0 -5
  753. data/src/core/lib/security/transport/client_auth_filter.cc +11 -11
  754. data/src/core/lib/security/transport/secure_endpoint.cc +9 -3
  755. data/src/core/lib/security/transport/security_handshaker.cc +4 -6
  756. data/src/core/lib/security/transport/server_auth_filter.cc +2 -1
  757. data/src/core/lib/security/util/json_util.cc +12 -13
  758. data/src/core/lib/security/util/json_util.h +1 -0
  759. data/src/core/lib/slice/slice.cc +45 -5
  760. data/src/core/lib/slice/slice_buffer.cc +2 -1
  761. data/src/core/lib/slice/slice_intern.cc +9 -11
  762. data/src/core/lib/slice/slice_internal.h +17 -2
  763. data/src/core/lib/slice/slice_utils.h +9 -0
  764. data/src/core/lib/surface/byte_buffer_reader.cc +2 -47
  765. data/src/core/lib/surface/call.cc +95 -88
  766. data/src/core/lib/surface/call.h +2 -1
  767. data/src/core/lib/surface/call_details.cc +8 -8
  768. data/src/core/lib/surface/call_log_batch.cc +50 -58
  769. data/src/core/lib/surface/channel.cc +86 -72
  770. data/src/core/lib/surface/channel.h +54 -7
  771. data/src/core/lib/surface/channel_init.cc +1 -1
  772. data/src/core/lib/surface/channel_ping.cc +2 -3
  773. data/src/core/lib/surface/completion_queue.cc +63 -62
  774. data/src/core/lib/surface/completion_queue.h +16 -16
  775. data/src/core/lib/surface/event_string.cc +18 -25
  776. data/src/core/lib/surface/event_string.h +3 -1
  777. data/src/core/lib/surface/init.cc +45 -29
  778. data/src/core/lib/surface/init_secure.cc +1 -4
  779. data/src/core/lib/surface/lame_client.cc +20 -46
  780. data/src/core/lib/surface/lame_client.h +4 -0
  781. data/src/core/lib/surface/server.cc +1311 -1309
  782. data/src/core/lib/surface/server.h +410 -45
  783. data/src/core/lib/surface/validate_metadata.h +3 -0
  784. data/src/core/lib/surface/version.cc +2 -2
  785. data/src/core/lib/transport/authority_override.cc +40 -0
  786. data/src/core/lib/transport/authority_override.h +37 -0
  787. data/src/core/lib/transport/bdp_estimator.cc +1 -1
  788. data/src/core/lib/transport/bdp_estimator.h +2 -1
  789. data/src/core/lib/transport/byte_stream.h +10 -5
  790. data/src/core/lib/transport/connectivity_state.cc +23 -17
  791. data/src/core/lib/transport/connectivity_state.h +31 -15
  792. data/src/core/lib/transport/error_utils.cc +13 -0
  793. data/src/core/lib/transport/error_utils.h +7 -1
  794. data/src/core/lib/transport/metadata.cc +19 -5
  795. data/src/core/lib/transport/metadata.h +2 -2
  796. data/src/core/lib/transport/metadata_batch.h +6 -7
  797. data/src/core/lib/transport/static_metadata.cc +296 -277
  798. data/src/core/lib/transport/static_metadata.h +81 -74
  799. data/src/core/lib/transport/status_conversion.cc +6 -14
  800. data/src/core/lib/transport/status_metadata.cc +4 -3
  801. data/src/core/lib/transport/timeout_encoding.cc +4 -4
  802. data/src/core/lib/transport/transport.cc +7 -6
  803. data/src/core/lib/transport/transport.h +24 -10
  804. data/src/core/lib/transport/transport_op_string.cc +61 -102
  805. data/src/core/lib/uri/uri_parser.cc +135 -258
  806. data/src/core/lib/uri/uri_parser.h +60 -23
  807. data/src/core/plugin_registry/grpc_plugin_registry.cc +59 -12
  808. data/src/core/tsi/alts/crypt/aes_gcm.cc +0 -2
  809. data/src/core/tsi/alts/crypt/gsec.cc +5 -4
  810. data/src/core/tsi/alts/frame_protector/frame_handler.cc +8 -6
  811. data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +48 -34
  812. data/src/core/tsi/alts/handshaker/alts_handshaker_client.h +8 -4
  813. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +98 -48
  814. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.h +9 -1
  815. data/src/core/tsi/alts/handshaker/transport_security_common_api.cc +2 -0
  816. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.h +2 -3
  817. data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc +8 -6
  818. data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +4 -4
  819. data/src/core/tsi/fake_transport_security.cc +17 -19
  820. data/src/core/tsi/local_transport_security.cc +5 -1
  821. data/src/core/tsi/local_transport_security.h +6 -7
  822. data/src/core/tsi/ssl/session_cache/ssl_session.h +0 -2
  823. data/src/core/tsi/ssl/session_cache/ssl_session_boringssl.cc +1 -1
  824. data/src/core/tsi/ssl/session_cache/ssl_session_cache.cc +0 -2
  825. data/src/core/tsi/ssl/session_cache/ssl_session_cache.h +3 -4
  826. data/src/core/tsi/ssl_transport_security.cc +226 -105
  827. data/src/core/tsi/ssl_transport_security.h +28 -16
  828. data/src/core/tsi/ssl_types.h +0 -2
  829. data/src/core/tsi/transport_security.cc +10 -8
  830. data/src/core/tsi/transport_security.h +6 -9
  831. data/src/core/tsi/transport_security_grpc.h +2 -3
  832. data/src/core/tsi/transport_security_interface.h +9 -4
  833. data/src/ruby/bin/math_services_pb.rb +4 -4
  834. data/src/ruby/ext/grpc/extconf.rb +6 -3
  835. data/src/ruby/ext/grpc/rb_call.c +12 -3
  836. data/src/ruby/ext/grpc/rb_call.h +4 -0
  837. data/src/ruby/ext/grpc/rb_call_credentials.c +57 -12
  838. data/src/ruby/ext/grpc/rb_channel_credentials.c +9 -0
  839. data/src/ruby/ext/grpc/rb_event_thread.c +2 -0
  840. data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +42 -18
  841. data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +80 -44
  842. data/src/ruby/lib/grpc/errors.rb +103 -42
  843. data/src/ruby/lib/grpc/generic/active_call.rb +2 -3
  844. data/src/ruby/lib/grpc/generic/client_stub.rb +1 -1
  845. data/src/ruby/lib/grpc/generic/interceptors.rb +5 -5
  846. data/src/ruby/lib/grpc/generic/rpc_server.rb +9 -10
  847. data/src/ruby/lib/grpc/generic/service.rb +5 -4
  848. data/src/ruby/lib/grpc/structs.rb +1 -1
  849. data/src/ruby/lib/grpc/version.rb +1 -1
  850. data/src/ruby/pb/generate_proto_ruby.sh +5 -3
  851. data/src/ruby/pb/grpc/health/v1/health_services_pb.rb +2 -2
  852. data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +51 -0
  853. data/src/ruby/pb/src/proto/grpc/testing/test_services_pb.rb +61 -11
  854. data/src/ruby/spec/channel_credentials_spec.rb +10 -0
  855. data/src/ruby/spec/debug_message_spec.rb +134 -0
  856. data/src/ruby/spec/generic/active_call_spec.rb +19 -8
  857. data/src/ruby/spec/generic/service_spec.rb +2 -0
  858. data/src/ruby/spec/pb/codegen/grpc/testing/package_options_import2.proto +23 -0
  859. data/src/ruby/spec/pb/codegen/grpc/testing/package_options_ruby_style.proto +7 -0
  860. data/src/ruby/spec/pb/codegen/grpc/testing/same_package_service_name.proto +27 -0
  861. data/src/ruby/spec/pb/codegen/grpc/testing/same_ruby_package_service_name.proto +29 -0
  862. data/src/ruby/spec/pb/codegen/package_option_spec.rb +29 -7
  863. data/src/ruby/spec/support/services.rb +10 -4
  864. data/src/ruby/spec/testdata/ca.pem +18 -13
  865. data/src/ruby/spec/testdata/client.key +26 -14
  866. data/src/ruby/spec/testdata/client.pem +18 -12
  867. data/src/ruby/spec/testdata/server1.key +26 -14
  868. data/src/ruby/spec/testdata/server1.pem +20 -14
  869. data/src/ruby/spec/user_agent_spec.rb +74 -0
  870. data/third_party/abseil-cpp/absl/algorithm/container.h +1764 -0
  871. data/third_party/abseil-cpp/absl/base/attributes.h +99 -38
  872. data/third_party/abseil-cpp/absl/base/call_once.h +1 -1
  873. data/third_party/abseil-cpp/absl/base/casts.h +9 -6
  874. data/third_party/abseil-cpp/absl/base/config.h +60 -17
  875. data/third_party/abseil-cpp/absl/base/dynamic_annotations.h +428 -335
  876. data/third_party/abseil-cpp/absl/base/internal/bits.h +17 -16
  877. data/third_party/abseil-cpp/absl/base/internal/direct_mmap.h +166 -0
  878. data/third_party/abseil-cpp/absl/base/internal/dynamic_annotations.h +398 -0
  879. data/third_party/abseil-cpp/absl/base/internal/exponential_biased.cc +93 -0
  880. data/third_party/abseil-cpp/absl/base/internal/exponential_biased.h +130 -0
  881. data/third_party/abseil-cpp/absl/base/internal/invoke.h +4 -4
  882. data/third_party/abseil-cpp/absl/base/internal/low_level_alloc.cc +620 -0
  883. data/third_party/abseil-cpp/absl/base/internal/low_level_alloc.h +126 -0
  884. data/third_party/abseil-cpp/absl/base/internal/low_level_scheduling.h +29 -1
  885. data/third_party/abseil-cpp/absl/base/internal/raw_logging.cc +2 -2
  886. data/third_party/abseil-cpp/absl/base/internal/raw_logging.h +7 -5
  887. data/third_party/abseil-cpp/absl/base/internal/spinlock.cc +25 -38
  888. data/third_party/abseil-cpp/absl/base/internal/spinlock.h +19 -25
  889. data/third_party/abseil-cpp/absl/base/internal/spinlock_linux.inc +8 -0
  890. data/third_party/abseil-cpp/absl/base/internal/sysinfo.cc +28 -5
  891. data/third_party/abseil-cpp/absl/base/internal/sysinfo.h +8 -0
  892. data/third_party/abseil-cpp/absl/base/internal/tsan_mutex_interface.h +3 -1
  893. data/third_party/abseil-cpp/absl/base/internal/unaligned_access.h +2 -2
  894. data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.h +3 -3
  895. data/third_party/abseil-cpp/absl/base/macros.h +36 -109
  896. data/third_party/abseil-cpp/absl/base/optimization.h +61 -1
  897. data/third_party/abseil-cpp/absl/base/options.h +31 -4
  898. data/third_party/abseil-cpp/absl/base/policy_checks.h +1 -1
  899. data/third_party/abseil-cpp/absl/base/thread_annotations.h +94 -39
  900. data/third_party/abseil-cpp/absl/container/fixed_array.h +532 -0
  901. data/third_party/abseil-cpp/absl/container/flat_hash_map.h +606 -0
  902. data/third_party/abseil-cpp/absl/container/flat_hash_set.h +504 -0
  903. data/third_party/abseil-cpp/absl/container/inlined_vector.h +33 -36
  904. data/third_party/abseil-cpp/absl/container/internal/common.h +206 -0
  905. data/third_party/abseil-cpp/absl/container/internal/compressed_tuple.h +33 -8
  906. data/third_party/abseil-cpp/absl/container/internal/container_memory.h +460 -0
  907. data/third_party/abseil-cpp/absl/container/internal/hash_function_defaults.h +161 -0
  908. data/third_party/abseil-cpp/absl/container/internal/hash_policy_traits.h +208 -0
  909. data/third_party/abseil-cpp/absl/container/internal/hashtable_debug_hooks.h +85 -0
  910. data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.cc +270 -0
  911. data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.h +321 -0
  912. data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler_force_weak_definition.cc +30 -0
  913. data/third_party/abseil-cpp/absl/container/internal/have_sse.h +50 -0
  914. data/third_party/abseil-cpp/absl/container/internal/layout.h +743 -0
  915. data/third_party/abseil-cpp/absl/container/internal/raw_hash_map.h +197 -0
  916. data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.cc +48 -0
  917. data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.h +1903 -0
  918. data/third_party/abseil-cpp/absl/debugging/internal/address_is_readable.cc +139 -0
  919. data/third_party/abseil-cpp/absl/debugging/internal/address_is_readable.h +32 -0
  920. data/third_party/abseil-cpp/absl/debugging/internal/demangle.cc +1945 -0
  921. data/third_party/abseil-cpp/absl/debugging/internal/demangle.h +71 -0
  922. data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.cc +382 -0
  923. data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.h +134 -0
  924. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_aarch64-inl.inc +196 -0
  925. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_arm-inl.inc +134 -0
  926. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_config.h +89 -0
  927. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_generic-inl.inc +108 -0
  928. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_powerpc-inl.inc +248 -0
  929. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_unimplemented-inl.inc +24 -0
  930. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_win32-inl.inc +93 -0
  931. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_x86-inl.inc +346 -0
  932. data/third_party/abseil-cpp/absl/debugging/internal/symbolize.h +149 -0
  933. data/third_party/abseil-cpp/absl/debugging/internal/vdso_support.cc +173 -0
  934. data/third_party/abseil-cpp/absl/debugging/internal/vdso_support.h +158 -0
  935. data/third_party/abseil-cpp/absl/debugging/stacktrace.cc +140 -0
  936. data/third_party/abseil-cpp/absl/debugging/stacktrace.h +231 -0
  937. data/third_party/abseil-cpp/absl/debugging/symbolize.cc +36 -0
  938. data/third_party/abseil-cpp/absl/debugging/symbolize.h +99 -0
  939. data/third_party/abseil-cpp/absl/debugging/symbolize_darwin.inc +101 -0
  940. data/third_party/abseil-cpp/absl/debugging/symbolize_elf.inc +1560 -0
  941. data/third_party/abseil-cpp/absl/debugging/symbolize_unimplemented.inc +40 -0
  942. data/third_party/abseil-cpp/absl/debugging/symbolize_win32.inc +81 -0
  943. data/third_party/abseil-cpp/absl/functional/bind_front.h +184 -0
  944. data/third_party/abseil-cpp/absl/functional/function_ref.h +139 -0
  945. data/third_party/abseil-cpp/absl/functional/internal/front_binder.h +95 -0
  946. data/third_party/abseil-cpp/absl/functional/internal/function_ref.h +106 -0
  947. data/third_party/abseil-cpp/absl/hash/hash.h +325 -0
  948. data/third_party/abseil-cpp/absl/hash/internal/city.cc +346 -0
  949. data/third_party/abseil-cpp/absl/hash/internal/city.h +96 -0
  950. data/third_party/abseil-cpp/absl/hash/internal/hash.cc +55 -0
  951. data/third_party/abseil-cpp/absl/hash/internal/hash.h +996 -0
  952. data/third_party/abseil-cpp/absl/memory/memory.h +4 -0
  953. data/third_party/abseil-cpp/absl/meta/type_traits.h +2 -8
  954. data/third_party/abseil-cpp/absl/numeric/int128.cc +13 -27
  955. data/third_party/abseil-cpp/absl/numeric/int128.h +16 -15
  956. data/third_party/abseil-cpp/absl/status/internal/status_internal.h +51 -0
  957. data/third_party/abseil-cpp/absl/status/internal/statusor_internal.h +399 -0
  958. data/third_party/abseil-cpp/absl/status/status.cc +445 -0
  959. data/third_party/abseil-cpp/absl/status/status.h +817 -0
  960. data/third_party/abseil-cpp/absl/status/status_payload_printer.cc +38 -0
  961. data/third_party/abseil-cpp/absl/status/status_payload_printer.h +51 -0
  962. data/third_party/abseil-cpp/absl/status/statusor.cc +71 -0
  963. data/third_party/abseil-cpp/absl/status/statusor.h +760 -0
  964. data/third_party/abseil-cpp/absl/strings/charconv.cc +2 -2
  965. data/third_party/abseil-cpp/absl/strings/cord.cc +1998 -0
  966. data/third_party/abseil-cpp/absl/strings/cord.h +1276 -0
  967. data/third_party/abseil-cpp/absl/strings/escaping.cc +9 -9
  968. data/third_party/abseil-cpp/absl/strings/internal/char_map.h +1 -1
  969. data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.cc +1 -1
  970. data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.h +2 -2
  971. data/third_party/abseil-cpp/absl/strings/internal/charconv_parse.cc +2 -2
  972. data/third_party/abseil-cpp/absl/strings/internal/cord_internal.h +173 -0
  973. data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.cc +222 -136
  974. data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.h +136 -64
  975. data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.cc +1 -1
  976. data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.h +14 -21
  977. data/third_party/abseil-cpp/absl/strings/internal/str_format/checker.h +7 -14
  978. data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.cc +31 -7
  979. data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.h +147 -135
  980. data/third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.cc +999 -87
  981. data/third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.h +3 -3
  982. data/third_party/abseil-cpp/absl/strings/internal/str_format/output.h +4 -12
  983. data/third_party/abseil-cpp/absl/strings/internal/str_format/parser.cc +8 -6
  984. data/third_party/abseil-cpp/absl/strings/internal/str_format/parser.h +13 -11
  985. data/third_party/abseil-cpp/absl/strings/internal/str_split_internal.h +2 -2
  986. data/third_party/abseil-cpp/absl/strings/str_cat.cc +4 -4
  987. data/third_party/abseil-cpp/absl/strings/str_cat.h +1 -1
  988. data/third_party/abseil-cpp/absl/strings/str_format.h +289 -13
  989. data/third_party/abseil-cpp/absl/strings/str_split.cc +2 -2
  990. data/third_party/abseil-cpp/absl/strings/str_split.h +1 -0
  991. data/third_party/abseil-cpp/absl/strings/string_view.h +26 -19
  992. data/third_party/abseil-cpp/absl/strings/substitute.cc +5 -5
  993. data/third_party/abseil-cpp/absl/strings/substitute.h +32 -29
  994. data/third_party/abseil-cpp/absl/synchronization/barrier.cc +52 -0
  995. data/third_party/abseil-cpp/absl/synchronization/barrier.h +79 -0
  996. data/third_party/abseil-cpp/absl/synchronization/blocking_counter.cc +57 -0
  997. data/third_party/abseil-cpp/absl/synchronization/blocking_counter.h +99 -0
  998. data/third_party/abseil-cpp/absl/synchronization/internal/create_thread_identity.cc +140 -0
  999. data/third_party/abseil-cpp/absl/synchronization/internal/create_thread_identity.h +60 -0
  1000. data/third_party/abseil-cpp/absl/synchronization/internal/graphcycles.cc +698 -0
  1001. data/third_party/abseil-cpp/absl/synchronization/internal/graphcycles.h +141 -0
  1002. data/third_party/abseil-cpp/absl/synchronization/internal/kernel_timeout.h +155 -0
  1003. data/third_party/abseil-cpp/absl/synchronization/internal/mutex_nonprod.inc +249 -0
  1004. data/third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.cc +106 -0
  1005. data/third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.h +115 -0
  1006. data/third_party/abseil-cpp/absl/synchronization/internal/waiter.cc +492 -0
  1007. data/third_party/abseil-cpp/absl/synchronization/internal/waiter.h +159 -0
  1008. data/third_party/abseil-cpp/absl/synchronization/mutex.cc +2739 -0
  1009. data/third_party/abseil-cpp/absl/synchronization/mutex.h +1065 -0
  1010. data/third_party/abseil-cpp/absl/synchronization/notification.cc +78 -0
  1011. data/third_party/abseil-cpp/absl/synchronization/notification.h +123 -0
  1012. data/third_party/abseil-cpp/absl/time/civil_time.cc +175 -0
  1013. data/third_party/abseil-cpp/absl/time/civil_time.h +538 -0
  1014. data/third_party/abseil-cpp/absl/time/clock.cc +569 -0
  1015. data/third_party/abseil-cpp/absl/time/clock.h +74 -0
  1016. data/third_party/abseil-cpp/absl/time/duration.cc +953 -0
  1017. data/third_party/abseil-cpp/absl/time/format.cc +160 -0
  1018. data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/civil_time.h +332 -0
  1019. data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/civil_time_detail.h +632 -0
  1020. data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/time_zone.h +386 -0
  1021. data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/zone_info_source.h +102 -0
  1022. data/third_party/abseil-cpp/absl/time/internal/cctz/src/civil_time_detail.cc +94 -0
  1023. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.cc +140 -0
  1024. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.h +52 -0
  1025. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_format.cc +1029 -0
  1026. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.cc +45 -0
  1027. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.h +76 -0
  1028. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.cc +113 -0
  1029. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.h +93 -0
  1030. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.cc +965 -0
  1031. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.h +137 -0
  1032. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.cc +309 -0
  1033. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.h +55 -0
  1034. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup.cc +187 -0
  1035. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_posix.cc +159 -0
  1036. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_posix.h +132 -0
  1037. data/third_party/abseil-cpp/absl/time/internal/cctz/src/tzfile.h +122 -0
  1038. data/third_party/abseil-cpp/absl/time/internal/cctz/src/zone_info_source.cc +116 -0
  1039. data/third_party/abseil-cpp/absl/time/internal/get_current_time_chrono.inc +31 -0
  1040. data/third_party/abseil-cpp/absl/time/internal/get_current_time_posix.inc +24 -0
  1041. data/third_party/abseil-cpp/absl/time/time.cc +499 -0
  1042. data/third_party/abseil-cpp/absl/time/time.h +1583 -0
  1043. data/third_party/abseil-cpp/absl/types/bad_variant_access.cc +64 -0
  1044. data/third_party/abseil-cpp/absl/types/bad_variant_access.h +82 -0
  1045. data/third_party/abseil-cpp/absl/types/internal/variant.h +1646 -0
  1046. data/third_party/abseil-cpp/absl/types/optional.h +9 -9
  1047. data/third_party/abseil-cpp/absl/types/span.h +49 -36
  1048. data/third_party/abseil-cpp/absl/types/variant.h +861 -0
  1049. data/third_party/abseil-cpp/absl/utility/utility.h +2 -2
  1050. data/third_party/address_sorting/include/address_sorting/address_sorting.h +2 -0
  1051. data/third_party/boringssl-with-bazel/err_data.c +759 -707
  1052. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bitstr.c +6 -6
  1053. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_enum.c +5 -5
  1054. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_int.c +6 -6
  1055. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_object.c +6 -13
  1056. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_octet.c +3 -3
  1057. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_time.c +2 -2
  1058. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_type.c +5 -3
  1059. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utctm.c +2 -2
  1060. data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_lib.c +15 -20
  1061. data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_locl.h +30 -0
  1062. data/third_party/boringssl-with-bazel/src/crypto/asn1/asn_pack.c +1 -1
  1063. data/third_party/boringssl-with-bazel/src/crypto/asn1/f_enum.c +1 -1
  1064. data/third_party/boringssl-with-bazel/src/crypto/asn1/f_int.c +1 -1
  1065. data/third_party/boringssl-with-bazel/src/crypto/asn1/f_string.c +1 -1
  1066. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_dec.c +28 -79
  1067. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_enc.c +39 -85
  1068. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_fre.c +5 -16
  1069. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_new.c +10 -61
  1070. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_typ.c +0 -2
  1071. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_utl.c +2 -2
  1072. data/third_party/boringssl-with-bazel/src/crypto/bio/bio.c +2 -0
  1073. data/third_party/boringssl-with-bazel/src/crypto/bio/socket_helper.c +4 -0
  1074. data/third_party/boringssl-with-bazel/src/crypto/blake2/blake2.c +158 -0
  1075. data/third_party/boringssl-with-bazel/src/crypto/bn_extra/bn_asn1.c +3 -10
  1076. data/third_party/boringssl-with-bazel/src/crypto/bytestring/ber.c +8 -9
  1077. data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.c +60 -45
  1078. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/derive_key.c +1 -1
  1079. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_chacha20poly1305.c +6 -81
  1080. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/internal.h +87 -0
  1081. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/tls_cbc.c +1 -0
  1082. data/third_party/boringssl-with-bazel/src/crypto/cpu-aarch64-win.c +41 -0
  1083. data/third_party/boringssl-with-bazel/src/crypto/cpu-arm-linux.c +7 -5
  1084. data/third_party/boringssl-with-bazel/src/crypto/cpu-intel.c +13 -4
  1085. data/third_party/boringssl-with-bazel/src/crypto/crypto.c +11 -0
  1086. data/third_party/boringssl-with-bazel/src/{third_party/fiat → crypto/curve25519}/curve25519.c +18 -26
  1087. data/third_party/boringssl-with-bazel/src/{third_party/fiat → crypto/curve25519}/curve25519_tables.h +13 -21
  1088. data/third_party/boringssl-with-bazel/src/{third_party/fiat → crypto/curve25519}/internal.h +14 -22
  1089. data/third_party/boringssl-with-bazel/src/crypto/curve25519/spake25519.c +1 -1
  1090. data/third_party/boringssl-with-bazel/src/crypto/{dh → dh_extra}/dh_asn1.c +0 -0
  1091. data/third_party/boringssl-with-bazel/src/crypto/{dh → dh_extra}/params.c +179 -0
  1092. data/third_party/boringssl-with-bazel/src/crypto/digest_extra/digest_extra.c +25 -0
  1093. data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.c +19 -43
  1094. data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa_asn1.c +55 -4
  1095. data/third_party/boringssl-with-bazel/src/crypto/dsa/internal.h +34 -0
  1096. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_asn1.c +2 -17
  1097. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/hash_to_curve.c +385 -0
  1098. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/internal.h +56 -0
  1099. data/third_party/boringssl-with-bazel/src/crypto/ecdh_extra/ecdh_extra.c +2 -2
  1100. data/third_party/boringssl-with-bazel/src/crypto/err/err.c +33 -32
  1101. data/third_party/boringssl-with-bazel/src/crypto/evp/evp.c +4 -0
  1102. data/third_party/boringssl-with-bazel/src/crypto/evp/evp_asn1.c +159 -0
  1103. data/third_party/boringssl-with-bazel/src/crypto/evp/p_dsa_asn1.c +6 -2
  1104. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes_nohw.c +1 -1
  1105. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/mode_wrappers.c +17 -1
  1106. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.c +5 -2
  1107. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bn.c +13 -20
  1108. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div.c +2 -3
  1109. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/exponentiation.c +3 -3
  1110. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +34 -13
  1111. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery.c +8 -8
  1112. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/mul.c +30 -154
  1113. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aes.c +173 -35
  1114. data/third_party/boringssl-with-bazel/src/crypto/{dh → fipsmodule/dh}/check.c +0 -0
  1115. data/third_party/boringssl-with-bazel/src/crypto/{dh → fipsmodule/dh}/dh.c +149 -211
  1116. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digest.c +2 -0
  1117. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digests.c +16 -0
  1118. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec.c +301 -117
  1119. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.c +22 -28
  1120. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_montgomery.c +96 -55
  1121. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/felem.c +25 -7
  1122. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/internal.h +434 -161
  1123. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/oct.c +63 -71
  1124. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p224-64.c +18 -25
  1125. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-x86_64-table.h +9481 -9485
  1126. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-x86_64.c +104 -122
  1127. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256.c +740 -0
  1128. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256_table.h +297 -0
  1129. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/scalar.c +90 -11
  1130. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple.c +125 -148
  1131. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple_mul.c +189 -3
  1132. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/util.c +3 -3
  1133. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/wnaf.c +61 -18
  1134. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdh/ecdh.c +2 -2
  1135. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.c +20 -5
  1136. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.c +137 -0
  1137. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.h +49 -0
  1138. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/getrandom_fillin.h +64 -0
  1139. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/internal.h +69 -5
  1140. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.c +155 -50
  1141. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/urandom.c +24 -121
  1142. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/blinding.c +4 -0
  1143. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/internal.h +5 -0
  1144. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.c +73 -40
  1145. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c +122 -55
  1146. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c +217 -2
  1147. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha512.c +44 -35
  1148. data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c +532 -0
  1149. data/third_party/boringssl-with-bazel/src/crypto/hpke/internal.h +246 -0
  1150. data/third_party/boringssl-with-bazel/src/crypto/mem.c +47 -16
  1151. data/third_party/boringssl-with-bazel/src/crypto/obj/obj_dat.h +15 -1
  1152. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h +7 -0
  1153. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.c +36 -5
  1154. data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305.c +10 -7
  1155. data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_arm.c +13 -11
  1156. data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_vec.c +4 -0
  1157. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/deterministic.c +6 -10
  1158. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/passive.c +34 -0
  1159. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/rand_extra.c +4 -0
  1160. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/windows.c +16 -0
  1161. data/third_party/boringssl-with-bazel/src/crypto/stack/stack.c +7 -13
  1162. data/third_party/boringssl-with-bazel/src/crypto/thread_pthread.c +4 -0
  1163. data/third_party/boringssl-with-bazel/src/crypto/thread_win.c +4 -0
  1164. data/third_party/boringssl-with-bazel/src/crypto/trust_token/internal.h +318 -0
  1165. data/third_party/boringssl-with-bazel/src/crypto/trust_token/pmbtoken.c +1399 -0
  1166. data/third_party/boringssl-with-bazel/src/crypto/trust_token/trust_token.c +858 -0
  1167. data/third_party/boringssl-with-bazel/src/crypto/trust_token/voprf.c +766 -0
  1168. data/third_party/boringssl-with-bazel/src/crypto/x509/a_strex.c +7 -7
  1169. data/third_party/boringssl-with-bazel/src/crypto/x509/algorithm.c +10 -0
  1170. data/third_party/boringssl-with-bazel/src/crypto/x509/asn1_gen.c +4 -4
  1171. data/third_party/boringssl-with-bazel/src/crypto/x509/rsa_pss.c +5 -1
  1172. data/third_party/boringssl-with-bazel/src/crypto/x509/t_crl.c +3 -3
  1173. data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509.c +1 -1
  1174. data/third_party/boringssl-with-bazel/src/crypto/x509/x509.c +0 -67
  1175. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_cmp.c +21 -9
  1176. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_ext.c +27 -21
  1177. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_obj.c +1 -1
  1178. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_r2x.c +1 -1
  1179. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_req.c +10 -0
  1180. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_set.c +89 -11
  1181. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.c +7 -4
  1182. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_txt.c +67 -67
  1183. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_v3.c +4 -4
  1184. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +62 -44
  1185. data/third_party/boringssl-with-bazel/src/crypto/x509/x509cset.c +67 -25
  1186. data/third_party/boringssl-with-bazel/src/crypto/x509/x509name.c +13 -11
  1187. data/third_party/boringssl-with-bazel/src/crypto/x509/x_all.c +10 -10
  1188. data/third_party/boringssl-with-bazel/src/crypto/x509/x_crl.c +38 -17
  1189. data/third_party/boringssl-with-bazel/src/crypto/x509/x_name.c +28 -40
  1190. data/third_party/boringssl-with-bazel/src/crypto/x509/x_pkey.c +2 -2
  1191. data/third_party/boringssl-with-bazel/src/crypto/x509/x_pubkey.c +0 -154
  1192. data/third_party/boringssl-with-bazel/src/crypto/x509/x_sig.c +20 -0
  1193. data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509.c +66 -9
  1194. data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509a.c +2 -2
  1195. data/third_party/boringssl-with-bazel/src/crypto/x509v3/ext_dat.h +1 -4
  1196. data/third_party/boringssl-with-bazel/src/crypto/x509v3/internal.h +5 -0
  1197. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_data.c +5 -3
  1198. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_akey.c +3 -3
  1199. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_alt.c +25 -24
  1200. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_bitst.c +3 -3
  1201. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_conf.c +32 -28
  1202. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_cpols.c +2 -2
  1203. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_enum.c +2 -1
  1204. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_genn.c +42 -22
  1205. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_ia5.c +3 -4
  1206. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_info.c +1 -1
  1207. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_lib.c +25 -36
  1208. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_prn.c +2 -2
  1209. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_purp.c +126 -40
  1210. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_skey.c +7 -7
  1211. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_utl.c +6 -6
  1212. data/third_party/boringssl-with-bazel/src/include/openssl/aead.h +24 -0
  1213. data/third_party/boringssl-with-bazel/src/include/openssl/aes.h +16 -4
  1214. data/third_party/boringssl-with-bazel/src/include/openssl/arm_arch.h +54 -0
  1215. data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +662 -556
  1216. data/third_party/boringssl-with-bazel/src/include/openssl/asn1t.h +0 -167
  1217. data/third_party/boringssl-with-bazel/src/include/openssl/base.h +19 -7
  1218. data/third_party/boringssl-with-bazel/src/include/openssl/bio.h +4 -0
  1219. data/third_party/boringssl-with-bazel/src/include/openssl/blake2.h +62 -0
  1220. data/third_party/boringssl-with-bazel/src/include/openssl/bytestring.h +22 -7
  1221. data/third_party/boringssl-with-bazel/src/include/openssl/cipher.h +21 -0
  1222. data/third_party/boringssl-with-bazel/src/include/openssl/crypto.h +10 -5
  1223. data/third_party/boringssl-with-bazel/src/include/openssl/des.h +6 -0
  1224. data/third_party/boringssl-with-bazel/src/include/openssl/dh.h +82 -20
  1225. data/third_party/boringssl-with-bazel/src/include/openssl/digest.h +11 -0
  1226. data/third_party/boringssl-with-bazel/src/include/openssl/dsa.h +16 -0
  1227. data/third_party/boringssl-with-bazel/src/include/openssl/ec.h +15 -0
  1228. data/third_party/boringssl-with-bazel/src/include/openssl/ecdsa.h +6 -0
  1229. data/third_party/boringssl-with-bazel/src/include/openssl/err.h +2 -0
  1230. data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +85 -3
  1231. data/third_party/boringssl-with-bazel/src/include/openssl/nid.h +5 -0
  1232. data/third_party/boringssl-with-bazel/src/include/openssl/opensslconf.h +3 -0
  1233. data/third_party/boringssl-with-bazel/src/include/openssl/pem.h +202 -134
  1234. data/third_party/boringssl-with-bazel/src/include/openssl/rand.h +6 -17
  1235. data/third_party/boringssl-with-bazel/src/include/openssl/rsa.h +31 -0
  1236. data/third_party/boringssl-with-bazel/src/include/openssl/sha.h +26 -0
  1237. data/third_party/boringssl-with-bazel/src/include/openssl/span.h +2 -1
  1238. data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +335 -112
  1239. data/third_party/boringssl-with-bazel/src/include/openssl/tls1.h +33 -10
  1240. data/third_party/boringssl-with-bazel/src/include/openssl/trust_token.h +310 -0
  1241. data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +1141 -755
  1242. data/third_party/boringssl-with-bazel/src/include/openssl/x509_vfy.h +1 -0
  1243. data/third_party/boringssl-with-bazel/src/include/openssl/x509v3.h +593 -440
  1244. data/third_party/boringssl-with-bazel/src/ssl/bio_ssl.cc +18 -5
  1245. data/third_party/boringssl-with-bazel/src/ssl/d1_both.cc +0 -4
  1246. data/third_party/boringssl-with-bazel/src/ssl/d1_lib.cc +3 -3
  1247. data/third_party/boringssl-with-bazel/src/ssl/dtls_method.cc +13 -4
  1248. data/third_party/boringssl-with-bazel/src/ssl/handoff.cc +181 -57
  1249. data/third_party/boringssl-with-bazel/src/ssl/handshake.cc +45 -26
  1250. data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +43 -45
  1251. data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +32 -10
  1252. data/third_party/boringssl-with-bazel/src/ssl/internal.h +160 -80
  1253. data/third_party/boringssl-with-bazel/src/ssl/s3_both.cc +10 -10
  1254. data/third_party/boringssl-with-bazel/src/ssl/s3_lib.cc +2 -3
  1255. data/third_party/boringssl-with-bazel/src/ssl/s3_pkt.cc +21 -21
  1256. data/third_party/boringssl-with-bazel/src/ssl/ssl_asn1.cc +77 -8
  1257. data/third_party/boringssl-with-bazel/src/ssl/ssl_cert.cc +7 -6
  1258. data/third_party/boringssl-with-bazel/src/ssl/ssl_cipher.cc +8 -9
  1259. data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +131 -15
  1260. data/third_party/boringssl-with-bazel/src/ssl/ssl_privkey.cc +13 -2
  1261. data/third_party/boringssl-with-bazel/src/ssl/ssl_session.cc +50 -15
  1262. data/third_party/boringssl-with-bazel/src/ssl/ssl_stat.cc +6 -0
  1263. data/third_party/boringssl-with-bazel/src/ssl/ssl_transcript.cc +2 -2
  1264. data/third_party/boringssl-with-bazel/src/ssl/ssl_versions.cc +5 -5
  1265. data/third_party/boringssl-with-bazel/src/ssl/t1_enc.cc +53 -30
  1266. data/third_party/boringssl-with-bazel/src/ssl/t1_lib.cc +611 -89
  1267. data/third_party/boringssl-with-bazel/src/ssl/tls13_both.cc +2 -3
  1268. data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +187 -68
  1269. data/third_party/boringssl-with-bazel/src/ssl/tls13_enc.cc +71 -90
  1270. data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +247 -73
  1271. data/third_party/boringssl-with-bazel/src/ssl/tls_method.cc +63 -25
  1272. data/third_party/boringssl-with-bazel/src/ssl/tls_record.cc +5 -3
  1273. data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_32.h +245 -175
  1274. data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_64.h +135 -75
  1275. data/third_party/boringssl-with-bazel/src/third_party/fiat/p256_32.h +1593 -1672
  1276. data/third_party/boringssl-with-bazel/src/third_party/fiat/p256_64.h +512 -503
  1277. data/third_party/re2/re2/bitmap256.h +117 -0
  1278. data/third_party/re2/re2/bitstate.cc +385 -0
  1279. data/third_party/re2/re2/compile.cc +1279 -0
  1280. data/third_party/re2/re2/dfa.cc +2130 -0
  1281. data/third_party/re2/re2/filtered_re2.cc +121 -0
  1282. data/third_party/re2/re2/filtered_re2.h +109 -0
  1283. data/third_party/re2/re2/mimics_pcre.cc +197 -0
  1284. data/third_party/re2/re2/nfa.cc +713 -0
  1285. data/third_party/re2/re2/onepass.cc +623 -0
  1286. data/third_party/re2/re2/parse.cc +2464 -0
  1287. data/third_party/re2/re2/perl_groups.cc +119 -0
  1288. data/third_party/re2/re2/pod_array.h +55 -0
  1289. data/third_party/re2/re2/prefilter.cc +710 -0
  1290. data/third_party/re2/re2/prefilter.h +108 -0
  1291. data/third_party/re2/re2/prefilter_tree.cc +407 -0
  1292. data/third_party/re2/re2/prefilter_tree.h +139 -0
  1293. data/third_party/re2/re2/prog.cc +988 -0
  1294. data/third_party/re2/re2/prog.h +436 -0
  1295. data/third_party/re2/re2/re2.cc +1362 -0
  1296. data/third_party/re2/re2/re2.h +1002 -0
  1297. data/third_party/re2/re2/regexp.cc +980 -0
  1298. data/third_party/re2/re2/regexp.h +659 -0
  1299. data/third_party/re2/re2/set.cc +154 -0
  1300. data/third_party/re2/re2/set.h +80 -0
  1301. data/third_party/re2/re2/simplify.cc +657 -0
  1302. data/third_party/re2/re2/sparse_array.h +392 -0
  1303. data/third_party/re2/re2/sparse_set.h +264 -0
  1304. data/third_party/re2/re2/stringpiece.cc +65 -0
  1305. data/third_party/re2/re2/stringpiece.h +210 -0
  1306. data/third_party/re2/re2/tostring.cc +351 -0
  1307. data/third_party/re2/re2/unicode_casefold.cc +582 -0
  1308. data/third_party/re2/re2/unicode_casefold.h +78 -0
  1309. data/third_party/re2/re2/unicode_groups.cc +6269 -0
  1310. data/third_party/re2/re2/unicode_groups.h +67 -0
  1311. data/third_party/re2/re2/walker-inl.h +246 -0
  1312. data/third_party/re2/util/benchmark.h +156 -0
  1313. data/third_party/re2/util/flags.h +26 -0
  1314. data/third_party/re2/util/logging.h +109 -0
  1315. data/third_party/re2/util/malloc_counter.h +19 -0
  1316. data/third_party/re2/util/mix.h +41 -0
  1317. data/third_party/re2/util/mutex.h +148 -0
  1318. data/third_party/re2/util/pcre.cc +1025 -0
  1319. data/third_party/re2/util/pcre.h +681 -0
  1320. data/third_party/re2/util/rune.cc +260 -0
  1321. data/third_party/re2/util/strutil.cc +149 -0
  1322. data/third_party/re2/util/strutil.h +21 -0
  1323. data/third_party/re2/util/test.h +50 -0
  1324. data/third_party/re2/util/utf.h +44 -0
  1325. data/third_party/re2/util/util.h +42 -0
  1326. data/third_party/upb/third_party/wyhash/wyhash.h +145 -0
  1327. data/third_party/upb/upb/decode.c +604 -511
  1328. data/third_party/upb/upb/decode.h +20 -1
  1329. data/third_party/upb/upb/decode.int.h +163 -0
  1330. data/third_party/upb/upb/decode_fast.c +1040 -0
  1331. data/third_party/upb/upb/decode_fast.h +126 -0
  1332. data/third_party/upb/upb/def.c +2178 -0
  1333. data/third_party/upb/upb/def.h +315 -0
  1334. data/third_party/upb/upb/def.hpp +439 -0
  1335. data/third_party/upb/upb/encode.c +311 -211
  1336. data/third_party/upb/upb/encode.h +27 -2
  1337. data/third_party/upb/upb/json_decode.c +1443 -0
  1338. data/third_party/upb/upb/json_decode.h +23 -0
  1339. data/third_party/upb/upb/json_encode.c +713 -0
  1340. data/third_party/upb/upb/json_encode.h +36 -0
  1341. data/third_party/upb/upb/msg.c +215 -70
  1342. data/third_party/upb/upb/msg.h +558 -14
  1343. data/third_party/upb/upb/port_def.inc +105 -63
  1344. data/third_party/upb/upb/port_undef.inc +10 -7
  1345. data/third_party/upb/upb/reflection.c +408 -0
  1346. data/third_party/upb/upb/reflection.h +168 -0
  1347. data/third_party/upb/upb/table.c +73 -269
  1348. data/third_party/upb/upb/table.int.h +25 -57
  1349. data/third_party/upb/upb/text_encode.c +421 -0
  1350. data/third_party/upb/upb/text_encode.h +38 -0
  1351. data/third_party/upb/upb/upb.c +138 -135
  1352. data/third_party/upb/upb/upb.h +119 -146
  1353. data/third_party/upb/upb/upb.hpp +88 -0
  1354. data/third_party/upb/upb/upb.int.h +29 -0
  1355. metadata +646 -164
  1356. data/src/core/ext/filters/client_channel/lb_policy/xds/xds.cc +0 -1754
  1357. data/src/core/ext/filters/client_channel/parse_address.cc +0 -237
  1358. data/src/core/ext/filters/client_channel/parse_address.h +0 -53
  1359. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.cc +0 -484
  1360. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_fallback.cc +0 -65
  1361. data/src/core/ext/filters/client_channel/resolving_lb_policy.cc +0 -359
  1362. data/src/core/ext/filters/client_channel/resolving_lb_policy.h +0 -122
  1363. data/src/core/ext/filters/client_channel/xds/xds_api.cc +0 -1779
  1364. data/src/core/ext/filters/client_channel/xds/xds_api.h +0 -280
  1365. data/src/core/ext/filters/client_channel/xds/xds_bootstrap.cc +0 -347
  1366. data/src/core/ext/filters/client_channel/xds/xds_bootstrap.h +0 -87
  1367. data/src/core/ext/filters/client_channel/xds/xds_channel.h +0 -46
  1368. data/src/core/ext/filters/client_channel/xds/xds_channel_secure.cc +0 -104
  1369. data/src/core/ext/filters/client_channel/xds/xds_client.h +0 -274
  1370. data/src/core/ext/filters/client_channel/xds/xds_client_stats.cc +0 -116
  1371. data/src/core/ext/upb-generated/envoy/api/v2/auth/cert.upb.c +0 -246
  1372. data/src/core/ext/upb-generated/envoy/api/v2/auth/cert.upb.h +0 -905
  1373. data/src/core/ext/upb-generated/envoy/api/v2/cds.upb.h +0 -53
  1374. data/src/core/ext/upb-generated/envoy/api/v2/cluster.upb.c +0 -390
  1375. data/src/core/ext/upb-generated/envoy/api/v2/cluster.upb.h +0 -1411
  1376. data/src/core/ext/upb-generated/envoy/api/v2/cluster/circuit_breaker.upb.c +0 -73
  1377. data/src/core/ext/upb-generated/envoy/api/v2/cluster/circuit_breaker.upb.h +0 -218
  1378. data/src/core/ext/upb-generated/envoy/api/v2/cluster/filter.upb.c +0 -34
  1379. data/src/core/ext/upb-generated/envoy/api/v2/cluster/filter.upb.h +0 -69
  1380. data/src/core/ext/upb-generated/envoy/api/v2/cluster/outlier_detection.upb.c +0 -54
  1381. data/src/core/ext/upb-generated/envoy/api/v2/cluster/outlier_detection.upb.h +0 -305
  1382. data/src/core/ext/upb-generated/envoy/api/v2/core/address.upb.c +0 -111
  1383. data/src/core/ext/upb-generated/envoy/api/v2/core/address.upb.h +0 -328
  1384. data/src/core/ext/upb-generated/envoy/api/v2/core/base.upb.c +0 -292
  1385. data/src/core/ext/upb-generated/envoy/api/v2/core/base.upb.h +0 -847
  1386. data/src/core/ext/upb-generated/envoy/api/v2/core/config_source.upb.c +0 -95
  1387. data/src/core/ext/upb-generated/envoy/api/v2/core/config_source.upb.h +0 -322
  1388. data/src/core/ext/upb-generated/envoy/api/v2/core/grpc_service.upb.c +0 -196
  1389. data/src/core/ext/upb-generated/envoy/api/v2/core/grpc_service.upb.h +0 -642
  1390. data/src/core/ext/upb-generated/envoy/api/v2/core/health_check.upb.c +0 -168
  1391. data/src/core/ext/upb-generated/envoy/api/v2/core/health_check.upb.h +0 -658
  1392. data/src/core/ext/upb-generated/envoy/api/v2/core/http_uri.upb.c +0 -35
  1393. data/src/core/ext/upb-generated/envoy/api/v2/core/http_uri.upb.h +0 -80
  1394. data/src/core/ext/upb-generated/envoy/api/v2/core/protocol.upb.c +0 -132
  1395. data/src/core/ext/upb-generated/envoy/api/v2/core/protocol.upb.h +0 -436
  1396. data/src/core/ext/upb-generated/envoy/api/v2/discovery.upb.c +0 -128
  1397. data/src/core/ext/upb-generated/envoy/api/v2/discovery.upb.h +0 -392
  1398. data/src/core/ext/upb-generated/envoy/api/v2/eds.upb.c +0 -30
  1399. data/src/core/ext/upb-generated/envoy/api/v2/eds.upb.h +0 -53
  1400. data/src/core/ext/upb-generated/envoy/api/v2/endpoint.upb.c +0 -91
  1401. data/src/core/ext/upb-generated/envoy/api/v2/endpoint.upb.h +0 -240
  1402. data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint.upb.c +0 -17
  1403. data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint.upb.h +0 -33
  1404. data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint_components.upb.c +0 -88
  1405. data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint_components.upb.h +0 -258
  1406. data/src/core/ext/upb-generated/envoy/api/v2/endpoint/load_report.upb.c +0 -111
  1407. data/src/core/ext/upb-generated/envoy/api/v2/endpoint/load_report.upb.h +0 -324
  1408. data/src/core/ext/upb-generated/envoy/api/v2/lds.upb.c +0 -30
  1409. data/src/core/ext/upb-generated/envoy/api/v2/lds.upb.h +0 -53
  1410. data/src/core/ext/upb-generated/envoy/api/v2/listener.upb.c +0 -104
  1411. data/src/core/ext/upb-generated/envoy/api/v2/listener.upb.h +0 -383
  1412. data/src/core/ext/upb-generated/envoy/api/v2/listener/listener.upb.c +0 -17
  1413. data/src/core/ext/upb-generated/envoy/api/v2/listener/listener.upb.h +0 -33
  1414. data/src/core/ext/upb-generated/envoy/api/v2/listener/listener_components.upb.c +0 -144
  1415. data/src/core/ext/upb-generated/envoy/api/v2/listener/listener_components.upb.h +0 -527
  1416. data/src/core/ext/upb-generated/envoy/api/v2/listener/udp_listener_config.upb.c +0 -42
  1417. data/src/core/ext/upb-generated/envoy/api/v2/listener/udp_listener_config.upb.h +0 -112
  1418. data/src/core/ext/upb-generated/envoy/api/v2/rds.upb.h +0 -53
  1419. data/src/core/ext/upb-generated/envoy/api/v2/route.upb.c +0 -62
  1420. data/src/core/ext/upb-generated/envoy/api/v2/route.upb.h +0 -199
  1421. data/src/core/ext/upb-generated/envoy/api/v2/route/route.upb.c +0 -17
  1422. data/src/core/ext/upb-generated/envoy/api/v2/route/route.upb.h +0 -33
  1423. data/src/core/ext/upb-generated/envoy/api/v2/route/route_components.upb.c +0 -793
  1424. data/src/core/ext/upb-generated/envoy/api/v2/route/route_components.upb.h +0 -2936
  1425. data/src/core/ext/upb-generated/envoy/api/v2/scoped_route.upb.c +0 -58
  1426. data/src/core/ext/upb-generated/envoy/api/v2/scoped_route.upb.h +0 -134
  1427. data/src/core/ext/upb-generated/envoy/api/v2/srds.upb.h +0 -53
  1428. data/src/core/ext/upb-generated/envoy/config/filter/accesslog/v2/accesslog.upb.c +0 -227
  1429. data/src/core/ext/upb-generated/envoy/config/filter/accesslog/v2/accesslog.upb.h +0 -725
  1430. data/src/core/ext/upb-generated/envoy/config/filter/network/http_connection_manager/v2/http_connection_manager.upb.c +0 -296
  1431. data/src/core/ext/upb-generated/envoy/config/filter/network/http_connection_manager/v2/http_connection_manager.upb.h +0 -1072
  1432. data/src/core/ext/upb-generated/envoy/config/listener/v2/api_listener.upb.c +0 -32
  1433. data/src/core/ext/upb-generated/envoy/config/listener/v2/api_listener.upb.h +0 -65
  1434. data/src/core/ext/upb-generated/envoy/service/discovery/v2/ads.upb.c +0 -23
  1435. data/src/core/ext/upb-generated/envoy/service/discovery/v2/ads.upb.h +0 -50
  1436. data/src/core/ext/upb-generated/envoy/service/load_stats/v2/lrs.upb.c +0 -52
  1437. data/src/core/ext/upb-generated/envoy/service/load_stats/v2/lrs.upb.h +0 -130
  1438. data/src/core/ext/upb-generated/envoy/type/matcher/regex.upb.c +0 -47
  1439. data/src/core/ext/upb-generated/envoy/type/matcher/regex.upb.h +0 -108
  1440. data/src/core/ext/upb-generated/envoy/type/matcher/string.upb.c +0 -52
  1441. data/src/core/ext/upb-generated/envoy/type/matcher/string.upb.h +0 -133
  1442. data/src/core/ext/upb-generated/envoy/type/metadata/v2/metadata.upb.c +0 -87
  1443. data/src/core/ext/upb-generated/envoy/type/metadata/v2/metadata.upb.h +0 -258
  1444. data/src/core/ext/upb-generated/envoy/type/percent.upb.c +0 -38
  1445. data/src/core/ext/upb-generated/envoy/type/percent.upb.h +0 -87
  1446. data/src/core/ext/upb-generated/envoy/type/range.upb.c +0 -49
  1447. data/src/core/ext/upb-generated/envoy/type/range.upb.h +0 -112
  1448. data/src/core/ext/upb-generated/envoy/type/semantic_version.upb.c +0 -28
  1449. data/src/core/ext/upb-generated/envoy/type/semantic_version.upb.h +0 -62
  1450. data/src/core/ext/upb-generated/envoy/type/tracing/v2/custom_tag.upb.c +0 -88
  1451. data/src/core/ext/upb-generated/envoy/type/tracing/v2/custom_tag.upb.h +0 -249
  1452. data/src/core/ext/upb-generated/gogoproto/gogo.upb.c +0 -17
  1453. data/src/core/lib/gprpp/map.h +0 -59
  1454. data/src/core/lib/gprpp/string_view.h +0 -60
  1455. data/src/core/lib/iomgr/iomgr_posix.h +0 -26
  1456. data/src/core/lib/security/transport/target_authority_table.cc +0 -75
  1457. data/src/core/lib/security/transport/target_authority_table.h +0 -40
  1458. data/src/core/lib/slice/slice_hash_table.h +0 -199
  1459. data/src/core/lib/slice/slice_weak_hash_table.h +0 -102
  1460. data/src/core/tsi/grpc_shadow_boringssl.h +0 -3311
  1461. data/third_party/abseil-cpp/absl/base/dynamic_annotations.cc +0 -129
  1462. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pku.c +0 -110
  1463. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_sxnet.c +0 -274
  1464. data/third_party/boringssl-with-bazel/src/third_party/fiat/p256.c +0 -1063
  1465. data/third_party/upb/upb/generated_util.h +0 -105
  1466. data/third_party/upb/upb/port.c +0 -26
@@ -0,0 +1,436 @@
1
+ // Copyright 2007 The RE2 Authors. All Rights Reserved.
2
+ // Use of this source code is governed by a BSD-style
3
+ // license that can be found in the LICENSE file.
4
+
5
+ #ifndef RE2_PROG_H_
6
+ #define RE2_PROG_H_
7
+
8
+ // Compiled representation of regular expressions.
9
+ // See regexp.h for the Regexp class, which represents a regular
10
+ // expression symbolically.
11
+
12
+ #include <stdint.h>
13
+ #include <functional>
14
+ #include <mutex>
15
+ #include <string>
16
+ #include <vector>
17
+ #include <type_traits>
18
+
19
+ #include "util/util.h"
20
+ #include "util/logging.h"
21
+ #include "re2/pod_array.h"
22
+ #include "re2/re2.h"
23
+ #include "re2/sparse_array.h"
24
+ #include "re2/sparse_set.h"
25
+
26
+ namespace re2 {
27
+
28
+ // Opcodes for Inst
29
+ enum InstOp {
30
+ kInstAlt = 0, // choose between out_ and out1_
31
+ kInstAltMatch, // Alt: out_ is [00-FF] and back, out1_ is match; or vice versa.
32
+ kInstByteRange, // next (possible case-folded) byte must be in [lo_, hi_]
33
+ kInstCapture, // capturing parenthesis number cap_
34
+ kInstEmptyWidth, // empty-width special (^ $ ...); bit(s) set in empty_
35
+ kInstMatch, // found a match!
36
+ kInstNop, // no-op; occasionally unavoidable
37
+ kInstFail, // never match; occasionally unavoidable
38
+ kNumInst,
39
+ };
40
+
41
+ // Bit flags for empty-width specials
42
+ enum EmptyOp {
43
+ kEmptyBeginLine = 1<<0, // ^ - beginning of line
44
+ kEmptyEndLine = 1<<1, // $ - end of line
45
+ kEmptyBeginText = 1<<2, // \A - beginning of text
46
+ kEmptyEndText = 1<<3, // \z - end of text
47
+ kEmptyWordBoundary = 1<<4, // \b - word boundary
48
+ kEmptyNonWordBoundary = 1<<5, // \B - not \b
49
+ kEmptyAllFlags = (1<<6)-1,
50
+ };
51
+
52
+ class DFA;
53
+ class Regexp;
54
+
55
+ // Compiled form of regexp program.
56
+ class Prog {
57
+ public:
58
+ Prog();
59
+ ~Prog();
60
+
61
+ // Single instruction in regexp program.
62
+ class Inst {
63
+ public:
64
+ // See the assertion below for why this is so.
65
+ Inst() = default;
66
+
67
+ // Copyable.
68
+ Inst(const Inst&) = default;
69
+ Inst& operator=(const Inst&) = default;
70
+
71
+ // Constructors per opcode
72
+ void InitAlt(uint32_t out, uint32_t out1);
73
+ void InitByteRange(int lo, int hi, int foldcase, uint32_t out);
74
+ void InitCapture(int cap, uint32_t out);
75
+ void InitEmptyWidth(EmptyOp empty, uint32_t out);
76
+ void InitMatch(int id);
77
+ void InitNop(uint32_t out);
78
+ void InitFail();
79
+
80
+ // Getters
81
+ int id(Prog* p) { return static_cast<int>(this - p->inst_.data()); }
82
+ InstOp opcode() { return static_cast<InstOp>(out_opcode_&7); }
83
+ int last() { return (out_opcode_>>3)&1; }
84
+ int out() { return out_opcode_>>4; }
85
+ int out1() { DCHECK(opcode() == kInstAlt || opcode() == kInstAltMatch); return out1_; }
86
+ int cap() { DCHECK_EQ(opcode(), kInstCapture); return cap_; }
87
+ int lo() { DCHECK_EQ(opcode(), kInstByteRange); return lo_; }
88
+ int hi() { DCHECK_EQ(opcode(), kInstByteRange); return hi_; }
89
+ int foldcase() { DCHECK_EQ(opcode(), kInstByteRange); return hint_foldcase_&1; }
90
+ int hint() { DCHECK_EQ(opcode(), kInstByteRange); return hint_foldcase_>>1; }
91
+ int match_id() { DCHECK_EQ(opcode(), kInstMatch); return match_id_; }
92
+ EmptyOp empty() { DCHECK_EQ(opcode(), kInstEmptyWidth); return empty_; }
93
+
94
+ bool greedy(Prog* p) {
95
+ DCHECK_EQ(opcode(), kInstAltMatch);
96
+ return p->inst(out())->opcode() == kInstByteRange ||
97
+ (p->inst(out())->opcode() == kInstNop &&
98
+ p->inst(p->inst(out())->out())->opcode() == kInstByteRange);
99
+ }
100
+
101
+ // Does this inst (an kInstByteRange) match c?
102
+ inline bool Matches(int c) {
103
+ DCHECK_EQ(opcode(), kInstByteRange);
104
+ if (foldcase() && 'A' <= c && c <= 'Z')
105
+ c += 'a' - 'A';
106
+ return lo_ <= c && c <= hi_;
107
+ }
108
+
109
+ // Returns string representation for debugging.
110
+ std::string Dump();
111
+
112
+ // Maximum instruction id.
113
+ // (Must fit in out_opcode_. PatchList/last steal another bit.)
114
+ static const int kMaxInst = (1<<28) - 1;
115
+
116
+ private:
117
+ void set_opcode(InstOp opcode) {
118
+ out_opcode_ = (out()<<4) | (last()<<3) | opcode;
119
+ }
120
+
121
+ void set_last() {
122
+ out_opcode_ = (out()<<4) | (1<<3) | opcode();
123
+ }
124
+
125
+ void set_out(int out) {
126
+ out_opcode_ = (out<<4) | (last()<<3) | opcode();
127
+ }
128
+
129
+ void set_out_opcode(int out, InstOp opcode) {
130
+ out_opcode_ = (out<<4) | (last()<<3) | opcode;
131
+ }
132
+
133
+ uint32_t out_opcode_; // 28 bits: out, 1 bit: last, 3 (low) bits: opcode
134
+ union { // additional instruction arguments:
135
+ uint32_t out1_; // opcode == kInstAlt
136
+ // alternate next instruction
137
+
138
+ int32_t cap_; // opcode == kInstCapture
139
+ // Index of capture register (holds text
140
+ // position recorded by capturing parentheses).
141
+ // For \n (the submatch for the nth parentheses),
142
+ // the left parenthesis captures into register 2*n
143
+ // and the right one captures into register 2*n+1.
144
+
145
+ int32_t match_id_; // opcode == kInstMatch
146
+ // Match ID to identify this match (for re2::Set).
147
+
148
+ struct { // opcode == kInstByteRange
149
+ uint8_t lo_; // byte range is lo_-hi_ inclusive
150
+ uint8_t hi_; //
151
+ uint16_t hint_foldcase_; // 15 bits: hint, 1 (low) bit: foldcase
152
+ // hint to execution engines: the delta to the
153
+ // next instruction (in the current list) worth
154
+ // exploring iff this instruction matched; 0
155
+ // means there are no remaining possibilities,
156
+ // which is most likely for character classes.
157
+ // foldcase: A-Z -> a-z before checking range.
158
+ };
159
+
160
+ EmptyOp empty_; // opcode == kInstEmptyWidth
161
+ // empty_ is bitwise OR of kEmpty* flags above.
162
+ };
163
+
164
+ friend class Compiler;
165
+ friend struct PatchList;
166
+ friend class Prog;
167
+ };
168
+
169
+ // Inst must be trivial so that we can freely clear it with memset(3).
170
+ // Arrays of Inst are initialised by copying the initial elements with
171
+ // memmove(3) and then clearing any remaining elements with memset(3).
172
+ static_assert(std::is_trivial<Inst>::value, "Inst must be trivial");
173
+
174
+ // Whether to anchor the search.
175
+ enum Anchor {
176
+ kUnanchored, // match anywhere
177
+ kAnchored, // match only starting at beginning of text
178
+ };
179
+
180
+ // Kind of match to look for (for anchor != kFullMatch)
181
+ //
182
+ // kLongestMatch mode finds the overall longest
183
+ // match but still makes its submatch choices the way
184
+ // Perl would, not in the way prescribed by POSIX.
185
+ // The POSIX rules are much more expensive to implement,
186
+ // and no one has needed them.
187
+ //
188
+ // kFullMatch is not strictly necessary -- we could use
189
+ // kLongestMatch and then check the length of the match -- but
190
+ // the matching code can run faster if it knows to consider only
191
+ // full matches.
192
+ enum MatchKind {
193
+ kFirstMatch, // like Perl, PCRE
194
+ kLongestMatch, // like egrep or POSIX
195
+ kFullMatch, // match only entire text; implies anchor==kAnchored
196
+ kManyMatch // for SearchDFA, records set of matches
197
+ };
198
+
199
+ Inst *inst(int id) { return &inst_[id]; }
200
+ int start() { return start_; }
201
+ void set_start(int start) { start_ = start; }
202
+ int start_unanchored() { return start_unanchored_; }
203
+ void set_start_unanchored(int start) { start_unanchored_ = start; }
204
+ int size() { return size_; }
205
+ bool reversed() { return reversed_; }
206
+ void set_reversed(bool reversed) { reversed_ = reversed; }
207
+ int list_count() { return list_count_; }
208
+ int inst_count(InstOp op) { return inst_count_[op]; }
209
+ uint16_t* list_heads() { return list_heads_.data(); }
210
+ int64_t dfa_mem() { return dfa_mem_; }
211
+ void set_dfa_mem(int64_t dfa_mem) { dfa_mem_ = dfa_mem; }
212
+ bool anchor_start() { return anchor_start_; }
213
+ void set_anchor_start(bool b) { anchor_start_ = b; }
214
+ bool anchor_end() { return anchor_end_; }
215
+ void set_anchor_end(bool b) { anchor_end_ = b; }
216
+ int bytemap_range() { return bytemap_range_; }
217
+ const uint8_t* bytemap() { return bytemap_; }
218
+ bool can_prefix_accel() { return prefix_size_ != 0; }
219
+
220
+ // Accelerates to the first likely occurrence of the prefix.
221
+ // Returns a pointer to the first byte or NULL if not found.
222
+ const void* PrefixAccel(const void* data, size_t size) {
223
+ DCHECK_GE(prefix_size_, 1);
224
+ return prefix_size_ == 1 ? memchr(data, prefix_front_, size)
225
+ : PrefixAccel_FrontAndBack(data, size);
226
+ }
227
+
228
+ // An implementation of prefix accel that looks for prefix_front_ and
229
+ // prefix_back_ to return fewer false positives than memchr(3) alone.
230
+ const void* PrefixAccel_FrontAndBack(const void* data, size_t size);
231
+
232
+ // Returns string representation of program for debugging.
233
+ std::string Dump();
234
+ std::string DumpUnanchored();
235
+ std::string DumpByteMap();
236
+
237
+ // Returns the set of kEmpty flags that are in effect at
238
+ // position p within context.
239
+ static uint32_t EmptyFlags(const StringPiece& context, const char* p);
240
+
241
+ // Returns whether byte c is a word character: ASCII only.
242
+ // Used by the implementation of \b and \B.
243
+ // This is not right for Unicode, but:
244
+ // - it's hard to get right in a byte-at-a-time matching world
245
+ // (the DFA has only one-byte lookahead).
246
+ // - even if the lookahead were possible, the Progs would be huge.
247
+ // This crude approximation is the same one PCRE uses.
248
+ static bool IsWordChar(uint8_t c) {
249
+ return ('A' <= c && c <= 'Z') ||
250
+ ('a' <= c && c <= 'z') ||
251
+ ('0' <= c && c <= '9') ||
252
+ c == '_';
253
+ }
254
+
255
+ // Execution engines. They all search for the regexp (run the prog)
256
+ // in text, which is in the larger context (used for ^ $ \b etc).
257
+ // Anchor and kind control the kind of search.
258
+ // Returns true if match found, false if not.
259
+ // If match found, fills match[0..nmatch-1] with submatch info.
260
+ // match[0] is overall match, match[1] is first set of parens, etc.
261
+ // If a particular submatch is not matched during the regexp match,
262
+ // it is set to NULL.
263
+ //
264
+ // Matching text == StringPiece(NULL, 0) is treated as any other empty
265
+ // string, but note that on return, it will not be possible to distinguish
266
+ // submatches that matched that empty string from submatches that didn't
267
+ // match anything. Either way, match[i] == NULL.
268
+
269
+ // Search using NFA: can find submatches but kind of slow.
270
+ bool SearchNFA(const StringPiece& text, const StringPiece& context,
271
+ Anchor anchor, MatchKind kind,
272
+ StringPiece* match, int nmatch);
273
+
274
+ // Search using DFA: much faster than NFA but only finds
275
+ // end of match and can use a lot more memory.
276
+ // Returns whether a match was found.
277
+ // If the DFA runs out of memory, sets *failed to true and returns false.
278
+ // If matches != NULL and kind == kManyMatch and there is a match,
279
+ // SearchDFA fills matches with the match IDs of the final matching state.
280
+ bool SearchDFA(const StringPiece& text, const StringPiece& context,
281
+ Anchor anchor, MatchKind kind, StringPiece* match0,
282
+ bool* failed, SparseSet* matches);
283
+
284
+ // The callback issued after building each DFA state with BuildEntireDFA().
285
+ // If next is null, then the memory budget has been exhausted and building
286
+ // will halt. Otherwise, the state has been built and next points to an array
287
+ // of bytemap_range()+1 slots holding the next states as per the bytemap and
288
+ // kByteEndText. The number of the state is implied by the callback sequence:
289
+ // the first callback is for state 0, the second callback is for state 1, ...
290
+ // match indicates whether the state is a matching state.
291
+ using DFAStateCallback = std::function<void(const int* next, bool match)>;
292
+
293
+ // Build the entire DFA for the given match kind.
294
+ // Usually the DFA is built out incrementally, as needed, which
295
+ // avoids lots of unnecessary work.
296
+ // If cb is not empty, it receives one callback per state built.
297
+ // Returns the number of states built.
298
+ // FOR TESTING OR EXPERIMENTAL PURPOSES ONLY.
299
+ int BuildEntireDFA(MatchKind kind, const DFAStateCallback& cb);
300
+
301
+ // Controls whether the DFA should bail out early if the NFA would be faster.
302
+ // FOR TESTING ONLY.
303
+ static void TEST_dfa_should_bail_when_slow(bool b);
304
+
305
+ // Compute bytemap.
306
+ void ComputeByteMap();
307
+
308
+ // Run peep-hole optimizer on program.
309
+ void Optimize();
310
+
311
+ // One-pass NFA: only correct if IsOnePass() is true,
312
+ // but much faster than NFA (competitive with PCRE)
313
+ // for those expressions.
314
+ bool IsOnePass();
315
+ bool SearchOnePass(const StringPiece& text, const StringPiece& context,
316
+ Anchor anchor, MatchKind kind,
317
+ StringPiece* match, int nmatch);
318
+
319
+ // Bit-state backtracking. Fast on small cases but uses memory
320
+ // proportional to the product of the list count and the text size.
321
+ bool CanBitState() { return list_heads_.data() != NULL; }
322
+ bool SearchBitState(const StringPiece& text, const StringPiece& context,
323
+ Anchor anchor, MatchKind kind,
324
+ StringPiece* match, int nmatch);
325
+
326
+ static const int kMaxOnePassCapture = 5; // $0 through $4
327
+
328
+ // Backtracking search: the gold standard against which the other
329
+ // implementations are checked. FOR TESTING ONLY.
330
+ // It allocates a ton of memory to avoid running forever.
331
+ // It is also recursive, so can't use in production (will overflow stacks).
332
+ // The name "Unsafe" here is supposed to be a flag that
333
+ // you should not be using this function.
334
+ bool UnsafeSearchBacktrack(const StringPiece& text,
335
+ const StringPiece& context,
336
+ Anchor anchor, MatchKind kind,
337
+ StringPiece* match, int nmatch);
338
+
339
+ // Computes range for any strings matching regexp. The min and max can in
340
+ // some cases be arbitrarily precise, so the caller gets to specify the
341
+ // maximum desired length of string returned.
342
+ //
343
+ // Assuming PossibleMatchRange(&min, &max, N) returns successfully, any
344
+ // string s that is an anchored match for this regexp satisfies
345
+ // min <= s && s <= max.
346
+ //
347
+ // Note that PossibleMatchRange() will only consider the first copy of an
348
+ // infinitely repeated element (i.e., any regexp element followed by a '*' or
349
+ // '+' operator). Regexps with "{N}" constructions are not affected, as those
350
+ // do not compile down to infinite repetitions.
351
+ //
352
+ // Returns true on success, false on error.
353
+ bool PossibleMatchRange(std::string* min, std::string* max, int maxlen);
354
+
355
+ // EXPERIMENTAL! SUBJECT TO CHANGE!
356
+ // Outputs the program fanout into the given sparse array.
357
+ void Fanout(SparseArray<int>* fanout);
358
+
359
+ // Compiles a collection of regexps to Prog. Each regexp will have
360
+ // its own Match instruction recording the index in the output vector.
361
+ static Prog* CompileSet(Regexp* re, RE2::Anchor anchor, int64_t max_mem);
362
+
363
+ // Flattens the Prog from "tree" form to "list" form. This is an in-place
364
+ // operation in the sense that the old instructions are lost.
365
+ void Flatten();
366
+
367
+ // Walks the Prog; the "successor roots" or predecessors of the reachable
368
+ // instructions are marked in rootmap or predmap/predvec, respectively.
369
+ // reachable and stk are preallocated scratch structures.
370
+ void MarkSuccessors(SparseArray<int>* rootmap,
371
+ SparseArray<int>* predmap,
372
+ std::vector<std::vector<int>>* predvec,
373
+ SparseSet* reachable, std::vector<int>* stk);
374
+
375
+ // Walks the Prog from the given "root" instruction; the "dominator root"
376
+ // of the reachable instructions (if such exists) is marked in rootmap.
377
+ // reachable and stk are preallocated scratch structures.
378
+ void MarkDominator(int root, SparseArray<int>* rootmap,
379
+ SparseArray<int>* predmap,
380
+ std::vector<std::vector<int>>* predvec,
381
+ SparseSet* reachable, std::vector<int>* stk);
382
+
383
+ // Walks the Prog from the given "root" instruction; the reachable
384
+ // instructions are emitted in "list" form and appended to flat.
385
+ // reachable and stk are preallocated scratch structures.
386
+ void EmitList(int root, SparseArray<int>* rootmap,
387
+ std::vector<Inst>* flat,
388
+ SparseSet* reachable, std::vector<int>* stk);
389
+
390
+ // Computes hints for ByteRange instructions in [begin, end).
391
+ void ComputeHints(std::vector<Inst>* flat, int begin, int end);
392
+
393
+ private:
394
+ friend class Compiler;
395
+
396
+ DFA* GetDFA(MatchKind kind);
397
+ void DeleteDFA(DFA* dfa);
398
+
399
+ bool anchor_start_; // regexp has explicit start anchor
400
+ bool anchor_end_; // regexp has explicit end anchor
401
+ bool reversed_; // whether program runs backward over input
402
+ bool did_flatten_; // has Flatten been called?
403
+ bool did_onepass_; // has IsOnePass been called?
404
+
405
+ int start_; // entry point for program
406
+ int start_unanchored_; // unanchored entry point for program
407
+ int size_; // number of instructions
408
+ int bytemap_range_; // bytemap_[x] < bytemap_range_
409
+ size_t prefix_size_; // size of prefix (0 if no prefix)
410
+ int prefix_front_; // first byte of prefix (-1 if no prefix)
411
+ int prefix_back_; // last byte of prefix (-1 if no prefix)
412
+
413
+ int list_count_; // count of lists (see above)
414
+ int inst_count_[kNumInst]; // count of instructions by opcode
415
+ PODArray<uint16_t> list_heads_; // sparse array enumerating list heads
416
+ // not populated if size_ is overly large
417
+
418
+ PODArray<Inst> inst_; // pointer to instruction array
419
+ PODArray<uint8_t> onepass_nodes_; // data for OnePass nodes
420
+
421
+ int64_t dfa_mem_; // Maximum memory for DFAs.
422
+ DFA* dfa_first_; // DFA cached for kFirstMatch/kManyMatch
423
+ DFA* dfa_longest_; // DFA cached for kLongestMatch/kFullMatch
424
+
425
+ uint8_t bytemap_[256]; // map from input bytes to byte classes
426
+
427
+ std::once_flag dfa_first_once_;
428
+ std::once_flag dfa_longest_once_;
429
+
430
+ Prog(const Prog&) = delete;
431
+ Prog& operator=(const Prog&) = delete;
432
+ };
433
+
434
+ } // namespace re2
435
+
436
+ #endif // RE2_PROG_H_
@@ -0,0 +1,1362 @@
1
+ // Copyright 2003-2009 The RE2 Authors. All Rights Reserved.
2
+ // Use of this source code is governed by a BSD-style
3
+ // license that can be found in the LICENSE file.
4
+
5
+ // Regular expression interface RE2.
6
+ //
7
+ // Originally the PCRE C++ wrapper, but adapted to use
8
+ // the new automata-based regular expression engines.
9
+
10
+ #include "re2/re2.h"
11
+
12
+ #include <assert.h>
13
+ #include <ctype.h>
14
+ #include <errno.h>
15
+ #ifdef _MSC_VER
16
+ #include <intrin.h>
17
+ #endif
18
+ #include <stdint.h>
19
+ #include <stdlib.h>
20
+ #include <string.h>
21
+ #include <algorithm>
22
+ #include <atomic>
23
+ #include <iterator>
24
+ #include <mutex>
25
+ #include <string>
26
+ #include <utility>
27
+ #include <vector>
28
+
29
+ #include "util/util.h"
30
+ #include "util/logging.h"
31
+ #include "util/strutil.h"
32
+ #include "util/utf.h"
33
+ #include "re2/prog.h"
34
+ #include "re2/regexp.h"
35
+ #include "re2/sparse_array.h"
36
+
37
+ namespace re2 {
38
+
39
+ // Maximum number of args we can set
40
+ static const int kMaxArgs = 16;
41
+ static const int kVecSize = 1+kMaxArgs;
42
+
43
+ const int RE2::Options::kDefaultMaxMem; // initialized in re2.h
44
+
45
+ RE2::Options::Options(RE2::CannedOptions opt)
46
+ : encoding_(opt == RE2::Latin1 ? EncodingLatin1 : EncodingUTF8),
47
+ posix_syntax_(opt == RE2::POSIX),
48
+ longest_match_(opt == RE2::POSIX),
49
+ log_errors_(opt != RE2::Quiet),
50
+ max_mem_(kDefaultMaxMem),
51
+ literal_(false),
52
+ never_nl_(false),
53
+ dot_nl_(false),
54
+ never_capture_(false),
55
+ case_sensitive_(true),
56
+ perl_classes_(false),
57
+ word_boundary_(false),
58
+ one_line_(false) {
59
+ }
60
+
61
+ // static empty objects for use as const references.
62
+ // To avoid global constructors, allocated in RE2::Init().
63
+ static const std::string* empty_string;
64
+ static const std::map<std::string, int>* empty_named_groups;
65
+ static const std::map<int, std::string>* empty_group_names;
66
+
67
+ // Converts from Regexp error code to RE2 error code.
68
+ // Maybe some day they will diverge. In any event, this
69
+ // hides the existence of Regexp from RE2 users.
70
+ static RE2::ErrorCode RegexpErrorToRE2(re2::RegexpStatusCode code) {
71
+ switch (code) {
72
+ case re2::kRegexpSuccess:
73
+ return RE2::NoError;
74
+ case re2::kRegexpInternalError:
75
+ return RE2::ErrorInternal;
76
+ case re2::kRegexpBadEscape:
77
+ return RE2::ErrorBadEscape;
78
+ case re2::kRegexpBadCharClass:
79
+ return RE2::ErrorBadCharClass;
80
+ case re2::kRegexpBadCharRange:
81
+ return RE2::ErrorBadCharRange;
82
+ case re2::kRegexpMissingBracket:
83
+ return RE2::ErrorMissingBracket;
84
+ case re2::kRegexpMissingParen:
85
+ return RE2::ErrorMissingParen;
86
+ case re2::kRegexpTrailingBackslash:
87
+ return RE2::ErrorTrailingBackslash;
88
+ case re2::kRegexpRepeatArgument:
89
+ return RE2::ErrorRepeatArgument;
90
+ case re2::kRegexpRepeatSize:
91
+ return RE2::ErrorRepeatSize;
92
+ case re2::kRegexpRepeatOp:
93
+ return RE2::ErrorRepeatOp;
94
+ case re2::kRegexpBadPerlOp:
95
+ return RE2::ErrorBadPerlOp;
96
+ case re2::kRegexpBadUTF8:
97
+ return RE2::ErrorBadUTF8;
98
+ case re2::kRegexpBadNamedCapture:
99
+ return RE2::ErrorBadNamedCapture;
100
+ }
101
+ return RE2::ErrorInternal;
102
+ }
103
+
104
+ static std::string trunc(const StringPiece& pattern) {
105
+ if (pattern.size() < 100)
106
+ return std::string(pattern);
107
+ return std::string(pattern.substr(0, 100)) + "...";
108
+ }
109
+
110
+
111
+ RE2::RE2(const char* pattern) {
112
+ Init(pattern, DefaultOptions);
113
+ }
114
+
115
+ RE2::RE2(const std::string& pattern) {
116
+ Init(pattern, DefaultOptions);
117
+ }
118
+
119
+ RE2::RE2(const StringPiece& pattern) {
120
+ Init(pattern, DefaultOptions);
121
+ }
122
+
123
+ RE2::RE2(const StringPiece& pattern, const Options& options) {
124
+ Init(pattern, options);
125
+ }
126
+
127
+ int RE2::Options::ParseFlags() const {
128
+ int flags = Regexp::ClassNL;
129
+ switch (encoding()) {
130
+ default:
131
+ if (log_errors())
132
+ LOG(ERROR) << "Unknown encoding " << encoding();
133
+ break;
134
+ case RE2::Options::EncodingUTF8:
135
+ break;
136
+ case RE2::Options::EncodingLatin1:
137
+ flags |= Regexp::Latin1;
138
+ break;
139
+ }
140
+
141
+ if (!posix_syntax())
142
+ flags |= Regexp::LikePerl;
143
+
144
+ if (literal())
145
+ flags |= Regexp::Literal;
146
+
147
+ if (never_nl())
148
+ flags |= Regexp::NeverNL;
149
+
150
+ if (dot_nl())
151
+ flags |= Regexp::DotNL;
152
+
153
+ if (never_capture())
154
+ flags |= Regexp::NeverCapture;
155
+
156
+ if (!case_sensitive())
157
+ flags |= Regexp::FoldCase;
158
+
159
+ if (perl_classes())
160
+ flags |= Regexp::PerlClasses;
161
+
162
+ if (word_boundary())
163
+ flags |= Regexp::PerlB;
164
+
165
+ if (one_line())
166
+ flags |= Regexp::OneLine;
167
+
168
+ return flags;
169
+ }
170
+
171
+ void RE2::Init(const StringPiece& pattern, const Options& options) {
172
+ static std::once_flag empty_once;
173
+ std::call_once(empty_once, []() {
174
+ empty_string = new std::string;
175
+ empty_named_groups = new std::map<std::string, int>;
176
+ empty_group_names = new std::map<int, std::string>;
177
+ });
178
+
179
+ pattern_.assign(pattern.data(), pattern.size());
180
+ options_.Copy(options);
181
+ entire_regexp_ = NULL;
182
+ error_ = empty_string;
183
+ error_code_ = NoError;
184
+ error_arg_.clear();
185
+ prefix_.clear();
186
+ prefix_foldcase_ = false;
187
+ suffix_regexp_ = NULL;
188
+ prog_ = NULL;
189
+ num_captures_ = -1;
190
+ is_one_pass_ = false;
191
+
192
+ rprog_ = NULL;
193
+ named_groups_ = NULL;
194
+ group_names_ = NULL;
195
+
196
+ RegexpStatus status;
197
+ entire_regexp_ = Regexp::Parse(
198
+ pattern_,
199
+ static_cast<Regexp::ParseFlags>(options_.ParseFlags()),
200
+ &status);
201
+ if (entire_regexp_ == NULL) {
202
+ if (options_.log_errors()) {
203
+ LOG(ERROR) << "Error parsing '" << trunc(pattern_) << "': "
204
+ << status.Text();
205
+ }
206
+ error_ = new std::string(status.Text());
207
+ error_code_ = RegexpErrorToRE2(status.code());
208
+ error_arg_ = std::string(status.error_arg());
209
+ return;
210
+ }
211
+
212
+ re2::Regexp* suffix;
213
+ if (entire_regexp_->RequiredPrefix(&prefix_, &prefix_foldcase_, &suffix))
214
+ suffix_regexp_ = suffix;
215
+ else
216
+ suffix_regexp_ = entire_regexp_->Incref();
217
+
218
+ // Two thirds of the memory goes to the forward Prog,
219
+ // one third to the reverse prog, because the forward
220
+ // Prog has two DFAs but the reverse prog has one.
221
+ prog_ = suffix_regexp_->CompileToProg(options_.max_mem()*2/3);
222
+ if (prog_ == NULL) {
223
+ if (options_.log_errors())
224
+ LOG(ERROR) << "Error compiling '" << trunc(pattern_) << "'";
225
+ error_ = new std::string("pattern too large - compile failed");
226
+ error_code_ = RE2::ErrorPatternTooLarge;
227
+ return;
228
+ }
229
+
230
+ // We used to compute this lazily, but it's used during the
231
+ // typical control flow for a match call, so we now compute
232
+ // it eagerly, which avoids the overhead of std::once_flag.
233
+ num_captures_ = suffix_regexp_->NumCaptures();
234
+
235
+ // Could delay this until the first match call that
236
+ // cares about submatch information, but the one-pass
237
+ // machine's memory gets cut from the DFA memory budget,
238
+ // and that is harder to do if the DFA has already
239
+ // been built.
240
+ is_one_pass_ = prog_->IsOnePass();
241
+ }
242
+
243
+ // Returns rprog_, computing it if needed.
244
+ re2::Prog* RE2::ReverseProg() const {
245
+ std::call_once(rprog_once_, [](const RE2* re) {
246
+ re->rprog_ =
247
+ re->suffix_regexp_->CompileToReverseProg(re->options_.max_mem() / 3);
248
+ if (re->rprog_ == NULL) {
249
+ if (re->options_.log_errors())
250
+ LOG(ERROR) << "Error reverse compiling '" << trunc(re->pattern_) << "'";
251
+ // We no longer touch error_ and error_code_ because failing to compile
252
+ // the reverse Prog is not a showstopper: falling back to NFA execution
253
+ // is fine. More importantly, an RE2 object is supposed to be logically
254
+ // immutable: whatever ok() would have returned after Init() completed,
255
+ // it should continue to return that no matter what ReverseProg() does.
256
+ }
257
+ }, this);
258
+ return rprog_;
259
+ }
260
+
261
+ RE2::~RE2() {
262
+ if (suffix_regexp_)
263
+ suffix_regexp_->Decref();
264
+ if (entire_regexp_)
265
+ entire_regexp_->Decref();
266
+ delete prog_;
267
+ delete rprog_;
268
+ if (error_ != empty_string)
269
+ delete error_;
270
+ if (named_groups_ != NULL && named_groups_ != empty_named_groups)
271
+ delete named_groups_;
272
+ if (group_names_ != NULL && group_names_ != empty_group_names)
273
+ delete group_names_;
274
+ }
275
+
276
+ int RE2::ProgramSize() const {
277
+ if (prog_ == NULL)
278
+ return -1;
279
+ return prog_->size();
280
+ }
281
+
282
+ int RE2::ReverseProgramSize() const {
283
+ if (prog_ == NULL)
284
+ return -1;
285
+ Prog* prog = ReverseProg();
286
+ if (prog == NULL)
287
+ return -1;
288
+ return prog->size();
289
+ }
290
+
291
+ // Finds the most significant non-zero bit in n.
292
+ static int FindMSBSet(uint32_t n) {
293
+ DCHECK_NE(n, 0);
294
+ #if defined(__GNUC__)
295
+ return 31 ^ __builtin_clz(n);
296
+ #elif defined(_MSC_VER) && (defined(_M_X64) || defined(_M_IX86))
297
+ unsigned long c;
298
+ _BitScanReverse(&c, n);
299
+ return static_cast<int>(c);
300
+ #else
301
+ int c = 0;
302
+ for (int shift = 1 << 4; shift != 0; shift >>= 1) {
303
+ uint32_t word = n >> shift;
304
+ if (word != 0) {
305
+ n = word;
306
+ c += shift;
307
+ }
308
+ }
309
+ return c;
310
+ #endif
311
+ }
312
+
313
+ static int Fanout(Prog* prog, std::vector<int>* histogram) {
314
+ SparseArray<int> fanout(prog->size());
315
+ prog->Fanout(&fanout);
316
+ int data[32] = {};
317
+ int size = 0;
318
+ for (SparseArray<int>::iterator i = fanout.begin(); i != fanout.end(); ++i) {
319
+ if (i->value() == 0)
320
+ continue;
321
+ uint32_t value = i->value();
322
+ int bucket = FindMSBSet(value);
323
+ bucket += value & (value-1) ? 1 : 0;
324
+ ++data[bucket];
325
+ size = std::max(size, bucket+1);
326
+ }
327
+ if (histogram != NULL)
328
+ histogram->assign(data, data+size);
329
+ return size-1;
330
+ }
331
+
332
+ int RE2::ProgramFanout(std::vector<int>* histogram) const {
333
+ if (prog_ == NULL)
334
+ return -1;
335
+ return Fanout(prog_, histogram);
336
+ }
337
+
338
+ int RE2::ReverseProgramFanout(std::vector<int>* histogram) const {
339
+ if (prog_ == NULL)
340
+ return -1;
341
+ Prog* prog = ReverseProg();
342
+ if (prog == NULL)
343
+ return -1;
344
+ return Fanout(prog, histogram);
345
+ }
346
+
347
+ // Returns named_groups_, computing it if needed.
348
+ const std::map<std::string, int>& RE2::NamedCapturingGroups() const {
349
+ std::call_once(named_groups_once_, [](const RE2* re) {
350
+ if (re->suffix_regexp_ != NULL)
351
+ re->named_groups_ = re->suffix_regexp_->NamedCaptures();
352
+ if (re->named_groups_ == NULL)
353
+ re->named_groups_ = empty_named_groups;
354
+ }, this);
355
+ return *named_groups_;
356
+ }
357
+
358
+ // Returns group_names_, computing it if needed.
359
+ const std::map<int, std::string>& RE2::CapturingGroupNames() const {
360
+ std::call_once(group_names_once_, [](const RE2* re) {
361
+ if (re->suffix_regexp_ != NULL)
362
+ re->group_names_ = re->suffix_regexp_->CaptureNames();
363
+ if (re->group_names_ == NULL)
364
+ re->group_names_ = empty_group_names;
365
+ }, this);
366
+ return *group_names_;
367
+ }
368
+
369
+ /***** Convenience interfaces *****/
370
+
371
+ bool RE2::FullMatchN(const StringPiece& text, const RE2& re,
372
+ const Arg* const args[], int n) {
373
+ return re.DoMatch(text, ANCHOR_BOTH, NULL, args, n);
374
+ }
375
+
376
+ bool RE2::PartialMatchN(const StringPiece& text, const RE2& re,
377
+ const Arg* const args[], int n) {
378
+ return re.DoMatch(text, UNANCHORED, NULL, args, n);
379
+ }
380
+
381
+ bool RE2::ConsumeN(StringPiece* input, const RE2& re,
382
+ const Arg* const args[], int n) {
383
+ size_t consumed;
384
+ if (re.DoMatch(*input, ANCHOR_START, &consumed, args, n)) {
385
+ input->remove_prefix(consumed);
386
+ return true;
387
+ } else {
388
+ return false;
389
+ }
390
+ }
391
+
392
+ bool RE2::FindAndConsumeN(StringPiece* input, const RE2& re,
393
+ const Arg* const args[], int n) {
394
+ size_t consumed;
395
+ if (re.DoMatch(*input, UNANCHORED, &consumed, args, n)) {
396
+ input->remove_prefix(consumed);
397
+ return true;
398
+ } else {
399
+ return false;
400
+ }
401
+ }
402
+
403
+ bool RE2::Replace(std::string* str,
404
+ const RE2& re,
405
+ const StringPiece& rewrite) {
406
+ StringPiece vec[kVecSize];
407
+ int nvec = 1 + MaxSubmatch(rewrite);
408
+ if (nvec > 1 + re.NumberOfCapturingGroups())
409
+ return false;
410
+ if (nvec > static_cast<int>(arraysize(vec)))
411
+ return false;
412
+ if (!re.Match(*str, 0, str->size(), UNANCHORED, vec, nvec))
413
+ return false;
414
+
415
+ std::string s;
416
+ if (!re.Rewrite(&s, rewrite, vec, nvec))
417
+ return false;
418
+
419
+ assert(vec[0].data() >= str->data());
420
+ assert(vec[0].data() + vec[0].size() <= str->data() + str->size());
421
+ str->replace(vec[0].data() - str->data(), vec[0].size(), s);
422
+ return true;
423
+ }
424
+
425
+ int RE2::GlobalReplace(std::string* str,
426
+ const RE2& re,
427
+ const StringPiece& rewrite) {
428
+ StringPiece vec[kVecSize];
429
+ int nvec = 1 + MaxSubmatch(rewrite);
430
+ if (nvec > 1 + re.NumberOfCapturingGroups())
431
+ return false;
432
+ if (nvec > static_cast<int>(arraysize(vec)))
433
+ return false;
434
+
435
+ const char* p = str->data();
436
+ const char* ep = p + str->size();
437
+ const char* lastend = NULL;
438
+ std::string out;
439
+ int count = 0;
440
+ #ifdef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION
441
+ // Iterate just once when fuzzing. Otherwise, we easily get bogged down
442
+ // and coverage is unlikely to improve despite significant expense.
443
+ while (p == str->data()) {
444
+ #else
445
+ while (p <= ep) {
446
+ #endif
447
+ if (!re.Match(*str, static_cast<size_t>(p - str->data()),
448
+ str->size(), UNANCHORED, vec, nvec))
449
+ break;
450
+ if (p < vec[0].data())
451
+ out.append(p, vec[0].data() - p);
452
+ if (vec[0].data() == lastend && vec[0].empty()) {
453
+ // Disallow empty match at end of last match: skip ahead.
454
+ //
455
+ // fullrune() takes int, not ptrdiff_t. However, it just looks
456
+ // at the leading byte and treats any length >= 4 the same.
457
+ if (re.options().encoding() == RE2::Options::EncodingUTF8 &&
458
+ fullrune(p, static_cast<int>(std::min(ptrdiff_t{4}, ep - p)))) {
459
+ // re is in UTF-8 mode and there is enough left of str
460
+ // to allow us to advance by up to UTFmax bytes.
461
+ Rune r;
462
+ int n = chartorune(&r, p);
463
+ // Some copies of chartorune have a bug that accepts
464
+ // encodings of values in (10FFFF, 1FFFFF] as valid.
465
+ if (r > Runemax) {
466
+ n = 1;
467
+ r = Runeerror;
468
+ }
469
+ if (!(n == 1 && r == Runeerror)) { // no decoding error
470
+ out.append(p, n);
471
+ p += n;
472
+ continue;
473
+ }
474
+ }
475
+ // Most likely, re is in Latin-1 mode. If it is in UTF-8 mode,
476
+ // we fell through from above and the GIGO principle applies.
477
+ if (p < ep)
478
+ out.append(p, 1);
479
+ p++;
480
+ continue;
481
+ }
482
+ re.Rewrite(&out, rewrite, vec, nvec);
483
+ p = vec[0].data() + vec[0].size();
484
+ lastend = p;
485
+ count++;
486
+ }
487
+
488
+ if (count == 0)
489
+ return 0;
490
+
491
+ if (p < ep)
492
+ out.append(p, ep - p);
493
+ using std::swap;
494
+ swap(out, *str);
495
+ return count;
496
+ }
497
+
498
+ bool RE2::Extract(const StringPiece& text,
499
+ const RE2& re,
500
+ const StringPiece& rewrite,
501
+ std::string* out) {
502
+ StringPiece vec[kVecSize];
503
+ int nvec = 1 + MaxSubmatch(rewrite);
504
+ if (nvec > 1 + re.NumberOfCapturingGroups())
505
+ return false;
506
+ if (nvec > static_cast<int>(arraysize(vec)))
507
+ return false;
508
+ if (!re.Match(text, 0, text.size(), UNANCHORED, vec, nvec))
509
+ return false;
510
+
511
+ out->clear();
512
+ return re.Rewrite(out, rewrite, vec, nvec);
513
+ }
514
+
515
+ std::string RE2::QuoteMeta(const StringPiece& unquoted) {
516
+ std::string result;
517
+ result.reserve(unquoted.size() << 1);
518
+
519
+ // Escape any ascii character not in [A-Za-z_0-9].
520
+ //
521
+ // Note that it's legal to escape a character even if it has no
522
+ // special meaning in a regular expression -- so this function does
523
+ // that. (This also makes it identical to the perl function of the
524
+ // same name except for the null-character special case;
525
+ // see `perldoc -f quotemeta`.)
526
+ for (size_t ii = 0; ii < unquoted.size(); ++ii) {
527
+ // Note that using 'isalnum' here raises the benchmark time from
528
+ // 32ns to 58ns:
529
+ if ((unquoted[ii] < 'a' || unquoted[ii] > 'z') &&
530
+ (unquoted[ii] < 'A' || unquoted[ii] > 'Z') &&
531
+ (unquoted[ii] < '0' || unquoted[ii] > '9') &&
532
+ unquoted[ii] != '_' &&
533
+ // If this is the part of a UTF8 or Latin1 character, we need
534
+ // to copy this byte without escaping. Experimentally this is
535
+ // what works correctly with the regexp library.
536
+ !(unquoted[ii] & 128)) {
537
+ if (unquoted[ii] == '\0') { // Special handling for null chars.
538
+ // Note that this special handling is not strictly required for RE2,
539
+ // but this quoting is required for other regexp libraries such as
540
+ // PCRE.
541
+ // Can't use "\\0" since the next character might be a digit.
542
+ result += "\\x00";
543
+ continue;
544
+ }
545
+ result += '\\';
546
+ }
547
+ result += unquoted[ii];
548
+ }
549
+
550
+ return result;
551
+ }
552
+
553
+ bool RE2::PossibleMatchRange(std::string* min, std::string* max,
554
+ int maxlen) const {
555
+ if (prog_ == NULL)
556
+ return false;
557
+
558
+ int n = static_cast<int>(prefix_.size());
559
+ if (n > maxlen)
560
+ n = maxlen;
561
+
562
+ // Determine initial min max from prefix_ literal.
563
+ *min = prefix_.substr(0, n);
564
+ *max = prefix_.substr(0, n);
565
+ if (prefix_foldcase_) {
566
+ // prefix is ASCII lowercase; change *min to uppercase.
567
+ for (int i = 0; i < n; i++) {
568
+ char& c = (*min)[i];
569
+ if ('a' <= c && c <= 'z')
570
+ c += 'A' - 'a';
571
+ }
572
+ }
573
+
574
+ // Add to prefix min max using PossibleMatchRange on regexp.
575
+ std::string dmin, dmax;
576
+ maxlen -= n;
577
+ if (maxlen > 0 && prog_->PossibleMatchRange(&dmin, &dmax, maxlen)) {
578
+ min->append(dmin);
579
+ max->append(dmax);
580
+ } else if (!max->empty()) {
581
+ // prog_->PossibleMatchRange has failed us,
582
+ // but we still have useful information from prefix_.
583
+ // Round up *max to allow any possible suffix.
584
+ PrefixSuccessor(max);
585
+ } else {
586
+ // Nothing useful.
587
+ *min = "";
588
+ *max = "";
589
+ return false;
590
+ }
591
+
592
+ return true;
593
+ }
594
+
595
+ // Avoid possible locale nonsense in standard strcasecmp.
596
+ // The string a is known to be all lowercase.
597
+ static int ascii_strcasecmp(const char* a, const char* b, size_t len) {
598
+ const char* ae = a + len;
599
+
600
+ for (; a < ae; a++, b++) {
601
+ uint8_t x = *a;
602
+ uint8_t y = *b;
603
+ if ('A' <= y && y <= 'Z')
604
+ y += 'a' - 'A';
605
+ if (x != y)
606
+ return x - y;
607
+ }
608
+ return 0;
609
+ }
610
+
611
+
612
+ /***** Actual matching and rewriting code *****/
613
+
614
+ bool RE2::Match(const StringPiece& text,
615
+ size_t startpos,
616
+ size_t endpos,
617
+ Anchor re_anchor,
618
+ StringPiece* submatch,
619
+ int nsubmatch) const {
620
+ if (!ok()) {
621
+ if (options_.log_errors())
622
+ LOG(ERROR) << "Invalid RE2: " << *error_;
623
+ return false;
624
+ }
625
+
626
+ if (startpos > endpos || endpos > text.size()) {
627
+ if (options_.log_errors())
628
+ LOG(ERROR) << "RE2: invalid startpos, endpos pair. ["
629
+ << "startpos: " << startpos << ", "
630
+ << "endpos: " << endpos << ", "
631
+ << "text size: " << text.size() << "]";
632
+ return false;
633
+ }
634
+
635
+ StringPiece subtext = text;
636
+ subtext.remove_prefix(startpos);
637
+ subtext.remove_suffix(text.size() - endpos);
638
+
639
+ // Use DFAs to find exact location of match, filter out non-matches.
640
+
641
+ // Don't ask for the location if we won't use it.
642
+ // SearchDFA can do extra optimizations in that case.
643
+ StringPiece match;
644
+ StringPiece* matchp = &match;
645
+ if (nsubmatch == 0)
646
+ matchp = NULL;
647
+
648
+ int ncap = 1 + NumberOfCapturingGroups();
649
+ if (ncap > nsubmatch)
650
+ ncap = nsubmatch;
651
+
652
+ // If the regexp is anchored explicitly, must not be in middle of text.
653
+ if (prog_->anchor_start() && startpos != 0)
654
+ return false;
655
+ if (prog_->anchor_end() && endpos != text.size())
656
+ return false;
657
+
658
+ // If the regexp is anchored explicitly, update re_anchor
659
+ // so that we can potentially fall into a faster case below.
660
+ if (prog_->anchor_start() && prog_->anchor_end())
661
+ re_anchor = ANCHOR_BOTH;
662
+ else if (prog_->anchor_start() && re_anchor != ANCHOR_BOTH)
663
+ re_anchor = ANCHOR_START;
664
+
665
+ // Check for the required prefix, if any.
666
+ size_t prefixlen = 0;
667
+ if (!prefix_.empty()) {
668
+ if (startpos != 0)
669
+ return false;
670
+ prefixlen = prefix_.size();
671
+ if (prefixlen > subtext.size())
672
+ return false;
673
+ if (prefix_foldcase_) {
674
+ if (ascii_strcasecmp(&prefix_[0], subtext.data(), prefixlen) != 0)
675
+ return false;
676
+ } else {
677
+ if (memcmp(&prefix_[0], subtext.data(), prefixlen) != 0)
678
+ return false;
679
+ }
680
+ subtext.remove_prefix(prefixlen);
681
+ // If there is a required prefix, the anchor must be at least ANCHOR_START.
682
+ if (re_anchor != ANCHOR_BOTH)
683
+ re_anchor = ANCHOR_START;
684
+ }
685
+
686
+ Prog::Anchor anchor = Prog::kUnanchored;
687
+ Prog::MatchKind kind = Prog::kFirstMatch;
688
+ if (options_.longest_match())
689
+ kind = Prog::kLongestMatch;
690
+
691
+ bool can_one_pass = (is_one_pass_ && ncap <= Prog::kMaxOnePassCapture);
692
+
693
+ // BitState allocates a bitmap of size prog_->list_count() * text.size().
694
+ // It also allocates a stack of 3-word structures which could potentially
695
+ // grow as large as prog_->list_count() * text.size(), but in practice is
696
+ // much smaller.
697
+ const int kMaxBitStateBitmapSize = 256*1024; // bitmap size <= max (bits)
698
+ bool can_bit_state = prog_->CanBitState();
699
+ size_t bit_state_text_max = kMaxBitStateBitmapSize / prog_->list_count();
700
+
701
+ #ifdef RE2_HAVE_THREAD_LOCAL
702
+ hooks::context = this;
703
+ #endif
704
+ bool dfa_failed = false;
705
+ bool skipped_test = false;
706
+ switch (re_anchor) {
707
+ default:
708
+ LOG(DFATAL) << "Unexpected re_anchor value: " << re_anchor;
709
+ return false;
710
+
711
+ case UNANCHORED: {
712
+ if (prog_->anchor_end()) {
713
+ // This is a very special case: we don't need the forward DFA because
714
+ // we already know where the match must end! Instead, the reverse DFA
715
+ // can say whether there is a match and (optionally) where it starts.
716
+ Prog* prog = ReverseProg();
717
+ if (prog == NULL) {
718
+ // Fall back to NFA below.
719
+ skipped_test = true;
720
+ break;
721
+ }
722
+ if (!prog->SearchDFA(subtext, text, Prog::kAnchored,
723
+ Prog::kLongestMatch, matchp, &dfa_failed, NULL)) {
724
+ if (dfa_failed) {
725
+ if (options_.log_errors())
726
+ LOG(ERROR) << "DFA out of memory: "
727
+ << "pattern length " << pattern_.size() << ", "
728
+ << "program size " << prog->size() << ", "
729
+ << "list count " << prog->list_count() << ", "
730
+ << "bytemap range " << prog->bytemap_range();
731
+ // Fall back to NFA below.
732
+ skipped_test = true;
733
+ break;
734
+ }
735
+ return false;
736
+ }
737
+ if (matchp == NULL) // Matched. Don't care where.
738
+ return true;
739
+ break;
740
+ }
741
+
742
+ if (!prog_->SearchDFA(subtext, text, anchor, kind,
743
+ matchp, &dfa_failed, NULL)) {
744
+ if (dfa_failed) {
745
+ if (options_.log_errors())
746
+ LOG(ERROR) << "DFA out of memory: "
747
+ << "pattern length " << pattern_.size() << ", "
748
+ << "program size " << prog_->size() << ", "
749
+ << "list count " << prog_->list_count() << ", "
750
+ << "bytemap range " << prog_->bytemap_range();
751
+ // Fall back to NFA below.
752
+ skipped_test = true;
753
+ break;
754
+ }
755
+ return false;
756
+ }
757
+ if (matchp == NULL) // Matched. Don't care where.
758
+ return true;
759
+ // SearchDFA set match.end() but didn't know where the
760
+ // match started. Run the regexp backward from match.end()
761
+ // to find the longest possible match -- that's where it started.
762
+ Prog* prog = ReverseProg();
763
+ if (prog == NULL) {
764
+ // Fall back to NFA below.
765
+ skipped_test = true;
766
+ break;
767
+ }
768
+ if (!prog->SearchDFA(match, text, Prog::kAnchored,
769
+ Prog::kLongestMatch, &match, &dfa_failed, NULL)) {
770
+ if (dfa_failed) {
771
+ if (options_.log_errors())
772
+ LOG(ERROR) << "DFA out of memory: "
773
+ << "pattern length " << pattern_.size() << ", "
774
+ << "program size " << prog->size() << ", "
775
+ << "list count " << prog->list_count() << ", "
776
+ << "bytemap range " << prog->bytemap_range();
777
+ // Fall back to NFA below.
778
+ skipped_test = true;
779
+ break;
780
+ }
781
+ if (options_.log_errors())
782
+ LOG(ERROR) << "SearchDFA inconsistency";
783
+ return false;
784
+ }
785
+ break;
786
+ }
787
+
788
+ case ANCHOR_BOTH:
789
+ case ANCHOR_START:
790
+ if (re_anchor == ANCHOR_BOTH)
791
+ kind = Prog::kFullMatch;
792
+ anchor = Prog::kAnchored;
793
+
794
+ // If only a small amount of text and need submatch
795
+ // information anyway and we're going to use OnePass or BitState
796
+ // to get it, we might as well not even bother with the DFA:
797
+ // OnePass or BitState will be fast enough.
798
+ // On tiny texts, OnePass outruns even the DFA, and
799
+ // it doesn't have the shared state and occasional mutex that
800
+ // the DFA does.
801
+ if (can_one_pass && text.size() <= 4096 &&
802
+ (ncap > 1 || text.size() <= 8)) {
803
+ skipped_test = true;
804
+ break;
805
+ }
806
+ if (can_bit_state && text.size() <= bit_state_text_max && ncap > 1) {
807
+ skipped_test = true;
808
+ break;
809
+ }
810
+ if (!prog_->SearchDFA(subtext, text, anchor, kind,
811
+ &match, &dfa_failed, NULL)) {
812
+ if (dfa_failed) {
813
+ if (options_.log_errors())
814
+ LOG(ERROR) << "DFA out of memory: "
815
+ << "pattern length " << pattern_.size() << ", "
816
+ << "program size " << prog_->size() << ", "
817
+ << "list count " << prog_->list_count() << ", "
818
+ << "bytemap range " << prog_->bytemap_range();
819
+ // Fall back to NFA below.
820
+ skipped_test = true;
821
+ break;
822
+ }
823
+ return false;
824
+ }
825
+ break;
826
+ }
827
+
828
+ if (!skipped_test && ncap <= 1) {
829
+ // We know exactly where it matches. That's enough.
830
+ if (ncap == 1)
831
+ submatch[0] = match;
832
+ } else {
833
+ StringPiece subtext1;
834
+ if (skipped_test) {
835
+ // DFA ran out of memory or was skipped:
836
+ // need to search in entire original text.
837
+ subtext1 = subtext;
838
+ } else {
839
+ // DFA found the exact match location:
840
+ // let NFA run an anchored, full match search
841
+ // to find submatch locations.
842
+ subtext1 = match;
843
+ anchor = Prog::kAnchored;
844
+ kind = Prog::kFullMatch;
845
+ }
846
+
847
+ if (can_one_pass && anchor != Prog::kUnanchored) {
848
+ if (!prog_->SearchOnePass(subtext1, text, anchor, kind, submatch, ncap)) {
849
+ if (!skipped_test && options_.log_errors())
850
+ LOG(ERROR) << "SearchOnePass inconsistency";
851
+ return false;
852
+ }
853
+ } else if (can_bit_state && subtext1.size() <= bit_state_text_max) {
854
+ if (!prog_->SearchBitState(subtext1, text, anchor,
855
+ kind, submatch, ncap)) {
856
+ if (!skipped_test && options_.log_errors())
857
+ LOG(ERROR) << "SearchBitState inconsistency";
858
+ return false;
859
+ }
860
+ } else {
861
+ if (!prog_->SearchNFA(subtext1, text, anchor, kind, submatch, ncap)) {
862
+ if (!skipped_test && options_.log_errors())
863
+ LOG(ERROR) << "SearchNFA inconsistency";
864
+ return false;
865
+ }
866
+ }
867
+ }
868
+
869
+ // Adjust overall match for required prefix that we stripped off.
870
+ if (prefixlen > 0 && nsubmatch > 0)
871
+ submatch[0] = StringPiece(submatch[0].data() - prefixlen,
872
+ submatch[0].size() + prefixlen);
873
+
874
+ // Zero submatches that don't exist in the regexp.
875
+ for (int i = ncap; i < nsubmatch; i++)
876
+ submatch[i] = StringPiece();
877
+ return true;
878
+ }
879
+
880
+ // Internal matcher - like Match() but takes Args not StringPieces.
881
+ bool RE2::DoMatch(const StringPiece& text,
882
+ Anchor re_anchor,
883
+ size_t* consumed,
884
+ const Arg* const* args,
885
+ int n) const {
886
+ if (!ok()) {
887
+ if (options_.log_errors())
888
+ LOG(ERROR) << "Invalid RE2: " << *error_;
889
+ return false;
890
+ }
891
+
892
+ if (NumberOfCapturingGroups() < n) {
893
+ // RE has fewer capturing groups than number of Arg pointers passed in.
894
+ return false;
895
+ }
896
+
897
+ // Count number of capture groups needed.
898
+ int nvec;
899
+ if (n == 0 && consumed == NULL)
900
+ nvec = 0;
901
+ else
902
+ nvec = n+1;
903
+
904
+ StringPiece* vec;
905
+ StringPiece stkvec[kVecSize];
906
+ StringPiece* heapvec = NULL;
907
+
908
+ if (nvec <= static_cast<int>(arraysize(stkvec))) {
909
+ vec = stkvec;
910
+ } else {
911
+ vec = new StringPiece[nvec];
912
+ heapvec = vec;
913
+ }
914
+
915
+ if (!Match(text, 0, text.size(), re_anchor, vec, nvec)) {
916
+ delete[] heapvec;
917
+ return false;
918
+ }
919
+
920
+ if (consumed != NULL)
921
+ *consumed = static_cast<size_t>(vec[0].end() - text.begin());
922
+
923
+ if (n == 0 || args == NULL) {
924
+ // We are not interested in results
925
+ delete[] heapvec;
926
+ return true;
927
+ }
928
+
929
+ // If we got here, we must have matched the whole pattern.
930
+ for (int i = 0; i < n; i++) {
931
+ const StringPiece& s = vec[i+1];
932
+ if (!args[i]->Parse(s.data(), s.size())) {
933
+ // TODO: Should we indicate what the error was?
934
+ delete[] heapvec;
935
+ return false;
936
+ }
937
+ }
938
+
939
+ delete[] heapvec;
940
+ return true;
941
+ }
942
+
943
+ // Checks that the rewrite string is well-formed with respect to this
944
+ // regular expression.
945
+ bool RE2::CheckRewriteString(const StringPiece& rewrite,
946
+ std::string* error) const {
947
+ int max_token = -1;
948
+ for (const char *s = rewrite.data(), *end = s + rewrite.size();
949
+ s < end; s++) {
950
+ int c = *s;
951
+ if (c != '\\') {
952
+ continue;
953
+ }
954
+ if (++s == end) {
955
+ *error = "Rewrite schema error: '\\' not allowed at end.";
956
+ return false;
957
+ }
958
+ c = *s;
959
+ if (c == '\\') {
960
+ continue;
961
+ }
962
+ if (!isdigit(c)) {
963
+ *error = "Rewrite schema error: "
964
+ "'\\' must be followed by a digit or '\\'.";
965
+ return false;
966
+ }
967
+ int n = (c - '0');
968
+ if (max_token < n) {
969
+ max_token = n;
970
+ }
971
+ }
972
+
973
+ if (max_token > NumberOfCapturingGroups()) {
974
+ *error = StringPrintf(
975
+ "Rewrite schema requests %d matches, but the regexp only has %d "
976
+ "parenthesized subexpressions.",
977
+ max_token, NumberOfCapturingGroups());
978
+ return false;
979
+ }
980
+ return true;
981
+ }
982
+
983
+ // Returns the maximum submatch needed for the rewrite to be done by Replace().
984
+ // E.g. if rewrite == "foo \\2,\\1", returns 2.
985
+ int RE2::MaxSubmatch(const StringPiece& rewrite) {
986
+ int max = 0;
987
+ for (const char *s = rewrite.data(), *end = s + rewrite.size();
988
+ s < end; s++) {
989
+ if (*s == '\\') {
990
+ s++;
991
+ int c = (s < end) ? *s : -1;
992
+ if (isdigit(c)) {
993
+ int n = (c - '0');
994
+ if (n > max)
995
+ max = n;
996
+ }
997
+ }
998
+ }
999
+ return max;
1000
+ }
1001
+
1002
+ // Append the "rewrite" string, with backslash subsitutions from "vec",
1003
+ // to string "out".
1004
+ bool RE2::Rewrite(std::string* out,
1005
+ const StringPiece& rewrite,
1006
+ const StringPiece* vec,
1007
+ int veclen) const {
1008
+ for (const char *s = rewrite.data(), *end = s + rewrite.size();
1009
+ s < end; s++) {
1010
+ if (*s != '\\') {
1011
+ out->push_back(*s);
1012
+ continue;
1013
+ }
1014
+ s++;
1015
+ int c = (s < end) ? *s : -1;
1016
+ if (isdigit(c)) {
1017
+ int n = (c - '0');
1018
+ if (n >= veclen) {
1019
+ if (options_.log_errors()) {
1020
+ LOG(ERROR) << "invalid substitution \\" << n
1021
+ << " from " << veclen << " groups";
1022
+ }
1023
+ return false;
1024
+ }
1025
+ StringPiece snip = vec[n];
1026
+ if (!snip.empty())
1027
+ out->append(snip.data(), snip.size());
1028
+ } else if (c == '\\') {
1029
+ out->push_back('\\');
1030
+ } else {
1031
+ if (options_.log_errors())
1032
+ LOG(ERROR) << "invalid rewrite pattern: " << rewrite.data();
1033
+ return false;
1034
+ }
1035
+ }
1036
+ return true;
1037
+ }
1038
+
1039
+ /***** Parsers for various types *****/
1040
+
1041
+ bool RE2::Arg::parse_null(const char* str, size_t n, void* dest) {
1042
+ // We fail if somebody asked us to store into a non-NULL void* pointer
1043
+ return (dest == NULL);
1044
+ }
1045
+
1046
+ bool RE2::Arg::parse_string(const char* str, size_t n, void* dest) {
1047
+ if (dest == NULL) return true;
1048
+ reinterpret_cast<std::string*>(dest)->assign(str, n);
1049
+ return true;
1050
+ }
1051
+
1052
+ bool RE2::Arg::parse_stringpiece(const char* str, size_t n, void* dest) {
1053
+ if (dest == NULL) return true;
1054
+ *(reinterpret_cast<StringPiece*>(dest)) = StringPiece(str, n);
1055
+ return true;
1056
+ }
1057
+
1058
+ bool RE2::Arg::parse_char(const char* str, size_t n, void* dest) {
1059
+ if (n != 1) return false;
1060
+ if (dest == NULL) return true;
1061
+ *(reinterpret_cast<char*>(dest)) = str[0];
1062
+ return true;
1063
+ }
1064
+
1065
+ bool RE2::Arg::parse_schar(const char* str, size_t n, void* dest) {
1066
+ if (n != 1) return false;
1067
+ if (dest == NULL) return true;
1068
+ *(reinterpret_cast<signed char*>(dest)) = str[0];
1069
+ return true;
1070
+ }
1071
+
1072
+ bool RE2::Arg::parse_uchar(const char* str, size_t n, void* dest) {
1073
+ if (n != 1) return false;
1074
+ if (dest == NULL) return true;
1075
+ *(reinterpret_cast<unsigned char*>(dest)) = str[0];
1076
+ return true;
1077
+ }
1078
+
1079
+ // Largest number spec that we are willing to parse
1080
+ static const int kMaxNumberLength = 32;
1081
+
1082
+ // REQUIRES "buf" must have length at least nbuf.
1083
+ // Copies "str" into "buf" and null-terminates.
1084
+ // Overwrites *np with the new length.
1085
+ static const char* TerminateNumber(char* buf, size_t nbuf, const char* str,
1086
+ size_t* np, bool accept_spaces) {
1087
+ size_t n = *np;
1088
+ if (n == 0) return "";
1089
+ if (n > 0 && isspace(*str)) {
1090
+ // We are less forgiving than the strtoxxx() routines and do not
1091
+ // allow leading spaces. We do allow leading spaces for floats.
1092
+ if (!accept_spaces) {
1093
+ return "";
1094
+ }
1095
+ while (n > 0 && isspace(*str)) {
1096
+ n--;
1097
+ str++;
1098
+ }
1099
+ }
1100
+
1101
+ // Although buf has a fixed maximum size, we can still handle
1102
+ // arbitrarily large integers correctly by omitting leading zeros.
1103
+ // (Numbers that are still too long will be out of range.)
1104
+ // Before deciding whether str is too long,
1105
+ // remove leading zeros with s/000+/00/.
1106
+ // Leaving the leading two zeros in place means that
1107
+ // we don't change 0000x123 (invalid) into 0x123 (valid).
1108
+ // Skip over leading - before replacing.
1109
+ bool neg = false;
1110
+ if (n >= 1 && str[0] == '-') {
1111
+ neg = true;
1112
+ n--;
1113
+ str++;
1114
+ }
1115
+
1116
+ if (n >= 3 && str[0] == '0' && str[1] == '0') {
1117
+ while (n >= 3 && str[2] == '0') {
1118
+ n--;
1119
+ str++;
1120
+ }
1121
+ }
1122
+
1123
+ if (neg) { // make room in buf for -
1124
+ n++;
1125
+ str--;
1126
+ }
1127
+
1128
+ if (n > nbuf-1) return "";
1129
+
1130
+ memmove(buf, str, n);
1131
+ if (neg) {
1132
+ buf[0] = '-';
1133
+ }
1134
+ buf[n] = '\0';
1135
+ *np = n;
1136
+ return buf;
1137
+ }
1138
+
1139
+ bool RE2::Arg::parse_long_radix(const char* str,
1140
+ size_t n,
1141
+ void* dest,
1142
+ int radix) {
1143
+ if (n == 0) return false;
1144
+ char buf[kMaxNumberLength+1];
1145
+ str = TerminateNumber(buf, sizeof buf, str, &n, false);
1146
+ char* end;
1147
+ errno = 0;
1148
+ long r = strtol(str, &end, radix);
1149
+ if (end != str + n) return false; // Leftover junk
1150
+ if (errno) return false;
1151
+ if (dest == NULL) return true;
1152
+ *(reinterpret_cast<long*>(dest)) = r;
1153
+ return true;
1154
+ }
1155
+
1156
+ bool RE2::Arg::parse_ulong_radix(const char* str,
1157
+ size_t n,
1158
+ void* dest,
1159
+ int radix) {
1160
+ if (n == 0) return false;
1161
+ char buf[kMaxNumberLength+1];
1162
+ str = TerminateNumber(buf, sizeof buf, str, &n, false);
1163
+ if (str[0] == '-') {
1164
+ // strtoul() will silently accept negative numbers and parse
1165
+ // them. This module is more strict and treats them as errors.
1166
+ return false;
1167
+ }
1168
+
1169
+ char* end;
1170
+ errno = 0;
1171
+ unsigned long r = strtoul(str, &end, radix);
1172
+ if (end != str + n) return false; // Leftover junk
1173
+ if (errno) return false;
1174
+ if (dest == NULL) return true;
1175
+ *(reinterpret_cast<unsigned long*>(dest)) = r;
1176
+ return true;
1177
+ }
1178
+
1179
+ bool RE2::Arg::parse_short_radix(const char* str,
1180
+ size_t n,
1181
+ void* dest,
1182
+ int radix) {
1183
+ long r;
1184
+ if (!parse_long_radix(str, n, &r, radix)) return false; // Could not parse
1185
+ if ((short)r != r) return false; // Out of range
1186
+ if (dest == NULL) return true;
1187
+ *(reinterpret_cast<short*>(dest)) = (short)r;
1188
+ return true;
1189
+ }
1190
+
1191
+ bool RE2::Arg::parse_ushort_radix(const char* str,
1192
+ size_t n,
1193
+ void* dest,
1194
+ int radix) {
1195
+ unsigned long r;
1196
+ if (!parse_ulong_radix(str, n, &r, radix)) return false; // Could not parse
1197
+ if ((unsigned short)r != r) return false; // Out of range
1198
+ if (dest == NULL) return true;
1199
+ *(reinterpret_cast<unsigned short*>(dest)) = (unsigned short)r;
1200
+ return true;
1201
+ }
1202
+
1203
+ bool RE2::Arg::parse_int_radix(const char* str,
1204
+ size_t n,
1205
+ void* dest,
1206
+ int radix) {
1207
+ long r;
1208
+ if (!parse_long_radix(str, n, &r, radix)) return false; // Could not parse
1209
+ if ((int)r != r) return false; // Out of range
1210
+ if (dest == NULL) return true;
1211
+ *(reinterpret_cast<int*>(dest)) = (int)r;
1212
+ return true;
1213
+ }
1214
+
1215
+ bool RE2::Arg::parse_uint_radix(const char* str,
1216
+ size_t n,
1217
+ void* dest,
1218
+ int radix) {
1219
+ unsigned long r;
1220
+ if (!parse_ulong_radix(str, n, &r, radix)) return false; // Could not parse
1221
+ if ((unsigned int)r != r) return false; // Out of range
1222
+ if (dest == NULL) return true;
1223
+ *(reinterpret_cast<unsigned int*>(dest)) = (unsigned int)r;
1224
+ return true;
1225
+ }
1226
+
1227
+ bool RE2::Arg::parse_longlong_radix(const char* str,
1228
+ size_t n,
1229
+ void* dest,
1230
+ int radix) {
1231
+ if (n == 0) return false;
1232
+ char buf[kMaxNumberLength+1];
1233
+ str = TerminateNumber(buf, sizeof buf, str, &n, false);
1234
+ char* end;
1235
+ errno = 0;
1236
+ long long r = strtoll(str, &end, radix);
1237
+ if (end != str + n) return false; // Leftover junk
1238
+ if (errno) return false;
1239
+ if (dest == NULL) return true;
1240
+ *(reinterpret_cast<long long*>(dest)) = r;
1241
+ return true;
1242
+ }
1243
+
1244
+ bool RE2::Arg::parse_ulonglong_radix(const char* str,
1245
+ size_t n,
1246
+ void* dest,
1247
+ int radix) {
1248
+ if (n == 0) return false;
1249
+ char buf[kMaxNumberLength+1];
1250
+ str = TerminateNumber(buf, sizeof buf, str, &n, false);
1251
+ if (str[0] == '-') {
1252
+ // strtoull() will silently accept negative numbers and parse
1253
+ // them. This module is more strict and treats them as errors.
1254
+ return false;
1255
+ }
1256
+ char* end;
1257
+ errno = 0;
1258
+ unsigned long long r = strtoull(str, &end, radix);
1259
+ if (end != str + n) return false; // Leftover junk
1260
+ if (errno) return false;
1261
+ if (dest == NULL) return true;
1262
+ *(reinterpret_cast<unsigned long long*>(dest)) = r;
1263
+ return true;
1264
+ }
1265
+
1266
+ static bool parse_double_float(const char* str, size_t n, bool isfloat,
1267
+ void* dest) {
1268
+ if (n == 0) return false;
1269
+ static const int kMaxLength = 200;
1270
+ char buf[kMaxLength+1];
1271
+ str = TerminateNumber(buf, sizeof buf, str, &n, true);
1272
+ char* end;
1273
+ errno = 0;
1274
+ double r;
1275
+ if (isfloat) {
1276
+ r = strtof(str, &end);
1277
+ } else {
1278
+ r = strtod(str, &end);
1279
+ }
1280
+ if (end != str + n) return false; // Leftover junk
1281
+ if (errno) return false;
1282
+ if (dest == NULL) return true;
1283
+ if (isfloat) {
1284
+ *(reinterpret_cast<float*>(dest)) = (float)r;
1285
+ } else {
1286
+ *(reinterpret_cast<double*>(dest)) = r;
1287
+ }
1288
+ return true;
1289
+ }
1290
+
1291
+ bool RE2::Arg::parse_double(const char* str, size_t n, void* dest) {
1292
+ return parse_double_float(str, n, false, dest);
1293
+ }
1294
+
1295
+ bool RE2::Arg::parse_float(const char* str, size_t n, void* dest) {
1296
+ return parse_double_float(str, n, true, dest);
1297
+ }
1298
+
1299
+ #define DEFINE_INTEGER_PARSER(name) \
1300
+ bool RE2::Arg::parse_##name(const char* str, size_t n, void* dest) { \
1301
+ return parse_##name##_radix(str, n, dest, 10); \
1302
+ } \
1303
+ bool RE2::Arg::parse_##name##_hex(const char* str, size_t n, void* dest) { \
1304
+ return parse_##name##_radix(str, n, dest, 16); \
1305
+ } \
1306
+ bool RE2::Arg::parse_##name##_octal(const char* str, size_t n, void* dest) { \
1307
+ return parse_##name##_radix(str, n, dest, 8); \
1308
+ } \
1309
+ bool RE2::Arg::parse_##name##_cradix(const char* str, size_t n, \
1310
+ void* dest) { \
1311
+ return parse_##name##_radix(str, n, dest, 0); \
1312
+ }
1313
+
1314
+ DEFINE_INTEGER_PARSER(short)
1315
+ DEFINE_INTEGER_PARSER(ushort)
1316
+ DEFINE_INTEGER_PARSER(int)
1317
+ DEFINE_INTEGER_PARSER(uint)
1318
+ DEFINE_INTEGER_PARSER(long)
1319
+ DEFINE_INTEGER_PARSER(ulong)
1320
+ DEFINE_INTEGER_PARSER(longlong)
1321
+ DEFINE_INTEGER_PARSER(ulonglong)
1322
+
1323
+ #undef DEFINE_INTEGER_PARSER
1324
+
1325
+ namespace hooks {
1326
+
1327
+ #ifdef RE2_HAVE_THREAD_LOCAL
1328
+ thread_local const RE2* context = NULL;
1329
+ #endif
1330
+
1331
+ template <typename T>
1332
+ union Hook {
1333
+ void Store(T* cb) { cb_.store(cb, std::memory_order_release); }
1334
+ T* Load() const { return cb_.load(std::memory_order_acquire); }
1335
+
1336
+ #if !defined(__clang__) && defined(_MSC_VER)
1337
+ // Citing https://github.com/protocolbuffers/protobuf/pull/4777 as precedent,
1338
+ // this is a gross hack to make std::atomic<T*> constant-initialized on MSVC.
1339
+ static_assert(ATOMIC_POINTER_LOCK_FREE == 2,
1340
+ "std::atomic<T*> must be always lock-free");
1341
+ T* cb_for_constinit_;
1342
+ #endif
1343
+
1344
+ std::atomic<T*> cb_;
1345
+ };
1346
+
1347
+ template <typename T>
1348
+ static void DoNothing(const T&) {}
1349
+
1350
+ #define DEFINE_HOOK(type, name) \
1351
+ static Hook<type##Callback> name##_hook = {{&DoNothing<type>}}; \
1352
+ void Set##type##Hook(type##Callback* cb) { name##_hook.Store(cb); } \
1353
+ type##Callback* Get##type##Hook() { return name##_hook.Load(); }
1354
+
1355
+ DEFINE_HOOK(DFAStateCacheReset, dfa_state_cache_reset)
1356
+ DEFINE_HOOK(DFASearchFailure, dfa_search_failure)
1357
+
1358
+ #undef DEFINE_HOOK
1359
+
1360
+ } // namespace hooks
1361
+
1362
+ } // namespace re2