grpc 1.43.1 → 1.44.0.pre2
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 +84 -64
- data/include/grpc/grpc_security.h +10 -0
- data/include/grpc/impl/codegen/compression_types.h +0 -2
- data/include/grpc/impl/codegen/grpc_types.h +6 -0
- data/src/core/ext/filters/client_channel/backend_metric.h +1 -1
- data/src/core/ext/filters/client_channel/client_channel.cc +62 -68
- data/src/core/ext/filters/client_channel/client_channel.h +8 -8
- data/src/core/ext/filters/client_channel/client_channel_plugin.cc +1 -1
- data/src/core/ext/filters/client_channel/config_selector.h +4 -4
- data/src/core/ext/filters/client_channel/dynamic_filters.h +1 -1
- data/src/core/ext/filters/client_channel/health/health_check_client.cc +16 -14
- data/src/core/ext/filters/client_channel/health/health_check_client.h +3 -3
- data/src/core/ext/filters/client_channel/http_connect_handshaker.cc +1 -1
- data/src/core/ext/filters/client_channel/lb_policy/address_filtering.cc +4 -3
- data/src/core/ext/filters/client_channel/lb_policy/address_filtering.h +6 -5
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc +3 -7
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +31 -32
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.h +0 -7
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.h +1 -1
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.h +1 -1
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.cc +1 -1
- data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +43 -29
- data/src/core/ext/filters/client_channel/lb_policy/priority/priority.cc +6 -2
- data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.cc +120 -68
- data/src/core/ext/filters/client_channel/lb_policy/rls/rls.cc +60 -48
- data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +62 -61
- data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +16 -11
- data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +11 -5
- data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +19 -15
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds.h +1 -1
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_impl.cc +14 -12
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_manager.cc +3 -2
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_resolver.cc +50 -105
- data/src/core/ext/filters/client_channel/lb_policy.cc +15 -14
- data/src/core/ext/filters/client_channel/lb_policy.h +19 -3
- data/src/core/ext/filters/client_channel/resolver/binder/binder_resolver.cc +3 -3
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +207 -81
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h +22 -12
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +19 -15
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +23 -38
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +118 -207
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +25 -32
- 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 +82 -73
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc +10 -10
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h +2 -1
- data/src/core/ext/filters/client_channel/resolver/google_c2p/google_c2p_resolver.cc +2 -5
- data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +5 -5
- data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +157 -67
- data/src/core/ext/filters/client_channel/resolver_result_parsing.cc +1 -1
- data/src/core/ext/filters/client_channel/resolver_result_parsing.h +2 -2
- data/src/core/ext/filters/client_channel/retry_filter.cc +37 -64
- data/src/core/ext/filters/client_channel/retry_service_config.cc +1 -1
- data/src/core/ext/filters/client_channel/retry_service_config.h +1 -1
- data/src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc +1 -1
- data/src/core/ext/filters/client_channel/subchannel.cc +12 -16
- data/src/core/ext/filters/client_channel/subchannel.h +2 -3
- data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +37 -48
- data/src/core/ext/filters/fault_injection/service_config_parser.cc +6 -8
- data/src/core/ext/filters/fault_injection/service_config_parser.h +1 -1
- data/src/core/ext/filters/http/client/http_client_filter.cc +51 -122
- data/src/core/ext/filters/http/client_authority_filter.cc +8 -24
- data/src/core/ext/filters/http/message_compress/message_compress_filter.cc +42 -140
- data/src/core/ext/filters/http/message_compress/message_decompress_filter.cc +5 -25
- data/src/core/ext/filters/http/server/http_server_filter.cc +50 -135
- data/src/core/ext/filters/message_size/message_size_filter.cc +1 -1
- data/src/core/ext/filters/message_size/message_size_filter.h +1 -1
- data/src/core/ext/filters/rbac/rbac_filter.cc +157 -0
- data/src/core/ext/filters/rbac/rbac_filter.h +74 -0
- data/src/core/ext/filters/rbac/rbac_service_config_parser.cc +605 -0
- data/src/core/ext/filters/rbac/rbac_service_config_parser.h +70 -0
- data/src/core/ext/filters/server_config_selector/server_config_selector.h +3 -2
- data/src/core/ext/filters/server_config_selector/server_config_selector_filter.cc +11 -6
- data/src/core/ext/transport/chttp2/client/insecure/channel_create.cc +1 -1
- data/src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc +1 -1
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +89 -29
- data/src/core/ext/transport/chttp2/transport/chttp2_plugin.cc +0 -1
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +45 -186
- data/src/core/ext/transport/chttp2/transport/frame_data.cc +0 -1
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +341 -279
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +69 -159
- data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.cc +1 -1
- data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.h +2 -0
- data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +19 -32
- data/src/core/ext/transport/chttp2/transport/hpack_parser.h +0 -1
- data/src/core/ext/transport/chttp2/transport/hpack_parser_table.cc +94 -1
- data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +2 -24
- data/src/core/ext/transport/chttp2/transport/internal.h +0 -33
- data/src/core/ext/transport/chttp2/transport/parsing.cc +0 -6
- data/src/core/ext/transport/chttp2/transport/writing.cc +47 -116
- data/src/core/ext/transport/inproc/inproc_plugin.cc +0 -4
- data/src/core/ext/transport/inproc/inproc_transport.cc +11 -63
- data/src/core/ext/transport/inproc/inproc_transport.h +0 -3
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.c +61 -0
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.h +146 -0
- data/src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.c +188 -0
- data/src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.h +70 -0
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.c +56 -0
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/checked.upbdefs.c +154 -0
- data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/checked.upbdefs.h +95 -0
- data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/eval.upbdefs.c +58 -0
- data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/eval.upbdefs.h +55 -0
- data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/explain.upbdefs.c +44 -0
- data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/explain.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/syntax.upbdefs.c +153 -0
- data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/syntax.upbdefs.h +100 -0
- data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/value.upbdefs.c +75 -0
- data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/value.upbdefs.h +55 -0
- data/src/core/ext/xds/upb_utils.h +65 -0
- data/src/core/ext/xds/xds_api.cc +81 -3458
- data/src/core/ext/xds/xds_api.h +56 -611
- data/src/core/ext/xds/xds_bootstrap.cc +189 -125
- data/src/core/ext/xds/xds_bootstrap.h +20 -15
- data/src/core/ext/xds/xds_certificate_provider.h +1 -0
- data/src/core/ext/xds/xds_channel_creds.cc +108 -0
- data/src/core/ext/xds/xds_channel_creds.h +50 -0
- data/src/core/ext/xds/xds_client.cc +584 -994
- data/src/core/ext/xds/xds_client.h +78 -135
- data/src/core/ext/xds/xds_cluster.cc +451 -0
- data/src/core/ext/xds/xds_cluster.h +111 -0
- data/src/core/ext/xds/xds_common_types.cc +388 -0
- data/src/core/ext/xds/xds_common_types.h +110 -0
- data/src/core/ext/xds/xds_endpoint.cc +364 -0
- data/src/core/ext/xds/xds_endpoint.h +135 -0
- data/src/core/ext/xds/xds_http_filters.cc +5 -0
- data/src/core/ext/xds/xds_http_rbac_filter.cc +563 -0
- data/src/core/ext/xds/xds_http_rbac_filter.h +54 -0
- data/src/core/ext/xds/xds_listener.cc +1036 -0
- data/src/core/ext/xds/xds_listener.h +220 -0
- data/src/core/ext/{transport/chttp2/transport/hpack_utils.h → xds/xds_resource_type.cc} +12 -9
- data/src/core/ext/xds/xds_resource_type.h +98 -0
- data/src/core/ext/xds/xds_resource_type_impl.h +87 -0
- data/src/core/ext/xds/xds_route_config.cc +993 -0
- data/src/core/ext/xds/xds_route_config.h +215 -0
- data/src/core/ext/xds/xds_routing.cc +11 -8
- data/src/core/ext/xds/xds_routing.h +8 -5
- data/src/core/ext/xds/xds_server_config_fetcher.cc +159 -99
- data/src/core/lib/address_utils/parse_address.cc +20 -0
- data/src/core/lib/address_utils/parse_address.h +5 -0
- data/src/core/lib/address_utils/sockaddr_utils.cc +33 -36
- data/src/core/lib/address_utils/sockaddr_utils.h +1 -16
- data/src/core/lib/backoff/backoff.cc +4 -30
- data/src/core/lib/backoff/backoff.h +3 -3
- data/src/core/lib/channel/channel_args.cc +0 -1
- data/src/core/lib/channel/channel_stack.cc +8 -0
- data/src/core/lib/channel/channel_stack.h +1 -1
- data/src/core/lib/channel/channel_stack_builder.cc +5 -9
- data/src/core/lib/channel/channel_stack_builder.h +4 -7
- data/src/core/lib/channel/channelz.cc +1 -0
- data/src/core/lib/compression/compression.cc +19 -111
- data/src/core/lib/compression/compression_internal.cc +142 -202
- data/src/core/lib/compression/compression_internal.h +64 -69
- data/src/core/lib/compression/message_compress.cc +11 -11
- data/src/core/lib/compression/message_compress.h +2 -2
- data/src/core/lib/gpr/useful.h +4 -0
- data/src/core/lib/gprpp/bitset.h +7 -0
- data/src/core/lib/gprpp/chunked_vector.h +45 -3
- data/src/core/lib/gprpp/status_helper.cc +20 -28
- data/src/core/lib/gprpp/status_helper.h +6 -19
- data/src/core/lib/gprpp/table.h +11 -0
- data/src/core/lib/http/httpcli.cc +37 -46
- data/src/core/lib/http/httpcli.h +3 -15
- data/src/core/lib/iomgr/call_combiner.cc +15 -4
- data/src/core/lib/iomgr/closure.h +29 -9
- data/src/core/lib/iomgr/combiner.cc +25 -3
- data/src/core/lib/iomgr/error.cc +2 -0
- data/src/core/lib/iomgr/error.h +3 -0
- data/src/core/lib/iomgr/event_engine/iomgr.cc +3 -2
- data/src/core/lib/iomgr/event_engine/resolved_address_internal.cc +6 -0
- data/src/core/lib/iomgr/event_engine/resolved_address_internal.h +2 -0
- data/src/core/lib/iomgr/event_engine/resolver.cc +66 -48
- data/src/core/lib/iomgr/event_engine/resolver.h +56 -0
- data/src/core/lib/iomgr/exec_ctx.cc +22 -9
- data/src/core/lib/iomgr/executor.cc +10 -1
- data/src/core/lib/iomgr/fork_posix.cc +3 -2
- data/src/core/lib/iomgr/iomgr_custom.cc +4 -1
- data/src/core/lib/iomgr/iomgr_posix.cc +2 -2
- data/src/core/lib/iomgr/iomgr_posix_cfstream.cc +2 -2
- data/src/core/lib/iomgr/iomgr_windows.cc +2 -2
- data/src/core/lib/iomgr/port.h +2 -2
- data/src/core/lib/iomgr/resolve_address.cc +5 -24
- data/src/core/lib/iomgr/resolve_address.h +47 -44
- data/src/core/lib/iomgr/resolve_address_custom.cc +131 -109
- data/src/core/lib/iomgr/resolve_address_custom.h +101 -19
- data/src/core/lib/iomgr/resolve_address_impl.h +59 -0
- data/src/core/lib/iomgr/resolve_address_posix.cc +82 -66
- data/src/core/lib/iomgr/resolve_address_posix.h +47 -0
- data/src/core/lib/iomgr/resolve_address_windows.cc +93 -74
- data/src/core/lib/iomgr/resolve_address_windows.h +47 -0
- data/src/core/lib/iomgr/resolved_address.h +39 -0
- data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +1 -0
- data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc +1 -0
- data/src/core/lib/iomgr/unix_sockets_posix.cc +22 -34
- data/src/core/lib/iomgr/unix_sockets_posix.h +4 -7
- data/src/core/lib/iomgr/unix_sockets_posix_noop.cc +6 -15
- data/src/core/lib/matchers/matchers.cc +1 -1
- data/src/core/lib/promise/activity.h +49 -20
- data/src/core/lib/promise/detail/status.h +5 -0
- data/src/core/{ext/filters/client_channel → lib/resolver}/resolver.cc +17 -25
- data/src/core/{ext/filters/client_channel → lib/resolver}/resolver.h +43 -44
- data/src/core/{ext/filters/client_channel → lib/resolver}/resolver_factory.h +10 -5
- data/src/core/{ext/filters/client_channel → lib/resolver}/resolver_registry.cc +3 -2
- data/src/core/{ext/filters/client_channel → lib/resolver}/resolver_registry.h +4 -5
- data/src/core/{ext/filters/client_channel → lib/resolver}/server_address.cc +1 -1
- data/src/core/{ext/filters/client_channel → lib/resolver}/server_address.h +4 -4
- data/src/core/lib/resource_quota/api.h +0 -1
- data/src/core/lib/{gprpp → resource_quota}/arena.cc +16 -13
- data/src/core/lib/{gprpp → resource_quota}/arena.h +24 -13
- data/src/core/lib/security/authorization/evaluate_args.cc +30 -15
- data/src/core/lib/security/authorization/evaluate_args.h +1 -0
- data/src/core/lib/security/authorization/grpc_authorization_engine.cc +60 -0
- data/src/core/lib/security/authorization/grpc_authorization_engine.h +62 -0
- data/src/core/lib/security/authorization/matchers.cc +227 -0
- data/src/core/lib/security/authorization/matchers.h +211 -0
- data/src/core/lib/security/authorization/rbac_policy.cc +442 -0
- data/src/core/lib/security/authorization/rbac_policy.h +170 -0
- data/src/core/lib/security/context/security_context.cc +4 -2
- data/src/core/lib/security/context/security_context.h +1 -1
- data/src/core/lib/security/credentials/composite/composite_credentials.cc +5 -5
- data/src/core/lib/security/credentials/composite/composite_credentials.h +4 -3
- data/src/core/lib/security/credentials/credentials.h +10 -20
- data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +6 -9
- data/src/core/lib/security/credentials/external/external_account_credentials.cc +7 -9
- data/src/core/lib/security/credentials/external/external_account_credentials.h +2 -7
- data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +2 -3
- data/src/core/lib/security/credentials/fake/fake_credentials.cc +5 -4
- data/src/core/lib/security/credentials/fake/fake_credentials.h +8 -7
- data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +2 -5
- data/src/core/lib/security/credentials/iam/iam_credentials.cc +16 -19
- data/src/core/lib/security/credentials/iam/iam_credentials.h +6 -5
- data/src/core/lib/security/credentials/jwt/json_token.cc +4 -6
- data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +16 -28
- data/src/core/lib/security/credentials/jwt/jwt_credentials.h +8 -8
- data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +6 -13
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +44 -57
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +13 -15
- data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +6 -7
- data/src/core/lib/security/credentials/plugin/plugin_credentials.h +5 -4
- data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +1 -10
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +6 -0
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +7 -0
- data/src/core/lib/security/credentials/xds/xds_credentials.h +1 -1
- data/src/core/lib/security/security_connector/security_connector.cc +0 -4
- data/src/core/lib/security/security_connector/security_connector.h +5 -1
- data/src/core/lib/security/security_connector/ssl_utils.cc +14 -24
- data/src/core/lib/security/security_connector/ssl_utils.h +5 -14
- data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +2 -3
- data/src/core/lib/security/transport/auth_filters.h +7 -0
- data/src/core/lib/security/transport/client_auth_filter.cc +53 -33
- data/src/core/lib/security/transport/server_auth_filter.cc +40 -35
- data/src/core/{ext → lib}/service_config/service_config.cc +2 -2
- data/src/core/{ext → lib}/service_config/service_config.h +4 -4
- data/src/core/{ext → lib}/service_config/service_config_call_data.h +5 -5
- data/src/core/{ext → lib}/service_config/service_config_parser.cc +1 -1
- data/src/core/{ext → lib}/service_config/service_config_parser.h +3 -3
- data/src/core/lib/slice/slice.cc +3 -1
- data/src/core/lib/slice/slice.h +43 -13
- data/src/core/lib/slice/slice_intern.cc +3 -101
- data/src/core/lib/slice/slice_internal.h +1 -2
- data/src/core/lib/slice/slice_refcount.h +4 -13
- data/src/core/lib/slice/slice_refcount_base.h +0 -16
- data/src/core/lib/surface/call.cc +140 -382
- data/src/core/lib/surface/call.h +4 -4
- data/src/core/lib/surface/channel.cc +42 -44
- data/src/core/lib/surface/channel.h +4 -4
- data/src/core/lib/surface/init.cc +0 -2
- data/src/core/lib/surface/lame_client.cc +0 -1
- data/src/core/lib/surface/server.cc +12 -29
- data/src/core/lib/surface/server.h +2 -2
- data/src/core/lib/surface/version.cc +2 -2
- data/src/core/lib/transport/error_utils.h +14 -0
- data/src/core/lib/transport/metadata_batch.h +799 -717
- data/src/core/lib/transport/parsed_metadata.cc +2 -0
- data/src/core/lib/transport/parsed_metadata.h +95 -92
- data/src/core/lib/transport/timeout_encoding.cc +200 -66
- data/src/core/lib/transport/timeout_encoding.h +40 -10
- data/src/core/lib/transport/transport.h +1 -1
- data/src/core/lib/transport/transport_op_string.cc +6 -39
- data/src/core/lib/uri/uri_parser.cc +223 -53
- data/src/core/lib/uri/uri_parser.h +36 -23
- data/src/core/plugin_registry/grpc_plugin_registry.cc +4 -3
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +1 -1
- data/src/core/tsi/ssl/session_cache/ssl_session.h +2 -4
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.h +3 -5
- data/src/core/tsi/ssl_transport_security.cc +53 -13
- data/src/core/tsi/ssl_transport_security.h +18 -6
- data/src/ruby/ext/grpc/extconf.rb +10 -3
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +2 -0
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +3 -0
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/src/ruby/pb/src/proto/grpc/testing/test_pb.rb +2 -1
- data/third_party/abseil-cpp/absl/base/internal/fast_type_id.h +48 -0
- data/third_party/abseil-cpp/absl/random/bernoulli_distribution.h +200 -0
- data/third_party/abseil-cpp/absl/random/beta_distribution.h +427 -0
- data/third_party/abseil-cpp/absl/random/discrete_distribution.cc +98 -0
- data/third_party/abseil-cpp/absl/random/discrete_distribution.h +247 -0
- data/third_party/abseil-cpp/absl/random/distributions.h +452 -0
- data/third_party/abseil-cpp/absl/random/exponential_distribution.h +165 -0
- data/third_party/abseil-cpp/absl/random/gaussian_distribution.cc +104 -0
- data/third_party/abseil-cpp/absl/random/gaussian_distribution.h +275 -0
- data/third_party/abseil-cpp/absl/random/internal/distribution_caller.h +92 -0
- data/third_party/abseil-cpp/absl/random/internal/fast_uniform_bits.h +268 -0
- data/third_party/abseil-cpp/absl/random/internal/fastmath.h +57 -0
- data/third_party/abseil-cpp/absl/random/internal/generate_real.h +144 -0
- data/third_party/abseil-cpp/absl/random/internal/iostream_state_saver.h +245 -0
- data/third_party/abseil-cpp/absl/random/internal/nonsecure_base.h +150 -0
- data/third_party/abseil-cpp/absl/random/internal/pcg_engine.h +308 -0
- data/third_party/abseil-cpp/absl/random/internal/platform.h +171 -0
- data/third_party/abseil-cpp/absl/random/internal/pool_urbg.cc +253 -0
- data/third_party/abseil-cpp/absl/random/internal/pool_urbg.h +131 -0
- data/third_party/abseil-cpp/absl/random/internal/randen.cc +91 -0
- data/third_party/abseil-cpp/absl/random/internal/randen.h +102 -0
- data/third_party/abseil-cpp/absl/random/internal/randen_detect.cc +221 -0
- data/third_party/abseil-cpp/absl/random/internal/randen_detect.h +33 -0
- data/third_party/abseil-cpp/absl/random/internal/randen_engine.h +239 -0
- data/third_party/abseil-cpp/absl/random/internal/randen_hwaes.cc +526 -0
- data/third_party/abseil-cpp/absl/random/internal/randen_hwaes.h +50 -0
- data/third_party/abseil-cpp/absl/random/internal/randen_round_keys.cc +462 -0
- data/third_party/abseil-cpp/absl/random/internal/randen_slow.cc +471 -0
- data/third_party/abseil-cpp/absl/random/internal/randen_slow.h +40 -0
- data/third_party/abseil-cpp/absl/random/internal/randen_traits.h +88 -0
- data/third_party/abseil-cpp/absl/random/internal/salted_seed_seq.h +167 -0
- data/third_party/abseil-cpp/absl/random/internal/seed_material.cc +267 -0
- data/third_party/abseil-cpp/absl/random/internal/seed_material.h +104 -0
- data/third_party/abseil-cpp/absl/random/internal/traits.h +101 -0
- data/third_party/abseil-cpp/absl/random/internal/uniform_helper.h +244 -0
- data/third_party/abseil-cpp/absl/random/internal/wide_multiply.h +111 -0
- data/third_party/abseil-cpp/absl/random/log_uniform_int_distribution.h +257 -0
- data/third_party/abseil-cpp/absl/random/poisson_distribution.h +258 -0
- data/third_party/abseil-cpp/absl/random/random.h +189 -0
- data/third_party/abseil-cpp/absl/random/seed_gen_exception.cc +46 -0
- data/third_party/abseil-cpp/absl/random/seed_gen_exception.h +55 -0
- data/third_party/abseil-cpp/absl/random/seed_sequences.cc +29 -0
- data/third_party/abseil-cpp/absl/random/seed_sequences.h +110 -0
- data/third_party/abseil-cpp/absl/random/uniform_int_distribution.h +275 -0
- data/third_party/abseil-cpp/absl/random/uniform_real_distribution.h +202 -0
- data/third_party/abseil-cpp/absl/random/zipf_distribution.h +271 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_enc.c +1 -0
- data/third_party/boringssl-with-bazel/src/crypto/base64/base64.c +13 -0
- data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.c +21 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/cipher.c +12 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.c +1 -2
- data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/mem.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7.c +29 -0
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h +0 -1
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.c +1 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/base64.h +8 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/cipher.h +13 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/dsa.h +10 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/hpke.h +1 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/pkcs7.h +9 -4
- data/third_party/boringssl-with-bazel/src/include/openssl/pkcs8.h +6 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +23 -2
- data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +4 -0
- data/third_party/xxhash/xxhash.h +607 -352
- metadata +149 -77
- data/src/core/ext/transport/chttp2/transport/hpack_encoder_index.h +0 -107
- data/src/core/ext/transport/chttp2/transport/hpack_utils.cc +0 -46
- data/src/core/ext/transport/chttp2/transport/popularity_count.h +0 -60
- data/src/core/lib/compression/algorithm_metadata.h +0 -62
- data/src/core/lib/compression/compression_args.cc +0 -140
- data/src/core/lib/compression/compression_args.h +0 -58
- data/src/core/lib/compression/stream_compression.cc +0 -81
- data/src/core/lib/compression/stream_compression.h +0 -117
- data/src/core/lib/compression/stream_compression_gzip.cc +0 -231
- data/src/core/lib/compression/stream_compression_gzip.h +0 -28
- data/src/core/lib/compression/stream_compression_identity.cc +0 -91
- data/src/core/lib/compression/stream_compression_identity.h +0 -29
- data/src/core/lib/security/credentials/credentials_metadata.cc +0 -61
- data/src/core/lib/slice/static_slice.cc +0 -377
- data/src/core/lib/slice/static_slice.h +0 -300
- data/src/core/lib/transport/metadata.cc +0 -714
- data/src/core/lib/transport/metadata.h +0 -449
- data/src/core/lib/transport/metadata_batch.cc +0 -99
- data/src/core/lib/transport/static_metadata.cc +0 -1032
- data/src/core/lib/transport/static_metadata.h +0 -322
- data/src/core/lib/transport/status_metadata.cc +0 -63
- data/src/core/lib/transport/status_metadata.h +0 -48
@@ -0,0 +1,526 @@
|
|
1
|
+
// Copyright 2017 The Abseil Authors.
|
2
|
+
//
|
3
|
+
// Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
// you may not use this file except in compliance with the License.
|
5
|
+
// You may obtain a copy of the License at
|
6
|
+
//
|
7
|
+
// https://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
//
|
9
|
+
// Unless required by applicable law or agreed to in writing, software
|
10
|
+
// distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
+
// See the License for the specific language governing permissions and
|
13
|
+
// limitations under the License.
|
14
|
+
|
15
|
+
// HERMETIC NOTE: The randen_hwaes target must not introduce duplicate
|
16
|
+
// symbols from arbitrary system and other headers, since it may be built
|
17
|
+
// with different flags from other targets, using different levels of
|
18
|
+
// optimization, potentially introducing ODR violations.
|
19
|
+
|
20
|
+
#include "absl/random/internal/randen_hwaes.h"
|
21
|
+
|
22
|
+
#include <cstdint>
|
23
|
+
#include <cstring>
|
24
|
+
|
25
|
+
#include "absl/base/attributes.h"
|
26
|
+
#include "absl/numeric/int128.h"
|
27
|
+
#include "absl/random/internal/platform.h"
|
28
|
+
#include "absl/random/internal/randen_traits.h"
|
29
|
+
|
30
|
+
// ABSL_RANDEN_HWAES_IMPL indicates whether this file will contain
|
31
|
+
// a hardware accelerated implementation of randen, or whether it
|
32
|
+
// will contain stubs that exit the process.
|
33
|
+
#if ABSL_HAVE_ACCELERATED_AES
|
34
|
+
// The following plaforms have implemented RandenHwAes.
|
35
|
+
#if defined(ABSL_ARCH_X86_64) || defined(ABSL_ARCH_X86_32) || \
|
36
|
+
defined(ABSL_ARCH_PPC) || defined(ABSL_ARCH_ARM) || \
|
37
|
+
defined(ABSL_ARCH_AARCH64)
|
38
|
+
#define ABSL_RANDEN_HWAES_IMPL 1
|
39
|
+
#endif
|
40
|
+
#endif
|
41
|
+
|
42
|
+
#if !defined(ABSL_RANDEN_HWAES_IMPL)
|
43
|
+
// No accelerated implementation is supported.
|
44
|
+
// The RandenHwAes functions are stubs that print an error and exit.
|
45
|
+
|
46
|
+
#include <cstdio>
|
47
|
+
#include <cstdlib>
|
48
|
+
|
49
|
+
namespace absl {
|
50
|
+
ABSL_NAMESPACE_BEGIN
|
51
|
+
namespace random_internal {
|
52
|
+
|
53
|
+
// No accelerated implementation.
|
54
|
+
bool HasRandenHwAesImplementation() { return false; }
|
55
|
+
|
56
|
+
// NOLINTNEXTLINE
|
57
|
+
const void* RandenHwAes::GetKeys() {
|
58
|
+
// Attempted to dispatch to an unsupported dispatch target.
|
59
|
+
const int d = ABSL_RANDOM_INTERNAL_AES_DISPATCH;
|
60
|
+
fprintf(stderr, "AES Hardware detection failed (%d).\n", d);
|
61
|
+
exit(1);
|
62
|
+
return nullptr;
|
63
|
+
}
|
64
|
+
|
65
|
+
// NOLINTNEXTLINE
|
66
|
+
void RandenHwAes::Absorb(const void*, void*) {
|
67
|
+
// Attempted to dispatch to an unsupported dispatch target.
|
68
|
+
const int d = ABSL_RANDOM_INTERNAL_AES_DISPATCH;
|
69
|
+
fprintf(stderr, "AES Hardware detection failed (%d).\n", d);
|
70
|
+
exit(1);
|
71
|
+
}
|
72
|
+
|
73
|
+
// NOLINTNEXTLINE
|
74
|
+
void RandenHwAes::Generate(const void*, void*) {
|
75
|
+
// Attempted to dispatch to an unsupported dispatch target.
|
76
|
+
const int d = ABSL_RANDOM_INTERNAL_AES_DISPATCH;
|
77
|
+
fprintf(stderr, "AES Hardware detection failed (%d).\n", d);
|
78
|
+
exit(1);
|
79
|
+
}
|
80
|
+
|
81
|
+
} // namespace random_internal
|
82
|
+
ABSL_NAMESPACE_END
|
83
|
+
} // namespace absl
|
84
|
+
|
85
|
+
#else // defined(ABSL_RANDEN_HWAES_IMPL)
|
86
|
+
//
|
87
|
+
// Accelerated implementations are supported.
|
88
|
+
// We need the per-architecture includes and defines.
|
89
|
+
//
|
90
|
+
namespace {
|
91
|
+
|
92
|
+
using absl::random_internal::RandenTraits;
|
93
|
+
|
94
|
+
} // namespace
|
95
|
+
|
96
|
+
// TARGET_CRYPTO defines a crypto attribute for each architecture.
|
97
|
+
//
|
98
|
+
// NOTE: Evaluate whether we should eliminate ABSL_TARGET_CRYPTO.
|
99
|
+
#if (defined(__clang__) || defined(__GNUC__))
|
100
|
+
#if defined(ABSL_ARCH_X86_64) || defined(ABSL_ARCH_X86_32)
|
101
|
+
#define ABSL_TARGET_CRYPTO __attribute__((target("aes")))
|
102
|
+
#elif defined(ABSL_ARCH_PPC)
|
103
|
+
#define ABSL_TARGET_CRYPTO __attribute__((target("crypto")))
|
104
|
+
#else
|
105
|
+
#define ABSL_TARGET_CRYPTO
|
106
|
+
#endif
|
107
|
+
#else
|
108
|
+
#define ABSL_TARGET_CRYPTO
|
109
|
+
#endif
|
110
|
+
|
111
|
+
#if defined(ABSL_ARCH_PPC)
|
112
|
+
// NOTE: Keep in mind that PPC can operate in little-endian or big-endian mode,
|
113
|
+
// however the PPC altivec vector registers (and thus the AES instructions)
|
114
|
+
// always operate in big-endian mode.
|
115
|
+
|
116
|
+
#include <altivec.h>
|
117
|
+
// <altivec.h> #defines vector __vector; in C++, this is bad form.
|
118
|
+
#undef vector
|
119
|
+
#undef bool
|
120
|
+
|
121
|
+
// Rely on the PowerPC AltiVec vector operations for accelerated AES
|
122
|
+
// instructions. GCC support of the PPC vector types is described in:
|
123
|
+
// https://gcc.gnu.org/onlinedocs/gcc-4.9.0/gcc/PowerPC-AltiVec_002fVSX-Built-in-Functions.html
|
124
|
+
//
|
125
|
+
// Already provides operator^=.
|
126
|
+
using Vector128 = __vector unsigned long long; // NOLINT(runtime/int)
|
127
|
+
|
128
|
+
namespace {
|
129
|
+
inline ABSL_TARGET_CRYPTO Vector128 ReverseBytes(const Vector128& v) {
|
130
|
+
// Reverses the bytes of the vector.
|
131
|
+
const __vector unsigned char perm = {15, 14, 13, 12, 11, 10, 9, 8,
|
132
|
+
7, 6, 5, 4, 3, 2, 1, 0};
|
133
|
+
return vec_perm(v, v, perm);
|
134
|
+
}
|
135
|
+
|
136
|
+
// WARNING: these load/store in native byte order. It is OK to load and then
|
137
|
+
// store an unchanged vector, but interpreting the bits as a number or input
|
138
|
+
// to AES will have undefined results.
|
139
|
+
inline ABSL_TARGET_CRYPTO Vector128 Vector128Load(const void* from) {
|
140
|
+
return vec_vsx_ld(0, reinterpret_cast<const Vector128*>(from));
|
141
|
+
}
|
142
|
+
|
143
|
+
inline ABSL_TARGET_CRYPTO void Vector128Store(const Vector128& v, void* to) {
|
144
|
+
vec_vsx_st(v, 0, reinterpret_cast<Vector128*>(to));
|
145
|
+
}
|
146
|
+
|
147
|
+
// One round of AES. "round_key" is a public constant for breaking the
|
148
|
+
// symmetry of AES (ensures previously equal columns differ afterwards).
|
149
|
+
inline ABSL_TARGET_CRYPTO Vector128 AesRound(const Vector128& state,
|
150
|
+
const Vector128& round_key) {
|
151
|
+
return Vector128(__builtin_crypto_vcipher(state, round_key));
|
152
|
+
}
|
153
|
+
|
154
|
+
// Enables native loads in the round loop by pre-swapping.
|
155
|
+
inline ABSL_TARGET_CRYPTO void SwapEndian(absl::uint128* state) {
|
156
|
+
for (uint32_t block = 0; block < RandenTraits::kFeistelBlocks; ++block) {
|
157
|
+
Vector128Store(ReverseBytes(Vector128Load(state + block)), state + block);
|
158
|
+
}
|
159
|
+
}
|
160
|
+
|
161
|
+
} // namespace
|
162
|
+
|
163
|
+
#elif defined(ABSL_ARCH_ARM) || defined(ABSL_ARCH_AARCH64)
|
164
|
+
|
165
|
+
// Rely on the ARM NEON+Crypto advanced simd types, defined in <arm_neon.h>.
|
166
|
+
// uint8x16_t is the user alias for underlying __simd128_uint8_t type.
|
167
|
+
// http://infocenter.arm.com/help/topic/com.arm.doc.ihi0073a/IHI0073A_arm_neon_intrinsics_ref.pdf
|
168
|
+
//
|
169
|
+
// <arm_neon> defines the following
|
170
|
+
//
|
171
|
+
// typedef __attribute__((neon_vector_type(16))) uint8_t uint8x16_t;
|
172
|
+
// typedef __attribute__((neon_vector_type(16))) int8_t int8x16_t;
|
173
|
+
// typedef __attribute__((neon_polyvector_type(16))) int8_t poly8x16_t;
|
174
|
+
//
|
175
|
+
// vld1q_v
|
176
|
+
// vst1q_v
|
177
|
+
// vaeseq_v
|
178
|
+
// vaesmcq_v
|
179
|
+
#include <arm_neon.h>
|
180
|
+
|
181
|
+
// Already provides operator^=.
|
182
|
+
using Vector128 = uint8x16_t;
|
183
|
+
|
184
|
+
namespace {
|
185
|
+
|
186
|
+
inline ABSL_TARGET_CRYPTO Vector128 Vector128Load(const void* from) {
|
187
|
+
return vld1q_u8(reinterpret_cast<const uint8_t*>(from));
|
188
|
+
}
|
189
|
+
|
190
|
+
inline ABSL_TARGET_CRYPTO void Vector128Store(const Vector128& v, void* to) {
|
191
|
+
vst1q_u8(reinterpret_cast<uint8_t*>(to), v);
|
192
|
+
}
|
193
|
+
|
194
|
+
// One round of AES. "round_key" is a public constant for breaking the
|
195
|
+
// symmetry of AES (ensures previously equal columns differ afterwards).
|
196
|
+
inline ABSL_TARGET_CRYPTO Vector128 AesRound(const Vector128& state,
|
197
|
+
const Vector128& round_key) {
|
198
|
+
// It is important to always use the full round function - omitting the
|
199
|
+
// final MixColumns reduces security [https://eprint.iacr.org/2010/041.pdf]
|
200
|
+
// and does not help because we never decrypt.
|
201
|
+
//
|
202
|
+
// Note that ARM divides AES instructions differently than x86 / PPC,
|
203
|
+
// And we need to skip the first AddRoundKey step and add an extra
|
204
|
+
// AddRoundKey step to the end. Lucky for us this is just XOR.
|
205
|
+
return vaesmcq_u8(vaeseq_u8(state, uint8x16_t{})) ^ round_key;
|
206
|
+
}
|
207
|
+
|
208
|
+
inline ABSL_TARGET_CRYPTO void SwapEndian(void*) {}
|
209
|
+
|
210
|
+
} // namespace
|
211
|
+
|
212
|
+
#elif defined(ABSL_ARCH_X86_64) || defined(ABSL_ARCH_X86_32)
|
213
|
+
// On x86 we rely on the aesni instructions
|
214
|
+
#include <immintrin.h>
|
215
|
+
|
216
|
+
namespace {
|
217
|
+
|
218
|
+
// Vector128 class is only wrapper for __m128i, benchmark indicates that it's
|
219
|
+
// faster than using __m128i directly.
|
220
|
+
class Vector128 {
|
221
|
+
public:
|
222
|
+
// Convert from/to intrinsics.
|
223
|
+
inline explicit Vector128(const __m128i& v) : data_(v) {}
|
224
|
+
|
225
|
+
inline __m128i data() const { return data_; }
|
226
|
+
|
227
|
+
inline Vector128& operator^=(const Vector128& other) {
|
228
|
+
data_ = _mm_xor_si128(data_, other.data());
|
229
|
+
return *this;
|
230
|
+
}
|
231
|
+
|
232
|
+
private:
|
233
|
+
__m128i data_;
|
234
|
+
};
|
235
|
+
|
236
|
+
inline ABSL_TARGET_CRYPTO Vector128 Vector128Load(const void* from) {
|
237
|
+
return Vector128(_mm_load_si128(reinterpret_cast<const __m128i*>(from)));
|
238
|
+
}
|
239
|
+
|
240
|
+
inline ABSL_TARGET_CRYPTO void Vector128Store(const Vector128& v, void* to) {
|
241
|
+
_mm_store_si128(reinterpret_cast<__m128i*>(to), v.data());
|
242
|
+
}
|
243
|
+
|
244
|
+
// One round of AES. "round_key" is a public constant for breaking the
|
245
|
+
// symmetry of AES (ensures previously equal columns differ afterwards).
|
246
|
+
inline ABSL_TARGET_CRYPTO Vector128 AesRound(const Vector128& state,
|
247
|
+
const Vector128& round_key) {
|
248
|
+
// It is important to always use the full round function - omitting the
|
249
|
+
// final MixColumns reduces security [https://eprint.iacr.org/2010/041.pdf]
|
250
|
+
// and does not help because we never decrypt.
|
251
|
+
return Vector128(_mm_aesenc_si128(state.data(), round_key.data()));
|
252
|
+
}
|
253
|
+
|
254
|
+
inline ABSL_TARGET_CRYPTO void SwapEndian(void*) {}
|
255
|
+
|
256
|
+
} // namespace
|
257
|
+
|
258
|
+
#endif
|
259
|
+
|
260
|
+
#ifdef __clang__
|
261
|
+
#pragma clang diagnostic push
|
262
|
+
#pragma clang diagnostic ignored "-Wunknown-pragmas"
|
263
|
+
#endif
|
264
|
+
|
265
|
+
// At this point, all of the platform-specific features have been defined /
|
266
|
+
// implemented.
|
267
|
+
//
|
268
|
+
// REQUIRES: using Vector128 = ...
|
269
|
+
// REQUIRES: Vector128 Vector128Load(void*) {...}
|
270
|
+
// REQUIRES: void Vector128Store(Vector128, void*) {...}
|
271
|
+
// REQUIRES: Vector128 AesRound(Vector128, Vector128) {...}
|
272
|
+
// REQUIRES: void SwapEndian(uint64_t*) {...}
|
273
|
+
//
|
274
|
+
// PROVIDES: absl::random_internal::RandenHwAes::Absorb
|
275
|
+
// PROVIDES: absl::random_internal::RandenHwAes::Generate
|
276
|
+
namespace {
|
277
|
+
|
278
|
+
// Block shuffles applies a shuffle to the entire state between AES rounds.
|
279
|
+
// Improved odd-even shuffle from "New criterion for diffusion property".
|
280
|
+
inline ABSL_TARGET_CRYPTO void BlockShuffle(absl::uint128* state) {
|
281
|
+
static_assert(RandenTraits::kFeistelBlocks == 16,
|
282
|
+
"Expecting 16 FeistelBlocks.");
|
283
|
+
|
284
|
+
constexpr size_t shuffle[RandenTraits::kFeistelBlocks] = {
|
285
|
+
7, 2, 13, 4, 11, 8, 3, 6, 15, 0, 9, 10, 1, 14, 5, 12};
|
286
|
+
|
287
|
+
const Vector128 v0 = Vector128Load(state + shuffle[0]);
|
288
|
+
const Vector128 v1 = Vector128Load(state + shuffle[1]);
|
289
|
+
const Vector128 v2 = Vector128Load(state + shuffle[2]);
|
290
|
+
const Vector128 v3 = Vector128Load(state + shuffle[3]);
|
291
|
+
const Vector128 v4 = Vector128Load(state + shuffle[4]);
|
292
|
+
const Vector128 v5 = Vector128Load(state + shuffle[5]);
|
293
|
+
const Vector128 v6 = Vector128Load(state + shuffle[6]);
|
294
|
+
const Vector128 v7 = Vector128Load(state + shuffle[7]);
|
295
|
+
const Vector128 w0 = Vector128Load(state + shuffle[8]);
|
296
|
+
const Vector128 w1 = Vector128Load(state + shuffle[9]);
|
297
|
+
const Vector128 w2 = Vector128Load(state + shuffle[10]);
|
298
|
+
const Vector128 w3 = Vector128Load(state + shuffle[11]);
|
299
|
+
const Vector128 w4 = Vector128Load(state + shuffle[12]);
|
300
|
+
const Vector128 w5 = Vector128Load(state + shuffle[13]);
|
301
|
+
const Vector128 w6 = Vector128Load(state + shuffle[14]);
|
302
|
+
const Vector128 w7 = Vector128Load(state + shuffle[15]);
|
303
|
+
|
304
|
+
Vector128Store(v0, state + 0);
|
305
|
+
Vector128Store(v1, state + 1);
|
306
|
+
Vector128Store(v2, state + 2);
|
307
|
+
Vector128Store(v3, state + 3);
|
308
|
+
Vector128Store(v4, state + 4);
|
309
|
+
Vector128Store(v5, state + 5);
|
310
|
+
Vector128Store(v6, state + 6);
|
311
|
+
Vector128Store(v7, state + 7);
|
312
|
+
Vector128Store(w0, state + 8);
|
313
|
+
Vector128Store(w1, state + 9);
|
314
|
+
Vector128Store(w2, state + 10);
|
315
|
+
Vector128Store(w3, state + 11);
|
316
|
+
Vector128Store(w4, state + 12);
|
317
|
+
Vector128Store(w5, state + 13);
|
318
|
+
Vector128Store(w6, state + 14);
|
319
|
+
Vector128Store(w7, state + 15);
|
320
|
+
}
|
321
|
+
|
322
|
+
// Feistel round function using two AES subrounds. Very similar to F()
|
323
|
+
// from Simpira v2, but with independent subround keys. Uses 17 AES rounds
|
324
|
+
// per 16 bytes (vs. 10 for AES-CTR). Computing eight round functions in
|
325
|
+
// parallel hides the 7-cycle AESNI latency on HSW. Note that the Feistel
|
326
|
+
// XORs are 'free' (included in the second AES instruction).
|
327
|
+
inline ABSL_TARGET_CRYPTO const absl::uint128* FeistelRound(
|
328
|
+
absl::uint128* state,
|
329
|
+
const absl::uint128* ABSL_RANDOM_INTERNAL_RESTRICT keys) {
|
330
|
+
static_assert(RandenTraits::kFeistelBlocks == 16,
|
331
|
+
"Expecting 16 FeistelBlocks.");
|
332
|
+
|
333
|
+
// MSVC does a horrible job at unrolling loops.
|
334
|
+
// So we unroll the loop by hand to improve the performance.
|
335
|
+
const Vector128 s0 = Vector128Load(state + 0);
|
336
|
+
const Vector128 s1 = Vector128Load(state + 1);
|
337
|
+
const Vector128 s2 = Vector128Load(state + 2);
|
338
|
+
const Vector128 s3 = Vector128Load(state + 3);
|
339
|
+
const Vector128 s4 = Vector128Load(state + 4);
|
340
|
+
const Vector128 s5 = Vector128Load(state + 5);
|
341
|
+
const Vector128 s6 = Vector128Load(state + 6);
|
342
|
+
const Vector128 s7 = Vector128Load(state + 7);
|
343
|
+
const Vector128 s8 = Vector128Load(state + 8);
|
344
|
+
const Vector128 s9 = Vector128Load(state + 9);
|
345
|
+
const Vector128 s10 = Vector128Load(state + 10);
|
346
|
+
const Vector128 s11 = Vector128Load(state + 11);
|
347
|
+
const Vector128 s12 = Vector128Load(state + 12);
|
348
|
+
const Vector128 s13 = Vector128Load(state + 13);
|
349
|
+
const Vector128 s14 = Vector128Load(state + 14);
|
350
|
+
const Vector128 s15 = Vector128Load(state + 15);
|
351
|
+
|
352
|
+
// Encode even blocks with keys.
|
353
|
+
const Vector128 e0 = AesRound(s0, Vector128Load(keys + 0));
|
354
|
+
const Vector128 e2 = AesRound(s2, Vector128Load(keys + 1));
|
355
|
+
const Vector128 e4 = AesRound(s4, Vector128Load(keys + 2));
|
356
|
+
const Vector128 e6 = AesRound(s6, Vector128Load(keys + 3));
|
357
|
+
const Vector128 e8 = AesRound(s8, Vector128Load(keys + 4));
|
358
|
+
const Vector128 e10 = AesRound(s10, Vector128Load(keys + 5));
|
359
|
+
const Vector128 e12 = AesRound(s12, Vector128Load(keys + 6));
|
360
|
+
const Vector128 e14 = AesRound(s14, Vector128Load(keys + 7));
|
361
|
+
|
362
|
+
// Encode odd blocks with even output from above.
|
363
|
+
const Vector128 o1 = AesRound(e0, s1);
|
364
|
+
const Vector128 o3 = AesRound(e2, s3);
|
365
|
+
const Vector128 o5 = AesRound(e4, s5);
|
366
|
+
const Vector128 o7 = AesRound(e6, s7);
|
367
|
+
const Vector128 o9 = AesRound(e8, s9);
|
368
|
+
const Vector128 o11 = AesRound(e10, s11);
|
369
|
+
const Vector128 o13 = AesRound(e12, s13);
|
370
|
+
const Vector128 o15 = AesRound(e14, s15);
|
371
|
+
|
372
|
+
// Store odd blocks. (These will be shuffled later).
|
373
|
+
Vector128Store(o1, state + 1);
|
374
|
+
Vector128Store(o3, state + 3);
|
375
|
+
Vector128Store(o5, state + 5);
|
376
|
+
Vector128Store(o7, state + 7);
|
377
|
+
Vector128Store(o9, state + 9);
|
378
|
+
Vector128Store(o11, state + 11);
|
379
|
+
Vector128Store(o13, state + 13);
|
380
|
+
Vector128Store(o15, state + 15);
|
381
|
+
|
382
|
+
return keys + 8;
|
383
|
+
}
|
384
|
+
|
385
|
+
// Cryptographic permutation based via type-2 Generalized Feistel Network.
|
386
|
+
// Indistinguishable from ideal by chosen-ciphertext adversaries using less than
|
387
|
+
// 2^64 queries if the round function is a PRF. This is similar to the b=8 case
|
388
|
+
// of Simpira v2, but more efficient than its generic construction for b=16.
|
389
|
+
inline ABSL_TARGET_CRYPTO void Permute(
|
390
|
+
absl::uint128* state,
|
391
|
+
const absl::uint128* ABSL_RANDOM_INTERNAL_RESTRICT keys) {
|
392
|
+
// (Successfully unrolled; the first iteration jumps into the second half)
|
393
|
+
#ifdef __clang__
|
394
|
+
#pragma clang loop unroll_count(2)
|
395
|
+
#endif
|
396
|
+
for (size_t round = 0; round < RandenTraits::kFeistelRounds; ++round) {
|
397
|
+
keys = FeistelRound(state, keys);
|
398
|
+
BlockShuffle(state);
|
399
|
+
}
|
400
|
+
}
|
401
|
+
|
402
|
+
} // namespace
|
403
|
+
|
404
|
+
namespace absl {
|
405
|
+
ABSL_NAMESPACE_BEGIN
|
406
|
+
namespace random_internal {
|
407
|
+
|
408
|
+
bool HasRandenHwAesImplementation() { return true; }
|
409
|
+
|
410
|
+
const void* ABSL_TARGET_CRYPTO RandenHwAes::GetKeys() {
|
411
|
+
// Round keys for one AES per Feistel round and branch.
|
412
|
+
// The canonical implementation uses first digits of Pi.
|
413
|
+
#if defined(ABSL_ARCH_PPC)
|
414
|
+
return kRandenRoundKeysBE;
|
415
|
+
#else
|
416
|
+
return kRandenRoundKeys;
|
417
|
+
#endif
|
418
|
+
}
|
419
|
+
|
420
|
+
// NOLINTNEXTLINE
|
421
|
+
void ABSL_TARGET_CRYPTO RandenHwAes::Absorb(const void* seed_void,
|
422
|
+
void* state_void) {
|
423
|
+
static_assert(RandenTraits::kCapacityBytes / sizeof(Vector128) == 1,
|
424
|
+
"Unexpected Randen kCapacityBlocks");
|
425
|
+
static_assert(RandenTraits::kStateBytes / sizeof(Vector128) == 16,
|
426
|
+
"Unexpected Randen kStateBlocks");
|
427
|
+
|
428
|
+
auto* state = reinterpret_cast<absl::uint128 * ABSL_RANDOM_INTERNAL_RESTRICT>(
|
429
|
+
state_void);
|
430
|
+
const auto* seed =
|
431
|
+
reinterpret_cast<const absl::uint128 * ABSL_RANDOM_INTERNAL_RESTRICT>(
|
432
|
+
seed_void);
|
433
|
+
|
434
|
+
Vector128 b1 = Vector128Load(state + 1);
|
435
|
+
b1 ^= Vector128Load(seed + 0);
|
436
|
+
Vector128Store(b1, state + 1);
|
437
|
+
|
438
|
+
Vector128 b2 = Vector128Load(state + 2);
|
439
|
+
b2 ^= Vector128Load(seed + 1);
|
440
|
+
Vector128Store(b2, state + 2);
|
441
|
+
|
442
|
+
Vector128 b3 = Vector128Load(state + 3);
|
443
|
+
b3 ^= Vector128Load(seed + 2);
|
444
|
+
Vector128Store(b3, state + 3);
|
445
|
+
|
446
|
+
Vector128 b4 = Vector128Load(state + 4);
|
447
|
+
b4 ^= Vector128Load(seed + 3);
|
448
|
+
Vector128Store(b4, state + 4);
|
449
|
+
|
450
|
+
Vector128 b5 = Vector128Load(state + 5);
|
451
|
+
b5 ^= Vector128Load(seed + 4);
|
452
|
+
Vector128Store(b5, state + 5);
|
453
|
+
|
454
|
+
Vector128 b6 = Vector128Load(state + 6);
|
455
|
+
b6 ^= Vector128Load(seed + 5);
|
456
|
+
Vector128Store(b6, state + 6);
|
457
|
+
|
458
|
+
Vector128 b7 = Vector128Load(state + 7);
|
459
|
+
b7 ^= Vector128Load(seed + 6);
|
460
|
+
Vector128Store(b7, state + 7);
|
461
|
+
|
462
|
+
Vector128 b8 = Vector128Load(state + 8);
|
463
|
+
b8 ^= Vector128Load(seed + 7);
|
464
|
+
Vector128Store(b8, state + 8);
|
465
|
+
|
466
|
+
Vector128 b9 = Vector128Load(state + 9);
|
467
|
+
b9 ^= Vector128Load(seed + 8);
|
468
|
+
Vector128Store(b9, state + 9);
|
469
|
+
|
470
|
+
Vector128 b10 = Vector128Load(state + 10);
|
471
|
+
b10 ^= Vector128Load(seed + 9);
|
472
|
+
Vector128Store(b10, state + 10);
|
473
|
+
|
474
|
+
Vector128 b11 = Vector128Load(state + 11);
|
475
|
+
b11 ^= Vector128Load(seed + 10);
|
476
|
+
Vector128Store(b11, state + 11);
|
477
|
+
|
478
|
+
Vector128 b12 = Vector128Load(state + 12);
|
479
|
+
b12 ^= Vector128Load(seed + 11);
|
480
|
+
Vector128Store(b12, state + 12);
|
481
|
+
|
482
|
+
Vector128 b13 = Vector128Load(state + 13);
|
483
|
+
b13 ^= Vector128Load(seed + 12);
|
484
|
+
Vector128Store(b13, state + 13);
|
485
|
+
|
486
|
+
Vector128 b14 = Vector128Load(state + 14);
|
487
|
+
b14 ^= Vector128Load(seed + 13);
|
488
|
+
Vector128Store(b14, state + 14);
|
489
|
+
|
490
|
+
Vector128 b15 = Vector128Load(state + 15);
|
491
|
+
b15 ^= Vector128Load(seed + 14);
|
492
|
+
Vector128Store(b15, state + 15);
|
493
|
+
}
|
494
|
+
|
495
|
+
// NOLINTNEXTLINE
|
496
|
+
void ABSL_TARGET_CRYPTO RandenHwAes::Generate(const void* keys_void,
|
497
|
+
void* state_void) {
|
498
|
+
static_assert(RandenTraits::kCapacityBytes == sizeof(Vector128),
|
499
|
+
"Capacity mismatch");
|
500
|
+
|
501
|
+
auto* state = reinterpret_cast<absl::uint128*>(state_void);
|
502
|
+
const auto* keys = reinterpret_cast<const absl::uint128*>(keys_void);
|
503
|
+
|
504
|
+
const Vector128 prev_inner = Vector128Load(state);
|
505
|
+
|
506
|
+
SwapEndian(state);
|
507
|
+
|
508
|
+
Permute(state, keys);
|
509
|
+
|
510
|
+
SwapEndian(state);
|
511
|
+
|
512
|
+
// Ensure backtracking resistance.
|
513
|
+
Vector128 inner = Vector128Load(state);
|
514
|
+
inner ^= prev_inner;
|
515
|
+
Vector128Store(inner, state);
|
516
|
+
}
|
517
|
+
|
518
|
+
#ifdef __clang__
|
519
|
+
#pragma clang diagnostic pop
|
520
|
+
#endif
|
521
|
+
|
522
|
+
} // namespace random_internal
|
523
|
+
ABSL_NAMESPACE_END
|
524
|
+
} // namespace absl
|
525
|
+
|
526
|
+
#endif // (ABSL_RANDEN_HWAES_IMPL)
|
@@ -0,0 +1,50 @@
|
|
1
|
+
// Copyright 2017 The Abseil Authors.
|
2
|
+
//
|
3
|
+
// Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
// you may not use this file except in compliance with the License.
|
5
|
+
// You may obtain a copy of the License at
|
6
|
+
//
|
7
|
+
// https://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
//
|
9
|
+
// Unless required by applicable law or agreed to in writing, software
|
10
|
+
// distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
+
// See the License for the specific language governing permissions and
|
13
|
+
// limitations under the License.
|
14
|
+
|
15
|
+
#ifndef ABSL_RANDOM_INTERNAL_RANDEN_HWAES_H_
|
16
|
+
#define ABSL_RANDOM_INTERNAL_RANDEN_HWAES_H_
|
17
|
+
|
18
|
+
#include "absl/base/config.h"
|
19
|
+
|
20
|
+
// HERMETIC NOTE: The randen_hwaes target must not introduce duplicate
|
21
|
+
// symbols from arbitrary system and other headers, since it may be built
|
22
|
+
// with different flags from other targets, using different levels of
|
23
|
+
// optimization, potentially introducing ODR violations.
|
24
|
+
|
25
|
+
namespace absl {
|
26
|
+
ABSL_NAMESPACE_BEGIN
|
27
|
+
namespace random_internal {
|
28
|
+
|
29
|
+
// RANDen = RANDom generator or beetroots in Swiss High German.
|
30
|
+
// 'Strong' (well-distributed, unpredictable, backtracking-resistant) random
|
31
|
+
// generator, faster in some benchmarks than std::mt19937_64 and pcg64_c32.
|
32
|
+
//
|
33
|
+
// RandenHwAes implements the basic state manipulation methods.
|
34
|
+
class RandenHwAes {
|
35
|
+
public:
|
36
|
+
static void Generate(const void* keys, void* state_void);
|
37
|
+
static void Absorb(const void* seed_void, void* state_void);
|
38
|
+
static const void* GetKeys();
|
39
|
+
};
|
40
|
+
|
41
|
+
// HasRandenHwAesImplementation returns true when there is an accelerated
|
42
|
+
// implementation, and false otherwise. If there is no implementation,
|
43
|
+
// then attempting to use it will abort the program.
|
44
|
+
bool HasRandenHwAesImplementation();
|
45
|
+
|
46
|
+
} // namespace random_internal
|
47
|
+
ABSL_NAMESPACE_END
|
48
|
+
} // namespace absl
|
49
|
+
|
50
|
+
#endif // ABSL_RANDOM_INTERNAL_RANDEN_HWAES_H_
|