grpc 1.61.3 → 1.62.0.pre1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Makefile +218 -196
- data/include/grpc/event_engine/event_engine.h +5 -43
- data/include/grpc/event_engine/extensible.h +68 -0
- data/include/grpc/impl/slice_type.h +1 -1
- data/include/grpc/support/port_platform.h +12 -20
- data/src/core/{ext/filters/client_channel → client_channel}/backend_metric.cc +1 -1
- data/src/core/{ext/filters/client_channel → client_channel}/backend_metric.h +4 -4
- data/src/core/{ext/filters/client_channel → client_channel}/backup_poller.cc +1 -1
- data/src/core/{ext/filters/client_channel → client_channel}/backup_poller.h +3 -3
- data/src/core/{ext/filters/client_channel → client_channel}/channel_connectivity.cc +11 -11
- data/src/core/{ext/filters/client_channel → client_channel}/client_channel_channelz.cc +1 -1
- data/src/core/{ext/filters/client_channel → client_channel}/client_channel_channelz.h +3 -3
- data/src/core/{ext/filters/client_channel → client_channel}/client_channel_factory.cc +1 -1
- data/src/core/{ext/filters/client_channel → client_channel}/client_channel_factory.h +4 -4
- data/src/core/{ext/filters/client_channel/client_channel.cc → client_channel/client_channel_filter.cc} +247 -231
- data/src/core/{ext/filters/client_channel/client_channel.h → client_channel/client_channel_filter.h} +42 -42
- data/src/core/{ext/filters/client_channel → client_channel}/client_channel_internal.h +6 -6
- data/src/core/{ext/filters/client_channel → client_channel}/client_channel_plugin.cc +5 -5
- data/src/core/{ext/filters/client_channel → client_channel}/client_channel_service_config.cc +2 -2
- data/src/core/{ext/filters/client_channel → client_channel}/client_channel_service_config.h +5 -5
- data/src/core/{ext/filters/client_channel → client_channel}/config_selector.cc +1 -1
- data/src/core/{ext/filters/client_channel → client_channel}/config_selector.h +5 -5
- data/src/core/{ext/filters/client_channel → client_channel}/connector.h +3 -3
- data/src/core/{ext/filters/client_channel → client_channel}/dynamic_filters.cc +1 -1
- data/src/core/{ext/filters/client_channel → client_channel}/dynamic_filters.h +3 -3
- data/src/core/{ext/filters/client_channel → client_channel}/global_subchannel_pool.cc +2 -2
- data/src/core/{ext/filters/client_channel → client_channel}/global_subchannel_pool.h +4 -4
- data/src/core/{ext/filters/client_channel → client_channel}/http_proxy_mapper.cc +1 -1
- data/src/core/{ext/filters/client_channel → client_channel}/http_proxy_mapper.h +3 -3
- data/src/core/{ext/filters/client_channel → client_channel}/local_subchannel_pool.cc +2 -2
- data/src/core/{ext/filters/client_channel → client_channel}/local_subchannel_pool.h +4 -4
- data/src/core/{ext/filters/client_channel → client_channel}/retry_filter.cc +8 -8
- data/src/core/{ext/filters/client_channel → client_channel}/retry_filter.h +8 -8
- data/src/core/{ext/filters/client_channel → client_channel}/retry_filter_legacy_call_data.cc +12 -9
- data/src/core/{ext/filters/client_channel → client_channel}/retry_filter_legacy_call_data.h +11 -10
- data/src/core/{ext/filters/client_channel → client_channel}/retry_service_config.cc +1 -1
- data/src/core/{ext/filters/client_channel → client_channel}/retry_service_config.h +4 -4
- data/src/core/{ext/filters/client_channel → client_channel}/retry_throttle.cc +1 -1
- data/src/core/{ext/filters/client_channel → client_channel}/retry_throttle.h +3 -3
- data/src/core/{ext/filters/client_channel → client_channel}/service_config_channel_arg_filter.cc +4 -4
- data/src/core/{ext/filters/client_channel → client_channel}/subchannel.cc +2 -2
- data/src/core/{ext/filters/client_channel → client_channel}/subchannel.h +6 -6
- data/src/core/{ext/filters/client_channel → client_channel}/subchannel_interface_internal.h +5 -5
- data/src/core/{ext/filters/client_channel → client_channel}/subchannel_pool_interface.cc +1 -1
- data/src/core/{ext/filters/client_channel → client_channel}/subchannel_pool_interface.h +3 -3
- data/src/core/{ext/filters/client_channel → client_channel}/subchannel_stream_client.cc +1 -1
- data/src/core/{ext/filters/client_channel → client_channel}/subchannel_stream_client.h +4 -4
- data/src/core/ext/filters/backend_metrics/backend_metric_filter.cc +1 -1
- data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +1 -1
- data/src/core/ext/filters/fault_injection/fault_injection_service_config_parser.h +1 -1
- data/src/core/ext/filters/http/message_compress/legacy_compression_filter.cc +2 -2
- data/src/core/ext/filters/http/server/http_server_filter.cc +1 -1
- data/src/core/ext/filters/message_size/message_size_filter.cc +3 -3
- data/src/core/ext/filters/message_size/message_size_filter.h +1 -1
- data/src/core/ext/filters/rbac/rbac_filter.cc +1 -1
- data/src/core/ext/filters/rbac/rbac_service_config_parser.h +1 -1
- data/src/core/ext/filters/server_config_selector/server_config_selector.h +2 -2
- data/src/core/ext/filters/server_config_selector/server_config_selector_filter.cc +2 -2
- data/src/core/ext/filters/stateful_session/stateful_session_filter.cc +2 -2
- data/src/core/ext/filters/stateful_session/stateful_session_filter.h +1 -1
- data/src/core/ext/filters/stateful_session/stateful_session_service_config_parser.h +1 -1
- data/src/core/ext/transport/chttp2/alpn/alpn.cc +4 -1
- data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +5 -5
- data/src/core/ext/transport/chttp2/client/chttp2_connector.h +1 -1
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +1 -0
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +5 -0
- data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +27 -36
- data/src/core/ext/transport/chttp2/transport/hpack_parser.h +3 -3
- data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +3 -1
- data/src/core/ext/transport/inproc/inproc_transport.cc +20 -13
- data/src/core/ext/transport/inproc/inproc_transport.h +8 -0
- data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb.h +351 -164
- data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.c +89 -50
- data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.h +2 -0
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb.h +47 -3
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.c +15 -7
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb.h +32 -3
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb_minitable.c +8 -5
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb.h +28 -0
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.c +6 -4
- data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb.h +0 -1
- data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.c +0 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb.h +29 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.c +7 -4
- data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb.h +17 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.c +4 -3
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb.h +166 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb_minitable.c +55 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb.h +30 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.c +7 -5
- data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb.h +99 -19
- data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.c +29 -12
- data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.h +1 -0
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb.h +15 -0
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.c +4 -3
- data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb.h +31 -3
- data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.c +22 -4
- data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb.h +91 -3
- data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.c +11 -8
- data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb.h +30 -0
- data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.c +7 -4
- data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb.h +1 -0
- data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb_minitable.c +1 -0
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb.h +125 -3
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.c +17 -4
- data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb.h +19 -1
- data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.c +4 -3
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb.h +1 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.c +1 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb.h +15 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.c +5 -2
- data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +42 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.c +11 -8
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb.h +23 -8
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.c +9 -4
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +58 -16
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.c +14 -11
- data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb.h +15 -0
- data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.c +7 -2
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb.h +129 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.c +27 -6
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.h +1 -0
- data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb.h +15 -0
- data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.c +5 -2
- data/src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.c +60 -60
- data/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.c +278 -256
- data/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.h +10 -0
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.c +483 -475
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/filter.upbdefs.c +27 -20
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/outlier_detection.upbdefs.c +17 -12
- data/src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.c +157 -161
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.c +105 -97
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.c +106 -102
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_service.upbdefs.c +52 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_service.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_uri.upbdefs.c +14 -13
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.c +228 -224
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.c +32 -26
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint.upbdefs.c +31 -28
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.c +22 -19
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.c +818 -813
- data/src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.c +158 -151
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/dynamic_ot.upbdefs.c +27 -23
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.c +59 -53
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.c +40 -18
- data/src/core/ext/upbdefs-gen/envoy/data/accesslog/v3/accesslog.upbdefs.c +106 -103
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3/router.upbdefs.c +16 -12
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.c +22 -21
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +265 -261
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c +127 -125
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c +188 -182
- data/src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.c +57 -56
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.c +27 -20
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.c +10 -8
- data/src/core/ext/xds/xds_api.cc +63 -150
- data/src/core/ext/xds/xds_api.h +2 -7
- data/src/core/ext/xds/xds_bootstrap.h +3 -4
- data/src/core/ext/xds/xds_bootstrap_grpc.cc +4 -15
- data/src/core/ext/xds/xds_bootstrap_grpc.h +2 -1
- data/src/core/ext/xds/xds_client.cc +111 -59
- data/src/core/ext/xds/xds_client.h +20 -15
- data/src/core/ext/xds/xds_client_grpc.cc +53 -15
- data/src/core/ext/xds/xds_client_grpc.h +4 -1
- data/src/core/ext/xds/xds_client_stats.cc +11 -11
- data/src/core/ext/xds/xds_client_stats.h +8 -13
- data/src/core/ext/xds/xds_cluster.cc +1 -1
- data/src/core/ext/xds/xds_cluster.h +1 -1
- data/src/core/ext/xds/xds_endpoint.h +1 -1
- data/src/core/ext/xds/xds_health_status.h +1 -1
- data/src/core/ext/xds/xds_lb_policy_registry.cc +1 -1
- data/src/core/ext/xds/xds_route_config.cc +1 -1
- data/src/core/ext/xds/xds_server_config_fetcher.cc +2 -2
- data/src/core/ext/xds/xds_transport_grpc.cc +5 -5
- data/src/core/lib/channel/channel_args.h +15 -1
- data/src/core/lib/channel/connected_channel.cc +13 -12
- data/src/core/lib/channel/promise_based_filter.cc +4 -4
- data/src/core/lib/channel/promise_based_filter.h +1 -2
- data/src/core/lib/config/core_configuration.h +3 -3
- data/src/core/lib/event_engine/ares_resolver.cc +106 -59
- data/src/core/lib/event_engine/extensions/can_track_errors.h +40 -0
- data/src/core/lib/event_engine/extensions/supports_fd.h +160 -0
- data/src/core/lib/event_engine/forkable.cc +7 -5
- data/src/core/lib/event_engine/posix.h +11 -122
- data/src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.h +1 -5
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.cc +31 -7
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.h +1 -0
- data/src/core/lib/event_engine/posix_engine/posix_engine.cc +3 -4
- data/src/core/lib/event_engine/posix_engine/posix_engine.h +2 -3
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener.cc +14 -6
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.cc +10 -0
- data/src/core/lib/event_engine/query_extensions.h +85 -0
- data/src/core/lib/event_engine/shim.cc +3 -17
- data/src/core/lib/event_engine/shim.h +0 -2
- data/src/core/lib/event_engine/thread_pool/thread_count.cc +28 -7
- data/src/core/lib/event_engine/thread_pool/thread_count.h +6 -1
- data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc +109 -5
- data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.h +9 -0
- data/src/core/lib/event_engine/utils.cc +2 -1
- data/src/core/lib/event_engine/windows/grpc_polled_fd_windows.cc +1 -0
- data/src/core/lib/experiments/config.cc +10 -2
- data/src/core/lib/experiments/config.h +6 -0
- data/src/core/lib/experiments/experiments.cc +57 -18
- data/src/core/lib/experiments/experiments.h +16 -8
- data/src/core/lib/gpr/posix/sync.cc +2 -2
- data/src/core/lib/gpr/posix/time.cc +0 -5
- data/src/core/lib/gpr/windows/sync.cc +2 -2
- data/src/core/lib/gprpp/debug_location.h +2 -0
- data/src/core/lib/gprpp/down_cast.h +49 -0
- data/src/core/lib/gprpp/linux/env.cc +1 -19
- data/src/core/lib/gprpp/load_file.cc +2 -1
- data/src/core/lib/gprpp/load_file.h +2 -1
- data/src/core/lib/gprpp/posix/thd.cc +27 -2
- data/src/core/lib/gprpp/thd.h +8 -0
- data/src/core/lib/gprpp/time.h +4 -3
- data/src/core/lib/gprpp/windows/thd.cc +10 -1
- data/src/core/lib/iomgr/combiner.cc +1 -1
- data/src/core/lib/iomgr/event_engine_shims/endpoint.cc +20 -14
- data/src/core/lib/iomgr/grpc_if_nametoindex_posix.cc +2 -2
- data/src/core/lib/iomgr/grpc_if_nametoindex_unsupported.cc +2 -2
- data/src/core/lib/iomgr/tcp_server_posix.cc +65 -50
- data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc +12 -0
- data/src/core/lib/json/json_writer.cc +1 -1
- data/src/core/lib/promise/activity.h +8 -2
- data/src/core/lib/promise/context.h +45 -7
- data/src/core/lib/promise/for_each.h +6 -9
- data/src/core/lib/promise/interceptor_list.h +13 -5
- data/src/core/lib/promise/latch.h +3 -3
- data/src/core/lib/promise/party.cc +12 -0
- data/src/core/lib/promise/party.h +37 -6
- data/src/core/lib/promise/pipe.h +2 -7
- data/src/core/lib/promise/sleep.cc +1 -1
- data/src/core/lib/promise/status_flag.h +32 -2
- data/src/core/lib/resource_quota/memory_quota.cc +4 -4
- data/src/core/lib/security/credentials/external/file_external_account_credentials.cc +5 -11
- data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +11 -10
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +9 -7
- data/src/core/lib/security/credentials/plugin/plugin_credentials.h +1 -1
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +16 -24
- data/src/core/lib/security/credentials/xds/xds_credentials.cc +1 -1
- data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +1 -1
- data/src/core/lib/security/security_connector/load_system_roots_supported.cc +3 -7
- data/src/core/lib/security/security_connector/local/local_security_connector.cc +1 -1
- data/src/core/lib/security/security_connector/ssl_utils.cc +26 -17
- data/src/core/lib/security/transport/legacy_server_auth_filter.cc +2 -2
- data/src/core/lib/security/transport/security_handshaker.cc +0 -8
- data/src/core/lib/security/transport/security_handshaker.h +0 -6
- data/src/core/lib/security/transport/server_auth_filter.cc +2 -2
- data/src/core/lib/slice/slice_buffer.h +3 -1
- data/src/core/lib/surface/call.cc +162 -76
- data/src/core/lib/surface/call_trace.cc +9 -9
- data/src/core/lib/surface/channel.cc +15 -24
- data/src/core/lib/surface/channel.h +4 -20
- data/src/core/lib/surface/channel_init.cc +81 -7
- data/src/core/lib/surface/channel_init.h +104 -6
- data/src/core/lib/surface/init.cc +1 -1
- data/src/core/lib/surface/server.cc +4 -7
- data/src/core/lib/surface/version.cc +2 -2
- data/src/core/lib/surface/wait_for_cq_end_op.cc +75 -0
- data/src/core/lib/surface/wait_for_cq_end_op.h +4 -26
- data/src/core/lib/transport/batch_builder.cc +2 -3
- data/src/core/lib/transport/batch_builder.h +1 -1
- data/src/core/lib/transport/call_factory.cc +41 -0
- data/src/core/lib/transport/call_factory.h +56 -0
- data/src/core/lib/transport/call_filters.cc +371 -0
- data/src/core/lib/transport/call_filters.h +1500 -0
- data/src/core/lib/transport/call_size_estimator.cc +41 -0
- data/src/core/lib/transport/call_size_estimator.h +52 -0
- data/src/core/lib/transport/call_spine.cc +107 -0
- data/src/core/lib/transport/call_spine.h +429 -0
- data/src/core/lib/transport/handshaker.cc +0 -8
- data/src/core/lib/transport/handshaker.h +0 -7
- data/src/core/lib/transport/message.cc +45 -0
- data/src/core/lib/transport/message.h +61 -0
- data/src/core/lib/transport/metadata.cc +37 -0
- data/src/core/lib/transport/metadata.h +78 -0
- data/src/core/lib/transport/metadata_batch.cc +4 -2
- data/src/core/lib/transport/metadata_batch.h +2 -2
- data/src/core/lib/transport/transport.cc +0 -105
- data/src/core/lib/transport/transport.h +3 -452
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/address_filtering.cc +1 -1
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/address_filtering.h +4 -4
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/backend_metric_data.h +3 -3
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/child_policy_handler.cc +4 -4
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/child_policy_handler.h +4 -4
- data/src/core/{lib/load_balancing → load_balancing}/delegating_helper.h +5 -5
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/endpoint_list.cc +6 -6
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/endpoint_list.h +6 -6
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/grpclb/client_load_reporting_filter.cc +2 -2
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/grpclb/client_load_reporting_filter.h +3 -3
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/grpclb/grpclb.cc +19 -19
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/grpclb/grpclb.h +3 -3
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/grpclb/grpclb_balancer_addresses.cc +1 -1
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/grpclb/grpclb_balancer_addresses.h +4 -4
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/grpclb/grpclb_client_stats.cc +1 -1
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/grpclb/grpclb_client_stats.h +3 -3
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/grpclb/load_balancer_api.cc +1 -1
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/grpclb/load_balancer_api.h +4 -4
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/health_check_client.cc +6 -6
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/health_check_client.h +4 -4
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/health_check_client_internal.h +7 -7
- data/src/core/{lib/load_balancing → load_balancing}/lb_policy.cc +1 -1
- data/src/core/{lib/load_balancing → load_balancing}/lb_policy.h +6 -6
- data/src/core/{lib/load_balancing → load_balancing}/lb_policy_factory.h +4 -4
- data/src/core/{lib/load_balancing → load_balancing}/lb_policy_registry.cc +2 -2
- data/src/core/{lib/load_balancing → load_balancing}/lb_policy_registry.h +5 -5
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/oob_backend_metric.cc +6 -6
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/oob_backend_metric.h +5 -5
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/oob_backend_metric_internal.h +8 -8
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/outlier_detection/outlier_detection.cc +10 -10
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/outlier_detection/outlier_detection.h +3 -3
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/pick_first/pick_first.cc +6 -6
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/pick_first/pick_first.h +4 -4
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/priority/priority.cc +8 -8
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/ring_hash/ring_hash.cc +8 -8
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/ring_hash/ring_hash.h +4 -4
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/rls/rls.cc +13 -13
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/round_robin/round_robin.cc +7 -7
- data/src/core/{lib/load_balancing → load_balancing}/subchannel_interface.h +3 -3
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/subchannel_list.h +8 -8
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/weighted_round_robin/static_stride_scheduler.cc +1 -1
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/weighted_round_robin/static_stride_scheduler.h +3 -3
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/weighted_round_robin/weighted_round_robin.cc +10 -10
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/weighted_target/weighted_target.cc +7 -7
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/xds/cds.cc +26 -23
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/xds/xds_channel_args.h +4 -4
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/xds/xds_cluster_impl.cc +11 -11
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/xds/xds_cluster_manager.cc +8 -8
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/xds/xds_override_host.cc +10 -10
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/xds/xds_override_host.h +4 -4
- data/src/core/{ext/filters/client_channel/lb_policy → load_balancing}/xds/xds_wrr_locality.cc +6 -6
- data/src/core/{ext/filters/client_channel/resolver → resolver}/binder/binder_resolver.cc +3 -3
- data/src/core/{ext/filters/client_channel/resolver → resolver}/dns/c_ares/dns_resolver_ares.cc +9 -9
- data/src/core/{ext/filters/client_channel/resolver → resolver}/dns/c_ares/dns_resolver_ares.h +3 -3
- data/src/core/{ext/filters/client_channel/resolver → resolver}/dns/c_ares/grpc_ares_ev_driver.h +4 -4
- data/src/core/{ext/filters/client_channel/resolver → resolver}/dns/c_ares/grpc_ares_ev_driver_posix.cc +2 -2
- data/src/core/{ext/filters/client_channel/resolver → resolver}/dns/c_ares/grpc_ares_ev_driver_windows.cc +2 -2
- data/src/core/{ext/filters/client_channel/resolver → resolver}/dns/c_ares/grpc_ares_wrapper.cc +2 -2
- data/src/core/{ext/filters/client_channel/resolver → resolver}/dns/c_ares/grpc_ares_wrapper.h +4 -4
- data/src/core/{ext/filters/client_channel/resolver → resolver}/dns/c_ares/grpc_ares_wrapper_posix.cc +1 -1
- data/src/core/{ext/filters/client_channel/resolver → resolver}/dns/c_ares/grpc_ares_wrapper_windows.cc +2 -2
- data/src/core/{ext/filters/client_channel/resolver → resolver}/dns/dns_resolver_plugin.cc +7 -5
- data/src/core/{ext/filters/client_channel/resolver → resolver}/dns/dns_resolver_plugin.h +3 -3
- data/src/core/{ext/filters/client_channel/resolver → resolver}/dns/event_engine/event_engine_client_channel_resolver.cc +9 -9
- data/src/core/{ext/filters/client_channel/resolver → resolver}/dns/event_engine/event_engine_client_channel_resolver.h +5 -5
- data/src/core/{ext/filters/client_channel/resolver → resolver}/dns/event_engine/service_config_helper.cc +1 -1
- data/src/core/{ext/filters/client_channel/resolver → resolver}/dns/event_engine/service_config_helper.h +3 -3
- data/src/core/{ext/filters/client_channel/resolver → resolver}/dns/native/dns_resolver.cc +4 -4
- data/src/core/{ext/filters/client_channel/resolver → resolver}/dns/native/dns_resolver.h +3 -3
- data/src/core/{lib/resolver → resolver}/endpoint_addresses.cc +1 -1
- data/src/core/{lib/resolver → resolver}/endpoint_addresses.h +3 -3
- data/src/core/{ext/filters/client_channel/resolver → resolver}/fake/fake_resolver.cc +2 -2
- data/src/core/{ext/filters/client_channel/resolver → resolver}/fake/fake_resolver.h +4 -4
- data/src/core/{ext/filters/client_channel/resolver → resolver}/google_c2p/google_c2p_resolver.cc +3 -3
- data/src/core/{ext/filters/client_channel/resolver → resolver}/polling_resolver.cc +3 -3
- data/src/core/{ext/filters/client_channel/resolver → resolver}/polling_resolver.h +5 -5
- data/src/core/{lib/resolver → resolver}/resolver.cc +1 -1
- data/src/core/{lib/resolver → resolver}/resolver.h +6 -6
- data/src/core/{lib/resolver → resolver}/resolver_factory.h +4 -4
- data/src/core/{lib/resolver → resolver}/resolver_registry.cc +1 -1
- data/src/core/{lib/resolver → resolver}/resolver_registry.h +5 -5
- data/src/core/{lib/resolver → resolver}/server_address.h +4 -4
- data/src/core/{ext/filters/client_channel/resolver → resolver}/sockaddr/sockaddr_resolver.cc +3 -3
- data/src/core/{ext/filters/client_channel/resolver → resolver}/xds/xds_dependency_manager.cc +4 -4
- data/src/core/{ext/filters/client_channel/resolver → resolver}/xds/xds_dependency_manager.h +4 -4
- data/src/core/{ext/filters/client_channel/resolver → resolver}/xds/xds_resolver.cc +11 -11
- data/src/core/{ext/filters/client_channel/resolver → resolver}/xds/xds_resolver_attributes.h +4 -4
- data/src/core/{ext/filters/client_channel/resolver → resolver}/xds/xds_resolver_trace.cc +1 -1
- data/src/core/{ext/filters/client_channel/resolver → resolver}/xds/xds_resolver_trace.h +3 -3
- data/src/core/{lib/service_config → service_config}/service_config.h +4 -4
- data/src/core/{lib/service_config → service_config}/service_config_call_data.h +5 -5
- data/src/core/{lib/service_config → service_config}/service_config_impl.cc +2 -2
- data/src/core/{lib/service_config → service_config}/service_config_impl.h +5 -5
- data/src/core/{lib/service_config → service_config}/service_config_parser.cc +1 -1
- data/src/core/{lib/service_config → service_config}/service_config_parser.h +3 -3
- data/src/core/tsi/fake_transport_security.cc +1 -1
- data/src/ruby/ext/grpc/extconf.rb +0 -1
- data/src/ruby/ext/grpc/rb_channel.c +11 -5
- data/src/ruby/ext/grpc/rb_event_thread.c +9 -3
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/third_party/abseil-cpp/absl/algorithm/algorithm.h +8 -103
- data/third_party/abseil-cpp/absl/algorithm/container.h +57 -71
- data/third_party/abseil-cpp/absl/base/attributes.h +51 -12
- data/third_party/abseil-cpp/absl/base/call_once.h +15 -9
- data/third_party/abseil-cpp/absl/base/casts.h +1 -1
- data/third_party/abseil-cpp/absl/base/config.h +91 -24
- data/third_party/abseil-cpp/absl/base/internal/endian.h +13 -12
- data/third_party/abseil-cpp/absl/base/internal/identity.h +4 -2
- data/third_party/abseil-cpp/absl/base/internal/inline_variable.h +19 -18
- data/third_party/abseil-cpp/absl/base/internal/low_level_alloc.cc +1 -1
- data/third_party/abseil-cpp/absl/base/internal/nullability_impl.h +106 -0
- data/third_party/abseil-cpp/absl/base/internal/raw_logging.cc +9 -11
- data/third_party/abseil-cpp/absl/base/internal/raw_logging.h +2 -0
- data/third_party/abseil-cpp/absl/base/internal/spinlock.h +17 -4
- data/third_party/abseil-cpp/absl/base/internal/sysinfo.cc +20 -0
- data/third_party/abseil-cpp/absl/base/internal/thread_identity.cc +10 -4
- data/third_party/abseil-cpp/absl/base/internal/unaligned_access.h +13 -6
- data/third_party/abseil-cpp/absl/base/log_severity.cc +1 -0
- data/third_party/abseil-cpp/absl/base/log_severity.h +23 -10
- data/third_party/abseil-cpp/absl/base/no_destructor.h +217 -0
- data/third_party/abseil-cpp/absl/base/nullability.h +224 -0
- data/third_party/abseil-cpp/absl/base/optimization.h +1 -0
- data/third_party/abseil-cpp/absl/base/options.h +27 -1
- data/third_party/abseil-cpp/absl/base/prefetch.h +25 -14
- data/third_party/abseil-cpp/absl/base/thread_annotations.h +0 -2
- data/third_party/abseil-cpp/absl/container/flat_hash_map.h +3 -3
- data/third_party/abseil-cpp/absl/container/flat_hash_set.h +1 -1
- data/third_party/abseil-cpp/absl/container/internal/common_policy_traits.h +4 -2
- data/third_party/abseil-cpp/absl/container/internal/container_memory.h +13 -9
- data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.h +2 -12
- data/third_party/abseil-cpp/absl/container/internal/inlined_vector.h +12 -1
- data/third_party/abseil-cpp/absl/container/internal/layout.h +6 -21
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_map.h +11 -2
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.cc +148 -31
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.h +717 -278
- data/third_party/abseil-cpp/absl/crc/internal/cpu_detect.cc +26 -2
- data/third_party/abseil-cpp/absl/crc/internal/cpu_detect.h +6 -0
- data/third_party/abseil-cpp/absl/crc/internal/crc32_x86_arm_combined_simd.h +34 -5
- data/third_party/abseil-cpp/absl/crc/internal/crc_memcpy.h +6 -3
- data/third_party/abseil-cpp/absl/crc/internal/crc_memcpy_fallback.cc +4 -2
- data/third_party/abseil-cpp/absl/crc/internal/{crc_memcpy_x86_64.cc → crc_memcpy_x86_arm_combined.cc} +65 -47
- data/third_party/abseil-cpp/absl/crc/internal/crc_x86_arm_combined.cc +10 -2
- data/third_party/abseil-cpp/absl/debugging/internal/address_is_readable.cc +4 -2
- data/third_party/abseil-cpp/absl/debugging/internal/demangle.cc +24 -0
- data/third_party/abseil-cpp/absl/debugging/internal/demangle.h +35 -33
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_aarch64-inl.inc +41 -17
- data/third_party/abseil-cpp/absl/debugging/symbolize_elf.inc +108 -44
- data/third_party/abseil-cpp/absl/flags/declare.h +0 -5
- data/third_party/abseil-cpp/absl/flags/flag.h +1 -10
- data/third_party/abseil-cpp/absl/flags/internal/flag.h +0 -5
- data/third_party/abseil-cpp/absl/flags/marshalling.cc +10 -1
- data/third_party/abseil-cpp/absl/flags/reflection.cc +2 -1
- data/third_party/abseil-cpp/absl/functional/function_ref.h +8 -0
- data/third_party/abseil-cpp/absl/functional/internal/any_invocable.h +2 -2
- data/third_party/abseil-cpp/absl/hash/internal/hash.h +49 -2
- data/third_party/abseil-cpp/absl/numeric/bits.h +37 -18
- data/third_party/abseil-cpp/absl/random/distributions.h +1 -1
- data/third_party/abseil-cpp/absl/status/internal/status_internal.cc +248 -0
- data/third_party/abseil-cpp/absl/status/internal/status_internal.h +55 -14
- data/third_party/abseil-cpp/absl/status/internal/statusor_internal.h +53 -2
- data/third_party/abseil-cpp/absl/status/status.cc +36 -238
- data/third_party/abseil-cpp/absl/status/status.h +95 -53
- data/third_party/abseil-cpp/absl/status/status_payload_printer.cc +1 -3
- data/third_party/abseil-cpp/absl/status/status_payload_printer.h +3 -2
- data/third_party/abseil-cpp/absl/status/statusor.cc +5 -2
- data/third_party/abseil-cpp/absl/status/statusor.h +43 -3
- data/third_party/abseil-cpp/absl/strings/ascii.cc +84 -12
- data/third_party/abseil-cpp/absl/strings/ascii.h +8 -6
- data/third_party/abseil-cpp/absl/strings/charconv.cc +19 -12
- data/third_party/abseil-cpp/absl/strings/charconv.h +6 -3
- data/third_party/abseil-cpp/absl/strings/charset.h +164 -0
- data/third_party/abseil-cpp/absl/strings/cord.cc +266 -69
- data/third_party/abseil-cpp/absl/strings/cord.h +138 -92
- data/third_party/abseil-cpp/absl/strings/cord_analysis.cc +19 -33
- data/third_party/abseil-cpp/absl/strings/cord_analysis.h +4 -3
- data/third_party/abseil-cpp/absl/strings/escaping.cc +5 -4
- data/third_party/abseil-cpp/absl/strings/has_absl_stringify.h +63 -0
- data/third_party/abseil-cpp/absl/strings/has_ostream_operator.h +42 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_internal.cc +0 -6
- data/third_party/abseil-cpp/absl/strings/internal/cord_internal.h +19 -45
- data/third_party/abseil-cpp/absl/strings/internal/cordz_info.cc +23 -28
- data/third_party/abseil-cpp/absl/strings/internal/has_absl_stringify.h +15 -26
- data/third_party/abseil-cpp/absl/strings/internal/memutil.cc +12 -4
- data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.cc +145 -8
- data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.h +72 -24
- data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.cc +17 -1
- data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.h +7 -4
- data/third_party/abseil-cpp/absl/strings/internal/str_format/constexpr_parser.h +8 -3
- data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.h +10 -4
- data/third_party/abseil-cpp/absl/strings/internal/str_format/parser.h +5 -4
- data/third_party/abseil-cpp/absl/strings/match.cc +3 -0
- data/third_party/abseil-cpp/absl/strings/numbers.cc +396 -153
- data/third_party/abseil-cpp/absl/strings/numbers.h +193 -35
- data/third_party/abseil-cpp/absl/strings/str_cat.cc +151 -21
- data/third_party/abseil-cpp/absl/strings/str_cat.h +127 -25
- data/third_party/abseil-cpp/absl/strings/str_format.h +30 -20
- data/third_party/abseil-cpp/absl/strings/str_join.h +16 -16
- data/third_party/abseil-cpp/absl/strings/str_replace.cc +12 -3
- data/third_party/abseil-cpp/absl/strings/str_replace.h +8 -5
- data/third_party/abseil-cpp/absl/strings/str_split.cc +8 -6
- data/third_party/abseil-cpp/absl/strings/str_split.h +18 -0
- data/third_party/abseil-cpp/absl/strings/string_view.cc +26 -5
- data/third_party/abseil-cpp/absl/strings/string_view.h +91 -26
- data/third_party/abseil-cpp/absl/strings/strip.h +5 -2
- data/third_party/abseil-cpp/absl/strings/substitute.cc +12 -4
- data/third_party/abseil-cpp/absl/strings/substitute.h +103 -91
- data/third_party/abseil-cpp/absl/synchronization/internal/pthread_waiter.h +2 -2
- data/third_party/abseil-cpp/absl/synchronization/internal/waiter.h +2 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/win32_waiter.h +4 -2
- data/third_party/abseil-cpp/absl/synchronization/mutex.cc +296 -332
- data/third_party/abseil-cpp/absl/synchronization/mutex.h +89 -34
- data/third_party/abseil-cpp/absl/time/civil_time.h +26 -0
- data/third_party/abseil-cpp/absl/time/clock.h +5 -1
- data/third_party/abseil-cpp/absl/time/duration.cc +3 -3
- data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/civil_time_detail.h +2 -2
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_format.cc +1 -1
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.cc +9 -14
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/tzfile.h +0 -8
- data/third_party/abseil-cpp/absl/types/bad_optional_access.cc +18 -0
- data/third_party/abseil-cpp/absl/types/bad_variant_access.cc +18 -0
- data/third_party/abseil-cpp/absl/types/internal/variant.h +3 -3
- data/third_party/abseil-cpp/absl/types/optional.h +3 -2
- data/third_party/abseil-cpp/absl/types/span.h +9 -4
- data/third_party/abseil-cpp/absl/utility/utility.h +11 -93
- data/third_party/boringssl-with-bazel/err_data.c +278 -276
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_gentm.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_mbstr.c +9 -9
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strex.c +8 -21
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_time.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_type.c +19 -1
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utctm.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_lib.c +11 -3
- data/third_party/boringssl-with-bazel/src/crypto/asn1/internal.h +4 -1
- data/third_party/boringssl-with-bazel/src/crypto/asn1/posix_time.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_dec.c +3 -3
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_enc.c +1 -6
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_new.c +4 -13
- data/third_party/boringssl-with-bazel/src/crypto/base64/base64.c +1 -6
- data/third_party/boringssl-with-bazel/src/crypto/bio/bio.c +27 -4
- data/third_party/boringssl-with-bazel/src/crypto/bio/connect.c +1 -4
- data/third_party/boringssl-with-bazel/src/crypto/bio/pair.c +1 -4
- data/third_party/boringssl-with-bazel/src/crypto/bn_extra/convert.c +8 -0
- data/third_party/boringssl-with-bazel/src/crypto/buf/buf.c +1 -11
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/ber.c +7 -8
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbb.c +42 -12
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/internal.h +0 -22
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/unicode.c +9 -9
- data/third_party/boringssl-with-bazel/src/crypto/chacha/chacha.c +34 -1
- data/third_party/boringssl-with-bazel/src/crypto/chacha/internal.h +49 -3
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_aesgcmsiv.c +30 -42
- data/third_party/boringssl-with-bazel/src/crypto/conf/conf.c +87 -96
- data/third_party/boringssl-with-bazel/src/crypto/conf/internal.h +5 -1
- data/third_party/boringssl-with-bazel/src/crypto/cpu_intel.c +4 -2
- data/third_party/boringssl-with-bazel/src/crypto/crypto.c +11 -0
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519.c +4 -0
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/spake25519.c +1 -2
- data/third_party/boringssl-with-bazel/src/crypto/des/des.c +105 -31
- data/third_party/boringssl-with-bazel/src/crypto/des/internal.h +10 -81
- data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.c +2 -15
- data/third_party/boringssl-with-bazel/src/crypto/engine/engine.c +1 -9
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp.c +1 -5
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp_ctx.c +2 -5
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec.c +1 -4
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_hkdf.c +1 -2
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa.c +1 -3
- data/third_party/boringssl-with-bazel/src/crypto/evp/scrypt.c +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/add.c +2 -8
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bn.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bytes.c +26 -17
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/ctx.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/exponentiation.c +4 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd.c +26 -5
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/generic.c +10 -41
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +49 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery.c +26 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery_inv.c +27 -26
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/mul.c +2 -6
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/prime.c +1 -8
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/random.c +8 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/cipher.c +11 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aes.c +11 -24
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aesccm.c +43 -50
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/dh.c +2 -6
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digest.c +4 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec.c +1 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.c +16 -9
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p224-64.c +7 -6
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/wnaf.c +2 -7
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.c +51 -13
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.h +17 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.c +5 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/blinding.c +1 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.c +1 -3
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c +6 -5
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/fips.c +1 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/internal.h +153 -6
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1.c +87 -7
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha256.c +39 -5
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha512.c +32 -5
- data/third_party/boringssl-with-bazel/src/crypto/internal.h +254 -54
- data/third_party/boringssl-with-bazel/src/crypto/keccak/internal.h +70 -0
- data/third_party/boringssl-with-bazel/src/crypto/{kyber → keccak}/keccak.c +124 -49
- data/third_party/boringssl-with-bazel/src/crypto/kyber/internal.h +8 -39
- data/third_party/boringssl-with-bazel/src/crypto/kyber/kyber.c +39 -29
- data/third_party/boringssl-with-bazel/src/crypto/lhash/lhash.c +3 -6
- data/third_party/boringssl-with-bazel/src/crypto/mem.c +17 -33
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj.c +36 -16
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj_dat.h +0 -3
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_info.c +31 -0
- data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7_x509.c +2 -4
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8.c +3 -3
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.c +9 -13
- data/third_party/boringssl-with-bazel/src/crypto/pool/pool.c +3 -6
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/forkunsafe.c +4 -0
- data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/rsa_crypt.c +3 -1
- data/third_party/boringssl-with-bazel/src/crypto/spx/address.c +101 -0
- data/third_party/boringssl-with-bazel/src/crypto/spx/address.h +50 -0
- data/third_party/boringssl-with-bazel/src/crypto/spx/fors.c +133 -0
- data/third_party/boringssl-with-bazel/src/crypto/spx/fors.h +54 -0
- data/third_party/boringssl-with-bazel/src/crypto/spx/internal.h +79 -0
- data/third_party/boringssl-with-bazel/src/crypto/spx/merkle.c +150 -0
- data/third_party/boringssl-with-bazel/src/crypto/spx/merkle.h +61 -0
- data/third_party/boringssl-with-bazel/src/crypto/spx/params.h +71 -0
- data/third_party/boringssl-with-bazel/src/crypto/spx/spx.c +139 -0
- data/third_party/boringssl-with-bazel/src/crypto/spx/spx_util.c +53 -0
- data/third_party/boringssl-with-bazel/src/crypto/spx/spx_util.h +44 -0
- data/third_party/boringssl-with-bazel/src/crypto/spx/thash.c +136 -0
- data/third_party/boringssl-with-bazel/src/crypto/spx/thash.h +70 -0
- data/third_party/boringssl-with-bazel/src/crypto/spx/wots.c +135 -0
- data/third_party/boringssl-with-bazel/src/crypto/spx/wots.h +45 -0
- data/third_party/boringssl-with-bazel/src/crypto/stack/stack.c +4 -9
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/pmbtoken.c +10 -22
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/trust_token.c +3 -6
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/voprf.c +12 -36
- data/third_party/boringssl-with-bazel/src/crypto/x509/algorithm.c +1 -2
- data/third_party/boringssl-with-bazel/src/crypto/x509/asn1_gen.c +0 -2
- data/third_party/boringssl-with-bazel/src/crypto/x509/by_dir.c +14 -9
- data/third_party/boringssl-with-bazel/src/crypto/x509/by_file.c +23 -33
- data/third_party/boringssl-with-bazel/src/crypto/x509/internal.h +225 -51
- data/third_party/boringssl-with-bazel/src/crypto/x509/policy.c +2 -6
- data/third_party/boringssl-with-bazel/src/crypto/x509/rsa_pss.c +6 -2
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_crl.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_req.c +1 -4
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509.c +1 -3
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_akey.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_akeya.c +3 -1
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_alt.c +5 -6
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_bcons.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_bitst.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_conf.c +0 -2
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_cpols.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_crld.c +1 -2
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_enum.c +1 -0
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_extku.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_genn.c +12 -12
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_ia5.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_info.c +4 -6
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_int.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_lib.c +3 -2
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_ncons.c +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_ocsp.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_pcons.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_pmaps.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_prn.c +3 -4
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_purp.c +92 -335
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_skey.c +1 -2
- data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/v3_utl.c +20 -18
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_att.c +35 -32
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_cmp.c +44 -59
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_ext.c +0 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.c +107 -255
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_req.c +32 -20
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.c +25 -152
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_v3.c +0 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +330 -944
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vpm.c +93 -215
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509name.c +28 -6
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509spki.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_crl.c +35 -129
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_name.c +7 -8
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_pubkey.c +46 -50
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_spki.c +2 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509.c +1 -4
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509a.c +6 -6
- data/third_party/boringssl-with-bazel/src/include/openssl/arm_arch.h +0 -21
- data/third_party/boringssl-with-bazel/src/include/openssl/asm_base.h +5 -6
- data/third_party/boringssl-with-bazel/src/include/openssl/base.h +3 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/bio.h +24 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/bn.h +14 -5
- data/third_party/boringssl-with-bazel/src/include/openssl/bytestring.h +22 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/cipher.h +1 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/conf.h +4 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/curve25519.h +2 -2
- data/third_party/boringssl-with-bazel/src/include/openssl/des.h +0 -13
- data/third_party/boringssl-with-bazel/src/include/openssl/ec.h +33 -11
- data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +1 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/ex_data.h +5 -4
- data/third_party/boringssl-with-bazel/src/include/openssl/kyber.h +26 -18
- data/third_party/boringssl-with-bazel/src/include/openssl/mem.h +13 -6
- data/third_party/boringssl-with-bazel/src/include/openssl/obj.h +5 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/opensslconf.h +1 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/pem.h +19 -5
- data/third_party/boringssl-with-bazel/src/include/openssl/posix_time.h +45 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/rand.h +5 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/sha.h +20 -3
- data/third_party/boringssl-with-bazel/src/include/openssl/span.h +18 -20
- data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +76 -60
- data/third_party/boringssl-with-bazel/src/include/openssl/target.h +31 -6
- data/third_party/boringssl-with-bazel/src/include/openssl/time.h +3 -22
- data/third_party/boringssl-with-bazel/src/include/openssl/tls1.h +2 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +2806 -941
- data/third_party/boringssl-with-bazel/src/include/openssl/x509v3.h +38 -1025
- data/third_party/boringssl-with-bazel/src/include/openssl/x509v3_errors.h +124 -0
- data/third_party/boringssl-with-bazel/src/ssl/d1_both.cc +1 -2
- data/third_party/boringssl-with-bazel/src/ssl/extensions.cc +82 -9
- data/third_party/boringssl-with-bazel/src/ssl/handoff.cc +42 -4
- data/third_party/boringssl-with-bazel/src/ssl/internal.h +4 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc +4 -5
- data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +9 -1
- data/third_party/boringssl-with-bazel/src/ssl/ssl_x509.cc +0 -1
- data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +5 -1
- data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +5 -1
- data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_64_adx.h +4 -2
- data/third_party/boringssl-with-bazel/src/third_party/fiat/p256_64.h +21 -0
- data/third_party/cares/config_linux/ares_config.h +2 -38
- metadata +214 -179
- data/src/core/lib/iomgr/load_file.cc +0 -78
- data/src/core/lib/iomgr/load_file.h +0 -35
- data/third_party/abseil-cpp/absl/base/internal/prefetch.h +0 -137
- data/third_party/abseil-cpp/absl/base/internal/thread_annotations.h +0 -280
- data/third_party/abseil-cpp/absl/flags/flag.cc +0 -38
- data/third_party/abseil-cpp/absl/flags/internal/flag_msvc.inc +0 -116
- data/third_party/abseil-cpp/absl/strings/internal/char_map.h +0 -158
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_ring.cc +0 -773
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_ring.h +0 -607
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_ring_reader.h +0 -118
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_info.c +0 -100
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_pkey.c +0 -111
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/internal.h +0 -197
- /data/third_party/boringssl-with-bazel/src/crypto/{x509v3 → x509}/ext_dat.h +0 -0
@@ -1,219 +1,36 @@
|
|
1
|
-
/*
|
2
|
-
* project 1999. */
|
3
|
-
/* ====================================================================
|
4
|
-
* Copyright (c) 1999-2004 The OpenSSL Project. All rights reserved.
|
1
|
+
/* Copyright (c) 2023, Google Inc.
|
5
2
|
*
|
6
|
-
*
|
7
|
-
*
|
8
|
-
*
|
3
|
+
* Permission to use, copy, modify, and/or distribute this software for any
|
4
|
+
* purpose with or without fee is hereby granted, provided that the above
|
5
|
+
* copyright notice and this permission notice appear in all copies.
|
9
6
|
*
|
10
|
-
*
|
11
|
-
*
|
12
|
-
*
|
13
|
-
*
|
14
|
-
*
|
15
|
-
*
|
16
|
-
*
|
17
|
-
*
|
18
|
-
* 3. All advertising materials mentioning features or use of this
|
19
|
-
* software must display the following acknowledgment:
|
20
|
-
* "This product includes software developed by the OpenSSL Project
|
21
|
-
* for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
|
22
|
-
*
|
23
|
-
* 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
|
24
|
-
* endorse or promote products derived from this software without
|
25
|
-
* prior written permission. For written permission, please contact
|
26
|
-
* licensing@OpenSSL.org.
|
27
|
-
*
|
28
|
-
* 5. Products derived from this software may not be called "OpenSSL"
|
29
|
-
* nor may "OpenSSL" appear in their names without prior written
|
30
|
-
* permission of the OpenSSL Project.
|
31
|
-
*
|
32
|
-
* 6. Redistributions of any form whatsoever must retain the following
|
33
|
-
* acknowledgment:
|
34
|
-
* "This product includes software developed by the OpenSSL Project
|
35
|
-
* for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
|
36
|
-
*
|
37
|
-
* THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
|
38
|
-
* EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
39
|
-
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
40
|
-
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
|
41
|
-
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
42
|
-
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
43
|
-
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
44
|
-
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
45
|
-
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
46
|
-
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
47
|
-
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
48
|
-
* OF THE POSSIBILITY OF SUCH DAMAGE.
|
49
|
-
* ====================================================================
|
50
|
-
*
|
51
|
-
* This product includes cryptographic software written by Eric Young
|
52
|
-
* (eay@cryptsoft.com). This product includes software written by Tim
|
53
|
-
* Hudson (tjh@cryptsoft.com). */
|
7
|
+
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
8
|
+
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
9
|
+
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
|
10
|
+
* SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
11
|
+
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
|
12
|
+
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
|
13
|
+
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */
|
54
14
|
|
55
15
|
#ifndef OPENSSL_HEADER_X509V3_H
|
56
16
|
#define OPENSSL_HEADER_X509V3_H
|
57
17
|
|
58
|
-
|
59
|
-
|
60
|
-
|
18
|
+
// This header primarily exists in order to make compiling against code that
|
19
|
+
// expects OpenSSL easier. We have merged this header into <openssl/x509.h>.
|
20
|
+
// However, due to conflicts, some deprecated symbols are defined here.
|
61
21
|
#include <openssl/x509.h>
|
62
22
|
|
63
|
-
#if defined(__cplusplus)
|
64
|
-
extern "C" {
|
65
|
-
#endif
|
66
|
-
|
67
|
-
|
68
|
-
// Legacy X.509 library.
|
69
|
-
//
|
70
|
-
// This header is part of OpenSSL's X.509 implementation. It is retained for
|
71
|
-
// compatibility but otherwise underdocumented and not actively maintained. In
|
72
|
-
// the future, a replacement library will be available. Meanwhile, minimize
|
73
|
-
// dependencies on this header where possible.
|
74
|
-
|
75
|
-
|
76
|
-
// Forward reference
|
77
|
-
struct v3_ext_method;
|
78
|
-
struct v3_ext_ctx;
|
79
|
-
|
80
|
-
// Useful typedefs
|
81
|
-
|
82
|
-
typedef struct v3_ext_method X509V3_EXT_METHOD;
|
83
|
-
|
84
|
-
typedef void *(*X509V3_EXT_NEW)(void);
|
85
|
-
typedef void (*X509V3_EXT_FREE)(void *);
|
86
|
-
typedef void *(*X509V3_EXT_D2I)(void *, const unsigned char **, long);
|
87
|
-
typedef int (*X509V3_EXT_I2D)(void *, unsigned char **);
|
88
|
-
typedef STACK_OF(CONF_VALUE) *(*X509V3_EXT_I2V)(const X509V3_EXT_METHOD *method,
|
89
|
-
void *ext,
|
90
|
-
STACK_OF(CONF_VALUE) *extlist);
|
91
|
-
typedef void *(*X509V3_EXT_V2I)(const X509V3_EXT_METHOD *method,
|
92
|
-
const X509V3_CTX *ctx,
|
93
|
-
const STACK_OF(CONF_VALUE) *values);
|
94
|
-
typedef char *(*X509V3_EXT_I2S)(const X509V3_EXT_METHOD *method, void *ext);
|
95
|
-
typedef void *(*X509V3_EXT_S2I)(const X509V3_EXT_METHOD *method,
|
96
|
-
const X509V3_CTX *ctx, const char *str);
|
97
|
-
typedef int (*X509V3_EXT_I2R)(const X509V3_EXT_METHOD *method, void *ext,
|
98
|
-
BIO *out, int indent);
|
99
|
-
typedef void *(*X509V3_EXT_R2I)(const X509V3_EXT_METHOD *method,
|
100
|
-
const X509V3_CTX *ctx, const char *str);
|
101
|
-
|
102
|
-
// V3 extension structure
|
103
|
-
|
104
|
-
struct v3_ext_method {
|
105
|
-
int ext_nid;
|
106
|
-
int ext_flags;
|
107
|
-
|
108
|
-
// it determines how values of this extension are allocated, released, parsed,
|
109
|
-
// and marshalled. This must be non-NULL.
|
110
|
-
ASN1_ITEM_EXP *it;
|
111
|
-
|
112
|
-
// The following functions are ignored in favor of |it|. They are retained in
|
113
|
-
// the struct only for source compatibility with existing struct definitions.
|
114
|
-
X509V3_EXT_NEW ext_new;
|
115
|
-
X509V3_EXT_FREE ext_free;
|
116
|
-
X509V3_EXT_D2I d2i;
|
117
|
-
X509V3_EXT_I2D i2d;
|
118
|
-
|
119
|
-
// The following pair is used for string extensions
|
120
|
-
X509V3_EXT_I2S i2s;
|
121
|
-
X509V3_EXT_S2I s2i;
|
122
|
-
|
123
|
-
// The following pair is used for multi-valued extensions
|
124
|
-
X509V3_EXT_I2V i2v;
|
125
|
-
X509V3_EXT_V2I v2i;
|
126
|
-
|
127
|
-
// The following are used for raw extensions
|
128
|
-
X509V3_EXT_I2R i2r;
|
129
|
-
X509V3_EXT_R2I r2i;
|
130
|
-
|
131
|
-
void *usr_data; // Any extension specific data
|
132
|
-
};
|
133
|
-
|
134
|
-
DEFINE_STACK_OF(X509V3_EXT_METHOD)
|
135
|
-
|
136
|
-
// ext_flags values
|
137
|
-
#define X509V3_EXT_CTX_DEP 0x2
|
138
|
-
#define X509V3_EXT_MULTILINE 0x4
|
139
|
-
|
140
|
-
struct BASIC_CONSTRAINTS_st {
|
141
|
-
int ca;
|
142
|
-
ASN1_INTEGER *pathlen;
|
143
|
-
};
|
144
|
-
|
145
|
-
|
146
|
-
typedef struct otherName_st {
|
147
|
-
ASN1_OBJECT *type_id;
|
148
|
-
ASN1_TYPE *value;
|
149
|
-
} OTHERNAME;
|
150
|
-
|
151
|
-
typedef struct EDIPartyName_st {
|
152
|
-
ASN1_STRING *nameAssigner;
|
153
|
-
ASN1_STRING *partyName;
|
154
|
-
} EDIPARTYNAME;
|
155
|
-
|
156
|
-
typedef struct GENERAL_NAME_st {
|
157
|
-
#define GEN_OTHERNAME 0
|
158
|
-
#define GEN_EMAIL 1
|
159
|
-
#define GEN_DNS 2
|
160
|
-
#define GEN_X400 3
|
161
|
-
#define GEN_DIRNAME 4
|
162
|
-
#define GEN_EDIPARTY 5
|
163
|
-
#define GEN_URI 6
|
164
|
-
#define GEN_IPADD 7
|
165
|
-
#define GEN_RID 8
|
166
|
-
|
167
|
-
int type;
|
168
|
-
union {
|
169
|
-
char *ptr;
|
170
|
-
OTHERNAME *otherName; // otherName
|
171
|
-
ASN1_IA5STRING *rfc822Name;
|
172
|
-
ASN1_IA5STRING *dNSName;
|
173
|
-
ASN1_STRING *x400Address;
|
174
|
-
X509_NAME *directoryName;
|
175
|
-
EDIPARTYNAME *ediPartyName;
|
176
|
-
ASN1_IA5STRING *uniformResourceIdentifier;
|
177
|
-
ASN1_OCTET_STRING *iPAddress;
|
178
|
-
ASN1_OBJECT *registeredID;
|
179
|
-
|
180
|
-
// Old names
|
181
|
-
ASN1_OCTET_STRING *ip; // iPAddress
|
182
|
-
X509_NAME *dirn; // dirn
|
183
|
-
ASN1_IA5STRING *ia5; // rfc822Name, dNSName, uniformResourceIdentifier
|
184
|
-
ASN1_OBJECT *rid; // registeredID
|
185
|
-
} d;
|
186
|
-
} GENERAL_NAME;
|
187
|
-
|
188
|
-
DEFINE_STACK_OF(GENERAL_NAME)
|
189
|
-
|
190
|
-
typedef STACK_OF(GENERAL_NAME) GENERAL_NAMES;
|
191
|
-
|
192
|
-
DEFINE_STACK_OF(GENERAL_NAMES)
|
193
|
-
|
194
|
-
typedef struct ACCESS_DESCRIPTION_st {
|
195
|
-
ASN1_OBJECT *method;
|
196
|
-
GENERAL_NAME *location;
|
197
|
-
} ACCESS_DESCRIPTION;
|
198
|
-
|
199
|
-
DEFINE_STACK_OF(ACCESS_DESCRIPTION)
|
200
|
-
|
201
|
-
typedef STACK_OF(ACCESS_DESCRIPTION) AUTHORITY_INFO_ACCESS;
|
202
|
-
|
203
|
-
typedef STACK_OF(ASN1_OBJECT) EXTENDED_KEY_USAGE;
|
204
23
|
|
205
|
-
|
206
|
-
int type;
|
207
|
-
union {
|
208
|
-
GENERAL_NAMES *fullname;
|
209
|
-
STACK_OF(X509_NAME_ENTRY) *relativename;
|
210
|
-
} name;
|
211
|
-
// If relativename then this contains the full distribution point name
|
212
|
-
X509_NAME *dpname;
|
213
|
-
} DIST_POINT_NAME;
|
214
|
-
// All existing reasons
|
215
|
-
#define CRLDP_ALL_REASONS 0x807f
|
24
|
+
// CRL reason constants.
|
216
25
|
|
26
|
+
// TODO(davidben): These constants live here because strongswan defines
|
27
|
+
// conflicting symbols and has been relying on them only being defined in
|
28
|
+
// <openssl/x509v3.h>. Defining the constants in <openssl/x509.h> would break
|
29
|
+
// strongswan, but we would also like for new code to only need
|
30
|
+
// <openssl/x509.h>. Introduce properly namespaced versions of these constants
|
31
|
+
// and, separately, see if we can fix strongswan to similarly avoid the
|
32
|
+
// conflict. Between OpenSSL, strongswan, and wincrypt.h all defining these
|
33
|
+
// constants, it seems best for everyone to just avoid them going forward.
|
217
34
|
#define CRL_REASON_NONE (-1)
|
218
35
|
#define CRL_REASON_UNSPECIFIED 0
|
219
36
|
#define CRL_REASON_KEY_COMPROMISE 1
|
@@ -226,825 +43,21 @@ typedef struct DIST_POINT_NAME_st {
|
|
226
43
|
#define CRL_REASON_PRIVILEGE_WITHDRAWN 9
|
227
44
|
#define CRL_REASON_AA_COMPROMISE 10
|
228
45
|
|
229
|
-
struct DIST_POINT_st {
|
230
|
-
DIST_POINT_NAME *distpoint;
|
231
|
-
ASN1_BIT_STRING *reasons;
|
232
|
-
GENERAL_NAMES *CRLissuer;
|
233
|
-
int dp_reasons;
|
234
|
-
};
|
235
|
-
|
236
|
-
typedef STACK_OF(DIST_POINT) CRL_DIST_POINTS;
|
237
|
-
|
238
|
-
DEFINE_STACK_OF(DIST_POINT)
|
239
|
-
|
240
|
-
struct AUTHORITY_KEYID_st {
|
241
|
-
ASN1_OCTET_STRING *keyid;
|
242
|
-
GENERAL_NAMES *issuer;
|
243
|
-
ASN1_INTEGER *serial;
|
244
|
-
};
|
245
|
-
|
246
|
-
typedef struct NOTICEREF_st {
|
247
|
-
ASN1_STRING *organization;
|
248
|
-
STACK_OF(ASN1_INTEGER) *noticenos;
|
249
|
-
} NOTICEREF;
|
250
|
-
|
251
|
-
typedef struct USERNOTICE_st {
|
252
|
-
NOTICEREF *noticeref;
|
253
|
-
ASN1_STRING *exptext;
|
254
|
-
} USERNOTICE;
|
255
|
-
|
256
|
-
typedef struct POLICYQUALINFO_st {
|
257
|
-
ASN1_OBJECT *pqualid;
|
258
|
-
union {
|
259
|
-
ASN1_IA5STRING *cpsuri;
|
260
|
-
USERNOTICE *usernotice;
|
261
|
-
ASN1_TYPE *other;
|
262
|
-
} d;
|
263
|
-
} POLICYQUALINFO;
|
264
|
-
|
265
|
-
DEFINE_STACK_OF(POLICYQUALINFO)
|
266
|
-
|
267
|
-
typedef struct POLICYINFO_st {
|
268
|
-
ASN1_OBJECT *policyid;
|
269
|
-
STACK_OF(POLICYQUALINFO) *qualifiers;
|
270
|
-
} POLICYINFO;
|
271
|
-
|
272
|
-
typedef STACK_OF(POLICYINFO) CERTIFICATEPOLICIES;
|
273
|
-
|
274
|
-
DEFINE_STACK_OF(POLICYINFO)
|
275
|
-
|
276
|
-
typedef struct POLICY_MAPPING_st {
|
277
|
-
ASN1_OBJECT *issuerDomainPolicy;
|
278
|
-
ASN1_OBJECT *subjectDomainPolicy;
|
279
|
-
} POLICY_MAPPING;
|
280
|
-
|
281
|
-
DEFINE_STACK_OF(POLICY_MAPPING)
|
282
|
-
|
283
|
-
typedef STACK_OF(POLICY_MAPPING) POLICY_MAPPINGS;
|
284
|
-
|
285
|
-
typedef struct GENERAL_SUBTREE_st {
|
286
|
-
GENERAL_NAME *base;
|
287
|
-
ASN1_INTEGER *minimum;
|
288
|
-
ASN1_INTEGER *maximum;
|
289
|
-
} GENERAL_SUBTREE;
|
290
|
-
|
291
|
-
DEFINE_STACK_OF(GENERAL_SUBTREE)
|
292
|
-
|
293
|
-
struct NAME_CONSTRAINTS_st {
|
294
|
-
STACK_OF(GENERAL_SUBTREE) *permittedSubtrees;
|
295
|
-
STACK_OF(GENERAL_SUBTREE) *excludedSubtrees;
|
296
|
-
};
|
297
|
-
|
298
|
-
typedef struct POLICY_CONSTRAINTS_st {
|
299
|
-
ASN1_INTEGER *requireExplicitPolicy;
|
300
|
-
ASN1_INTEGER *inhibitPolicyMapping;
|
301
|
-
} POLICY_CONSTRAINTS;
|
302
|
-
|
303
|
-
struct ISSUING_DIST_POINT_st {
|
304
|
-
DIST_POINT_NAME *distpoint;
|
305
|
-
int onlyuser;
|
306
|
-
int onlyCA;
|
307
|
-
ASN1_BIT_STRING *onlysomereasons;
|
308
|
-
int indirectCRL;
|
309
|
-
int onlyattr;
|
310
|
-
};
|
311
|
-
|
312
|
-
// Values in idp_flags field
|
313
|
-
// IDP present
|
314
|
-
#define IDP_PRESENT 0x1
|
315
|
-
// IDP values inconsistent
|
316
|
-
#define IDP_INVALID 0x2
|
317
|
-
// onlyuser true
|
318
|
-
#define IDP_ONLYUSER 0x4
|
319
|
-
// onlyCA true
|
320
|
-
#define IDP_ONLYCA 0x8
|
321
|
-
// onlyattr true
|
322
|
-
#define IDP_ONLYATTR 0x10
|
323
|
-
// indirectCRL true
|
324
|
-
#define IDP_INDIRECT 0x20
|
325
|
-
// onlysomereasons present
|
326
|
-
#define IDP_REASONS 0x40
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
// X509_PURPOSE stuff
|
331
|
-
|
332
|
-
#define EXFLAG_BCONS 0x1
|
333
|
-
#define EXFLAG_KUSAGE 0x2
|
334
|
-
#define EXFLAG_XKUSAGE 0x4
|
335
|
-
#define EXFLAG_NSCERT 0x8
|
336
|
-
|
337
|
-
#define EXFLAG_CA 0x10
|
338
|
-
// Really self issued not necessarily self signed
|
339
|
-
#define EXFLAG_SI 0x20
|
340
|
-
#define EXFLAG_V1 0x40
|
341
|
-
#define EXFLAG_INVALID 0x80
|
342
|
-
#define EXFLAG_SET 0x100
|
343
|
-
#define EXFLAG_CRITICAL 0x200
|
344
|
-
|
345
|
-
#define EXFLAG_FRESHEST 0x1000
|
346
|
-
// Self signed
|
347
|
-
#define EXFLAG_SS 0x2000
|
348
|
-
|
349
|
-
#define KU_DIGITAL_SIGNATURE 0x0080
|
350
|
-
#define KU_NON_REPUDIATION 0x0040
|
351
|
-
#define KU_KEY_ENCIPHERMENT 0x0020
|
352
|
-
#define KU_DATA_ENCIPHERMENT 0x0010
|
353
|
-
#define KU_KEY_AGREEMENT 0x0008
|
354
|
-
#define KU_KEY_CERT_SIGN 0x0004
|
355
|
-
#define KU_CRL_SIGN 0x0002
|
356
|
-
#define KU_ENCIPHER_ONLY 0x0001
|
357
|
-
#define KU_DECIPHER_ONLY 0x8000
|
358
|
-
|
359
|
-
#define NS_SSL_CLIENT 0x80
|
360
|
-
#define NS_SSL_SERVER 0x40
|
361
|
-
#define NS_SMIME 0x20
|
362
|
-
#define NS_OBJSIGN 0x10
|
363
|
-
#define NS_SSL_CA 0x04
|
364
|
-
#define NS_SMIME_CA 0x02
|
365
|
-
#define NS_OBJSIGN_CA 0x01
|
366
|
-
#define NS_ANY_CA (NS_SSL_CA | NS_SMIME_CA | NS_OBJSIGN_CA)
|
367
|
-
|
368
|
-
#define XKU_SSL_SERVER 0x1
|
369
|
-
#define XKU_SSL_CLIENT 0x2
|
370
|
-
#define XKU_SMIME 0x4
|
371
|
-
#define XKU_CODE_SIGN 0x8
|
372
|
-
#define XKU_SGC 0x10
|
373
|
-
#define XKU_OCSP_SIGN 0x20
|
374
|
-
#define XKU_TIMESTAMP 0x40
|
375
|
-
#define XKU_DVCS 0x80
|
376
|
-
#define XKU_ANYEKU 0x100
|
377
|
-
|
378
|
-
#define X509_PURPOSE_DYNAMIC 0x1
|
379
|
-
#define X509_PURPOSE_DYNAMIC_NAME 0x2
|
380
|
-
|
381
|
-
typedef struct x509_purpose_st {
|
382
|
-
int purpose;
|
383
|
-
int trust; // Default trust ID
|
384
|
-
int flags;
|
385
|
-
int (*check_purpose)(const struct x509_purpose_st *, const X509 *, int);
|
386
|
-
char *name;
|
387
|
-
char *sname;
|
388
|
-
void *usr_data;
|
389
|
-
} X509_PURPOSE;
|
390
|
-
|
391
|
-
#define X509_PURPOSE_SSL_CLIENT 1
|
392
|
-
#define X509_PURPOSE_SSL_SERVER 2
|
393
|
-
#define X509_PURPOSE_NS_SSL_SERVER 3
|
394
|
-
#define X509_PURPOSE_SMIME_SIGN 4
|
395
|
-
#define X509_PURPOSE_SMIME_ENCRYPT 5
|
396
|
-
#define X509_PURPOSE_CRL_SIGN 6
|
397
|
-
#define X509_PURPOSE_ANY 7
|
398
|
-
#define X509_PURPOSE_OCSP_HELPER 8
|
399
|
-
#define X509_PURPOSE_TIMESTAMP_SIGN 9
|
400
|
-
|
401
|
-
#define X509_PURPOSE_MIN 1
|
402
|
-
#define X509_PURPOSE_MAX 9
|
403
|
-
|
404
|
-
DEFINE_STACK_OF(X509_PURPOSE)
|
405
|
-
|
406
|
-
DECLARE_ASN1_FUNCTIONS_const(BASIC_CONSTRAINTS)
|
407
|
-
|
408
|
-
// TODO(https://crbug.com/boringssl/407): This is not const because it contains
|
409
|
-
// an |X509_NAME|.
|
410
|
-
DECLARE_ASN1_FUNCTIONS(AUTHORITY_KEYID)
|
411
|
-
|
412
|
-
// TODO(https://crbug.com/boringssl/407): This is not const because it contains
|
413
|
-
// an |X509_NAME|.
|
414
|
-
DECLARE_ASN1_FUNCTIONS(GENERAL_NAME)
|
415
|
-
OPENSSL_EXPORT GENERAL_NAME *GENERAL_NAME_dup(GENERAL_NAME *a);
|
416
|
-
|
417
|
-
// i2v_GENERAL_NAME serializes |gen| as a |CONF_VALUE|. If |ret| is non-NULL, it
|
418
|
-
// appends the value to |ret| and returns |ret| on success or NULL on error. If
|
419
|
-
// it returns NULL, the caller is still responsible for freeing |ret|. If |ret|
|
420
|
-
// is NULL, it returns a newly-allocated |STACK_OF(CONF_VALUE)| containing the
|
421
|
-
// result. |method| is ignored.
|
422
|
-
//
|
423
|
-
// Do not use this function. This is an internal implementation detail of the
|
424
|
-
// human-readable print functions. If extracting a SAN list from a certificate,
|
425
|
-
// look at |gen| directly.
|
426
|
-
OPENSSL_EXPORT STACK_OF(CONF_VALUE) *i2v_GENERAL_NAME(
|
427
|
-
const X509V3_EXT_METHOD *method, const GENERAL_NAME *gen,
|
428
|
-
STACK_OF(CONF_VALUE) *ret);
|
429
|
-
|
430
|
-
// GENERAL_NAME_print prints a human-readable representation of |gen| to |out|.
|
431
|
-
// It returns one on success and zero on error.
|
432
|
-
//
|
433
|
-
// TODO(davidben): Actually, it just returns one and doesn't check for I/O or
|
434
|
-
// allocation errors. But it should return zero on error.
|
435
|
-
OPENSSL_EXPORT int GENERAL_NAME_print(BIO *out, const GENERAL_NAME *gen);
|
436
|
-
|
437
|
-
// TODO(https://crbug.com/boringssl/407): This is not const because it contains
|
438
|
-
// an |X509_NAME|.
|
439
|
-
DECLARE_ASN1_FUNCTIONS(GENERAL_NAMES)
|
440
|
-
|
441
|
-
// i2v_GENERAL_NAMES serializes |gen| as a list of |CONF_VALUE|s. If |ret| is
|
442
|
-
// non-NULL, it appends the values to |ret| and returns |ret| on success or NULL
|
443
|
-
// on error. If it returns NULL, the caller is still responsible for freeing
|
444
|
-
// |ret|. If |ret| is NULL, it returns a newly-allocated |STACK_OF(CONF_VALUE)|
|
445
|
-
// containing the results. |method| is ignored.
|
446
|
-
//
|
447
|
-
// Do not use this function. This is an internal implementation detail of the
|
448
|
-
// human-readable print functions. If extracting a SAN list from a certificate,
|
449
|
-
// look at |gen| directly.
|
450
|
-
OPENSSL_EXPORT STACK_OF(CONF_VALUE) *i2v_GENERAL_NAMES(
|
451
|
-
const X509V3_EXT_METHOD *method, const GENERAL_NAMES *gen,
|
452
|
-
STACK_OF(CONF_VALUE) *extlist);
|
453
|
-
OPENSSL_EXPORT GENERAL_NAMES *v2i_GENERAL_NAMES(
|
454
|
-
const X509V3_EXT_METHOD *method, const X509V3_CTX *ctx,
|
455
|
-
const STACK_OF(CONF_VALUE) *nval);
|
456
|
-
|
457
|
-
DECLARE_ASN1_FUNCTIONS_const(OTHERNAME)
|
458
|
-
DECLARE_ASN1_FUNCTIONS_const(EDIPARTYNAME)
|
459
|
-
OPENSSL_EXPORT void GENERAL_NAME_set0_value(GENERAL_NAME *a, int type,
|
460
|
-
void *value);
|
461
|
-
OPENSSL_EXPORT void *GENERAL_NAME_get0_value(const GENERAL_NAME *a, int *ptype);
|
462
|
-
OPENSSL_EXPORT int GENERAL_NAME_set0_othername(GENERAL_NAME *gen,
|
463
|
-
ASN1_OBJECT *oid,
|
464
|
-
ASN1_TYPE *value);
|
465
|
-
OPENSSL_EXPORT int GENERAL_NAME_get0_otherName(const GENERAL_NAME *gen,
|
466
|
-
ASN1_OBJECT **poid,
|
467
|
-
ASN1_TYPE **pvalue);
|
468
|
-
|
469
|
-
// i2s_ASN1_OCTET_STRING returns a human-readable representation of |oct| as a
|
470
|
-
// newly-allocated, NUL-terminated string, or NULL on error. |method| is
|
471
|
-
// ignored. The caller must release the result with |OPENSSL_free| when done.
|
472
|
-
OPENSSL_EXPORT char *i2s_ASN1_OCTET_STRING(const X509V3_EXT_METHOD *method,
|
473
|
-
const ASN1_OCTET_STRING *oct);
|
474
|
-
|
475
|
-
OPENSSL_EXPORT ASN1_OCTET_STRING *s2i_ASN1_OCTET_STRING(
|
476
|
-
const X509V3_EXT_METHOD *method, const X509V3_CTX *ctx, const char *str);
|
477
|
-
|
478
|
-
DECLARE_ASN1_FUNCTIONS_const(EXTENDED_KEY_USAGE)
|
479
|
-
OPENSSL_EXPORT int i2a_ACCESS_DESCRIPTION(BIO *bp, const ACCESS_DESCRIPTION *a);
|
480
|
-
|
481
|
-
DECLARE_ASN1_FUNCTIONS_const(CERTIFICATEPOLICIES)
|
482
|
-
DECLARE_ASN1_FUNCTIONS_const(POLICYINFO)
|
483
|
-
DECLARE_ASN1_FUNCTIONS_const(POLICYQUALINFO)
|
484
|
-
DECLARE_ASN1_FUNCTIONS_const(USERNOTICE)
|
485
|
-
DECLARE_ASN1_FUNCTIONS_const(NOTICEREF)
|
486
|
-
|
487
|
-
// TODO(https://crbug.com/boringssl/407): This is not const because it contains
|
488
|
-
// an |X509_NAME|.
|
489
|
-
DECLARE_ASN1_FUNCTIONS(CRL_DIST_POINTS)
|
490
|
-
// TODO(https://crbug.com/boringssl/407): This is not const because it contains
|
491
|
-
// an |X509_NAME|.
|
492
|
-
DECLARE_ASN1_FUNCTIONS(DIST_POINT)
|
493
|
-
// TODO(https://crbug.com/boringssl/407): This is not const because it contains
|
494
|
-
// an |X509_NAME|.
|
495
|
-
DECLARE_ASN1_FUNCTIONS(DIST_POINT_NAME)
|
496
|
-
// TODO(https://crbug.com/boringssl/407): This is not const because it contains
|
497
|
-
// an |X509_NAME|.
|
498
|
-
DECLARE_ASN1_FUNCTIONS(ISSUING_DIST_POINT)
|
499
|
-
|
500
|
-
OPENSSL_EXPORT int DIST_POINT_set_dpname(DIST_POINT_NAME *dpn,
|
501
|
-
X509_NAME *iname);
|
502
|
-
|
503
|
-
OPENSSL_EXPORT int NAME_CONSTRAINTS_check(X509 *x, NAME_CONSTRAINTS *nc);
|
504
|
-
|
505
|
-
// TODO(https://crbug.com/boringssl/407): This is not const because it contains
|
506
|
-
// an |X509_NAME|.
|
507
|
-
DECLARE_ASN1_FUNCTIONS(ACCESS_DESCRIPTION)
|
508
|
-
// TODO(https://crbug.com/boringssl/407): This is not const because it contains
|
509
|
-
// an |X509_NAME|.
|
510
|
-
DECLARE_ASN1_FUNCTIONS(AUTHORITY_INFO_ACCESS)
|
511
|
-
|
512
|
-
DECLARE_ASN1_ITEM(POLICY_MAPPING)
|
513
|
-
DECLARE_ASN1_ALLOC_FUNCTIONS(POLICY_MAPPING)
|
514
|
-
DECLARE_ASN1_ITEM(POLICY_MAPPINGS)
|
515
|
-
|
516
|
-
DECLARE_ASN1_ITEM(GENERAL_SUBTREE)
|
517
|
-
DECLARE_ASN1_ALLOC_FUNCTIONS(GENERAL_SUBTREE)
|
518
|
-
|
519
|
-
DECLARE_ASN1_ITEM(NAME_CONSTRAINTS)
|
520
|
-
DECLARE_ASN1_ALLOC_FUNCTIONS(NAME_CONSTRAINTS)
|
521
|
-
|
522
|
-
DECLARE_ASN1_ALLOC_FUNCTIONS(POLICY_CONSTRAINTS)
|
523
|
-
DECLARE_ASN1_ITEM(POLICY_CONSTRAINTS)
|
524
|
-
|
525
|
-
OPENSSL_EXPORT GENERAL_NAME *a2i_GENERAL_NAME(GENERAL_NAME *out,
|
526
|
-
const X509V3_EXT_METHOD *method,
|
527
|
-
const X509V3_CTX *ctx, int gen_type,
|
528
|
-
const char *value, int is_nc);
|
529
|
-
|
530
|
-
OPENSSL_EXPORT GENERAL_NAME *v2i_GENERAL_NAME(const X509V3_EXT_METHOD *method,
|
531
|
-
const X509V3_CTX *ctx,
|
532
|
-
const CONF_VALUE *cnf);
|
533
|
-
OPENSSL_EXPORT GENERAL_NAME *v2i_GENERAL_NAME_ex(
|
534
|
-
GENERAL_NAME *out, const X509V3_EXT_METHOD *method, const X509V3_CTX *ctx,
|
535
|
-
const CONF_VALUE *cnf, int is_nc);
|
536
|
-
OPENSSL_EXPORT void X509V3_conf_free(CONF_VALUE *val);
|
537
|
-
|
538
|
-
|
539
|
-
// Deprecated config-based extension creation.
|
540
|
-
//
|
541
|
-
// The following functions allow specifying X.509 extensions using OpenSSL's
|
542
|
-
// config file syntax, from the OpenSSL command-line tool. They are retained,
|
543
|
-
// for now, for compatibility with legacy software but may be removed in the
|
544
|
-
// future. Construct the extensions using the typed C APIs instead.
|
545
|
-
//
|
546
|
-
// Callers should especially avoid these functions if passing in non-constant
|
547
|
-
// values. They use ad-hoc, string-based formats which are prone to injection
|
548
|
-
// vulnerabilities. For a CA, this means using them risks misissuance.
|
549
|
-
//
|
550
|
-
// These functions are not safe to use with untrusted inputs. The string formats
|
551
|
-
// may implicitly reference context information and, in OpenSSL (though not
|
552
|
-
// BoringSSL), one even allows reading arbitrary files. Many formats can also
|
553
|
-
// produce far larger outputs than their inputs, so untrusted inputs may lead to
|
554
|
-
// denial-of-service attacks. Finally, the parsers see much less testing and
|
555
|
-
// review than most of the library and may have bugs including memory leaks or
|
556
|
-
// crashes.
|
557
|
-
|
558
|
-
// v3_ext_ctx, aka |X509V3_CTX|, contains additional context information for
|
559
|
-
// constructing extensions. Some string formats reference additional values in
|
560
|
-
// these objects. It must be initialized with |X509V3_set_ctx| or
|
561
|
-
// |X509V3_set_ctx_test| before use.
|
562
|
-
struct v3_ext_ctx {
|
563
|
-
int flags;
|
564
|
-
const X509 *issuer_cert;
|
565
|
-
const X509 *subject_cert;
|
566
|
-
const X509_REQ *subject_req;
|
567
|
-
const X509_CRL *crl;
|
568
|
-
const CONF *db;
|
569
|
-
};
|
570
|
-
|
571
|
-
#define X509V3_CTX_TEST 0x1
|
572
|
-
|
573
|
-
// X509V3_set_ctx initializes |ctx| with the specified objects. Some string
|
574
|
-
// formats will reference fields in these objects. Each object may be NULL to
|
575
|
-
// omit it, in which case those formats cannot be used. |flags| should be zero,
|
576
|
-
// unless called via |X509V3_set_ctx_test|.
|
577
|
-
//
|
578
|
-
// |issuer|, |subject|, |req|, and |crl|, if non-NULL, must outlive |ctx|.
|
579
|
-
OPENSSL_EXPORT void X509V3_set_ctx(X509V3_CTX *ctx, const X509 *issuer,
|
580
|
-
const X509 *subject, const X509_REQ *req,
|
581
|
-
const X509_CRL *crl, int flags);
|
582
|
-
|
583
|
-
// X509V3_set_ctx_test calls |X509V3_set_ctx| without any reference objects and
|
584
|
-
// mocks out some features that use them. The resulting extensions may be
|
585
|
-
// incomplete and should be discarded. This can be used to partially validate
|
586
|
-
// syntax.
|
587
|
-
//
|
588
|
-
// TODO(davidben): Can we remove this?
|
589
|
-
#define X509V3_set_ctx_test(ctx) \
|
590
|
-
X509V3_set_ctx(ctx, NULL, NULL, NULL, NULL, X509V3_CTX_TEST)
|
591
|
-
|
592
|
-
// X509V3_set_nconf sets |ctx| to use |conf| as the config database. |ctx| must
|
593
|
-
// have previously been initialized by |X509V3_set_ctx| or
|
594
|
-
// |X509V3_set_ctx_test|. Some string formats will reference sections in |conf|.
|
595
|
-
// |conf| may be NULL, in which case these formats cannot be used. If non-NULL,
|
596
|
-
// |conf| must outlive |ctx|.
|
597
|
-
OPENSSL_EXPORT void X509V3_set_nconf(X509V3_CTX *ctx, const CONF *conf);
|
598
|
-
|
599
|
-
// X509V3_set_ctx_nodb calls |X509V3_set_nconf| with no config database.
|
600
|
-
#define X509V3_set_ctx_nodb(ctx) X509V3_set_nconf(ctx, NULL)
|
601
|
-
|
602
|
-
// X509V3_EXT_nconf constructs an extension of type specified by |name|, and
|
603
|
-
// value specified by |value|. It returns a newly-allocated |X509_EXTENSION|
|
604
|
-
// object on success, or NULL on error. |conf| and |ctx| specify additional
|
605
|
-
// information referenced by some formats. Either |conf| or |ctx| may be NULL,
|
606
|
-
// in which case features which use it will be disabled.
|
607
|
-
//
|
608
|
-
// If non-NULL, |ctx| must be initialized with |X509V3_set_ctx| or
|
609
|
-
// |X509V3_set_ctx_test|.
|
610
|
-
//
|
611
|
-
// Both |conf| and |ctx| provide a |CONF| object. When |ctx| is non-NULL, most
|
612
|
-
// features use the |ctx| copy, configured with |X509V3_set_ctx|, but some use
|
613
|
-
// |conf|. Callers should ensure the two match to avoid surprisingly behavior.
|
614
|
-
OPENSSL_EXPORT X509_EXTENSION *X509V3_EXT_nconf(const CONF *conf,
|
615
|
-
const X509V3_CTX *ctx,
|
616
|
-
const char *name,
|
617
|
-
const char *value);
|
618
|
-
|
619
|
-
// X509V3_EXT_nconf_nid behaves like |X509V3_EXT_nconf|, except the extension
|
620
|
-
// type is specified as a NID.
|
621
|
-
OPENSSL_EXPORT X509_EXTENSION *X509V3_EXT_nconf_nid(const CONF *conf,
|
622
|
-
const X509V3_CTX *ctx,
|
623
|
-
int ext_nid,
|
624
|
-
const char *value);
|
625
|
-
|
626
|
-
// X509V3_EXT_conf_nid calls |X509V3_EXT_nconf_nid|. |conf| must be NULL.
|
627
|
-
//
|
628
|
-
// TODO(davidben): This is the only exposed instance of an LHASH in our public
|
629
|
-
// headers. cryptography.io wraps this function so we cannot, yet, replace the
|
630
|
-
// type with a dummy struct.
|
631
|
-
OPENSSL_EXPORT X509_EXTENSION *X509V3_EXT_conf_nid(LHASH_OF(CONF_VALUE) *conf,
|
632
|
-
const X509V3_CTX *ctx,
|
633
|
-
int ext_nid,
|
634
|
-
const char *value);
|
635
|
-
|
636
|
-
// X509V3_EXT_add_nconf_sk looks up the section named |section| in |conf|. For
|
637
|
-
// each |CONF_VALUE| in the section, it constructs an extension as in
|
638
|
-
// |X509V3_EXT_nconf|, taking |name| and |value| from the |CONF_VALUE|. Each new
|
639
|
-
// extension is appended to |*sk|. If |*sk| is non-NULL, and at least one
|
640
|
-
// extension is added, it sets |*sk| to a newly-allocated
|
641
|
-
// |STACK_OF(X509_EXTENSION)|. It returns one on success and zero on error.
|
642
|
-
OPENSSL_EXPORT int X509V3_EXT_add_nconf_sk(const CONF *conf,
|
643
|
-
const X509V3_CTX *ctx,
|
644
|
-
const char *section,
|
645
|
-
STACK_OF(X509_EXTENSION) **sk);
|
646
|
-
|
647
|
-
// X509V3_EXT_add_nconf adds extensions to |cert| as in
|
648
|
-
// |X509V3_EXT_add_nconf_sk|. It returns one on success and zero on error.
|
649
|
-
OPENSSL_EXPORT int X509V3_EXT_add_nconf(const CONF *conf, const X509V3_CTX *ctx,
|
650
|
-
const char *section, X509 *cert);
|
651
|
-
|
652
|
-
// X509V3_EXT_REQ_add_nconf adds extensions to |req| as in
|
653
|
-
// |X509V3_EXT_add_nconf_sk|. It returns one on success and zero on error.
|
654
|
-
OPENSSL_EXPORT int X509V3_EXT_REQ_add_nconf(const CONF *conf,
|
655
|
-
const X509V3_CTX *ctx,
|
656
|
-
const char *section, X509_REQ *req);
|
657
|
-
|
658
|
-
// X509V3_EXT_CRL_add_nconf adds extensions to |crl| as in
|
659
|
-
// |X509V3_EXT_add_nconf_sk|. It returns one on success and zero on error.
|
660
|
-
OPENSSL_EXPORT int X509V3_EXT_CRL_add_nconf(const CONF *conf,
|
661
|
-
const X509V3_CTX *ctx,
|
662
|
-
const char *section, X509_CRL *crl);
|
663
|
-
|
664
|
-
|
665
|
-
OPENSSL_EXPORT char *i2s_ASN1_INTEGER(const X509V3_EXT_METHOD *meth,
|
666
|
-
const ASN1_INTEGER *aint);
|
667
|
-
OPENSSL_EXPORT ASN1_INTEGER *s2i_ASN1_INTEGER(const X509V3_EXT_METHOD *meth,
|
668
|
-
const char *value);
|
669
|
-
OPENSSL_EXPORT char *i2s_ASN1_ENUMERATED(const X509V3_EXT_METHOD *meth,
|
670
|
-
const ASN1_ENUMERATED *aint);
|
671
|
-
|
672
|
-
// X509V3_EXT_add registers |ext| as a custom extension for the extension type
|
673
|
-
// |ext->ext_nid|. |ext| must be valid for the remainder of the address space's
|
674
|
-
// lifetime. It returns one on success and zero on error.
|
675
|
-
//
|
676
|
-
// WARNING: This function modifies global state. If other code in the same
|
677
|
-
// address space also registers an extension with type |ext->ext_nid|, the two
|
678
|
-
// registrations will conflict. Which registration takes effect is undefined. If
|
679
|
-
// the two registrations use incompatible in-memory representations, code
|
680
|
-
// expecting the other registration will then cast a type to the wrong type,
|
681
|
-
// resulting in a potentially exploitable memory error. This conflict can also
|
682
|
-
// occur if BoringSSL later adds support for |ext->ext_nid|, with a different
|
683
|
-
// in-memory representation than the one expected by |ext|.
|
684
|
-
//
|
685
|
-
// This function, additionally, is not thread-safe and cannot be called
|
686
|
-
// concurrently with any other BoringSSL function.
|
687
|
-
//
|
688
|
-
// As a result, it is impossible to safely use this function. Registering a
|
689
|
-
// custom extension has no impact on certificate verification so, instead,
|
690
|
-
// callers should simply handle the custom extension with the byte-based
|
691
|
-
// |X509_EXTENSION| APIs directly. Registering |ext| with the library has little
|
692
|
-
// practical value.
|
693
|
-
OPENSSL_EXPORT OPENSSL_DEPRECATED int X509V3_EXT_add(X509V3_EXT_METHOD *ext);
|
694
|
-
|
695
|
-
// X509V3_EXT_add_alias registers a custom extension with NID |nid_to|. The
|
696
|
-
// corresponding ASN.1 type is copied from |nid_from|. It returns one on success
|
697
|
-
// and zero on error.
|
698
|
-
//
|
699
|
-
// WARNING: Do not use this function. See |X509V3_EXT_add|.
|
700
|
-
OPENSSL_EXPORT OPENSSL_DEPRECATED int X509V3_EXT_add_alias(int nid_to,
|
701
|
-
int nid_from);
|
702
|
-
|
703
|
-
OPENSSL_EXPORT const X509V3_EXT_METHOD *X509V3_EXT_get(
|
704
|
-
const X509_EXTENSION *ext);
|
705
|
-
OPENSSL_EXPORT const X509V3_EXT_METHOD *X509V3_EXT_get_nid(int nid);
|
706
|
-
OPENSSL_EXPORT int X509V3_add_standard_extensions(void);
|
707
|
-
|
708
|
-
// X509V3_EXT_d2i decodes |ext| and returns a pointer to a newly-allocated
|
709
|
-
// structure, with type dependent on the type of the extension. It returns NULL
|
710
|
-
// if |ext| is an unsupported extension or if there was a syntax error in the
|
711
|
-
// extension. The caller should cast the return value to the expected type and
|
712
|
-
// free the structure when done.
|
713
|
-
//
|
714
|
-
// WARNING: Casting the return value to the wrong type is a potentially
|
715
|
-
// exploitable memory error, so callers must not use this function before
|
716
|
-
// checking |ext| is of a known type.
|
717
|
-
OPENSSL_EXPORT void *X509V3_EXT_d2i(const X509_EXTENSION *ext);
|
718
|
-
|
719
|
-
// X509V3_get_d2i finds and decodes the extension in |extensions| of type |nid|.
|
720
|
-
// If found, it decodes it and returns a newly-allocated structure, with type
|
721
|
-
// dependent on |nid|. If the extension is not found or on error, it returns
|
722
|
-
// NULL. The caller may distinguish these cases using the |out_critical| value.
|
723
|
-
//
|
724
|
-
// If |out_critical| is not NULL, this function sets |*out_critical| to one if
|
725
|
-
// the extension is found and critical, zero if it is found and not critical, -1
|
726
|
-
// if it is not found, and -2 if there is an invalid duplicate extension. Note
|
727
|
-
// this function may set |*out_critical| to one or zero and still return NULL if
|
728
|
-
// the extension is found but has a syntax error.
|
729
|
-
//
|
730
|
-
// If |out_idx| is not NULL, this function looks for the first occurrence of the
|
731
|
-
// extension after |*out_idx|. It then sets |*out_idx| to the index of the
|
732
|
-
// extension, or -1 if not found. If |out_idx| is non-NULL, duplicate extensions
|
733
|
-
// are not treated as an error. Callers, however, should not rely on this
|
734
|
-
// behavior as it may be removed in the future. Duplicate extensions are
|
735
|
-
// forbidden in RFC 5280.
|
736
|
-
//
|
737
|
-
// WARNING: This function is difficult to use correctly. Callers should pass a
|
738
|
-
// non-NULL |out_critical| and check both the return value and |*out_critical|
|
739
|
-
// to handle errors. If the return value is NULL and |*out_critical| is not -1,
|
740
|
-
// there was an error. Otherwise, the function succeeded and but may return NULL
|
741
|
-
// for a missing extension. Callers should pass NULL to |out_idx| so that
|
742
|
-
// duplicate extensions are handled correctly.
|
743
|
-
//
|
744
|
-
// Additionally, casting the return value to the wrong type is a potentially
|
745
|
-
// exploitable memory error, so callers must ensure the cast and |nid| match.
|
746
|
-
OPENSSL_EXPORT void *X509V3_get_d2i(const STACK_OF(X509_EXTENSION) *extensions,
|
747
|
-
int nid, int *out_critical, int *out_idx);
|
748
|
-
|
749
|
-
// X509V3_EXT_free casts |ext_data| into the type that corresponds to |nid| and
|
750
|
-
// releases memory associated with it. It returns one on success and zero if
|
751
|
-
// |nid| is not a known extension.
|
752
|
-
//
|
753
|
-
// WARNING: Casting |ext_data| to the wrong type is a potentially exploitable
|
754
|
-
// memory error, so callers must ensure |ext_data|'s type matches |nid|.
|
755
|
-
//
|
756
|
-
// TODO(davidben): OpenSSL upstream no longer exposes this function. Remove it?
|
757
|
-
OPENSSL_EXPORT int X509V3_EXT_free(int nid, void *ext_data);
|
758
|
-
|
759
|
-
// X509V3_EXT_i2d casts |ext_struc| into the type that corresponds to
|
760
|
-
// |ext_nid|, serializes it, and returns a newly-allocated |X509_EXTENSION|
|
761
|
-
// object containing the serialization, or NULL on error. The |X509_EXTENSION|
|
762
|
-
// has OID |ext_nid| and is critical if |crit| is one.
|
763
|
-
//
|
764
|
-
// WARNING: Casting |ext_struc| to the wrong type is a potentially exploitable
|
765
|
-
// memory error, so callers must ensure |ext_struct|'s type matches |ext_nid|.
|
766
|
-
OPENSSL_EXPORT X509_EXTENSION *X509V3_EXT_i2d(int ext_nid, int crit,
|
767
|
-
void *ext_struc);
|
768
|
-
|
769
|
-
// The following constants control the behavior of |X509V3_add1_i2d| and related
|
770
|
-
// functions.
|
771
|
-
|
772
|
-
// X509V3_ADD_OP_MASK can be ANDed with the flags to determine how duplicate
|
773
|
-
// extensions are processed.
|
774
|
-
#define X509V3_ADD_OP_MASK 0xfL
|
775
|
-
|
776
|
-
// X509V3_ADD_DEFAULT causes the function to fail if the extension was already
|
777
|
-
// present.
|
778
|
-
#define X509V3_ADD_DEFAULT 0L
|
779
|
-
|
780
|
-
// X509V3_ADD_APPEND causes the function to unconditionally appended the new
|
781
|
-
// extension to to the extensions list, even if there is a duplicate.
|
782
|
-
#define X509V3_ADD_APPEND 1L
|
783
|
-
|
784
|
-
// X509V3_ADD_REPLACE causes the function to replace the existing extension, or
|
785
|
-
// append if it is not present.
|
786
|
-
#define X509V3_ADD_REPLACE 2L
|
787
|
-
|
788
|
-
// X509V3_ADD_REPLACE causes the function to replace the existing extension and
|
789
|
-
// fail if it is not present.
|
790
|
-
#define X509V3_ADD_REPLACE_EXISTING 3L
|
791
|
-
|
792
|
-
// X509V3_ADD_KEEP_EXISTING causes the function to succeed without replacing the
|
793
|
-
// extension if already present.
|
794
|
-
#define X509V3_ADD_KEEP_EXISTING 4L
|
795
|
-
|
796
|
-
// X509V3_ADD_DELETE causes the function to remove the matching extension. No
|
797
|
-
// new extension is added. If there is no matching extension, the function
|
798
|
-
// fails. The |value| parameter is ignored in this mode.
|
799
|
-
#define X509V3_ADD_DELETE 5L
|
800
|
-
|
801
|
-
// X509V3_ADD_SILENT may be ORed into one of the values above to indicate the
|
802
|
-
// function should not add to the error queue on duplicate or missing extension.
|
803
|
-
// The function will continue to return zero in those cases, and it will
|
804
|
-
// continue to return -1 and add to the error queue on other errors.
|
805
|
-
#define X509V3_ADD_SILENT 0x10
|
806
|
-
|
807
|
-
// X509V3_add1_i2d casts |value| to the type that corresponds to |nid|,
|
808
|
-
// serializes it, and appends it to the extension list in |*x|. If |*x| is NULL,
|
809
|
-
// it will set |*x| to a newly-allocated |STACK_OF(X509_EXTENSION)| as needed.
|
810
|
-
// The |crit| parameter determines whether the new extension is critical.
|
811
|
-
// |flags| may be some combination of the |X509V3_ADD_*| constants to control
|
812
|
-
// the function's behavior on duplicate extension.
|
813
|
-
//
|
814
|
-
// This function returns one on success, zero if the operation failed due to a
|
815
|
-
// missing or duplicate extension, and -1 on other errors.
|
816
|
-
//
|
817
|
-
// WARNING: Casting |value| to the wrong type is a potentially exploitable
|
818
|
-
// memory error, so callers must ensure |value|'s type matches |nid|.
|
819
|
-
OPENSSL_EXPORT int X509V3_add1_i2d(STACK_OF(X509_EXTENSION) **x, int nid,
|
820
|
-
void *value, int crit, unsigned long flags);
|
821
|
-
|
822
|
-
#define X509V3_EXT_UNKNOWN_MASK (0xfL << 16)
|
823
|
-
|
824
|
-
// X509V3_EXT_DEFAULT causes unknown extensions or syntax errors to return
|
825
|
-
// failure.
|
826
|
-
#define X509V3_EXT_DEFAULT 0
|
827
|
-
// X509V3_EXT_ERROR_UNKNOWN causes unknown extensions or syntax errors to print
|
828
|
-
// as "<Not Supported>" or "<Parse Error>", respectively.
|
829
|
-
#define X509V3_EXT_ERROR_UNKNOWN (1L << 16)
|
830
|
-
// X509V3_EXT_PARSE_UNKNOWN is deprecated and behaves like
|
831
|
-
// |X509V3_EXT_DUMP_UNKNOWN|.
|
832
|
-
#define X509V3_EXT_PARSE_UNKNOWN (2L << 16)
|
833
|
-
// X509V3_EXT_DUMP_UNKNOWN causes unknown extensions to be displayed as a
|
834
|
-
// hexdump.
|
835
|
-
#define X509V3_EXT_DUMP_UNKNOWN (3L << 16)
|
836
|
-
|
837
|
-
OPENSSL_EXPORT void X509V3_EXT_val_prn(BIO *out,
|
838
|
-
const STACK_OF(CONF_VALUE) *val,
|
839
|
-
int indent, int ml);
|
840
|
-
OPENSSL_EXPORT int X509V3_EXT_print(BIO *out, const X509_EXTENSION *ext,
|
841
|
-
unsigned long flag, int indent);
|
842
|
-
OPENSSL_EXPORT int X509V3_EXT_print_fp(FILE *out, const X509_EXTENSION *ext,
|
843
|
-
int flag, int indent);
|
844
|
-
|
845
|
-
// X509V3_extensions_print prints |title|, followed by a human-readable
|
846
|
-
// representation of |exts| to |out|. It returns one on success and zero on
|
847
|
-
// error. The output is indented by |indent| spaces. |flag| is one of the
|
848
|
-
// |X509V3_EXT_*| constants and controls printing of unknown extensions and
|
849
|
-
// syntax errors.
|
850
|
-
OPENSSL_EXPORT int X509V3_extensions_print(BIO *out, const char *title,
|
851
|
-
const STACK_OF(X509_EXTENSION) *exts,
|
852
|
-
unsigned long flag, int indent);
|
853
|
-
|
854
|
-
OPENSSL_EXPORT int X509_check_ca(X509 *x);
|
855
|
-
OPENSSL_EXPORT int X509_check_purpose(X509 *x, int id, int ca);
|
856
|
-
OPENSSL_EXPORT int X509_supported_extension(const X509_EXTENSION *ex);
|
857
|
-
OPENSSL_EXPORT int X509_PURPOSE_set(int *p, int purpose);
|
858
|
-
OPENSSL_EXPORT int X509_check_issued(X509 *issuer, X509 *subject);
|
859
|
-
OPENSSL_EXPORT int X509_check_akid(X509 *issuer, AUTHORITY_KEYID *akid);
|
860
|
-
|
861
|
-
OPENSSL_EXPORT uint32_t X509_get_extension_flags(X509 *x);
|
862
|
-
OPENSSL_EXPORT uint32_t X509_get_key_usage(X509 *x);
|
863
|
-
OPENSSL_EXPORT uint32_t X509_get_extended_key_usage(X509 *x);
|
864
|
-
|
865
|
-
// X509_get0_subject_key_id returns |x509|'s subject key identifier, if present.
|
866
|
-
// (See RFC 5280, section 4.2.1.2.) It returns NULL if the extension is not
|
867
|
-
// present or if some extension in |x509| was invalid.
|
868
|
-
//
|
869
|
-
// Note that decoding an |X509| object will not check for invalid extensions. To
|
870
|
-
// detect the error case, call |X509_get_extensions_flags| and check the
|
871
|
-
// |EXFLAG_INVALID| bit.
|
872
|
-
OPENSSL_EXPORT const ASN1_OCTET_STRING *X509_get0_subject_key_id(X509 *x509);
|
873
|
-
|
874
|
-
// X509_get0_authority_key_id returns keyIdentifier of |x509|'s authority key
|
875
|
-
// identifier, if the extension and field are present. (See RFC 5280,
|
876
|
-
// section 4.2.1.1.) It returns NULL if the extension is not present, if it is
|
877
|
-
// present but lacks a keyIdentifier field, or if some extension in |x509| was
|
878
|
-
// invalid.
|
879
|
-
//
|
880
|
-
// Note that decoding an |X509| object will not check for invalid extensions. To
|
881
|
-
// detect the error case, call |X509_get_extensions_flags| and check the
|
882
|
-
// |EXFLAG_INVALID| bit.
|
883
|
-
OPENSSL_EXPORT const ASN1_OCTET_STRING *X509_get0_authority_key_id(X509 *x509);
|
884
|
-
|
885
|
-
// X509_get0_authority_issuer returns the authorityCertIssuer of |x509|'s
|
886
|
-
// authority key identifier, if the extension and field are present. (See
|
887
|
-
// RFC 5280, section 4.2.1.1.) It returns NULL if the extension is not present,
|
888
|
-
// if it is present but lacks a authorityCertIssuer field, or if some extension
|
889
|
-
// in |x509| was invalid.
|
890
|
-
//
|
891
|
-
// Note that decoding an |X509| object will not check for invalid extensions. To
|
892
|
-
// detect the error case, call |X509_get_extensions_flags| and check the
|
893
|
-
// |EXFLAG_INVALID| bit.
|
894
|
-
OPENSSL_EXPORT const GENERAL_NAMES *X509_get0_authority_issuer(X509 *x509);
|
895
|
-
|
896
|
-
// X509_get0_authority_serial returns the authorityCertSerialNumber of |x509|'s
|
897
|
-
// authority key identifier, if the extension and field are present. (See
|
898
|
-
// RFC 5280, section 4.2.1.1.) It returns NULL if the extension is not present,
|
899
|
-
// if it is present but lacks a authorityCertSerialNumber field, or if some
|
900
|
-
// extension in |x509| was invalid.
|
901
|
-
//
|
902
|
-
// Note that decoding an |X509| object will not check for invalid extensions. To
|
903
|
-
// detect the error case, call |X509_get_extensions_flags| and check the
|
904
|
-
// |EXFLAG_INVALID| bit.
|
905
|
-
OPENSSL_EXPORT const ASN1_INTEGER *X509_get0_authority_serial(X509 *x509);
|
906
|
-
|
907
|
-
OPENSSL_EXPORT int X509_PURPOSE_get_count(void);
|
908
|
-
OPENSSL_EXPORT X509_PURPOSE *X509_PURPOSE_get0(int idx);
|
909
|
-
OPENSSL_EXPORT int X509_PURPOSE_get_by_sname(const char *sname);
|
910
|
-
OPENSSL_EXPORT int X509_PURPOSE_get_by_id(int id);
|
911
|
-
OPENSSL_EXPORT int X509_PURPOSE_add(int id, int trust, int flags,
|
912
|
-
int (*ck)(const X509_PURPOSE *,
|
913
|
-
const X509 *, int),
|
914
|
-
const char *name, const char *sname,
|
915
|
-
void *arg);
|
916
|
-
OPENSSL_EXPORT char *X509_PURPOSE_get0_name(const X509_PURPOSE *xp);
|
917
|
-
OPENSSL_EXPORT char *X509_PURPOSE_get0_sname(const X509_PURPOSE *xp);
|
918
|
-
OPENSSL_EXPORT int X509_PURPOSE_get_trust(const X509_PURPOSE *xp);
|
919
|
-
OPENSSL_EXPORT void X509_PURPOSE_cleanup(void);
|
920
|
-
OPENSSL_EXPORT int X509_PURPOSE_get_id(const X509_PURPOSE *);
|
921
|
-
|
922
|
-
OPENSSL_EXPORT STACK_OF(OPENSSL_STRING) *X509_get1_email(X509 *x);
|
923
|
-
OPENSSL_EXPORT STACK_OF(OPENSSL_STRING) *X509_REQ_get1_email(X509_REQ *x);
|
924
|
-
OPENSSL_EXPORT void X509_email_free(STACK_OF(OPENSSL_STRING) *sk);
|
925
|
-
OPENSSL_EXPORT STACK_OF(OPENSSL_STRING) *X509_get1_ocsp(X509 *x);
|
926
|
-
// Flags for X509_check_* functions
|
927
|
-
|
928
|
-
// Deprecated: this flag does nothing
|
929
|
-
#define X509_CHECK_FLAG_ALWAYS_CHECK_SUBJECT 0
|
930
|
-
// Disable wildcard matching for dnsName fields and common name.
|
931
|
-
#define X509_CHECK_FLAG_NO_WILDCARDS 0x2
|
932
|
-
// X509_CHECK_FLAG_NO_PARTIAL_WILDCARDS does nothing, but is necessary in
|
933
|
-
// OpenSSL to enable standard wildcard matching. In BoringSSL, this behavior is
|
934
|
-
// always enabled.
|
935
|
-
#define X509_CHECK_FLAG_NO_PARTIAL_WILDCARDS 0
|
936
|
-
// Deprecated: this flag does nothing
|
937
|
-
#define X509_CHECK_FLAG_MULTI_LABEL_WILDCARDS 0
|
938
|
-
// Deprecated: this flag does nothing
|
939
|
-
#define X509_CHECK_FLAG_SINGLE_LABEL_SUBDOMAINS 0
|
940
|
-
// Skip the subject common name fallback if subjectAltNames is missing.
|
941
|
-
#define X509_CHECK_FLAG_NEVER_CHECK_SUBJECT 0x20
|
942
|
-
|
943
|
-
OPENSSL_EXPORT int X509_check_host(X509 *x, const char *chk, size_t chklen,
|
944
|
-
unsigned int flags, char **peername);
|
945
|
-
OPENSSL_EXPORT int X509_check_email(X509 *x, const char *chk, size_t chklen,
|
946
|
-
unsigned int flags);
|
947
|
-
OPENSSL_EXPORT int X509_check_ip(X509 *x, const unsigned char *chk,
|
948
|
-
size_t chklen, unsigned int flags);
|
949
|
-
OPENSSL_EXPORT int X509_check_ip_asc(X509 *x, const char *ipasc,
|
950
|
-
unsigned int flags);
|
951
|
-
|
952
|
-
OPENSSL_EXPORT ASN1_OCTET_STRING *a2i_IPADDRESS(const char *ipasc);
|
953
|
-
OPENSSL_EXPORT ASN1_OCTET_STRING *a2i_IPADDRESS_NC(const char *ipasc);
|
954
|
-
|
955
|
-
// BEGIN ERROR CODES
|
956
|
-
// The following lines are auto generated by the script mkerr.pl. Any changes
|
957
|
-
// made after this point may be overwritten when the script is next run.
|
958
|
-
|
959
|
-
|
960
|
-
#if defined(__cplusplus)
|
961
|
-
} // extern C
|
962
|
-
|
963
|
-
extern "C++" {
|
964
|
-
|
965
|
-
BSSL_NAMESPACE_BEGIN
|
966
|
-
|
967
|
-
BORINGSSL_MAKE_DELETER(ACCESS_DESCRIPTION, ACCESS_DESCRIPTION_free)
|
968
|
-
BORINGSSL_MAKE_DELETER(AUTHORITY_KEYID, AUTHORITY_KEYID_free)
|
969
|
-
BORINGSSL_MAKE_DELETER(BASIC_CONSTRAINTS, BASIC_CONSTRAINTS_free)
|
970
|
-
// TODO(davidben): Move this to conf.h and rename to CONF_VALUE_free.
|
971
|
-
BORINGSSL_MAKE_DELETER(CONF_VALUE, X509V3_conf_free)
|
972
|
-
BORINGSSL_MAKE_DELETER(DIST_POINT, DIST_POINT_free)
|
973
|
-
BORINGSSL_MAKE_DELETER(GENERAL_NAME, GENERAL_NAME_free)
|
974
|
-
BORINGSSL_MAKE_DELETER(GENERAL_SUBTREE, GENERAL_SUBTREE_free)
|
975
|
-
BORINGSSL_MAKE_DELETER(NAME_CONSTRAINTS, NAME_CONSTRAINTS_free)
|
976
|
-
BORINGSSL_MAKE_DELETER(POLICY_MAPPING, POLICY_MAPPING_free)
|
977
|
-
BORINGSSL_MAKE_DELETER(POLICYINFO, POLICYINFO_free)
|
978
|
-
|
979
|
-
BSSL_NAMESPACE_END
|
980
|
-
|
981
|
-
} // extern C++
|
982
|
-
#endif
|
983
46
|
|
984
|
-
|
985
|
-
|
986
|
-
|
987
|
-
|
988
|
-
|
989
|
-
|
990
|
-
#define
|
991
|
-
#define
|
992
|
-
#define
|
993
|
-
#define
|
994
|
-
#define
|
995
|
-
#define
|
996
|
-
#define
|
997
|
-
#define
|
998
|
-
#define
|
999
|
-
#define X509V3_R_EXTENSION_SETTING_NOT_SUPPORTED 115
|
1000
|
-
#define X509V3_R_EXTENSION_VALUE_ERROR 116
|
1001
|
-
#define X509V3_R_ILLEGAL_EMPTY_EXTENSION 117
|
1002
|
-
#define X509V3_R_ILLEGAL_HEX_DIGIT 118
|
1003
|
-
#define X509V3_R_INCORRECT_POLICY_SYNTAX_TAG 119
|
1004
|
-
#define X509V3_R_INVALID_BOOLEAN_STRING 120
|
1005
|
-
#define X509V3_R_INVALID_EXTENSION_STRING 121
|
1006
|
-
#define X509V3_R_INVALID_MULTIPLE_RDNS 122
|
1007
|
-
#define X509V3_R_INVALID_NAME 123
|
1008
|
-
#define X509V3_R_INVALID_NULL_ARGUMENT 124
|
1009
|
-
#define X509V3_R_INVALID_NULL_NAME 125
|
1010
|
-
#define X509V3_R_INVALID_NULL_VALUE 126
|
1011
|
-
#define X509V3_R_INVALID_NUMBER 127
|
1012
|
-
#define X509V3_R_INVALID_NUMBERS 128
|
1013
|
-
#define X509V3_R_INVALID_OBJECT_IDENTIFIER 129
|
1014
|
-
#define X509V3_R_INVALID_OPTION 130
|
1015
|
-
#define X509V3_R_INVALID_POLICY_IDENTIFIER 131
|
1016
|
-
#define X509V3_R_INVALID_PROXY_POLICY_SETTING 132
|
1017
|
-
#define X509V3_R_INVALID_PURPOSE 133
|
1018
|
-
#define X509V3_R_INVALID_SECTION 134
|
1019
|
-
#define X509V3_R_INVALID_SYNTAX 135
|
1020
|
-
#define X509V3_R_ISSUER_DECODE_ERROR 136
|
1021
|
-
#define X509V3_R_MISSING_VALUE 137
|
1022
|
-
#define X509V3_R_NEED_ORGANIZATION_AND_NUMBERS 138
|
1023
|
-
#define X509V3_R_NO_CONFIG_DATABASE 139
|
1024
|
-
#define X509V3_R_NO_ISSUER_CERTIFICATE 140
|
1025
|
-
#define X509V3_R_NO_ISSUER_DETAILS 141
|
1026
|
-
#define X509V3_R_NO_POLICY_IDENTIFIER 142
|
1027
|
-
#define X509V3_R_NO_PROXY_CERT_POLICY_LANGUAGE_DEFINED 143
|
1028
|
-
#define X509V3_R_NO_PUBLIC_KEY 144
|
1029
|
-
#define X509V3_R_NO_SUBJECT_DETAILS 145
|
1030
|
-
#define X509V3_R_ODD_NUMBER_OF_DIGITS 146
|
1031
|
-
#define X509V3_R_OPERATION_NOT_DEFINED 147
|
1032
|
-
#define X509V3_R_OTHERNAME_ERROR 148
|
1033
|
-
#define X509V3_R_POLICY_LANGUAGE_ALREADY_DEFINED 149
|
1034
|
-
#define X509V3_R_POLICY_PATH_LENGTH 150
|
1035
|
-
#define X509V3_R_POLICY_PATH_LENGTH_ALREADY_DEFINED 151
|
1036
|
-
#define X509V3_R_POLICY_WHEN_PROXY_LANGUAGE_REQUIRES_NO_POLICY 152
|
1037
|
-
#define X509V3_R_SECTION_NOT_FOUND 153
|
1038
|
-
#define X509V3_R_UNABLE_TO_GET_ISSUER_DETAILS 154
|
1039
|
-
#define X509V3_R_UNABLE_TO_GET_ISSUER_KEYID 155
|
1040
|
-
#define X509V3_R_UNKNOWN_BIT_STRING_ARGUMENT 156
|
1041
|
-
#define X509V3_R_UNKNOWN_EXTENSION 157
|
1042
|
-
#define X509V3_R_UNKNOWN_EXTENSION_NAME 158
|
1043
|
-
#define X509V3_R_UNKNOWN_OPTION 159
|
1044
|
-
#define X509V3_R_UNSUPPORTED_OPTION 160
|
1045
|
-
#define X509V3_R_UNSUPPORTED_TYPE 161
|
1046
|
-
#define X509V3_R_USER_TOO_LONG 162
|
1047
|
-
#define X509V3_R_INVALID_VALUE 163
|
1048
|
-
#define X509V3_R_TRAILING_DATA_IN_EXTENSION 164
|
47
|
+
// Deprecated constants.
|
48
|
+
|
49
|
+
// The following constants are legacy aliases for |X509v3_KU_*|. They are
|
50
|
+
// defined here instead of in <openssl/x509.h> because NSS's public headers use
|
51
|
+
// the same symbols. Some callers have inadvertently relied on the conflicts
|
52
|
+
// only being defined in this header.
|
53
|
+
#define KU_DIGITAL_SIGNATURE X509v3_KU_DIGITAL_SIGNATURE
|
54
|
+
#define KU_NON_REPUDIATION X509v3_KU_NON_REPUDIATION
|
55
|
+
#define KU_KEY_ENCIPHERMENT X509v3_KU_KEY_ENCIPHERMENT
|
56
|
+
#define KU_DATA_ENCIPHERMENT X509v3_KU_DATA_ENCIPHERMENT
|
57
|
+
#define KU_KEY_AGREEMENT X509v3_KU_KEY_AGREEMENT
|
58
|
+
#define KU_KEY_CERT_SIGN X509v3_KU_KEY_CERT_SIGN
|
59
|
+
#define KU_CRL_SIGN X509v3_KU_CRL_SIGN
|
60
|
+
#define KU_ENCIPHER_ONLY X509v3_KU_ENCIPHER_ONLY
|
61
|
+
#define KU_DECIPHER_ONLY X509v3_KU_DECIPHER_ONLY
|
1049
62
|
|
1050
63
|
#endif // OPENSSL_HEADER_X509V3_H
|