grpc 1.30.1 → 1.32.0.pre1
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 +4 -4
- data/Makefile +723 -15910
- data/include/grpc/grpc_security.h +31 -14
- data/include/grpc/grpc_security_constants.h +3 -0
- data/include/grpc/impl/codegen/README.md +22 -0
- data/include/grpc/impl/codegen/grpc_types.h +7 -5
- data/include/grpc/impl/codegen/port_platform.h +6 -33
- data/src/core/ext/filters/client_channel/backend_metric.cc +12 -9
- data/src/core/ext/filters/client_channel/backup_poller.cc +3 -2
- data/src/core/ext/filters/client_channel/client_channel.cc +470 -285
- data/src/core/ext/filters/client_channel/client_channel.h +1 -1
- data/src/core/ext/filters/client_channel/client_channel_channelz.h +0 -3
- data/src/core/ext/filters/client_channel/config_selector.cc +62 -0
- data/src/core/ext/filters/client_channel/config_selector.h +93 -0
- data/src/core/ext/filters/client_channel/global_subchannel_pool.cc +24 -2
- data/src/core/ext/filters/client_channel/health/health_check_client.cc +8 -1
- data/src/core/ext/filters/client_channel/http_connect_handshaker.cc +8 -8
- data/src/core/ext/filters/client_channel/http_proxy.cc +6 -4
- data/src/core/ext/filters/client_channel/lb_policy.h +4 -0
- data/src/core/ext/filters/client_channel/lb_policy/child_policy_handler.cc +6 -4
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +59 -36
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.cc +0 -13
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.h +0 -3
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.cc +1 -37
- data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +19 -13
- data/src/core/ext/filters/client_channel/lb_policy/priority/priority.cc +29 -10
- data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +5 -4
- data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +4 -6
- data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +23 -13
- data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +18 -12
- data/src/core/ext/filters/client_channel/lb_policy/xds/eds.cc +22 -14
- data/src/core/ext/filters/client_channel/lb_policy/xds/lrs.cc +18 -9
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_routing.cc +385 -78
- data/src/core/ext/filters/client_channel/lb_policy_registry.cc +4 -5
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +5 -2
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.cc +6 -5
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_libuv.cc +8 -6
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +9 -7
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +7 -5
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +36 -51
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_libuv.cc +1 -1
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc +1 -1
- data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +6 -2
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc +1 -1
- data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +1 -1
- data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +383 -31
- data/src/core/ext/filters/client_channel/resolver_registry.cc +13 -14
- data/src/core/ext/filters/client_channel/resolver_result_parsing.cc +6 -7
- data/src/core/ext/filters/client_channel/resolver_result_parsing.h +0 -1
- data/src/core/ext/filters/client_channel/resolving_lb_policy.cc +38 -32
- data/src/core/ext/filters/client_channel/resolving_lb_policy.h +39 -20
- data/src/core/ext/filters/client_channel/server_address.cc +40 -7
- data/src/core/ext/filters/client_channel/server_address.h +42 -4
- data/src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc +142 -0
- data/src/core/ext/filters/client_channel/subchannel.cc +65 -24
- data/src/core/ext/filters/client_channel/subchannel.h +16 -4
- data/src/core/ext/filters/http/client/http_client_filter.cc +5 -5
- data/src/core/ext/filters/http/http_filters_plugin.cc +2 -1
- data/src/core/ext/filters/http/message_compress/message_decompress_filter.cc +74 -33
- data/src/core/ext/filters/http/message_compress/message_decompress_filter.h +3 -1
- data/src/core/ext/filters/max_age/max_age_filter.cc +2 -1
- data/src/core/ext/filters/message_size/message_size_filter.cc +56 -80
- data/src/core/ext/filters/message_size/message_size_filter.h +6 -0
- data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +87 -31
- data/src/core/ext/transport/chttp2/client/chttp2_connector.h +18 -1
- data/src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc +10 -35
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +378 -348
- data/src/core/ext/transport/chttp2/server/chttp2_server.h +7 -2
- data/src/core/ext/transport/chttp2/server/insecure/server_chttp2.cc +3 -3
- data/src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc +10 -16
- data/src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.cc +9 -9
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +256 -279
- data/src/core/ext/transport/chttp2/transport/flow_control.cc +23 -28
- data/src/core/ext/transport/chttp2/transport/flow_control.h +14 -16
- data/src/core/ext/transport/chttp2/transport/frame_data.cc +9 -12
- data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +4 -6
- data/src/core/ext/transport/chttp2/transport/frame_ping.cc +5 -6
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +12 -13
- data/src/core/ext/transport/chttp2/transport/frame_settings.cc +8 -9
- data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +9 -12
- data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +25 -29
- data/src/core/ext/transport/chttp2/transport/hpack_table.cc +13 -17
- data/src/core/ext/transport/chttp2/transport/internal.h +18 -1
- data/src/core/ext/transport/chttp2/transport/parsing.cc +34 -71
- data/src/core/ext/transport/chttp2/transport/writing.cc +15 -19
- data/src/core/ext/transport/inproc/inproc_transport.cc +47 -27
- data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.h +0 -1
- data/src/core/ext/upb-generated/envoy/annotations/resource.upb.h +3 -4
- data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.c +224 -0
- data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.h +700 -0
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.c +74 -0
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.h +226 -0
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.c +380 -0
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.h +1378 -0
- data/src/core/ext/upb-generated/envoy/{api/v2/cluster → config/cluster/v3}/filter.upb.c +8 -8
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.h +69 -0
- data/src/core/ext/upb-generated/envoy/{api/v2/cluster → config/cluster/v3}/outlier_detection.upb.c +8 -8
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.h +323 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/address.upb.c +112 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/address.upb.h +334 -0
- data/src/core/ext/upb-generated/envoy/{api/v2/core → config/core/v3}/backoff.upb.c +8 -8
- data/src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.h +79 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.c +309 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.h +869 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.c +96 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.h +328 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.c +34 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.h +71 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.c +195 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.h +634 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.c +170 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.h +684 -0
- data/src/core/ext/upb-generated/envoy/{api/v2/core → config/core/v3}/http_uri.upb.c +8 -8
- data/src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.h +80 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.c +152 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.h +536 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.c +28 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.h +58 -0
- data/src/core/ext/upb-generated/envoy/{api/v2/core → config/core/v3}/socket_option.upb.c +6 -6
- data/src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.h +88 -0
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.c +91 -0
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.h +220 -0
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.c +91 -0
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.h +273 -0
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.c +112 -0
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.h +332 -0
- data/src/core/ext/upb-generated/envoy/config/listener/{v2 → v3}/api_listener.upb.c +8 -8
- data/src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.h +65 -0
- data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.c +108 -0
- data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.h +401 -0
- data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.c +138 -0
- data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.h +490 -0
- data/src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.c +41 -0
- data/src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.h +94 -0
- data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.c +174 -0
- data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.h +599 -0
- data/src/core/ext/upb-generated/envoy/config/route/v3/route.upb.c +63 -0
- data/src/core/ext/upb-generated/envoy/config/route/v3/route.upb.h +204 -0
- data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.c +773 -0
- data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.h +2855 -0
- data/src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.c +59 -0
- data/src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.h +135 -0
- data/src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.c +50 -0
- data/src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.h +108 -0
- data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.c +312 -0
- data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +1125 -0
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.c +20 -0
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.h +34 -0
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.c +111 -0
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.h +401 -0
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.c +72 -0
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.h +198 -0
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.c +105 -0
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +388 -0
- data/src/core/ext/upb-generated/envoy/{api/v2 → service/cluster/v3}/cds.upb.c +5 -6
- data/src/core/ext/upb-generated/envoy/service/cluster/v3/cds.upb.h +49 -0
- data/src/core/ext/upb-generated/envoy/service/discovery/{v2 → v3}/ads.upb.c +5 -4
- data/src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.h +49 -0
- data/src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.c +129 -0
- data/src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.h +386 -0
- data/src/core/ext/upb-generated/envoy/{api/v2 → service/endpoint/v3}/eds.upb.c +5 -6
- data/src/core/ext/upb-generated/envoy/service/endpoint/v3/eds.upb.h +49 -0
- data/src/core/ext/upb-generated/envoy/{api/v2 → service/listener/v3}/lds.upb.c +5 -6
- data/src/core/ext/upb-generated/envoy/service/listener/v3/lds.upb.h +49 -0
- data/src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.c +55 -0
- data/src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.h +136 -0
- data/src/core/ext/upb-generated/envoy/{api/v2 → service/route/v3}/rds.upb.c +5 -6
- data/src/core/ext/upb-generated/envoy/service/route/v3/rds.upb.h +49 -0
- data/src/core/ext/upb-generated/envoy/{api/v2 → service/route/v3}/srds.upb.c +5 -6
- data/src/core/ext/upb-generated/envoy/service/route/v3/srds.upb.h +49 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.c +47 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.h +114 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.c +35 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.h +77 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.c +34 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.h +71 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.c +64 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.h +145 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.c +53 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.h +127 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.c +63 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.h +188 -0
- data/src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.c +88 -0
- data/src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.h +258 -0
- data/src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.c +90 -0
- data/src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.h +250 -0
- data/src/core/ext/upb-generated/envoy/type/{http.upb.c → v3/http.upb.c} +2 -2
- data/src/core/ext/upb-generated/envoy/type/{http.upb.h → v3/http.upb.h} +8 -9
- data/src/core/ext/upb-generated/envoy/type/{percent.upb.c → v3/percent.upb.c} +9 -8
- data/src/core/ext/upb-generated/envoy/type/v3/percent.upb.h +86 -0
- data/src/core/ext/upb-generated/envoy/type/{range.upb.c → v3/range.upb.c} +12 -11
- data/src/core/ext/upb-generated/envoy/type/v3/range.upb.h +111 -0
- data/src/core/ext/upb-generated/envoy/type/{semantic_version.upb.c → v3/semantic_version.upb.c} +6 -5
- data/src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.h +61 -0
- data/src/core/ext/upb-generated/gogoproto/gogo.upb.h +0 -1
- data/src/core/ext/upb-generated/google/api/annotations.upb.h +0 -1
- data/src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.c +234 -0
- data/src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.h +759 -0
- data/src/core/ext/upb-generated/google/api/http.upb.h +29 -28
- data/src/core/ext/upb-generated/google/protobuf/any.upb.h +5 -6
- data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.c +39 -39
- data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.h +412 -386
- data/src/core/ext/upb-generated/google/protobuf/duration.upb.h +5 -6
- data/src/core/ext/upb-generated/google/protobuf/empty.upb.h +1 -2
- data/src/core/ext/upb-generated/google/protobuf/struct.upb.c +1 -1
- data/src/core/ext/upb-generated/google/protobuf/struct.upb.h +34 -55
- data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.h +5 -6
- data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.h +27 -28
- data/src/core/ext/upb-generated/google/rpc/status.upb.h +8 -8
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.c +1 -1
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.h +32 -45
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.c +4 -4
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.h +157 -178
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.h +14 -13
- data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.h +6 -7
- data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.h +59 -56
- data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.h +11 -12
- data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.h +0 -1
- data/src/core/ext/upb-generated/udpa/annotations/status.upb.h +5 -6
- data/src/core/ext/upb-generated/udpa/annotations/versioning.upb.c +27 -0
- data/src/core/ext/upb-generated/udpa/annotations/versioning.upb.h +53 -0
- data/src/core/ext/upb-generated/udpa/data/orca/v1/orca_load_report.upb.c +6 -6
- data/src/core/ext/upb-generated/udpa/data/orca/v1/orca_load_report.upb.h +41 -68
- data/src/core/ext/upb-generated/validate/validate.upb.c +11 -11
- data/src/core/ext/upb-generated/validate/validate.upb.h +537 -536
- data/src/core/ext/xds/xds_api.cc +2388 -0
- data/src/core/ext/{filters/client_channel/xds → xds}/xds_api.h +120 -40
- data/src/core/ext/{filters/client_channel/xds → xds}/xds_bootstrap.cc +56 -25
- data/src/core/ext/{filters/client_channel/xds → xds}/xds_bootstrap.h +8 -3
- data/src/core/ext/{filters/client_channel/xds → xds}/xds_channel.h +4 -4
- data/src/core/ext/{filters/client_channel/xds → xds}/xds_channel_args.h +3 -3
- data/src/core/ext/{filters/client_channel/xds → xds}/xds_channel_secure.cc +2 -5
- data/src/core/ext/{filters/client_channel/xds → xds}/xds_client.cc +94 -347
- data/src/core/ext/{filters/client_channel/xds → xds}/xds_client.h +12 -45
- data/src/core/ext/{filters/client_channel/xds → xds}/xds_client_stats.cc +2 -2
- data/src/core/ext/{filters/client_channel/xds → xds}/xds_client_stats.h +13 -13
- data/src/core/lib/channel/channel_trace.cc +2 -6
- data/src/core/lib/channel/channelz.cc +19 -30
- data/src/core/lib/channel/channelz.h +1 -1
- data/src/core/lib/channel/channelz_registry.cc +3 -1
- data/src/core/lib/gpr/log_linux.cc +6 -8
- data/src/core/lib/gpr/log_posix.cc +6 -8
- data/src/core/lib/gpr/string.cc +10 -9
- data/src/core/lib/gpr/string.h +4 -2
- data/src/core/lib/gpr/sync_posix.cc +2 -8
- data/src/core/lib/gprpp/global_config_env.cc +8 -6
- data/src/core/lib/http/httpcli.cc +13 -10
- data/src/core/lib/http/httpcli_security_connector.cc +5 -5
- data/src/core/lib/iomgr/cfstream_handle.cc +1 -0
- data/src/core/lib/iomgr/endpoint.cc +5 -1
- data/src/core/lib/iomgr/endpoint.h +7 -3
- data/src/core/lib/iomgr/endpoint_cfstream.cc +32 -11
- data/src/core/lib/iomgr/endpoint_pair_posix.cc +10 -10
- data/src/core/lib/iomgr/error_cfstream.cc +9 -8
- data/src/core/lib/iomgr/ev_epoll1_linux.cc +5 -6
- data/src/core/lib/iomgr/ev_epollex_linux.cc +15 -21
- data/src/core/lib/iomgr/ev_poll_posix.cc +6 -5
- data/src/core/lib/iomgr/is_epollexclusive_available.cc +14 -0
- data/src/core/{ext/filters/client_channel → lib/iomgr}/parse_address.cc +1 -1
- data/src/core/{ext/filters/client_channel → lib/iomgr}/parse_address.h +3 -3
- data/src/core/lib/iomgr/port.h +1 -21
- data/src/core/lib/iomgr/resolve_address_custom.cc +13 -18
- data/src/core/lib/iomgr/resolve_address_windows.cc +8 -8
- data/src/core/lib/iomgr/resource_quota.cc +34 -31
- data/src/core/lib/iomgr/sockaddr_utils.cc +9 -6
- data/src/core/lib/iomgr/sockaddr_utils.h +3 -2
- data/src/core/lib/iomgr/socket_utils_common_posix.cc +95 -55
- data/src/core/lib/iomgr/socket_windows.cc +4 -5
- data/src/core/lib/iomgr/tcp_client_cfstream.cc +9 -11
- data/src/core/lib/iomgr/tcp_client_custom.cc +6 -9
- data/src/core/lib/iomgr/tcp_client_posix.cc +27 -36
- data/src/core/lib/iomgr/tcp_client_windows.cc +9 -9
- data/src/core/lib/iomgr/tcp_custom.cc +33 -17
- data/src/core/lib/iomgr/tcp_custom.h +1 -1
- data/src/core/lib/iomgr/tcp_posix.cc +31 -13
- data/src/core/lib/iomgr/tcp_server.cc +3 -4
- data/src/core/lib/iomgr/tcp_server.h +7 -5
- data/src/core/lib/iomgr/tcp_server_custom.cc +6 -14
- data/src/core/lib/iomgr/tcp_server_posix.cc +34 -41
- data/src/core/lib/iomgr/tcp_server_utils_posix.h +3 -4
- data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +5 -7
- data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc +4 -9
- data/src/core/lib/iomgr/tcp_server_windows.cc +16 -16
- data/src/core/lib/iomgr/tcp_windows.cc +26 -10
- data/src/core/lib/iomgr/timer_generic.cc +13 -12
- data/src/core/lib/iomgr/udp_server.cc +24 -23
- data/src/core/lib/iomgr/udp_server.h +5 -2
- data/src/core/lib/iomgr/unix_sockets_posix.cc +9 -14
- data/src/core/lib/iomgr/unix_sockets_posix.h +3 -1
- data/src/core/lib/iomgr/unix_sockets_posix_noop.cc +5 -2
- data/src/core/lib/json/json_reader.cc +20 -21
- data/src/core/lib/security/authorization/authorization_engine.cc +177 -0
- data/src/core/lib/security/authorization/authorization_engine.h +84 -0
- data/src/core/lib/security/authorization/evaluate_args.cc +153 -0
- data/src/core/lib/security/authorization/evaluate_args.h +59 -0
- data/src/core/lib/security/authorization/mock_cel/activation.h +57 -0
- data/src/core/lib/security/authorization/mock_cel/cel_expr_builder_factory.h +42 -0
- data/src/core/lib/security/authorization/mock_cel/cel_expression.h +68 -0
- data/src/core/lib/security/authorization/mock_cel/cel_value.h +93 -0
- data/src/core/lib/security/authorization/mock_cel/evaluator_core.h +67 -0
- data/src/core/lib/security/authorization/mock_cel/flat_expr_builder.h +56 -0
- data/src/core/lib/security/authorization/mock_cel/statusor.h +50 -0
- data/src/core/lib/security/credentials/credentials.h +5 -3
- data/src/core/lib/security/credentials/google_default/credentials_generic.cc +8 -6
- data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +64 -43
- data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +7 -4
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +19 -28
- data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +6 -6
- data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +20 -0
- data/src/core/lib/security/credentials/ssl/ssl_credentials.h +10 -0
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +10 -0
- data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +11 -12
- data/src/core/lib/security/security_connector/security_connector.cc +2 -0
- data/src/core/lib/security/security_connector/security_connector.h +1 -1
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +18 -11
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.h +5 -0
- data/src/core/lib/security/security_connector/ssl_utils.cc +44 -23
- data/src/core/lib/security/security_connector/ssl_utils.h +6 -2
- data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +27 -24
- data/src/core/lib/security/transport/client_auth_filter.cc +10 -9
- data/src/core/lib/security/transport/secure_endpoint.cc +7 -1
- data/src/core/lib/security/util/json_util.cc +12 -13
- data/src/core/lib/slice/slice.cc +38 -1
- data/src/core/lib/slice/slice_internal.h +1 -0
- data/src/core/lib/surface/call.cc +52 -53
- data/src/core/lib/surface/call.h +2 -1
- data/src/core/lib/surface/channel.cc +28 -20
- data/src/core/lib/surface/channel.h +12 -2
- data/src/core/lib/surface/completion_queue.cc +0 -5
- data/src/core/lib/surface/init.cc +1 -1
- data/src/core/lib/surface/server.cc +1102 -1347
- data/src/core/lib/surface/server.h +369 -71
- data/src/core/lib/surface/version.cc +2 -2
- data/src/core/lib/transport/authority_override.cc +38 -0
- data/src/core/lib/transport/authority_override.h +32 -0
- data/src/core/lib/transport/connectivity_state.cc +18 -13
- data/src/core/lib/transport/connectivity_state.h +18 -6
- data/src/core/lib/transport/error_utils.cc +13 -0
- data/src/core/lib/transport/error_utils.h +6 -0
- data/src/core/lib/transport/static_metadata.cc +295 -276
- data/src/core/lib/transport/static_metadata.h +80 -73
- data/src/core/lib/transport/transport.h +13 -0
- data/src/core/lib/uri/uri_parser.cc +30 -35
- data/src/core/lib/uri/uri_parser.h +3 -1
- data/src/core/plugin_registry/grpc_plugin_registry.cc +4 -0
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +23 -13
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +24 -0
- data/src/core/tsi/alts/handshaker/transport_security_common_api.cc +2 -0
- data/src/core/tsi/ssl_transport_security.cc +102 -11
- data/src/core/tsi/ssl_transport_security.h +14 -2
- data/src/core/tsi/transport_security_interface.h +5 -0
- data/src/ruby/bin/math_services_pb.rb +4 -4
- data/src/ruby/ext/grpc/extconf.rb +5 -2
- data/src/ruby/ext/grpc/rb_call.c +3 -2
- data/src/ruby/ext/grpc/rb_call.h +4 -0
- data/src/ruby/ext/grpc/rb_call_credentials.c +54 -10
- data/src/ruby/ext/grpc/rb_channel_credentials.c +9 -0
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +2 -2
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +4 -4
- data/src/ruby/lib/grpc/generic/client_stub.rb +1 -1
- data/src/ruby/lib/grpc/generic/interceptors.rb +1 -1
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/src/ruby/pb/grpc/health/v1/health_services_pb.rb +2 -2
- data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +5 -0
- data/src/ruby/pb/src/proto/grpc/testing/test_services_pb.rb +28 -12
- data/src/ruby/spec/channel_credentials_spec.rb +10 -0
- data/src/ruby/spec/generic/active_call_spec.rb +19 -8
- 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 +2 -0
- data/src/ruby/spec/pb/codegen/grpc/testing/same_package_service_name.proto +27 -0
- data/src/ruby/spec/pb/codegen/grpc/testing/same_ruby_package_service_name.proto +29 -0
- data/src/ruby/spec/pb/codegen/package_option_spec.rb +25 -1
- data/src/ruby/spec/user_agent_spec.rb +74 -0
- data/third_party/abseil-cpp/absl/algorithm/container.h +1727 -0
- data/third_party/abseil-cpp/absl/base/internal/direct_mmap.h +161 -0
- data/third_party/abseil-cpp/absl/base/internal/exponential_biased.cc +93 -0
- data/third_party/abseil-cpp/absl/base/internal/exponential_biased.h +130 -0
- data/third_party/abseil-cpp/absl/base/internal/low_level_alloc.cc +620 -0
- data/third_party/abseil-cpp/absl/base/internal/low_level_alloc.h +126 -0
- data/third_party/abseil-cpp/absl/container/fixed_array.h +515 -0
- data/third_party/abseil-cpp/absl/container/flat_hash_set.h +503 -0
- data/third_party/abseil-cpp/absl/container/internal/common.h +202 -0
- data/third_party/abseil-cpp/absl/container/internal/container_memory.h +440 -0
- data/third_party/abseil-cpp/absl/container/internal/hash_function_defaults.h +146 -0
- data/third_party/abseil-cpp/absl/container/internal/hash_policy_traits.h +191 -0
- data/third_party/abseil-cpp/absl/container/internal/hashtable_debug_hooks.h +85 -0
- data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.cc +269 -0
- data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.h +297 -0
- data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler_force_weak_definition.cc +30 -0
- data/third_party/abseil-cpp/absl/container/internal/have_sse.h +49 -0
- data/third_party/abseil-cpp/absl/container/internal/layout.h +741 -0
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.cc +48 -0
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.h +1882 -0
- data/third_party/abseil-cpp/absl/debugging/internal/address_is_readable.cc +138 -0
- data/third_party/abseil-cpp/absl/debugging/internal/address_is_readable.h +32 -0
- data/third_party/abseil-cpp/absl/debugging/internal/demangle.cc +1895 -0
- data/third_party/abseil-cpp/absl/debugging/internal/demangle.h +71 -0
- data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.cc +382 -0
- data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.h +134 -0
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_aarch64-inl.inc +192 -0
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_arm-inl.inc +125 -0
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_config.h +70 -0
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_generic-inl.inc +99 -0
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_powerpc-inl.inc +248 -0
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_unimplemented-inl.inc +24 -0
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_win32-inl.inc +85 -0
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_x86-inl.inc +346 -0
- data/third_party/abseil-cpp/absl/debugging/internal/symbolize.h +128 -0
- data/third_party/abseil-cpp/absl/debugging/internal/vdso_support.cc +194 -0
- data/third_party/abseil-cpp/absl/debugging/internal/vdso_support.h +158 -0
- data/third_party/abseil-cpp/absl/debugging/stacktrace.cc +140 -0
- data/third_party/abseil-cpp/absl/debugging/stacktrace.h +231 -0
- data/third_party/abseil-cpp/absl/debugging/symbolize.cc +25 -0
- data/third_party/abseil-cpp/absl/debugging/symbolize.h +99 -0
- data/third_party/abseil-cpp/absl/debugging/symbolize_elf.inc +1480 -0
- data/third_party/abseil-cpp/absl/debugging/symbolize_unimplemented.inc +40 -0
- data/third_party/abseil-cpp/absl/debugging/symbolize_win32.inc +81 -0
- data/third_party/abseil-cpp/absl/functional/function_ref.h +139 -0
- data/third_party/abseil-cpp/absl/functional/internal/function_ref.h +106 -0
- data/third_party/abseil-cpp/absl/hash/hash.h +324 -0
- data/third_party/abseil-cpp/absl/hash/internal/city.cc +346 -0
- data/third_party/abseil-cpp/absl/hash/internal/city.h +96 -0
- data/third_party/abseil-cpp/absl/hash/internal/hash.cc +55 -0
- data/third_party/abseil-cpp/absl/hash/internal/hash.h +988 -0
- data/third_party/abseil-cpp/absl/status/status.cc +447 -0
- data/third_party/abseil-cpp/absl/status/status.h +428 -0
- data/third_party/abseil-cpp/absl/status/status_payload_printer.cc +43 -0
- data/third_party/abseil-cpp/absl/status/status_payload_printer.h +51 -0
- data/third_party/abseil-cpp/absl/strings/cord.cc +2019 -0
- data/third_party/abseil-cpp/absl/strings/cord.h +1121 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_internal.h +151 -0
- data/third_party/abseil-cpp/absl/synchronization/barrier.cc +52 -0
- data/third_party/abseil-cpp/absl/synchronization/barrier.h +79 -0
- data/third_party/abseil-cpp/absl/synchronization/blocking_counter.cc +57 -0
- data/third_party/abseil-cpp/absl/synchronization/blocking_counter.h +99 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/create_thread_identity.cc +140 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/create_thread_identity.h +60 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/graphcycles.cc +697 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/graphcycles.h +141 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/kernel_timeout.h +155 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/mutex_nonprod.inc +261 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.cc +106 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.h +115 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/waiter.cc +484 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/waiter.h +159 -0
- data/third_party/abseil-cpp/absl/synchronization/mutex.cc +2728 -0
- data/third_party/abseil-cpp/absl/synchronization/mutex.h +1056 -0
- data/third_party/abseil-cpp/absl/synchronization/notification.cc +78 -0
- data/third_party/abseil-cpp/absl/synchronization/notification.h +123 -0
- data/third_party/abseil-cpp/absl/types/bad_variant_access.cc +64 -0
- data/third_party/abseil-cpp/absl/types/bad_variant_access.h +82 -0
- data/third_party/abseil-cpp/absl/types/internal/variant.h +1646 -0
- data/third_party/abseil-cpp/absl/types/variant.h +861 -0
- data/third_party/boringssl-with-bazel/err_data.c +266 -254
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bitstr.c +3 -3
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_enum.c +3 -3
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_int.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_object.c +3 -3
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_time.c +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_type.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_lib.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn_pack.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/asn1/f_enum.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/asn1/f_int.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/asn1/f_string.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/tls_cbc.c +1 -0
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/hash_to_curve.c +12 -52
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/internal.h +0 -22
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp_asn1.c +159 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/mode_wrappers.c +17 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +11 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/internal.h +2 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p224-64.c +13 -11
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-x86_64.c +24 -23
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256.c +20 -16
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple_mul.c +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/util.c +3 -3
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c +62 -0
- data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c +456 -0
- data/third_party/boringssl-with-bazel/src/crypto/hpke/internal.h +192 -0
- data/third_party/boringssl-with-bazel/src/crypto/mem.c +29 -15
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h +7 -0
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.c +36 -5
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/internal.h +0 -29
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/pmbtoken.c +116 -363
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/trust_token.c +7 -45
- data/third_party/boringssl-with-bazel/src/crypto/x509/a_strex.c +4 -4
- data/third_party/boringssl-with-bazel/src/crypto/x509/algorithm.c +8 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/asn1_gen.c +4 -4
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509.c +0 -67
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_cmp.c +13 -6
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_req.c +10 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_set.c +41 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.c +4 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +28 -9
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509cset.c +25 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_crl.c +35 -13
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_pubkey.c +0 -154
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_sig.c +20 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509.c +28 -6
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/internal.h +5 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_purp.c +74 -35
- data/third_party/boringssl-with-bazel/src/include/openssl/aes.h +16 -4
- data/third_party/boringssl-with-bazel/src/include/openssl/arm_arch.h +52 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +22 -22
- data/third_party/boringssl-with-bazel/src/include/openssl/base.h +2 -2
- data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +69 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +72 -23
- data/third_party/boringssl-with-bazel/src/include/openssl/tls1.h +2 -3
- data/third_party/boringssl-with-bazel/src/include/openssl/trust_token.h +1 -10
- data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +800 -715
- data/third_party/boringssl-with-bazel/src/ssl/handoff.cc +3 -3
- data/third_party/boringssl-with-bazel/src/ssl/handshake.cc +9 -2
- data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +2 -2
- data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +9 -0
- data/third_party/boringssl-with-bazel/src/ssl/internal.h +21 -14
- data/third_party/boringssl-with-bazel/src/ssl/ssl_asn1.cc +7 -7
- data/third_party/boringssl-with-bazel/src/ssl/ssl_cert.cc +3 -6
- data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +38 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_session.cc +4 -24
- data/third_party/boringssl-with-bazel/src/ssl/ssl_versions.cc +5 -5
- data/third_party/boringssl-with-bazel/src/ssl/t1_enc.cc +45 -24
- data/third_party/boringssl-with-bazel/src/ssl/t1_lib.cc +34 -9
- data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +31 -21
- data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +17 -9
- data/third_party/boringssl-with-bazel/src/ssl/tls_record.cc +5 -3
- data/third_party/re2/re2/bitmap256.h +117 -0
- data/third_party/re2/re2/bitstate.cc +385 -0
- data/third_party/re2/re2/compile.cc +1279 -0
- data/third_party/re2/re2/dfa.cc +2130 -0
- data/third_party/re2/re2/filtered_re2.cc +121 -0
- data/third_party/re2/re2/filtered_re2.h +109 -0
- data/third_party/re2/re2/mimics_pcre.cc +197 -0
- data/third_party/re2/re2/nfa.cc +713 -0
- data/third_party/re2/re2/onepass.cc +623 -0
- data/third_party/re2/re2/parse.cc +2464 -0
- data/third_party/re2/re2/perl_groups.cc +119 -0
- data/third_party/re2/re2/pod_array.h +55 -0
- data/third_party/re2/re2/prefilter.cc +710 -0
- data/third_party/re2/re2/prefilter.h +108 -0
- data/third_party/re2/re2/prefilter_tree.cc +407 -0
- data/third_party/re2/re2/prefilter_tree.h +139 -0
- data/third_party/re2/re2/prog.cc +988 -0
- data/third_party/re2/re2/prog.h +436 -0
- data/third_party/re2/re2/re2.cc +1362 -0
- data/third_party/re2/re2/re2.h +1002 -0
- data/third_party/re2/re2/regexp.cc +980 -0
- data/third_party/re2/re2/regexp.h +659 -0
- data/third_party/re2/re2/set.cc +154 -0
- data/third_party/re2/re2/set.h +80 -0
- data/third_party/re2/re2/simplify.cc +657 -0
- data/third_party/re2/re2/sparse_array.h +392 -0
- data/third_party/re2/re2/sparse_set.h +264 -0
- data/third_party/re2/re2/stringpiece.cc +65 -0
- data/third_party/re2/re2/stringpiece.h +210 -0
- data/third_party/re2/re2/tostring.cc +351 -0
- data/third_party/re2/re2/unicode_casefold.cc +582 -0
- data/third_party/re2/re2/unicode_casefold.h +78 -0
- data/third_party/re2/re2/unicode_groups.cc +6269 -0
- data/third_party/re2/re2/unicode_groups.h +67 -0
- data/third_party/re2/re2/walker-inl.h +246 -0
- data/third_party/re2/util/benchmark.h +156 -0
- data/third_party/re2/util/flags.h +26 -0
- data/third_party/re2/util/logging.h +109 -0
- data/third_party/re2/util/malloc_counter.h +19 -0
- data/third_party/re2/util/mix.h +41 -0
- data/third_party/re2/util/mutex.h +148 -0
- data/third_party/re2/util/pcre.cc +1025 -0
- data/third_party/re2/util/pcre.h +681 -0
- data/third_party/re2/util/rune.cc +260 -0
- data/third_party/re2/util/strutil.cc +149 -0
- data/third_party/re2/util/strutil.h +21 -0
- data/third_party/re2/util/test.h +50 -0
- data/third_party/re2/util/utf.h +44 -0
- data/third_party/re2/util/util.h +42 -0
- data/third_party/upb/upb/decode.c +517 -505
- data/third_party/upb/upb/encode.c +165 -123
- data/third_party/upb/upb/msg.c +130 -64
- data/third_party/upb/upb/msg.h +418 -14
- data/third_party/upb/upb/port_def.inc +35 -6
- data/third_party/upb/upb/port_undef.inc +8 -1
- data/third_party/upb/upb/table.c +53 -86
- data/third_party/upb/upb/table.int.h +11 -52
- data/third_party/upb/upb/upb.c +151 -125
- data/third_party/upb/upb/upb.h +91 -147
- data/third_party/upb/upb/upb.hpp +88 -0
- metadata +310 -148
- data/src/core/ext/filters/client_channel/xds/xds_api.cc +0 -1906
- data/src/core/ext/upb-generated/envoy/api/v2/auth/cert.upb.c +0 -21
- data/src/core/ext/upb-generated/envoy/api/v2/auth/cert.upb.h +0 -35
- data/src/core/ext/upb-generated/envoy/api/v2/auth/common.upb.c +0 -114
- data/src/core/ext/upb-generated/envoy/api/v2/auth/common.upb.h +0 -418
- data/src/core/ext/upb-generated/envoy/api/v2/auth/secret.upb.c +0 -72
- data/src/core/ext/upb-generated/envoy/api/v2/auth/secret.upb.h +0 -197
- data/src/core/ext/upb-generated/envoy/api/v2/auth/tls.upb.c +0 -105
- data/src/core/ext/upb-generated/envoy/api/v2/auth/tls.upb.h +0 -378
- data/src/core/ext/upb-generated/envoy/api/v2/cds.upb.h +0 -53
- data/src/core/ext/upb-generated/envoy/api/v2/cluster.upb.c +0 -403
- data/src/core/ext/upb-generated/envoy/api/v2/cluster.upb.h +0 -1447
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/circuit_breaker.upb.c +0 -74
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/circuit_breaker.upb.h +0 -218
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/filter.upb.h +0 -69
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/outlier_detection.upb.h +0 -305
- data/src/core/ext/upb-generated/envoy/api/v2/core/address.upb.c +0 -112
- data/src/core/ext/upb-generated/envoy/api/v2/core/address.upb.h +0 -328
- data/src/core/ext/upb-generated/envoy/api/v2/core/backoff.upb.h +0 -78
- data/src/core/ext/upb-generated/envoy/api/v2/core/base.upb.c +0 -313
- data/src/core/ext/upb-generated/envoy/api/v2/core/base.upb.h +0 -897
- data/src/core/ext/upb-generated/envoy/api/v2/core/config_source.upb.c +0 -96
- data/src/core/ext/upb-generated/envoy/api/v2/core/config_source.upb.h +0 -322
- data/src/core/ext/upb-generated/envoy/api/v2/core/event_service_config.upb.c +0 -34
- data/src/core/ext/upb-generated/envoy/api/v2/core/event_service_config.upb.h +0 -72
- data/src/core/ext/upb-generated/envoy/api/v2/core/grpc_service.upb.c +0 -197
- data/src/core/ext/upb-generated/envoy/api/v2/core/grpc_service.upb.h +0 -642
- data/src/core/ext/upb-generated/envoy/api/v2/core/health_check.upb.c +0 -172
- data/src/core/ext/upb-generated/envoy/api/v2/core/health_check.upb.h +0 -673
- data/src/core/ext/upb-generated/envoy/api/v2/core/http_uri.upb.h +0 -80
- data/src/core/ext/upb-generated/envoy/api/v2/core/protocol.upb.c +0 -152
- data/src/core/ext/upb-generated/envoy/api/v2/core/protocol.upb.h +0 -518
- data/src/core/ext/upb-generated/envoy/api/v2/core/socket_option.upb.h +0 -89
- data/src/core/ext/upb-generated/envoy/api/v2/discovery.upb.c +0 -129
- data/src/core/ext/upb-generated/envoy/api/v2/discovery.upb.h +0 -392
- data/src/core/ext/upb-generated/envoy/api/v2/eds.upb.h +0 -53
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint.upb.c +0 -92
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint.upb.h +0 -240
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint.upb.c +0 -18
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint.upb.h +0 -33
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint_components.upb.c +0 -91
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint_components.upb.h +0 -266
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/load_report.upb.c +0 -112
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/load_report.upb.h +0 -324
- data/src/core/ext/upb-generated/envoy/api/v2/lds.upb.h +0 -53
- data/src/core/ext/upb-generated/envoy/api/v2/listener.upb.c +0 -109
- data/src/core/ext/upb-generated/envoy/api/v2/listener.upb.h +0 -399
- data/src/core/ext/upb-generated/envoy/api/v2/listener/listener.upb.c +0 -18
- data/src/core/ext/upb-generated/envoy/api/v2/listener/listener.upb.h +0 -33
- data/src/core/ext/upb-generated/envoy/api/v2/listener/listener_components.upb.c +0 -145
- data/src/core/ext/upb-generated/envoy/api/v2/listener/listener_components.upb.h +0 -527
- data/src/core/ext/upb-generated/envoy/api/v2/listener/udp_listener_config.upb.c +0 -43
- data/src/core/ext/upb-generated/envoy/api/v2/listener/udp_listener_config.upb.h +0 -112
- data/src/core/ext/upb-generated/envoy/api/v2/rds.upb.h +0 -53
- data/src/core/ext/upb-generated/envoy/api/v2/route.upb.c +0 -63
- data/src/core/ext/upb-generated/envoy/api/v2/route.upb.h +0 -199
- data/src/core/ext/upb-generated/envoy/api/v2/route/route.upb.c +0 -18
- data/src/core/ext/upb-generated/envoy/api/v2/route/route.upb.h +0 -33
- data/src/core/ext/upb-generated/envoy/api/v2/route/route_components.upb.c +0 -815
- data/src/core/ext/upb-generated/envoy/api/v2/route/route_components.upb.h +0 -3032
- data/src/core/ext/upb-generated/envoy/api/v2/scoped_route.upb.c +0 -59
- data/src/core/ext/upb-generated/envoy/api/v2/scoped_route.upb.h +0 -134
- data/src/core/ext/upb-generated/envoy/api/v2/srds.upb.h +0 -53
- data/src/core/ext/upb-generated/envoy/config/filter/accesslog/v2/accesslog.upb.c +0 -228
- data/src/core/ext/upb-generated/envoy/config/filter/accesslog/v2/accesslog.upb.h +0 -725
- data/src/core/ext/upb-generated/envoy/config/filter/network/http_connection_manager/v2/http_connection_manager.upb.c +0 -316
- data/src/core/ext/upb-generated/envoy/config/filter/network/http_connection_manager/v2/http_connection_manager.upb.h +0 -1132
- data/src/core/ext/upb-generated/envoy/config/listener/v2/api_listener.upb.h +0 -65
- data/src/core/ext/upb-generated/envoy/config/trace/v2/http_tracer.upb.c +0 -51
- data/src/core/ext/upb-generated/envoy/config/trace/v2/http_tracer.upb.h +0 -125
- data/src/core/ext/upb-generated/envoy/service/discovery/v2/ads.upb.h +0 -50
- data/src/core/ext/upb-generated/envoy/service/load_stats/v2/lrs.upb.c +0 -54
- data/src/core/ext/upb-generated/envoy/service/load_stats/v2/lrs.upb.h +0 -134
- data/src/core/ext/upb-generated/envoy/type/matcher/regex.upb.c +0 -63
- data/src/core/ext/upb-generated/envoy/type/matcher/regex.upb.h +0 -144
- data/src/core/ext/upb-generated/envoy/type/matcher/string.upb.c +0 -53
- data/src/core/ext/upb-generated/envoy/type/matcher/string.upb.h +0 -133
- data/src/core/ext/upb-generated/envoy/type/metadata/v2/metadata.upb.c +0 -88
- data/src/core/ext/upb-generated/envoy/type/metadata/v2/metadata.upb.h +0 -258
- data/src/core/ext/upb-generated/envoy/type/percent.upb.h +0 -87
- data/src/core/ext/upb-generated/envoy/type/range.upb.h +0 -112
- data/src/core/ext/upb-generated/envoy/type/semantic_version.upb.h +0 -62
- data/src/core/ext/upb-generated/envoy/type/tracing/v2/custom_tag.upb.c +0 -89
- data/src/core/ext/upb-generated/envoy/type/tracing/v2/custom_tag.upb.h +0 -249
- data/src/core/lib/security/transport/target_authority_table.cc +0 -75
- data/src/core/lib/security/transport/target_authority_table.h +0 -40
- data/src/core/lib/slice/slice_hash_table.h +0 -199
- data/src/core/lib/slice/slice_weak_hash_table.h +0 -102
- data/third_party/upb/upb/generated_util.h +0 -105
@@ -1,1906 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
*
|
3
|
-
* Copyright 2018 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 <algorithm>
|
22
|
-
#include <cctype>
|
23
|
-
#include <cstdlib>
|
24
|
-
|
25
|
-
#include "absl/strings/str_cat.h"
|
26
|
-
#include "absl/strings/str_join.h"
|
27
|
-
#include "absl/strings/str_split.h"
|
28
|
-
|
29
|
-
#include <grpc/impl/codegen/log.h>
|
30
|
-
#include <grpc/support/alloc.h>
|
31
|
-
#include <grpc/support/string_util.h>
|
32
|
-
|
33
|
-
#include "src/core/ext/filters/client_channel/xds/xds_api.h"
|
34
|
-
#include "src/core/lib/gpr/env.h"
|
35
|
-
#include "src/core/lib/gpr/string.h"
|
36
|
-
#include "src/core/lib/gpr/useful.h"
|
37
|
-
#include "src/core/lib/iomgr/error.h"
|
38
|
-
#include "src/core/lib/iomgr/sockaddr_utils.h"
|
39
|
-
|
40
|
-
#include "envoy/api/v2/cds.upb.h"
|
41
|
-
#include "envoy/api/v2/core/address.upb.h"
|
42
|
-
#include "envoy/api/v2/core/base.upb.h"
|
43
|
-
#include "envoy/api/v2/core/config_source.upb.h"
|
44
|
-
#include "envoy/api/v2/core/health_check.upb.h"
|
45
|
-
#include "envoy/api/v2/discovery.upb.h"
|
46
|
-
#include "envoy/api/v2/eds.upb.h"
|
47
|
-
#include "envoy/api/v2/endpoint/endpoint.upb.h"
|
48
|
-
#include "envoy/api/v2/endpoint/load_report.upb.h"
|
49
|
-
#include "envoy/api/v2/lds.upb.h"
|
50
|
-
#include "envoy/api/v2/rds.upb.h"
|
51
|
-
#include "envoy/api/v2/route/route.upb.h"
|
52
|
-
#include "envoy/config/filter/network/http_connection_manager/v2/http_connection_manager.upb.h"
|
53
|
-
#include "envoy/config/listener/v2/api_listener.upb.h"
|
54
|
-
#include "envoy/service/load_stats/v2/lrs.upb.h"
|
55
|
-
#include "envoy/type/percent.upb.h"
|
56
|
-
#include "google/protobuf/any.upb.h"
|
57
|
-
#include "google/protobuf/duration.upb.h"
|
58
|
-
#include "google/protobuf/struct.upb.h"
|
59
|
-
#include "google/protobuf/wrappers.upb.h"
|
60
|
-
#include "google/rpc/status.upb.h"
|
61
|
-
#include "upb/upb.h"
|
62
|
-
|
63
|
-
namespace grpc_core {
|
64
|
-
|
65
|
-
//
|
66
|
-
// XdsApi::PriorityListUpdate
|
67
|
-
//
|
68
|
-
|
69
|
-
bool XdsApi::PriorityListUpdate::operator==(
|
70
|
-
const XdsApi::PriorityListUpdate& other) const {
|
71
|
-
if (priorities_.size() != other.priorities_.size()) return false;
|
72
|
-
for (size_t i = 0; i < priorities_.size(); ++i) {
|
73
|
-
if (priorities_[i].localities != other.priorities_[i].localities) {
|
74
|
-
return false;
|
75
|
-
}
|
76
|
-
}
|
77
|
-
return true;
|
78
|
-
}
|
79
|
-
|
80
|
-
void XdsApi::PriorityListUpdate::Add(
|
81
|
-
XdsApi::PriorityListUpdate::LocalityMap::Locality locality) {
|
82
|
-
// Pad the missing priorities in case the localities are not ordered by
|
83
|
-
// priority.
|
84
|
-
if (!Contains(locality.priority)) priorities_.resize(locality.priority + 1);
|
85
|
-
LocalityMap& locality_map = priorities_[locality.priority];
|
86
|
-
locality_map.localities.emplace(locality.name, std::move(locality));
|
87
|
-
}
|
88
|
-
|
89
|
-
const XdsApi::PriorityListUpdate::LocalityMap* XdsApi::PriorityListUpdate::Find(
|
90
|
-
uint32_t priority) const {
|
91
|
-
if (!Contains(priority)) return nullptr;
|
92
|
-
return &priorities_[priority];
|
93
|
-
}
|
94
|
-
|
95
|
-
bool XdsApi::PriorityListUpdate::Contains(
|
96
|
-
const RefCountedPtr<XdsLocalityName>& name) {
|
97
|
-
for (size_t i = 0; i < priorities_.size(); ++i) {
|
98
|
-
const LocalityMap& locality_map = priorities_[i];
|
99
|
-
if (locality_map.Contains(name)) return true;
|
100
|
-
}
|
101
|
-
return false;
|
102
|
-
}
|
103
|
-
|
104
|
-
//
|
105
|
-
// XdsApi::DropConfig
|
106
|
-
//
|
107
|
-
|
108
|
-
bool XdsApi::DropConfig::ShouldDrop(const std::string** category_name) const {
|
109
|
-
for (size_t i = 0; i < drop_category_list_.size(); ++i) {
|
110
|
-
const auto& drop_category = drop_category_list_[i];
|
111
|
-
// Generate a random number in [0, 1000000).
|
112
|
-
const uint32_t random = static_cast<uint32_t>(rand()) % 1000000;
|
113
|
-
if (random < drop_category.parts_per_million) {
|
114
|
-
*category_name = &drop_category.name;
|
115
|
-
return true;
|
116
|
-
}
|
117
|
-
}
|
118
|
-
return false;
|
119
|
-
}
|
120
|
-
|
121
|
-
//
|
122
|
-
// XdsApi
|
123
|
-
//
|
124
|
-
|
125
|
-
const char* XdsApi::kLdsTypeUrl = "type.googleapis.com/envoy.api.v2.Listener";
|
126
|
-
const char* XdsApi::kRdsTypeUrl =
|
127
|
-
"type.googleapis.com/envoy.api.v2.RouteConfiguration";
|
128
|
-
const char* XdsApi::kCdsTypeUrl = "type.googleapis.com/envoy.api.v2.Cluster";
|
129
|
-
const char* XdsApi::kEdsTypeUrl =
|
130
|
-
"type.googleapis.com/envoy.api.v2.ClusterLoadAssignment";
|
131
|
-
|
132
|
-
namespace {
|
133
|
-
|
134
|
-
bool XdsRoutingEnabled() {
|
135
|
-
char* value = gpr_getenv("GRPC_XDS_EXPERIMENTAL_ROUTING");
|
136
|
-
bool parsed_value;
|
137
|
-
bool parse_succeeded = gpr_parse_bool_value(value, &parsed_value);
|
138
|
-
gpr_free(value);
|
139
|
-
return parse_succeeded && parsed_value;
|
140
|
-
}
|
141
|
-
|
142
|
-
} // namespace
|
143
|
-
|
144
|
-
XdsApi::XdsApi(XdsClient* client, TraceFlag* tracer,
|
145
|
-
const XdsBootstrap::Node* node)
|
146
|
-
: client_(client),
|
147
|
-
tracer_(tracer),
|
148
|
-
xds_routing_enabled_(XdsRoutingEnabled()),
|
149
|
-
node_(node),
|
150
|
-
build_version_(absl::StrCat("gRPC C-core ", GPR_PLATFORM_STRING, " ",
|
151
|
-
grpc_version_string())),
|
152
|
-
user_agent_name_(absl::StrCat("gRPC C-core ", GPR_PLATFORM_STRING)) {}
|
153
|
-
|
154
|
-
namespace {
|
155
|
-
|
156
|
-
void PopulateMetadataValue(upb_arena* arena, google_protobuf_Value* value_pb,
|
157
|
-
const Json& value);
|
158
|
-
|
159
|
-
void PopulateListValue(upb_arena* arena, google_protobuf_ListValue* list_value,
|
160
|
-
const Json::Array& values) {
|
161
|
-
for (const auto& value : values) {
|
162
|
-
auto* value_pb = google_protobuf_ListValue_add_values(list_value, arena);
|
163
|
-
PopulateMetadataValue(arena, value_pb, value);
|
164
|
-
}
|
165
|
-
}
|
166
|
-
|
167
|
-
void PopulateMetadata(upb_arena* arena, google_protobuf_Struct* metadata_pb,
|
168
|
-
const Json::Object& metadata) {
|
169
|
-
for (const auto& p : metadata) {
|
170
|
-
google_protobuf_Struct_FieldsEntry* field =
|
171
|
-
google_protobuf_Struct_add_fields(metadata_pb, arena);
|
172
|
-
google_protobuf_Struct_FieldsEntry_set_key(
|
173
|
-
field, upb_strview_makez(p.first.c_str()));
|
174
|
-
google_protobuf_Value* value =
|
175
|
-
google_protobuf_Struct_FieldsEntry_mutable_value(field, arena);
|
176
|
-
PopulateMetadataValue(arena, value, p.second);
|
177
|
-
}
|
178
|
-
}
|
179
|
-
|
180
|
-
void PopulateMetadataValue(upb_arena* arena, google_protobuf_Value* value_pb,
|
181
|
-
const Json& value) {
|
182
|
-
switch (value.type()) {
|
183
|
-
case Json::Type::JSON_NULL:
|
184
|
-
google_protobuf_Value_set_null_value(value_pb, 0);
|
185
|
-
break;
|
186
|
-
case Json::Type::NUMBER:
|
187
|
-
google_protobuf_Value_set_number_value(
|
188
|
-
value_pb, strtod(value.string_value().c_str(), nullptr));
|
189
|
-
break;
|
190
|
-
case Json::Type::STRING:
|
191
|
-
google_protobuf_Value_set_string_value(
|
192
|
-
value_pb, upb_strview_makez(value.string_value().c_str()));
|
193
|
-
break;
|
194
|
-
case Json::Type::JSON_TRUE:
|
195
|
-
google_protobuf_Value_set_bool_value(value_pb, true);
|
196
|
-
break;
|
197
|
-
case Json::Type::JSON_FALSE:
|
198
|
-
google_protobuf_Value_set_bool_value(value_pb, false);
|
199
|
-
break;
|
200
|
-
case Json::Type::OBJECT: {
|
201
|
-
google_protobuf_Struct* struct_value =
|
202
|
-
google_protobuf_Value_mutable_struct_value(value_pb, arena);
|
203
|
-
PopulateMetadata(arena, struct_value, value.object_value());
|
204
|
-
break;
|
205
|
-
}
|
206
|
-
case Json::Type::ARRAY: {
|
207
|
-
google_protobuf_ListValue* list_value =
|
208
|
-
google_protobuf_Value_mutable_list_value(value_pb, arena);
|
209
|
-
PopulateListValue(arena, list_value, value.array_value());
|
210
|
-
break;
|
211
|
-
}
|
212
|
-
}
|
213
|
-
}
|
214
|
-
|
215
|
-
void PopulateNode(upb_arena* arena, const XdsBootstrap::Node* node,
|
216
|
-
const std::string& build_version,
|
217
|
-
const std::string& user_agent_name,
|
218
|
-
const std::string& server_name,
|
219
|
-
envoy_api_v2_core_Node* node_msg) {
|
220
|
-
if (node != nullptr) {
|
221
|
-
if (!node->id.empty()) {
|
222
|
-
envoy_api_v2_core_Node_set_id(node_msg,
|
223
|
-
upb_strview_makez(node->id.c_str()));
|
224
|
-
}
|
225
|
-
if (!node->cluster.empty()) {
|
226
|
-
envoy_api_v2_core_Node_set_cluster(
|
227
|
-
node_msg, upb_strview_makez(node->cluster.c_str()));
|
228
|
-
}
|
229
|
-
if (!node->metadata.object_value().empty()) {
|
230
|
-
google_protobuf_Struct* metadata =
|
231
|
-
envoy_api_v2_core_Node_mutable_metadata(node_msg, arena);
|
232
|
-
PopulateMetadata(arena, metadata, node->metadata.object_value());
|
233
|
-
}
|
234
|
-
if (!server_name.empty()) {
|
235
|
-
google_protobuf_Struct* metadata =
|
236
|
-
envoy_api_v2_core_Node_mutable_metadata(node_msg, arena);
|
237
|
-
google_protobuf_Struct_FieldsEntry* field =
|
238
|
-
google_protobuf_Struct_add_fields(metadata, arena);
|
239
|
-
google_protobuf_Struct_FieldsEntry_set_key(
|
240
|
-
field, upb_strview_makez("PROXYLESS_CLIENT_HOSTNAME"));
|
241
|
-
google_protobuf_Value* value =
|
242
|
-
google_protobuf_Struct_FieldsEntry_mutable_value(field, arena);
|
243
|
-
google_protobuf_Value_set_string_value(
|
244
|
-
value, upb_strview_make(server_name.data(), server_name.size()));
|
245
|
-
}
|
246
|
-
if (!node->locality_region.empty() || !node->locality_zone.empty() ||
|
247
|
-
!node->locality_subzone.empty()) {
|
248
|
-
envoy_api_v2_core_Locality* locality =
|
249
|
-
envoy_api_v2_core_Node_mutable_locality(node_msg, arena);
|
250
|
-
if (!node->locality_region.empty()) {
|
251
|
-
envoy_api_v2_core_Locality_set_region(
|
252
|
-
locality, upb_strview_makez(node->locality_region.c_str()));
|
253
|
-
}
|
254
|
-
if (!node->locality_zone.empty()) {
|
255
|
-
envoy_api_v2_core_Locality_set_zone(
|
256
|
-
locality, upb_strview_makez(node->locality_zone.c_str()));
|
257
|
-
}
|
258
|
-
if (!node->locality_subzone.empty()) {
|
259
|
-
envoy_api_v2_core_Locality_set_sub_zone(
|
260
|
-
locality, upb_strview_makez(node->locality_subzone.c_str()));
|
261
|
-
}
|
262
|
-
}
|
263
|
-
}
|
264
|
-
envoy_api_v2_core_Node_set_build_version(
|
265
|
-
node_msg, upb_strview_make(build_version.data(), build_version.size()));
|
266
|
-
envoy_api_v2_core_Node_set_user_agent_name(
|
267
|
-
node_msg,
|
268
|
-
upb_strview_make(user_agent_name.data(), user_agent_name.size()));
|
269
|
-
envoy_api_v2_core_Node_set_user_agent_version(
|
270
|
-
node_msg, upb_strview_makez(grpc_version_string()));
|
271
|
-
envoy_api_v2_core_Node_add_client_features(
|
272
|
-
node_msg, upb_strview_makez("envoy.lb.does_not_support_overprovisioning"),
|
273
|
-
arena);
|
274
|
-
}
|
275
|
-
|
276
|
-
inline absl::string_view UpbStringToAbsl(const upb_strview& str) {
|
277
|
-
return absl::string_view(str.data, str.size);
|
278
|
-
}
|
279
|
-
|
280
|
-
inline std::string UpbStringToStdString(const upb_strview& str) {
|
281
|
-
return std::string(str.data, str.size);
|
282
|
-
}
|
283
|
-
|
284
|
-
inline void AddStringField(const char* name, const upb_strview& value,
|
285
|
-
std::vector<std::string>* fields,
|
286
|
-
bool add_if_empty = false) {
|
287
|
-
if (value.size > 0 || add_if_empty) {
|
288
|
-
fields->emplace_back(
|
289
|
-
absl::StrCat(name, ": \"", UpbStringToAbsl(value), "\""));
|
290
|
-
}
|
291
|
-
}
|
292
|
-
|
293
|
-
inline void AddUInt32ValueField(const char* name,
|
294
|
-
const google_protobuf_UInt32Value* value,
|
295
|
-
std::vector<std::string>* fields) {
|
296
|
-
if (value != nullptr) {
|
297
|
-
fields->emplace_back(absl::StrCat(
|
298
|
-
name, " { value: ", google_protobuf_UInt32Value_value(value), " }"));
|
299
|
-
}
|
300
|
-
}
|
301
|
-
|
302
|
-
inline void AddLocalityField(int indent_level,
|
303
|
-
const envoy_api_v2_core_Locality* locality,
|
304
|
-
std::vector<std::string>* fields) {
|
305
|
-
std::string indent =
|
306
|
-
absl::StrJoin(std::vector<std::string>(indent_level, " "), "");
|
307
|
-
// region
|
308
|
-
std::string field = absl::StrCat(indent, "region");
|
309
|
-
AddStringField(field.c_str(), envoy_api_v2_core_Locality_region(locality),
|
310
|
-
fields);
|
311
|
-
// zone
|
312
|
-
field = absl::StrCat(indent, "zone");
|
313
|
-
AddStringField(field.c_str(), envoy_api_v2_core_Locality_zone(locality),
|
314
|
-
fields);
|
315
|
-
// sub_zone
|
316
|
-
field = absl::StrCat(indent, "sub_zone");
|
317
|
-
AddStringField(field.c_str(), envoy_api_v2_core_Locality_sub_zone(locality),
|
318
|
-
fields);
|
319
|
-
}
|
320
|
-
|
321
|
-
void AddNodeLogFields(const envoy_api_v2_core_Node* node,
|
322
|
-
std::vector<std::string>* fields) {
|
323
|
-
fields->emplace_back("node {");
|
324
|
-
// id
|
325
|
-
AddStringField(" id", envoy_api_v2_core_Node_id(node), fields);
|
326
|
-
// metadata
|
327
|
-
const google_protobuf_Struct* metadata =
|
328
|
-
envoy_api_v2_core_Node_metadata(node);
|
329
|
-
if (metadata != nullptr) {
|
330
|
-
fields->emplace_back(" metadata {");
|
331
|
-
size_t num_entries;
|
332
|
-
const google_protobuf_Struct_FieldsEntry* const* entries =
|
333
|
-
google_protobuf_Struct_fields(metadata, &num_entries);
|
334
|
-
for (size_t i = 0; i < num_entries; ++i) {
|
335
|
-
fields->emplace_back(" field {");
|
336
|
-
// key
|
337
|
-
AddStringField(" key",
|
338
|
-
google_protobuf_Struct_FieldsEntry_key(entries[i]),
|
339
|
-
fields);
|
340
|
-
// value
|
341
|
-
const google_protobuf_Value* value =
|
342
|
-
google_protobuf_Struct_FieldsEntry_value(entries[i]);
|
343
|
-
if (value != nullptr) {
|
344
|
-
std::string value_str;
|
345
|
-
if (google_protobuf_Value_has_string_value(value)) {
|
346
|
-
value_str = absl::StrCat(
|
347
|
-
"string_value: \"",
|
348
|
-
UpbStringToAbsl(google_protobuf_Value_string_value(value)), "\"");
|
349
|
-
} else if (google_protobuf_Value_has_null_value(value)) {
|
350
|
-
value_str = "null_value: NULL_VALUE";
|
351
|
-
} else if (google_protobuf_Value_has_number_value(value)) {
|
352
|
-
value_str = absl::StrCat("double_value: ",
|
353
|
-
google_protobuf_Value_number_value(value));
|
354
|
-
} else if (google_protobuf_Value_has_bool_value(value)) {
|
355
|
-
value_str = absl::StrCat("bool_value: ",
|
356
|
-
google_protobuf_Value_bool_value(value));
|
357
|
-
} else if (google_protobuf_Value_has_struct_value(value)) {
|
358
|
-
value_str = "struct_value: <not printed>";
|
359
|
-
} else if (google_protobuf_Value_has_list_value(value)) {
|
360
|
-
value_str = "list_value: <not printed>";
|
361
|
-
} else {
|
362
|
-
value_str = "<unknown>";
|
363
|
-
}
|
364
|
-
fields->emplace_back(absl::StrCat(" value { ", value_str, " }"));
|
365
|
-
}
|
366
|
-
fields->emplace_back(" }");
|
367
|
-
}
|
368
|
-
fields->emplace_back(" }");
|
369
|
-
}
|
370
|
-
// locality
|
371
|
-
const envoy_api_v2_core_Locality* locality =
|
372
|
-
envoy_api_v2_core_Node_locality(node);
|
373
|
-
if (locality != nullptr) {
|
374
|
-
fields->emplace_back(" locality {");
|
375
|
-
AddLocalityField(2, locality, fields);
|
376
|
-
fields->emplace_back(" }");
|
377
|
-
}
|
378
|
-
// build_version
|
379
|
-
AddStringField(" build_version", envoy_api_v2_core_Node_build_version(node),
|
380
|
-
fields);
|
381
|
-
// user_agent_name
|
382
|
-
AddStringField(" user_agent_name",
|
383
|
-
envoy_api_v2_core_Node_user_agent_name(node), fields);
|
384
|
-
// user_agent_version
|
385
|
-
AddStringField(" user_agent_version",
|
386
|
-
envoy_api_v2_core_Node_user_agent_version(node), fields);
|
387
|
-
// client_features
|
388
|
-
size_t num_client_features;
|
389
|
-
const upb_strview* client_features =
|
390
|
-
envoy_api_v2_core_Node_client_features(node, &num_client_features);
|
391
|
-
for (size_t i = 0; i < num_client_features; ++i) {
|
392
|
-
AddStringField(" client_features", client_features[i], fields);
|
393
|
-
}
|
394
|
-
fields->emplace_back("}");
|
395
|
-
}
|
396
|
-
|
397
|
-
void MaybeLogDiscoveryRequest(XdsClient* client, TraceFlag* tracer,
|
398
|
-
const envoy_api_v2_DiscoveryRequest* request) {
|
399
|
-
if (GRPC_TRACE_FLAG_ENABLED(*tracer) &&
|
400
|
-
gpr_should_log(GPR_LOG_SEVERITY_DEBUG)) {
|
401
|
-
// TODO(roth): When we can upgrade upb, use upb textformat code to dump
|
402
|
-
// the raw proto instead of doing this manually.
|
403
|
-
std::vector<std::string> fields;
|
404
|
-
// version_info
|
405
|
-
AddStringField("version_info",
|
406
|
-
envoy_api_v2_DiscoveryRequest_version_info(request),
|
407
|
-
&fields);
|
408
|
-
// node
|
409
|
-
const envoy_api_v2_core_Node* node =
|
410
|
-
envoy_api_v2_DiscoveryRequest_node(request);
|
411
|
-
if (node != nullptr) AddNodeLogFields(node, &fields);
|
412
|
-
// resource_names
|
413
|
-
size_t num_resource_names;
|
414
|
-
const upb_strview* resource_names =
|
415
|
-
envoy_api_v2_DiscoveryRequest_resource_names(request,
|
416
|
-
&num_resource_names);
|
417
|
-
for (size_t i = 0; i < num_resource_names; ++i) {
|
418
|
-
AddStringField("resource_names", resource_names[i], &fields);
|
419
|
-
}
|
420
|
-
// type_url
|
421
|
-
AddStringField("type_url", envoy_api_v2_DiscoveryRequest_type_url(request),
|
422
|
-
&fields);
|
423
|
-
// response_nonce
|
424
|
-
AddStringField("response_nonce",
|
425
|
-
envoy_api_v2_DiscoveryRequest_response_nonce(request),
|
426
|
-
&fields);
|
427
|
-
// error_detail
|
428
|
-
const struct google_rpc_Status* error_detail =
|
429
|
-
envoy_api_v2_DiscoveryRequest_error_detail(request);
|
430
|
-
if (error_detail != nullptr) {
|
431
|
-
fields.emplace_back("error_detail {");
|
432
|
-
// code
|
433
|
-
int32_t code = google_rpc_Status_code(error_detail);
|
434
|
-
if (code != 0) fields.emplace_back(absl::StrCat(" code: ", code));
|
435
|
-
// message
|
436
|
-
AddStringField(" message", google_rpc_Status_message(error_detail),
|
437
|
-
&fields);
|
438
|
-
fields.emplace_back("}");
|
439
|
-
}
|
440
|
-
gpr_log(GPR_DEBUG, "[xds_client %p] constructed ADS request: %s", client,
|
441
|
-
absl::StrJoin(fields, "\n").c_str());
|
442
|
-
}
|
443
|
-
}
|
444
|
-
|
445
|
-
grpc_slice SerializeDiscoveryRequest(upb_arena* arena,
|
446
|
-
envoy_api_v2_DiscoveryRequest* request) {
|
447
|
-
size_t output_length;
|
448
|
-
char* output =
|
449
|
-
envoy_api_v2_DiscoveryRequest_serialize(request, arena, &output_length);
|
450
|
-
return grpc_slice_from_copied_buffer(output, output_length);
|
451
|
-
}
|
452
|
-
|
453
|
-
} // namespace
|
454
|
-
|
455
|
-
grpc_slice XdsApi::CreateAdsRequest(
|
456
|
-
const std::string& type_url,
|
457
|
-
const std::set<absl::string_view>& resource_names,
|
458
|
-
const std::string& version, const std::string& nonce, grpc_error* error,
|
459
|
-
bool populate_node) {
|
460
|
-
upb::Arena arena;
|
461
|
-
// Create a request.
|
462
|
-
envoy_api_v2_DiscoveryRequest* request =
|
463
|
-
envoy_api_v2_DiscoveryRequest_new(arena.ptr());
|
464
|
-
// Set type_url.
|
465
|
-
envoy_api_v2_DiscoveryRequest_set_type_url(
|
466
|
-
request, upb_strview_make(type_url.data(), type_url.size()));
|
467
|
-
// Set version_info.
|
468
|
-
if (!version.empty()) {
|
469
|
-
envoy_api_v2_DiscoveryRequest_set_version_info(
|
470
|
-
request, upb_strview_make(version.data(), version.size()));
|
471
|
-
}
|
472
|
-
// Set nonce.
|
473
|
-
if (!nonce.empty()) {
|
474
|
-
envoy_api_v2_DiscoveryRequest_set_response_nonce(
|
475
|
-
request, upb_strview_make(nonce.data(), nonce.size()));
|
476
|
-
}
|
477
|
-
// Set error_detail if it's a NACK.
|
478
|
-
if (error != GRPC_ERROR_NONE) {
|
479
|
-
grpc_slice error_description_slice;
|
480
|
-
GPR_ASSERT(grpc_error_get_str(error, GRPC_ERROR_STR_DESCRIPTION,
|
481
|
-
&error_description_slice));
|
482
|
-
upb_strview error_description_strview =
|
483
|
-
upb_strview_make(reinterpret_cast<const char*>(
|
484
|
-
GPR_SLICE_START_PTR(error_description_slice)),
|
485
|
-
GPR_SLICE_LENGTH(error_description_slice));
|
486
|
-
google_rpc_Status* error_detail =
|
487
|
-
envoy_api_v2_DiscoveryRequest_mutable_error_detail(request,
|
488
|
-
arena.ptr());
|
489
|
-
google_rpc_Status_set_message(error_detail, error_description_strview);
|
490
|
-
GRPC_ERROR_UNREF(error);
|
491
|
-
}
|
492
|
-
// Populate node.
|
493
|
-
if (populate_node) {
|
494
|
-
envoy_api_v2_core_Node* node_msg =
|
495
|
-
envoy_api_v2_DiscoveryRequest_mutable_node(request, arena.ptr());
|
496
|
-
PopulateNode(arena.ptr(), node_, build_version_, user_agent_name_, "",
|
497
|
-
node_msg);
|
498
|
-
}
|
499
|
-
// Add resource_names.
|
500
|
-
for (const auto& resource_name : resource_names) {
|
501
|
-
envoy_api_v2_DiscoveryRequest_add_resource_names(
|
502
|
-
request, upb_strview_make(resource_name.data(), resource_name.size()),
|
503
|
-
arena.ptr());
|
504
|
-
}
|
505
|
-
MaybeLogDiscoveryRequest(client_, tracer_, request);
|
506
|
-
return SerializeDiscoveryRequest(arena.ptr(), request);
|
507
|
-
}
|
508
|
-
|
509
|
-
namespace {
|
510
|
-
|
511
|
-
void MaybeLogDiscoveryResponse(XdsClient* client, TraceFlag* tracer,
|
512
|
-
const envoy_api_v2_DiscoveryResponse* response) {
|
513
|
-
if (GRPC_TRACE_FLAG_ENABLED(*tracer) &&
|
514
|
-
gpr_should_log(GPR_LOG_SEVERITY_DEBUG)) {
|
515
|
-
// TODO(roth): When we can upgrade upb, use upb textformat code to dump
|
516
|
-
// the raw proto instead of doing this manually.
|
517
|
-
std::vector<std::string> fields;
|
518
|
-
// version_info
|
519
|
-
AddStringField("version_info",
|
520
|
-
envoy_api_v2_DiscoveryResponse_version_info(response),
|
521
|
-
&fields);
|
522
|
-
// resources
|
523
|
-
size_t num_resources;
|
524
|
-
envoy_api_v2_DiscoveryResponse_resources(response, &num_resources);
|
525
|
-
fields.emplace_back(
|
526
|
-
absl::StrCat("resources: <", num_resources, " element(s)>"));
|
527
|
-
// type_url
|
528
|
-
AddStringField("type_url",
|
529
|
-
envoy_api_v2_DiscoveryResponse_type_url(response), &fields);
|
530
|
-
// nonce
|
531
|
-
AddStringField("nonce", envoy_api_v2_DiscoveryResponse_nonce(response),
|
532
|
-
&fields);
|
533
|
-
gpr_log(GPR_DEBUG, "[xds_client %p] received response: %s", client,
|
534
|
-
absl::StrJoin(fields, "\n").c_str());
|
535
|
-
}
|
536
|
-
}
|
537
|
-
|
538
|
-
void MaybeLogRouteConfiguration(
|
539
|
-
XdsClient* client, TraceFlag* tracer,
|
540
|
-
const envoy_api_v2_RouteConfiguration* route_config) {
|
541
|
-
if (GRPC_TRACE_FLAG_ENABLED(*tracer) &&
|
542
|
-
gpr_should_log(GPR_LOG_SEVERITY_DEBUG)) {
|
543
|
-
// TODO(roth): When we can upgrade upb, use upb textformat code to dump
|
544
|
-
// the raw proto instead of doing this manually.
|
545
|
-
std::vector<std::string> fields;
|
546
|
-
// name
|
547
|
-
AddStringField("name", envoy_api_v2_RouteConfiguration_name(route_config),
|
548
|
-
&fields);
|
549
|
-
// virtual_hosts
|
550
|
-
size_t num_virtual_hosts;
|
551
|
-
const envoy_api_v2_route_VirtualHost* const* virtual_hosts =
|
552
|
-
envoy_api_v2_RouteConfiguration_virtual_hosts(route_config,
|
553
|
-
&num_virtual_hosts);
|
554
|
-
for (size_t i = 0; i < num_virtual_hosts; ++i) {
|
555
|
-
const auto* virtual_host = virtual_hosts[i];
|
556
|
-
fields.push_back("virtual_hosts {");
|
557
|
-
// name
|
558
|
-
AddStringField(
|
559
|
-
" name", envoy_api_v2_route_VirtualHost_name(virtual_host), &fields);
|
560
|
-
// domains
|
561
|
-
size_t num_domains;
|
562
|
-
const upb_strview* const domains =
|
563
|
-
envoy_api_v2_route_VirtualHost_domains(virtual_host, &num_domains);
|
564
|
-
for (size_t j = 0; j < num_domains; ++j) {
|
565
|
-
AddStringField(" domains", domains[j], &fields);
|
566
|
-
}
|
567
|
-
// routes
|
568
|
-
size_t num_routes;
|
569
|
-
const envoy_api_v2_route_Route* const* routes =
|
570
|
-
envoy_api_v2_route_VirtualHost_routes(virtual_host, &num_routes);
|
571
|
-
for (size_t j = 0; j < num_routes; ++j) {
|
572
|
-
const auto* route = routes[j];
|
573
|
-
fields.push_back(" route {");
|
574
|
-
// name
|
575
|
-
AddStringField(" name", envoy_api_v2_route_Route_name(route),
|
576
|
-
&fields);
|
577
|
-
// match
|
578
|
-
const envoy_api_v2_route_RouteMatch* match =
|
579
|
-
envoy_api_v2_route_Route_match(route);
|
580
|
-
if (match != nullptr) {
|
581
|
-
fields.emplace_back(" match {");
|
582
|
-
// path matching
|
583
|
-
if (envoy_api_v2_route_RouteMatch_has_prefix(match)) {
|
584
|
-
AddStringField(" prefix",
|
585
|
-
envoy_api_v2_route_RouteMatch_prefix(match), &fields,
|
586
|
-
/*add_if_empty=*/true);
|
587
|
-
} else if (envoy_api_v2_route_RouteMatch_has_path(match)) {
|
588
|
-
AddStringField(" path",
|
589
|
-
envoy_api_v2_route_RouteMatch_path(match), &fields,
|
590
|
-
/*add_if_empty=*/true);
|
591
|
-
} else if (envoy_api_v2_route_RouteMatch_has_regex(match)) {
|
592
|
-
AddStringField(" regex",
|
593
|
-
envoy_api_v2_route_RouteMatch_regex(match), &fields,
|
594
|
-
/*add_if_empty=*/true);
|
595
|
-
} else if (envoy_api_v2_route_RouteMatch_has_safe_regex(match)) {
|
596
|
-
fields.emplace_back(" safe_regex: <not printed>");
|
597
|
-
} else {
|
598
|
-
fields.emplace_back(" <unknown path matching type>");
|
599
|
-
}
|
600
|
-
// header matching
|
601
|
-
size_t num_headers;
|
602
|
-
envoy_api_v2_route_RouteMatch_headers(match, &num_headers);
|
603
|
-
if (num_headers > 0) {
|
604
|
-
fields.emplace_back(
|
605
|
-
absl::StrCat(" headers: <", num_headers, " element(s)>"));
|
606
|
-
}
|
607
|
-
fields.emplace_back(" }");
|
608
|
-
}
|
609
|
-
// action
|
610
|
-
if (envoy_api_v2_route_Route_has_route(route)) {
|
611
|
-
const envoy_api_v2_route_RouteAction* action =
|
612
|
-
envoy_api_v2_route_Route_route(route);
|
613
|
-
fields.emplace_back(" route {");
|
614
|
-
if (envoy_api_v2_route_RouteAction_has_cluster(action)) {
|
615
|
-
AddStringField(" cluster",
|
616
|
-
envoy_api_v2_route_RouteAction_cluster(action),
|
617
|
-
&fields);
|
618
|
-
} else if (envoy_api_v2_route_RouteAction_has_cluster_header(
|
619
|
-
action)) {
|
620
|
-
AddStringField(
|
621
|
-
" cluster_header",
|
622
|
-
envoy_api_v2_route_RouteAction_cluster_header(action), &fields);
|
623
|
-
} else if (envoy_api_v2_route_RouteAction_has_weighted_clusters(
|
624
|
-
action)) {
|
625
|
-
const envoy_api_v2_route_WeightedCluster* weighted_clusters =
|
626
|
-
envoy_api_v2_route_RouteAction_weighted_clusters(action);
|
627
|
-
fields.emplace_back(" weighted_clusters {");
|
628
|
-
size_t num_cluster_weights;
|
629
|
-
const envoy_api_v2_route_WeightedCluster_ClusterWeight* const*
|
630
|
-
cluster_weights = envoy_api_v2_route_WeightedCluster_clusters(
|
631
|
-
weighted_clusters, &num_cluster_weights);
|
632
|
-
for (size_t i = 0; i < num_cluster_weights; ++i) {
|
633
|
-
const envoy_api_v2_route_WeightedCluster_ClusterWeight*
|
634
|
-
cluster_weight = cluster_weights[i];
|
635
|
-
fields.emplace_back(" clusters {");
|
636
|
-
AddStringField(
|
637
|
-
" name",
|
638
|
-
envoy_api_v2_route_WeightedCluster_ClusterWeight_name(
|
639
|
-
cluster_weight),
|
640
|
-
&fields);
|
641
|
-
AddUInt32ValueField(
|
642
|
-
" weight",
|
643
|
-
envoy_api_v2_route_WeightedCluster_ClusterWeight_weight(
|
644
|
-
cluster_weight),
|
645
|
-
&fields);
|
646
|
-
fields.emplace_back(" }");
|
647
|
-
}
|
648
|
-
AddUInt32ValueField(" total_weight",
|
649
|
-
envoy_api_v2_route_WeightedCluster_total_weight(
|
650
|
-
weighted_clusters),
|
651
|
-
&fields);
|
652
|
-
fields.emplace_back(" }");
|
653
|
-
}
|
654
|
-
fields.emplace_back(" }");
|
655
|
-
} else if (envoy_api_v2_route_Route_has_redirect(route)) {
|
656
|
-
fields.emplace_back(" redirect: <not printed>");
|
657
|
-
} else if (envoy_api_v2_route_Route_has_direct_response(route)) {
|
658
|
-
fields.emplace_back(" direct_response: <not printed>");
|
659
|
-
} else if (envoy_api_v2_route_Route_has_filter_action(route)) {
|
660
|
-
fields.emplace_back(" filter_action: <not printed>");
|
661
|
-
}
|
662
|
-
fields.push_back(" }");
|
663
|
-
}
|
664
|
-
fields.push_back("}");
|
665
|
-
}
|
666
|
-
gpr_log(GPR_DEBUG, "[xds_client %p] RouteConfiguration: %s", client,
|
667
|
-
absl::StrJoin(fields, "\n").c_str());
|
668
|
-
}
|
669
|
-
}
|
670
|
-
|
671
|
-
void MaybeLogCluster(XdsClient* client, TraceFlag* tracer,
|
672
|
-
const envoy_api_v2_Cluster* cluster) {
|
673
|
-
if (GRPC_TRACE_FLAG_ENABLED(*tracer) &&
|
674
|
-
gpr_should_log(GPR_LOG_SEVERITY_DEBUG)) {
|
675
|
-
// TODO(roth): When we can upgrade upb, use upb textformat code to dump
|
676
|
-
// the raw proto instead of doing this manually.
|
677
|
-
std::vector<std::string> fields;
|
678
|
-
// name
|
679
|
-
AddStringField("name", envoy_api_v2_Cluster_name(cluster), &fields);
|
680
|
-
// type
|
681
|
-
if (envoy_api_v2_Cluster_has_type(cluster)) {
|
682
|
-
fields.emplace_back(
|
683
|
-
absl::StrCat("type: ", envoy_api_v2_Cluster_type(cluster)));
|
684
|
-
} else if (envoy_api_v2_Cluster_has_cluster_type(cluster)) {
|
685
|
-
fields.emplace_back("cluster_type: <not printed>");
|
686
|
-
} else {
|
687
|
-
fields.emplace_back("<unknown type>");
|
688
|
-
}
|
689
|
-
// eds_cluster_config
|
690
|
-
const envoy_api_v2_Cluster_EdsClusterConfig* eds_cluster_config =
|
691
|
-
envoy_api_v2_Cluster_eds_cluster_config(cluster);
|
692
|
-
if (eds_cluster_config != nullptr) {
|
693
|
-
fields.emplace_back("eds_cluster_config {");
|
694
|
-
// eds_config
|
695
|
-
const struct envoy_api_v2_core_ConfigSource* eds_config =
|
696
|
-
envoy_api_v2_Cluster_EdsClusterConfig_eds_config(eds_cluster_config);
|
697
|
-
if (eds_config != nullptr) {
|
698
|
-
if (envoy_api_v2_core_ConfigSource_has_ads(eds_config)) {
|
699
|
-
fields.emplace_back(" eds_config { ads {} }");
|
700
|
-
} else {
|
701
|
-
fields.emplace_back(" eds_config: <non-ADS type>");
|
702
|
-
}
|
703
|
-
}
|
704
|
-
// service_name
|
705
|
-
AddStringField(" service_name",
|
706
|
-
envoy_api_v2_Cluster_EdsClusterConfig_service_name(
|
707
|
-
eds_cluster_config),
|
708
|
-
&fields);
|
709
|
-
fields.emplace_back("}");
|
710
|
-
}
|
711
|
-
// lb_policy
|
712
|
-
fields.emplace_back(
|
713
|
-
absl::StrCat("lb_policy: ", envoy_api_v2_Cluster_lb_policy(cluster)));
|
714
|
-
// lrs_server
|
715
|
-
const envoy_api_v2_core_ConfigSource* lrs_server =
|
716
|
-
envoy_api_v2_Cluster_lrs_server(cluster);
|
717
|
-
if (lrs_server != nullptr) {
|
718
|
-
if (envoy_api_v2_core_ConfigSource_has_self(lrs_server)) {
|
719
|
-
fields.emplace_back("lrs_server { self {} }");
|
720
|
-
} else {
|
721
|
-
fields.emplace_back("lrs_server: <non-self type>");
|
722
|
-
}
|
723
|
-
}
|
724
|
-
gpr_log(GPR_DEBUG, "[xds_client %p] Cluster: %s", client,
|
725
|
-
absl::StrJoin(fields, "\n").c_str());
|
726
|
-
}
|
727
|
-
}
|
728
|
-
|
729
|
-
void MaybeLogClusterLoadAssignment(
|
730
|
-
XdsClient* client, TraceFlag* tracer,
|
731
|
-
const envoy_api_v2_ClusterLoadAssignment* cla) {
|
732
|
-
if (GRPC_TRACE_FLAG_ENABLED(*tracer) &&
|
733
|
-
gpr_should_log(GPR_LOG_SEVERITY_DEBUG)) {
|
734
|
-
// TODO(roth): When we can upgrade upb, use upb textformat code to dump
|
735
|
-
// the raw proto instead of doing this manually.
|
736
|
-
std::vector<std::string> fields;
|
737
|
-
// cluster_name
|
738
|
-
AddStringField("cluster_name",
|
739
|
-
envoy_api_v2_ClusterLoadAssignment_cluster_name(cla),
|
740
|
-
&fields);
|
741
|
-
// endpoints
|
742
|
-
size_t num_localities;
|
743
|
-
const struct envoy_api_v2_endpoint_LocalityLbEndpoints* const*
|
744
|
-
locality_endpoints =
|
745
|
-
envoy_api_v2_ClusterLoadAssignment_endpoints(cla, &num_localities);
|
746
|
-
for (size_t i = 0; i < num_localities; ++i) {
|
747
|
-
const auto* locality_endpoint = locality_endpoints[i];
|
748
|
-
fields.emplace_back("endpoints {");
|
749
|
-
// locality
|
750
|
-
const auto* locality =
|
751
|
-
envoy_api_v2_endpoint_LocalityLbEndpoints_locality(locality_endpoint);
|
752
|
-
if (locality != nullptr) {
|
753
|
-
fields.emplace_back(" locality {");
|
754
|
-
AddLocalityField(2, locality, &fields);
|
755
|
-
fields.emplace_back(" }");
|
756
|
-
}
|
757
|
-
// lb_endpoints
|
758
|
-
size_t num_lb_endpoints;
|
759
|
-
const envoy_api_v2_endpoint_LbEndpoint* const* lb_endpoints =
|
760
|
-
envoy_api_v2_endpoint_LocalityLbEndpoints_lb_endpoints(
|
761
|
-
locality_endpoint, &num_lb_endpoints);
|
762
|
-
for (size_t j = 0; j < num_lb_endpoints; ++j) {
|
763
|
-
const auto* lb_endpoint = lb_endpoints[j];
|
764
|
-
fields.emplace_back(" lb_endpoints {");
|
765
|
-
// health_status
|
766
|
-
uint32_t health_status =
|
767
|
-
envoy_api_v2_endpoint_LbEndpoint_health_status(lb_endpoint);
|
768
|
-
if (health_status > 0) {
|
769
|
-
fields.emplace_back(
|
770
|
-
absl::StrCat(" health_status: ", health_status));
|
771
|
-
}
|
772
|
-
// endpoint
|
773
|
-
const envoy_api_v2_endpoint_Endpoint* endpoint =
|
774
|
-
envoy_api_v2_endpoint_LbEndpoint_endpoint(lb_endpoint);
|
775
|
-
if (endpoint != nullptr) {
|
776
|
-
fields.emplace_back(" endpoint {");
|
777
|
-
// address
|
778
|
-
const auto* address =
|
779
|
-
envoy_api_v2_endpoint_Endpoint_address(endpoint);
|
780
|
-
if (address != nullptr) {
|
781
|
-
fields.emplace_back(" address {");
|
782
|
-
// socket_address
|
783
|
-
const auto* socket_address =
|
784
|
-
envoy_api_v2_core_Address_socket_address(address);
|
785
|
-
if (socket_address != nullptr) {
|
786
|
-
fields.emplace_back(" socket_address {");
|
787
|
-
// address
|
788
|
-
AddStringField(
|
789
|
-
" address",
|
790
|
-
envoy_api_v2_core_SocketAddress_address(socket_address),
|
791
|
-
&fields);
|
792
|
-
// port_value
|
793
|
-
if (envoy_api_v2_core_SocketAddress_has_port_value(
|
794
|
-
socket_address)) {
|
795
|
-
fields.emplace_back(
|
796
|
-
absl::StrCat(" port_value: ",
|
797
|
-
envoy_api_v2_core_SocketAddress_port_value(
|
798
|
-
socket_address)));
|
799
|
-
} else {
|
800
|
-
fields.emplace_back(" <non-numeric port>");
|
801
|
-
}
|
802
|
-
fields.emplace_back(" }");
|
803
|
-
} else {
|
804
|
-
fields.emplace_back(" <non-socket address>");
|
805
|
-
}
|
806
|
-
fields.emplace_back(" }");
|
807
|
-
}
|
808
|
-
fields.emplace_back(" }");
|
809
|
-
}
|
810
|
-
fields.emplace_back(" }");
|
811
|
-
}
|
812
|
-
// load_balancing_weight
|
813
|
-
AddUInt32ValueField(
|
814
|
-
" load_balancing_weight",
|
815
|
-
envoy_api_v2_endpoint_LocalityLbEndpoints_load_balancing_weight(
|
816
|
-
locality_endpoint),
|
817
|
-
&fields);
|
818
|
-
// priority
|
819
|
-
uint32_t priority =
|
820
|
-
envoy_api_v2_endpoint_LocalityLbEndpoints_priority(locality_endpoint);
|
821
|
-
if (priority > 0) {
|
822
|
-
fields.emplace_back(absl::StrCat(" priority: ", priority));
|
823
|
-
}
|
824
|
-
fields.emplace_back("}");
|
825
|
-
}
|
826
|
-
// policy
|
827
|
-
const envoy_api_v2_ClusterLoadAssignment_Policy* policy =
|
828
|
-
envoy_api_v2_ClusterLoadAssignment_policy(cla);
|
829
|
-
if (policy != nullptr) {
|
830
|
-
fields.emplace_back("policy {");
|
831
|
-
// drop_overloads
|
832
|
-
size_t num_drop_overloads;
|
833
|
-
const envoy_api_v2_ClusterLoadAssignment_Policy_DropOverload* const*
|
834
|
-
drop_overloads =
|
835
|
-
envoy_api_v2_ClusterLoadAssignment_Policy_drop_overloads(
|
836
|
-
policy, &num_drop_overloads);
|
837
|
-
for (size_t i = 0; i < num_drop_overloads; ++i) {
|
838
|
-
auto* drop_overload = drop_overloads[i];
|
839
|
-
fields.emplace_back(" drop_overloads {");
|
840
|
-
// category
|
841
|
-
AddStringField(
|
842
|
-
" category",
|
843
|
-
envoy_api_v2_ClusterLoadAssignment_Policy_DropOverload_category(
|
844
|
-
drop_overload),
|
845
|
-
&fields);
|
846
|
-
// drop_percentage
|
847
|
-
const auto* drop_percentage =
|
848
|
-
envoy_api_v2_ClusterLoadAssignment_Policy_DropOverload_drop_percentage(
|
849
|
-
drop_overload);
|
850
|
-
if (drop_percentage != nullptr) {
|
851
|
-
fields.emplace_back(" drop_percentage {");
|
852
|
-
fields.emplace_back(absl::StrCat(
|
853
|
-
" numerator: ",
|
854
|
-
envoy_type_FractionalPercent_numerator(drop_percentage)));
|
855
|
-
fields.emplace_back(absl::StrCat(
|
856
|
-
" denominator: ",
|
857
|
-
envoy_type_FractionalPercent_denominator(drop_percentage)));
|
858
|
-
fields.emplace_back(" }");
|
859
|
-
}
|
860
|
-
fields.emplace_back(" }");
|
861
|
-
}
|
862
|
-
// overprovisioning_factor
|
863
|
-
fields.emplace_back("}");
|
864
|
-
}
|
865
|
-
gpr_log(GPR_DEBUG, "[xds_client %p] ClusterLoadAssignment: %s", client,
|
866
|
-
absl::StrJoin(fields, "\n").c_str());
|
867
|
-
}
|
868
|
-
}
|
869
|
-
|
870
|
-
// Better match type has smaller value.
|
871
|
-
enum MatchType {
|
872
|
-
EXACT_MATCH,
|
873
|
-
SUFFIX_MATCH,
|
874
|
-
PREFIX_MATCH,
|
875
|
-
UNIVERSE_MATCH,
|
876
|
-
INVALID_MATCH,
|
877
|
-
};
|
878
|
-
|
879
|
-
// Returns true if match succeeds.
|
880
|
-
bool DomainMatch(MatchType match_type, std::string domain_pattern,
|
881
|
-
std::string expected_host_name) {
|
882
|
-
// Normalize the args to lower-case. Domain matching is case-insensitive.
|
883
|
-
std::transform(domain_pattern.begin(), domain_pattern.end(),
|
884
|
-
domain_pattern.begin(),
|
885
|
-
[](unsigned char c) { return std::tolower(c); });
|
886
|
-
std::transform(expected_host_name.begin(), expected_host_name.end(),
|
887
|
-
expected_host_name.begin(),
|
888
|
-
[](unsigned char c) { return std::tolower(c); });
|
889
|
-
if (match_type == EXACT_MATCH) {
|
890
|
-
return domain_pattern == expected_host_name;
|
891
|
-
} else if (match_type == SUFFIX_MATCH) {
|
892
|
-
// Asterisk must match at least one char.
|
893
|
-
if (expected_host_name.size() < domain_pattern.size()) return false;
|
894
|
-
absl::string_view pattern_suffix(domain_pattern.c_str() + 1);
|
895
|
-
absl::string_view host_suffix(expected_host_name.c_str() +
|
896
|
-
expected_host_name.size() -
|
897
|
-
pattern_suffix.size());
|
898
|
-
return pattern_suffix == host_suffix;
|
899
|
-
} else if (match_type == PREFIX_MATCH) {
|
900
|
-
// Asterisk must match at least one char.
|
901
|
-
if (expected_host_name.size() < domain_pattern.size()) return false;
|
902
|
-
absl::string_view pattern_prefix(domain_pattern.c_str(),
|
903
|
-
domain_pattern.size() - 1);
|
904
|
-
absl::string_view host_prefix(expected_host_name.c_str(),
|
905
|
-
pattern_prefix.size());
|
906
|
-
return pattern_prefix == host_prefix;
|
907
|
-
} else {
|
908
|
-
return match_type == UNIVERSE_MATCH;
|
909
|
-
}
|
910
|
-
}
|
911
|
-
|
912
|
-
MatchType DomainPatternMatchType(const std::string& domain_pattern) {
|
913
|
-
if (domain_pattern.empty()) return INVALID_MATCH;
|
914
|
-
if (domain_pattern.find('*') == std::string::npos) return EXACT_MATCH;
|
915
|
-
if (domain_pattern == "*") return UNIVERSE_MATCH;
|
916
|
-
if (domain_pattern[0] == '*') return SUFFIX_MATCH;
|
917
|
-
if (domain_pattern[domain_pattern.size() - 1] == '*') return PREFIX_MATCH;
|
918
|
-
return INVALID_MATCH;
|
919
|
-
}
|
920
|
-
|
921
|
-
grpc_error* RouteActionParse(const envoy_api_v2_route_Route* route,
|
922
|
-
XdsApi::RdsUpdate::RdsRoute* rds_route) {
|
923
|
-
if (!envoy_api_v2_route_Route_has_route(route)) {
|
924
|
-
return GRPC_ERROR_CREATE_FROM_STATIC_STRING(
|
925
|
-
"No RouteAction found in route.");
|
926
|
-
}
|
927
|
-
const envoy_api_v2_route_RouteAction* route_action =
|
928
|
-
envoy_api_v2_route_Route_route(route);
|
929
|
-
// Get the cluster or weighted_clusters in the RouteAction.
|
930
|
-
if (envoy_api_v2_route_RouteAction_has_cluster(route_action)) {
|
931
|
-
const upb_strview cluster_name =
|
932
|
-
envoy_api_v2_route_RouteAction_cluster(route_action);
|
933
|
-
if (cluster_name.size == 0) {
|
934
|
-
return GRPC_ERROR_CREATE_FROM_STATIC_STRING(
|
935
|
-
"RouteAction cluster contains empty cluster name.");
|
936
|
-
}
|
937
|
-
rds_route->cluster_name = UpbStringToStdString(cluster_name);
|
938
|
-
} else if (envoy_api_v2_route_RouteAction_has_weighted_clusters(
|
939
|
-
route_action)) {
|
940
|
-
const envoy_api_v2_route_WeightedCluster* weighted_cluster =
|
941
|
-
envoy_api_v2_route_RouteAction_weighted_clusters(route_action);
|
942
|
-
uint32_t total_weight = 100;
|
943
|
-
const google_protobuf_UInt32Value* weight =
|
944
|
-
envoy_api_v2_route_WeightedCluster_total_weight(weighted_cluster);
|
945
|
-
if (weight != nullptr) {
|
946
|
-
total_weight = google_protobuf_UInt32Value_value(weight);
|
947
|
-
}
|
948
|
-
size_t clusters_size;
|
949
|
-
const envoy_api_v2_route_WeightedCluster_ClusterWeight* const* clusters =
|
950
|
-
envoy_api_v2_route_WeightedCluster_clusters(weighted_cluster,
|
951
|
-
&clusters_size);
|
952
|
-
uint32_t sum_of_weights = 0;
|
953
|
-
for (size_t j = 0; j < clusters_size; ++j) {
|
954
|
-
const envoy_api_v2_route_WeightedCluster_ClusterWeight* cluster_weight =
|
955
|
-
clusters[j];
|
956
|
-
XdsApi::RdsUpdate::RdsRoute::ClusterWeight cluster;
|
957
|
-
cluster.name = UpbStringToStdString(
|
958
|
-
envoy_api_v2_route_WeightedCluster_ClusterWeight_name(
|
959
|
-
cluster_weight));
|
960
|
-
if (cluster.name.empty()) {
|
961
|
-
return GRPC_ERROR_CREATE_FROM_STATIC_STRING(
|
962
|
-
"RouteAction weighted_cluster cluster contains empty cluster "
|
963
|
-
"name.");
|
964
|
-
}
|
965
|
-
const google_protobuf_UInt32Value* weight =
|
966
|
-
envoy_api_v2_route_WeightedCluster_ClusterWeight_weight(
|
967
|
-
cluster_weight);
|
968
|
-
if (weight == nullptr) {
|
969
|
-
return GRPC_ERROR_CREATE_FROM_STATIC_STRING(
|
970
|
-
"RouteAction weighted_cluster cluster missing weight");
|
971
|
-
}
|
972
|
-
cluster.weight = google_protobuf_UInt32Value_value(weight);
|
973
|
-
sum_of_weights += cluster.weight;
|
974
|
-
rds_route->weighted_clusters.emplace_back(std::move(cluster));
|
975
|
-
}
|
976
|
-
if (total_weight != sum_of_weights) {
|
977
|
-
return GRPC_ERROR_CREATE_FROM_STATIC_STRING(
|
978
|
-
"RouteAction weighted_cluster has incorrect total weight");
|
979
|
-
}
|
980
|
-
if (rds_route->weighted_clusters.empty()) {
|
981
|
-
return GRPC_ERROR_CREATE_FROM_STATIC_STRING(
|
982
|
-
"RouteAction weighted_cluster has no valid clusters specified.");
|
983
|
-
}
|
984
|
-
} else {
|
985
|
-
return GRPC_ERROR_CREATE_FROM_STATIC_STRING(
|
986
|
-
"No cluster or weighted_clusters found in RouteAction.");
|
987
|
-
}
|
988
|
-
return GRPC_ERROR_NONE;
|
989
|
-
}
|
990
|
-
|
991
|
-
grpc_error* RouteConfigParse(
|
992
|
-
XdsClient* client, TraceFlag* tracer,
|
993
|
-
const envoy_api_v2_RouteConfiguration* route_config,
|
994
|
-
const std::string& expected_server_name, const bool xds_routing_enabled,
|
995
|
-
XdsApi::RdsUpdate* rds_update) {
|
996
|
-
MaybeLogRouteConfiguration(client, tracer, route_config);
|
997
|
-
// Get the virtual hosts.
|
998
|
-
size_t size;
|
999
|
-
const envoy_api_v2_route_VirtualHost* const* virtual_hosts =
|
1000
|
-
envoy_api_v2_RouteConfiguration_virtual_hosts(route_config, &size);
|
1001
|
-
// Find the best matched virtual host.
|
1002
|
-
// The search order for 4 groups of domain patterns:
|
1003
|
-
// 1. Exact match.
|
1004
|
-
// 2. Suffix match (e.g., "*ABC").
|
1005
|
-
// 3. Prefix match (e.g., "ABC*").
|
1006
|
-
// 4. Universe match (i.e., "*").
|
1007
|
-
// Within each group, longest match wins.
|
1008
|
-
// If the same best matched domain pattern appears in multiple virtual hosts,
|
1009
|
-
// the first matched virtual host wins.
|
1010
|
-
const envoy_api_v2_route_VirtualHost* target_virtual_host = nullptr;
|
1011
|
-
MatchType best_match_type = INVALID_MATCH;
|
1012
|
-
size_t longest_match = 0;
|
1013
|
-
// Check each domain pattern in each virtual host to determine the best
|
1014
|
-
// matched virtual host.
|
1015
|
-
for (size_t i = 0; i < size; ++i) {
|
1016
|
-
size_t domain_size;
|
1017
|
-
upb_strview const* domains =
|
1018
|
-
envoy_api_v2_route_VirtualHost_domains(virtual_hosts[i], &domain_size);
|
1019
|
-
for (size_t j = 0; j < domain_size; ++j) {
|
1020
|
-
const std::string domain_pattern(domains[j].data, domains[j].size);
|
1021
|
-
// Check the match type first. Skip the pattern if it's not better than
|
1022
|
-
// current match.
|
1023
|
-
const MatchType match_type = DomainPatternMatchType(domain_pattern);
|
1024
|
-
if (match_type == INVALID_MATCH) {
|
1025
|
-
return GRPC_ERROR_CREATE_FROM_STATIC_STRING("Invalid domain pattern.");
|
1026
|
-
}
|
1027
|
-
if (match_type > best_match_type) continue;
|
1028
|
-
if (match_type == best_match_type &&
|
1029
|
-
domain_pattern.size() <= longest_match) {
|
1030
|
-
continue;
|
1031
|
-
}
|
1032
|
-
// Skip if match fails.
|
1033
|
-
if (!DomainMatch(match_type, domain_pattern, expected_server_name)) {
|
1034
|
-
continue;
|
1035
|
-
}
|
1036
|
-
// Choose this match.
|
1037
|
-
target_virtual_host = virtual_hosts[i];
|
1038
|
-
best_match_type = match_type;
|
1039
|
-
longest_match = domain_pattern.size();
|
1040
|
-
if (best_match_type == EXACT_MATCH) break;
|
1041
|
-
}
|
1042
|
-
if (best_match_type == EXACT_MATCH) break;
|
1043
|
-
}
|
1044
|
-
if (target_virtual_host == nullptr) {
|
1045
|
-
return GRPC_ERROR_CREATE_FROM_STATIC_STRING(
|
1046
|
-
"No matched virtual host found in the route config.");
|
1047
|
-
}
|
1048
|
-
// Get the route list from the matched virtual host.
|
1049
|
-
const envoy_api_v2_route_Route* const* routes =
|
1050
|
-
envoy_api_v2_route_VirtualHost_routes(target_virtual_host, &size);
|
1051
|
-
if (size < 1) {
|
1052
|
-
return GRPC_ERROR_CREATE_FROM_STATIC_STRING(
|
1053
|
-
"No route found in the virtual host.");
|
1054
|
-
}
|
1055
|
-
// If xds_routing is not configured, only look at the last one in the route
|
1056
|
-
// list (the default route)
|
1057
|
-
if (!xds_routing_enabled) {
|
1058
|
-
const envoy_api_v2_route_Route* route = routes[size - 1];
|
1059
|
-
const envoy_api_v2_route_RouteMatch* match =
|
1060
|
-
envoy_api_v2_route_Route_match(route);
|
1061
|
-
XdsApi::RdsUpdate::RdsRoute rds_route;
|
1062
|
-
// if xds routing is not enabled, we must be working on the default route;
|
1063
|
-
// in this case, we must have an empty or single slash prefix.
|
1064
|
-
if (!envoy_api_v2_route_RouteMatch_has_prefix(match)) {
|
1065
|
-
return GRPC_ERROR_CREATE_FROM_STATIC_STRING(
|
1066
|
-
"No prefix field found in Default RouteMatch.");
|
1067
|
-
}
|
1068
|
-
const upb_strview prefix = envoy_api_v2_route_RouteMatch_prefix(match);
|
1069
|
-
if (!upb_strview_eql(prefix, upb_strview_makez("")) &&
|
1070
|
-
!upb_strview_eql(prefix, upb_strview_makez("/"))) {
|
1071
|
-
return GRPC_ERROR_CREATE_FROM_STATIC_STRING(
|
1072
|
-
"Default route must have empty prefix.");
|
1073
|
-
}
|
1074
|
-
grpc_error* error = RouteActionParse(route, &rds_route);
|
1075
|
-
if (error != GRPC_ERROR_NONE) return error;
|
1076
|
-
rds_update->routes.emplace_back(std::move(rds_route));
|
1077
|
-
return GRPC_ERROR_NONE;
|
1078
|
-
}
|
1079
|
-
// Loop over the whole list of routes
|
1080
|
-
for (size_t i = 0; i < size; ++i) {
|
1081
|
-
const envoy_api_v2_route_Route* route = routes[i];
|
1082
|
-
const envoy_api_v2_route_RouteMatch* match =
|
1083
|
-
envoy_api_v2_route_Route_match(route);
|
1084
|
-
XdsApi::RdsUpdate::RdsRoute rds_route;
|
1085
|
-
if (envoy_api_v2_route_RouteMatch_has_prefix(match)) {
|
1086
|
-
upb_strview prefix = envoy_api_v2_route_RouteMatch_prefix(match);
|
1087
|
-
// Empty prefix "" is accepted.
|
1088
|
-
if (prefix.size > 0) {
|
1089
|
-
// Prefix "/" is accepted.
|
1090
|
-
if (prefix.data[0] != '/') {
|
1091
|
-
return GRPC_ERROR_CREATE_FROM_STATIC_STRING(
|
1092
|
-
"Prefix does not start with a /");
|
1093
|
-
}
|
1094
|
-
if (prefix.size > 1) {
|
1095
|
-
std::vector<absl::string_view> prefix_elements = absl::StrSplit(
|
1096
|
-
absl::string_view(prefix.data, prefix.size).substr(1),
|
1097
|
-
absl::MaxSplits('/', 1));
|
1098
|
-
if (prefix_elements.size() != 2) {
|
1099
|
-
return GRPC_ERROR_CREATE_FROM_STATIC_STRING(
|
1100
|
-
"Prefix not in the required format of /service/");
|
1101
|
-
} else if (!prefix_elements[1].empty()) {
|
1102
|
-
return GRPC_ERROR_CREATE_FROM_STATIC_STRING(
|
1103
|
-
"Prefix does not end with a /");
|
1104
|
-
} else if (prefix_elements[0].empty()) {
|
1105
|
-
return GRPC_ERROR_CREATE_FROM_STATIC_STRING(
|
1106
|
-
"Prefix contains empty service name");
|
1107
|
-
}
|
1108
|
-
rds_route.service = std::string(prefix_elements[0]);
|
1109
|
-
}
|
1110
|
-
}
|
1111
|
-
} else if (envoy_api_v2_route_RouteMatch_has_path(match)) {
|
1112
|
-
upb_strview path = envoy_api_v2_route_RouteMatch_path(match);
|
1113
|
-
if (path.size == 0) {
|
1114
|
-
return GRPC_ERROR_CREATE_FROM_STATIC_STRING(
|
1115
|
-
"Path if set cannot be empty");
|
1116
|
-
}
|
1117
|
-
if (path.data[0] != '/') {
|
1118
|
-
return GRPC_ERROR_CREATE_FROM_STATIC_STRING(
|
1119
|
-
"Path does not start with a /");
|
1120
|
-
}
|
1121
|
-
std::vector<absl::string_view> path_elements = absl::StrSplit(
|
1122
|
-
absl::string_view(path.data, path.size).substr(1), '/');
|
1123
|
-
if (path_elements.size() != 2) {
|
1124
|
-
return GRPC_ERROR_CREATE_FROM_STATIC_STRING(
|
1125
|
-
"Path not in the required format of /service/method");
|
1126
|
-
} else if (path_elements[0].empty()) {
|
1127
|
-
return GRPC_ERROR_CREATE_FROM_STATIC_STRING(
|
1128
|
-
"Path contains empty service name");
|
1129
|
-
} else if (path_elements[1].empty()) {
|
1130
|
-
return GRPC_ERROR_CREATE_FROM_STATIC_STRING(
|
1131
|
-
"Path contains empty method name");
|
1132
|
-
}
|
1133
|
-
rds_route.service = std::string(path_elements[0]);
|
1134
|
-
rds_route.method = std::string(path_elements[1]);
|
1135
|
-
} else {
|
1136
|
-
// Path specifier types will be supported, ignore but not reject until
|
1137
|
-
// they are implemented.
|
1138
|
-
continue;
|
1139
|
-
}
|
1140
|
-
grpc_error* error = RouteActionParse(route, &rds_route);
|
1141
|
-
if (error != GRPC_ERROR_NONE) return error;
|
1142
|
-
rds_update->routes.emplace_back(std::move(rds_route));
|
1143
|
-
}
|
1144
|
-
if (rds_update->routes.empty()) {
|
1145
|
-
return GRPC_ERROR_CREATE_FROM_STATIC_STRING("No valid routes specified.");
|
1146
|
-
}
|
1147
|
-
return GRPC_ERROR_NONE;
|
1148
|
-
}
|
1149
|
-
|
1150
|
-
grpc_error* LdsResponseParse(XdsClient* client, TraceFlag* tracer,
|
1151
|
-
const envoy_api_v2_DiscoveryResponse* response,
|
1152
|
-
const std::string& expected_server_name,
|
1153
|
-
const bool xds_routing_enabled,
|
1154
|
-
absl::optional<XdsApi::LdsUpdate>* lds_update,
|
1155
|
-
upb_arena* arena) {
|
1156
|
-
// Get the resources from the response.
|
1157
|
-
size_t size;
|
1158
|
-
const google_protobuf_Any* const* resources =
|
1159
|
-
envoy_api_v2_DiscoveryResponse_resources(response, &size);
|
1160
|
-
for (size_t i = 0; i < size; ++i) {
|
1161
|
-
// Check the type_url of the resource.
|
1162
|
-
const upb_strview type_url = google_protobuf_Any_type_url(resources[i]);
|
1163
|
-
if (!upb_strview_eql(type_url, upb_strview_makez(XdsApi::kLdsTypeUrl))) {
|
1164
|
-
return GRPC_ERROR_CREATE_FROM_STATIC_STRING("Resource is not LDS.");
|
1165
|
-
}
|
1166
|
-
// Decode the listener.
|
1167
|
-
const upb_strview encoded_listener =
|
1168
|
-
google_protobuf_Any_value(resources[i]);
|
1169
|
-
const envoy_api_v2_Listener* listener = envoy_api_v2_Listener_parse(
|
1170
|
-
encoded_listener.data, encoded_listener.size, arena);
|
1171
|
-
if (listener == nullptr) {
|
1172
|
-
return GRPC_ERROR_CREATE_FROM_STATIC_STRING("Can't decode listener.");
|
1173
|
-
}
|
1174
|
-
// Check listener name. Ignore unexpected listeners.
|
1175
|
-
const upb_strview name = envoy_api_v2_Listener_name(listener);
|
1176
|
-
const upb_strview expected_name =
|
1177
|
-
upb_strview_makez(expected_server_name.c_str());
|
1178
|
-
if (!upb_strview_eql(name, expected_name)) continue;
|
1179
|
-
// Get api_listener and decode it to http_connection_manager.
|
1180
|
-
const envoy_config_listener_v2_ApiListener* api_listener =
|
1181
|
-
envoy_api_v2_Listener_api_listener(listener);
|
1182
|
-
if (api_listener == nullptr) {
|
1183
|
-
return GRPC_ERROR_CREATE_FROM_STATIC_STRING(
|
1184
|
-
"Listener has no ApiListener.");
|
1185
|
-
}
|
1186
|
-
const upb_strview encoded_api_listener = google_protobuf_Any_value(
|
1187
|
-
envoy_config_listener_v2_ApiListener_api_listener(api_listener));
|
1188
|
-
const envoy_config_filter_network_http_connection_manager_v2_HttpConnectionManager*
|
1189
|
-
http_connection_manager =
|
1190
|
-
envoy_config_filter_network_http_connection_manager_v2_HttpConnectionManager_parse(
|
1191
|
-
encoded_api_listener.data, encoded_api_listener.size, arena);
|
1192
|
-
// Found inlined route_config. Parse it to find the cluster_name.
|
1193
|
-
if (envoy_config_filter_network_http_connection_manager_v2_HttpConnectionManager_has_route_config(
|
1194
|
-
http_connection_manager)) {
|
1195
|
-
const envoy_api_v2_RouteConfiguration* route_config =
|
1196
|
-
envoy_config_filter_network_http_connection_manager_v2_HttpConnectionManager_route_config(
|
1197
|
-
http_connection_manager);
|
1198
|
-
XdsApi::RdsUpdate rds_update;
|
1199
|
-
grpc_error* error =
|
1200
|
-
RouteConfigParse(client, tracer, route_config, expected_server_name,
|
1201
|
-
xds_routing_enabled, &rds_update);
|
1202
|
-
if (error != GRPC_ERROR_NONE) return error;
|
1203
|
-
lds_update->emplace();
|
1204
|
-
(*lds_update)->rds_update.emplace(std::move(rds_update));
|
1205
|
-
return GRPC_ERROR_NONE;
|
1206
|
-
}
|
1207
|
-
// Validate that RDS must be used to get the route_config dynamically.
|
1208
|
-
if (!envoy_config_filter_network_http_connection_manager_v2_HttpConnectionManager_has_rds(
|
1209
|
-
http_connection_manager)) {
|
1210
|
-
return GRPC_ERROR_CREATE_FROM_STATIC_STRING(
|
1211
|
-
"HttpConnectionManager neither has inlined route_config nor RDS.");
|
1212
|
-
}
|
1213
|
-
const envoy_config_filter_network_http_connection_manager_v2_Rds* rds =
|
1214
|
-
envoy_config_filter_network_http_connection_manager_v2_HttpConnectionManager_rds(
|
1215
|
-
http_connection_manager);
|
1216
|
-
// Check that the ConfigSource specifies ADS.
|
1217
|
-
const envoy_api_v2_core_ConfigSource* config_source =
|
1218
|
-
envoy_config_filter_network_http_connection_manager_v2_Rds_config_source(
|
1219
|
-
rds);
|
1220
|
-
if (config_source == nullptr) {
|
1221
|
-
return GRPC_ERROR_CREATE_FROM_STATIC_STRING(
|
1222
|
-
"HttpConnectionManager missing config_source for RDS.");
|
1223
|
-
}
|
1224
|
-
if (!envoy_api_v2_core_ConfigSource_has_ads(config_source)) {
|
1225
|
-
return GRPC_ERROR_CREATE_FROM_STATIC_STRING(
|
1226
|
-
"HttpConnectionManager ConfigSource for RDS does not specify ADS.");
|
1227
|
-
}
|
1228
|
-
// Get the route_config_name.
|
1229
|
-
lds_update->emplace();
|
1230
|
-
(*lds_update)->route_config_name = UpbStringToStdString(
|
1231
|
-
envoy_config_filter_network_http_connection_manager_v2_Rds_route_config_name(
|
1232
|
-
rds));
|
1233
|
-
return GRPC_ERROR_NONE;
|
1234
|
-
}
|
1235
|
-
return GRPC_ERROR_NONE;
|
1236
|
-
}
|
1237
|
-
|
1238
|
-
grpc_error* RdsResponseParse(
|
1239
|
-
XdsClient* client, TraceFlag* tracer,
|
1240
|
-
const envoy_api_v2_DiscoveryResponse* response,
|
1241
|
-
const std::string& expected_server_name,
|
1242
|
-
const std::set<absl::string_view>& expected_route_configuration_names,
|
1243
|
-
const bool xds_routing_enabled,
|
1244
|
-
absl::optional<XdsApi::RdsUpdate>* rds_update, upb_arena* arena) {
|
1245
|
-
// Get the resources from the response.
|
1246
|
-
size_t size;
|
1247
|
-
const google_protobuf_Any* const* resources =
|
1248
|
-
envoy_api_v2_DiscoveryResponse_resources(response, &size);
|
1249
|
-
for (size_t i = 0; i < size; ++i) {
|
1250
|
-
// Check the type_url of the resource.
|
1251
|
-
const upb_strview type_url = google_protobuf_Any_type_url(resources[i]);
|
1252
|
-
if (!upb_strview_eql(type_url, upb_strview_makez(XdsApi::kRdsTypeUrl))) {
|
1253
|
-
return GRPC_ERROR_CREATE_FROM_STATIC_STRING("Resource is not RDS.");
|
1254
|
-
}
|
1255
|
-
// Decode the route_config.
|
1256
|
-
const upb_strview encoded_route_config =
|
1257
|
-
google_protobuf_Any_value(resources[i]);
|
1258
|
-
const envoy_api_v2_RouteConfiguration* route_config =
|
1259
|
-
envoy_api_v2_RouteConfiguration_parse(encoded_route_config.data,
|
1260
|
-
encoded_route_config.size, arena);
|
1261
|
-
if (route_config == nullptr) {
|
1262
|
-
return GRPC_ERROR_CREATE_FROM_STATIC_STRING("Can't decode route_config.");
|
1263
|
-
}
|
1264
|
-
// Check route_config_name. Ignore unexpected route_config.
|
1265
|
-
const upb_strview route_config_name =
|
1266
|
-
envoy_api_v2_RouteConfiguration_name(route_config);
|
1267
|
-
absl::string_view route_config_name_strview(route_config_name.data,
|
1268
|
-
route_config_name.size);
|
1269
|
-
if (expected_route_configuration_names.find(route_config_name_strview) ==
|
1270
|
-
expected_route_configuration_names.end()) {
|
1271
|
-
continue;
|
1272
|
-
}
|
1273
|
-
// Parse the route_config.
|
1274
|
-
XdsApi::RdsUpdate local_rds_update;
|
1275
|
-
grpc_error* error =
|
1276
|
-
RouteConfigParse(client, tracer, route_config, expected_server_name,
|
1277
|
-
xds_routing_enabled, &local_rds_update);
|
1278
|
-
if (error != GRPC_ERROR_NONE) return error;
|
1279
|
-
rds_update->emplace(std::move(local_rds_update));
|
1280
|
-
return GRPC_ERROR_NONE;
|
1281
|
-
}
|
1282
|
-
return GRPC_ERROR_NONE;
|
1283
|
-
}
|
1284
|
-
|
1285
|
-
grpc_error* CdsResponseParse(
|
1286
|
-
XdsClient* client, TraceFlag* tracer,
|
1287
|
-
const envoy_api_v2_DiscoveryResponse* response,
|
1288
|
-
const std::set<absl::string_view>& expected_cluster_names,
|
1289
|
-
XdsApi::CdsUpdateMap* cds_update_map, upb_arena* arena) {
|
1290
|
-
// Get the resources from the response.
|
1291
|
-
size_t size;
|
1292
|
-
const google_protobuf_Any* const* resources =
|
1293
|
-
envoy_api_v2_DiscoveryResponse_resources(response, &size);
|
1294
|
-
// Parse all the resources in the CDS response.
|
1295
|
-
for (size_t i = 0; i < size; ++i) {
|
1296
|
-
XdsApi::CdsUpdate cds_update;
|
1297
|
-
// Check the type_url of the resource.
|
1298
|
-
const upb_strview type_url = google_protobuf_Any_type_url(resources[i]);
|
1299
|
-
if (!upb_strview_eql(type_url, upb_strview_makez(XdsApi::kCdsTypeUrl))) {
|
1300
|
-
return GRPC_ERROR_CREATE_FROM_STATIC_STRING("Resource is not CDS.");
|
1301
|
-
}
|
1302
|
-
// Decode the cluster.
|
1303
|
-
const upb_strview encoded_cluster = google_protobuf_Any_value(resources[i]);
|
1304
|
-
const envoy_api_v2_Cluster* cluster = envoy_api_v2_Cluster_parse(
|
1305
|
-
encoded_cluster.data, encoded_cluster.size, arena);
|
1306
|
-
if (cluster == nullptr) {
|
1307
|
-
return GRPC_ERROR_CREATE_FROM_STATIC_STRING("Can't decode cluster.");
|
1308
|
-
}
|
1309
|
-
MaybeLogCluster(client, tracer, cluster);
|
1310
|
-
// Ignore unexpected cluster names.
|
1311
|
-
upb_strview cluster_name = envoy_api_v2_Cluster_name(cluster);
|
1312
|
-
absl::string_view cluster_name_strview(cluster_name.data,
|
1313
|
-
cluster_name.size);
|
1314
|
-
if (expected_cluster_names.find(cluster_name_strview) ==
|
1315
|
-
expected_cluster_names.end()) {
|
1316
|
-
continue;
|
1317
|
-
}
|
1318
|
-
// Check the cluster_discovery_type.
|
1319
|
-
if (!envoy_api_v2_Cluster_has_type(cluster)) {
|
1320
|
-
return GRPC_ERROR_CREATE_FROM_STATIC_STRING("DiscoveryType not found.");
|
1321
|
-
}
|
1322
|
-
if (envoy_api_v2_Cluster_type(cluster) != envoy_api_v2_Cluster_EDS) {
|
1323
|
-
return GRPC_ERROR_CREATE_FROM_STATIC_STRING("DiscoveryType is not EDS.");
|
1324
|
-
}
|
1325
|
-
// Check the EDS config source.
|
1326
|
-
const envoy_api_v2_Cluster_EdsClusterConfig* eds_cluster_config =
|
1327
|
-
envoy_api_v2_Cluster_eds_cluster_config(cluster);
|
1328
|
-
const envoy_api_v2_core_ConfigSource* eds_config =
|
1329
|
-
envoy_api_v2_Cluster_EdsClusterConfig_eds_config(eds_cluster_config);
|
1330
|
-
if (!envoy_api_v2_core_ConfigSource_has_ads(eds_config)) {
|
1331
|
-
return GRPC_ERROR_CREATE_FROM_STATIC_STRING(
|
1332
|
-
"EDS ConfigSource is not ADS.");
|
1333
|
-
}
|
1334
|
-
// Record EDS service_name (if any).
|
1335
|
-
upb_strview service_name =
|
1336
|
-
envoy_api_v2_Cluster_EdsClusterConfig_service_name(eds_cluster_config);
|
1337
|
-
if (service_name.size != 0) {
|
1338
|
-
cds_update.eds_service_name = UpbStringToStdString(service_name);
|
1339
|
-
}
|
1340
|
-
// Check the LB policy.
|
1341
|
-
if (envoy_api_v2_Cluster_lb_policy(cluster) !=
|
1342
|
-
envoy_api_v2_Cluster_ROUND_ROBIN) {
|
1343
|
-
return GRPC_ERROR_CREATE_FROM_STATIC_STRING(
|
1344
|
-
"LB policy is not ROUND_ROBIN.");
|
1345
|
-
}
|
1346
|
-
// Record LRS server name (if any).
|
1347
|
-
const envoy_api_v2_core_ConfigSource* lrs_server =
|
1348
|
-
envoy_api_v2_Cluster_lrs_server(cluster);
|
1349
|
-
if (lrs_server != nullptr) {
|
1350
|
-
if (!envoy_api_v2_core_ConfigSource_has_self(lrs_server)) {
|
1351
|
-
return GRPC_ERROR_CREATE_FROM_STATIC_STRING(
|
1352
|
-
"LRS ConfigSource is not self.");
|
1353
|
-
}
|
1354
|
-
cds_update.lrs_load_reporting_server_name.emplace("");
|
1355
|
-
}
|
1356
|
-
cds_update_map->emplace(UpbStringToStdString(cluster_name),
|
1357
|
-
std::move(cds_update));
|
1358
|
-
}
|
1359
|
-
return GRPC_ERROR_NONE;
|
1360
|
-
}
|
1361
|
-
|
1362
|
-
grpc_error* ServerAddressParseAndAppend(
|
1363
|
-
const envoy_api_v2_endpoint_LbEndpoint* lb_endpoint,
|
1364
|
-
ServerAddressList* list) {
|
1365
|
-
// If health_status is not HEALTHY or UNKNOWN, skip this endpoint.
|
1366
|
-
const int32_t health_status =
|
1367
|
-
envoy_api_v2_endpoint_LbEndpoint_health_status(lb_endpoint);
|
1368
|
-
if (health_status != envoy_api_v2_core_UNKNOWN &&
|
1369
|
-
health_status != envoy_api_v2_core_HEALTHY) {
|
1370
|
-
return GRPC_ERROR_NONE;
|
1371
|
-
}
|
1372
|
-
// Find the ip:port.
|
1373
|
-
const envoy_api_v2_endpoint_Endpoint* endpoint =
|
1374
|
-
envoy_api_v2_endpoint_LbEndpoint_endpoint(lb_endpoint);
|
1375
|
-
const envoy_api_v2_core_Address* address =
|
1376
|
-
envoy_api_v2_endpoint_Endpoint_address(endpoint);
|
1377
|
-
const envoy_api_v2_core_SocketAddress* socket_address =
|
1378
|
-
envoy_api_v2_core_Address_socket_address(address);
|
1379
|
-
upb_strview address_strview =
|
1380
|
-
envoy_api_v2_core_SocketAddress_address(socket_address);
|
1381
|
-
uint32_t port = envoy_api_v2_core_SocketAddress_port_value(socket_address);
|
1382
|
-
if (GPR_UNLIKELY(port >> 16) != 0) {
|
1383
|
-
return GRPC_ERROR_CREATE_FROM_STATIC_STRING("Invalid port.");
|
1384
|
-
}
|
1385
|
-
// Populate grpc_resolved_address.
|
1386
|
-
grpc_resolved_address addr;
|
1387
|
-
char* address_str = static_cast<char*>(gpr_malloc(address_strview.size + 1));
|
1388
|
-
memcpy(address_str, address_strview.data, address_strview.size);
|
1389
|
-
address_str[address_strview.size] = '\0';
|
1390
|
-
grpc_string_to_sockaddr(&addr, address_str, port);
|
1391
|
-
gpr_free(address_str);
|
1392
|
-
// Append the address to the list.
|
1393
|
-
list->emplace_back(addr, nullptr);
|
1394
|
-
return GRPC_ERROR_NONE;
|
1395
|
-
}
|
1396
|
-
|
1397
|
-
grpc_error* LocalityParse(
|
1398
|
-
const envoy_api_v2_endpoint_LocalityLbEndpoints* locality_lb_endpoints,
|
1399
|
-
XdsApi::PriorityListUpdate::LocalityMap::Locality* output_locality) {
|
1400
|
-
// Parse LB weight.
|
1401
|
-
const google_protobuf_UInt32Value* lb_weight =
|
1402
|
-
envoy_api_v2_endpoint_LocalityLbEndpoints_load_balancing_weight(
|
1403
|
-
locality_lb_endpoints);
|
1404
|
-
// If LB weight is not specified, it means this locality is assigned no load.
|
1405
|
-
// TODO(juanlishen): When we support CDS to configure the inter-locality
|
1406
|
-
// policy, we should change the LB weight handling.
|
1407
|
-
output_locality->lb_weight =
|
1408
|
-
lb_weight != nullptr ? google_protobuf_UInt32Value_value(lb_weight) : 0;
|
1409
|
-
if (output_locality->lb_weight == 0) return GRPC_ERROR_NONE;
|
1410
|
-
// Parse locality name.
|
1411
|
-
const envoy_api_v2_core_Locality* locality =
|
1412
|
-
envoy_api_v2_endpoint_LocalityLbEndpoints_locality(locality_lb_endpoints);
|
1413
|
-
upb_strview region = envoy_api_v2_core_Locality_region(locality);
|
1414
|
-
upb_strview zone = envoy_api_v2_core_Locality_region(locality);
|
1415
|
-
upb_strview sub_zone = envoy_api_v2_core_Locality_sub_zone(locality);
|
1416
|
-
output_locality->name = MakeRefCounted<XdsLocalityName>(
|
1417
|
-
UpbStringToStdString(region), UpbStringToStdString(zone),
|
1418
|
-
UpbStringToStdString(sub_zone));
|
1419
|
-
// Parse the addresses.
|
1420
|
-
size_t size;
|
1421
|
-
const envoy_api_v2_endpoint_LbEndpoint* const* lb_endpoints =
|
1422
|
-
envoy_api_v2_endpoint_LocalityLbEndpoints_lb_endpoints(
|
1423
|
-
locality_lb_endpoints, &size);
|
1424
|
-
for (size_t i = 0; i < size; ++i) {
|
1425
|
-
grpc_error* error = ServerAddressParseAndAppend(
|
1426
|
-
lb_endpoints[i], &output_locality->serverlist);
|
1427
|
-
if (error != GRPC_ERROR_NONE) return error;
|
1428
|
-
}
|
1429
|
-
// Parse the priority.
|
1430
|
-
output_locality->priority =
|
1431
|
-
envoy_api_v2_endpoint_LocalityLbEndpoints_priority(locality_lb_endpoints);
|
1432
|
-
return GRPC_ERROR_NONE;
|
1433
|
-
}
|
1434
|
-
|
1435
|
-
grpc_error* DropParseAndAppend(
|
1436
|
-
const envoy_api_v2_ClusterLoadAssignment_Policy_DropOverload* drop_overload,
|
1437
|
-
XdsApi::DropConfig* drop_config) {
|
1438
|
-
// Get the category.
|
1439
|
-
upb_strview category =
|
1440
|
-
envoy_api_v2_ClusterLoadAssignment_Policy_DropOverload_category(
|
1441
|
-
drop_overload);
|
1442
|
-
if (category.size == 0) {
|
1443
|
-
return GRPC_ERROR_CREATE_FROM_STATIC_STRING("Empty drop category name");
|
1444
|
-
}
|
1445
|
-
// Get the drop rate (per million).
|
1446
|
-
const envoy_type_FractionalPercent* drop_percentage =
|
1447
|
-
envoy_api_v2_ClusterLoadAssignment_Policy_DropOverload_drop_percentage(
|
1448
|
-
drop_overload);
|
1449
|
-
uint32_t numerator = envoy_type_FractionalPercent_numerator(drop_percentage);
|
1450
|
-
const auto denominator =
|
1451
|
-
static_cast<envoy_type_FractionalPercent_DenominatorType>(
|
1452
|
-
envoy_type_FractionalPercent_denominator(drop_percentage));
|
1453
|
-
// Normalize to million.
|
1454
|
-
switch (denominator) {
|
1455
|
-
case envoy_type_FractionalPercent_HUNDRED:
|
1456
|
-
numerator *= 10000;
|
1457
|
-
break;
|
1458
|
-
case envoy_type_FractionalPercent_TEN_THOUSAND:
|
1459
|
-
numerator *= 100;
|
1460
|
-
break;
|
1461
|
-
case envoy_type_FractionalPercent_MILLION:
|
1462
|
-
break;
|
1463
|
-
default:
|
1464
|
-
return GRPC_ERROR_CREATE_FROM_STATIC_STRING("Unknown denominator type");
|
1465
|
-
}
|
1466
|
-
// Cap numerator to 1000000.
|
1467
|
-
numerator = GPR_MIN(numerator, 1000000);
|
1468
|
-
drop_config->AddCategory(UpbStringToStdString(category), numerator);
|
1469
|
-
return GRPC_ERROR_NONE;
|
1470
|
-
}
|
1471
|
-
|
1472
|
-
grpc_error* EdsResponseParse(
|
1473
|
-
XdsClient* client, TraceFlag* tracer,
|
1474
|
-
const envoy_api_v2_DiscoveryResponse* response,
|
1475
|
-
const std::set<absl::string_view>& expected_eds_service_names,
|
1476
|
-
XdsApi::EdsUpdateMap* eds_update_map, upb_arena* arena) {
|
1477
|
-
// Get the resources from the response.
|
1478
|
-
size_t size;
|
1479
|
-
const google_protobuf_Any* const* resources =
|
1480
|
-
envoy_api_v2_DiscoveryResponse_resources(response, &size);
|
1481
|
-
for (size_t i = 0; i < size; ++i) {
|
1482
|
-
XdsApi::EdsUpdate eds_update;
|
1483
|
-
// Check the type_url of the resource.
|
1484
|
-
upb_strview type_url = google_protobuf_Any_type_url(resources[i]);
|
1485
|
-
if (!upb_strview_eql(type_url, upb_strview_makez(XdsApi::kEdsTypeUrl))) {
|
1486
|
-
return GRPC_ERROR_CREATE_FROM_STATIC_STRING("Resource is not EDS.");
|
1487
|
-
}
|
1488
|
-
// Get the cluster_load_assignment.
|
1489
|
-
upb_strview encoded_cluster_load_assignment =
|
1490
|
-
google_protobuf_Any_value(resources[i]);
|
1491
|
-
envoy_api_v2_ClusterLoadAssignment* cluster_load_assignment =
|
1492
|
-
envoy_api_v2_ClusterLoadAssignment_parse(
|
1493
|
-
encoded_cluster_load_assignment.data,
|
1494
|
-
encoded_cluster_load_assignment.size, arena);
|
1495
|
-
if (cluster_load_assignment == nullptr) {
|
1496
|
-
return GRPC_ERROR_CREATE_FROM_STATIC_STRING(
|
1497
|
-
"Can't parse cluster_load_assignment.");
|
1498
|
-
}
|
1499
|
-
MaybeLogClusterLoadAssignment(client, tracer, cluster_load_assignment);
|
1500
|
-
// Check the cluster name (which actually means eds_service_name). Ignore
|
1501
|
-
// unexpected names.
|
1502
|
-
upb_strview cluster_name = envoy_api_v2_ClusterLoadAssignment_cluster_name(
|
1503
|
-
cluster_load_assignment);
|
1504
|
-
absl::string_view cluster_name_strview(cluster_name.data,
|
1505
|
-
cluster_name.size);
|
1506
|
-
if (expected_eds_service_names.find(cluster_name_strview) ==
|
1507
|
-
expected_eds_service_names.end()) {
|
1508
|
-
continue;
|
1509
|
-
}
|
1510
|
-
// Get the endpoints.
|
1511
|
-
size_t locality_size;
|
1512
|
-
const envoy_api_v2_endpoint_LocalityLbEndpoints* const* endpoints =
|
1513
|
-
envoy_api_v2_ClusterLoadAssignment_endpoints(cluster_load_assignment,
|
1514
|
-
&locality_size);
|
1515
|
-
for (size_t j = 0; j < locality_size; ++j) {
|
1516
|
-
XdsApi::PriorityListUpdate::LocalityMap::Locality locality;
|
1517
|
-
grpc_error* error = LocalityParse(endpoints[j], &locality);
|
1518
|
-
if (error != GRPC_ERROR_NONE) return error;
|
1519
|
-
// Filter out locality with weight 0.
|
1520
|
-
if (locality.lb_weight == 0) continue;
|
1521
|
-
eds_update.priority_list_update.Add(locality);
|
1522
|
-
}
|
1523
|
-
for (uint32_t priority = 0;
|
1524
|
-
priority < eds_update.priority_list_update.size(); ++priority) {
|
1525
|
-
auto* locality_map = eds_update.priority_list_update.Find(priority);
|
1526
|
-
if (locality_map == nullptr || locality_map->size() == 0) {
|
1527
|
-
return GRPC_ERROR_CREATE_FROM_STATIC_STRING(
|
1528
|
-
"EDS update includes sparse priority list");
|
1529
|
-
}
|
1530
|
-
}
|
1531
|
-
// Get the drop config.
|
1532
|
-
eds_update.drop_config = MakeRefCounted<XdsApi::DropConfig>();
|
1533
|
-
const envoy_api_v2_ClusterLoadAssignment_Policy* policy =
|
1534
|
-
envoy_api_v2_ClusterLoadAssignment_policy(cluster_load_assignment);
|
1535
|
-
if (policy != nullptr) {
|
1536
|
-
size_t drop_size;
|
1537
|
-
const envoy_api_v2_ClusterLoadAssignment_Policy_DropOverload* const*
|
1538
|
-
drop_overload =
|
1539
|
-
envoy_api_v2_ClusterLoadAssignment_Policy_drop_overloads(
|
1540
|
-
policy, &drop_size);
|
1541
|
-
for (size_t j = 0; j < drop_size; ++j) {
|
1542
|
-
grpc_error* error =
|
1543
|
-
DropParseAndAppend(drop_overload[j], eds_update.drop_config.get());
|
1544
|
-
if (error != GRPC_ERROR_NONE) return error;
|
1545
|
-
}
|
1546
|
-
}
|
1547
|
-
eds_update_map->emplace(UpbStringToStdString(cluster_name),
|
1548
|
-
std::move(eds_update));
|
1549
|
-
}
|
1550
|
-
return GRPC_ERROR_NONE;
|
1551
|
-
}
|
1552
|
-
|
1553
|
-
} // namespace
|
1554
|
-
|
1555
|
-
grpc_error* XdsApi::ParseAdsResponse(
|
1556
|
-
const grpc_slice& encoded_response, const std::string& expected_server_name,
|
1557
|
-
const std::set<absl::string_view>& expected_route_configuration_names,
|
1558
|
-
const std::set<absl::string_view>& expected_cluster_names,
|
1559
|
-
const std::set<absl::string_view>& expected_eds_service_names,
|
1560
|
-
absl::optional<LdsUpdate>* lds_update,
|
1561
|
-
absl::optional<RdsUpdate>* rds_update, CdsUpdateMap* cds_update_map,
|
1562
|
-
EdsUpdateMap* eds_update_map, std::string* version, std::string* nonce,
|
1563
|
-
std::string* type_url) {
|
1564
|
-
upb::Arena arena;
|
1565
|
-
// Decode the response.
|
1566
|
-
const envoy_api_v2_DiscoveryResponse* response =
|
1567
|
-
envoy_api_v2_DiscoveryResponse_parse(
|
1568
|
-
reinterpret_cast<const char*>(GRPC_SLICE_START_PTR(encoded_response)),
|
1569
|
-
GRPC_SLICE_LENGTH(encoded_response), arena.ptr());
|
1570
|
-
// If decoding fails, output an empty type_url and return.
|
1571
|
-
if (response == nullptr) {
|
1572
|
-
*type_url = "";
|
1573
|
-
return GRPC_ERROR_CREATE_FROM_STATIC_STRING(
|
1574
|
-
"Can't decode the whole response.");
|
1575
|
-
}
|
1576
|
-
MaybeLogDiscoveryResponse(client_, tracer_, response);
|
1577
|
-
// Record the type_url, the version_info, and the nonce of the response.
|
1578
|
-
upb_strview type_url_strview =
|
1579
|
-
envoy_api_v2_DiscoveryResponse_type_url(response);
|
1580
|
-
*type_url = UpbStringToStdString(type_url_strview);
|
1581
|
-
upb_strview version_info =
|
1582
|
-
envoy_api_v2_DiscoveryResponse_version_info(response);
|
1583
|
-
*version = UpbStringToStdString(version_info);
|
1584
|
-
upb_strview nonce_strview = envoy_api_v2_DiscoveryResponse_nonce(response);
|
1585
|
-
*nonce = UpbStringToStdString(nonce_strview);
|
1586
|
-
// Parse the response according to the resource type.
|
1587
|
-
if (*type_url == kLdsTypeUrl) {
|
1588
|
-
return LdsResponseParse(client_, tracer_, response, expected_server_name,
|
1589
|
-
xds_routing_enabled_, lds_update, arena.ptr());
|
1590
|
-
} else if (*type_url == kRdsTypeUrl) {
|
1591
|
-
return RdsResponseParse(client_, tracer_, response, expected_server_name,
|
1592
|
-
expected_route_configuration_names,
|
1593
|
-
xds_routing_enabled_, rds_update, arena.ptr());
|
1594
|
-
} else if (*type_url == kCdsTypeUrl) {
|
1595
|
-
return CdsResponseParse(client_, tracer_, response, expected_cluster_names,
|
1596
|
-
cds_update_map, arena.ptr());
|
1597
|
-
} else if (*type_url == kEdsTypeUrl) {
|
1598
|
-
return EdsResponseParse(client_, tracer_, response,
|
1599
|
-
expected_eds_service_names, eds_update_map,
|
1600
|
-
arena.ptr());
|
1601
|
-
} else {
|
1602
|
-
return GRPC_ERROR_CREATE_FROM_STATIC_STRING(
|
1603
|
-
"Unsupported ADS resource type.");
|
1604
|
-
}
|
1605
|
-
}
|
1606
|
-
|
1607
|
-
namespace {
|
1608
|
-
|
1609
|
-
void MaybeLogLrsRequest(
|
1610
|
-
XdsClient* client, TraceFlag* tracer,
|
1611
|
-
const envoy_service_load_stats_v2_LoadStatsRequest* request) {
|
1612
|
-
if (GRPC_TRACE_FLAG_ENABLED(*tracer) &&
|
1613
|
-
gpr_should_log(GPR_LOG_SEVERITY_DEBUG)) {
|
1614
|
-
// TODO(roth): When we can upgrade upb, use upb textformat code to dump
|
1615
|
-
// the raw proto instead of doing this manually.
|
1616
|
-
std::vector<std::string> fields;
|
1617
|
-
// node
|
1618
|
-
const auto* node =
|
1619
|
-
envoy_service_load_stats_v2_LoadStatsRequest_node(request);
|
1620
|
-
if (node != nullptr) {
|
1621
|
-
AddNodeLogFields(node, &fields);
|
1622
|
-
}
|
1623
|
-
// cluster_stats
|
1624
|
-
size_t num_cluster_stats;
|
1625
|
-
const struct envoy_api_v2_endpoint_ClusterStats* const* cluster_stats =
|
1626
|
-
envoy_service_load_stats_v2_LoadStatsRequest_cluster_stats(
|
1627
|
-
request, &num_cluster_stats);
|
1628
|
-
for (size_t i = 0; i < num_cluster_stats; ++i) {
|
1629
|
-
const auto* cluster_stat = cluster_stats[i];
|
1630
|
-
fields.emplace_back("cluster_stats {");
|
1631
|
-
// cluster_name
|
1632
|
-
AddStringField(
|
1633
|
-
" cluster_name",
|
1634
|
-
envoy_api_v2_endpoint_ClusterStats_cluster_name(cluster_stat),
|
1635
|
-
&fields);
|
1636
|
-
// cluster_service_name
|
1637
|
-
AddStringField(
|
1638
|
-
" cluster_service_name",
|
1639
|
-
envoy_api_v2_endpoint_ClusterStats_cluster_service_name(cluster_stat),
|
1640
|
-
&fields);
|
1641
|
-
// upstream_locality_stats
|
1642
|
-
size_t num_stats;
|
1643
|
-
const envoy_api_v2_endpoint_UpstreamLocalityStats* const* stats =
|
1644
|
-
envoy_api_v2_endpoint_ClusterStats_upstream_locality_stats(
|
1645
|
-
cluster_stat, &num_stats);
|
1646
|
-
for (size_t j = 0; j < num_stats; ++j) {
|
1647
|
-
const auto* stat = stats[j];
|
1648
|
-
fields.emplace_back(" upstream_locality_stats {");
|
1649
|
-
// locality
|
1650
|
-
const auto* locality =
|
1651
|
-
envoy_api_v2_endpoint_UpstreamLocalityStats_locality(stat);
|
1652
|
-
if (locality != nullptr) {
|
1653
|
-
fields.emplace_back(" locality {");
|
1654
|
-
AddLocalityField(3, locality, &fields);
|
1655
|
-
fields.emplace_back(" }");
|
1656
|
-
}
|
1657
|
-
// total_successful_requests
|
1658
|
-
fields.emplace_back(absl::StrCat(
|
1659
|
-
" total_successful_requests: ",
|
1660
|
-
envoy_api_v2_endpoint_UpstreamLocalityStats_total_successful_requests(
|
1661
|
-
stat)));
|
1662
|
-
// total_requests_in_progress
|
1663
|
-
fields.emplace_back(absl::StrCat(
|
1664
|
-
" total_requests_in_progress: ",
|
1665
|
-
envoy_api_v2_endpoint_UpstreamLocalityStats_total_requests_in_progress(
|
1666
|
-
stat)));
|
1667
|
-
// total_error_requests
|
1668
|
-
fields.emplace_back(absl::StrCat(
|
1669
|
-
" total_error_requests: ",
|
1670
|
-
envoy_api_v2_endpoint_UpstreamLocalityStats_total_error_requests(
|
1671
|
-
stat)));
|
1672
|
-
// total_issued_requests
|
1673
|
-
fields.emplace_back(absl::StrCat(
|
1674
|
-
" total_issued_requests: ",
|
1675
|
-
envoy_api_v2_endpoint_UpstreamLocalityStats_total_issued_requests(
|
1676
|
-
stat)));
|
1677
|
-
fields.emplace_back(" }");
|
1678
|
-
}
|
1679
|
-
// total_dropped_requests
|
1680
|
-
fields.emplace_back(absl::StrCat(
|
1681
|
-
" total_dropped_requests: ",
|
1682
|
-
envoy_api_v2_endpoint_ClusterStats_total_dropped_requests(
|
1683
|
-
cluster_stat)));
|
1684
|
-
// dropped_requests
|
1685
|
-
size_t num_drops;
|
1686
|
-
const envoy_api_v2_endpoint_ClusterStats_DroppedRequests* const* drops =
|
1687
|
-
envoy_api_v2_endpoint_ClusterStats_dropped_requests(cluster_stat,
|
1688
|
-
&num_drops);
|
1689
|
-
for (size_t j = 0; j < num_drops; ++j) {
|
1690
|
-
const auto* drop = drops[j];
|
1691
|
-
fields.emplace_back(" dropped_requests {");
|
1692
|
-
// category
|
1693
|
-
AddStringField(
|
1694
|
-
" category",
|
1695
|
-
envoy_api_v2_endpoint_ClusterStats_DroppedRequests_category(drop),
|
1696
|
-
&fields);
|
1697
|
-
// dropped_count
|
1698
|
-
fields.emplace_back(absl::StrCat(
|
1699
|
-
" dropped_count: ",
|
1700
|
-
envoy_api_v2_endpoint_ClusterStats_DroppedRequests_dropped_count(
|
1701
|
-
drop)));
|
1702
|
-
fields.emplace_back(" }");
|
1703
|
-
}
|
1704
|
-
// load_report_interval
|
1705
|
-
const auto* load_report_interval =
|
1706
|
-
envoy_api_v2_endpoint_ClusterStats_load_report_interval(cluster_stat);
|
1707
|
-
if (load_report_interval != nullptr) {
|
1708
|
-
fields.emplace_back(" load_report_interval {");
|
1709
|
-
fields.emplace_back(absl::StrCat(
|
1710
|
-
" seconds: ",
|
1711
|
-
google_protobuf_Duration_seconds(load_report_interval)));
|
1712
|
-
fields.emplace_back(
|
1713
|
-
absl::StrCat(" nanos: ",
|
1714
|
-
google_protobuf_Duration_nanos(load_report_interval)));
|
1715
|
-
fields.emplace_back(" }");
|
1716
|
-
}
|
1717
|
-
fields.emplace_back("}");
|
1718
|
-
}
|
1719
|
-
gpr_log(GPR_DEBUG, "[xds_client %p] constructed LRS request: %s", client,
|
1720
|
-
absl::StrJoin(fields, "\n").c_str());
|
1721
|
-
}
|
1722
|
-
}
|
1723
|
-
|
1724
|
-
grpc_slice SerializeLrsRequest(
|
1725
|
-
const envoy_service_load_stats_v2_LoadStatsRequest* request,
|
1726
|
-
upb_arena* arena) {
|
1727
|
-
size_t output_length;
|
1728
|
-
char* output = envoy_service_load_stats_v2_LoadStatsRequest_serialize(
|
1729
|
-
request, arena, &output_length);
|
1730
|
-
return grpc_slice_from_copied_buffer(output, output_length);
|
1731
|
-
}
|
1732
|
-
|
1733
|
-
} // namespace
|
1734
|
-
|
1735
|
-
grpc_slice XdsApi::CreateLrsInitialRequest(const std::string& server_name) {
|
1736
|
-
upb::Arena arena;
|
1737
|
-
// Create a request.
|
1738
|
-
envoy_service_load_stats_v2_LoadStatsRequest* request =
|
1739
|
-
envoy_service_load_stats_v2_LoadStatsRequest_new(arena.ptr());
|
1740
|
-
// Populate node.
|
1741
|
-
envoy_api_v2_core_Node* node_msg =
|
1742
|
-
envoy_service_load_stats_v2_LoadStatsRequest_mutable_node(request,
|
1743
|
-
arena.ptr());
|
1744
|
-
PopulateNode(arena.ptr(), node_, build_version_, user_agent_name_,
|
1745
|
-
server_name, node_msg);
|
1746
|
-
envoy_api_v2_core_Node_add_client_features(
|
1747
|
-
node_msg, upb_strview_makez("envoy.lrs.supports_send_all_clusters"),
|
1748
|
-
arena.ptr());
|
1749
|
-
MaybeLogLrsRequest(client_, tracer_, request);
|
1750
|
-
return SerializeLrsRequest(request, arena.ptr());
|
1751
|
-
}
|
1752
|
-
|
1753
|
-
namespace {
|
1754
|
-
|
1755
|
-
void LocalityStatsPopulate(envoy_api_v2_endpoint_UpstreamLocalityStats* output,
|
1756
|
-
const XdsLocalityName& locality_name,
|
1757
|
-
const XdsClusterLocalityStats::Snapshot& snapshot,
|
1758
|
-
upb_arena* arena) {
|
1759
|
-
// Set locality.
|
1760
|
-
envoy_api_v2_core_Locality* locality =
|
1761
|
-
envoy_api_v2_endpoint_UpstreamLocalityStats_mutable_locality(output,
|
1762
|
-
arena);
|
1763
|
-
if (!locality_name.region().empty()) {
|
1764
|
-
envoy_api_v2_core_Locality_set_region(
|
1765
|
-
locality, upb_strview_makez(locality_name.region().c_str()));
|
1766
|
-
}
|
1767
|
-
if (!locality_name.zone().empty()) {
|
1768
|
-
envoy_api_v2_core_Locality_set_zone(
|
1769
|
-
locality, upb_strview_makez(locality_name.zone().c_str()));
|
1770
|
-
}
|
1771
|
-
if (!locality_name.sub_zone().empty()) {
|
1772
|
-
envoy_api_v2_core_Locality_set_sub_zone(
|
1773
|
-
locality, upb_strview_makez(locality_name.sub_zone().c_str()));
|
1774
|
-
}
|
1775
|
-
// Set total counts.
|
1776
|
-
envoy_api_v2_endpoint_UpstreamLocalityStats_set_total_successful_requests(
|
1777
|
-
output, snapshot.total_successful_requests);
|
1778
|
-
envoy_api_v2_endpoint_UpstreamLocalityStats_set_total_requests_in_progress(
|
1779
|
-
output, snapshot.total_requests_in_progress);
|
1780
|
-
envoy_api_v2_endpoint_UpstreamLocalityStats_set_total_error_requests(
|
1781
|
-
output, snapshot.total_error_requests);
|
1782
|
-
envoy_api_v2_endpoint_UpstreamLocalityStats_set_total_issued_requests(
|
1783
|
-
output, snapshot.total_issued_requests);
|
1784
|
-
// Add backend metrics.
|
1785
|
-
for (const auto& p : snapshot.backend_metrics) {
|
1786
|
-
const std::string& metric_name = p.first;
|
1787
|
-
const XdsClusterLocalityStats::BackendMetric& metric_value = p.second;
|
1788
|
-
envoy_api_v2_endpoint_EndpointLoadMetricStats* load_metric =
|
1789
|
-
envoy_api_v2_endpoint_UpstreamLocalityStats_add_load_metric_stats(
|
1790
|
-
output, arena);
|
1791
|
-
envoy_api_v2_endpoint_EndpointLoadMetricStats_set_metric_name(
|
1792
|
-
load_metric, upb_strview_make(metric_name.data(), metric_name.size()));
|
1793
|
-
envoy_api_v2_endpoint_EndpointLoadMetricStats_set_num_requests_finished_with_metric(
|
1794
|
-
load_metric, metric_value.num_requests_finished_with_metric);
|
1795
|
-
envoy_api_v2_endpoint_EndpointLoadMetricStats_set_total_metric_value(
|
1796
|
-
load_metric, metric_value.total_metric_value);
|
1797
|
-
}
|
1798
|
-
}
|
1799
|
-
|
1800
|
-
} // namespace
|
1801
|
-
|
1802
|
-
grpc_slice XdsApi::CreateLrsRequest(
|
1803
|
-
ClusterLoadReportMap cluster_load_report_map) {
|
1804
|
-
upb::Arena arena;
|
1805
|
-
// Create a request.
|
1806
|
-
envoy_service_load_stats_v2_LoadStatsRequest* request =
|
1807
|
-
envoy_service_load_stats_v2_LoadStatsRequest_new(arena.ptr());
|
1808
|
-
for (auto& p : cluster_load_report_map) {
|
1809
|
-
const std::string& cluster_name = p.first.first;
|
1810
|
-
const std::string& eds_service_name = p.first.second;
|
1811
|
-
const ClusterLoadReport& load_report = p.second;
|
1812
|
-
// Add cluster stats.
|
1813
|
-
envoy_api_v2_endpoint_ClusterStats* cluster_stats =
|
1814
|
-
envoy_service_load_stats_v2_LoadStatsRequest_add_cluster_stats(
|
1815
|
-
request, arena.ptr());
|
1816
|
-
// Set the cluster name.
|
1817
|
-
envoy_api_v2_endpoint_ClusterStats_set_cluster_name(
|
1818
|
-
cluster_stats,
|
1819
|
-
upb_strview_make(cluster_name.data(), cluster_name.size()));
|
1820
|
-
// Set EDS service name, if non-empty.
|
1821
|
-
if (!eds_service_name.empty()) {
|
1822
|
-
envoy_api_v2_endpoint_ClusterStats_set_cluster_service_name(
|
1823
|
-
cluster_stats,
|
1824
|
-
upb_strview_make(eds_service_name.data(), eds_service_name.size()));
|
1825
|
-
}
|
1826
|
-
// Add locality stats.
|
1827
|
-
for (const auto& p : load_report.locality_stats) {
|
1828
|
-
const XdsLocalityName& locality_name = *p.first;
|
1829
|
-
const auto& snapshot = p.second;
|
1830
|
-
envoy_api_v2_endpoint_UpstreamLocalityStats* locality_stats =
|
1831
|
-
envoy_api_v2_endpoint_ClusterStats_add_upstream_locality_stats(
|
1832
|
-
cluster_stats, arena.ptr());
|
1833
|
-
LocalityStatsPopulate(locality_stats, locality_name, snapshot,
|
1834
|
-
arena.ptr());
|
1835
|
-
}
|
1836
|
-
// Add dropped requests.
|
1837
|
-
uint64_t total_dropped_requests = 0;
|
1838
|
-
for (const auto& p : load_report.dropped_requests) {
|
1839
|
-
const char* category = p.first.c_str();
|
1840
|
-
const uint64_t count = p.second;
|
1841
|
-
envoy_api_v2_endpoint_ClusterStats_DroppedRequests* dropped_requests =
|
1842
|
-
envoy_api_v2_endpoint_ClusterStats_add_dropped_requests(cluster_stats,
|
1843
|
-
arena.ptr());
|
1844
|
-
envoy_api_v2_endpoint_ClusterStats_DroppedRequests_set_category(
|
1845
|
-
dropped_requests, upb_strview_makez(category));
|
1846
|
-
envoy_api_v2_endpoint_ClusterStats_DroppedRequests_set_dropped_count(
|
1847
|
-
dropped_requests, count);
|
1848
|
-
total_dropped_requests += count;
|
1849
|
-
}
|
1850
|
-
// Set total dropped requests.
|
1851
|
-
envoy_api_v2_endpoint_ClusterStats_set_total_dropped_requests(
|
1852
|
-
cluster_stats, total_dropped_requests);
|
1853
|
-
// Set real load report interval.
|
1854
|
-
gpr_timespec timespec =
|
1855
|
-
grpc_millis_to_timespec(load_report.load_report_interval, GPR_TIMESPAN);
|
1856
|
-
google_protobuf_Duration* load_report_interval =
|
1857
|
-
envoy_api_v2_endpoint_ClusterStats_mutable_load_report_interval(
|
1858
|
-
cluster_stats, arena.ptr());
|
1859
|
-
google_protobuf_Duration_set_seconds(load_report_interval, timespec.tv_sec);
|
1860
|
-
google_protobuf_Duration_set_nanos(load_report_interval, timespec.tv_nsec);
|
1861
|
-
}
|
1862
|
-
MaybeLogLrsRequest(client_, tracer_, request);
|
1863
|
-
return SerializeLrsRequest(request, arena.ptr());
|
1864
|
-
}
|
1865
|
-
|
1866
|
-
grpc_error* XdsApi::ParseLrsResponse(const grpc_slice& encoded_response,
|
1867
|
-
bool* send_all_clusters,
|
1868
|
-
std::set<std::string>* cluster_names,
|
1869
|
-
grpc_millis* load_reporting_interval) {
|
1870
|
-
upb::Arena arena;
|
1871
|
-
// Decode the response.
|
1872
|
-
const envoy_service_load_stats_v2_LoadStatsResponse* decoded_response =
|
1873
|
-
envoy_service_load_stats_v2_LoadStatsResponse_parse(
|
1874
|
-
reinterpret_cast<const char*>(GRPC_SLICE_START_PTR(encoded_response)),
|
1875
|
-
GRPC_SLICE_LENGTH(encoded_response), arena.ptr());
|
1876
|
-
// Parse the response.
|
1877
|
-
if (decoded_response == nullptr) {
|
1878
|
-
return GRPC_ERROR_CREATE_FROM_STATIC_STRING("Can't decode response.");
|
1879
|
-
}
|
1880
|
-
// Check send_all_clusters.
|
1881
|
-
if (envoy_service_load_stats_v2_LoadStatsResponse_send_all_clusters(
|
1882
|
-
decoded_response)) {
|
1883
|
-
*send_all_clusters = true;
|
1884
|
-
} else {
|
1885
|
-
// Store the cluster names.
|
1886
|
-
size_t size;
|
1887
|
-
const upb_strview* clusters =
|
1888
|
-
envoy_service_load_stats_v2_LoadStatsResponse_clusters(decoded_response,
|
1889
|
-
&size);
|
1890
|
-
for (size_t i = 0; i < size; ++i) {
|
1891
|
-
cluster_names->emplace(clusters[i].data, clusters[i].size);
|
1892
|
-
}
|
1893
|
-
}
|
1894
|
-
// Get the load report interval.
|
1895
|
-
const google_protobuf_Duration* load_reporting_interval_duration =
|
1896
|
-
envoy_service_load_stats_v2_LoadStatsResponse_load_reporting_interval(
|
1897
|
-
decoded_response);
|
1898
|
-
gpr_timespec timespec{
|
1899
|
-
google_protobuf_Duration_seconds(load_reporting_interval_duration),
|
1900
|
-
google_protobuf_Duration_nanos(load_reporting_interval_duration),
|
1901
|
-
GPR_TIMESPAN};
|
1902
|
-
*load_reporting_interval = gpr_time_to_millis(timespec);
|
1903
|
-
return GRPC_ERROR_NONE;
|
1904
|
-
}
|
1905
|
-
|
1906
|
-
} // namespace grpc_core
|