grpc 1.30.2
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of grpc might be problematic. Click here for more details.
- checksums.yaml +7 -0
- data/.yardopts +1 -0
- data/Makefile +20074 -0
- data/etc/roots.pem +4644 -0
- data/include/grpc/byte_buffer.h +27 -0
- data/include/grpc/byte_buffer_reader.h +26 -0
- data/include/grpc/census.h +40 -0
- data/include/grpc/compression.h +75 -0
- data/include/grpc/fork.h +26 -0
- data/include/grpc/grpc.h +540 -0
- data/include/grpc/grpc_cronet.h +38 -0
- data/include/grpc/grpc_posix.h +59 -0
- data/include/grpc/grpc_security.h +1019 -0
- data/include/grpc/grpc_security_constants.h +146 -0
- data/include/grpc/impl/codegen/atm.h +95 -0
- data/include/grpc/impl/codegen/atm_gcc_atomic.h +91 -0
- data/include/grpc/impl/codegen/atm_gcc_sync.h +85 -0
- data/include/grpc/impl/codegen/atm_windows.h +128 -0
- data/include/grpc/impl/codegen/byte_buffer.h +101 -0
- data/include/grpc/impl/codegen/byte_buffer_reader.h +42 -0
- data/include/grpc/impl/codegen/compression_types.h +108 -0
- data/include/grpc/impl/codegen/connectivity_state.h +44 -0
- data/include/grpc/impl/codegen/fork.h +48 -0
- data/include/grpc/impl/codegen/gpr_slice.h +69 -0
- data/include/grpc/impl/codegen/gpr_types.h +59 -0
- data/include/grpc/impl/codegen/grpc_types.h +785 -0
- data/include/grpc/impl/codegen/log.h +112 -0
- data/include/grpc/impl/codegen/port_platform.h +720 -0
- data/include/grpc/impl/codegen/propagation_bits.h +52 -0
- data/include/grpc/impl/codegen/slice.h +127 -0
- data/include/grpc/impl/codegen/status.h +154 -0
- data/include/grpc/impl/codegen/sync.h +65 -0
- data/include/grpc/impl/codegen/sync_abseil.h +36 -0
- data/include/grpc/impl/codegen/sync_custom.h +38 -0
- data/include/grpc/impl/codegen/sync_generic.h +48 -0
- data/include/grpc/impl/codegen/sync_posix.h +52 -0
- data/include/grpc/impl/codegen/sync_windows.h +36 -0
- data/include/grpc/load_reporting.h +48 -0
- data/include/grpc/module.modulemap +64 -0
- data/include/grpc/slice.h +172 -0
- data/include/grpc/slice_buffer.h +84 -0
- data/include/grpc/status.h +26 -0
- data/include/grpc/support/alloc.h +52 -0
- data/include/grpc/support/atm.h +26 -0
- data/include/grpc/support/atm_gcc_atomic.h +26 -0
- data/include/grpc/support/atm_gcc_sync.h +26 -0
- data/include/grpc/support/atm_windows.h +26 -0
- data/include/grpc/support/cpu.h +44 -0
- data/include/grpc/support/log.h +26 -0
- data/include/grpc/support/log_windows.h +38 -0
- data/include/grpc/support/port_platform.h +24 -0
- data/include/grpc/support/string_util.h +51 -0
- data/include/grpc/support/sync.h +282 -0
- data/include/grpc/support/sync_abseil.h +26 -0
- data/include/grpc/support/sync_custom.h +26 -0
- data/include/grpc/support/sync_generic.h +26 -0
- data/include/grpc/support/sync_posix.h +26 -0
- data/include/grpc/support/sync_windows.h +26 -0
- data/include/grpc/support/thd_id.h +44 -0
- data/include/grpc/support/time.h +92 -0
- data/include/grpc/support/workaround_list.h +31 -0
- data/src/core/ext/filters/census/grpc_context.cc +38 -0
- data/src/core/ext/filters/client_channel/backend_metric.cc +81 -0
- data/src/core/ext/filters/client_channel/backend_metric.h +36 -0
- data/src/core/ext/filters/client_channel/backup_poller.cc +181 -0
- data/src/core/ext/filters/client_channel/backup_poller.h +41 -0
- data/src/core/ext/filters/client_channel/channel_connectivity.cc +264 -0
- data/src/core/ext/filters/client_channel/client_channel.cc +4059 -0
- data/src/core/ext/filters/client_channel/client_channel.h +82 -0
- data/src/core/ext/filters/client_channel/client_channel_channelz.cc +95 -0
- data/src/core/ext/filters/client_channel/client_channel_channelz.h +78 -0
- data/src/core/ext/filters/client_channel/client_channel_factory.cc +55 -0
- data/src/core/ext/filters/client_channel/client_channel_factory.h +47 -0
- data/src/core/ext/filters/client_channel/client_channel_plugin.cc +70 -0
- data/src/core/ext/filters/client_channel/connector.h +79 -0
- data/src/core/ext/filters/client_channel/global_subchannel_pool.cc +179 -0
- data/src/core/ext/filters/client_channel/global_subchannel_pool.h +68 -0
- data/src/core/ext/filters/client_channel/health/health_check_client.cc +606 -0
- data/src/core/ext/filters/client_channel/health/health_check_client.h +175 -0
- data/src/core/ext/filters/client_channel/http_connect_handshaker.cc +389 -0
- data/src/core/ext/filters/client_channel/http_connect_handshaker.h +34 -0
- data/src/core/ext/filters/client_channel/http_proxy.cc +216 -0
- data/src/core/ext/filters/client_channel/http_proxy.h +28 -0
- data/src/core/ext/filters/client_channel/lb_policy.cc +138 -0
- data/src/core/ext/filters/client_channel/lb_policy.h +421 -0
- data/src/core/ext/filters/client_channel/lb_policy/address_filtering.cc +83 -0
- data/src/core/ext/filters/client_channel/lb_policy/address_filtering.h +99 -0
- data/src/core/ext/filters/client_channel/lb_policy/child_policy_handler.cc +297 -0
- data/src/core/ext/filters/client_channel/lb_policy/child_policy_handler.h +83 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc +157 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.h +29 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +1754 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.h +43 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.cc +89 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.h +40 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.h +45 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.cc +121 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.cc +91 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h +75 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc +193 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h +74 -0
- data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +509 -0
- data/src/core/ext/filters/client_channel/lb_policy/priority/priority.cc +871 -0
- data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +504 -0
- data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +448 -0
- data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +734 -0
- data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +417 -0
- data/src/core/ext/filters/client_channel/lb_policy/xds/eds.cc +938 -0
- data/src/core/ext/filters/client_channel/lb_policy/xds/lrs.cc +528 -0
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds.h +32 -0
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_routing.cc +834 -0
- data/src/core/ext/filters/client_channel/lb_policy_factory.h +47 -0
- data/src/core/ext/filters/client_channel/lb_policy_registry.cc +182 -0
- data/src/core/ext/filters/client_channel/lb_policy_registry.h +65 -0
- data/src/core/ext/filters/client_channel/local_subchannel_pool.cc +96 -0
- data/src/core/ext/filters/client_channel/local_subchannel_pool.h +57 -0
- data/src/core/ext/filters/client_channel/parse_address.cc +238 -0
- data/src/core/ext/filters/client_channel/parse_address.h +53 -0
- data/src/core/ext/filters/client_channel/proxy_mapper.h +54 -0
- data/src/core/ext/filters/client_channel/proxy_mapper_registry.cc +89 -0
- data/src/core/ext/filters/client_channel/proxy_mapper_registry.h +50 -0
- data/src/core/ext/filters/client_channel/resolver.cc +85 -0
- data/src/core/ext/filters/client_channel/resolver.h +144 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +535 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.cc +484 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h +104 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_libuv.cc +177 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +107 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +897 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +819 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +97 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_fallback.cc +68 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_libuv.cc +38 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_posix.cc +29 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc +34 -0
- data/src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.cc +28 -0
- data/src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.h +29 -0
- data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +318 -0
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc +383 -0
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h +93 -0
- data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +188 -0
- data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +184 -0
- data/src/core/ext/filters/client_channel/resolver_factory.h +73 -0
- data/src/core/ext/filters/client_channel/resolver_registry.cc +197 -0
- data/src/core/ext/filters/client_channel/resolver_registry.h +89 -0
- data/src/core/ext/filters/client_channel/resolver_result_parsing.cc +443 -0
- data/src/core/ext/filters/client_channel/resolver_result_parsing.h +127 -0
- data/src/core/ext/filters/client_channel/resolving_lb_policy.cc +348 -0
- data/src/core/ext/filters/client_channel/resolving_lb_policy.h +123 -0
- data/src/core/ext/filters/client_channel/retry_throttle.cc +191 -0
- data/src/core/ext/filters/client_channel/retry_throttle.h +77 -0
- data/src/core/ext/filters/client_channel/server_address.cc +48 -0
- data/src/core/ext/filters/client_channel/server_address.h +90 -0
- data/src/core/ext/filters/client_channel/service_config.cc +221 -0
- data/src/core/ext/filters/client_channel/service_config.h +123 -0
- data/src/core/ext/filters/client_channel/service_config_call_data.h +68 -0
- data/src/core/ext/filters/client_channel/service_config_parser.cc +87 -0
- data/src/core/ext/filters/client_channel/service_config_parser.h +89 -0
- data/src/core/ext/filters/client_channel/subchannel.cc +1127 -0
- data/src/core/ext/filters/client_channel/subchannel.h +427 -0
- data/src/core/ext/filters/client_channel/subchannel_interface.h +94 -0
- data/src/core/ext/filters/client_channel/subchannel_pool_interface.cc +97 -0
- data/src/core/ext/filters/client_channel/subchannel_pool_interface.h +91 -0
- data/src/core/ext/filters/client_channel/xds/xds_api.cc +1906 -0
- data/src/core/ext/filters/client_channel/xds/xds_api.h +280 -0
- data/src/core/ext/filters/client_channel/xds/xds_bootstrap.cc +342 -0
- data/src/core/ext/filters/client_channel/xds/xds_bootstrap.h +88 -0
- data/src/core/ext/filters/client_channel/xds/xds_channel.h +46 -0
- data/src/core/ext/filters/client_channel/xds/xds_channel_args.h +26 -0
- data/src/core/ext/filters/client_channel/xds/xds_channel_secure.cc +106 -0
- data/src/core/ext/filters/client_channel/xds/xds_client.cc +2367 -0
- data/src/core/ext/filters/client_channel/xds/xds_client.h +309 -0
- data/src/core/ext/filters/client_channel/xds/xds_client_stats.cc +115 -0
- data/src/core/ext/filters/client_channel/xds/xds_client_stats.h +211 -0
- data/src/core/ext/filters/client_idle/client_idle_filter.cc +440 -0
- data/src/core/ext/filters/deadline/deadline_filter.cc +386 -0
- data/src/core/ext/filters/deadline/deadline_filter.h +90 -0
- data/src/core/ext/filters/http/client/http_client_filter.cc +596 -0
- data/src/core/ext/filters/http/client/http_client_filter.h +31 -0
- data/src/core/ext/filters/http/client_authority_filter.cc +159 -0
- data/src/core/ext/filters/http/client_authority_filter.h +34 -0
- data/src/core/ext/filters/http/http_filters_plugin.cc +104 -0
- data/src/core/ext/filters/http/message_compress/message_compress_filter.cc +546 -0
- data/src/core/ext/filters/http/message_compress/message_compress_filter.h +53 -0
- data/src/core/ext/filters/http/message_compress/message_decompress_filter.cc +358 -0
- data/src/core/ext/filters/http/message_compress/message_decompress_filter.h +29 -0
- data/src/core/ext/filters/http/server/http_server_filter.cc +528 -0
- data/src/core/ext/filters/http/server/http_server_filter.h +29 -0
- data/src/core/ext/filters/max_age/max_age_filter.cc +556 -0
- data/src/core/ext/filters/max_age/max_age_filter.h +26 -0
- data/src/core/ext/filters/message_size/message_size_filter.cc +423 -0
- data/src/core/ext/filters/message_size/message_size_filter.h +59 -0
- data/src/core/ext/filters/workarounds/workaround_cronet_compression_filter.cc +210 -0
- data/src/core/ext/filters/workarounds/workaround_cronet_compression_filter.h +27 -0
- data/src/core/ext/filters/workarounds/workaround_utils.cc +53 -0
- data/src/core/ext/filters/workarounds/workaround_utils.h +39 -0
- data/src/core/ext/transport/chttp2/alpn/alpn.cc +44 -0
- data/src/core/ext/transport/chttp2/alpn/alpn.h +36 -0
- data/src/core/ext/transport/chttp2/client/authority.cc +42 -0
- data/src/core/ext/transport/chttp2/client/authority.h +36 -0
- data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +206 -0
- data/src/core/ext/transport/chttp2/client/chttp2_connector.h +58 -0
- data/src/core/ext/transport/chttp2/client/insecure/channel_create.cc +112 -0
- data/src/core/ext/transport/chttp2/client/insecure/channel_create_posix.cc +79 -0
- data/src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc +225 -0
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +451 -0
- data/src/core/ext/transport/chttp2/server/chttp2_server.h +33 -0
- data/src/core/ext/transport/chttp2/server/insecure/server_chttp2.cc +45 -0
- data/src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc +75 -0
- data/src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.cc +86 -0
- data/src/core/ext/transport/chttp2/transport/bin_decoder.cc +250 -0
- data/src/core/ext/transport/chttp2/transport/bin_decoder.h +56 -0
- data/src/core/ext/transport/chttp2/transport/bin_encoder.cc +230 -0
- data/src/core/ext/transport/chttp2/transport/bin_encoder.h +42 -0
- data/src/core/ext/transport/chttp2/transport/chttp2_plugin.cc +37 -0
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +3346 -0
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +52 -0
- data/src/core/ext/transport/chttp2/transport/context_list.cc +69 -0
- data/src/core/ext/transport/chttp2/transport/context_list.h +53 -0
- data/src/core/ext/transport/chttp2/transport/flow_control.cc +408 -0
- data/src/core/ext/transport/chttp2/transport/flow_control.h +474 -0
- data/src/core/ext/transport/chttp2/transport/frame.h +47 -0
- data/src/core/ext/transport/chttp2/transport/frame_data.cc +307 -0
- data/src/core/ext/transport/chttp2/transport/frame_data.h +82 -0
- data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +187 -0
- data/src/core/ext/transport/chttp2/transport/frame_goaway.h +62 -0
- data/src/core/ext/transport/chttp2/transport/frame_ping.cc +133 -0
- data/src/core/ext/transport/chttp2/transport/frame_ping.h +44 -0
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +122 -0
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +50 -0
- data/src/core/ext/transport/chttp2/transport/frame_settings.cc +242 -0
- data/src/core/ext/transport/chttp2/transport/frame_settings.h +60 -0
- data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +123 -0
- data/src/core/ext/transport/chttp2/transport/frame_window_update.h +44 -0
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +900 -0
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +107 -0
- data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +1761 -0
- data/src/core/ext/transport/chttp2/transport/hpack_parser.h +117 -0
- data/src/core/ext/transport/chttp2/transport/hpack_table.cc +246 -0
- data/src/core/ext/transport/chttp2/transport/hpack_table.h +148 -0
- data/src/core/ext/transport/chttp2/transport/http2_settings.cc +62 -0
- data/src/core/ext/transport/chttp2/transport/http2_settings.h +61 -0
- data/src/core/ext/transport/chttp2/transport/huffsyms.cc +92 -0
- data/src/core/ext/transport/chttp2/transport/huffsyms.h +32 -0
- data/src/core/ext/transport/chttp2/transport/incoming_metadata.cc +66 -0
- data/src/core/ext/transport/chttp2/transport/incoming_metadata.h +58 -0
- data/src/core/ext/transport/chttp2/transport/internal.h +864 -0
- data/src/core/ext/transport/chttp2/transport/parsing.cc +803 -0
- data/src/core/ext/transport/chttp2/transport/stream_lists.cc +216 -0
- data/src/core/ext/transport/chttp2/transport/stream_map.cc +177 -0
- data/src/core/ext/transport/chttp2/transport/stream_map.h +67 -0
- data/src/core/ext/transport/chttp2/transport/varint.cc +56 -0
- data/src/core/ext/transport/chttp2/transport/varint.h +60 -0
- data/src/core/ext/transport/chttp2/transport/writing.cc +706 -0
- data/src/core/ext/transport/inproc/inproc_plugin.cc +28 -0
- data/src/core/ext/transport/inproc/inproc_transport.cc +1296 -0
- data/src/core/ext/transport/inproc/inproc_transport.h +35 -0
- data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.c +17 -0
- data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.h +30 -0
- data/src/core/ext/upb-generated/envoy/annotations/resource.upb.c +27 -0
- data/src/core/ext/upb-generated/envoy/annotations/resource.upb.h +54 -0
- data/src/core/ext/upb-generated/envoy/api/v2/auth/cert.upb.c +21 -0
- data/src/core/ext/upb-generated/envoy/api/v2/auth/cert.upb.h +35 -0
- data/src/core/ext/upb-generated/envoy/api/v2/auth/common.upb.c +114 -0
- data/src/core/ext/upb-generated/envoy/api/v2/auth/common.upb.h +418 -0
- data/src/core/ext/upb-generated/envoy/api/v2/auth/secret.upb.c +72 -0
- data/src/core/ext/upb-generated/envoy/api/v2/auth/secret.upb.h +197 -0
- data/src/core/ext/upb-generated/envoy/api/v2/auth/tls.upb.c +105 -0
- data/src/core/ext/upb-generated/envoy/api/v2/auth/tls.upb.h +378 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cds.upb.c +28 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cds.upb.h +53 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster.upb.c +403 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster.upb.h +1447 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/circuit_breaker.upb.c +74 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/circuit_breaker.upb.h +218 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/filter.upb.c +35 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/filter.upb.h +69 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/outlier_detection.upb.c +55 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/outlier_detection.upb.h +305 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/address.upb.c +112 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/address.upb.h +328 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/backoff.upb.c +35 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/backoff.upb.h +78 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/base.upb.c +313 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/base.upb.h +897 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/config_source.upb.c +96 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/config_source.upb.h +322 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/event_service_config.upb.c +34 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/event_service_config.upb.h +72 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/grpc_service.upb.c +197 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/grpc_service.upb.h +642 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/health_check.upb.c +172 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/health_check.upb.h +673 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/http_uri.upb.c +36 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/http_uri.upb.h +80 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/protocol.upb.c +152 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/protocol.upb.h +518 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/socket_option.upb.c +34 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/socket_option.upb.h +89 -0
- data/src/core/ext/upb-generated/envoy/api/v2/discovery.upb.c +129 -0
- data/src/core/ext/upb-generated/envoy/api/v2/discovery.upb.h +392 -0
- data/src/core/ext/upb-generated/envoy/api/v2/eds.upb.c +31 -0
- data/src/core/ext/upb-generated/envoy/api/v2/eds.upb.h +53 -0
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint.upb.c +92 -0
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint.upb.h +240 -0
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint.upb.c +18 -0
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint.upb.h +33 -0
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint_components.upb.c +91 -0
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint_components.upb.h +266 -0
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/load_report.upb.c +112 -0
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/load_report.upb.h +324 -0
- data/src/core/ext/upb-generated/envoy/api/v2/lds.upb.c +31 -0
- data/src/core/ext/upb-generated/envoy/api/v2/lds.upb.h +53 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener.upb.c +109 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener.upb.h +399 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener/listener.upb.c +18 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener/listener.upb.h +33 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener/listener_components.upb.c +145 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener/listener_components.upb.h +527 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener/udp_listener_config.upb.c +43 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener/udp_listener_config.upb.h +112 -0
- data/src/core/ext/upb-generated/envoy/api/v2/rds.upb.c +30 -0
- data/src/core/ext/upb-generated/envoy/api/v2/rds.upb.h +53 -0
- data/src/core/ext/upb-generated/envoy/api/v2/route.upb.c +63 -0
- data/src/core/ext/upb-generated/envoy/api/v2/route.upb.h +199 -0
- data/src/core/ext/upb-generated/envoy/api/v2/route/route.upb.c +18 -0
- data/src/core/ext/upb-generated/envoy/api/v2/route/route.upb.h +33 -0
- data/src/core/ext/upb-generated/envoy/api/v2/route/route_components.upb.c +815 -0
- data/src/core/ext/upb-generated/envoy/api/v2/route/route_components.upb.h +3032 -0
- data/src/core/ext/upb-generated/envoy/api/v2/scoped_route.upb.c +59 -0
- data/src/core/ext/upb-generated/envoy/api/v2/scoped_route.upb.h +134 -0
- data/src/core/ext/upb-generated/envoy/api/v2/srds.upb.c +28 -0
- data/src/core/ext/upb-generated/envoy/api/v2/srds.upb.h +53 -0
- data/src/core/ext/upb-generated/envoy/config/filter/accesslog/v2/accesslog.upb.c +228 -0
- data/src/core/ext/upb-generated/envoy/config/filter/accesslog/v2/accesslog.upb.h +725 -0
- data/src/core/ext/upb-generated/envoy/config/filter/network/http_connection_manager/v2/http_connection_manager.upb.c +316 -0
- data/src/core/ext/upb-generated/envoy/config/filter/network/http_connection_manager/v2/http_connection_manager.upb.h +1132 -0
- data/src/core/ext/upb-generated/envoy/config/listener/v2/api_listener.upb.c +33 -0
- data/src/core/ext/upb-generated/envoy/config/listener/v2/api_listener.upb.h +65 -0
- data/src/core/ext/upb-generated/envoy/config/trace/v2/http_tracer.upb.c +51 -0
- data/src/core/ext/upb-generated/envoy/config/trace/v2/http_tracer.upb.h +125 -0
- data/src/core/ext/upb-generated/envoy/service/discovery/v2/ads.upb.c +24 -0
- data/src/core/ext/upb-generated/envoy/service/discovery/v2/ads.upb.h +50 -0
- data/src/core/ext/upb-generated/envoy/service/load_stats/v2/lrs.upb.c +54 -0
- data/src/core/ext/upb-generated/envoy/service/load_stats/v2/lrs.upb.h +134 -0
- data/src/core/ext/upb-generated/envoy/type/http.upb.c +17 -0
- data/src/core/ext/upb-generated/envoy/type/http.upb.h +36 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/regex.upb.c +63 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/regex.upb.h +144 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/string.upb.c +53 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/string.upb.h +133 -0
- data/src/core/ext/upb-generated/envoy/type/metadata/v2/metadata.upb.c +88 -0
- data/src/core/ext/upb-generated/envoy/type/metadata/v2/metadata.upb.h +258 -0
- data/src/core/ext/upb-generated/envoy/type/percent.upb.c +39 -0
- data/src/core/ext/upb-generated/envoy/type/percent.upb.h +87 -0
- data/src/core/ext/upb-generated/envoy/type/range.upb.c +50 -0
- data/src/core/ext/upb-generated/envoy/type/range.upb.h +112 -0
- data/src/core/ext/upb-generated/envoy/type/semantic_version.upb.c +29 -0
- data/src/core/ext/upb-generated/envoy/type/semantic_version.upb.h +62 -0
- data/src/core/ext/upb-generated/envoy/type/tracing/v2/custom_tag.upb.c +89 -0
- data/src/core/ext/upb-generated/envoy/type/tracing/v2/custom_tag.upb.h +249 -0
- data/src/core/ext/upb-generated/gogoproto/gogo.upb.c +17 -0
- data/src/core/ext/upb-generated/gogoproto/gogo.upb.h +30 -0
- data/src/core/ext/upb-generated/google/api/annotations.upb.c +18 -0
- data/src/core/ext/upb-generated/google/api/annotations.upb.h +30 -0
- data/src/core/ext/upb-generated/google/api/http.upb.c +66 -0
- data/src/core/ext/upb-generated/google/api/http.upb.h +190 -0
- data/src/core/ext/upb-generated/google/protobuf/any.upb.c +27 -0
- data/src/core/ext/upb-generated/google/protobuf/any.upb.h +58 -0
- data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.c +486 -0
- data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.h +1696 -0
- data/src/core/ext/upb-generated/google/protobuf/duration.upb.c +27 -0
- data/src/core/ext/upb-generated/google/protobuf/duration.upb.h +58 -0
- data/src/core/ext/upb-generated/google/protobuf/empty.upb.c +22 -0
- data/src/core/ext/upb-generated/google/protobuf/empty.upb.h +50 -0
- data/src/core/ext/upb-generated/google/protobuf/struct.upb.c +79 -0
- data/src/core/ext/upb-generated/google/protobuf/struct.upb.h +215 -0
- data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.c +27 -0
- data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.h +58 -0
- data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.c +106 -0
- data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.h +238 -0
- data/src/core/ext/upb-generated/google/rpc/status.upb.c +33 -0
- data/src/core/ext/upb-generated/google/rpc/status.upb.h +74 -0
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.c +49 -0
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.h +126 -0
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.c +212 -0
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.h +693 -0
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.c +42 -0
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.h +109 -0
- data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.c +36 -0
- data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.h +84 -0
- data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.c +141 -0
- data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.h +393 -0
- data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.c +48 -0
- data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.h +104 -0
- data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.c +17 -0
- data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.h +30 -0
- data/src/core/ext/upb-generated/udpa/annotations/status.upb.c +28 -0
- data/src/core/ext/upb-generated/udpa/annotations/status.upb.h +65 -0
- data/src/core/ext/upb-generated/udpa/data/orca/v1/orca_load_report.upb.c +58 -0
- data/src/core/ext/upb-generated/udpa/data/orca/v1/orca_load_report.upb.h +144 -0
- data/src/core/ext/upb-generated/validate/validate.upb.c +448 -0
- data/src/core/ext/upb-generated/validate/validate.upb.h +2073 -0
- data/src/core/lib/avl/avl.cc +306 -0
- data/src/core/lib/avl/avl.h +94 -0
- data/src/core/lib/backoff/backoff.cc +78 -0
- data/src/core/lib/backoff/backoff.h +89 -0
- data/src/core/lib/channel/channel_args.cc +380 -0
- data/src/core/lib/channel/channel_args.h +135 -0
- data/src/core/lib/channel/channel_stack.cc +252 -0
- data/src/core/lib/channel/channel_stack.h +304 -0
- data/src/core/lib/channel/channel_stack_builder.cc +323 -0
- data/src/core/lib/channel/channel_stack_builder.h +166 -0
- data/src/core/lib/channel/channel_trace.cc +194 -0
- data/src/core/lib/channel/channel_trace.h +134 -0
- data/src/core/lib/channel/channelz.cc +543 -0
- data/src/core/lib/channel/channelz.h +334 -0
- data/src/core/lib/channel/channelz_registry.cc +267 -0
- data/src/core/lib/channel/channelz_registry.h +97 -0
- data/src/core/lib/channel/connected_channel.cc +246 -0
- data/src/core/lib/channel/connected_channel.h +34 -0
- data/src/core/lib/channel/context.h +49 -0
- data/src/core/lib/channel/handshaker.cc +262 -0
- data/src/core/lib/channel/handshaker.h +179 -0
- data/src/core/lib/channel/handshaker_factory.h +42 -0
- data/src/core/lib/channel/handshaker_registry.cc +105 -0
- data/src/core/lib/channel/handshaker_registry.h +54 -0
- data/src/core/lib/channel/status_util.cc +99 -0
- data/src/core/lib/channel/status_util.h +58 -0
- data/src/core/lib/compression/algorithm_metadata.h +61 -0
- data/src/core/lib/compression/compression.cc +179 -0
- data/src/core/lib/compression/compression_args.cc +134 -0
- data/src/core/lib/compression/compression_args.h +56 -0
- data/src/core/lib/compression/compression_internal.cc +280 -0
- data/src/core/lib/compression/compression_internal.h +96 -0
- data/src/core/lib/compression/message_compress.cc +192 -0
- data/src/core/lib/compression/message_compress.h +40 -0
- data/src/core/lib/compression/stream_compression.cc +80 -0
- data/src/core/lib/compression/stream_compression.h +116 -0
- data/src/core/lib/compression/stream_compression_gzip.cc +230 -0
- data/src/core/lib/compression/stream_compression_gzip.h +28 -0
- data/src/core/lib/compression/stream_compression_identity.cc +92 -0
- data/src/core/lib/compression/stream_compression_identity.h +29 -0
- data/src/core/lib/debug/stats.cc +172 -0
- data/src/core/lib/debug/stats.h +70 -0
- data/src/core/lib/debug/stats_data.cc +687 -0
- data/src/core/lib/debug/stats_data.h +555 -0
- data/src/core/lib/debug/trace.cc +154 -0
- data/src/core/lib/debug/trace.h +131 -0
- data/src/core/lib/gpr/alloc.cc +74 -0
- data/src/core/lib/gpr/alloc.h +28 -0
- data/src/core/lib/gpr/arena.h +47 -0
- data/src/core/lib/gpr/atm.cc +35 -0
- data/src/core/lib/gpr/cpu_iphone.cc +36 -0
- data/src/core/lib/gpr/cpu_linux.cc +82 -0
- data/src/core/lib/gpr/cpu_posix.cc +83 -0
- data/src/core/lib/gpr/cpu_windows.cc +33 -0
- data/src/core/lib/gpr/env.h +40 -0
- data/src/core/lib/gpr/env_linux.cc +76 -0
- data/src/core/lib/gpr/env_posix.cc +47 -0
- data/src/core/lib/gpr/env_windows.cc +74 -0
- data/src/core/lib/gpr/log.cc +98 -0
- data/src/core/lib/gpr/log_android.cc +76 -0
- data/src/core/lib/gpr/log_linux.cc +97 -0
- data/src/core/lib/gpr/log_posix.cc +95 -0
- data/src/core/lib/gpr/log_windows.cc +102 -0
- data/src/core/lib/gpr/murmur_hash.cc +80 -0
- data/src/core/lib/gpr/murmur_hash.h +29 -0
- data/src/core/lib/gpr/spinlock.h +45 -0
- data/src/core/lib/gpr/string.cc +341 -0
- data/src/core/lib/gpr/string.h +111 -0
- data/src/core/lib/gpr/string_posix.cc +72 -0
- data/src/core/lib/gpr/string_util_windows.cc +82 -0
- data/src/core/lib/gpr/string_windows.cc +69 -0
- data/src/core/lib/gpr/string_windows.h +32 -0
- data/src/core/lib/gpr/sync.cc +124 -0
- data/src/core/lib/gpr/sync_abseil.cc +116 -0
- data/src/core/lib/gpr/sync_posix.cc +176 -0
- data/src/core/lib/gpr/sync_windows.cc +120 -0
- data/src/core/lib/gpr/time.cc +263 -0
- data/src/core/lib/gpr/time_posix.cc +186 -0
- data/src/core/lib/gpr/time_precise.cc +165 -0
- data/src/core/lib/gpr/time_precise.h +66 -0
- data/src/core/lib/gpr/time_windows.cc +98 -0
- data/src/core/lib/gpr/tls.h +68 -0
- data/src/core/lib/gpr/tls_gcc.h +52 -0
- data/src/core/lib/gpr/tls_msvc.h +52 -0
- data/src/core/lib/gpr/tls_pthread.cc +30 -0
- data/src/core/lib/gpr/tls_pthread.h +56 -0
- data/src/core/lib/gpr/tmpfile.h +32 -0
- data/src/core/lib/gpr/tmpfile_msys.cc +58 -0
- data/src/core/lib/gpr/tmpfile_posix.cc +70 -0
- data/src/core/lib/gpr/tmpfile_windows.cc +69 -0
- data/src/core/lib/gpr/useful.h +65 -0
- data/src/core/lib/gpr/wrap_memcpy.cc +42 -0
- data/src/core/lib/gprpp/arena.cc +103 -0
- data/src/core/lib/gprpp/arena.h +120 -0
- data/src/core/lib/gprpp/atomic.h +104 -0
- data/src/core/lib/gprpp/debug_location.h +53 -0
- data/src/core/lib/gprpp/fork.cc +242 -0
- data/src/core/lib/gprpp/fork.h +103 -0
- data/src/core/lib/gprpp/global_config.h +96 -0
- data/src/core/lib/gprpp/global_config_custom.h +29 -0
- data/src/core/lib/gprpp/global_config_env.cc +135 -0
- data/src/core/lib/gprpp/global_config_env.h +131 -0
- data/src/core/lib/gprpp/global_config_generic.h +44 -0
- data/src/core/lib/gprpp/host_port.cc +112 -0
- data/src/core/lib/gprpp/host_port.h +56 -0
- data/src/core/lib/gprpp/manual_constructor.h +213 -0
- data/src/core/lib/gprpp/map.h +53 -0
- data/src/core/lib/gprpp/memory.h +51 -0
- data/src/core/lib/gprpp/mpscq.cc +108 -0
- data/src/core/lib/gprpp/mpscq.h +98 -0
- data/src/core/lib/gprpp/orphanable.h +129 -0
- data/src/core/lib/gprpp/ref_counted.h +312 -0
- data/src/core/lib/gprpp/ref_counted_ptr.h +192 -0
- data/src/core/lib/gprpp/sync.h +135 -0
- data/src/core/lib/gprpp/thd.h +174 -0
- data/src/core/lib/gprpp/thd_posix.cc +204 -0
- data/src/core/lib/gprpp/thd_windows.cc +176 -0
- data/src/core/lib/http/format_request.cc +103 -0
- data/src/core/lib/http/format_request.h +34 -0
- data/src/core/lib/http/httpcli.cc +303 -0
- data/src/core/lib/http/httpcli.h +126 -0
- data/src/core/lib/http/httpcli_security_connector.cc +214 -0
- data/src/core/lib/http/parser.cc +372 -0
- data/src/core/lib/http/parser.h +113 -0
- data/src/core/lib/iomgr/block_annotate.h +57 -0
- data/src/core/lib/iomgr/buffer_list.cc +308 -0
- data/src/core/lib/iomgr/buffer_list.h +165 -0
- data/src/core/lib/iomgr/call_combiner.cc +256 -0
- data/src/core/lib/iomgr/call_combiner.h +217 -0
- data/src/core/lib/iomgr/cfstream_handle.cc +209 -0
- data/src/core/lib/iomgr/cfstream_handle.h +90 -0
- data/src/core/lib/iomgr/closure.h +255 -0
- data/src/core/lib/iomgr/combiner.cc +339 -0
- data/src/core/lib/iomgr/combiner.h +88 -0
- data/src/core/lib/iomgr/dualstack_socket_posix.cc +47 -0
- data/src/core/lib/iomgr/dynamic_annotations.h +67 -0
- data/src/core/lib/iomgr/endpoint.cc +67 -0
- data/src/core/lib/iomgr/endpoint.h +106 -0
- data/src/core/lib/iomgr/endpoint_cfstream.cc +376 -0
- data/src/core/lib/iomgr/endpoint_cfstream.h +49 -0
- data/src/core/lib/iomgr/endpoint_pair.h +33 -0
- data/src/core/lib/iomgr/endpoint_pair_posix.cc +73 -0
- data/src/core/lib/iomgr/endpoint_pair_uv.cc +40 -0
- data/src/core/lib/iomgr/endpoint_pair_windows.cc +87 -0
- data/src/core/lib/iomgr/error.cc +812 -0
- data/src/core/lib/iomgr/error.h +276 -0
- data/src/core/lib/iomgr/error_cfstream.cc +52 -0
- data/src/core/lib/iomgr/error_cfstream.h +31 -0
- data/src/core/lib/iomgr/error_internal.h +61 -0
- data/src/core/lib/iomgr/ev_apple.cc +356 -0
- data/src/core/lib/iomgr/ev_apple.h +43 -0
- data/src/core/lib/iomgr/ev_epoll1_linux.cc +1365 -0
- data/src/core/lib/iomgr/ev_epoll1_linux.h +31 -0
- data/src/core/lib/iomgr/ev_epollex_linux.cc +1656 -0
- data/src/core/lib/iomgr/ev_epollex_linux.h +30 -0
- data/src/core/lib/iomgr/ev_poll_posix.cc +1427 -0
- data/src/core/lib/iomgr/ev_poll_posix.h +29 -0
- data/src/core/lib/iomgr/ev_posix.cc +417 -0
- data/src/core/lib/iomgr/ev_posix.h +207 -0
- data/src/core/lib/iomgr/ev_windows.cc +30 -0
- data/src/core/lib/iomgr/exec_ctx.cc +224 -0
- data/src/core/lib/iomgr/exec_ctx.h +380 -0
- data/src/core/lib/iomgr/executor.cc +469 -0
- data/src/core/lib/iomgr/executor.h +122 -0
- data/src/core/lib/iomgr/executor/mpmcqueue.cc +183 -0
- data/src/core/lib/iomgr/executor/mpmcqueue.h +175 -0
- data/src/core/lib/iomgr/executor/threadpool.cc +137 -0
- data/src/core/lib/iomgr/executor/threadpool.h +149 -0
- data/src/core/lib/iomgr/fork_posix.cc +119 -0
- data/src/core/lib/iomgr/fork_windows.cc +41 -0
- data/src/core/lib/iomgr/gethostname.h +26 -0
- data/src/core/lib/iomgr/gethostname_fallback.cc +30 -0
- data/src/core/lib/iomgr/gethostname_host_name_max.cc +40 -0
- data/src/core/lib/iomgr/gethostname_sysconf.cc +40 -0
- data/src/core/lib/iomgr/grpc_if_nametoindex.h +30 -0
- data/src/core/lib/iomgr/grpc_if_nametoindex_posix.cc +42 -0
- data/src/core/lib/iomgr/grpc_if_nametoindex_unsupported.cc +38 -0
- data/src/core/lib/iomgr/internal_errqueue.cc +67 -0
- data/src/core/lib/iomgr/internal_errqueue.h +191 -0
- data/src/core/lib/iomgr/iocp_windows.cc +157 -0
- data/src/core/lib/iomgr/iocp_windows.h +48 -0
- data/src/core/lib/iomgr/iomgr.cc +194 -0
- data/src/core/lib/iomgr/iomgr.h +60 -0
- data/src/core/lib/iomgr/iomgr_custom.cc +79 -0
- data/src/core/lib/iomgr/iomgr_custom.h +49 -0
- data/src/core/lib/iomgr/iomgr_internal.cc +57 -0
- data/src/core/lib/iomgr/iomgr_internal.h +73 -0
- data/src/core/lib/iomgr/iomgr_posix.cc +89 -0
- data/src/core/lib/iomgr/iomgr_posix.h +26 -0
- data/src/core/lib/iomgr/iomgr_posix_cfstream.cc +171 -0
- data/src/core/lib/iomgr/iomgr_uv.cc +43 -0
- data/src/core/lib/iomgr/iomgr_windows.cc +106 -0
- data/src/core/lib/iomgr/is_epollexclusive_available.cc +105 -0
- data/src/core/lib/iomgr/is_epollexclusive_available.h +36 -0
- data/src/core/lib/iomgr/load_file.cc +81 -0
- data/src/core/lib/iomgr/load_file.h +35 -0
- data/src/core/lib/iomgr/lockfree_event.cc +255 -0
- data/src/core/lib/iomgr/lockfree_event.h +72 -0
- data/src/core/lib/iomgr/nameser.h +106 -0
- data/src/core/lib/iomgr/poller/eventmanager_libuv.cc +87 -0
- data/src/core/lib/iomgr/poller/eventmanager_libuv.h +88 -0
- data/src/core/lib/iomgr/polling_entity.cc +96 -0
- data/src/core/lib/iomgr/polling_entity.h +68 -0
- data/src/core/lib/iomgr/pollset.cc +56 -0
- data/src/core/lib/iomgr/pollset.h +99 -0
- data/src/core/lib/iomgr/pollset_custom.cc +106 -0
- data/src/core/lib/iomgr/pollset_custom.h +35 -0
- data/src/core/lib/iomgr/pollset_set.cc +55 -0
- data/src/core/lib/iomgr/pollset_set.h +55 -0
- data/src/core/lib/iomgr/pollset_set_custom.cc +48 -0
- data/src/core/lib/iomgr/pollset_set_custom.h +26 -0
- data/src/core/lib/iomgr/pollset_set_windows.cc +51 -0
- data/src/core/lib/iomgr/pollset_set_windows.h +26 -0
- data/src/core/lib/iomgr/pollset_uv.cc +93 -0
- data/src/core/lib/iomgr/pollset_uv.h +32 -0
- data/src/core/lib/iomgr/pollset_windows.cc +243 -0
- data/src/core/lib/iomgr/pollset_windows.h +70 -0
- data/src/core/lib/iomgr/port.h +244 -0
- data/src/core/lib/iomgr/python_util.h +46 -0
- data/src/core/lib/iomgr/resolve_address.cc +50 -0
- data/src/core/lib/iomgr/resolve_address.h +81 -0
- data/src/core/lib/iomgr/resolve_address_custom.cc +173 -0
- data/src/core/lib/iomgr/resolve_address_custom.h +45 -0
- data/src/core/lib/iomgr/resolve_address_posix.cc +178 -0
- data/src/core/lib/iomgr/resolve_address_windows.cc +154 -0
- data/src/core/lib/iomgr/resource_quota.cc +1013 -0
- data/src/core/lib/iomgr/resource_quota.h +177 -0
- data/src/core/lib/iomgr/sockaddr.h +32 -0
- data/src/core/lib/iomgr/sockaddr_custom.h +54 -0
- data/src/core/lib/iomgr/sockaddr_posix.h +55 -0
- data/src/core/lib/iomgr/sockaddr_utils.cc +293 -0
- data/src/core/lib/iomgr/sockaddr_utils.h +79 -0
- data/src/core/lib/iomgr/sockaddr_windows.h +55 -0
- data/src/core/lib/iomgr/socket_factory_posix.cc +94 -0
- data/src/core/lib/iomgr/socket_factory_posix.h +68 -0
- data/src/core/lib/iomgr/socket_mutator.cc +83 -0
- data/src/core/lib/iomgr/socket_mutator.h +60 -0
- data/src/core/lib/iomgr/socket_utils.h +47 -0
- data/src/core/lib/iomgr/socket_utils_common_posix.cc +473 -0
- data/src/core/lib/iomgr/socket_utils_linux.cc +42 -0
- data/src/core/lib/iomgr/socket_utils_posix.cc +58 -0
- data/src/core/lib/iomgr/socket_utils_posix.h +163 -0
- data/src/core/lib/iomgr/socket_utils_uv.cc +49 -0
- data/src/core/lib/iomgr/socket_utils_windows.cc +47 -0
- data/src/core/lib/iomgr/socket_windows.cc +203 -0
- data/src/core/lib/iomgr/socket_windows.h +127 -0
- data/src/core/lib/iomgr/sys_epoll_wrapper.h +30 -0
- data/src/core/lib/iomgr/tcp_client.cc +36 -0
- data/src/core/lib/iomgr/tcp_client.h +52 -0
- data/src/core/lib/iomgr/tcp_client_cfstream.cc +215 -0
- data/src/core/lib/iomgr/tcp_client_custom.cc +163 -0
- data/src/core/lib/iomgr/tcp_client_posix.cc +360 -0
- data/src/core/lib/iomgr/tcp_client_posix.h +68 -0
- data/src/core/lib/iomgr/tcp_client_windows.cc +232 -0
- data/src/core/lib/iomgr/tcp_custom.cc +370 -0
- data/src/core/lib/iomgr/tcp_custom.h +84 -0
- data/src/core/lib/iomgr/tcp_posix.cc +1855 -0
- data/src/core/lib/iomgr/tcp_posix.h +60 -0
- data/src/core/lib/iomgr/tcp_server.cc +78 -0
- data/src/core/lib/iomgr/tcp_server.h +143 -0
- data/src/core/lib/iomgr/tcp_server_custom.cc +485 -0
- data/src/core/lib/iomgr/tcp_server_posix.cc +638 -0
- data/src/core/lib/iomgr/tcp_server_utils_posix.h +125 -0
- data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +223 -0
- data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc +181 -0
- data/src/core/lib/iomgr/tcp_server_utils_posix_noifaddrs.cc +36 -0
- data/src/core/lib/iomgr/tcp_server_windows.cc +564 -0
- data/src/core/lib/iomgr/tcp_uv.cc +419 -0
- data/src/core/lib/iomgr/tcp_windows.cc +533 -0
- data/src/core/lib/iomgr/tcp_windows.h +53 -0
- data/src/core/lib/iomgr/time_averaged_stats.cc +64 -0
- data/src/core/lib/iomgr/time_averaged_stats.h +72 -0
- data/src/core/lib/iomgr/timer.cc +45 -0
- data/src/core/lib/iomgr/timer.h +127 -0
- data/src/core/lib/iomgr/timer_custom.cc +95 -0
- data/src/core/lib/iomgr/timer_custom.h +43 -0
- data/src/core/lib/iomgr/timer_generic.cc +747 -0
- data/src/core/lib/iomgr/timer_generic.h +39 -0
- data/src/core/lib/iomgr/timer_heap.cc +135 -0
- data/src/core/lib/iomgr/timer_heap.h +43 -0
- data/src/core/lib/iomgr/timer_manager.cc +363 -0
- data/src/core/lib/iomgr/timer_manager.h +41 -0
- data/src/core/lib/iomgr/timer_uv.cc +66 -0
- data/src/core/lib/iomgr/udp_server.cc +747 -0
- data/src/core/lib/iomgr/udp_server.h +101 -0
- data/src/core/lib/iomgr/unix_sockets_posix.cc +104 -0
- data/src/core/lib/iomgr/unix_sockets_posix.h +43 -0
- data/src/core/lib/iomgr/unix_sockets_posix_noop.cc +49 -0
- data/src/core/lib/iomgr/wakeup_fd_eventfd.cc +82 -0
- data/src/core/lib/iomgr/wakeup_fd_nospecial.cc +38 -0
- data/src/core/lib/iomgr/wakeup_fd_pipe.cc +100 -0
- data/src/core/lib/iomgr/wakeup_fd_pipe.h +28 -0
- data/src/core/lib/iomgr/wakeup_fd_posix.cc +69 -0
- data/src/core/lib/iomgr/wakeup_fd_posix.h +96 -0
- data/src/core/lib/iomgr/work_serializer.cc +155 -0
- data/src/core/lib/iomgr/work_serializer.h +65 -0
- data/src/core/lib/json/json.h +240 -0
- data/src/core/lib/json/json_reader.cc +855 -0
- data/src/core/lib/json/json_writer.cc +337 -0
- data/src/core/lib/profiling/basic_timers.cc +293 -0
- data/src/core/lib/profiling/stap_timers.cc +50 -0
- data/src/core/lib/profiling/timers.h +94 -0
- data/src/core/lib/security/context/security_context.cc +321 -0
- data/src/core/lib/security/context/security_context.h +150 -0
- data/src/core/lib/security/credentials/alts/alts_credentials.cc +110 -0
- data/src/core/lib/security/credentials/alts/alts_credentials.h +109 -0
- data/src/core/lib/security/credentials/alts/check_gcp_environment.cc +72 -0
- data/src/core/lib/security/credentials/alts/check_gcp_environment.h +57 -0
- data/src/core/lib/security/credentials/alts/check_gcp_environment_linux.cc +68 -0
- data/src/core/lib/security/credentials/alts/check_gcp_environment_no_op.cc +33 -0
- data/src/core/lib/security/credentials/alts/check_gcp_environment_windows.cc +102 -0
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_client_options.cc +127 -0
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_options.cc +46 -0
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_options.h +75 -0
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_server_options.cc +59 -0
- data/src/core/lib/security/credentials/composite/composite_credentials.cc +229 -0
- data/src/core/lib/security/credentials/composite/composite_credentials.h +106 -0
- data/src/core/lib/security/credentials/credentials.cc +162 -0
- data/src/core/lib/security/credentials/credentials.h +283 -0
- data/src/core/lib/security/credentials/credentials_metadata.cc +62 -0
- data/src/core/lib/security/credentials/fake/fake_credentials.cc +112 -0
- data/src/core/lib/security/credentials/fake/fake_credentials.h +87 -0
- data/src/core/lib/security/credentials/google_default/credentials_generic.cc +41 -0
- data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +383 -0
- data/src/core/lib/security/credentials/google_default/google_default_credentials.h +87 -0
- data/src/core/lib/security/credentials/iam/iam_credentials.cc +80 -0
- data/src/core/lib/security/credentials/iam/iam_credentials.h +49 -0
- data/src/core/lib/security/credentials/jwt/json_token.cc +288 -0
- data/src/core/lib/security/credentials/jwt/json_token.h +75 -0
- data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +172 -0
- data/src/core/lib/security/credentials/jwt/jwt_credentials.h +80 -0
- data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +925 -0
- data/src/core/lib/security/credentials/jwt/jwt_verifier.h +122 -0
- data/src/core/lib/security/credentials/local/local_credentials.cc +64 -0
- data/src/core/lib/security/credentials/local/local_credentials.h +61 -0
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +771 -0
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +171 -0
- data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +269 -0
- data/src/core/lib/security/credentials/plugin/plugin_credentials.h +72 -0
- data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +364 -0
- data/src/core/lib/security/credentials/ssl/ssl_credentials.h +99 -0
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +245 -0
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +313 -0
- data/src/core/lib/security/credentials/tls/tls_credentials.cc +128 -0
- data/src/core/lib/security/credentials/tls/tls_credentials.h +62 -0
- data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +301 -0
- data/src/core/lib/security/security_connector/alts/alts_security_connector.h +76 -0
- data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +324 -0
- data/src/core/lib/security/security_connector/fake/fake_security_connector.h +45 -0
- data/src/core/lib/security/security_connector/load_system_roots.h +29 -0
- data/src/core/lib/security/security_connector/load_system_roots_fallback.cc +32 -0
- data/src/core/lib/security/security_connector/load_system_roots_linux.cc +171 -0
- data/src/core/lib/security/security_connector/load_system_roots_linux.h +44 -0
- data/src/core/lib/security/security_connector/local/local_security_connector.cc +281 -0
- data/src/core/lib/security/security_connector/local/local_security_connector.h +59 -0
- data/src/core/lib/security/security_connector/security_connector.cc +129 -0
- data/src/core/lib/security/security_connector/security_connector.h +176 -0
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +439 -0
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.h +77 -0
- data/src/core/lib/security/security_connector/ssl_utils.cc +563 -0
- data/src/core/lib/security/security_connector/ssl_utils.h +184 -0
- data/src/core/lib/security/security_connector/ssl_utils_config.cc +32 -0
- data/src/core/lib/security/security_connector/ssl_utils_config.h +30 -0
- data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +603 -0
- data/src/core/lib/security/security_connector/tls/tls_security_connector.h +183 -0
- data/src/core/lib/security/transport/auth_filters.h +35 -0
- data/src/core/lib/security/transport/client_auth_filter.cc +466 -0
- data/src/core/lib/security/transport/secure_endpoint.cc +446 -0
- data/src/core/lib/security/transport/secure_endpoint.h +41 -0
- data/src/core/lib/security/transport/security_handshaker.cc +574 -0
- data/src/core/lib/security/transport/security_handshaker.h +45 -0
- data/src/core/lib/security/transport/server_auth_filter.cc +326 -0
- data/src/core/lib/security/transport/target_authority_table.cc +75 -0
- data/src/core/lib/security/transport/target_authority_table.h +40 -0
- data/src/core/lib/security/transport/tsi_error.cc +29 -0
- data/src/core/lib/security/transport/tsi_error.h +29 -0
- data/src/core/lib/security/util/json_util.cc +73 -0
- data/src/core/lib/security/util/json_util.h +44 -0
- data/src/core/lib/slice/b64.cc +239 -0
- data/src/core/lib/slice/b64.h +50 -0
- data/src/core/lib/slice/percent_encoding.cc +169 -0
- data/src/core/lib/slice/percent_encoding.h +65 -0
- data/src/core/lib/slice/slice.cc +559 -0
- data/src/core/lib/slice/slice_buffer.cc +413 -0
- data/src/core/lib/slice/slice_hash_table.h +199 -0
- data/src/core/lib/slice/slice_intern.cc +375 -0
- data/src/core/lib/slice/slice_internal.h +364 -0
- data/src/core/lib/slice/slice_string_helpers.cc +127 -0
- data/src/core/lib/slice/slice_string_helpers.h +49 -0
- data/src/core/lib/slice/slice_utils.h +200 -0
- data/src/core/lib/slice/slice_weak_hash_table.h +102 -0
- data/src/core/lib/surface/api_trace.cc +24 -0
- data/src/core/lib/surface/api_trace.h +52 -0
- data/src/core/lib/surface/byte_buffer.cc +92 -0
- data/src/core/lib/surface/byte_buffer_reader.cc +101 -0
- data/src/core/lib/surface/call.cc +2044 -0
- data/src/core/lib/surface/call.h +125 -0
- data/src/core/lib/surface/call_details.cc +41 -0
- data/src/core/lib/surface/call_log_batch.cc +111 -0
- data/src/core/lib/surface/call_test_only.h +43 -0
- data/src/core/lib/surface/channel.cc +543 -0
- data/src/core/lib/surface/channel.h +158 -0
- data/src/core/lib/surface/channel_init.cc +109 -0
- data/src/core/lib/surface/channel_init.h +78 -0
- data/src/core/lib/surface/channel_ping.cc +64 -0
- data/src/core/lib/surface/channel_stack_type.cc +58 -0
- data/src/core/lib/surface/channel_stack_type.h +47 -0
- data/src/core/lib/surface/completion_queue.cc +1438 -0
- data/src/core/lib/surface/completion_queue.h +97 -0
- data/src/core/lib/surface/completion_queue_factory.cc +88 -0
- data/src/core/lib/surface/completion_queue_factory.h +38 -0
- data/src/core/lib/surface/event_string.cc +61 -0
- data/src/core/lib/surface/event_string.h +31 -0
- data/src/core/lib/surface/init.cc +250 -0
- data/src/core/lib/surface/init.h +27 -0
- data/src/core/lib/surface/init_secure.cc +81 -0
- data/src/core/lib/surface/lame_client.cc +191 -0
- data/src/core/lib/surface/lame_client.h +28 -0
- data/src/core/lib/surface/metadata_array.cc +36 -0
- data/src/core/lib/surface/server.cc +1800 -0
- data/src/core/lib/surface/server.h +99 -0
- data/src/core/lib/surface/validate_metadata.cc +105 -0
- data/src/core/lib/surface/validate_metadata.h +41 -0
- data/src/core/lib/surface/version.cc +28 -0
- data/src/core/lib/transport/bdp_estimator.cc +87 -0
- data/src/core/lib/transport/bdp_estimator.h +94 -0
- data/src/core/lib/transport/byte_stream.cc +158 -0
- data/src/core/lib/transport/byte_stream.h +165 -0
- data/src/core/lib/transport/connectivity_state.cc +180 -0
- data/src/core/lib/transport/connectivity_state.h +131 -0
- data/src/core/lib/transport/error_utils.cc +141 -0
- data/src/core/lib/transport/error_utils.h +46 -0
- data/src/core/lib/transport/http2_errors.h +41 -0
- data/src/core/lib/transport/metadata.cc +679 -0
- data/src/core/lib/transport/metadata.h +446 -0
- data/src/core/lib/transport/metadata_batch.cc +392 -0
- data/src/core/lib/transport/metadata_batch.h +191 -0
- data/src/core/lib/transport/pid_controller.cc +51 -0
- data/src/core/lib/transport/pid_controller.h +116 -0
- data/src/core/lib/transport/static_metadata.cc +1230 -0
- data/src/core/lib/transport/static_metadata.h +597 -0
- data/src/core/lib/transport/status_conversion.cc +92 -0
- data/src/core/lib/transport/status_conversion.h +38 -0
- data/src/core/lib/transport/status_metadata.cc +61 -0
- data/src/core/lib/transport/status_metadata.h +48 -0
- data/src/core/lib/transport/timeout_encoding.cc +151 -0
- data/src/core/lib/transport/timeout_encoding.h +38 -0
- data/src/core/lib/transport/transport.cc +259 -0
- data/src/core/lib/transport/transport.h +456 -0
- data/src/core/lib/transport/transport_impl.h +71 -0
- data/src/core/lib/transport/transport_op_string.cc +169 -0
- data/src/core/lib/uri/uri_parser.cc +314 -0
- data/src/core/lib/uri/uri_parser.h +49 -0
- data/src/core/plugin_registry/grpc_plugin_registry.cc +121 -0
- data/src/core/tsi/alts/crypt/aes_gcm.cc +687 -0
- data/src/core/tsi/alts/crypt/gsec.cc +189 -0
- data/src/core/tsi/alts/crypt/gsec.h +454 -0
- data/src/core/tsi/alts/frame_protector/alts_counter.cc +118 -0
- data/src/core/tsi/alts/frame_protector/alts_counter.h +98 -0
- data/src/core/tsi/alts/frame_protector/alts_crypter.cc +66 -0
- data/src/core/tsi/alts/frame_protector/alts_crypter.h +255 -0
- data/src/core/tsi/alts/frame_protector/alts_frame_protector.cc +407 -0
- data/src/core/tsi/alts/frame_protector/alts_frame_protector.h +55 -0
- data/src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.cc +114 -0
- data/src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.h +114 -0
- data/src/core/tsi/alts/frame_protector/alts_seal_privacy_integrity_crypter.cc +105 -0
- data/src/core/tsi/alts/frame_protector/alts_unseal_privacy_integrity_crypter.cc +103 -0
- data/src/core/tsi/alts/frame_protector/frame_handler.cc +218 -0
- data/src/core/tsi/alts/frame_protector/frame_handler.h +236 -0
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +899 -0
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.h +161 -0
- data/src/core/tsi/alts/handshaker/alts_shared_resource.cc +83 -0
- data/src/core/tsi/alts/handshaker/alts_shared_resource.h +73 -0
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +674 -0
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.h +104 -0
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker_private.h +88 -0
- data/src/core/tsi/alts/handshaker/alts_tsi_utils.cc +64 -0
- data/src/core/tsi/alts/handshaker/alts_tsi_utils.h +53 -0
- data/src/core/tsi/alts/handshaker/transport_security_common_api.cc +223 -0
- data/src/core/tsi/alts/handshaker/transport_security_common_api.h +171 -0
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.cc +226 -0
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.h +54 -0
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.cc +144 -0
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.h +49 -0
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol.h +91 -0
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc +174 -0
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.h +99 -0
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc +476 -0
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.h +199 -0
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +307 -0
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h +57 -0
- data/src/core/tsi/fake_transport_security.cc +789 -0
- data/src/core/tsi/fake_transport_security.h +47 -0
- data/src/core/tsi/local_transport_security.cc +211 -0
- data/src/core/tsi/local_transport_security.h +51 -0
- data/src/core/tsi/ssl/session_cache/ssl_session.h +71 -0
- data/src/core/tsi/ssl/session_cache/ssl_session_boringssl.cc +57 -0
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.cc +214 -0
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.h +90 -0
- data/src/core/tsi/ssl/session_cache/ssl_session_openssl.cc +75 -0
- data/src/core/tsi/ssl_transport_security.cc +2124 -0
- data/src/core/tsi/ssl_transport_security.h +353 -0
- data/src/core/tsi/ssl_types.h +42 -0
- data/src/core/tsi/transport_security.cc +370 -0
- data/src/core/tsi/transport_security.h +127 -0
- data/src/core/tsi/transport_security_grpc.cc +73 -0
- data/src/core/tsi/transport_security_grpc.h +79 -0
- data/src/core/tsi/transport_security_interface.h +476 -0
- data/src/ruby/bin/math_client.rb +140 -0
- data/src/ruby/bin/math_pb.rb +34 -0
- data/src/ruby/bin/math_server.rb +191 -0
- data/src/ruby/bin/math_services_pb.rb +51 -0
- data/src/ruby/bin/noproto_client.rb +93 -0
- data/src/ruby/bin/noproto_server.rb +97 -0
- data/src/ruby/ext/grpc/ext-export.clang +1 -0
- data/src/ruby/ext/grpc/ext-export.gcc +6 -0
- data/src/ruby/ext/grpc/extconf.rb +107 -0
- data/src/ruby/ext/grpc/rb_byte_buffer.c +64 -0
- data/src/ruby/ext/grpc/rb_byte_buffer.h +35 -0
- data/src/ruby/ext/grpc/rb_call.c +1050 -0
- data/src/ruby/ext/grpc/rb_call.h +53 -0
- data/src/ruby/ext/grpc/rb_call_credentials.c +297 -0
- data/src/ruby/ext/grpc/rb_call_credentials.h +31 -0
- data/src/ruby/ext/grpc/rb_channel.c +835 -0
- data/src/ruby/ext/grpc/rb_channel.h +34 -0
- data/src/ruby/ext/grpc/rb_channel_args.c +155 -0
- data/src/ruby/ext/grpc/rb_channel_args.h +38 -0
- data/src/ruby/ext/grpc/rb_channel_credentials.c +267 -0
- data/src/ruby/ext/grpc/rb_channel_credentials.h +32 -0
- data/src/ruby/ext/grpc/rb_completion_queue.c +100 -0
- data/src/ruby/ext/grpc/rb_completion_queue.h +36 -0
- data/src/ruby/ext/grpc/rb_compression_options.c +470 -0
- data/src/ruby/ext/grpc/rb_compression_options.h +29 -0
- data/src/ruby/ext/grpc/rb_enable_cpp.cc +22 -0
- data/src/ruby/ext/grpc/rb_event_thread.c +143 -0
- data/src/ruby/ext/grpc/rb_event_thread.h +21 -0
- data/src/ruby/ext/grpc/rb_grpc.c +328 -0
- data/src/ruby/ext/grpc/rb_grpc.h +76 -0
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +573 -0
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +865 -0
- data/src/ruby/ext/grpc/rb_loader.c +57 -0
- data/src/ruby/ext/grpc/rb_loader.h +25 -0
- data/src/ruby/ext/grpc/rb_server.c +372 -0
- data/src/ruby/ext/grpc/rb_server.h +32 -0
- data/src/ruby/ext/grpc/rb_server_credentials.c +243 -0
- data/src/ruby/ext/grpc/rb_server_credentials.h +32 -0
- data/src/ruby/lib/grpc.rb +37 -0
- data/src/ruby/lib/grpc/core/status_codes.rb +135 -0
- data/src/ruby/lib/grpc/core/time_consts.rb +56 -0
- data/src/ruby/lib/grpc/errors.rb +277 -0
- data/src/ruby/lib/grpc/generic/active_call.rb +669 -0
- data/src/ruby/lib/grpc/generic/bidi_call.rb +233 -0
- data/src/ruby/lib/grpc/generic/client_stub.rb +501 -0
- data/src/ruby/lib/grpc/generic/interceptor_registry.rb +53 -0
- data/src/ruby/lib/grpc/generic/interceptors.rb +186 -0
- data/src/ruby/lib/grpc/generic/rpc_desc.rb +204 -0
- data/src/ruby/lib/grpc/generic/rpc_server.rb +551 -0
- data/src/ruby/lib/grpc/generic/service.rb +211 -0
- data/src/ruby/lib/grpc/google_rpc_status_utils.rb +40 -0
- data/src/ruby/lib/grpc/grpc.rb +24 -0
- data/src/ruby/lib/grpc/logconfig.rb +44 -0
- data/src/ruby/lib/grpc/notifier.rb +45 -0
- data/src/ruby/lib/grpc/structs.rb +15 -0
- data/src/ruby/lib/grpc/version.rb +18 -0
- data/src/ruby/pb/README.md +42 -0
- data/src/ruby/pb/generate_proto_ruby.sh +51 -0
- data/src/ruby/pb/grpc/health/checker.rb +75 -0
- data/src/ruby/pb/grpc/health/v1/health_pb.rb +31 -0
- data/src/ruby/pb/grpc/health/v1/health_services_pb.rb +62 -0
- data/src/ruby/pb/grpc/testing/duplicate/echo_duplicate_services_pb.rb +44 -0
- data/src/ruby/pb/grpc/testing/metrics_pb.rb +28 -0
- data/src/ruby/pb/grpc/testing/metrics_services_pb.rb +49 -0
- data/src/ruby/pb/src/proto/grpc/testing/empty_pb.rb +17 -0
- data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +105 -0
- data/src/ruby/pb/src/proto/grpc/testing/test_pb.rb +16 -0
- data/src/ruby/pb/src/proto/grpc/testing/test_services_pb.rb +118 -0
- data/src/ruby/spec/call_credentials_spec.rb +42 -0
- data/src/ruby/spec/call_spec.rb +180 -0
- data/src/ruby/spec/channel_connection_spec.rb +126 -0
- data/src/ruby/spec/channel_credentials_spec.rb +82 -0
- data/src/ruby/spec/channel_spec.rb +234 -0
- data/src/ruby/spec/client_auth_spec.rb +126 -0
- data/src/ruby/spec/client_server_spec.rb +664 -0
- data/src/ruby/spec/compression_options_spec.rb +149 -0
- data/src/ruby/spec/debug_message_spec.rb +134 -0
- data/src/ruby/spec/error_sanity_spec.rb +49 -0
- data/src/ruby/spec/errors_spec.rb +142 -0
- data/src/ruby/spec/generic/active_call_spec.rb +672 -0
- data/src/ruby/spec/generic/client_interceptors_spec.rb +153 -0
- data/src/ruby/spec/generic/client_stub_spec.rb +1083 -0
- data/src/ruby/spec/generic/interceptor_registry_spec.rb +65 -0
- data/src/ruby/spec/generic/rpc_desc_spec.rb +374 -0
- data/src/ruby/spec/generic/rpc_server_pool_spec.rb +127 -0
- data/src/ruby/spec/generic/rpc_server_spec.rb +748 -0
- data/src/ruby/spec/generic/server_interceptors_spec.rb +218 -0
- data/src/ruby/spec/generic/service_spec.rb +263 -0
- data/src/ruby/spec/google_rpc_status_utils_spec.rb +282 -0
- data/src/ruby/spec/pb/codegen/grpc/testing/package_options.proto +28 -0
- data/src/ruby/spec/pb/codegen/grpc/testing/package_options_import.proto +22 -0
- data/src/ruby/spec/pb/codegen/grpc/testing/package_options_import2.proto +23 -0
- data/src/ruby/spec/pb/codegen/grpc/testing/package_options_ruby_style.proto +41 -0
- data/src/ruby/spec/pb/codegen/package_option_spec.rb +82 -0
- data/src/ruby/spec/pb/duplicate/codegen_spec.rb +57 -0
- data/src/ruby/spec/pb/health/checker_spec.rb +236 -0
- data/src/ruby/spec/server_credentials_spec.rb +79 -0
- data/src/ruby/spec/server_spec.rb +209 -0
- data/src/ruby/spec/spec_helper.rb +61 -0
- data/src/ruby/spec/support/helpers.rb +107 -0
- data/src/ruby/spec/support/services.rb +160 -0
- data/src/ruby/spec/testdata/README +1 -0
- data/src/ruby/spec/testdata/ca.pem +20 -0
- data/src/ruby/spec/testdata/client.key +28 -0
- data/src/ruby/spec/testdata/client.pem +20 -0
- data/src/ruby/spec/testdata/server1.key +28 -0
- data/src/ruby/spec/testdata/server1.pem +22 -0
- data/src/ruby/spec/time_consts_spec.rb +74 -0
- data/third_party/abseil-cpp/absl/algorithm/algorithm.h +159 -0
- data/third_party/abseil-cpp/absl/base/attributes.h +621 -0
- data/third_party/abseil-cpp/absl/base/call_once.h +226 -0
- data/third_party/abseil-cpp/absl/base/casts.h +184 -0
- data/third_party/abseil-cpp/absl/base/config.h +671 -0
- data/third_party/abseil-cpp/absl/base/const_init.h +76 -0
- data/third_party/abseil-cpp/absl/base/dynamic_annotations.cc +129 -0
- data/third_party/abseil-cpp/absl/base/dynamic_annotations.h +389 -0
- data/third_party/abseil-cpp/absl/base/internal/atomic_hook.h +200 -0
- data/third_party/abseil-cpp/absl/base/internal/bits.h +218 -0
- data/third_party/abseil-cpp/absl/base/internal/cycleclock.cc +107 -0
- data/third_party/abseil-cpp/absl/base/internal/cycleclock.h +94 -0
- data/third_party/abseil-cpp/absl/base/internal/endian.h +266 -0
- data/third_party/abseil-cpp/absl/base/internal/errno_saver.h +43 -0
- data/third_party/abseil-cpp/absl/base/internal/hide_ptr.h +51 -0
- data/third_party/abseil-cpp/absl/base/internal/identity.h +37 -0
- data/third_party/abseil-cpp/absl/base/internal/inline_variable.h +107 -0
- data/third_party/abseil-cpp/absl/base/internal/invoke.h +187 -0
- data/third_party/abseil-cpp/absl/base/internal/low_level_scheduling.h +107 -0
- data/third_party/abseil-cpp/absl/base/internal/per_thread_tls.h +52 -0
- data/third_party/abseil-cpp/absl/base/internal/raw_logging.cc +240 -0
- data/third_party/abseil-cpp/absl/base/internal/raw_logging.h +183 -0
- data/third_party/abseil-cpp/absl/base/internal/scheduling_mode.h +58 -0
- data/third_party/abseil-cpp/absl/base/internal/spinlock.cc +233 -0
- data/third_party/abseil-cpp/absl/base/internal/spinlock.h +243 -0
- data/third_party/abseil-cpp/absl/base/internal/spinlock_akaros.inc +35 -0
- data/third_party/abseil-cpp/absl/base/internal/spinlock_linux.inc +66 -0
- data/third_party/abseil-cpp/absl/base/internal/spinlock_posix.inc +46 -0
- data/third_party/abseil-cpp/absl/base/internal/spinlock_wait.cc +81 -0
- data/third_party/abseil-cpp/absl/base/internal/spinlock_wait.h +93 -0
- data/third_party/abseil-cpp/absl/base/internal/spinlock_win32.inc +37 -0
- data/third_party/abseil-cpp/absl/base/internal/sysinfo.cc +416 -0
- data/third_party/abseil-cpp/absl/base/internal/sysinfo.h +66 -0
- data/third_party/abseil-cpp/absl/base/internal/thread_annotations.h +271 -0
- data/third_party/abseil-cpp/absl/base/internal/thread_identity.cc +152 -0
- data/third_party/abseil-cpp/absl/base/internal/thread_identity.h +259 -0
- data/third_party/abseil-cpp/absl/base/internal/throw_delegate.cc +108 -0
- data/third_party/abseil-cpp/absl/base/internal/throw_delegate.h +75 -0
- data/third_party/abseil-cpp/absl/base/internal/tsan_mutex_interface.h +66 -0
- data/third_party/abseil-cpp/absl/base/internal/unaligned_access.h +158 -0
- data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc +140 -0
- data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.h +124 -0
- data/third_party/abseil-cpp/absl/base/log_severity.cc +27 -0
- data/third_party/abseil-cpp/absl/base/log_severity.h +121 -0
- data/third_party/abseil-cpp/absl/base/macros.h +220 -0
- data/third_party/abseil-cpp/absl/base/optimization.h +181 -0
- data/third_party/abseil-cpp/absl/base/options.h +211 -0
- data/third_party/abseil-cpp/absl/base/policy_checks.h +111 -0
- data/third_party/abseil-cpp/absl/base/port.h +26 -0
- data/third_party/abseil-cpp/absl/base/thread_annotations.h +280 -0
- data/third_party/abseil-cpp/absl/container/inlined_vector.h +848 -0
- data/third_party/abseil-cpp/absl/container/internal/compressed_tuple.h +265 -0
- data/third_party/abseil-cpp/absl/container/internal/inlined_vector.h +892 -0
- data/third_party/abseil-cpp/absl/memory/memory.h +695 -0
- data/third_party/abseil-cpp/absl/meta/type_traits.h +759 -0
- data/third_party/abseil-cpp/absl/numeric/int128.cc +404 -0
- data/third_party/abseil-cpp/absl/numeric/int128.h +1091 -0
- data/third_party/abseil-cpp/absl/numeric/int128_have_intrinsic.inc +302 -0
- data/third_party/abseil-cpp/absl/numeric/int128_no_intrinsic.inc +308 -0
- data/third_party/abseil-cpp/absl/strings/ascii.cc +200 -0
- data/third_party/abseil-cpp/absl/strings/ascii.h +242 -0
- data/third_party/abseil-cpp/absl/strings/charconv.cc +984 -0
- data/third_party/abseil-cpp/absl/strings/charconv.h +119 -0
- data/third_party/abseil-cpp/absl/strings/escaping.cc +949 -0
- data/third_party/abseil-cpp/absl/strings/escaping.h +164 -0
- data/third_party/abseil-cpp/absl/strings/internal/char_map.h +156 -0
- data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.cc +359 -0
- data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.h +423 -0
- data/third_party/abseil-cpp/absl/strings/internal/charconv_parse.cc +504 -0
- data/third_party/abseil-cpp/absl/strings/internal/charconv_parse.h +99 -0
- data/third_party/abseil-cpp/absl/strings/internal/escaping.cc +180 -0
- data/third_party/abseil-cpp/absl/strings/internal/escaping.h +58 -0
- data/third_party/abseil-cpp/absl/strings/internal/memutil.cc +112 -0
- data/third_party/abseil-cpp/absl/strings/internal/memutil.h +148 -0
- data/third_party/abseil-cpp/absl/strings/internal/ostringstream.cc +36 -0
- data/third_party/abseil-cpp/absl/strings/internal/ostringstream.h +89 -0
- data/third_party/abseil-cpp/absl/strings/internal/resize_uninitialized.h +73 -0
- data/third_party/abseil-cpp/absl/strings/internal/stl_type_traits.h +248 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.cc +388 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.h +432 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.cc +245 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.h +209 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/checker.h +326 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.cc +51 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.h +415 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.cc +493 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.h +23 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/output.cc +72 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/output.h +104 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/parser.cc +334 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/parser.h +333 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_join_internal.h +314 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_split_internal.h +455 -0
- data/third_party/abseil-cpp/absl/strings/internal/utf8.cc +53 -0
- data/third_party/abseil-cpp/absl/strings/internal/utf8.h +50 -0
- data/third_party/abseil-cpp/absl/strings/match.cc +40 -0
- data/third_party/abseil-cpp/absl/strings/match.h +90 -0
- data/third_party/abseil-cpp/absl/strings/numbers.cc +965 -0
- data/third_party/abseil-cpp/absl/strings/numbers.h +266 -0
- data/third_party/abseil-cpp/absl/strings/str_cat.cc +246 -0
- data/third_party/abseil-cpp/absl/strings/str_cat.h +408 -0
- data/third_party/abseil-cpp/absl/strings/str_format.h +537 -0
- data/third_party/abseil-cpp/absl/strings/str_join.h +293 -0
- data/third_party/abseil-cpp/absl/strings/str_replace.cc +82 -0
- data/third_party/abseil-cpp/absl/strings/str_replace.h +219 -0
- data/third_party/abseil-cpp/absl/strings/str_split.cc +139 -0
- data/third_party/abseil-cpp/absl/strings/str_split.h +513 -0
- data/third_party/abseil-cpp/absl/strings/string_view.cc +235 -0
- data/third_party/abseil-cpp/absl/strings/string_view.h +622 -0
- data/third_party/abseil-cpp/absl/strings/strip.h +91 -0
- data/third_party/abseil-cpp/absl/strings/substitute.cc +171 -0
- data/third_party/abseil-cpp/absl/strings/substitute.h +693 -0
- data/third_party/abseil-cpp/absl/time/civil_time.cc +175 -0
- data/third_party/abseil-cpp/absl/time/civil_time.h +538 -0
- data/third_party/abseil-cpp/absl/time/clock.cc +569 -0
- data/third_party/abseil-cpp/absl/time/clock.h +74 -0
- data/third_party/abseil-cpp/absl/time/duration.cc +922 -0
- data/third_party/abseil-cpp/absl/time/format.cc +153 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/civil_time.h +332 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/civil_time_detail.h +622 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/time_zone.h +384 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/zone_info_source.h +102 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/civil_time_detail.cc +94 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.cc +140 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.h +52 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_format.cc +922 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.cc +45 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.h +76 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.cc +121 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.h +93 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.cc +958 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.h +138 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.cc +308 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.h +55 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup.cc +187 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_posix.cc +159 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_posix.h +132 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/tzfile.h +122 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/zone_info_source.cc +115 -0
- data/third_party/abseil-cpp/absl/time/internal/get_current_time_chrono.inc +31 -0
- data/third_party/abseil-cpp/absl/time/internal/get_current_time_posix.inc +24 -0
- data/third_party/abseil-cpp/absl/time/time.cc +499 -0
- data/third_party/abseil-cpp/absl/time/time.h +1584 -0
- data/third_party/abseil-cpp/absl/types/bad_optional_access.cc +48 -0
- data/third_party/abseil-cpp/absl/types/bad_optional_access.h +78 -0
- data/third_party/abseil-cpp/absl/types/internal/optional.h +396 -0
- data/third_party/abseil-cpp/absl/types/internal/span.h +128 -0
- data/third_party/abseil-cpp/absl/types/optional.h +776 -0
- data/third_party/abseil-cpp/absl/types/span.h +713 -0
- data/third_party/abseil-cpp/absl/utility/utility.h +350 -0
- data/third_party/address_sorting/address_sorting.c +375 -0
- data/third_party/address_sorting/address_sorting_internal.h +70 -0
- data/third_party/address_sorting/address_sorting_posix.c +97 -0
- data/third_party/address_sorting/address_sorting_windows.c +95 -0
- data/third_party/address_sorting/include/address_sorting/address_sorting.h +113 -0
- data/third_party/boringssl-with-bazel/err_data.c +1439 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bitstr.c +271 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bool.c +123 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_d2i_fp.c +93 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_dup.c +87 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_enum.c +195 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_gentm.c +261 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_i2d_fp.c +88 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_int.c +420 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_mbstr.c +305 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_object.c +286 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_octet.c +77 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_print.c +93 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strnid.c +313 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_time.c +212 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_type.c +151 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utctm.c +303 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utf8.c +236 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_lib.c +446 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_locl.h +104 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_par.c +80 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn_pack.c +105 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/f_enum.c +93 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/f_int.c +97 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/f_string.c +91 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_dec.c +1244 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_enc.c +664 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_fre.c +244 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_new.c +387 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_typ.c +131 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_utl.c +280 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/time_support.c +206 -0
- data/third_party/boringssl-with-bazel/src/crypto/base64/base64.c +466 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/bio.c +700 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/bio_mem.c +330 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/connect.c +545 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/fd.c +279 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/file.c +317 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/hexdump.c +192 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/internal.h +111 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/pair.c +488 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/printf.c +115 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/socket.c +206 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/socket_helper.c +118 -0
- data/third_party/boringssl-with-bazel/src/crypto/bn_extra/bn_asn1.c +64 -0
- data/third_party/boringssl-with-bazel/src/crypto/bn_extra/convert.c +470 -0
- data/third_party/boringssl-with-bazel/src/crypto/buf/buf.c +172 -0
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/asn1_compat.c +52 -0
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/ber.c +265 -0
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbb.c +719 -0
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.c +688 -0
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/internal.h +96 -0
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/unicode.c +155 -0
- data/third_party/boringssl-with-bazel/src/crypto/chacha/chacha.c +184 -0
- data/third_party/boringssl-with-bazel/src/crypto/chacha/internal.h +45 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/cipher_extra.c +143 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/derive_key.c +152 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_aesccm.c +447 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_aesctrhmac.c +283 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_aesgcmsiv.c +891 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_chacha20poly1305.c +418 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_null.c +85 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc2.c +462 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc4.c +87 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_tls.c +688 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/internal.h +128 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/tls_cbc.c +491 -0
- data/third_party/boringssl-with-bazel/src/crypto/cmac/cmac.c +278 -0
- data/third_party/boringssl-with-bazel/src/crypto/conf/conf.c +810 -0
- data/third_party/boringssl-with-bazel/src/crypto/conf/conf_def.h +127 -0
- data/third_party/boringssl-with-bazel/src/crypto/conf/internal.h +31 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu-aarch64-fuchsia.c +55 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu-aarch64-linux.c +62 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu-arm-linux.c +220 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu-arm-linux.h +201 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu-arm.c +38 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu-intel.c +291 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu-ppc64le.c +38 -0
- data/third_party/boringssl-with-bazel/src/crypto/crypto.c +226 -0
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519.c +2159 -0
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519_tables.h +7872 -0
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/internal.h +146 -0
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/spake25519.c +539 -0
- data/third_party/boringssl-with-bazel/src/crypto/dh/check.c +217 -0
- data/third_party/boringssl-with-bazel/src/crypto/dh/dh.c +533 -0
- data/third_party/boringssl-with-bazel/src/crypto/dh/dh_asn1.c +160 -0
- data/third_party/boringssl-with-bazel/src/crypto/dh/params.c +93 -0
- data/third_party/boringssl-with-bazel/src/crypto/digest_extra/digest_extra.c +240 -0
- data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.c +980 -0
- data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa_asn1.c +339 -0
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_asn1.c +574 -0
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_derive.c +95 -0
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/hash_to_curve.c +425 -0
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/internal.h +78 -0
- data/third_party/boringssl-with-bazel/src/crypto/ecdh_extra/ecdh_extra.c +124 -0
- data/third_party/boringssl-with-bazel/src/crypto/ecdsa_extra/ecdsa_asn1.c +267 -0
- data/third_party/boringssl-with-bazel/src/crypto/engine/engine.c +99 -0
- data/third_party/boringssl-with-bazel/src/crypto/err/err.c +850 -0
- data/third_party/boringssl-with-bazel/src/crypto/err/internal.h +58 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/digestsign.c +231 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp.c +443 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp_asn1.c +388 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp_ctx.c +484 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/internal.h +269 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_dsa_asn1.c +273 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec.c +286 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec_asn1.c +255 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519.c +104 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519_asn1.c +221 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa.c +648 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa_asn1.c +194 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_x25519.c +110 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_x25519_asn1.c +248 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/pbkdf.c +146 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/print.c +489 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/scrypt.c +213 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/sign.c +151 -0
- data/third_party/boringssl-with-bazel/src/crypto/ex_data.c +261 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes.c +108 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes_nohw.c +1282 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/internal.h +238 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/key_wrap.c +236 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/mode_wrappers.c +106 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.c +263 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/add.c +316 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/asm/x86_64-gcc.c +541 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bn.c +445 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bytes.c +230 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/cmp.c +200 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/ctx.c +236 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div.c +886 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div_extra.c +87 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/exponentiation.c +1288 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd.c +378 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd_extra.c +325 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/generic.c +711 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +694 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/jacobi.c +146 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery.c +502 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery_inv.c +186 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/mul.c +749 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/prime.c +1068 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/random.c +341 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/rsaz_exp.c +226 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/rsaz_exp.h +104 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/shift.c +364 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/sqrt.c +502 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/aead.c +284 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/cipher.c +620 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aes.c +1302 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_des.c +237 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/internal.h +128 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/delocate.h +89 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/des/des.c +785 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/des/internal.h +240 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digest.c +271 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digests.c +296 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/internal.h +112 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/md32_common.h +268 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec.c +1252 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.c +465 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_montgomery.c +524 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/felem.c +100 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/internal.h +775 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/oct.c +328 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p224-64.c +1178 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-x86_64-table.h +9497 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-x86_64.c +632 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-x86_64.h +153 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256.c +736 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256_table.h +297 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/scalar.c +175 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple.c +357 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple_mul.c +270 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/util.c +255 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/wnaf.c +270 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdh/ecdh.c +122 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.c +328 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/fips_shared_support.c +32 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hmac/hmac.c +228 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/is_fips.c +29 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md4/md4.c +256 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md5/internal.h +37 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md5/md5.c +301 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/cbc.c +167 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/cfb.c +202 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/ctr.c +200 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/gcm.c +729 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/gcm_nohw.c +304 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/internal.h +441 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/ofb.c +96 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/polyval.c +91 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/ctrdrbg.c +202 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.c +137 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.h +49 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/getrandom_fillin.h +64 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/internal.h +163 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.c +378 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/urandom.c +391 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/blinding.c +243 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/internal.h +127 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/padding.c +695 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.c +898 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c +1358 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c +654 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/internal.h +53 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1-altivec.c +361 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1.c +371 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha256.c +343 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha512.c +544 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/internal.h +39 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/kdf.c +165 -0
- data/third_party/boringssl-with-bazel/src/crypto/hkdf/hkdf.c +112 -0
- data/third_party/boringssl-with-bazel/src/crypto/hrss/hrss.c +2100 -0
- data/third_party/boringssl-with-bazel/src/crypto/hrss/internal.h +61 -0
- data/third_party/boringssl-with-bazel/src/crypto/internal.h +834 -0
- data/third_party/boringssl-with-bazel/src/crypto/lhash/lhash.c +348 -0
- data/third_party/boringssl-with-bazel/src/crypto/mem.c +359 -0
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj.c +549 -0
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj_dat.h +11585 -0
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj_xref.c +122 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_all.c +261 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_info.c +360 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_lib.c +777 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_oth.c +87 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pk8.c +257 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pkey.c +218 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_x509.c +65 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_xaux.c +65 -0
- data/third_party/boringssl-with-bazel/src/crypto/pkcs7/internal.h +49 -0
- data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7.c +159 -0
- data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7_x509.c +385 -0
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h +131 -0
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/p5_pbev2.c +316 -0
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8.c +530 -0
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.c +1305 -0
- data/third_party/boringssl-with-bazel/src/crypto/poly1305/internal.h +41 -0
- data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305.c +318 -0
- data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_arm.c +305 -0
- data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_vec.c +856 -0
- data/third_party/boringssl-with-bazel/src/crypto/pool/internal.h +45 -0
- data/third_party/boringssl-with-bazel/src/crypto/pool/pool.c +220 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/deterministic.c +52 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/forkunsafe.c +46 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/fuchsia.c +30 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/rand_extra.c +70 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/windows.c +69 -0
- data/third_party/boringssl-with-bazel/src/crypto/rc4/rc4.c +98 -0
- data/third_party/boringssl-with-bazel/src/crypto/refcount_c11.c +67 -0
- data/third_party/boringssl-with-bazel/src/crypto/refcount_lock.c +53 -0
- data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/rsa_asn1.c +325 -0
- data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/rsa_print.c +22 -0
- data/third_party/boringssl-with-bazel/src/crypto/siphash/siphash.c +82 -0
- data/third_party/boringssl-with-bazel/src/crypto/stack/stack.c +431 -0
- data/third_party/boringssl-with-bazel/src/crypto/thread.c +110 -0
- data/third_party/boringssl-with-bazel/src/crypto/thread_none.c +59 -0
- data/third_party/boringssl-with-bazel/src/crypto/thread_pthread.c +210 -0
- data/third_party/boringssl-with-bazel/src/crypto/thread_win.c +260 -0
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/internal.h +278 -0
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/pmbtoken.c +1474 -0
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/trust_token.c +720 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/a_digest.c +96 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/a_sign.c +128 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/a_strex.c +653 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/a_verify.c +114 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/algorithm.c +153 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/asn1_gen.c +842 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/by_dir.c +458 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/by_file.c +275 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/charmap.h +15 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/i2d_pr.c +83 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/internal.h +66 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/rsa_pss.c +385 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_crl.c +125 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_req.c +244 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509.c +544 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509a.c +111 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/vpm_int.h +71 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509.c +157 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_att.c +381 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_cmp.c +476 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_d2.c +106 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_def.c +103 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_ext.c +206 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.c +834 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_obj.c +198 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_r2x.c +116 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_req.c +341 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_set.c +185 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.c +326 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_txt.c +204 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_v3.c +278 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +2487 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vpm.c +671 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509cset.c +210 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509name.c +389 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509rset.c +81 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509spki.c +137 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_algor.c +151 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_all.c +399 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_attrib.c +111 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_crl.c +541 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_exten.c +75 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_info.c +98 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_name.c +554 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_pkey.c +106 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_pubkey.c +368 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_req.c +109 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_sig.c +69 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_spki.c +80 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_val.c +69 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509.c +334 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509a.c +198 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/ext_dat.h +141 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/internal.h +56 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_cache.c +286 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_data.c +130 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_int.h +217 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_lib.c +155 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_map.c +130 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_node.c +189 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_tree.c +842 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_akey.c +207 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_akeya.c +72 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_alt.c +629 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_bcons.c +133 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_bitst.c +141 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_conf.c +463 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_cpols.c +503 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_crld.c +561 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_enum.c +100 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_extku.c +148 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_genn.c +246 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_ia5.c +122 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_info.c +218 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_int.c +91 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_lib.c +371 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_ncons.c +501 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_ocsp.c +68 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pci.c +288 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pcia.c +57 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pcons.c +139 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pku.c +110 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pmaps.c +154 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_prn.c +229 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_purp.c +843 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_skey.c +155 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_sxnet.c +274 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_utl.c +1395 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/aead.h +459 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/aes.h +195 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/arm_arch.h +121 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +911 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/asn1_mac.h +18 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/asn1t.h +892 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/base.h +575 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/base64.h +190 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/bio.h +933 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/blowfish.h +93 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/bn.h +1057 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/buf.h +137 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/buffer.h +18 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/bytestring.h +561 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/cast.h +96 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/chacha.h +41 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/cipher.h +638 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/cmac.h +91 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/conf.h +180 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/cpu.h +212 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/crypto.h +149 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/curve25519.h +201 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/des.h +177 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/dh.h +319 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/digest.h +331 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/dsa.h +457 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/dtls1.h +16 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/e_os2.h +18 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ec.h +424 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ec_key.h +372 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ecdh.h +118 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ecdsa.h +205 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/engine.h +109 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/err.h +465 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +1050 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ex_data.h +203 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/hkdf.h +64 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/hmac.h +186 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/hrss.h +100 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/is_boringssl.h +16 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/lhash.h +282 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/md4.h +108 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/md5.h +109 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/mem.h +175 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/nid.h +4259 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/obj.h +236 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/obj_mac.h +18 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/objects.h +18 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/opensslconf.h +67 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/opensslv.h +18 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ossl_typ.h +18 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/pem.h +435 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/pkcs12.h +18 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/pkcs7.h +215 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/pkcs8.h +269 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/poly1305.h +49 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/pool.h +102 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/rand.h +111 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/rc4.h +96 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ripemd.h +108 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/rsa.h +818 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/safestack.h +16 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/sha.h +294 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/siphash.h +37 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/span.h +199 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/srtp.h +18 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +5198 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ssl3.h +333 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/stack.h +542 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/thread.h +191 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/tls1.h +632 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/trust_token.h +291 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/type_check.h +90 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +1207 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/x509_vfy.h +681 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/x509v3.h +831 -0
- data/third_party/boringssl-with-bazel/src/ssl/bio_ssl.cc +179 -0
- data/third_party/boringssl-with-bazel/src/ssl/d1_both.cc +837 -0
- data/third_party/boringssl-with-bazel/src/ssl/d1_lib.cc +268 -0
- data/third_party/boringssl-with-bazel/src/ssl/d1_pkt.cc +273 -0
- data/third_party/boringssl-with-bazel/src/ssl/d1_srtp.cc +232 -0
- data/third_party/boringssl-with-bazel/src/ssl/dtls_method.cc +200 -0
- data/third_party/boringssl-with-bazel/src/ssl/dtls_record.cc +353 -0
- data/third_party/boringssl-with-bazel/src/ssl/handoff.cc +675 -0
- data/third_party/boringssl-with-bazel/src/ssl/handshake.cc +703 -0
- data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +1890 -0
- data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +1805 -0
- data/third_party/boringssl-with-bazel/src/ssl/internal.h +3572 -0
- data/third_party/boringssl-with-bazel/src/ssl/s3_both.cc +724 -0
- data/third_party/boringssl-with-bazel/src/ssl/s3_lib.cc +221 -0
- data/third_party/boringssl-with-bazel/src/ssl/s3_pkt.cc +458 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_aead_ctx.cc +432 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_asn1.cc +856 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_buffer.cc +306 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_cert.cc +1019 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_cipher.cc +1718 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_file.cc +585 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc +397 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +3015 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_privkey.cc +835 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_session.cc +1333 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_stat.cc +230 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_transcript.cc +277 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_versions.cc +394 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_x509.cc +1358 -0
- data/third_party/boringssl-with-bazel/src/ssl/t1_enc.cc +365 -0
- data/third_party/boringssl-with-bazel/src/ssl/t1_lib.cc +3870 -0
- data/third_party/boringssl-with-bazel/src/ssl/tls13_both.cc +689 -0
- data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +1017 -0
- data/third_party/boringssl-with-bazel/src/ssl/tls13_enc.cc +513 -0
- data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +1096 -0
- data/third_party/boringssl-with-bazel/src/ssl/tls_method.cc +317 -0
- data/third_party/boringssl-with-bazel/src/ssl/tls_record.cc +703 -0
- data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_32.h +981 -0
- data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_64.h +619 -0
- data/third_party/boringssl-with-bazel/src/third_party/fiat/p256_32.h +3147 -0
- data/third_party/boringssl-with-bazel/src/third_party/fiat/p256_64.h +1226 -0
- data/third_party/cares/ares_build.h +223 -0
- data/third_party/cares/cares/ares.h +670 -0
- data/third_party/cares/cares/ares__close_sockets.c +61 -0
- data/third_party/cares/cares/ares__get_hostent.c +261 -0
- data/third_party/cares/cares/ares__read_line.c +73 -0
- data/third_party/cares/cares/ares__timeval.c +111 -0
- data/third_party/cares/cares/ares_cancel.c +63 -0
- data/third_party/cares/cares/ares_create_query.c +206 -0
- data/third_party/cares/cares/ares_data.c +222 -0
- data/third_party/cares/cares/ares_data.h +72 -0
- data/third_party/cares/cares/ares_destroy.c +113 -0
- data/third_party/cares/cares/ares_dns.h +103 -0
- data/third_party/cares/cares/ares_expand_name.c +209 -0
- data/third_party/cares/cares/ares_expand_string.c +70 -0
- data/third_party/cares/cares/ares_fds.c +59 -0
- data/third_party/cares/cares/ares_free_hostent.c +41 -0
- data/third_party/cares/cares/ares_free_string.c +25 -0
- data/third_party/cares/cares/ares_getenv.c +30 -0
- data/third_party/cares/cares/ares_getenv.h +26 -0
- data/third_party/cares/cares/ares_gethostbyaddr.c +294 -0
- data/third_party/cares/cares/ares_gethostbyname.c +529 -0
- data/third_party/cares/cares/ares_getnameinfo.c +453 -0
- data/third_party/cares/cares/ares_getopt.c +122 -0
- data/third_party/cares/cares/ares_getopt.h +53 -0
- data/third_party/cares/cares/ares_getsock.c +66 -0
- data/third_party/cares/cares/ares_inet_net_pton.h +25 -0
- data/third_party/cares/cares/ares_init.c +2615 -0
- data/third_party/cares/cares/ares_iphlpapi.h +221 -0
- data/third_party/cares/cares/ares_ipv6.h +78 -0
- data/third_party/cares/cares/ares_library_init.c +195 -0
- data/third_party/cares/cares/ares_library_init.h +43 -0
- data/third_party/cares/cares/ares_llist.c +63 -0
- data/third_party/cares/cares/ares_llist.h +39 -0
- data/third_party/cares/cares/ares_mkquery.c +24 -0
- data/third_party/cares/cares/ares_nowarn.c +260 -0
- data/third_party/cares/cares/ares_nowarn.h +61 -0
- data/third_party/cares/cares/ares_options.c +406 -0
- data/third_party/cares/cares/ares_parse_a_reply.c +264 -0
- data/third_party/cares/cares/ares_parse_aaaa_reply.c +264 -0
- data/third_party/cares/cares/ares_parse_mx_reply.c +170 -0
- data/third_party/cares/cares/ares_parse_naptr_reply.c +194 -0
- data/third_party/cares/cares/ares_parse_ns_reply.c +183 -0
- data/third_party/cares/cares/ares_parse_ptr_reply.c +221 -0
- data/third_party/cares/cares/ares_parse_soa_reply.c +133 -0
- data/third_party/cares/cares/ares_parse_srv_reply.c +179 -0
- data/third_party/cares/cares/ares_parse_txt_reply.c +220 -0
- data/third_party/cares/cares/ares_platform.c +11042 -0
- data/third_party/cares/cares/ares_platform.h +43 -0
- data/third_party/cares/cares/ares_private.h +382 -0
- data/third_party/cares/cares/ares_process.c +1473 -0
- data/third_party/cares/cares/ares_query.c +186 -0
- data/third_party/cares/cares/ares_rules.h +125 -0
- data/third_party/cares/cares/ares_search.c +323 -0
- data/third_party/cares/cares/ares_send.c +137 -0
- data/third_party/cares/cares/ares_setup.h +217 -0
- data/third_party/cares/cares/ares_strcasecmp.c +66 -0
- data/third_party/cares/cares/ares_strcasecmp.h +30 -0
- data/third_party/cares/cares/ares_strdup.c +49 -0
- data/third_party/cares/cares/ares_strdup.h +24 -0
- data/third_party/cares/cares/ares_strerror.c +56 -0
- data/third_party/cares/cares/ares_strsplit.c +174 -0
- data/third_party/cares/cares/ares_strsplit.h +43 -0
- data/third_party/cares/cares/ares_timeout.c +88 -0
- data/third_party/cares/cares/ares_version.c +11 -0
- data/third_party/cares/cares/ares_version.h +24 -0
- data/third_party/cares/cares/ares_writev.c +79 -0
- data/third_party/cares/cares/bitncmp.c +59 -0
- data/third_party/cares/cares/bitncmp.h +26 -0
- data/third_party/cares/cares/config-win32.h +351 -0
- data/third_party/cares/cares/inet_net_pton.c +450 -0
- data/third_party/cares/cares/inet_ntop.c +207 -0
- data/third_party/cares/cares/setup_once.h +554 -0
- data/third_party/cares/cares/windows_port.c +22 -0
- data/third_party/cares/config_darwin/ares_config.h +428 -0
- data/third_party/cares/config_freebsd/ares_config.h +505 -0
- data/third_party/cares/config_linux/ares_config.h +461 -0
- data/third_party/cares/config_openbsd/ares_config.h +505 -0
- data/third_party/upb/upb/decode.c +609 -0
- data/third_party/upb/upb/decode.h +21 -0
- data/third_party/upb/upb/encode.c +378 -0
- data/third_party/upb/upb/encode.h +21 -0
- data/third_party/upb/upb/generated_util.h +105 -0
- data/third_party/upb/upb/msg.c +111 -0
- data/third_party/upb/upb/msg.h +69 -0
- data/third_party/upb/upb/port.c +26 -0
- data/third_party/upb/upb/port_def.inc +150 -0
- data/third_party/upb/upb/port_undef.inc +21 -0
- data/third_party/upb/upb/table.c +913 -0
- data/third_party/upb/upb/table.int.h +507 -0
- data/third_party/upb/upb/upb.c +261 -0
- data/third_party/upb/upb/upb.h +364 -0
- data/third_party/zlib/adler32.c +186 -0
- data/third_party/zlib/compress.c +86 -0
- data/third_party/zlib/crc32.c +442 -0
- data/third_party/zlib/crc32.h +441 -0
- data/third_party/zlib/deflate.c +2163 -0
- data/third_party/zlib/deflate.h +349 -0
- data/third_party/zlib/gzclose.c +25 -0
- data/third_party/zlib/gzguts.h +218 -0
- data/third_party/zlib/gzlib.c +637 -0
- data/third_party/zlib/gzread.c +654 -0
- data/third_party/zlib/gzwrite.c +665 -0
- data/third_party/zlib/infback.c +640 -0
- data/third_party/zlib/inffast.c +323 -0
- data/third_party/zlib/inffast.h +11 -0
- data/third_party/zlib/inffixed.h +94 -0
- data/third_party/zlib/inflate.c +1561 -0
- data/third_party/zlib/inflate.h +125 -0
- data/third_party/zlib/inftrees.c +304 -0
- data/third_party/zlib/inftrees.h +62 -0
- data/third_party/zlib/trees.c +1203 -0
- data/third_party/zlib/trees.h +128 -0
- data/third_party/zlib/uncompr.c +93 -0
- data/third_party/zlib/zconf.h +534 -0
- data/third_party/zlib/zlib.h +1912 -0
- data/third_party/zlib/zutil.c +325 -0
- data/third_party/zlib/zutil.h +271 -0
- metadata +2029 -0
@@ -0,0 +1,107 @@
|
|
1
|
+
/*
|
2
|
+
*
|
3
|
+
* Copyright 2015 gRPC authors.
|
4
|
+
*
|
5
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
* you may not use this file except in compliance with the License.
|
7
|
+
* You may obtain a copy of the License at
|
8
|
+
*
|
9
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
*
|
11
|
+
* Unless required by applicable law or agreed to in writing, software
|
12
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
* See the License for the specific language governing permissions and
|
15
|
+
* limitations under the License.
|
16
|
+
*
|
17
|
+
*/
|
18
|
+
|
19
|
+
#ifndef GRPC_CORE_EXT_TRANSPORT_CHTTP2_TRANSPORT_HPACK_ENCODER_H
|
20
|
+
#define GRPC_CORE_EXT_TRANSPORT_CHTTP2_TRANSPORT_HPACK_ENCODER_H
|
21
|
+
|
22
|
+
#include <grpc/support/port_platform.h>
|
23
|
+
|
24
|
+
#include <grpc/slice.h>
|
25
|
+
#include <grpc/slice_buffer.h>
|
26
|
+
#include "src/core/ext/transport/chttp2/transport/frame.h"
|
27
|
+
#include "src/core/lib/transport/metadata.h"
|
28
|
+
#include "src/core/lib/transport/metadata_batch.h"
|
29
|
+
#include "src/core/lib/transport/transport.h"
|
30
|
+
|
31
|
+
// This should be <= 8. We use 6 to save space.
|
32
|
+
#define GRPC_CHTTP2_HPACKC_NUM_VALUES_BITS 6
|
33
|
+
#define GRPC_CHTTP2_HPACKC_NUM_VALUES (1 << GRPC_CHTTP2_HPACKC_NUM_VALUES_BITS)
|
34
|
+
/* initial table size, per spec */
|
35
|
+
#define GRPC_CHTTP2_HPACKC_INITIAL_TABLE_SIZE 4096
|
36
|
+
/* maximum table size we'll actually use */
|
37
|
+
#define GRPC_CHTTP2_HPACKC_MAX_TABLE_SIZE (1024 * 1024)
|
38
|
+
|
39
|
+
extern grpc_core::TraceFlag grpc_http_trace;
|
40
|
+
|
41
|
+
struct grpc_chttp2_hpack_compressor {
|
42
|
+
uint32_t max_table_size;
|
43
|
+
uint32_t max_table_elems;
|
44
|
+
uint32_t cap_table_elems;
|
45
|
+
/** maximum number of bytes we'll use for the decode table (to guard against
|
46
|
+
peers ooming us by setting decode table size high) */
|
47
|
+
uint32_t max_usable_size;
|
48
|
+
/* one before the lowest usable table index */
|
49
|
+
uint32_t tail_remote_index;
|
50
|
+
uint32_t table_size;
|
51
|
+
uint32_t table_elems;
|
52
|
+
uint16_t* table_elem_size;
|
53
|
+
/** if non-zero, advertise to the decoder that we'll start using a table
|
54
|
+
of this size */
|
55
|
+
uint8_t advertise_table_size_change;
|
56
|
+
|
57
|
+
/* filter tables for elems: this tables provides an approximate
|
58
|
+
popularity count for particular hashes, and are used to determine whether
|
59
|
+
a new literal should be added to the compression table or not.
|
60
|
+
They track a single integer that counts how often a particular value has
|
61
|
+
been seen. When that count reaches max (255), all values are halved. */
|
62
|
+
uint32_t filter_elems_sum;
|
63
|
+
uint8_t filter_elems[GRPC_CHTTP2_HPACKC_NUM_VALUES];
|
64
|
+
|
65
|
+
/* entry tables for keys & elems: these tables track values that have been
|
66
|
+
seen and *may* be in the decompressor table */
|
67
|
+
struct {
|
68
|
+
struct {
|
69
|
+
grpc_mdelem value;
|
70
|
+
uint32_t index;
|
71
|
+
} entries[GRPC_CHTTP2_HPACKC_NUM_VALUES];
|
72
|
+
} elem_table; /* Metadata table management */
|
73
|
+
struct {
|
74
|
+
struct {
|
75
|
+
/* Only store the slice refcount - we do not need the byte buffer or
|
76
|
+
length of the slice since we only need to store a mapping between the
|
77
|
+
identity of the slice and the corresponding HPACK index. Since the
|
78
|
+
slice *must* be static or interned, the refcount is sufficient to
|
79
|
+
establish identity. */
|
80
|
+
grpc_slice_refcount* value;
|
81
|
+
uint32_t index;
|
82
|
+
} entries[GRPC_CHTTP2_HPACKC_NUM_VALUES];
|
83
|
+
} key_table; /* Key table management */
|
84
|
+
};
|
85
|
+
|
86
|
+
void grpc_chttp2_hpack_compressor_init(grpc_chttp2_hpack_compressor* c);
|
87
|
+
void grpc_chttp2_hpack_compressor_destroy(grpc_chttp2_hpack_compressor* c);
|
88
|
+
void grpc_chttp2_hpack_compressor_set_max_table_size(
|
89
|
+
grpc_chttp2_hpack_compressor* c, uint32_t max_table_size);
|
90
|
+
void grpc_chttp2_hpack_compressor_set_max_usable_size(
|
91
|
+
grpc_chttp2_hpack_compressor* c, uint32_t max_table_size);
|
92
|
+
|
93
|
+
struct grpc_encode_header_options {
|
94
|
+
uint32_t stream_id;
|
95
|
+
bool is_eof;
|
96
|
+
bool use_true_binary_metadata;
|
97
|
+
size_t max_frame_size;
|
98
|
+
grpc_transport_one_way_stats* stats;
|
99
|
+
};
|
100
|
+
void grpc_chttp2_encode_header(grpc_chttp2_hpack_compressor* c,
|
101
|
+
grpc_mdelem** extra_headers,
|
102
|
+
size_t extra_headers_size,
|
103
|
+
grpc_metadata_batch* metadata,
|
104
|
+
const grpc_encode_header_options* options,
|
105
|
+
grpc_slice_buffer* outbuf);
|
106
|
+
|
107
|
+
#endif /* GRPC_CORE_EXT_TRANSPORT_CHTTP2_TRANSPORT_HPACK_ENCODER_H */
|
@@ -0,0 +1,1761 @@
|
|
1
|
+
/*
|
2
|
+
*
|
3
|
+
* Copyright 2015 gRPC authors.
|
4
|
+
*
|
5
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
* you may not use this file except in compliance with the License.
|
7
|
+
* You may obtain a copy of the License at
|
8
|
+
*
|
9
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
*
|
11
|
+
* Unless required by applicable law or agreed to in writing, software
|
12
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
* See the License for the specific language governing permissions and
|
15
|
+
* limitations under the License.
|
16
|
+
*
|
17
|
+
*/
|
18
|
+
|
19
|
+
#include <grpc/support/port_platform.h>
|
20
|
+
|
21
|
+
#include "src/core/ext/transport/chttp2/transport/hpack_parser.h"
|
22
|
+
#include "src/core/ext/transport/chttp2/transport/internal.h"
|
23
|
+
|
24
|
+
#include <assert.h>
|
25
|
+
#include <stddef.h>
|
26
|
+
#include <string.h>
|
27
|
+
|
28
|
+
#include <grpc/support/alloc.h>
|
29
|
+
#include <grpc/support/log.h>
|
30
|
+
#include <grpc/support/string_util.h>
|
31
|
+
|
32
|
+
#include "src/core/ext/transport/chttp2/transport/bin_encoder.h"
|
33
|
+
#include "src/core/lib/debug/stats.h"
|
34
|
+
#include "src/core/lib/gpr/string.h"
|
35
|
+
#include "src/core/lib/profiling/timers.h"
|
36
|
+
#include "src/core/lib/slice/slice_internal.h"
|
37
|
+
#include "src/core/lib/slice/slice_string_helpers.h"
|
38
|
+
#include "src/core/lib/surface/validate_metadata.h"
|
39
|
+
#include "src/core/lib/transport/http2_errors.h"
|
40
|
+
|
41
|
+
grpc_core::DebugOnlyTraceFlag grpc_trace_chttp2_hpack_parser(
|
42
|
+
false, "chttp2_hpack_parser");
|
43
|
+
|
44
|
+
typedef enum {
|
45
|
+
NOT_BINARY,
|
46
|
+
BINARY_BEGIN,
|
47
|
+
B64_BYTE0,
|
48
|
+
B64_BYTE1,
|
49
|
+
B64_BYTE2,
|
50
|
+
B64_BYTE3
|
51
|
+
} binary_state;
|
52
|
+
|
53
|
+
/* How parsing works:
|
54
|
+
|
55
|
+
The parser object keeps track of a function pointer which represents the
|
56
|
+
current parse state.
|
57
|
+
|
58
|
+
Each time new bytes are presented, we call into the current state, which
|
59
|
+
recursively parses until all bytes in the given chunk are exhausted.
|
60
|
+
|
61
|
+
The parse state that terminates then saves its function pointer to be the
|
62
|
+
current state so that it can resume when more bytes are available.
|
63
|
+
|
64
|
+
It's expected that most optimizing compilers will turn this code into
|
65
|
+
a set of indirect jumps, and so not waste stack space. */
|
66
|
+
|
67
|
+
/* forward declarations for parsing states */
|
68
|
+
static grpc_error* parse_begin(grpc_chttp2_hpack_parser* p, const uint8_t* cur,
|
69
|
+
const uint8_t* end);
|
70
|
+
static grpc_error* parse_error(grpc_chttp2_hpack_parser* p, const uint8_t* cur,
|
71
|
+
const uint8_t* end, grpc_error* error);
|
72
|
+
static grpc_error* still_parse_error(grpc_chttp2_hpack_parser* p,
|
73
|
+
const uint8_t* cur, const uint8_t* end);
|
74
|
+
static grpc_error* parse_illegal_op(grpc_chttp2_hpack_parser* p,
|
75
|
+
const uint8_t* cur, const uint8_t* end);
|
76
|
+
|
77
|
+
static grpc_error* parse_string_prefix(grpc_chttp2_hpack_parser* p,
|
78
|
+
const uint8_t* cur, const uint8_t* end);
|
79
|
+
static grpc_error* parse_key_string(grpc_chttp2_hpack_parser* p,
|
80
|
+
const uint8_t* cur, const uint8_t* end);
|
81
|
+
static grpc_error* parse_value_string_with_indexed_key(
|
82
|
+
grpc_chttp2_hpack_parser* p, const uint8_t* cur, const uint8_t* end);
|
83
|
+
static grpc_error* parse_value_string_with_literal_key(
|
84
|
+
grpc_chttp2_hpack_parser* p, const uint8_t* cur, const uint8_t* end);
|
85
|
+
|
86
|
+
static grpc_error* parse_value0(grpc_chttp2_hpack_parser* p, const uint8_t* cur,
|
87
|
+
const uint8_t* end);
|
88
|
+
static grpc_error* parse_value1(grpc_chttp2_hpack_parser* p, const uint8_t* cur,
|
89
|
+
const uint8_t* end);
|
90
|
+
static grpc_error* parse_value2(grpc_chttp2_hpack_parser* p, const uint8_t* cur,
|
91
|
+
const uint8_t* end);
|
92
|
+
static grpc_error* parse_value3(grpc_chttp2_hpack_parser* p, const uint8_t* cur,
|
93
|
+
const uint8_t* end);
|
94
|
+
static grpc_error* parse_value4(grpc_chttp2_hpack_parser* p, const uint8_t* cur,
|
95
|
+
const uint8_t* end);
|
96
|
+
static grpc_error* parse_value5up(grpc_chttp2_hpack_parser* p,
|
97
|
+
const uint8_t* cur, const uint8_t* end);
|
98
|
+
|
99
|
+
static grpc_error* parse_indexed_field(grpc_chttp2_hpack_parser* p,
|
100
|
+
const uint8_t* cur, const uint8_t* end);
|
101
|
+
static grpc_error* parse_indexed_field_x(grpc_chttp2_hpack_parser* p,
|
102
|
+
const uint8_t* cur,
|
103
|
+
const uint8_t* end);
|
104
|
+
static grpc_error* parse_lithdr_incidx(grpc_chttp2_hpack_parser* p,
|
105
|
+
const uint8_t* cur, const uint8_t* end);
|
106
|
+
static grpc_error* parse_lithdr_incidx_x(grpc_chttp2_hpack_parser* p,
|
107
|
+
const uint8_t* cur,
|
108
|
+
const uint8_t* end);
|
109
|
+
static grpc_error* parse_lithdr_incidx_v(grpc_chttp2_hpack_parser* p,
|
110
|
+
const uint8_t* cur,
|
111
|
+
const uint8_t* end);
|
112
|
+
static grpc_error* parse_lithdr_notidx(grpc_chttp2_hpack_parser* p,
|
113
|
+
const uint8_t* cur, const uint8_t* end);
|
114
|
+
static grpc_error* parse_lithdr_notidx_x(grpc_chttp2_hpack_parser* p,
|
115
|
+
const uint8_t* cur,
|
116
|
+
const uint8_t* end);
|
117
|
+
static grpc_error* parse_lithdr_notidx_v(grpc_chttp2_hpack_parser* p,
|
118
|
+
const uint8_t* cur,
|
119
|
+
const uint8_t* end);
|
120
|
+
static grpc_error* parse_lithdr_nvridx(grpc_chttp2_hpack_parser* p,
|
121
|
+
const uint8_t* cur, const uint8_t* end);
|
122
|
+
static grpc_error* parse_lithdr_nvridx_x(grpc_chttp2_hpack_parser* p,
|
123
|
+
const uint8_t* cur,
|
124
|
+
const uint8_t* end);
|
125
|
+
static grpc_error* parse_lithdr_nvridx_v(grpc_chttp2_hpack_parser* p,
|
126
|
+
const uint8_t* cur,
|
127
|
+
const uint8_t* end);
|
128
|
+
static grpc_error* parse_max_tbl_size(grpc_chttp2_hpack_parser* p,
|
129
|
+
const uint8_t* cur, const uint8_t* end);
|
130
|
+
static grpc_error* parse_max_tbl_size_x(grpc_chttp2_hpack_parser* p,
|
131
|
+
const uint8_t* cur, const uint8_t* end);
|
132
|
+
|
133
|
+
/* we translate the first byte of a hpack field into one of these decoding
|
134
|
+
cases, then use a lookup table to jump directly to the appropriate parser.
|
135
|
+
|
136
|
+
_X => the integer index is all ones, meaning we need to do varint decoding
|
137
|
+
_V => the integer index is all zeros, meaning we need to decode an additional
|
138
|
+
string value */
|
139
|
+
typedef enum {
|
140
|
+
INDEXED_FIELD,
|
141
|
+
INDEXED_FIELD_X,
|
142
|
+
LITHDR_INCIDX,
|
143
|
+
LITHDR_INCIDX_X,
|
144
|
+
LITHDR_INCIDX_V,
|
145
|
+
LITHDR_NOTIDX,
|
146
|
+
LITHDR_NOTIDX_X,
|
147
|
+
LITHDR_NOTIDX_V,
|
148
|
+
LITHDR_NVRIDX,
|
149
|
+
LITHDR_NVRIDX_X,
|
150
|
+
LITHDR_NVRIDX_V,
|
151
|
+
MAX_TBL_SIZE,
|
152
|
+
MAX_TBL_SIZE_X,
|
153
|
+
ILLEGAL
|
154
|
+
} first_byte_type;
|
155
|
+
|
156
|
+
/* jump table of parse state functions -- order must match first_byte_type
|
157
|
+
above */
|
158
|
+
static const grpc_chttp2_hpack_parser_state first_byte_action[] = {
|
159
|
+
parse_indexed_field, parse_indexed_field_x, parse_lithdr_incidx,
|
160
|
+
parse_lithdr_incidx_x, parse_lithdr_incidx_v, parse_lithdr_notidx,
|
161
|
+
parse_lithdr_notidx_x, parse_lithdr_notidx_v, parse_lithdr_nvridx,
|
162
|
+
parse_lithdr_nvridx_x, parse_lithdr_nvridx_v, parse_max_tbl_size,
|
163
|
+
parse_max_tbl_size_x, parse_illegal_op};
|
164
|
+
|
165
|
+
/* indexes the first byte to a parse state function - generated by
|
166
|
+
gen_hpack_tables.c */
|
167
|
+
static const uint8_t first_byte_lut[256] = {
|
168
|
+
LITHDR_NOTIDX_V, LITHDR_NOTIDX, LITHDR_NOTIDX, LITHDR_NOTIDX,
|
169
|
+
LITHDR_NOTIDX, LITHDR_NOTIDX, LITHDR_NOTIDX, LITHDR_NOTIDX,
|
170
|
+
LITHDR_NOTIDX, LITHDR_NOTIDX, LITHDR_NOTIDX, LITHDR_NOTIDX,
|
171
|
+
LITHDR_NOTIDX, LITHDR_NOTIDX, LITHDR_NOTIDX, LITHDR_NOTIDX_X,
|
172
|
+
LITHDR_NVRIDX_V, LITHDR_NVRIDX, LITHDR_NVRIDX, LITHDR_NVRIDX,
|
173
|
+
LITHDR_NVRIDX, LITHDR_NVRIDX, LITHDR_NVRIDX, LITHDR_NVRIDX,
|
174
|
+
LITHDR_NVRIDX, LITHDR_NVRIDX, LITHDR_NVRIDX, LITHDR_NVRIDX,
|
175
|
+
LITHDR_NVRIDX, LITHDR_NVRIDX, LITHDR_NVRIDX, LITHDR_NVRIDX_X,
|
176
|
+
MAX_TBL_SIZE, MAX_TBL_SIZE, MAX_TBL_SIZE, MAX_TBL_SIZE,
|
177
|
+
MAX_TBL_SIZE, MAX_TBL_SIZE, MAX_TBL_SIZE, MAX_TBL_SIZE,
|
178
|
+
MAX_TBL_SIZE, MAX_TBL_SIZE, MAX_TBL_SIZE, MAX_TBL_SIZE,
|
179
|
+
MAX_TBL_SIZE, MAX_TBL_SIZE, MAX_TBL_SIZE, MAX_TBL_SIZE,
|
180
|
+
MAX_TBL_SIZE, MAX_TBL_SIZE, MAX_TBL_SIZE, MAX_TBL_SIZE,
|
181
|
+
MAX_TBL_SIZE, MAX_TBL_SIZE, MAX_TBL_SIZE, MAX_TBL_SIZE,
|
182
|
+
MAX_TBL_SIZE, MAX_TBL_SIZE, MAX_TBL_SIZE, MAX_TBL_SIZE,
|
183
|
+
MAX_TBL_SIZE, MAX_TBL_SIZE, MAX_TBL_SIZE, MAX_TBL_SIZE_X,
|
184
|
+
LITHDR_INCIDX_V, LITHDR_INCIDX, LITHDR_INCIDX, LITHDR_INCIDX,
|
185
|
+
LITHDR_INCIDX, LITHDR_INCIDX, LITHDR_INCIDX, LITHDR_INCIDX,
|
186
|
+
LITHDR_INCIDX, LITHDR_INCIDX, LITHDR_INCIDX, LITHDR_INCIDX,
|
187
|
+
LITHDR_INCIDX, LITHDR_INCIDX, LITHDR_INCIDX, LITHDR_INCIDX,
|
188
|
+
LITHDR_INCIDX, LITHDR_INCIDX, LITHDR_INCIDX, LITHDR_INCIDX,
|
189
|
+
LITHDR_INCIDX, LITHDR_INCIDX, LITHDR_INCIDX, LITHDR_INCIDX,
|
190
|
+
LITHDR_INCIDX, LITHDR_INCIDX, LITHDR_INCIDX, LITHDR_INCIDX,
|
191
|
+
LITHDR_INCIDX, LITHDR_INCIDX, LITHDR_INCIDX, LITHDR_INCIDX,
|
192
|
+
LITHDR_INCIDX, LITHDR_INCIDX, LITHDR_INCIDX, LITHDR_INCIDX,
|
193
|
+
LITHDR_INCIDX, LITHDR_INCIDX, LITHDR_INCIDX, LITHDR_INCIDX,
|
194
|
+
LITHDR_INCIDX, LITHDR_INCIDX, LITHDR_INCIDX, LITHDR_INCIDX,
|
195
|
+
LITHDR_INCIDX, LITHDR_INCIDX, LITHDR_INCIDX, LITHDR_INCIDX,
|
196
|
+
LITHDR_INCIDX, LITHDR_INCIDX, LITHDR_INCIDX, LITHDR_INCIDX,
|
197
|
+
LITHDR_INCIDX, LITHDR_INCIDX, LITHDR_INCIDX, LITHDR_INCIDX,
|
198
|
+
LITHDR_INCIDX, LITHDR_INCIDX, LITHDR_INCIDX, LITHDR_INCIDX,
|
199
|
+
LITHDR_INCIDX, LITHDR_INCIDX, LITHDR_INCIDX, LITHDR_INCIDX_X,
|
200
|
+
ILLEGAL, INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD,
|
201
|
+
INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD,
|
202
|
+
INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD,
|
203
|
+
INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD,
|
204
|
+
INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD,
|
205
|
+
INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD,
|
206
|
+
INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD,
|
207
|
+
INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD,
|
208
|
+
INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD,
|
209
|
+
INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD,
|
210
|
+
INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD,
|
211
|
+
INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD,
|
212
|
+
INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD,
|
213
|
+
INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD,
|
214
|
+
INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD,
|
215
|
+
INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD,
|
216
|
+
INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD,
|
217
|
+
INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD,
|
218
|
+
INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD,
|
219
|
+
INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD,
|
220
|
+
INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD,
|
221
|
+
INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD,
|
222
|
+
INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD,
|
223
|
+
INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD,
|
224
|
+
INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD,
|
225
|
+
INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD,
|
226
|
+
INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD,
|
227
|
+
INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD,
|
228
|
+
INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD,
|
229
|
+
INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD,
|
230
|
+
INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD,
|
231
|
+
INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD, INDEXED_FIELD_X,
|
232
|
+
};
|
233
|
+
|
234
|
+
/* state table for huffman decoding: given a state, gives an index/16 into
|
235
|
+
next_sub_tbl. Taking that index and adding the value of the nibble being
|
236
|
+
considered returns the next state.
|
237
|
+
|
238
|
+
generated by gen_hpack_tables.c */
|
239
|
+
static const uint8_t next_tbl[256] = {
|
240
|
+
0, 1, 2, 3, 4, 1, 2, 5, 6, 1, 7, 8, 1, 3, 3, 9, 10, 11, 1, 1,
|
241
|
+
1, 12, 1, 2, 13, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2,
|
242
|
+
14, 1, 15, 16, 1, 17, 1, 15, 2, 7, 3, 18, 19, 1, 1, 1, 1, 20, 1, 1,
|
243
|
+
1, 1, 1, 1, 1, 1, 1, 1, 15, 2, 2, 7, 21, 1, 22, 1, 1, 1, 1, 1,
|
244
|
+
1, 1, 1, 15, 2, 2, 2, 2, 2, 2, 23, 24, 25, 1, 1, 1, 1, 2, 2, 2,
|
245
|
+
26, 3, 3, 27, 10, 28, 1, 1, 1, 1, 1, 1, 2, 3, 29, 10, 30, 1, 1, 1,
|
246
|
+
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 31, 1, 1, 1, 1, 1, 1, 1, 2,
|
247
|
+
2, 2, 2, 2, 2, 2, 2, 32, 1, 1, 15, 33, 1, 34, 35, 9, 36, 1, 1, 1,
|
248
|
+
1, 1, 1, 1, 37, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 26, 9,
|
249
|
+
38, 1, 1, 1, 1, 1, 1, 1, 15, 2, 2, 2, 2, 26, 3, 3, 39, 1, 1, 1,
|
250
|
+
1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 7, 3, 3, 3, 40, 2,
|
251
|
+
41, 1, 1, 1, 42, 43, 1, 1, 44, 1, 1, 1, 1, 15, 2, 2, 2, 2, 2, 2,
|
252
|
+
3, 3, 3, 45, 46, 1, 1, 2, 2, 2, 35, 3, 3, 18, 47, 2,
|
253
|
+
};
|
254
|
+
|
255
|
+
/* next state, based upon current state and the current nibble: see above.
|
256
|
+
generated by gen_hpack_tables.c */
|
257
|
+
static const int16_t next_sub_tbl[48 * 16] = {
|
258
|
+
1, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217,
|
259
|
+
218, 2, 6, 10, 13, 14, 15, 16, 17, 2, 6, 10, 13, 14, 15,
|
260
|
+
16, 17, 3, 7, 11, 24, 3, 7, 11, 24, 3, 7, 11, 24, 3,
|
261
|
+
7, 11, 24, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8,
|
262
|
+
4, 8, 4, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5,
|
263
|
+
199, 200, 201, 202, 203, 4, 8, 4, 8, 0, 0, 0, 0, 0, 0,
|
264
|
+
0, 0, 0, 0, 0, 0, 9, 133, 134, 135, 136, 137, 138, 139, 140,
|
265
|
+
141, 142, 143, 144, 145, 146, 147, 3, 7, 11, 24, 3, 7, 11, 24,
|
266
|
+
4, 8, 4, 8, 4, 8, 4, 8, 0, 0, 0, 0, 0, 0, 0,
|
267
|
+
0, 0, 0, 0, 0, 0, 0, 12, 132, 4, 8, 4, 8, 4, 8,
|
268
|
+
4, 8, 4, 8, 4, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
269
|
+
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
270
|
+
0, 0, 0, 0, 0, 0, 0, 0, 18, 19, 20, 21, 4, 8, 4,
|
271
|
+
8, 4, 8, 4, 8, 4, 8, 0, 0, 0, 22, 23, 91, 25, 26,
|
272
|
+
27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 3,
|
273
|
+
7, 11, 24, 3, 7, 11, 24, 0, 0, 0, 0, 0, 41, 42, 43,
|
274
|
+
2, 6, 10, 13, 14, 15, 16, 17, 3, 7, 11, 24, 3, 7, 11,
|
275
|
+
24, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 0, 0,
|
276
|
+
44, 45, 2, 6, 10, 13, 14, 15, 16, 17, 46, 47, 48, 49, 50,
|
277
|
+
51, 52, 57, 4, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
278
|
+
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
279
|
+
0, 53, 54, 55, 56, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67,
|
280
|
+
68, 69, 70, 71, 72, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
281
|
+
0, 0, 0, 0, 0, 0, 73, 75, 76, 77, 78, 79, 80, 81, 82,
|
282
|
+
83, 84, 85, 86, 87, 88, 89, 90, 3, 7, 11, 24, 3, 7, 11,
|
283
|
+
24, 3, 7, 11, 24, 0, 0, 0, 0, 3, 7, 11, 24, 3, 7,
|
284
|
+
11, 24, 4, 8, 4, 8, 0, 0, 0, 92, 0, 0, 0, 93, 94,
|
285
|
+
95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 3, 7, 11, 24,
|
286
|
+
4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 4,
|
287
|
+
8, 4, 8, 4, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
288
|
+
0, 0, 0, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 4,
|
289
|
+
8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 0, 0,
|
290
|
+
0, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130,
|
291
|
+
131, 2, 6, 10, 13, 14, 15, 16, 17, 4, 8, 4, 8, 4, 8,
|
292
|
+
4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 148,
|
293
|
+
149, 150, 151, 3, 7, 11, 24, 4, 8, 4, 8, 0, 0, 0, 0,
|
294
|
+
0, 0, 152, 153, 3, 7, 11, 24, 3, 7, 11, 24, 3, 7, 11,
|
295
|
+
24, 154, 155, 156, 164, 3, 7, 11, 24, 3, 7, 11, 24, 3, 7,
|
296
|
+
11, 24, 4, 8, 4, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
297
|
+
157, 158, 159, 160, 161, 162, 163, 165, 166, 167, 168, 169, 170, 171, 172,
|
298
|
+
173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187,
|
299
|
+
188, 189, 190, 191, 192, 193, 194, 195, 196, 4, 8, 4, 8, 4, 8,
|
300
|
+
4, 8, 4, 8, 4, 8, 4, 8, 197, 198, 4, 8, 4, 8, 4,
|
301
|
+
8, 4, 8, 0, 0, 0, 0, 0, 0, 219, 220, 3, 7, 11, 24,
|
302
|
+
4, 8, 4, 8, 4, 8, 0, 0, 221, 222, 223, 224, 3, 7, 11,
|
303
|
+
24, 3, 7, 11, 24, 4, 8, 4, 8, 4, 8, 225, 228, 4, 8,
|
304
|
+
4, 8, 4, 8, 0, 0, 0, 0, 0, 0, 0, 0, 226, 227, 229,
|
305
|
+
230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244,
|
306
|
+
4, 8, 4, 8, 4, 8, 4, 8, 4, 8, 0, 0, 0, 0, 0,
|
307
|
+
0, 0, 0, 0, 0, 0, 0, 245, 246, 247, 248, 249, 250, 251, 252,
|
308
|
+
253, 254, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
309
|
+
0, 0, 255,
|
310
|
+
};
|
311
|
+
|
312
|
+
/* emission table: indexed like next_tbl, ultimately gives the byte to be
|
313
|
+
emitted, or -1 for no byte, or 256 for end of stream
|
314
|
+
|
315
|
+
generated by gen_hpack_tables.c */
|
316
|
+
static const uint16_t emit_tbl[256] = {
|
317
|
+
0, 1, 2, 3, 4, 5, 6, 7, 0, 8, 9, 10, 11, 12, 13,
|
318
|
+
14, 15, 16, 17, 18, 19, 20, 21, 22, 0, 23, 24, 25, 26, 27,
|
319
|
+
28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42,
|
320
|
+
43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 0, 55, 56,
|
321
|
+
57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 0,
|
322
|
+
71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85,
|
323
|
+
86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100,
|
324
|
+
101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115,
|
325
|
+
116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130,
|
326
|
+
131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145,
|
327
|
+
146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 0,
|
328
|
+
160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174,
|
329
|
+
0, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188,
|
330
|
+
189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203,
|
331
|
+
204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218,
|
332
|
+
219, 220, 221, 0, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232,
|
333
|
+
233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247,
|
334
|
+
248,
|
335
|
+
};
|
336
|
+
|
337
|
+
/* generated by gen_hpack_tables.c */
|
338
|
+
static const int16_t emit_sub_tbl[249 * 16] = {
|
339
|
+
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
340
|
+
-1, 48, 48, 48, 48, 48, 48, 48, 48, 49, 49, 49, 49, 49, 49,
|
341
|
+
49, 49, 48, 48, 48, 48, 49, 49, 49, 49, 50, 50, 50, 50, 97,
|
342
|
+
97, 97, 97, 48, 48, 49, 49, 50, 50, 97, 97, 99, 99, 101, 101,
|
343
|
+
105, 105, 111, 111, 48, 49, 50, 97, 99, 101, 105, 111, 115, 116, -1,
|
344
|
+
-1, -1, -1, -1, -1, 32, 32, 32, 32, 32, 32, 32, 32, 37, 37,
|
345
|
+
37, 37, 37, 37, 37, 37, 99, 99, 99, 99, 101, 101, 101, 101, 105,
|
346
|
+
105, 105, 105, 111, 111, 111, 111, 115, 115, 116, 116, 32, 37, 45, 46,
|
347
|
+
47, 51, 52, 53, 54, 55, 56, 57, 61, 61, 61, 61, 61, 61, 61,
|
348
|
+
61, 65, 65, 65, 65, 65, 65, 65, 65, 115, 115, 115, 115, 116, 116,
|
349
|
+
116, 116, 32, 32, 37, 37, 45, 45, 46, 46, 61, 65, 95, 98, 100,
|
350
|
+
102, 103, 104, 108, 109, 110, 112, 114, 117, -1, -1, 58, 58, 58, 58,
|
351
|
+
58, 58, 58, 58, 66, 66, 66, 66, 66, 66, 66, 66, 47, 47, 51,
|
352
|
+
51, 52, 52, 53, 53, 54, 54, 55, 55, 56, 56, 57, 57, 61, 61,
|
353
|
+
65, 65, 95, 95, 98, 98, 100, 100, 102, 102, 103, 103, 104, 104, 108,
|
354
|
+
108, 109, 109, 110, 110, 112, 112, 114, 114, 117, 117, 58, 66, 67, 68,
|
355
|
+
69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83,
|
356
|
+
84, 85, 86, 87, 89, 106, 107, 113, 118, 119, 120, 121, 122, -1, -1,
|
357
|
+
-1, -1, 38, 38, 38, 38, 38, 38, 38, 38, 42, 42, 42, 42, 42,
|
358
|
+
42, 42, 42, 44, 44, 44, 44, 44, 44, 44, 44, 59, 59, 59, 59,
|
359
|
+
59, 59, 59, 59, 88, 88, 88, 88, 88, 88, 88, 88, 90, 90, 90,
|
360
|
+
90, 90, 90, 90, 90, 33, 33, 34, 34, 40, 40, 41, 41, 63, 63,
|
361
|
+
39, 43, 124, -1, -1, -1, 35, 35, 35, 35, 35, 35, 35, 35, 62,
|
362
|
+
62, 62, 62, 62, 62, 62, 62, 0, 0, 0, 0, 36, 36, 36, 36,
|
363
|
+
64, 64, 64, 64, 91, 91, 91, 91, 69, 69, 69, 69, 69, 69, 69,
|
364
|
+
69, 70, 70, 70, 70, 70, 70, 70, 70, 71, 71, 71, 71, 71, 71,
|
365
|
+
71, 71, 72, 72, 72, 72, 72, 72, 72, 72, 73, 73, 73, 73, 73,
|
366
|
+
73, 73, 73, 74, 74, 74, 74, 74, 74, 74, 74, 75, 75, 75, 75,
|
367
|
+
75, 75, 75, 75, 76, 76, 76, 76, 76, 76, 76, 76, 77, 77, 77,
|
368
|
+
77, 77, 77, 77, 77, 78, 78, 78, 78, 78, 78, 78, 78, 79, 79,
|
369
|
+
79, 79, 79, 79, 79, 79, 80, 80, 80, 80, 80, 80, 80, 80, 81,
|
370
|
+
81, 81, 81, 81, 81, 81, 81, 82, 82, 82, 82, 82, 82, 82, 82,
|
371
|
+
83, 83, 83, 83, 83, 83, 83, 83, 84, 84, 84, 84, 84, 84, 84,
|
372
|
+
84, 85, 85, 85, 85, 85, 85, 85, 85, 86, 86, 86, 86, 86, 86,
|
373
|
+
86, 86, 87, 87, 87, 87, 87, 87, 87, 87, 89, 89, 89, 89, 89,
|
374
|
+
89, 89, 89, 106, 106, 106, 106, 106, 106, 106, 106, 107, 107, 107, 107,
|
375
|
+
107, 107, 107, 107, 113, 113, 113, 113, 113, 113, 113, 113, 118, 118, 118,
|
376
|
+
118, 118, 118, 118, 118, 119, 119, 119, 119, 119, 119, 119, 119, 120, 120,
|
377
|
+
120, 120, 120, 120, 120, 120, 121, 121, 121, 121, 121, 121, 121, 121, 122,
|
378
|
+
122, 122, 122, 122, 122, 122, 122, 38, 38, 38, 38, 42, 42, 42, 42,
|
379
|
+
44, 44, 44, 44, 59, 59, 59, 59, 88, 88, 88, 88, 90, 90, 90,
|
380
|
+
90, 33, 34, 40, 41, 63, -1, -1, -1, 39, 39, 39, 39, 39, 39,
|
381
|
+
39, 39, 43, 43, 43, 43, 43, 43, 43, 43, 124, 124, 124, 124, 124,
|
382
|
+
124, 124, 124, 35, 35, 35, 35, 62, 62, 62, 62, 0, 0, 36, 36,
|
383
|
+
64, 64, 91, 91, 93, 93, 126, 126, 94, 125, -1, -1, 60, 60, 60,
|
384
|
+
60, 60, 60, 60, 60, 96, 96, 96, 96, 96, 96, 96, 96, 123, 123,
|
385
|
+
123, 123, 123, 123, 123, 123, -1, -1, -1, -1, -1, -1, -1, -1, 92,
|
386
|
+
92, 92, 92, 92, 92, 92, 92, 195, 195, 195, 195, 195, 195, 195, 195,
|
387
|
+
208, 208, 208, 208, 208, 208, 208, 208, 128, 128, 128, 128, 130, 130, 130,
|
388
|
+
130, 131, 131, 131, 131, 162, 162, 162, 162, 184, 184, 184, 184, 194, 194,
|
389
|
+
194, 194, 224, 224, 224, 224, 226, 226, 226, 226, 153, 153, 161, 161, 167,
|
390
|
+
167, 172, 172, 176, 176, 177, 177, 179, 179, 209, 209, 216, 216, 217, 217,
|
391
|
+
227, 227, 229, 229, 230, 230, 129, 132, 133, 134, 136, 146, 154, 156, 160,
|
392
|
+
163, 164, 169, 170, 173, 178, 181, 185, 186, 187, 189, 190, 196, 198, 228,
|
393
|
+
232, 233, -1, -1, -1, -1, 1, 1, 1, 1, 1, 1, 1, 1, 135,
|
394
|
+
135, 135, 135, 135, 135, 135, 135, 137, 137, 137, 137, 137, 137, 137, 137,
|
395
|
+
138, 138, 138, 138, 138, 138, 138, 138, 139, 139, 139, 139, 139, 139, 139,
|
396
|
+
139, 140, 140, 140, 140, 140, 140, 140, 140, 141, 141, 141, 141, 141, 141,
|
397
|
+
141, 141, 143, 143, 143, 143, 143, 143, 143, 143, 147, 147, 147, 147, 147,
|
398
|
+
147, 147, 147, 149, 149, 149, 149, 149, 149, 149, 149, 150, 150, 150, 150,
|
399
|
+
150, 150, 150, 150, 151, 151, 151, 151, 151, 151, 151, 151, 152, 152, 152,
|
400
|
+
152, 152, 152, 152, 152, 155, 155, 155, 155, 155, 155, 155, 155, 157, 157,
|
401
|
+
157, 157, 157, 157, 157, 157, 158, 158, 158, 158, 158, 158, 158, 158, 165,
|
402
|
+
165, 165, 165, 165, 165, 165, 165, 166, 166, 166, 166, 166, 166, 166, 166,
|
403
|
+
168, 168, 168, 168, 168, 168, 168, 168, 174, 174, 174, 174, 174, 174, 174,
|
404
|
+
174, 175, 175, 175, 175, 175, 175, 175, 175, 180, 180, 180, 180, 180, 180,
|
405
|
+
180, 180, 182, 182, 182, 182, 182, 182, 182, 182, 183, 183, 183, 183, 183,
|
406
|
+
183, 183, 183, 188, 188, 188, 188, 188, 188, 188, 188, 191, 191, 191, 191,
|
407
|
+
191, 191, 191, 191, 197, 197, 197, 197, 197, 197, 197, 197, 231, 231, 231,
|
408
|
+
231, 231, 231, 231, 231, 239, 239, 239, 239, 239, 239, 239, 239, 9, 9,
|
409
|
+
9, 9, 142, 142, 142, 142, 144, 144, 144, 144, 145, 145, 145, 145, 148,
|
410
|
+
148, 148, 148, 159, 159, 159, 159, 171, 171, 171, 171, 206, 206, 206, 206,
|
411
|
+
215, 215, 215, 215, 225, 225, 225, 225, 236, 236, 236, 236, 237, 237, 237,
|
412
|
+
237, 199, 199, 207, 207, 234, 234, 235, 235, 192, 193, 200, 201, 202, 205,
|
413
|
+
210, 213, 218, 219, 238, 240, 242, 243, 255, -1, 203, 203, 203, 203, 203,
|
414
|
+
203, 203, 203, 204, 204, 204, 204, 204, 204, 204, 204, 211, 211, 211, 211,
|
415
|
+
211, 211, 211, 211, 212, 212, 212, 212, 212, 212, 212, 212, 214, 214, 214,
|
416
|
+
214, 214, 214, 214, 214, 221, 221, 221, 221, 221, 221, 221, 221, 222, 222,
|
417
|
+
222, 222, 222, 222, 222, 222, 223, 223, 223, 223, 223, 223, 223, 223, 241,
|
418
|
+
241, 241, 241, 241, 241, 241, 241, 244, 244, 244, 244, 244, 244, 244, 244,
|
419
|
+
245, 245, 245, 245, 245, 245, 245, 245, 246, 246, 246, 246, 246, 246, 246,
|
420
|
+
246, 247, 247, 247, 247, 247, 247, 247, 247, 248, 248, 248, 248, 248, 248,
|
421
|
+
248, 248, 250, 250, 250, 250, 250, 250, 250, 250, 251, 251, 251, 251, 251,
|
422
|
+
251, 251, 251, 252, 252, 252, 252, 252, 252, 252, 252, 253, 253, 253, 253,
|
423
|
+
253, 253, 253, 253, 254, 254, 254, 254, 254, 254, 254, 254, 2, 2, 2,
|
424
|
+
2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 6, 6,
|
425
|
+
6, 6, 7, 7, 7, 7, 8, 8, 8, 8, 11, 11, 11, 11, 12,
|
426
|
+
12, 12, 12, 14, 14, 14, 14, 15, 15, 15, 15, 16, 16, 16, 16,
|
427
|
+
17, 17, 17, 17, 18, 18, 18, 18, 19, 19, 19, 19, 20, 20, 20,
|
428
|
+
20, 21, 21, 21, 21, 23, 23, 23, 23, 24, 24, 24, 24, 25, 25,
|
429
|
+
25, 25, 26, 26, 26, 26, 27, 27, 27, 27, 28, 28, 28, 28, 29,
|
430
|
+
29, 29, 29, 30, 30, 30, 30, 31, 31, 31, 31, 127, 127, 127, 127,
|
431
|
+
220, 220, 220, 220, 249, 249, 249, 249, 10, 13, 22, 256, 93, 93, 93,
|
432
|
+
93, 126, 126, 126, 126, 94, 94, 125, 125, 60, 96, 123, -1, 92, 195,
|
433
|
+
208, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 128,
|
434
|
+
128, 128, 128, 128, 128, 128, 128, 130, 130, 130, 130, 130, 130, 130, 130,
|
435
|
+
131, 131, 131, 131, 131, 131, 131, 131, 162, 162, 162, 162, 162, 162, 162,
|
436
|
+
162, 184, 184, 184, 184, 184, 184, 184, 184, 194, 194, 194, 194, 194, 194,
|
437
|
+
194, 194, 224, 224, 224, 224, 224, 224, 224, 224, 226, 226, 226, 226, 226,
|
438
|
+
226, 226, 226, 153, 153, 153, 153, 161, 161, 161, 161, 167, 167, 167, 167,
|
439
|
+
172, 172, 172, 172, 176, 176, 176, 176, 177, 177, 177, 177, 179, 179, 179,
|
440
|
+
179, 209, 209, 209, 209, 216, 216, 216, 216, 217, 217, 217, 217, 227, 227,
|
441
|
+
227, 227, 229, 229, 229, 229, 230, 230, 230, 230, 129, 129, 132, 132, 133,
|
442
|
+
133, 134, 134, 136, 136, 146, 146, 154, 154, 156, 156, 160, 160, 163, 163,
|
443
|
+
164, 164, 169, 169, 170, 170, 173, 173, 178, 178, 181, 181, 185, 185, 186,
|
444
|
+
186, 187, 187, 189, 189, 190, 190, 196, 196, 198, 198, 228, 228, 232, 232,
|
445
|
+
233, 233, 1, 135, 137, 138, 139, 140, 141, 143, 147, 149, 150, 151, 152,
|
446
|
+
155, 157, 158, 165, 166, 168, 174, 175, 180, 182, 183, 188, 191, 197, 231,
|
447
|
+
239, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 9, 9, 9,
|
448
|
+
9, 9, 9, 9, 9, 142, 142, 142, 142, 142, 142, 142, 142, 144, 144,
|
449
|
+
144, 144, 144, 144, 144, 144, 145, 145, 145, 145, 145, 145, 145, 145, 148,
|
450
|
+
148, 148, 148, 148, 148, 148, 148, 159, 159, 159, 159, 159, 159, 159, 159,
|
451
|
+
171, 171, 171, 171, 171, 171, 171, 171, 206, 206, 206, 206, 206, 206, 206,
|
452
|
+
206, 215, 215, 215, 215, 215, 215, 215, 215, 225, 225, 225, 225, 225, 225,
|
453
|
+
225, 225, 236, 236, 236, 236, 236, 236, 236, 236, 237, 237, 237, 237, 237,
|
454
|
+
237, 237, 237, 199, 199, 199, 199, 207, 207, 207, 207, 234, 234, 234, 234,
|
455
|
+
235, 235, 235, 235, 192, 192, 193, 193, 200, 200, 201, 201, 202, 202, 205,
|
456
|
+
205, 210, 210, 213, 213, 218, 218, 219, 219, 238, 238, 240, 240, 242, 242,
|
457
|
+
243, 243, 255, 255, 203, 204, 211, 212, 214, 221, 222, 223, 241, 244, 245,
|
458
|
+
246, 247, 248, 250, 251, 252, 253, 254, -1, -1, -1, -1, -1, -1, -1,
|
459
|
+
-1, -1, -1, -1, -1, -1, -1, -1, 2, 2, 2, 2, 2, 2, 2,
|
460
|
+
2, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4,
|
461
|
+
4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6,
|
462
|
+
6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8,
|
463
|
+
8, 8, 8, 8, 11, 11, 11, 11, 11, 11, 11, 11, 12, 12, 12,
|
464
|
+
12, 12, 12, 12, 12, 14, 14, 14, 14, 14, 14, 14, 14, 15, 15,
|
465
|
+
15, 15, 15, 15, 15, 15, 16, 16, 16, 16, 16, 16, 16, 16, 17,
|
466
|
+
17, 17, 17, 17, 17, 17, 17, 18, 18, 18, 18, 18, 18, 18, 18,
|
467
|
+
19, 19, 19, 19, 19, 19, 19, 19, 20, 20, 20, 20, 20, 20, 20,
|
468
|
+
20, 21, 21, 21, 21, 21, 21, 21, 21, 23, 23, 23, 23, 23, 23,
|
469
|
+
23, 23, 24, 24, 24, 24, 24, 24, 24, 24, 25, 25, 25, 25, 25,
|
470
|
+
25, 25, 25, 26, 26, 26, 26, 26, 26, 26, 26, 27, 27, 27, 27,
|
471
|
+
27, 27, 27, 27, 28, 28, 28, 28, 28, 28, 28, 28, 29, 29, 29,
|
472
|
+
29, 29, 29, 29, 29, 30, 30, 30, 30, 30, 30, 30, 30, 31, 31,
|
473
|
+
31, 31, 31, 31, 31, 31, 127, 127, 127, 127, 127, 127, 127, 127, 220,
|
474
|
+
220, 220, 220, 220, 220, 220, 220, 249, 249, 249, 249, 249, 249, 249, 249,
|
475
|
+
10, 10, 13, 13, 22, 22, 256, 256, 67, 67, 67, 67, 67, 67, 67,
|
476
|
+
67, 68, 68, 68, 68, 68, 68, 68, 68, 95, 95, 95, 95, 95, 95,
|
477
|
+
95, 95, 98, 98, 98, 98, 98, 98, 98, 98, 100, 100, 100, 100, 100,
|
478
|
+
100, 100, 100, 102, 102, 102, 102, 102, 102, 102, 102, 103, 103, 103, 103,
|
479
|
+
103, 103, 103, 103, 104, 104, 104, 104, 104, 104, 104, 104, 108, 108, 108,
|
480
|
+
108, 108, 108, 108, 108, 109, 109, 109, 109, 109, 109, 109, 109, 110, 110,
|
481
|
+
110, 110, 110, 110, 110, 110, 112, 112, 112, 112, 112, 112, 112, 112, 114,
|
482
|
+
114, 114, 114, 114, 114, 114, 114, 117, 117, 117, 117, 117, 117, 117, 117,
|
483
|
+
58, 58, 58, 58, 66, 66, 66, 66, 67, 67, 67, 67, 68, 68, 68,
|
484
|
+
68, 69, 69, 69, 69, 70, 70, 70, 70, 71, 71, 71, 71, 72, 72,
|
485
|
+
72, 72, 73, 73, 73, 73, 74, 74, 74, 74, 75, 75, 75, 75, 76,
|
486
|
+
76, 76, 76, 77, 77, 77, 77, 78, 78, 78, 78, 79, 79, 79, 79,
|
487
|
+
80, 80, 80, 80, 81, 81, 81, 81, 82, 82, 82, 82, 83, 83, 83,
|
488
|
+
83, 84, 84, 84, 84, 85, 85, 85, 85, 86, 86, 86, 86, 87, 87,
|
489
|
+
87, 87, 89, 89, 89, 89, 106, 106, 106, 106, 107, 107, 107, 107, 113,
|
490
|
+
113, 113, 113, 118, 118, 118, 118, 119, 119, 119, 119, 120, 120, 120, 120,
|
491
|
+
121, 121, 121, 121, 122, 122, 122, 122, 38, 38, 42, 42, 44, 44, 59,
|
492
|
+
59, 88, 88, 90, 90, -1, -1, -1, -1, 33, 33, 33, 33, 33, 33,
|
493
|
+
33, 33, 34, 34, 34, 34, 34, 34, 34, 34, 40, 40, 40, 40, 40,
|
494
|
+
40, 40, 40, 41, 41, 41, 41, 41, 41, 41, 41, 63, 63, 63, 63,
|
495
|
+
63, 63, 63, 63, 39, 39, 39, 39, 43, 43, 43, 43, 124, 124, 124,
|
496
|
+
124, 35, 35, 62, 62, 0, 36, 64, 91, 93, 126, -1, -1, 94, 94,
|
497
|
+
94, 94, 94, 94, 94, 94, 125, 125, 125, 125, 125, 125, 125, 125, 60,
|
498
|
+
60, 60, 60, 96, 96, 96, 96, 123, 123, 123, 123, -1, -1, -1, -1,
|
499
|
+
92, 92, 92, 92, 195, 195, 195, 195, 208, 208, 208, 208, 128, 128, 130,
|
500
|
+
130, 131, 131, 162, 162, 184, 184, 194, 194, 224, 224, 226, 226, 153, 161,
|
501
|
+
167, 172, 176, 177, 179, 209, 216, 217, 227, 229, 230, -1, -1, -1, -1,
|
502
|
+
-1, -1, -1, 129, 129, 129, 129, 129, 129, 129, 129, 132, 132, 132, 132,
|
503
|
+
132, 132, 132, 132, 133, 133, 133, 133, 133, 133, 133, 133, 134, 134, 134,
|
504
|
+
134, 134, 134, 134, 134, 136, 136, 136, 136, 136, 136, 136, 136, 146, 146,
|
505
|
+
146, 146, 146, 146, 146, 146, 154, 154, 154, 154, 154, 154, 154, 154, 156,
|
506
|
+
156, 156, 156, 156, 156, 156, 156, 160, 160, 160, 160, 160, 160, 160, 160,
|
507
|
+
163, 163, 163, 163, 163, 163, 163, 163, 164, 164, 164, 164, 164, 164, 164,
|
508
|
+
164, 169, 169, 169, 169, 169, 169, 169, 169, 170, 170, 170, 170, 170, 170,
|
509
|
+
170, 170, 173, 173, 173, 173, 173, 173, 173, 173, 178, 178, 178, 178, 178,
|
510
|
+
178, 178, 178, 181, 181, 181, 181, 181, 181, 181, 181, 185, 185, 185, 185,
|
511
|
+
185, 185, 185, 185, 186, 186, 186, 186, 186, 186, 186, 186, 187, 187, 187,
|
512
|
+
187, 187, 187, 187, 187, 189, 189, 189, 189, 189, 189, 189, 189, 190, 190,
|
513
|
+
190, 190, 190, 190, 190, 190, 196, 196, 196, 196, 196, 196, 196, 196, 198,
|
514
|
+
198, 198, 198, 198, 198, 198, 198, 228, 228, 228, 228, 228, 228, 228, 228,
|
515
|
+
232, 232, 232, 232, 232, 232, 232, 232, 233, 233, 233, 233, 233, 233, 233,
|
516
|
+
233, 1, 1, 1, 1, 135, 135, 135, 135, 137, 137, 137, 137, 138, 138,
|
517
|
+
138, 138, 139, 139, 139, 139, 140, 140, 140, 140, 141, 141, 141, 141, 143,
|
518
|
+
143, 143, 143, 147, 147, 147, 147, 149, 149, 149, 149, 150, 150, 150, 150,
|
519
|
+
151, 151, 151, 151, 152, 152, 152, 152, 155, 155, 155, 155, 157, 157, 157,
|
520
|
+
157, 158, 158, 158, 158, 165, 165, 165, 165, 166, 166, 166, 166, 168, 168,
|
521
|
+
168, 168, 174, 174, 174, 174, 175, 175, 175, 175, 180, 180, 180, 180, 182,
|
522
|
+
182, 182, 182, 183, 183, 183, 183, 188, 188, 188, 188, 191, 191, 191, 191,
|
523
|
+
197, 197, 197, 197, 231, 231, 231, 231, 239, 239, 239, 239, 9, 9, 142,
|
524
|
+
142, 144, 144, 145, 145, 148, 148, 159, 159, 171, 171, 206, 206, 215, 215,
|
525
|
+
225, 225, 236, 236, 237, 237, 199, 207, 234, 235, 192, 192, 192, 192, 192,
|
526
|
+
192, 192, 192, 193, 193, 193, 193, 193, 193, 193, 193, 200, 200, 200, 200,
|
527
|
+
200, 200, 200, 200, 201, 201, 201, 201, 201, 201, 201, 201, 202, 202, 202,
|
528
|
+
202, 202, 202, 202, 202, 205, 205, 205, 205, 205, 205, 205, 205, 210, 210,
|
529
|
+
210, 210, 210, 210, 210, 210, 213, 213, 213, 213, 213, 213, 213, 213, 218,
|
530
|
+
218, 218, 218, 218, 218, 218, 218, 219, 219, 219, 219, 219, 219, 219, 219,
|
531
|
+
238, 238, 238, 238, 238, 238, 238, 238, 240, 240, 240, 240, 240, 240, 240,
|
532
|
+
240, 242, 242, 242, 242, 242, 242, 242, 242, 243, 243, 243, 243, 243, 243,
|
533
|
+
243, 243, 255, 255, 255, 255, 255, 255, 255, 255, 203, 203, 203, 203, 204,
|
534
|
+
204, 204, 204, 211, 211, 211, 211, 212, 212, 212, 212, 214, 214, 214, 214,
|
535
|
+
221, 221, 221, 221, 222, 222, 222, 222, 223, 223, 223, 223, 241, 241, 241,
|
536
|
+
241, 244, 244, 244, 244, 245, 245, 245, 245, 246, 246, 246, 246, 247, 247,
|
537
|
+
247, 247, 248, 248, 248, 248, 250, 250, 250, 250, 251, 251, 251, 251, 252,
|
538
|
+
252, 252, 252, 253, 253, 253, 253, 254, 254, 254, 254, 2, 2, 3, 3,
|
539
|
+
4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 11, 11, 12, 12, 14,
|
540
|
+
14, 15, 15, 16, 16, 17, 17, 18, 18, 19, 19, 20, 20, 21, 21,
|
541
|
+
23, 23, 24, 24, 25, 25, 26, 26, 27, 27, 28, 28, 29, 29, 30,
|
542
|
+
30, 31, 31, 127, 127, 220, 220, 249, 249, -1, -1, 10, 10, 10, 10,
|
543
|
+
10, 10, 10, 10, 13, 13, 13, 13, 13, 13, 13, 13, 22, 22, 22,
|
544
|
+
22, 22, 22, 22, 22, 256, 256, 256, 256, 256, 256, 256, 256, 45, 45,
|
545
|
+
45, 45, 45, 45, 45, 45, 46, 46, 46, 46, 46, 46, 46, 46, 47,
|
546
|
+
47, 47, 47, 47, 47, 47, 47, 51, 51, 51, 51, 51, 51, 51, 51,
|
547
|
+
52, 52, 52, 52, 52, 52, 52, 52, 53, 53, 53, 53, 53, 53, 53,
|
548
|
+
53, 54, 54, 54, 54, 54, 54, 54, 54, 55, 55, 55, 55, 55, 55,
|
549
|
+
55, 55, 56, 56, 56, 56, 56, 56, 56, 56, 57, 57, 57, 57, 57,
|
550
|
+
57, 57, 57, 50, 50, 50, 50, 50, 50, 50, 50, 97, 97, 97, 97,
|
551
|
+
97, 97, 97, 97, 99, 99, 99, 99, 99, 99, 99, 99, 101, 101, 101,
|
552
|
+
101, 101, 101, 101, 101, 105, 105, 105, 105, 105, 105, 105, 105, 111, 111,
|
553
|
+
111, 111, 111, 111, 111, 111, 115, 115, 115, 115, 115, 115, 115, 115, 116,
|
554
|
+
116, 116, 116, 116, 116, 116, 116, 32, 32, 32, 32, 37, 37, 37, 37,
|
555
|
+
45, 45, 45, 45, 46, 46, 46, 46, 47, 47, 47, 47, 51, 51, 51,
|
556
|
+
51, 52, 52, 52, 52, 53, 53, 53, 53, 54, 54, 54, 54, 55, 55,
|
557
|
+
55, 55, 56, 56, 56, 56, 57, 57, 57, 57, 61, 61, 61, 61, 65,
|
558
|
+
65, 65, 65, 95, 95, 95, 95, 98, 98, 98, 98, 100, 100, 100, 100,
|
559
|
+
102, 102, 102, 102, 103, 103, 103, 103, 104, 104, 104, 104, 108, 108, 108,
|
560
|
+
108, 109, 109, 109, 109, 110, 110, 110, 110, 112, 112, 112, 112, 114, 114,
|
561
|
+
114, 114, 117, 117, 117, 117, 58, 58, 66, 66, 67, 67, 68, 68, 69,
|
562
|
+
69, 70, 70, 71, 71, 72, 72, 73, 73, 74, 74, 75, 75, 76, 76,
|
563
|
+
77, 77, 78, 78, 79, 79, 80, 80, 81, 81, 82, 82, 83, 83, 84,
|
564
|
+
84, 85, 85, 86, 86, 87, 87, 89, 89, 106, 106, 107, 107, 113, 113,
|
565
|
+
118, 118, 119, 119, 120, 120, 121, 121, 122, 122, 38, 42, 44, 59, 88,
|
566
|
+
90, -1, -1, 33, 33, 33, 33, 34, 34, 34, 34, 40, 40, 40, 40,
|
567
|
+
41, 41, 41, 41, 63, 63, 63, 63, 39, 39, 43, 43, 124, 124, 35,
|
568
|
+
62, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 36, 36,
|
569
|
+
36, 36, 36, 36, 36, 36, 64, 64, 64, 64, 64, 64, 64, 64, 91,
|
570
|
+
91, 91, 91, 91, 91, 91, 91, 93, 93, 93, 93, 93, 93, 93, 93,
|
571
|
+
126, 126, 126, 126, 126, 126, 126, 126, 94, 94, 94, 94, 125, 125, 125,
|
572
|
+
125, 60, 60, 96, 96, 123, 123, -1, -1, 92, 92, 195, 195, 208, 208,
|
573
|
+
128, 130, 131, 162, 184, 194, 224, 226, -1, -1, 153, 153, 153, 153, 153,
|
574
|
+
153, 153, 153, 161, 161, 161, 161, 161, 161, 161, 161, 167, 167, 167, 167,
|
575
|
+
167, 167, 167, 167, 172, 172, 172, 172, 172, 172, 172, 172, 176, 176, 176,
|
576
|
+
176, 176, 176, 176, 176, 177, 177, 177, 177, 177, 177, 177, 177, 179, 179,
|
577
|
+
179, 179, 179, 179, 179, 179, 209, 209, 209, 209, 209, 209, 209, 209, 216,
|
578
|
+
216, 216, 216, 216, 216, 216, 216, 217, 217, 217, 217, 217, 217, 217, 217,
|
579
|
+
227, 227, 227, 227, 227, 227, 227, 227, 229, 229, 229, 229, 229, 229, 229,
|
580
|
+
229, 230, 230, 230, 230, 230, 230, 230, 230, 129, 129, 129, 129, 132, 132,
|
581
|
+
132, 132, 133, 133, 133, 133, 134, 134, 134, 134, 136, 136, 136, 136, 146,
|
582
|
+
146, 146, 146, 154, 154, 154, 154, 156, 156, 156, 156, 160, 160, 160, 160,
|
583
|
+
163, 163, 163, 163, 164, 164, 164, 164, 169, 169, 169, 169, 170, 170, 170,
|
584
|
+
170, 173, 173, 173, 173, 178, 178, 178, 178, 181, 181, 181, 181, 185, 185,
|
585
|
+
185, 185, 186, 186, 186, 186, 187, 187, 187, 187, 189, 189, 189, 189, 190,
|
586
|
+
190, 190, 190, 196, 196, 196, 196, 198, 198, 198, 198, 228, 228, 228, 228,
|
587
|
+
232, 232, 232, 232, 233, 233, 233, 233, 1, 1, 135, 135, 137, 137, 138,
|
588
|
+
138, 139, 139, 140, 140, 141, 141, 143, 143, 147, 147, 149, 149, 150, 150,
|
589
|
+
151, 151, 152, 152, 155, 155, 157, 157, 158, 158, 165, 165, 166, 166, 168,
|
590
|
+
168, 174, 174, 175, 175, 180, 180, 182, 182, 183, 183, 188, 188, 191, 191,
|
591
|
+
197, 197, 231, 231, 239, 239, 9, 142, 144, 145, 148, 159, 171, 206, 215,
|
592
|
+
225, 236, 237, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 199, 199,
|
593
|
+
199, 199, 199, 199, 199, 199, 207, 207, 207, 207, 207, 207, 207, 207, 234,
|
594
|
+
234, 234, 234, 234, 234, 234, 234, 235, 235, 235, 235, 235, 235, 235, 235,
|
595
|
+
192, 192, 192, 192, 193, 193, 193, 193, 200, 200, 200, 200, 201, 201, 201,
|
596
|
+
201, 202, 202, 202, 202, 205, 205, 205, 205, 210, 210, 210, 210, 213, 213,
|
597
|
+
213, 213, 218, 218, 218, 218, 219, 219, 219, 219, 238, 238, 238, 238, 240,
|
598
|
+
240, 240, 240, 242, 242, 242, 242, 243, 243, 243, 243, 255, 255, 255, 255,
|
599
|
+
203, 203, 204, 204, 211, 211, 212, 212, 214, 214, 221, 221, 222, 222, 223,
|
600
|
+
223, 241, 241, 244, 244, 245, 245, 246, 246, 247, 247, 248, 248, 250, 250,
|
601
|
+
251, 251, 252, 252, 253, 253, 254, 254, 2, 3, 4, 5, 6, 7, 8,
|
602
|
+
11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27,
|
603
|
+
28, 29, 30, 31, 127, 220, 249, -1, 10, 10, 10, 10, 13, 13, 13,
|
604
|
+
13, 22, 22, 22, 22, 256, 256, 256, 256,
|
605
|
+
};
|
606
|
+
|
607
|
+
static const uint8_t inverse_base64[256] = {
|
608
|
+
255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
|
609
|
+
255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
|
610
|
+
255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 62, 255,
|
611
|
+
255, 255, 63, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 255, 255,
|
612
|
+
255, 64, 255, 255, 255, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,
|
613
|
+
10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
|
614
|
+
25, 255, 255, 255, 255, 255, 255, 26, 27, 28, 29, 30, 31, 32, 33,
|
615
|
+
34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48,
|
616
|
+
49, 50, 51, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
|
617
|
+
255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
|
618
|
+
255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
|
619
|
+
255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
|
620
|
+
255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
|
621
|
+
255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
|
622
|
+
255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
|
623
|
+
255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
|
624
|
+
255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
|
625
|
+
255,
|
626
|
+
};
|
627
|
+
|
628
|
+
static void GPR_ATTRIBUTE_NOINLINE on_hdr_log(grpc_mdelem md) {
|
629
|
+
char* k = grpc_slice_to_c_string(GRPC_MDKEY(md));
|
630
|
+
char* v = nullptr;
|
631
|
+
if (grpc_is_binary_header_internal(GRPC_MDKEY(md))) {
|
632
|
+
v = grpc_dump_slice(GRPC_MDVALUE(md), GPR_DUMP_HEX);
|
633
|
+
} else {
|
634
|
+
v = grpc_slice_to_c_string(GRPC_MDVALUE(md));
|
635
|
+
}
|
636
|
+
gpr_log(
|
637
|
+
GPR_INFO,
|
638
|
+
"Decode: '%s: %s', elem_interned=%d [%d], k_interned=%d, v_interned=%d",
|
639
|
+
k, v, GRPC_MDELEM_IS_INTERNED(md), GRPC_MDELEM_STORAGE(md),
|
640
|
+
grpc_slice_is_interned(GRPC_MDKEY(md)),
|
641
|
+
grpc_slice_is_interned(GRPC_MDVALUE(md)));
|
642
|
+
gpr_free(k);
|
643
|
+
gpr_free(v);
|
644
|
+
}
|
645
|
+
|
646
|
+
/* emission helpers */
|
647
|
+
template <bool do_add>
|
648
|
+
static grpc_error* on_hdr(grpc_chttp2_hpack_parser* p, grpc_mdelem md) {
|
649
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_trace_chttp2_hpack_parser)) {
|
650
|
+
on_hdr_log(md);
|
651
|
+
}
|
652
|
+
if (do_add) {
|
653
|
+
GPR_DEBUG_ASSERT(GRPC_MDELEM_STORAGE(md) == GRPC_MDELEM_STORAGE_INTERNED ||
|
654
|
+
GRPC_MDELEM_STORAGE(md) == GRPC_MDELEM_STORAGE_STATIC);
|
655
|
+
grpc_error* err = grpc_chttp2_hptbl_add(&p->table, md);
|
656
|
+
if (GPR_UNLIKELY(err != GRPC_ERROR_NONE)) return err;
|
657
|
+
}
|
658
|
+
return p->on_header(p->on_header_user_data, md);
|
659
|
+
}
|
660
|
+
|
661
|
+
static grpc_core::UnmanagedMemorySlice take_string_extern(
|
662
|
+
grpc_chttp2_hpack_parser* /*p*/, grpc_chttp2_hpack_parser_string* str) {
|
663
|
+
grpc_core::UnmanagedMemorySlice s;
|
664
|
+
if (!str->copied) {
|
665
|
+
GPR_DEBUG_ASSERT(!grpc_slice_is_interned(str->data.referenced));
|
666
|
+
s = static_cast<grpc_core::UnmanagedMemorySlice&>(str->data.referenced);
|
667
|
+
str->copied = true;
|
668
|
+
str->data.referenced = grpc_core::UnmanagedMemorySlice();
|
669
|
+
} else {
|
670
|
+
s = grpc_core::UnmanagedMemorySlice(str->data.copied.str,
|
671
|
+
str->data.copied.length);
|
672
|
+
}
|
673
|
+
str->data.copied.length = 0;
|
674
|
+
return s;
|
675
|
+
}
|
676
|
+
|
677
|
+
static grpc_core::ManagedMemorySlice take_string_intern(
|
678
|
+
grpc_chttp2_hpack_parser* /*p*/, grpc_chttp2_hpack_parser_string* str) {
|
679
|
+
grpc_core::ManagedMemorySlice s;
|
680
|
+
if (!str->copied) {
|
681
|
+
s = grpc_core::ManagedMemorySlice(&str->data.referenced);
|
682
|
+
grpc_slice_unref_internal(str->data.referenced);
|
683
|
+
str->copied = true;
|
684
|
+
str->data.referenced = grpc_empty_slice();
|
685
|
+
} else {
|
686
|
+
s = grpc_core::ManagedMemorySlice(str->data.copied.str,
|
687
|
+
str->data.copied.length);
|
688
|
+
}
|
689
|
+
str->data.copied.length = 0;
|
690
|
+
return s;
|
691
|
+
}
|
692
|
+
|
693
|
+
/* jump to the next state */
|
694
|
+
static grpc_error* parse_next(grpc_chttp2_hpack_parser* p, const uint8_t* cur,
|
695
|
+
const uint8_t* end) {
|
696
|
+
p->state = *p->next_state++;
|
697
|
+
return p->state(p, cur, end);
|
698
|
+
}
|
699
|
+
|
700
|
+
/* begin parsing a header: all functionality is encoded into lookup tables
|
701
|
+
above */
|
702
|
+
static grpc_error* parse_begin(grpc_chttp2_hpack_parser* p, const uint8_t* cur,
|
703
|
+
const uint8_t* end) {
|
704
|
+
if (cur == end) {
|
705
|
+
p->state = parse_begin;
|
706
|
+
return GRPC_ERROR_NONE;
|
707
|
+
}
|
708
|
+
|
709
|
+
return first_byte_action[first_byte_lut[*cur]](p, cur, end);
|
710
|
+
}
|
711
|
+
|
712
|
+
/* stream dependency and prioritization data: we just skip it */
|
713
|
+
static grpc_error* parse_stream_weight(grpc_chttp2_hpack_parser* p,
|
714
|
+
const uint8_t* cur, const uint8_t* end) {
|
715
|
+
if (cur == end) {
|
716
|
+
p->state = parse_stream_weight;
|
717
|
+
return GRPC_ERROR_NONE;
|
718
|
+
}
|
719
|
+
|
720
|
+
return p->after_prioritization(p, cur + 1, end);
|
721
|
+
}
|
722
|
+
|
723
|
+
static grpc_error* parse_stream_dep3(grpc_chttp2_hpack_parser* p,
|
724
|
+
const uint8_t* cur, const uint8_t* end) {
|
725
|
+
if (cur == end) {
|
726
|
+
p->state = parse_stream_dep3;
|
727
|
+
return GRPC_ERROR_NONE;
|
728
|
+
}
|
729
|
+
|
730
|
+
return parse_stream_weight(p, cur + 1, end);
|
731
|
+
}
|
732
|
+
|
733
|
+
static grpc_error* parse_stream_dep2(grpc_chttp2_hpack_parser* p,
|
734
|
+
const uint8_t* cur, const uint8_t* end) {
|
735
|
+
if (cur == end) {
|
736
|
+
p->state = parse_stream_dep2;
|
737
|
+
return GRPC_ERROR_NONE;
|
738
|
+
}
|
739
|
+
|
740
|
+
return parse_stream_dep3(p, cur + 1, end);
|
741
|
+
}
|
742
|
+
|
743
|
+
static grpc_error* parse_stream_dep1(grpc_chttp2_hpack_parser* p,
|
744
|
+
const uint8_t* cur, const uint8_t* end) {
|
745
|
+
if (cur == end) {
|
746
|
+
p->state = parse_stream_dep1;
|
747
|
+
return GRPC_ERROR_NONE;
|
748
|
+
}
|
749
|
+
|
750
|
+
return parse_stream_dep2(p, cur + 1, end);
|
751
|
+
}
|
752
|
+
|
753
|
+
static grpc_error* parse_stream_dep0(grpc_chttp2_hpack_parser* p,
|
754
|
+
const uint8_t* cur, const uint8_t* end) {
|
755
|
+
if (cur == end) {
|
756
|
+
p->state = parse_stream_dep0;
|
757
|
+
return GRPC_ERROR_NONE;
|
758
|
+
}
|
759
|
+
|
760
|
+
return parse_stream_dep1(p, cur + 1, end);
|
761
|
+
}
|
762
|
+
|
763
|
+
static grpc_error* GPR_ATTRIBUTE_NOINLINE
|
764
|
+
on_invalid_hpack_idx(grpc_chttp2_hpack_parser* p) {
|
765
|
+
return grpc_error_set_int(
|
766
|
+
grpc_error_set_int(
|
767
|
+
GRPC_ERROR_CREATE_FROM_STATIC_STRING("Invalid HPACK index received"),
|
768
|
+
GRPC_ERROR_INT_INDEX, static_cast<intptr_t>(p->index)),
|
769
|
+
GRPC_ERROR_INT_SIZE, static_cast<intptr_t>(p->table.num_ents));
|
770
|
+
}
|
771
|
+
|
772
|
+
/* emit an indexed field; jumps to begin the next field on completion */
|
773
|
+
static grpc_error* finish_indexed_field(grpc_chttp2_hpack_parser* p,
|
774
|
+
const uint8_t* cur,
|
775
|
+
const uint8_t* end) {
|
776
|
+
grpc_mdelem md = grpc_chttp2_hptbl_lookup<true>(&p->table, p->index);
|
777
|
+
if (GPR_UNLIKELY(GRPC_MDISNULL(md))) {
|
778
|
+
return on_invalid_hpack_idx(p);
|
779
|
+
}
|
780
|
+
GRPC_STATS_INC_HPACK_RECV_INDEXED();
|
781
|
+
grpc_error* err = on_hdr<false>(p, md);
|
782
|
+
if (GPR_UNLIKELY(err != GRPC_ERROR_NONE)) return err;
|
783
|
+
return parse_begin(p, cur, end);
|
784
|
+
}
|
785
|
+
|
786
|
+
/* parse an indexed field with index < 127 */
|
787
|
+
static grpc_error* parse_indexed_field(grpc_chttp2_hpack_parser* p,
|
788
|
+
const uint8_t* cur, const uint8_t* end) {
|
789
|
+
p->dynamic_table_update_allowed = 0;
|
790
|
+
p->index = (*cur) & 0x7f;
|
791
|
+
p->md_for_index.payload = 0; /* Invalidate cached md when index changes. */
|
792
|
+
return finish_indexed_field(p, cur + 1, end);
|
793
|
+
}
|
794
|
+
|
795
|
+
/* parse an indexed field with index >= 127 */
|
796
|
+
static grpc_error* parse_indexed_field_x(grpc_chttp2_hpack_parser* p,
|
797
|
+
const uint8_t* cur,
|
798
|
+
const uint8_t* end) {
|
799
|
+
static const grpc_chttp2_hpack_parser_state and_then[] = {
|
800
|
+
finish_indexed_field};
|
801
|
+
p->dynamic_table_update_allowed = 0;
|
802
|
+
p->next_state = and_then;
|
803
|
+
p->index = 0x7f;
|
804
|
+
p->md_for_index.payload = 0; /* Invalidate cached md when index changes. */
|
805
|
+
p->parsing.value = &p->index;
|
806
|
+
return parse_value0(p, cur + 1, end);
|
807
|
+
}
|
808
|
+
|
809
|
+
/* When finishing with a header, get the cached md element for this index.
|
810
|
+
This is set in parse_value_string(). We ensure (in debug mode) that the
|
811
|
+
cached metadata corresponds with the index we are examining. */
|
812
|
+
static grpc_mdelem get_precomputed_md_for_idx(grpc_chttp2_hpack_parser* p) {
|
813
|
+
GPR_DEBUG_ASSERT(p->md_for_index.payload != 0);
|
814
|
+
GPR_DEBUG_ASSERT(static_cast<int64_t>(p->index) == p->precomputed_md_index);
|
815
|
+
grpc_mdelem md = p->md_for_index;
|
816
|
+
GPR_DEBUG_ASSERT(!GRPC_MDISNULL(md)); /* handled in string parsing */
|
817
|
+
p->md_for_index.payload = 0; /* Invalidate cached md when index changes. */
|
818
|
+
#ifndef NDEBUG
|
819
|
+
p->precomputed_md_index = -1;
|
820
|
+
#endif
|
821
|
+
return md;
|
822
|
+
}
|
823
|
+
|
824
|
+
static const grpc_core::ManagedMemorySlice& get_indexed_key(grpc_mdelem md) {
|
825
|
+
GPR_DEBUG_ASSERT(GRPC_MDELEM_IS_INTERNED(md));
|
826
|
+
return static_cast<const grpc_core::ManagedMemorySlice&>(
|
827
|
+
grpc_slice_ref_internal(GRPC_MDKEY(md)));
|
828
|
+
}
|
829
|
+
|
830
|
+
/* finish a literal header with incremental indexing */
|
831
|
+
static grpc_error* finish_lithdr_incidx(grpc_chttp2_hpack_parser* p,
|
832
|
+
const uint8_t* cur,
|
833
|
+
const uint8_t* end) {
|
834
|
+
GRPC_STATS_INC_HPACK_RECV_LITHDR_INCIDX();
|
835
|
+
grpc_mdelem md = get_precomputed_md_for_idx(p);
|
836
|
+
grpc_error* err = on_hdr<true>(
|
837
|
+
p, grpc_mdelem_from_slices(get_indexed_key(md),
|
838
|
+
take_string_intern(p, &p->value)));
|
839
|
+
if (err != GRPC_ERROR_NONE) return parse_error(p, cur, end, err);
|
840
|
+
return parse_begin(p, cur, end);
|
841
|
+
}
|
842
|
+
|
843
|
+
/* finish a literal header with incremental indexing with no index */
|
844
|
+
static grpc_error* finish_lithdr_incidx_v(grpc_chttp2_hpack_parser* p,
|
845
|
+
const uint8_t* cur,
|
846
|
+
const uint8_t* end) {
|
847
|
+
GRPC_STATS_INC_HPACK_RECV_LITHDR_INCIDX_V();
|
848
|
+
grpc_error* err = on_hdr<true>(
|
849
|
+
p, grpc_mdelem_from_slices(take_string_intern(p, &p->key),
|
850
|
+
take_string_intern(p, &p->value)));
|
851
|
+
if (err != GRPC_ERROR_NONE) return parse_error(p, cur, end, err);
|
852
|
+
return parse_begin(p, cur, end);
|
853
|
+
}
|
854
|
+
|
855
|
+
/* parse a literal header with incremental indexing; index < 63 */
|
856
|
+
static grpc_error* parse_lithdr_incidx(grpc_chttp2_hpack_parser* p,
|
857
|
+
const uint8_t* cur, const uint8_t* end) {
|
858
|
+
static const grpc_chttp2_hpack_parser_state and_then[] = {
|
859
|
+
parse_value_string_with_indexed_key, finish_lithdr_incidx};
|
860
|
+
p->dynamic_table_update_allowed = 0;
|
861
|
+
p->next_state = and_then;
|
862
|
+
p->index = (*cur) & 0x3f;
|
863
|
+
p->md_for_index.payload = 0; /* Invalidate cached md when index changes. */
|
864
|
+
return parse_string_prefix(p, cur + 1, end);
|
865
|
+
}
|
866
|
+
|
867
|
+
/* parse a literal header with incremental indexing; index >= 63 */
|
868
|
+
static grpc_error* parse_lithdr_incidx_x(grpc_chttp2_hpack_parser* p,
|
869
|
+
const uint8_t* cur,
|
870
|
+
const uint8_t* end) {
|
871
|
+
static const grpc_chttp2_hpack_parser_state and_then[] = {
|
872
|
+
parse_string_prefix, parse_value_string_with_indexed_key,
|
873
|
+
finish_lithdr_incidx};
|
874
|
+
p->dynamic_table_update_allowed = 0;
|
875
|
+
p->next_state = and_then;
|
876
|
+
p->index = 0x3f;
|
877
|
+
p->md_for_index.payload = 0; /* Invalidate cached md when index changes. */
|
878
|
+
p->parsing.value = &p->index;
|
879
|
+
return parse_value0(p, cur + 1, end);
|
880
|
+
}
|
881
|
+
|
882
|
+
/* parse a literal header with incremental indexing; index = 0 */
|
883
|
+
static grpc_error* parse_lithdr_incidx_v(grpc_chttp2_hpack_parser* p,
|
884
|
+
const uint8_t* cur,
|
885
|
+
const uint8_t* end) {
|
886
|
+
static const grpc_chttp2_hpack_parser_state and_then[] = {
|
887
|
+
parse_key_string, parse_string_prefix,
|
888
|
+
parse_value_string_with_literal_key, finish_lithdr_incidx_v};
|
889
|
+
p->dynamic_table_update_allowed = 0;
|
890
|
+
p->next_state = and_then;
|
891
|
+
return parse_string_prefix(p, cur + 1, end);
|
892
|
+
}
|
893
|
+
|
894
|
+
/* finish a literal header without incremental indexing */
|
895
|
+
static grpc_error* finish_lithdr_notidx(grpc_chttp2_hpack_parser* p,
|
896
|
+
const uint8_t* cur,
|
897
|
+
const uint8_t* end) {
|
898
|
+
GRPC_STATS_INC_HPACK_RECV_LITHDR_NOTIDX();
|
899
|
+
grpc_mdelem md = get_precomputed_md_for_idx(p);
|
900
|
+
grpc_error* err = on_hdr<false>(
|
901
|
+
p, grpc_mdelem_from_slices(get_indexed_key(md),
|
902
|
+
take_string_extern(p, &p->value)));
|
903
|
+
if (err != GRPC_ERROR_NONE) return parse_error(p, cur, end, err);
|
904
|
+
return parse_begin(p, cur, end);
|
905
|
+
}
|
906
|
+
|
907
|
+
/* finish a literal header without incremental indexing with index = 0 */
|
908
|
+
static grpc_error* finish_lithdr_notidx_v(grpc_chttp2_hpack_parser* p,
|
909
|
+
const uint8_t* cur,
|
910
|
+
const uint8_t* end) {
|
911
|
+
GRPC_STATS_INC_HPACK_RECV_LITHDR_NOTIDX_V();
|
912
|
+
grpc_error* err = on_hdr<false>(
|
913
|
+
p, grpc_mdelem_from_slices(take_string_intern(p, &p->key),
|
914
|
+
take_string_extern(p, &p->value)));
|
915
|
+
if (err != GRPC_ERROR_NONE) return parse_error(p, cur, end, err);
|
916
|
+
return parse_begin(p, cur, end);
|
917
|
+
}
|
918
|
+
|
919
|
+
/* parse a literal header without incremental indexing; index < 15 */
|
920
|
+
static grpc_error* parse_lithdr_notidx(grpc_chttp2_hpack_parser* p,
|
921
|
+
const uint8_t* cur, const uint8_t* end) {
|
922
|
+
static const grpc_chttp2_hpack_parser_state and_then[] = {
|
923
|
+
parse_value_string_with_indexed_key, finish_lithdr_notidx};
|
924
|
+
p->dynamic_table_update_allowed = 0;
|
925
|
+
p->next_state = and_then;
|
926
|
+
p->index = (*cur) & 0xf;
|
927
|
+
p->md_for_index.payload = 0; /* Invalidate cached md when index changes. */
|
928
|
+
return parse_string_prefix(p, cur + 1, end);
|
929
|
+
}
|
930
|
+
|
931
|
+
/* parse a literal header without incremental indexing; index >= 15 */
|
932
|
+
static grpc_error* parse_lithdr_notidx_x(grpc_chttp2_hpack_parser* p,
|
933
|
+
const uint8_t* cur,
|
934
|
+
const uint8_t* end) {
|
935
|
+
static const grpc_chttp2_hpack_parser_state and_then[] = {
|
936
|
+
parse_string_prefix, parse_value_string_with_indexed_key,
|
937
|
+
finish_lithdr_notidx};
|
938
|
+
p->dynamic_table_update_allowed = 0;
|
939
|
+
p->next_state = and_then;
|
940
|
+
p->index = 0xf;
|
941
|
+
p->md_for_index.payload = 0; /* Invalidate cached md when index changes. */
|
942
|
+
p->parsing.value = &p->index;
|
943
|
+
return parse_value0(p, cur + 1, end);
|
944
|
+
}
|
945
|
+
|
946
|
+
/* parse a literal header without incremental indexing; index == 0 */
|
947
|
+
static grpc_error* parse_lithdr_notidx_v(grpc_chttp2_hpack_parser* p,
|
948
|
+
const uint8_t* cur,
|
949
|
+
const uint8_t* end) {
|
950
|
+
static const grpc_chttp2_hpack_parser_state and_then[] = {
|
951
|
+
parse_key_string, parse_string_prefix,
|
952
|
+
parse_value_string_with_literal_key, finish_lithdr_notidx_v};
|
953
|
+
p->dynamic_table_update_allowed = 0;
|
954
|
+
p->next_state = and_then;
|
955
|
+
return parse_string_prefix(p, cur + 1, end);
|
956
|
+
}
|
957
|
+
|
958
|
+
/* finish a literal header that is never indexed */
|
959
|
+
static grpc_error* finish_lithdr_nvridx(grpc_chttp2_hpack_parser* p,
|
960
|
+
const uint8_t* cur,
|
961
|
+
const uint8_t* end) {
|
962
|
+
GRPC_STATS_INC_HPACK_RECV_LITHDR_NVRIDX();
|
963
|
+
grpc_mdelem md = get_precomputed_md_for_idx(p);
|
964
|
+
grpc_error* err = on_hdr<false>(
|
965
|
+
p, grpc_mdelem_from_slices(get_indexed_key(md),
|
966
|
+
take_string_extern(p, &p->value)));
|
967
|
+
if (err != GRPC_ERROR_NONE) return parse_error(p, cur, end, err);
|
968
|
+
return parse_begin(p, cur, end);
|
969
|
+
}
|
970
|
+
|
971
|
+
/* finish a literal header that is never indexed with an extra value */
|
972
|
+
static grpc_error* finish_lithdr_nvridx_v(grpc_chttp2_hpack_parser* p,
|
973
|
+
const uint8_t* cur,
|
974
|
+
const uint8_t* end) {
|
975
|
+
GRPC_STATS_INC_HPACK_RECV_LITHDR_NVRIDX_V();
|
976
|
+
grpc_error* err = on_hdr<false>(
|
977
|
+
p, grpc_mdelem_from_slices(take_string_intern(p, &p->key),
|
978
|
+
take_string_extern(p, &p->value)));
|
979
|
+
if (err != GRPC_ERROR_NONE) return parse_error(p, cur, end, err);
|
980
|
+
return parse_begin(p, cur, end);
|
981
|
+
}
|
982
|
+
|
983
|
+
/* parse a literal header that is never indexed; index < 15 */
|
984
|
+
static grpc_error* parse_lithdr_nvridx(grpc_chttp2_hpack_parser* p,
|
985
|
+
const uint8_t* cur, const uint8_t* end) {
|
986
|
+
static const grpc_chttp2_hpack_parser_state and_then[] = {
|
987
|
+
parse_value_string_with_indexed_key, finish_lithdr_nvridx};
|
988
|
+
p->dynamic_table_update_allowed = 0;
|
989
|
+
p->next_state = and_then;
|
990
|
+
p->index = (*cur) & 0xf;
|
991
|
+
p->md_for_index.payload = 0; /* Invalidate cached md when index changes. */
|
992
|
+
return parse_string_prefix(p, cur + 1, end);
|
993
|
+
}
|
994
|
+
|
995
|
+
/* parse a literal header that is never indexed; index >= 15 */
|
996
|
+
static grpc_error* parse_lithdr_nvridx_x(grpc_chttp2_hpack_parser* p,
|
997
|
+
const uint8_t* cur,
|
998
|
+
const uint8_t* end) {
|
999
|
+
static const grpc_chttp2_hpack_parser_state and_then[] = {
|
1000
|
+
parse_string_prefix, parse_value_string_with_indexed_key,
|
1001
|
+
finish_lithdr_nvridx};
|
1002
|
+
p->dynamic_table_update_allowed = 0;
|
1003
|
+
p->next_state = and_then;
|
1004
|
+
p->index = 0xf;
|
1005
|
+
p->md_for_index.payload = 0; /* Invalidate cached md when index changes. */
|
1006
|
+
p->parsing.value = &p->index;
|
1007
|
+
return parse_value0(p, cur + 1, end);
|
1008
|
+
}
|
1009
|
+
|
1010
|
+
/* parse a literal header that is never indexed; index == 0 */
|
1011
|
+
static grpc_error* parse_lithdr_nvridx_v(grpc_chttp2_hpack_parser* p,
|
1012
|
+
const uint8_t* cur,
|
1013
|
+
const uint8_t* end) {
|
1014
|
+
static const grpc_chttp2_hpack_parser_state and_then[] = {
|
1015
|
+
parse_key_string, parse_string_prefix,
|
1016
|
+
parse_value_string_with_literal_key, finish_lithdr_nvridx_v};
|
1017
|
+
p->dynamic_table_update_allowed = 0;
|
1018
|
+
p->next_state = and_then;
|
1019
|
+
return parse_string_prefix(p, cur + 1, end);
|
1020
|
+
}
|
1021
|
+
|
1022
|
+
/* finish parsing a max table size change */
|
1023
|
+
static grpc_error* finish_max_tbl_size(grpc_chttp2_hpack_parser* p,
|
1024
|
+
const uint8_t* cur, const uint8_t* end) {
|
1025
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_trace_chttp2_hpack_parser)) {
|
1026
|
+
gpr_log(GPR_INFO, "MAX TABLE SIZE: %d", p->index);
|
1027
|
+
}
|
1028
|
+
grpc_error* err =
|
1029
|
+
grpc_chttp2_hptbl_set_current_table_size(&p->table, p->index);
|
1030
|
+
if (err != GRPC_ERROR_NONE) return parse_error(p, cur, end, err);
|
1031
|
+
return parse_begin(p, cur, end);
|
1032
|
+
}
|
1033
|
+
|
1034
|
+
/* parse a max table size change, max size < 15 */
|
1035
|
+
static grpc_error* parse_max_tbl_size(grpc_chttp2_hpack_parser* p,
|
1036
|
+
const uint8_t* cur, const uint8_t* end) {
|
1037
|
+
if (p->dynamic_table_update_allowed == 0) {
|
1038
|
+
return parse_error(
|
1039
|
+
p, cur, end,
|
1040
|
+
GRPC_ERROR_CREATE_FROM_STATIC_STRING(
|
1041
|
+
"More than two max table size changes in a single frame"));
|
1042
|
+
}
|
1043
|
+
p->dynamic_table_update_allowed--;
|
1044
|
+
p->index = (*cur) & 0x1f;
|
1045
|
+
p->md_for_index.payload = 0; /* Invalidate cached md when index changes. */
|
1046
|
+
return finish_max_tbl_size(p, cur + 1, end);
|
1047
|
+
}
|
1048
|
+
|
1049
|
+
/* parse a max table size change, max size >= 15 */
|
1050
|
+
static grpc_error* parse_max_tbl_size_x(grpc_chttp2_hpack_parser* p,
|
1051
|
+
const uint8_t* cur,
|
1052
|
+
const uint8_t* end) {
|
1053
|
+
static const grpc_chttp2_hpack_parser_state and_then[] = {
|
1054
|
+
finish_max_tbl_size};
|
1055
|
+
if (p->dynamic_table_update_allowed == 0) {
|
1056
|
+
return parse_error(
|
1057
|
+
p, cur, end,
|
1058
|
+
GRPC_ERROR_CREATE_FROM_STATIC_STRING(
|
1059
|
+
"More than two max table size changes in a single frame"));
|
1060
|
+
}
|
1061
|
+
p->dynamic_table_update_allowed--;
|
1062
|
+
p->next_state = and_then;
|
1063
|
+
p->index = 0x1f;
|
1064
|
+
p->md_for_index.payload = 0; /* Invalidate cached md when index changes. */
|
1065
|
+
p->parsing.value = &p->index;
|
1066
|
+
return parse_value0(p, cur + 1, end);
|
1067
|
+
}
|
1068
|
+
|
1069
|
+
/* a parse error: jam the parse state into parse_error, and return error */
|
1070
|
+
static grpc_error* parse_error(grpc_chttp2_hpack_parser* p,
|
1071
|
+
const uint8_t* /*cur*/, const uint8_t* /*end*/,
|
1072
|
+
grpc_error* err) {
|
1073
|
+
GPR_ASSERT(err != GRPC_ERROR_NONE);
|
1074
|
+
if (p->last_error == GRPC_ERROR_NONE) {
|
1075
|
+
p->last_error = GRPC_ERROR_REF(err);
|
1076
|
+
}
|
1077
|
+
p->state = still_parse_error;
|
1078
|
+
return err;
|
1079
|
+
}
|
1080
|
+
|
1081
|
+
static grpc_error* still_parse_error(grpc_chttp2_hpack_parser* p,
|
1082
|
+
const uint8_t* /*cur*/,
|
1083
|
+
const uint8_t* /*end*/) {
|
1084
|
+
return GRPC_ERROR_REF(p->last_error);
|
1085
|
+
}
|
1086
|
+
|
1087
|
+
static grpc_error* parse_illegal_op(grpc_chttp2_hpack_parser* p,
|
1088
|
+
const uint8_t* cur, const uint8_t* end) {
|
1089
|
+
GPR_ASSERT(cur != end);
|
1090
|
+
char* msg;
|
1091
|
+
gpr_asprintf(&msg, "Illegal hpack op code %d", *cur);
|
1092
|
+
grpc_error* err = GRPC_ERROR_CREATE_FROM_COPIED_STRING(msg);
|
1093
|
+
gpr_free(msg);
|
1094
|
+
return parse_error(p, cur, end, err);
|
1095
|
+
}
|
1096
|
+
|
1097
|
+
/* parse the 1st byte of a varint into p->parsing.value
|
1098
|
+
no overflow is possible */
|
1099
|
+
static grpc_error* parse_value0(grpc_chttp2_hpack_parser* p, const uint8_t* cur,
|
1100
|
+
const uint8_t* end) {
|
1101
|
+
if (cur == end) {
|
1102
|
+
p->state = parse_value0;
|
1103
|
+
return GRPC_ERROR_NONE;
|
1104
|
+
}
|
1105
|
+
|
1106
|
+
*p->parsing.value += (*cur) & 0x7f;
|
1107
|
+
|
1108
|
+
if ((*cur) & 0x80) {
|
1109
|
+
return parse_value1(p, cur + 1, end);
|
1110
|
+
} else {
|
1111
|
+
return parse_next(p, cur + 1, end);
|
1112
|
+
}
|
1113
|
+
}
|
1114
|
+
|
1115
|
+
/* parse the 2nd byte of a varint into p->parsing.value
|
1116
|
+
no overflow is possible */
|
1117
|
+
static grpc_error* parse_value1(grpc_chttp2_hpack_parser* p, const uint8_t* cur,
|
1118
|
+
const uint8_t* end) {
|
1119
|
+
if (cur == end) {
|
1120
|
+
p->state = parse_value1;
|
1121
|
+
return GRPC_ERROR_NONE;
|
1122
|
+
}
|
1123
|
+
|
1124
|
+
*p->parsing.value += ((static_cast<uint32_t>(*cur)) & 0x7f) << 7;
|
1125
|
+
|
1126
|
+
if ((*cur) & 0x80) {
|
1127
|
+
return parse_value2(p, cur + 1, end);
|
1128
|
+
} else {
|
1129
|
+
return parse_next(p, cur + 1, end);
|
1130
|
+
}
|
1131
|
+
}
|
1132
|
+
|
1133
|
+
/* parse the 3rd byte of a varint into p->parsing.value
|
1134
|
+
no overflow is possible */
|
1135
|
+
static grpc_error* parse_value2(grpc_chttp2_hpack_parser* p, const uint8_t* cur,
|
1136
|
+
const uint8_t* end) {
|
1137
|
+
if (cur == end) {
|
1138
|
+
p->state = parse_value2;
|
1139
|
+
return GRPC_ERROR_NONE;
|
1140
|
+
}
|
1141
|
+
|
1142
|
+
*p->parsing.value += ((static_cast<uint32_t>(*cur)) & 0x7f) << 14;
|
1143
|
+
|
1144
|
+
if ((*cur) & 0x80) {
|
1145
|
+
return parse_value3(p, cur + 1, end);
|
1146
|
+
} else {
|
1147
|
+
return parse_next(p, cur + 1, end);
|
1148
|
+
}
|
1149
|
+
}
|
1150
|
+
|
1151
|
+
/* parse the 4th byte of a varint into p->parsing.value
|
1152
|
+
no overflow is possible */
|
1153
|
+
static grpc_error* parse_value3(grpc_chttp2_hpack_parser* p, const uint8_t* cur,
|
1154
|
+
const uint8_t* end) {
|
1155
|
+
if (cur == end) {
|
1156
|
+
p->state = parse_value3;
|
1157
|
+
return GRPC_ERROR_NONE;
|
1158
|
+
}
|
1159
|
+
|
1160
|
+
*p->parsing.value += ((static_cast<uint32_t>(*cur)) & 0x7f) << 21;
|
1161
|
+
|
1162
|
+
if ((*cur) & 0x80) {
|
1163
|
+
return parse_value4(p, cur + 1, end);
|
1164
|
+
} else {
|
1165
|
+
return parse_next(p, cur + 1, end);
|
1166
|
+
}
|
1167
|
+
}
|
1168
|
+
|
1169
|
+
/* parse the 5th byte of a varint into p->parsing.value
|
1170
|
+
depending on the byte, we may overflow, and care must be taken */
|
1171
|
+
static grpc_error* parse_value4(grpc_chttp2_hpack_parser* p, const uint8_t* cur,
|
1172
|
+
const uint8_t* end) {
|
1173
|
+
uint8_t c;
|
1174
|
+
uint32_t cur_value;
|
1175
|
+
uint32_t add_value;
|
1176
|
+
char* msg;
|
1177
|
+
|
1178
|
+
if (cur == end) {
|
1179
|
+
p->state = parse_value4;
|
1180
|
+
return GRPC_ERROR_NONE;
|
1181
|
+
}
|
1182
|
+
|
1183
|
+
c = (*cur) & 0x7f;
|
1184
|
+
if (c > 0xf) {
|
1185
|
+
goto error;
|
1186
|
+
}
|
1187
|
+
|
1188
|
+
cur_value = *p->parsing.value;
|
1189
|
+
add_value = (static_cast<uint32_t>(c)) << 28;
|
1190
|
+
if (add_value > 0xffffffffu - cur_value) {
|
1191
|
+
goto error;
|
1192
|
+
}
|
1193
|
+
|
1194
|
+
*p->parsing.value = cur_value + add_value;
|
1195
|
+
|
1196
|
+
if ((*cur) & 0x80) {
|
1197
|
+
return parse_value5up(p, cur + 1, end);
|
1198
|
+
} else {
|
1199
|
+
return parse_next(p, cur + 1, end);
|
1200
|
+
}
|
1201
|
+
|
1202
|
+
error:
|
1203
|
+
gpr_asprintf(&msg,
|
1204
|
+
"integer overflow in hpack integer decoding: have 0x%08x, "
|
1205
|
+
"got byte 0x%02x on byte 5",
|
1206
|
+
*p->parsing.value, *cur);
|
1207
|
+
grpc_error* err = GRPC_ERROR_CREATE_FROM_COPIED_STRING(msg);
|
1208
|
+
gpr_free(msg);
|
1209
|
+
return parse_error(p, cur, end, err);
|
1210
|
+
}
|
1211
|
+
|
1212
|
+
/* parse any trailing bytes in a varint: it's possible to append an arbitrary
|
1213
|
+
number of 0x80's and not affect the value - a zero will terminate - and
|
1214
|
+
anything else will overflow */
|
1215
|
+
static grpc_error* parse_value5up(grpc_chttp2_hpack_parser* p,
|
1216
|
+
const uint8_t* cur, const uint8_t* end) {
|
1217
|
+
while (cur != end && *cur == 0x80) {
|
1218
|
+
++cur;
|
1219
|
+
}
|
1220
|
+
|
1221
|
+
if (cur == end) {
|
1222
|
+
p->state = parse_value5up;
|
1223
|
+
return GRPC_ERROR_NONE;
|
1224
|
+
}
|
1225
|
+
|
1226
|
+
if (*cur == 0) {
|
1227
|
+
return parse_next(p, cur + 1, end);
|
1228
|
+
}
|
1229
|
+
|
1230
|
+
char* msg;
|
1231
|
+
gpr_asprintf(&msg,
|
1232
|
+
"integer overflow in hpack integer decoding: have 0x%08x, "
|
1233
|
+
"got byte 0x%02x sometime after byte 5",
|
1234
|
+
*p->parsing.value, *cur);
|
1235
|
+
grpc_error* err = GRPC_ERROR_CREATE_FROM_COPIED_STRING(msg);
|
1236
|
+
gpr_free(msg);
|
1237
|
+
return parse_error(p, cur, end, err);
|
1238
|
+
}
|
1239
|
+
|
1240
|
+
/* parse a string prefix */
|
1241
|
+
static grpc_error* parse_string_prefix(grpc_chttp2_hpack_parser* p,
|
1242
|
+
const uint8_t* cur, const uint8_t* end) {
|
1243
|
+
if (cur == end) {
|
1244
|
+
p->state = parse_string_prefix;
|
1245
|
+
return GRPC_ERROR_NONE;
|
1246
|
+
}
|
1247
|
+
|
1248
|
+
p->strlen = (*cur) & 0x7f;
|
1249
|
+
p->huff = (*cur) >> 7;
|
1250
|
+
if (p->strlen == 0x7f) {
|
1251
|
+
p->parsing.value = &p->strlen;
|
1252
|
+
return parse_value0(p, cur + 1, end);
|
1253
|
+
} else {
|
1254
|
+
return parse_next(p, cur + 1, end);
|
1255
|
+
}
|
1256
|
+
}
|
1257
|
+
|
1258
|
+
/* append some bytes to a string */
|
1259
|
+
static void append_bytes(grpc_chttp2_hpack_parser_string* str,
|
1260
|
+
const uint8_t* data, size_t length) {
|
1261
|
+
if (length == 0) return;
|
1262
|
+
if (length + str->data.copied.length > str->data.copied.capacity) {
|
1263
|
+
GPR_ASSERT(str->data.copied.length + length <= UINT32_MAX);
|
1264
|
+
str->data.copied.capacity =
|
1265
|
+
static_cast<uint32_t>(str->data.copied.length + length);
|
1266
|
+
str->data.copied.str = static_cast<char*>(
|
1267
|
+
gpr_realloc(str->data.copied.str, str->data.copied.capacity));
|
1268
|
+
}
|
1269
|
+
memcpy(str->data.copied.str + str->data.copied.length, data, length);
|
1270
|
+
GPR_ASSERT(length <= UINT32_MAX - str->data.copied.length);
|
1271
|
+
str->data.copied.length += static_cast<uint32_t>(length);
|
1272
|
+
}
|
1273
|
+
|
1274
|
+
static grpc_error* append_string(grpc_chttp2_hpack_parser* p,
|
1275
|
+
const uint8_t* cur, const uint8_t* end) {
|
1276
|
+
grpc_chttp2_hpack_parser_string* str = p->parsing.str;
|
1277
|
+
uint32_t bits;
|
1278
|
+
uint8_t decoded[3];
|
1279
|
+
switch (static_cast<binary_state>(p->binary)) {
|
1280
|
+
case NOT_BINARY:
|
1281
|
+
append_bytes(str, cur, static_cast<size_t>(end - cur));
|
1282
|
+
return GRPC_ERROR_NONE;
|
1283
|
+
case BINARY_BEGIN:
|
1284
|
+
if (cur == end) {
|
1285
|
+
p->binary = BINARY_BEGIN;
|
1286
|
+
return GRPC_ERROR_NONE;
|
1287
|
+
}
|
1288
|
+
if (*cur == 0) {
|
1289
|
+
/* 'true-binary' case */
|
1290
|
+
++cur;
|
1291
|
+
p->binary = NOT_BINARY;
|
1292
|
+
GRPC_STATS_INC_HPACK_RECV_BINARY();
|
1293
|
+
append_bytes(str, cur, static_cast<size_t>(end - cur));
|
1294
|
+
return GRPC_ERROR_NONE;
|
1295
|
+
}
|
1296
|
+
GRPC_STATS_INC_HPACK_RECV_BINARY_BASE64();
|
1297
|
+
/* fallthrough */
|
1298
|
+
b64_byte0:
|
1299
|
+
case B64_BYTE0:
|
1300
|
+
if (cur == end) {
|
1301
|
+
p->binary = B64_BYTE0;
|
1302
|
+
return GRPC_ERROR_NONE;
|
1303
|
+
}
|
1304
|
+
bits = inverse_base64[*cur];
|
1305
|
+
++cur;
|
1306
|
+
if (bits == 255)
|
1307
|
+
return parse_error(
|
1308
|
+
p, cur, end,
|
1309
|
+
GRPC_ERROR_CREATE_FROM_STATIC_STRING("Illegal base64 character"));
|
1310
|
+
else if (bits == 64)
|
1311
|
+
goto b64_byte0;
|
1312
|
+
p->base64_buffer = bits << 18;
|
1313
|
+
/* fallthrough */
|
1314
|
+
b64_byte1:
|
1315
|
+
case B64_BYTE1:
|
1316
|
+
if (cur == end) {
|
1317
|
+
p->binary = B64_BYTE1;
|
1318
|
+
return GRPC_ERROR_NONE;
|
1319
|
+
}
|
1320
|
+
bits = inverse_base64[*cur];
|
1321
|
+
++cur;
|
1322
|
+
if (bits == 255)
|
1323
|
+
return parse_error(
|
1324
|
+
p, cur, end,
|
1325
|
+
GRPC_ERROR_CREATE_FROM_STATIC_STRING("Illegal base64 character"));
|
1326
|
+
else if (bits == 64)
|
1327
|
+
goto b64_byte1;
|
1328
|
+
p->base64_buffer |= bits << 12;
|
1329
|
+
/* fallthrough */
|
1330
|
+
b64_byte2:
|
1331
|
+
case B64_BYTE2:
|
1332
|
+
if (cur == end) {
|
1333
|
+
p->binary = B64_BYTE2;
|
1334
|
+
return GRPC_ERROR_NONE;
|
1335
|
+
}
|
1336
|
+
bits = inverse_base64[*cur];
|
1337
|
+
++cur;
|
1338
|
+
if (bits == 255)
|
1339
|
+
return parse_error(
|
1340
|
+
p, cur, end,
|
1341
|
+
GRPC_ERROR_CREATE_FROM_STATIC_STRING("Illegal base64 character"));
|
1342
|
+
else if (bits == 64)
|
1343
|
+
goto b64_byte2;
|
1344
|
+
p->base64_buffer |= bits << 6;
|
1345
|
+
/* fallthrough */
|
1346
|
+
b64_byte3:
|
1347
|
+
case B64_BYTE3:
|
1348
|
+
if (cur == end) {
|
1349
|
+
p->binary = B64_BYTE3;
|
1350
|
+
return GRPC_ERROR_NONE;
|
1351
|
+
}
|
1352
|
+
bits = inverse_base64[*cur];
|
1353
|
+
++cur;
|
1354
|
+
if (bits == 255)
|
1355
|
+
return parse_error(
|
1356
|
+
p, cur, end,
|
1357
|
+
GRPC_ERROR_CREATE_FROM_STATIC_STRING("Illegal base64 character"));
|
1358
|
+
else if (bits == 64)
|
1359
|
+
goto b64_byte3;
|
1360
|
+
p->base64_buffer |= bits;
|
1361
|
+
bits = p->base64_buffer;
|
1362
|
+
decoded[0] = static_cast<uint8_t>(bits >> 16);
|
1363
|
+
decoded[1] = static_cast<uint8_t>(bits >> 8);
|
1364
|
+
decoded[2] = static_cast<uint8_t>(bits);
|
1365
|
+
append_bytes(str, decoded, 3);
|
1366
|
+
goto b64_byte0;
|
1367
|
+
}
|
1368
|
+
GPR_UNREACHABLE_CODE(return parse_error(
|
1369
|
+
p, cur, end,
|
1370
|
+
GRPC_ERROR_CREATE_FROM_STATIC_STRING("Should never reach here")));
|
1371
|
+
}
|
1372
|
+
|
1373
|
+
static grpc_error* finish_str(grpc_chttp2_hpack_parser* p, const uint8_t* cur,
|
1374
|
+
const uint8_t* end) {
|
1375
|
+
uint8_t decoded[2];
|
1376
|
+
uint32_t bits;
|
1377
|
+
grpc_chttp2_hpack_parser_string* str = p->parsing.str;
|
1378
|
+
switch (static_cast<binary_state>(p->binary)) {
|
1379
|
+
case NOT_BINARY:
|
1380
|
+
break;
|
1381
|
+
case BINARY_BEGIN:
|
1382
|
+
break;
|
1383
|
+
case B64_BYTE0:
|
1384
|
+
break;
|
1385
|
+
case B64_BYTE1:
|
1386
|
+
return parse_error(p, cur, end,
|
1387
|
+
GRPC_ERROR_CREATE_FROM_STATIC_STRING(
|
1388
|
+
"illegal base64 encoding")); /* illegal encoding */
|
1389
|
+
case B64_BYTE2:
|
1390
|
+
bits = p->base64_buffer;
|
1391
|
+
if (bits & 0xffff) {
|
1392
|
+
char* msg;
|
1393
|
+
gpr_asprintf(&msg, "trailing bits in base64 encoding: 0x%04x",
|
1394
|
+
bits & 0xffff);
|
1395
|
+
grpc_error* err = GRPC_ERROR_CREATE_FROM_COPIED_STRING(msg);
|
1396
|
+
gpr_free(msg);
|
1397
|
+
return parse_error(p, cur, end, err);
|
1398
|
+
}
|
1399
|
+
decoded[0] = static_cast<uint8_t>(bits >> 16);
|
1400
|
+
append_bytes(str, decoded, 1);
|
1401
|
+
break;
|
1402
|
+
case B64_BYTE3:
|
1403
|
+
bits = p->base64_buffer;
|
1404
|
+
if (bits & 0xff) {
|
1405
|
+
char* msg;
|
1406
|
+
gpr_asprintf(&msg, "trailing bits in base64 encoding: 0x%02x",
|
1407
|
+
bits & 0xff);
|
1408
|
+
grpc_error* err = GRPC_ERROR_CREATE_FROM_COPIED_STRING(msg);
|
1409
|
+
gpr_free(msg);
|
1410
|
+
return parse_error(p, cur, end, err);
|
1411
|
+
}
|
1412
|
+
decoded[0] = static_cast<uint8_t>(bits >> 16);
|
1413
|
+
decoded[1] = static_cast<uint8_t>(bits >> 8);
|
1414
|
+
append_bytes(str, decoded, 2);
|
1415
|
+
break;
|
1416
|
+
}
|
1417
|
+
return GRPC_ERROR_NONE;
|
1418
|
+
}
|
1419
|
+
|
1420
|
+
/* decode a nibble from a huffman encoded stream */
|
1421
|
+
static grpc_error* huff_nibble(grpc_chttp2_hpack_parser* p, uint8_t nibble) {
|
1422
|
+
int16_t emit = emit_sub_tbl[16 * emit_tbl[p->huff_state] + nibble];
|
1423
|
+
int16_t next = next_sub_tbl[16 * next_tbl[p->huff_state] + nibble];
|
1424
|
+
if (emit != -1) {
|
1425
|
+
if (emit >= 0 && emit < 256) {
|
1426
|
+
uint8_t c = static_cast<uint8_t>(emit);
|
1427
|
+
grpc_error* err = append_string(p, &c, (&c) + 1);
|
1428
|
+
if (err != GRPC_ERROR_NONE) return err;
|
1429
|
+
} else {
|
1430
|
+
assert(emit == 256);
|
1431
|
+
}
|
1432
|
+
}
|
1433
|
+
p->huff_state = next;
|
1434
|
+
return GRPC_ERROR_NONE;
|
1435
|
+
}
|
1436
|
+
|
1437
|
+
/* decode full bytes from a huffman encoded stream */
|
1438
|
+
static grpc_error* add_huff_bytes(grpc_chttp2_hpack_parser* p,
|
1439
|
+
const uint8_t* cur, const uint8_t* end) {
|
1440
|
+
for (; cur != end; ++cur) {
|
1441
|
+
grpc_error* err = huff_nibble(p, *cur >> 4);
|
1442
|
+
if (err != GRPC_ERROR_NONE) return parse_error(p, cur, end, err);
|
1443
|
+
err = huff_nibble(p, *cur & 0xf);
|
1444
|
+
if (err != GRPC_ERROR_NONE) return parse_error(p, cur, end, err);
|
1445
|
+
}
|
1446
|
+
return GRPC_ERROR_NONE;
|
1447
|
+
}
|
1448
|
+
|
1449
|
+
/* decode some string bytes based on the current decoding mode
|
1450
|
+
(huffman or not) */
|
1451
|
+
static grpc_error* add_str_bytes(grpc_chttp2_hpack_parser* p,
|
1452
|
+
const uint8_t* cur, const uint8_t* end) {
|
1453
|
+
if (p->huff) {
|
1454
|
+
return add_huff_bytes(p, cur, end);
|
1455
|
+
} else {
|
1456
|
+
return append_string(p, cur, end);
|
1457
|
+
}
|
1458
|
+
}
|
1459
|
+
|
1460
|
+
/* parse a string - tries to do large chunks at a time */
|
1461
|
+
static grpc_error* parse_string(grpc_chttp2_hpack_parser* p, const uint8_t* cur,
|
1462
|
+
const uint8_t* end) {
|
1463
|
+
size_t remaining = p->strlen - p->strgot;
|
1464
|
+
size_t given = static_cast<size_t>(end - cur);
|
1465
|
+
if (remaining <= given) {
|
1466
|
+
grpc_error* err = add_str_bytes(p, cur, cur + remaining);
|
1467
|
+
if (err != GRPC_ERROR_NONE) return parse_error(p, cur, end, err);
|
1468
|
+
err = finish_str(p, cur + remaining, end);
|
1469
|
+
if (err != GRPC_ERROR_NONE) return parse_error(p, cur, end, err);
|
1470
|
+
return parse_next(p, cur + remaining, end);
|
1471
|
+
} else {
|
1472
|
+
grpc_error* err = add_str_bytes(p, cur, cur + given);
|
1473
|
+
if (err != GRPC_ERROR_NONE) return parse_error(p, cur, end, err);
|
1474
|
+
GPR_ASSERT(given <= UINT32_MAX - p->strgot);
|
1475
|
+
p->strgot += static_cast<uint32_t>(given);
|
1476
|
+
p->state = parse_string;
|
1477
|
+
return GRPC_ERROR_NONE;
|
1478
|
+
}
|
1479
|
+
}
|
1480
|
+
|
1481
|
+
/* begin parsing a string - performs setup, calls parse_string */
|
1482
|
+
static grpc_error* begin_parse_string(grpc_chttp2_hpack_parser* p,
|
1483
|
+
const uint8_t* cur, const uint8_t* end,
|
1484
|
+
uint8_t binary,
|
1485
|
+
grpc_chttp2_hpack_parser_string* str) {
|
1486
|
+
if (!p->huff && binary == NOT_BINARY &&
|
1487
|
+
static_cast<uint32_t>(end - cur) >= p->strlen &&
|
1488
|
+
p->current_slice_refcount != nullptr) {
|
1489
|
+
GRPC_STATS_INC_HPACK_RECV_UNCOMPRESSED();
|
1490
|
+
str->copied = false;
|
1491
|
+
str->data.referenced.refcount = p->current_slice_refcount;
|
1492
|
+
str->data.referenced.data.refcounted.bytes = const_cast<uint8_t*>(cur);
|
1493
|
+
str->data.referenced.data.refcounted.length = p->strlen;
|
1494
|
+
grpc_slice_ref_internal(str->data.referenced);
|
1495
|
+
return parse_next(p, cur + p->strlen, end);
|
1496
|
+
}
|
1497
|
+
p->strgot = 0;
|
1498
|
+
str->copied = true;
|
1499
|
+
str->data.copied.length = 0;
|
1500
|
+
p->parsing.str = str;
|
1501
|
+
p->huff_state = 0;
|
1502
|
+
p->binary = binary;
|
1503
|
+
switch (p->binary) {
|
1504
|
+
case NOT_BINARY:
|
1505
|
+
if (p->huff) {
|
1506
|
+
GRPC_STATS_INC_HPACK_RECV_HUFFMAN();
|
1507
|
+
} else {
|
1508
|
+
GRPC_STATS_INC_HPACK_RECV_UNCOMPRESSED();
|
1509
|
+
}
|
1510
|
+
break;
|
1511
|
+
case BINARY_BEGIN:
|
1512
|
+
/* stats incremented later: don't know true binary or not */
|
1513
|
+
break;
|
1514
|
+
default:
|
1515
|
+
abort();
|
1516
|
+
}
|
1517
|
+
return parse_string(p, cur, end);
|
1518
|
+
}
|
1519
|
+
|
1520
|
+
/* parse the key string */
|
1521
|
+
static grpc_error* parse_key_string(grpc_chttp2_hpack_parser* p,
|
1522
|
+
const uint8_t* cur, const uint8_t* end) {
|
1523
|
+
return begin_parse_string(p, cur, end, NOT_BINARY, &p->key);
|
1524
|
+
}
|
1525
|
+
|
1526
|
+
/* check if a key represents a binary header or not */
|
1527
|
+
|
1528
|
+
static bool is_binary_literal_header(grpc_chttp2_hpack_parser* p) {
|
1529
|
+
/* We know that either argument here is a reference counter slice.
|
1530
|
+
* 1. If it is a grpc_core::StaticSlice, the refcount is set to kNoopRefcount.
|
1531
|
+
* 2. If it's p->key.data.referenced, then p->key.copied was set to false,
|
1532
|
+
* which occurs in begin_parse_string() - where the refcount is set to
|
1533
|
+
* p->current_slice_refcount, which is not null. */
|
1534
|
+
return grpc_is_refcounted_slice_binary_header(
|
1535
|
+
p->key.copied ? grpc_core::ExternallyManagedSlice(
|
1536
|
+
p->key.data.copied.str, p->key.data.copied.length)
|
1537
|
+
: p->key.data.referenced);
|
1538
|
+
}
|
1539
|
+
|
1540
|
+
/* Cache the metadata for the given index during initial parsing. This avoids a
|
1541
|
+
pointless recomputation of the metadata when finishing a header. We read the
|
1542
|
+
cached value in get_precomputed_md_for_idx(). */
|
1543
|
+
static void set_precomputed_md_idx(grpc_chttp2_hpack_parser* p,
|
1544
|
+
grpc_mdelem md) {
|
1545
|
+
GPR_DEBUG_ASSERT(p->md_for_index.payload == 0);
|
1546
|
+
GPR_DEBUG_ASSERT(p->precomputed_md_index == -1);
|
1547
|
+
p->md_for_index = md;
|
1548
|
+
#ifndef NDEBUG
|
1549
|
+
p->precomputed_md_index = p->index;
|
1550
|
+
#endif
|
1551
|
+
}
|
1552
|
+
|
1553
|
+
/* Determines if a metadata element key associated with the current parser index
|
1554
|
+
is a binary indexed header during string parsing. We'll need to revisit this
|
1555
|
+
metadata when we're done parsing, so we cache the metadata for this index
|
1556
|
+
here using set_precomputed_md_idx(). */
|
1557
|
+
static grpc_error* is_binary_indexed_header(grpc_chttp2_hpack_parser* p,
|
1558
|
+
bool* is) {
|
1559
|
+
grpc_mdelem elem = grpc_chttp2_hptbl_lookup(&p->table, p->index);
|
1560
|
+
if (GPR_UNLIKELY(GRPC_MDISNULL(elem))) {
|
1561
|
+
return on_invalid_hpack_idx(p);
|
1562
|
+
}
|
1563
|
+
/* We know that GRPC_MDKEY(elem) points to a reference counted slice since:
|
1564
|
+
* 1. elem was a result of grpc_chttp2_hptbl_lookup
|
1565
|
+
* 2. An item in this table is either static (see entries with
|
1566
|
+
* index < GRPC_CHTTP2_LAST_STATIC_ENTRY or added via
|
1567
|
+
* grpc_chttp2_hptbl_add).
|
1568
|
+
* 3. If added via grpc_chttp2_hptbl_add, the entry is either static or
|
1569
|
+
* interned.
|
1570
|
+
* 4. Both static and interned element slices have non-null refcounts. */
|
1571
|
+
*is = grpc_is_refcounted_slice_binary_header(GRPC_MDKEY(elem));
|
1572
|
+
set_precomputed_md_idx(p, elem);
|
1573
|
+
return GRPC_ERROR_NONE;
|
1574
|
+
}
|
1575
|
+
|
1576
|
+
/* parse the value string */
|
1577
|
+
static grpc_error* parse_value_string(grpc_chttp2_hpack_parser* p,
|
1578
|
+
const uint8_t* cur, const uint8_t* end,
|
1579
|
+
bool is_binary) {
|
1580
|
+
return begin_parse_string(p, cur, end, is_binary ? BINARY_BEGIN : NOT_BINARY,
|
1581
|
+
&p->value);
|
1582
|
+
}
|
1583
|
+
|
1584
|
+
static grpc_error* parse_value_string_with_indexed_key(
|
1585
|
+
grpc_chttp2_hpack_parser* p, const uint8_t* cur, const uint8_t* end) {
|
1586
|
+
bool is_binary = false;
|
1587
|
+
grpc_error* err = is_binary_indexed_header(p, &is_binary);
|
1588
|
+
if (err != GRPC_ERROR_NONE) return parse_error(p, cur, end, err);
|
1589
|
+
return parse_value_string(p, cur, end, is_binary);
|
1590
|
+
}
|
1591
|
+
|
1592
|
+
static grpc_error* parse_value_string_with_literal_key(
|
1593
|
+
grpc_chttp2_hpack_parser* p, const uint8_t* cur, const uint8_t* end) {
|
1594
|
+
return parse_value_string(p, cur, end, is_binary_literal_header(p));
|
1595
|
+
}
|
1596
|
+
|
1597
|
+
/* "Uninitialized" header parser to save us a branch in on_hdr(). */
|
1598
|
+
static grpc_error* on_header_uninitialized(void* /*user_data*/,
|
1599
|
+
grpc_mdelem md) {
|
1600
|
+
GRPC_MDELEM_UNREF(md);
|
1601
|
+
return GRPC_ERROR_CREATE_FROM_STATIC_STRING("on_header callback not set");
|
1602
|
+
}
|
1603
|
+
|
1604
|
+
/* PUBLIC INTERFACE */
|
1605
|
+
|
1606
|
+
void grpc_chttp2_hpack_parser_init(grpc_chttp2_hpack_parser* p) {
|
1607
|
+
p->on_header = on_header_uninitialized;
|
1608
|
+
p->on_header_user_data = nullptr;
|
1609
|
+
p->state = parse_begin;
|
1610
|
+
p->key.data.referenced = grpc_empty_slice();
|
1611
|
+
p->key.data.copied.str = nullptr;
|
1612
|
+
p->key.data.copied.capacity = 0;
|
1613
|
+
p->key.data.copied.length = 0;
|
1614
|
+
p->value.data.referenced = grpc_empty_slice();
|
1615
|
+
p->value.data.copied.str = nullptr;
|
1616
|
+
p->value.data.copied.capacity = 0;
|
1617
|
+
p->value.data.copied.length = 0;
|
1618
|
+
/* Cached metadata for the current index the parser is handling. This is set
|
1619
|
+
to 0 initially, invalidated when the index changes, and invalidated when it
|
1620
|
+
is read (by get_precomputed_md_for_idx()). It is set during string parsing,
|
1621
|
+
by set_precomputed_md_idx() - which is called by parse_value_string().
|
1622
|
+
The goal here is to avoid recomputing the metadata for the index when
|
1623
|
+
finishing with a header as well as the initial parse. */
|
1624
|
+
p->md_for_index.payload = 0;
|
1625
|
+
#ifndef NDEBUG
|
1626
|
+
/* In debug mode, this ensures that the cached metadata we're reading is in
|
1627
|
+
* fact correct for the index we are examining. */
|
1628
|
+
p->precomputed_md_index = -1;
|
1629
|
+
#endif
|
1630
|
+
p->dynamic_table_update_allowed = 2;
|
1631
|
+
p->last_error = GRPC_ERROR_NONE;
|
1632
|
+
}
|
1633
|
+
|
1634
|
+
void grpc_chttp2_hpack_parser_set_has_priority(grpc_chttp2_hpack_parser* p) {
|
1635
|
+
p->after_prioritization = p->state;
|
1636
|
+
p->state = parse_stream_dep0;
|
1637
|
+
}
|
1638
|
+
|
1639
|
+
void grpc_chttp2_hpack_parser_destroy(grpc_chttp2_hpack_parser* p) {
|
1640
|
+
grpc_chttp2_hptbl_destroy(&p->table);
|
1641
|
+
GRPC_ERROR_UNREF(p->last_error);
|
1642
|
+
grpc_slice_unref_internal(p->key.data.referenced);
|
1643
|
+
grpc_slice_unref_internal(p->value.data.referenced);
|
1644
|
+
gpr_free(p->key.data.copied.str);
|
1645
|
+
gpr_free(p->value.data.copied.str);
|
1646
|
+
}
|
1647
|
+
|
1648
|
+
grpc_error* grpc_chttp2_hpack_parser_parse(grpc_chttp2_hpack_parser* p,
|
1649
|
+
const grpc_slice& slice) {
|
1650
|
+
/* max number of bytes to parse at a time... limits call stack depth on
|
1651
|
+
* compilers without TCO */
|
1652
|
+
#define MAX_PARSE_LENGTH 1024
|
1653
|
+
p->current_slice_refcount = slice.refcount;
|
1654
|
+
const uint8_t* start = GRPC_SLICE_START_PTR(slice);
|
1655
|
+
const uint8_t* end = GRPC_SLICE_END_PTR(slice);
|
1656
|
+
grpc_error* error = GRPC_ERROR_NONE;
|
1657
|
+
while (start != end && error == GRPC_ERROR_NONE) {
|
1658
|
+
const uint8_t* target = start + GPR_MIN(MAX_PARSE_LENGTH, end - start);
|
1659
|
+
error = p->state(p, start, target);
|
1660
|
+
start = target;
|
1661
|
+
}
|
1662
|
+
p->current_slice_refcount = nullptr;
|
1663
|
+
return error;
|
1664
|
+
}
|
1665
|
+
|
1666
|
+
typedef void (*maybe_complete_func_type)(grpc_chttp2_transport* t,
|
1667
|
+
grpc_chttp2_stream* s);
|
1668
|
+
static const maybe_complete_func_type maybe_complete_funcs[] = {
|
1669
|
+
grpc_chttp2_maybe_complete_recv_initial_metadata,
|
1670
|
+
grpc_chttp2_maybe_complete_recv_trailing_metadata};
|
1671
|
+
|
1672
|
+
static void force_client_rst_stream(void* sp, grpc_error* /*error*/) {
|
1673
|
+
grpc_chttp2_stream* s = static_cast<grpc_chttp2_stream*>(sp);
|
1674
|
+
grpc_chttp2_transport* t = s->t;
|
1675
|
+
if (!s->write_closed) {
|
1676
|
+
grpc_chttp2_add_rst_stream_to_next_write(t, s->id, GRPC_HTTP2_NO_ERROR,
|
1677
|
+
&s->stats.outgoing);
|
1678
|
+
grpc_chttp2_initiate_write(t, GRPC_CHTTP2_INITIATE_WRITE_FORCE_RST_STREAM);
|
1679
|
+
grpc_chttp2_mark_stream_closed(t, s, true, true, GRPC_ERROR_NONE);
|
1680
|
+
}
|
1681
|
+
GRPC_CHTTP2_STREAM_UNREF(s, "final_rst");
|
1682
|
+
}
|
1683
|
+
|
1684
|
+
static void parse_stream_compression_md(grpc_chttp2_transport* /*t*/,
|
1685
|
+
grpc_chttp2_stream* s,
|
1686
|
+
grpc_metadata_batch* initial_metadata) {
|
1687
|
+
if (initial_metadata->idx.named.content_encoding == nullptr ||
|
1688
|
+
grpc_stream_compression_method_parse(
|
1689
|
+
GRPC_MDVALUE(initial_metadata->idx.named.content_encoding->md), false,
|
1690
|
+
&s->stream_decompression_method) == 0) {
|
1691
|
+
s->stream_decompression_method =
|
1692
|
+
GRPC_STREAM_COMPRESSION_IDENTITY_DECOMPRESS;
|
1693
|
+
}
|
1694
|
+
|
1695
|
+
if (s->stream_decompression_method !=
|
1696
|
+
GRPC_STREAM_COMPRESSION_IDENTITY_DECOMPRESS) {
|
1697
|
+
s->stream_decompression_ctx = nullptr;
|
1698
|
+
grpc_slice_buffer_init(&s->decompressed_data_buffer);
|
1699
|
+
}
|
1700
|
+
}
|
1701
|
+
|
1702
|
+
grpc_error* grpc_chttp2_header_parser_parse(void* hpack_parser,
|
1703
|
+
grpc_chttp2_transport* t,
|
1704
|
+
grpc_chttp2_stream* s,
|
1705
|
+
const grpc_slice& slice,
|
1706
|
+
int is_last) {
|
1707
|
+
GPR_TIMER_SCOPE("grpc_chttp2_header_parser_parse", 0);
|
1708
|
+
grpc_chttp2_hpack_parser* parser =
|
1709
|
+
static_cast<grpc_chttp2_hpack_parser*>(hpack_parser);
|
1710
|
+
if (s != nullptr) {
|
1711
|
+
s->stats.incoming.header_bytes += GRPC_SLICE_LENGTH(slice);
|
1712
|
+
}
|
1713
|
+
grpc_error* error = grpc_chttp2_hpack_parser_parse(parser, slice);
|
1714
|
+
if (error != GRPC_ERROR_NONE) {
|
1715
|
+
return error;
|
1716
|
+
}
|
1717
|
+
if (is_last) {
|
1718
|
+
if (parser->is_boundary && parser->state != parse_begin) {
|
1719
|
+
return GRPC_ERROR_CREATE_FROM_STATIC_STRING(
|
1720
|
+
"end of header frame not aligned with a hpack record boundary");
|
1721
|
+
}
|
1722
|
+
/* need to check for null stream: this can occur if we receive an invalid
|
1723
|
+
stream id on a header */
|
1724
|
+
if (s != nullptr) {
|
1725
|
+
if (parser->is_boundary) {
|
1726
|
+
if (s->header_frames_received == GPR_ARRAY_SIZE(s->metadata_buffer)) {
|
1727
|
+
return GRPC_ERROR_CREATE_FROM_STATIC_STRING(
|
1728
|
+
"Too many trailer frames");
|
1729
|
+
}
|
1730
|
+
/* Process stream compression md element if it exists */
|
1731
|
+
if (s->header_frames_received ==
|
1732
|
+
0) { /* Only acts on initial metadata */
|
1733
|
+
parse_stream_compression_md(t, s, &s->metadata_buffer[0].batch);
|
1734
|
+
}
|
1735
|
+
s->published_metadata[s->header_frames_received] =
|
1736
|
+
GRPC_METADATA_PUBLISHED_FROM_WIRE;
|
1737
|
+
maybe_complete_funcs[s->header_frames_received](t, s);
|
1738
|
+
s->header_frames_received++;
|
1739
|
+
}
|
1740
|
+
if (parser->is_eof) {
|
1741
|
+
if (t->is_client && !s->write_closed) {
|
1742
|
+
/* server eof ==> complete closure; we may need to forcefully close
|
1743
|
+
the stream. Wait until the combiner lock is ready to be released
|
1744
|
+
however -- it might be that we receive a RST_STREAM following this
|
1745
|
+
and can avoid the extra write */
|
1746
|
+
GRPC_CHTTP2_STREAM_REF(s, "final_rst");
|
1747
|
+
t->combiner->FinallyRun(
|
1748
|
+
GRPC_CLOSURE_CREATE(force_client_rst_stream, s, nullptr),
|
1749
|
+
GRPC_ERROR_NONE);
|
1750
|
+
}
|
1751
|
+
grpc_chttp2_mark_stream_closed(t, s, true, false, GRPC_ERROR_NONE);
|
1752
|
+
}
|
1753
|
+
}
|
1754
|
+
parser->on_header = on_header_uninitialized;
|
1755
|
+
parser->on_header_user_data = nullptr;
|
1756
|
+
parser->is_boundary = 0xde;
|
1757
|
+
parser->is_eof = 0xde;
|
1758
|
+
parser->dynamic_table_update_allowed = 2;
|
1759
|
+
}
|
1760
|
+
return GRPC_ERROR_NONE;
|
1761
|
+
}
|