grpc 1.35.0 → 1.38.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of grpc might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/Makefile +168 -131
- data/include/grpc/event_engine/README.md +38 -0
- data/include/grpc/event_engine/channel_args.h +28 -0
- data/include/grpc/event_engine/event_engine.h +336 -0
- data/include/grpc/event_engine/port.h +39 -0
- data/include/grpc/event_engine/slice_allocator.h +81 -0
- data/include/grpc/grpc.h +15 -1
- data/include/grpc/grpc_security.h +16 -11
- data/include/grpc/grpc_security_constants.h +14 -0
- data/include/grpc/impl/codegen/grpc_types.h +11 -0
- data/include/grpc/impl/codegen/port_platform.h +7 -0
- data/include/grpc/module.modulemap +14 -14
- data/src/core/ext/filters/client_channel/backup_poller.cc +3 -3
- data/src/core/ext/filters/client_channel/channel_connectivity.cc +177 -202
- data/src/core/ext/filters/client_channel/client_channel.cc +740 -3185
- data/src/core/ext/filters/client_channel/client_channel.h +488 -56
- data/src/core/ext/filters/client_channel/client_channel_channelz.h +1 -1
- data/src/core/ext/filters/client_channel/client_channel_factory.h +2 -1
- data/src/core/ext/filters/client_channel/client_channel_plugin.cc +4 -1
- data/src/core/ext/filters/client_channel/config_selector.h +10 -2
- data/src/core/ext/filters/client_channel/connector.h +1 -1
- data/src/core/ext/filters/client_channel/dynamic_filters.cc +18 -14
- data/src/core/ext/filters/client_channel/dynamic_filters.h +3 -3
- data/src/core/ext/filters/client_channel/global_subchannel_pool.cc +24 -142
- data/src/core/ext/filters/client_channel/global_subchannel_pool.h +15 -10
- data/src/core/ext/filters/client_channel/health/health_check_client.cc +26 -27
- data/src/core/ext/filters/client_channel/health/health_check_client.h +27 -26
- data/src/core/ext/filters/client_channel/http_connect_handshaker.cc +26 -23
- data/src/core/ext/filters/client_channel/lb_policy.cc +4 -1
- data/src/core/ext/filters/client_channel/lb_policy.h +4 -4
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc +6 -6
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +49 -48
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.h +1 -2
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.cc +2 -3
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h +2 -1
- data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +5 -5
- data/src/core/ext/filters/client_channel/lb_policy/priority/priority.cc +22 -18
- data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.cc +23 -0
- data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.h +27 -0
- data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +4 -4
- data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +1 -1
- data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +15 -15
- data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +318 -193
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_channel_args.h +5 -0
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_impl.cc +30 -47
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_manager.cc +32 -47
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_resolver.cc +316 -171
- data/src/core/ext/filters/client_channel/lb_policy_factory.h +1 -1
- data/src/core/ext/filters/client_channel/lb_policy_registry.cc +4 -4
- data/src/core/ext/filters/client_channel/lb_policy_registry.h +1 -1
- data/src/core/ext/filters/client_channel/local_subchannel_pool.cc +27 -67
- data/src/core/ext/filters/client_channel/local_subchannel_pool.h +10 -9
- data/src/core/ext/filters/client_channel/resolver.cc +5 -5
- data/src/core/ext/filters/client_channel/resolver.h +3 -14
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +59 -60
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h +1 -1
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_libuv.cc +3 -3
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +4 -4
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +17 -15
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +67 -74
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +1 -1
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_libuv.cc +1 -1
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc +1 -1
- data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +33 -23
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc +38 -43
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h +7 -5
- data/src/core/ext/filters/client_channel/resolver/google_c2p/google_c2p_resolver.cc +379 -0
- data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +5 -5
- data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +346 -178
- data/src/core/ext/filters/client_channel/resolver_result_parsing.cc +32 -239
- data/src/core/ext/filters/client_channel/resolver_result_parsing.h +20 -49
- data/src/core/ext/filters/client_channel/retry_filter.cc +2188 -0
- data/src/core/ext/filters/client_channel/retry_filter.h +30 -0
- data/src/core/ext/filters/client_channel/retry_service_config.cc +287 -0
- data/src/core/ext/filters/client_channel/retry_service_config.h +90 -0
- data/src/core/ext/filters/client_channel/server_address.cc +10 -1
- data/src/core/ext/filters/client_channel/server_address.h +31 -0
- data/src/core/ext/filters/client_channel/service_config.cc +15 -14
- data/src/core/ext/filters/client_channel/service_config.h +7 -6
- data/src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc +5 -4
- data/src/core/ext/filters/client_channel/service_config_parser.cc +6 -6
- data/src/core/ext/filters/client_channel/service_config_parser.h +7 -4
- data/src/core/ext/filters/client_channel/subchannel.cc +86 -162
- data/src/core/ext/filters/client_channel/subchannel.h +68 -99
- data/src/core/ext/filters/client_channel/subchannel_pool_interface.cc +16 -2
- data/src/core/ext/filters/client_channel/subchannel_pool_interface.h +10 -8
- data/src/core/ext/filters/client_idle/client_idle_filter.cc +17 -16
- data/src/core/ext/filters/deadline/deadline_filter.cc +10 -10
- data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +501 -0
- data/src/core/ext/filters/fault_injection/fault_injection_filter.h +39 -0
- data/src/core/ext/filters/fault_injection/service_config_parser.cc +189 -0
- data/src/core/ext/filters/fault_injection/service_config_parser.h +85 -0
- data/src/core/ext/filters/http/client/http_client_filter.cc +28 -21
- data/src/core/ext/filters/http/client_authority_filter.cc +3 -3
- data/src/core/ext/filters/http/message_compress/message_compress_filter.cc +23 -22
- data/src/core/ext/filters/http/message_compress/message_decompress_filter.cc +21 -21
- data/src/core/ext/filters/http/server/http_server_filter.cc +27 -23
- data/src/core/ext/filters/max_age/max_age_filter.cc +47 -42
- data/src/core/ext/filters/message_size/message_size_filter.cc +14 -11
- data/src/core/ext/filters/message_size/message_size_filter.h +1 -1
- data/src/core/ext/filters/workarounds/workaround_cronet_compression_filter.cc +5 -4
- data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +8 -8
- data/src/core/ext/transport/chttp2/client/chttp2_connector.h +7 -7
- data/src/core/ext/transport/chttp2/client/insecure/channel_create.cc +5 -4
- data/src/core/ext/transport/chttp2/client/insecure/channel_create_posix.cc +2 -2
- data/src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc +6 -5
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +507 -196
- data/src/core/ext/transport/chttp2/server/chttp2_server.h +11 -2
- data/src/core/ext/transport/chttp2/server/insecure/server_chttp2.cc +13 -4
- data/src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc +3 -3
- data/src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.cc +64 -21
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +167 -122
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +12 -1
- data/src/core/ext/transport/chttp2/transport/context_list.cc +4 -5
- data/src/core/ext/transport/chttp2/transport/context_list.h +4 -4
- data/src/core/ext/transport/chttp2/transport/flow_control.cc +3 -3
- data/src/core/ext/transport/chttp2/transport/flow_control.h +8 -8
- data/src/core/ext/transport/chttp2/transport/frame_data.cc +13 -9
- data/src/core/ext/transport/chttp2/transport/frame_data.h +10 -10
- data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +7 -8
- data/src/core/ext/transport/chttp2/transport/frame_goaway.h +6 -6
- data/src/core/ext/transport/chttp2/transport/frame_ping.cc +7 -8
- data/src/core/ext/transport/chttp2/transport/frame_ping.h +7 -6
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +7 -7
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +6 -6
- data/src/core/ext/transport/chttp2/transport/frame_settings.cc +6 -5
- data/src/core/ext/transport/chttp2/transport/frame_settings.h +6 -6
- data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +4 -6
- data/src/core/ext/transport/chttp2/transport/frame_window_update.h +4 -6
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +1 -1
- data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +237 -208
- data/src/core/ext/transport/chttp2/transport/hpack_parser.h +10 -10
- data/src/core/ext/transport/chttp2/transport/hpack_table.cc +4 -3
- data/src/core/ext/transport/chttp2/transport/hpack_table.h +4 -4
- data/src/core/ext/transport/chttp2/transport/incoming_metadata.cc +2 -2
- data/src/core/ext/transport/chttp2/transport/incoming_metadata.h +2 -2
- data/src/core/ext/transport/chttp2/transport/internal.h +32 -27
- data/src/core/ext/transport/chttp2/transport/parsing.cc +63 -56
- data/src/core/ext/transport/chttp2/transport/writing.cc +7 -3
- data/src/core/ext/transport/inproc/inproc_transport.cc +30 -29
- data/src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.c +406 -0
- data/src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.h +1459 -0
- data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.c +0 -1
- data/src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.c +350 -0
- data/src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.h +1348 -0
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.c +11 -16
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.h +42 -59
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.c +3 -2
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.h +15 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.c +25 -1
- data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.h +75 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.c +2 -2
- data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.h +9 -9
- data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.c +7 -7
- data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.h +28 -13
- data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.c +6 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.h +25 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.c +0 -1
- data/src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.c +11 -5
- data/src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.h +41 -7
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.c +0 -1
- data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.c +23 -21
- data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.h +122 -77
- data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.c +13 -9
- data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.h +37 -5
- data/src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.c +0 -1
- data/src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.c +144 -0
- data/src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.h +488 -0
- data/src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.c +141 -0
- data/src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.h +452 -0
- data/src/core/ext/upb-generated/envoy/config/route/v3/route.upb.c +11 -9
- data/src/core/ext/upb-generated/envoy/config/route/v3/route.upb.h +44 -27
- data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.c +57 -16
- data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.h +150 -0
- data/src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.c +0 -1
- data/src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.c +29 -0
- data/src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.h +67 -0
- data/src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.c +79 -0
- data/src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.h +268 -0
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.c +78 -0
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.h +281 -0
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.c +41 -0
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.h +113 -0
- data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.c +19 -21
- data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +64 -51
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.c +0 -1
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.c +16 -13
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.h +50 -18
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.c +4 -7
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.h +0 -17
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.c +0 -1
- data/src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.c +30 -23
- data/src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.h +85 -73
- data/src/core/ext/upb-generated/envoy/service/endpoint/v3/eds.upb.c +0 -3
- data/src/core/ext/upb-generated/envoy/service/listener/v3/lds.upb.c +0 -3
- data/src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.c +0 -1
- data/src/core/ext/upb-generated/envoy/service/route/v3/rds.upb.c +0 -2
- data/src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.c +93 -0
- data/src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.h +323 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.c +36 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.h +90 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.c +0 -1
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.c +46 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.h +124 -0
- data/src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.c +21 -4
- data/src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.h +29 -0
- data/src/core/ext/upb-generated/udpa/type/v1/typed_struct.upb.c +33 -0
- data/src/core/ext/upb-generated/udpa/type/v1/typed_struct.upb.h +77 -0
- data/src/core/ext/upb-generated/{udpa/core/v1 → xds/core/v3}/authority.upb.c +5 -5
- data/src/core/ext/upb-generated/xds/core/v3/authority.upb.h +60 -0
- data/src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.c +52 -0
- data/src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.h +143 -0
- data/src/core/ext/upb-generated/xds/core/v3/context_params.upb.c +42 -0
- data/src/core/ext/upb-generated/xds/core/v3/context_params.upb.h +84 -0
- data/src/core/ext/upb-generated/{udpa/core/v1 → xds/core/v3}/resource.upb.c +9 -9
- data/src/core/ext/upb-generated/xds/core/v3/resource.upb.h +94 -0
- data/src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.c +54 -0
- data/src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.h +166 -0
- data/src/core/ext/upb-generated/xds/core/v3/resource_name.upb.c +36 -0
- data/src/core/ext/upb-generated/xds/core/v3/resource_name.upb.h +85 -0
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump.upbdefs.c +354 -0
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump.upbdefs.h +140 -0
- data/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.c +168 -171
- data/src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3/bootstrap.upbdefs.c +383 -0
- data/src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3/bootstrap.upbdefs.h +115 -0
- data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.c +405 -420
- data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.h +2 -2
- data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/outlier_detection.upbdefs.c +12 -9
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.c +177 -171
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.h +10 -0
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.c +88 -88
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.c +153 -153
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.c +10 -7
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.c +4 -7
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.c +33 -20
- data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint.upbdefs.c +56 -59
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.c +116 -111
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.c +129 -121
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.c +21 -24
- data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/stats.upbdefs.c +141 -0
- data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/stats.upbdefs.h +70 -0
- data/src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.c +141 -0
- data/src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.h +70 -0
- data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.c +17 -13
- data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.c +753 -724
- data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.h +10 -0
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/http_tracer.upbdefs.c +22 -25
- data/src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.c +51 -0
- data/src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3/fault.upbdefs.c +102 -0
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3/fault.upbdefs.h +55 -0
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3/fault.upbdefs.c +120 -0
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3/fault.upbdefs.h +45 -0
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.c +76 -0
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +371 -377
- data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.c +12 -16
- data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c +112 -108
- data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.c +45 -53
- data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c +177 -180
- data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.c +92 -102
- data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-generated/envoy/service/endpoint/v3/eds.upbdefs.c +32 -42
- data/src/core/ext/upbdefs-generated/envoy/service/listener/v3/lds.upbdefs.c +30 -40
- data/src/core/ext/upbdefs-generated/envoy/service/load_stats/v3/lrs.upbdefs.c +4 -7
- data/src/core/ext/upbdefs-generated/envoy/service/route/v3/rds.upbdefs.c +38 -44
- data/src/core/ext/upbdefs-generated/envoy/service/status/v3/csds.upbdefs.c +130 -0
- data/src/core/ext/upbdefs-generated/envoy/service/status/v3/csds.upbdefs.h +50 -0
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/node.upbdefs.c +56 -0
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/node.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/string.upbdefs.c +30 -33
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/struct.upbdefs.c +63 -0
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/struct.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-generated/udpa/type/v1/typed_struct.upbdefs.c +44 -0
- data/src/core/ext/upbdefs-generated/udpa/type/v1/typed_struct.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/validate/validate.upbdefs.c +14 -11
- data/src/core/ext/upbdefs-generated/xds/core/v3/authority.upbdefs.c +42 -0
- data/src/core/ext/upbdefs-generated/xds/core/v3/authority.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/xds/core/v3/collection_entry.upbdefs.c +62 -0
- data/src/core/ext/upbdefs-generated/xds/core/v3/collection_entry.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-generated/xds/core/v3/context_params.upbdefs.c +45 -0
- data/src/core/ext/upbdefs-generated/xds/core/v3/context_params.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-generated/xds/core/v3/resource.upbdefs.c +49 -0
- data/src/core/ext/upbdefs-generated/xds/core/v3/resource.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/xds/core/v3/resource_locator.upbdefs.c +67 -0
- data/src/core/ext/upbdefs-generated/xds/core/v3/resource_locator.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-generated/xds/core/v3/resource_name.upbdefs.c +50 -0
- data/src/core/ext/upbdefs-generated/xds/core/v3/resource_name.upbdefs.h +35 -0
- data/src/core/ext/xds/certificate_provider_factory.h +1 -1
- data/src/core/ext/xds/certificate_provider_store.h +3 -3
- data/src/core/ext/xds/file_watcher_certificate_provider_factory.cc +3 -3
- data/src/core/ext/xds/file_watcher_certificate_provider_factory.h +2 -2
- data/src/core/ext/xds/xds_api.cc +2179 -688
- data/src/core/ext/xds/xds_api.h +326 -124
- data/src/core/ext/xds/xds_bootstrap.cc +115 -142
- data/src/core/ext/xds/xds_bootstrap.h +24 -17
- data/src/core/ext/xds/xds_certificate_provider.cc +184 -78
- data/src/core/ext/xds/xds_certificate_provider.h +84 -45
- data/src/core/ext/xds/xds_channel_args.h +5 -2
- data/src/core/ext/xds/xds_client.cc +462 -183
- data/src/core/ext/xds/xds_client.h +65 -22
- data/src/core/ext/xds/xds_client_stats.cc +2 -1
- data/src/core/ext/xds/xds_client_stats.h +5 -4
- data/src/core/ext/xds/xds_http_fault_filter.cc +226 -0
- data/src/core/ext/xds/xds_http_fault_filter.h +63 -0
- data/src/core/ext/xds/xds_http_filters.cc +114 -0
- data/src/core/ext/xds/xds_http_filters.h +130 -0
- data/src/core/ext/xds/xds_server_config_fetcher.cc +444 -29
- data/src/core/lib/{iomgr → address_utils}/parse_address.cc +17 -17
- data/src/core/lib/{iomgr → address_utils}/parse_address.h +7 -7
- data/src/core/lib/{iomgr → address_utils}/sockaddr_utils.cc +108 -5
- data/src/core/lib/{iomgr → address_utils}/sockaddr_utils.h +26 -6
- data/src/core/lib/channel/channel_stack.cc +22 -9
- data/src/core/lib/channel/channel_stack.h +17 -9
- data/src/core/lib/channel/channel_stack_builder.cc +2 -2
- data/src/core/lib/channel/channel_stack_builder.h +1 -1
- data/src/core/lib/channel/channelz.cc +108 -12
- data/src/core/lib/channel/channelz.h +30 -1
- data/src/core/lib/channel/channelz_registry.cc +14 -0
- data/src/core/lib/channel/connected_channel.cc +4 -4
- data/src/core/lib/channel/handshaker.cc +9 -50
- data/src/core/lib/channel/handshaker.h +6 -23
- data/src/core/lib/channel/status_util.cc +12 -2
- data/src/core/lib/channel/status_util.h +5 -0
- data/src/core/lib/event_engine/slice_allocator.cc +59 -0
- data/src/core/lib/event_engine/sockaddr.cc +38 -0
- data/src/core/lib/gpr/log.cc +6 -1
- data/src/core/lib/gpr/sync_abseil.cc +3 -6
- data/src/core/lib/gpr/sync_windows.cc +2 -2
- data/src/core/lib/gprpp/atomic.h +3 -3
- data/src/core/lib/gprpp/dual_ref_counted.h +3 -3
- data/src/core/lib/gprpp/mpscq.cc +2 -2
- data/src/core/lib/gprpp/ref_counted.h +29 -15
- data/src/core/lib/gprpp/ref_counted_ptr.h +2 -0
- data/src/core/lib/gprpp/status_helper.cc +407 -0
- data/src/core/lib/gprpp/status_helper.h +180 -0
- data/src/core/lib/gprpp/sync.h +129 -40
- data/src/core/lib/gprpp/thd.h +1 -1
- data/src/core/lib/gprpp/time_util.cc +77 -0
- data/src/core/lib/gprpp/time_util.h +42 -0
- data/src/core/lib/http/httpcli.cc +11 -11
- data/src/core/lib/http/httpcli_security_connector.cc +13 -9
- data/src/core/lib/http/parser.cc +16 -16
- data/src/core/lib/http/parser.h +4 -4
- data/src/core/lib/iomgr/buffer_list.cc +7 -9
- data/src/core/lib/iomgr/buffer_list.h +5 -6
- data/src/core/lib/iomgr/call_combiner.cc +15 -12
- data/src/core/lib/iomgr/call_combiner.h +12 -14
- data/src/core/lib/iomgr/cfstream_handle.cc +5 -5
- data/src/core/lib/iomgr/cfstream_handle.h +1 -1
- data/src/core/lib/iomgr/closure.h +7 -6
- data/src/core/lib/iomgr/combiner.cc +14 -12
- data/src/core/lib/iomgr/combiner.h +2 -2
- data/src/core/lib/iomgr/endpoint.cc +1 -1
- data/src/core/lib/iomgr/endpoint.h +2 -2
- data/src/core/lib/iomgr/endpoint_cfstream.cc +11 -13
- data/src/core/lib/iomgr/endpoint_pair_windows.cc +1 -1
- data/src/core/lib/iomgr/error.cc +167 -61
- data/src/core/lib/iomgr/error.h +218 -107
- data/src/core/lib/iomgr/error_cfstream.cc +3 -2
- data/src/core/lib/iomgr/error_cfstream.h +2 -2
- data/src/core/lib/iomgr/error_internal.h +5 -1
- data/src/core/lib/iomgr/ev_apple.cc +16 -13
- data/src/core/lib/iomgr/ev_epoll1_linux.cc +22 -22
- data/src/core/lib/iomgr/ev_epollex_linux.cc +52 -49
- data/src/core/lib/iomgr/ev_poll_posix.cc +26 -23
- data/src/core/lib/iomgr/ev_posix.cc +12 -11
- data/src/core/lib/iomgr/ev_posix.h +9 -9
- data/src/core/lib/iomgr/exec_ctx.cc +10 -6
- data/src/core/lib/iomgr/exec_ctx.h +1 -1
- data/src/core/lib/iomgr/executor.cc +8 -8
- data/src/core/lib/iomgr/executor.h +2 -2
- data/src/core/lib/iomgr/iomgr.cc +1 -1
- data/src/core/lib/iomgr/iomgr.h +1 -1
- data/src/core/lib/iomgr/iomgr_custom.cc +1 -1
- data/src/core/lib/iomgr/iomgr_internal.cc +2 -2
- data/src/core/lib/iomgr/iomgr_internal.h +3 -3
- data/src/core/lib/iomgr/iomgr_posix.cc +1 -2
- data/src/core/lib/iomgr/iomgr_posix_cfstream.cc +2 -3
- data/src/core/lib/iomgr/iomgr_windows.cc +1 -1
- data/src/core/lib/iomgr/load_file.cc +4 -4
- data/src/core/lib/iomgr/load_file.h +2 -2
- data/src/core/lib/iomgr/lockfree_event.cc +5 -5
- data/src/core/lib/iomgr/lockfree_event.h +1 -1
- data/src/core/lib/iomgr/pollset.cc +5 -5
- data/src/core/lib/iomgr/pollset.h +9 -9
- data/src/core/lib/iomgr/pollset_custom.cc +5 -5
- data/src/core/lib/iomgr/pollset_windows.cc +5 -5
- data/src/core/lib/iomgr/port.h +1 -1
- data/src/core/lib/iomgr/python_util.h +1 -1
- data/src/core/lib/iomgr/resolve_address.cc +3 -3
- data/src/core/lib/iomgr/resolve_address.h +6 -6
- data/src/core/lib/iomgr/resolve_address_custom.cc +10 -9
- data/src/core/lib/iomgr/resolve_address_custom.h +3 -3
- data/src/core/lib/iomgr/resolve_address_posix.cc +3 -3
- data/src/core/lib/iomgr/resolve_address_windows.cc +4 -4
- data/src/core/lib/iomgr/resource_quota.cc +12 -11
- data/src/core/lib/iomgr/socket_utils_common_posix.cc +23 -20
- data/src/core/lib/iomgr/socket_utils_posix.h +20 -20
- data/src/core/lib/iomgr/tcp_client_cfstream.cc +4 -4
- data/src/core/lib/iomgr/tcp_client_custom.cc +5 -6
- data/src/core/lib/iomgr/tcp_client_posix.cc +16 -18
- data/src/core/lib/iomgr/tcp_client_posix.h +3 -4
- data/src/core/lib/iomgr/tcp_client_windows.cc +5 -5
- data/src/core/lib/iomgr/tcp_custom.cc +14 -16
- data/src/core/lib/iomgr/tcp_custom.h +13 -12
- data/src/core/lib/iomgr/tcp_posix.cc +41 -42
- data/src/core/lib/iomgr/tcp_server.cc +6 -6
- data/src/core/lib/iomgr/tcp_server.h +12 -11
- data/src/core/lib/iomgr/tcp_server_custom.cc +23 -21
- data/src/core/lib/iomgr/tcp_server_posix.cc +22 -21
- data/src/core/lib/iomgr/tcp_server_utils_posix.h +13 -12
- data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +19 -17
- data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc +9 -9
- data/src/core/lib/iomgr/tcp_server_utils_posix_noifaddrs.cc +4 -4
- data/src/core/lib/iomgr/tcp_server_windows.cc +26 -25
- data/src/core/lib/iomgr/tcp_uv.cc +27 -25
- data/src/core/lib/iomgr/tcp_windows.cc +13 -13
- data/src/core/lib/iomgr/tcp_windows.h +2 -2
- data/src/core/lib/iomgr/timer_custom.cc +2 -1
- data/src/core/lib/iomgr/timer_custom.h +1 -1
- data/src/core/lib/iomgr/timer_generic.cc +8 -8
- data/src/core/lib/iomgr/timer_manager.cc +1 -1
- data/src/core/lib/iomgr/udp_server.cc +21 -20
- data/src/core/lib/iomgr/unix_sockets_posix.cc +3 -3
- data/src/core/lib/iomgr/unix_sockets_posix.h +2 -2
- data/src/core/lib/iomgr/unix_sockets_posix_noop.cc +10 -7
- data/src/core/lib/iomgr/wakeup_fd_eventfd.cc +3 -3
- data/src/core/lib/iomgr/wakeup_fd_nospecial.cc +1 -1
- data/src/core/lib/iomgr/wakeup_fd_pipe.cc +4 -4
- data/src/core/lib/iomgr/wakeup_fd_posix.cc +3 -3
- data/src/core/lib/iomgr/wakeup_fd_posix.h +8 -6
- data/src/core/lib/iomgr/work_serializer.h +17 -1
- data/src/core/lib/json/json.h +1 -1
- data/src/core/lib/json/json_reader.cc +4 -4
- data/src/core/lib/matchers/matchers.cc +339 -0
- data/src/core/lib/matchers/matchers.h +160 -0
- data/src/core/lib/security/credentials/alts/alts_credentials.cc +2 -1
- data/src/core/lib/security/credentials/alts/alts_credentials.h +1 -1
- data/src/core/lib/security/credentials/composite/composite_credentials.cc +4 -4
- data/src/core/lib/security/credentials/composite/composite_credentials.h +2 -2
- data/src/core/lib/security/credentials/credentials.h +4 -3
- data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +18 -14
- data/src/core/lib/security/credentials/external/aws_external_account_credentials.h +13 -11
- data/src/core/lib/security/credentials/external/aws_request_signer.cc +2 -1
- data/src/core/lib/security/credentials/external/aws_request_signer.h +1 -1
- data/src/core/lib/security/credentials/external/external_account_credentials.cc +17 -14
- data/src/core/lib/security/credentials/external/external_account_credentials.h +9 -8
- data/src/core/lib/security/credentials/external/file_external_account_credentials.cc +6 -5
- data/src/core/lib/security/credentials/external/file_external_account_credentials.h +4 -3
- data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +9 -9
- data/src/core/lib/security/credentials/external/url_external_account_credentials.h +9 -7
- data/src/core/lib/security/credentials/fake/fake_credentials.cc +3 -3
- data/src/core/lib/security/credentials/fake/fake_credentials.h +2 -2
- data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +16 -15
- data/src/core/lib/security/credentials/iam/iam_credentials.cc +2 -2
- data/src/core/lib/security/credentials/iam/iam_credentials.h +2 -2
- data/src/core/lib/security/credentials/insecure/insecure_credentials.cc +2 -2
- data/src/core/lib/security/credentials/jwt/json_token.cc +2 -5
- data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +3 -3
- data/src/core/lib/security/credentials/jwt/jwt_credentials.h +2 -2
- data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +7 -8
- data/src/core/lib/security/credentials/local/local_credentials.cc +2 -1
- data/src/core/lib/security/credentials/local/local_credentials.h +1 -1
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +21 -19
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +5 -5
- data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +5 -5
- data/src/core/lib/security/credentials/plugin/plugin_credentials.h +2 -2
- data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +2 -1
- data/src/core/lib/security/credentials/ssl/ssl_credentials.h +1 -1
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.cc +8 -7
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.h +9 -9
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +19 -13
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +4 -0
- data/src/core/lib/security/credentials/tls/tls_credentials.cc +2 -1
- data/src/core/lib/security/credentials/tls/tls_credentials.h +1 -1
- data/src/core/lib/security/credentials/xds/xds_credentials.cc +130 -61
- data/src/core/lib/security/credentials/xds/xds_credentials.h +3 -3
- data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +13 -3
- data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +13 -3
- data/src/core/lib/security/security_connector/insecure/insecure_security_connector.cc +5 -5
- data/src/core/lib/security/security_connector/insecure/insecure_security_connector.h +12 -2
- data/src/core/lib/security/security_connector/load_system_roots_linux.cc +1 -1
- data/src/core/lib/security/security_connector/local/local_security_connector.cc +14 -4
- data/src/core/lib/security/security_connector/security_connector.h +9 -4
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +16 -6
- data/src/core/lib/security/security_connector/ssl_utils.cc +31 -8
- data/src/core/lib/security/security_connector/ssl_utils.h +4 -4
- data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +88 -74
- data/src/core/lib/security/security_connector/tls/tls_security_connector.h +66 -48
- data/src/core/lib/security/transport/client_auth_filter.cc +18 -10
- data/src/core/lib/security/transport/secure_endpoint.cc +4 -4
- data/src/core/lib/security/transport/security_handshaker.cc +66 -37
- data/src/core/lib/security/transport/server_auth_filter.cc +24 -11
- data/src/core/lib/security/transport/tsi_error.cc +2 -1
- data/src/core/lib/security/transport/tsi_error.h +2 -1
- data/src/core/lib/security/util/json_util.cc +2 -2
- data/src/core/lib/security/util/json_util.h +1 -1
- data/src/core/lib/slice/slice_intern.cc +5 -6
- data/src/core/lib/surface/call.cc +46 -45
- data/src/core/lib/surface/call.h +2 -2
- data/src/core/lib/surface/channel.cc +6 -6
- data/src/core/lib/surface/channel.h +6 -5
- data/src/core/lib/surface/channel_ping.cc +1 -1
- data/src/core/lib/surface/completion_queue.cc +46 -47
- data/src/core/lib/surface/completion_queue.h +2 -1
- data/src/core/lib/surface/init.cc +13 -15
- data/src/core/lib/surface/lame_client.cc +43 -24
- data/src/core/lib/surface/lame_client.h +4 -3
- data/src/core/lib/surface/server.cc +71 -58
- data/src/core/lib/surface/server.h +91 -28
- data/src/core/lib/surface/validate_metadata.cc +7 -7
- data/src/core/lib/surface/validate_metadata.h +3 -2
- data/src/core/lib/surface/version.cc +4 -2
- data/src/core/lib/transport/byte_stream.cc +5 -5
- data/src/core/lib/transport/byte_stream.h +8 -8
- data/src/core/lib/transport/connectivity_state.cc +1 -1
- data/src/core/lib/transport/error_utils.cc +19 -8
- data/src/core/lib/transport/error_utils.h +11 -5
- data/src/core/lib/transport/metadata.cc +6 -2
- data/src/core/lib/transport/metadata_batch.cc +64 -37
- data/src/core/lib/transport/metadata_batch.h +33 -18
- data/src/core/lib/transport/transport.cc +4 -3
- data/src/core/lib/transport/transport.h +4 -4
- data/src/core/lib/transport/transport_op_string.cc +5 -5
- data/src/core/plugin_registry/grpc_plugin_registry.cc +12 -0
- data/src/core/tsi/alts/crypt/gsec.h +4 -0
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +23 -28
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +23 -27
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.h +1 -1
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker_private.h +2 -1
- data/src/core/tsi/alts/handshaker/transport_security_common_api.cc +1 -3
- data/src/core/tsi/fake_transport_security.cc +11 -2
- data/src/core/tsi/ssl/session_cache/ssl_session.h +0 -3
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.cc +0 -2
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.h +2 -4
- data/src/core/tsi/ssl_transport_security.cc +32 -17
- data/src/core/tsi/ssl_transport_security.h +3 -7
- data/src/ruby/bin/math_services_pb.rb +1 -1
- data/src/ruby/ext/grpc/extconf.rb +9 -1
- data/src/ruby/ext/grpc/rb_channel.c +10 -1
- data/src/ruby/ext/grpc/rb_channel_credentials.c +11 -1
- data/src/ruby/ext/grpc/rb_channel_credentials.h +4 -0
- data/src/ruby/ext/grpc/rb_compression_options.c +1 -1
- data/src/ruby/ext/grpc/rb_enable_cpp.cc +1 -1
- data/src/ruby/ext/grpc/rb_grpc.c +4 -0
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +2 -0
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +4 -1
- data/src/ruby/ext/grpc/rb_server.c +13 -1
- data/src/ruby/ext/grpc/rb_server_credentials.c +19 -3
- data/src/ruby/ext/grpc/rb_server_credentials.h +4 -0
- data/src/ruby/ext/grpc/rb_xds_channel_credentials.c +215 -0
- data/src/ruby/ext/grpc/rb_xds_channel_credentials.h +35 -0
- data/src/ruby/ext/grpc/rb_xds_server_credentials.c +169 -0
- data/src/ruby/ext/grpc/rb_xds_server_credentials.h +35 -0
- data/src/ruby/lib/grpc/generic/client_stub.rb +4 -2
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/src/ruby/pb/grpc/health/v1/health_services_pb.rb +1 -1
- data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +7 -0
- data/src/ruby/pb/src/proto/grpc/testing/test_services_pb.rb +6 -6
- data/src/ruby/spec/call_spec.rb +1 -1
- data/src/ruby/spec/channel_credentials_spec.rb +32 -0
- data/src/ruby/spec/channel_spec.rb +17 -6
- data/src/ruby/spec/client_auth_spec.rb +27 -1
- data/src/ruby/spec/errors_spec.rb +1 -1
- data/src/ruby/spec/generic/active_call_spec.rb +2 -2
- data/src/ruby/spec/generic/client_stub_spec.rb +4 -4
- data/src/ruby/spec/generic/rpc_server_spec.rb +1 -1
- data/src/ruby/spec/server_credentials_spec.rb +25 -0
- data/src/ruby/spec/server_spec.rb +22 -0
- data/third_party/abseil-cpp/absl/algorithm/container.h +3 -3
- data/third_party/abseil-cpp/absl/base/attributes.h +24 -4
- data/third_party/abseil-cpp/absl/base/call_once.h +2 -9
- data/third_party/abseil-cpp/absl/base/config.h +37 -9
- data/third_party/abseil-cpp/absl/base/dynamic_annotations.h +24 -10
- data/third_party/abseil-cpp/absl/base/internal/direct_mmap.h +4 -1
- data/third_party/abseil-cpp/absl/base/internal/endian.h +61 -0
- data/third_party/abseil-cpp/absl/base/internal/low_level_scheduling.h +2 -3
- data/third_party/abseil-cpp/absl/base/internal/raw_logging.cc +34 -32
- data/third_party/abseil-cpp/absl/base/internal/raw_logging.h +16 -6
- data/third_party/abseil-cpp/absl/base/internal/spinlock.cc +11 -2
- data/third_party/abseil-cpp/absl/base/internal/spinlock.h +14 -5
- data/third_party/abseil-cpp/absl/base/internal/spinlock_akaros.inc +2 -2
- data/third_party/abseil-cpp/absl/base/internal/spinlock_linux.inc +3 -3
- data/third_party/abseil-cpp/absl/base/internal/spinlock_posix.inc +2 -2
- data/third_party/abseil-cpp/absl/base/internal/spinlock_wait.h +11 -11
- data/third_party/abseil-cpp/absl/base/internal/spinlock_win32.inc +5 -5
- data/third_party/abseil-cpp/absl/base/internal/sysinfo.cc +1 -1
- data/third_party/abseil-cpp/absl/base/internal/thread_identity.cc +5 -2
- data/third_party/abseil-cpp/absl/base/internal/thread_identity.h +43 -42
- data/third_party/abseil-cpp/absl/base/internal/throw_delegate.cc +111 -7
- data/third_party/abseil-cpp/absl/base/internal/unaligned_access.h +0 -76
- data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc +1 -3
- data/third_party/abseil-cpp/absl/base/log_severity.h +4 -4
- data/third_party/abseil-cpp/absl/base/macros.h +11 -0
- data/third_party/abseil-cpp/absl/base/optimization.h +10 -7
- data/third_party/abseil-cpp/absl/base/options.h +1 -1
- data/third_party/abseil-cpp/absl/base/port.h +0 -1
- data/third_party/abseil-cpp/absl/base/thread_annotations.h +1 -1
- data/third_party/abseil-cpp/absl/container/fixed_array.h +2 -2
- data/third_party/abseil-cpp/absl/container/inlined_vector.h +5 -3
- data/third_party/abseil-cpp/absl/container/internal/compressed_tuple.h +1 -1
- data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.cc +5 -1
- data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.h +2 -1
- data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler_force_weak_definition.cc +2 -1
- data/third_party/abseil-cpp/absl/container/internal/inlined_vector.h +141 -66
- data/third_party/abseil-cpp/absl/container/internal/layout.h +4 -4
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.cc +14 -1
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.h +136 -136
- data/third_party/abseil-cpp/absl/debugging/internal/demangle.cc +16 -12
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_aarch64-inl.inc +5 -2
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_config.h +3 -12
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_powerpc-inl.inc +6 -1
- data/third_party/abseil-cpp/absl/debugging/internal/symbolize.h +3 -5
- data/third_party/abseil-cpp/absl/debugging/symbolize_darwin.inc +2 -2
- data/third_party/abseil-cpp/absl/debugging/symbolize_elf.inc +2 -2
- data/third_party/abseil-cpp/absl/hash/internal/city.cc +15 -12
- data/third_party/abseil-cpp/absl/hash/internal/city.h +1 -19
- data/third_party/abseil-cpp/absl/hash/internal/hash.cc +25 -10
- data/third_party/abseil-cpp/absl/hash/internal/hash.h +86 -37
- data/third_party/abseil-cpp/absl/hash/internal/wyhash.cc +111 -0
- data/third_party/abseil-cpp/absl/hash/internal/wyhash.h +48 -0
- data/third_party/abseil-cpp/absl/meta/type_traits.h +16 -2
- data/third_party/abseil-cpp/absl/numeric/bits.h +177 -0
- data/third_party/abseil-cpp/absl/numeric/int128.cc +3 -3
- data/third_party/abseil-cpp/absl/numeric/internal/bits.h +358 -0
- data/third_party/abseil-cpp/absl/numeric/internal/representation.h +55 -0
- data/third_party/abseil-cpp/absl/status/internal/status_internal.h +18 -0
- data/third_party/abseil-cpp/absl/status/internal/statusor_internal.h +4 -7
- data/third_party/abseil-cpp/absl/status/status.cc +29 -22
- data/third_party/abseil-cpp/absl/status/status.h +81 -20
- data/third_party/abseil-cpp/absl/status/statusor.h +3 -3
- data/third_party/abseil-cpp/absl/strings/charconv.cc +5 -5
- data/third_party/abseil-cpp/absl/strings/cord.cc +326 -371
- data/third_party/abseil-cpp/absl/strings/cord.h +182 -64
- data/third_party/abseil-cpp/absl/strings/escaping.cc +4 -4
- data/third_party/abseil-cpp/absl/strings/internal/charconv_parse.cc +6 -6
- data/third_party/abseil-cpp/absl/strings/internal/cord_internal.cc +83 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_internal.h +387 -17
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_flat.h +146 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_ring.cc +897 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_ring.h +589 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_ring_reader.h +114 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.cc +14 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.h +14 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.cc +15 -1
- data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.h +19 -4
- data/third_party/abseil-cpp/absl/strings/internal/str_format/checker.h +14 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.cc +36 -18
- data/third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.h +14 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/parser.cc +14 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/parser.h +14 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_split_internal.h +15 -40
- data/third_party/abseil-cpp/absl/strings/internal/string_constant.h +64 -0
- data/third_party/abseil-cpp/absl/strings/match.cc +6 -3
- data/third_party/abseil-cpp/absl/strings/match.h +16 -6
- data/third_party/abseil-cpp/absl/strings/numbers.cc +132 -4
- data/third_party/abseil-cpp/absl/strings/numbers.h +10 -10
- data/third_party/abseil-cpp/absl/strings/str_join.h +1 -1
- data/third_party/abseil-cpp/absl/strings/str_split.h +38 -4
- data/third_party/abseil-cpp/absl/synchronization/internal/futex.h +154 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/graphcycles.cc +1 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/kernel_timeout.h +2 -1
- data/third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.cc +2 -2
- data/third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.h +4 -4
- data/third_party/abseil-cpp/absl/synchronization/internal/waiter.cc +1 -65
- data/third_party/abseil-cpp/absl/synchronization/internal/waiter.h +2 -6
- data/third_party/abseil-cpp/absl/synchronization/mutex.cc +71 -59
- data/third_party/abseil-cpp/absl/synchronization/mutex.h +79 -62
- data/third_party/abseil-cpp/absl/time/clock.cc +146 -130
- data/third_party/abseil-cpp/absl/time/clock.h +2 -2
- data/third_party/abseil-cpp/absl/time/duration.cc +3 -2
- data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/civil_time_detail.h +7 -11
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.cc +7 -1
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/tzfile.h +4 -4
- data/third_party/abseil-cpp/absl/time/time.cc +4 -3
- data/third_party/abseil-cpp/absl/time/time.h +26 -24
- data/third_party/abseil-cpp/absl/types/internal/variant.h +1 -1
- data/third_party/abseil-cpp/absl/types/variant.h +9 -4
- data/third_party/boringssl-with-bazel/err_data.c +742 -724
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bitstr.c +3 -3
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bool.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_enum.c +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_int.c +5 -5
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_object.c +4 -11
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_octet.c +3 -3
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_type.c +22 -10
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utctm.c +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_lib.c +16 -16
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_locl.h +35 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_dec.c +28 -79
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_enc.c +40 -86
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_fre.c +6 -17
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_new.c +10 -61
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_typ.c +0 -2
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_utl.c +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/bio/socket_helper.c +4 -0
- data/third_party/boringssl-with-bazel/src/crypto/blake2/blake2.c +158 -0
- data/third_party/boringssl-with-bazel/src/crypto/bn_extra/bn_asn1.c +3 -10
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/ber.c +8 -9
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.c +60 -45
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_chacha20poly1305.c +6 -81
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_tls.c +1 -88
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/internal.h +101 -3
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/tls_cbc.c +119 -273
- data/third_party/boringssl-with-bazel/src/crypto/cpu-aarch64-win.c +41 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu-arm-linux.c +11 -2
- data/third_party/boringssl-with-bazel/src/crypto/cpu-arm.c +3 -3
- data/third_party/boringssl-with-bazel/src/crypto/{dh → dh_extra}/dh_asn1.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/{dh → dh_extra}/params.c +179 -0
- data/third_party/boringssl-with-bazel/src/crypto/digest_extra/digest_extra.c +25 -0
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_asn1.c +2 -17
- data/third_party/boringssl-with-bazel/src/crypto/err/err.c +87 -80
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.c +4 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bn.c +13 -20
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div.c +2 -3
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +10 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/cipher.c +32 -16
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aes.c +25 -2
- data/third_party/boringssl-with-bazel/src/crypto/{dh → fipsmodule/dh}/check.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/{dh → fipsmodule/dh}/dh.c +136 -213
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digests.c +10 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/md32_common.h +4 -43
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec.c +16 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.c +9 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/internal.h +0 -4
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.c +104 -93
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/internal.h +39 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md4/md4.c +43 -46
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md5/md5.c +43 -46
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/cbc.c +33 -22
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/cfb.c +9 -8
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/ctr.c +9 -8
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/gcm.c +17 -13
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/internal.h +1 -22
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/ofb.c +2 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/internal.h +28 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.c +135 -43
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/urandom.c +26 -14
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c +51 -32
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/fips.c +79 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c +161 -9
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1.c +45 -48
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha256.c +38 -43
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha512.c +37 -45
- data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c +121 -71
- data/third_party/boringssl-with-bazel/src/crypto/hpke/internal.h +71 -41
- data/third_party/boringssl-with-bazel/src/crypto/internal.h +65 -0
- data/third_party/boringssl-with-bazel/src/crypto/mem.c +14 -0
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj.c +3 -3
- data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7_x509.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.c +95 -48
- data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305.c +10 -7
- data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_arm.c +13 -11
- data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_vec.c +4 -0
- data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/is_fips.c → rand_extra/passive.c} +16 -11
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/rand_extra.c +5 -1
- data/third_party/boringssl-with-bazel/src/crypto/stack/stack.c +7 -13
- data/third_party/boringssl-with-bazel/src/crypto/thread_pthread.c +0 -28
- data/third_party/boringssl-with-bazel/src/crypto/x509/internal.h +19 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/rsa_pss.c +5 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_req.c +2 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_att.c +19 -25
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_cmp.c +4 -31
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_ext.c +10 -7
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_req.c +39 -89
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_set.c +17 -24
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_v3.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509cset.c +29 -23
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_algor.c +21 -17
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_attrib.c +21 -34
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_crl.c +6 -2
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_pkey.c +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_pubkey.c +25 -22
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_val.c +2 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509.c +39 -4
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509a.c +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_akey.c +3 -3
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_alt.c +11 -10
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_bitst.c +3 -3
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_conf.c +25 -25
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_cpols.c +4 -6
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_enum.c +2 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_genn.c +40 -20
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_ia5.c +3 -4
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_lib.c +25 -36
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_prn.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_purp.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_skey.c +7 -6
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_utl.c +6 -6
- data/third_party/boringssl-with-bazel/src/include/openssl/aead.h +0 -3
- data/third_party/boringssl-with-bazel/src/include/openssl/arm_arch.h +3 -3
- data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +737 -551
- data/third_party/boringssl-with-bazel/src/include/openssl/asn1t.h +0 -167
- data/third_party/boringssl-with-bazel/src/include/openssl/base.h +19 -5
- data/third_party/boringssl-with-bazel/src/include/openssl/blake2.h +62 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/bytestring.h +22 -7
- data/third_party/boringssl-with-bazel/src/include/openssl/cipher.h +15 -4
- data/third_party/boringssl-with-bazel/src/include/openssl/cpu.h +22 -32
- data/third_party/boringssl-with-bazel/src/include/openssl/crypto.h +24 -4
- data/third_party/boringssl-with-bazel/src/include/openssl/dh.h +56 -26
- data/third_party/boringssl-with-bazel/src/include/openssl/digest.h +1 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ec.h +20 -2
- data/third_party/boringssl-with-bazel/src/include/openssl/ecdsa.h +19 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/err.h +3 -2
- data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +13 -40
- data/third_party/boringssl-with-bazel/src/{crypto/x509/x509_r2x.c → include/openssl/evp_errors.h} +41 -58
- data/third_party/boringssl-with-bazel/src/include/openssl/obj.h +24 -5
- data/third_party/boringssl-with-bazel/src/include/openssl/pkcs7.h +2 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/pkcs8.h +9 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/rand.h +5 -2
- data/third_party/boringssl-with-bazel/src/include/openssl/span.h +2 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +239 -37
- data/third_party/boringssl-with-bazel/src/include/openssl/tls1.h +28 -8
- data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +702 -219
- data/third_party/boringssl-with-bazel/src/include/openssl/x509v3.h +141 -36
- data/third_party/boringssl-with-bazel/src/ssl/d1_both.cc +5 -0
- data/third_party/boringssl-with-bazel/src/ssl/encrypted_client_hello.cc +444 -0
- data/third_party/boringssl-with-bazel/src/ssl/handoff.cc +244 -1
- data/third_party/boringssl-with-bazel/src/ssl/handshake.cc +47 -15
- data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +11 -20
- data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +159 -13
- data/third_party/boringssl-with-bazel/src/ssl/internal.h +253 -58
- data/third_party/boringssl-with-bazel/src/ssl/s3_both.cc +7 -1
- data/third_party/boringssl-with-bazel/src/ssl/s3_lib.cc +0 -1
- data/third_party/boringssl-with-bazel/src/ssl/ssl_asn1.cc +7 -8
- data/third_party/boringssl-with-bazel/src/ssl/ssl_cert.cc +4 -6
- data/third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc +23 -26
- data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +90 -25
- data/third_party/boringssl-with-bazel/src/ssl/ssl_session.cc +7 -8
- data/third_party/boringssl-with-bazel/src/ssl/ssl_transcript.cc +2 -2
- data/third_party/boringssl-with-bazel/src/ssl/t1_enc.cc +5 -7
- data/third_party/boringssl-with-bazel/src/ssl/t1_lib.cc +450 -104
- data/third_party/boringssl-with-bazel/src/ssl/tls13_both.cc +34 -4
- data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +2 -2
- data/third_party/boringssl-with-bazel/src/ssl/tls13_enc.cc +48 -15
- data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +232 -85
- data/third_party/boringssl-with-bazel/src/ssl/tls_method.cc +4 -2
- data/third_party/xxhash/xxhash.h +5443 -0
- metadata +174 -95
- data/src/core/ext/upb-generated/udpa/core/v1/authority.upb.h +0 -60
- data/src/core/ext/upb-generated/udpa/core/v1/collection_entry.upb.c +0 -52
- data/src/core/ext/upb-generated/udpa/core/v1/collection_entry.upb.h +0 -143
- data/src/core/ext/upb-generated/udpa/core/v1/context_params.upb.c +0 -42
- data/src/core/ext/upb-generated/udpa/core/v1/context_params.upb.h +0 -84
- data/src/core/ext/upb-generated/udpa/core/v1/resource.upb.h +0 -94
- data/src/core/ext/upb-generated/udpa/core/v1/resource_locator.upb.c +0 -54
- data/src/core/ext/upb-generated/udpa/core/v1/resource_locator.upb.h +0 -173
- data/src/core/ext/upb-generated/udpa/core/v1/resource_name.upb.c +0 -36
- data/src/core/ext/upb-generated/udpa/core/v1/resource_name.upb.h +0 -92
- data/src/core/ext/upbdefs-generated/udpa/core/v1/authority.upbdefs.c +0 -42
- data/src/core/ext/upbdefs-generated/udpa/core/v1/authority.upbdefs.h +0 -35
- data/src/core/ext/upbdefs-generated/udpa/core/v1/collection_entry.upbdefs.c +0 -62
- data/src/core/ext/upbdefs-generated/udpa/core/v1/collection_entry.upbdefs.h +0 -40
- data/src/core/ext/upbdefs-generated/udpa/core/v1/context_params.upbdefs.c +0 -45
- data/src/core/ext/upbdefs-generated/udpa/core/v1/context_params.upbdefs.h +0 -40
- data/src/core/ext/upbdefs-generated/udpa/core/v1/resource.upbdefs.c +0 -49
- data/src/core/ext/upbdefs-generated/udpa/core/v1/resource.upbdefs.h +0 -35
- data/src/core/ext/upbdefs-generated/udpa/core/v1/resource_locator.upbdefs.c +0 -68
- data/src/core/ext/upbdefs-generated/udpa/core/v1/resource_locator.upbdefs.h +0 -40
- data/src/core/ext/upbdefs-generated/udpa/core/v1/resource_name.upbdefs.c +0 -51
- data/src/core/ext/upbdefs-generated/udpa/core/v1/resource_name.upbdefs.h +0 -35
- data/src/core/lib/iomgr/iomgr_posix.h +0 -26
- data/src/core/lib/iomgr/poller/eventmanager_libuv.cc +0 -88
- data/src/core/lib/iomgr/poller/eventmanager_libuv.h +0 -88
- data/src/core/lib/security/authorization/authorization_engine.cc +0 -177
- data/src/core/lib/security/authorization/authorization_engine.h +0 -84
- data/src/core/lib/security/authorization/evaluate_args.cc +0 -148
- data/src/core/lib/security/authorization/evaluate_args.h +0 -59
- data/src/core/lib/security/authorization/mock_cel/activation.h +0 -57
- data/src/core/lib/security/authorization/mock_cel/cel_expr_builder_factory.h +0 -44
- data/src/core/lib/security/authorization/mock_cel/cel_expression.h +0 -69
- data/src/core/lib/security/authorization/mock_cel/cel_value.h +0 -97
- data/src/core/lib/security/authorization/mock_cel/evaluator_core.h +0 -67
- data/src/core/lib/security/authorization/mock_cel/flat_expr_builder.h +0 -57
- data/third_party/abseil-cpp/absl/base/internal/bits.h +0 -219
- data/third_party/abseil-cpp/absl/container/flat_hash_set.h +0 -504
- data/third_party/abseil-cpp/absl/synchronization/internal/mutex_nonprod.inc +0 -249
- data/third_party/upb/upb/json_decode.c +0 -1443
- data/third_party/upb/upb/json_decode.h +0 -23
- data/third_party/upb/upb/json_encode.c +0 -713
- data/third_party/upb/upb/json_encode.h +0 -36
@@ -206,13 +206,27 @@ extern "C" {
|
|
206
206
|
// ExtensionType value from draft-ietf-tokbind-negotiation-10
|
207
207
|
#define TLSEXT_TYPE_token_binding 24
|
208
208
|
|
209
|
-
// ExtensionType value from draft-ietf-quic-tls.
|
210
|
-
//
|
211
|
-
//
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
209
|
+
// ExtensionType value from draft-ietf-quic-tls. Drafts 00 through 32 use
|
210
|
+
// 0xffa5 which is part of the Private Use section of the registry, and it
|
211
|
+
// collides with TLS-LTS and, based on scans, something else too (though this
|
212
|
+
// hasn't been a problem in practice since it's QUIC-only). Drafts 33 onward
|
213
|
+
// use the value 57 which was officially registered with IANA.
|
214
|
+
#define TLSEXT_TYPE_quic_transport_parameters_legacy 0xffa5
|
215
|
+
#define TLSEXT_TYPE_quic_transport_parameters_standard 57
|
216
|
+
|
217
|
+
// TLSEXT_TYPE_quic_transport_parameters is an alias for
|
218
|
+
// |TLSEXT_TYPE_quic_transport_parameters_legacy|. It will switch to
|
219
|
+
// |TLSEXT_TYPE_quic_transport_parameters_standard| at a later date.
|
220
|
+
//
|
221
|
+
// Callers using |SSL_set_quic_use_legacy_codepoint| should use
|
222
|
+
// |TLSEXT_TYPE_quic_transport_parameters_legacy| or
|
223
|
+
// |TLSEXT_TYPE_quic_transport_parameters_standard| rather than this constant.
|
224
|
+
// When the default code point is switched to the standard one, this value will
|
225
|
+
// be updated and we will transition callers back to the unsuffixed constant.
|
226
|
+
#define TLSEXT_TYPE_quic_transport_parameters \
|
227
|
+
TLSEXT_TYPE_quic_transport_parameters_legacy
|
228
|
+
|
229
|
+
// ExtensionType value from RFC8879
|
216
230
|
#define TLSEXT_TYPE_cert_compression 27
|
217
231
|
|
218
232
|
// ExtensionType value from RFC4507
|
@@ -239,6 +253,12 @@ extern "C" {
|
|
239
253
|
// extension number.
|
240
254
|
#define TLSEXT_TYPE_application_settings 17513
|
241
255
|
|
256
|
+
// ExtensionType values from draft-ietf-tls-esni-09. This is not an IANA defined
|
257
|
+
// extension number.
|
258
|
+
#define TLSEXT_TYPE_encrypted_client_hello 0xfe09
|
259
|
+
#define TLSEXT_TYPE_ech_is_inner 0xda09
|
260
|
+
#define TLSEXT_TYPE_ech_outer_extensions 0xfd00
|
261
|
+
|
242
262
|
// ExtensionType value from RFC6962
|
243
263
|
#define TLSEXT_TYPE_certificate_timestamp 18
|
244
264
|
|
@@ -271,7 +291,7 @@ extern "C" {
|
|
271
291
|
#define TLSEXT_hash_sha384 5
|
272
292
|
#define TLSEXT_hash_sha512 6
|
273
293
|
|
274
|
-
// From https://
|
294
|
+
// From https://www.rfc-editor.org/rfc/rfc8879.html#section-3
|
275
295
|
#define TLSEXT_cert_compression_zlib 1
|
276
296
|
#define TLSEXT_cert_compression_brotli 2
|
277
297
|
|
@@ -115,17 +115,6 @@ DECLARE_ASN1_SET_OF(X509_ALGOR)
|
|
115
115
|
|
116
116
|
typedef STACK_OF(X509_ALGOR) X509_ALGORS;
|
117
117
|
|
118
|
-
struct X509_val_st {
|
119
|
-
ASN1_TIME *notBefore;
|
120
|
-
ASN1_TIME *notAfter;
|
121
|
-
} /* X509_VAL */;
|
122
|
-
|
123
|
-
struct X509_pubkey_st {
|
124
|
-
X509_ALGOR *algor;
|
125
|
-
ASN1_BIT_STRING *public_key;
|
126
|
-
EVP_PKEY *pkey;
|
127
|
-
};
|
128
|
-
|
129
118
|
struct X509_sig_st {
|
130
119
|
X509_ALGOR *algor;
|
131
120
|
ASN1_OCTET_STRING *digest;
|
@@ -143,7 +132,7 @@ DECLARE_ASN1_SET_OF(X509_NAME_ENTRY)
|
|
143
132
|
|
144
133
|
// we always keep X509_NAMEs in 2 forms.
|
145
134
|
struct X509_name_st {
|
146
|
-
STACK_OF(X509_NAME_ENTRY) *
|
135
|
+
STACK_OF(X509_NAME_ENTRY) *entries;
|
147
136
|
int modified; // true if 'bytes' needs to be built
|
148
137
|
BUF_MEM *bytes;
|
149
138
|
// unsigned long hash; Keep the hash around for lookups
|
@@ -164,17 +153,6 @@ typedef STACK_OF(X509_EXTENSION) X509_EXTENSIONS;
|
|
164
153
|
DEFINE_STACK_OF(X509_EXTENSION)
|
165
154
|
DECLARE_ASN1_SET_OF(X509_EXTENSION)
|
166
155
|
|
167
|
-
// a sequence of these are used
|
168
|
-
struct x509_attributes_st {
|
169
|
-
ASN1_OBJECT *object;
|
170
|
-
int single; // 0 for a set, 1 for a single item (which is wrong)
|
171
|
-
union {
|
172
|
-
char *ptr;
|
173
|
-
/* 0 */ STACK_OF(ASN1_TYPE) * set;
|
174
|
-
/* 1 */ ASN1_TYPE *single;
|
175
|
-
} value;
|
176
|
-
} /* X509_ATTRIBUTE */;
|
177
|
-
|
178
156
|
DEFINE_STACK_OF(X509_ATTRIBUTE)
|
179
157
|
DECLARE_ASN1_SET_OF(X509_ATTRIBUTE)
|
180
158
|
|
@@ -185,7 +163,7 @@ struct X509_req_info_st {
|
|
185
163
|
X509_NAME *subject;
|
186
164
|
X509_PUBKEY *pubkey;
|
187
165
|
// d=2 hl=2 l= 0 cons: cont: 00
|
188
|
-
STACK_OF(X509_ATTRIBUTE) *
|
166
|
+
STACK_OF(X509_ATTRIBUTE) *attributes; // [ 0 ]
|
189
167
|
} /* X509_REQ_INFO */;
|
190
168
|
|
191
169
|
struct X509_req_st {
|
@@ -203,9 +181,9 @@ struct x509_cinf_st {
|
|
203
181
|
X509_VAL *validity;
|
204
182
|
X509_NAME *subject;
|
205
183
|
X509_PUBKEY *key;
|
206
|
-
ASN1_BIT_STRING *issuerUID;
|
207
|
-
ASN1_BIT_STRING *subjectUID;
|
208
|
-
STACK_OF(X509_EXTENSION) *
|
184
|
+
ASN1_BIT_STRING *issuerUID; // [ 1 ] optional in v2
|
185
|
+
ASN1_BIT_STRING *subjectUID; // [ 2 ] optional in v2
|
186
|
+
STACK_OF(X509_EXTENSION) *extensions; // [ 3 ] optional in v3
|
209
187
|
ASN1_ENCODING enc;
|
210
188
|
} /* X509_CINF */;
|
211
189
|
|
@@ -215,11 +193,11 @@ struct x509_cinf_st {
|
|
215
193
|
// the end of the certificate itself
|
216
194
|
|
217
195
|
struct x509_cert_aux_st {
|
218
|
-
STACK_OF(ASN1_OBJECT) *
|
219
|
-
STACK_OF(ASN1_OBJECT) *
|
220
|
-
ASN1_UTF8STRING *alias;
|
221
|
-
ASN1_OCTET_STRING *keyid;
|
222
|
-
STACK_OF(X509_ALGOR) *
|
196
|
+
STACK_OF(ASN1_OBJECT) *trust; // trusted uses
|
197
|
+
STACK_OF(ASN1_OBJECT) *reject; // rejected uses
|
198
|
+
ASN1_UTF8STRING *alias; // "friendly name"
|
199
|
+
ASN1_OCTET_STRING *keyid; // key id of private key
|
200
|
+
STACK_OF(X509_ALGOR) *other; // other unspecified info
|
223
201
|
} /* X509_CERT_AUX */;
|
224
202
|
|
225
203
|
DECLARE_STACK_OF(DIST_POINT)
|
@@ -241,8 +219,8 @@ struct x509_st {
|
|
241
219
|
ASN1_OCTET_STRING *skid;
|
242
220
|
AUTHORITY_KEYID *akid;
|
243
221
|
X509_POLICY_CACHE *policy_cache;
|
244
|
-
STACK_OF(DIST_POINT) *
|
245
|
-
STACK_OF(GENERAL_NAME) *
|
222
|
+
STACK_OF(DIST_POINT) *crldp;
|
223
|
+
STACK_OF(GENERAL_NAME) *altname;
|
246
224
|
NAME_CONSTRAINTS *nc;
|
247
225
|
unsigned char sha1_hash[SHA_DIGEST_LENGTH];
|
248
226
|
X509_CERT_AUX *aux;
|
@@ -364,9 +342,9 @@ DEFINE_STACK_OF(X509_TRUST)
|
|
364
342
|
struct x509_revoked_st {
|
365
343
|
ASN1_INTEGER *serialNumber;
|
366
344
|
ASN1_TIME *revocationDate;
|
367
|
-
STACK_OF(X509_EXTENSION) /* optional */ *
|
345
|
+
STACK_OF(X509_EXTENSION) /* optional */ *extensions;
|
368
346
|
// Set up if indirect CRL
|
369
|
-
STACK_OF(GENERAL_NAME) *
|
347
|
+
STACK_OF(GENERAL_NAME) *issuer;
|
370
348
|
// Revocation reason
|
371
349
|
int reason;
|
372
350
|
int sequence; // load sequence
|
@@ -381,8 +359,8 @@ struct X509_crl_info_st {
|
|
381
359
|
X509_NAME *issuer;
|
382
360
|
ASN1_TIME *lastUpdate;
|
383
361
|
ASN1_TIME *nextUpdate;
|
384
|
-
STACK_OF(X509_REVOKED) *
|
385
|
-
STACK_OF(X509_EXTENSION) /* [0] */ *
|
362
|
+
STACK_OF(X509_REVOKED) *revoked;
|
363
|
+
STACK_OF(X509_EXTENSION) /* [0] */ *extensions;
|
386
364
|
ASN1_ENCODING enc;
|
387
365
|
} /* X509_CRL_INFO */;
|
388
366
|
|
@@ -405,7 +383,7 @@ struct X509_crl_st {
|
|
405
383
|
ASN1_INTEGER *crl_number;
|
406
384
|
ASN1_INTEGER *base_crl_number;
|
407
385
|
unsigned char sha1_hash[SHA_DIGEST_LENGTH];
|
408
|
-
STACK_OF(GENERAL_NAMES) *
|
386
|
+
STACK_OF(GENERAL_NAMES) *issuers;
|
409
387
|
const X509_CRL_METHOD *meth;
|
410
388
|
void *meth_data;
|
411
389
|
} /* X509_CRL */;
|
@@ -475,16 +453,34 @@ extern "C" {
|
|
475
453
|
// it is safe to call mutating functions is a little tricky due to various
|
476
454
|
// internal caches.
|
477
455
|
|
478
|
-
//
|
479
|
-
//
|
480
|
-
//
|
481
|
-
|
482
|
-
|
456
|
+
// The following constants are version numbers of X.509-related structures. Note
|
457
|
+
// APIs typically return the numerical value of X.509 versions, which are one
|
458
|
+
// less than the named version.
|
459
|
+
#define X509V1_VERSION 0
|
460
|
+
#define X509V2_VERSION 1
|
461
|
+
#define X509V3_VERSION 2
|
462
|
+
|
463
|
+
// X509_get_version returns the numerical value of |x509|'s version. Callers may
|
464
|
+
// compare the result to the |X509V*_VERSION| constants. Unknown versions are
|
465
|
+
// rejected by the parser, but a manually-created |X509| object may encode
|
466
|
+
// invalid versions. In that case, the function will return the invalid version,
|
467
|
+
// or -1 on overflow.
|
483
468
|
OPENSSL_EXPORT long X509_get_version(const X509 *x509);
|
484
469
|
|
470
|
+
// X509_set_version sets |x509|'s version to |version|, which should be one of
|
471
|
+
// the |X509V*_VERSION| constants. It returns one on success and zero on error.
|
472
|
+
//
|
473
|
+
// If unsure, use |X509V3_VERSION|.
|
474
|
+
OPENSSL_EXPORT int X509_set_version(X509 *x509, long version);
|
475
|
+
|
485
476
|
// X509_get0_serialNumber returns |x509|'s serial number.
|
486
477
|
OPENSSL_EXPORT const ASN1_INTEGER *X509_get0_serialNumber(const X509 *x509);
|
487
478
|
|
479
|
+
// X509_set_serialNumber sets |x509|'s serial number to |serial|. It returns one
|
480
|
+
// on success and zero on error.
|
481
|
+
OPENSSL_EXPORT int X509_set_serialNumber(X509 *x509,
|
482
|
+
const ASN1_INTEGER *serial);
|
483
|
+
|
488
484
|
// X509_get0_notBefore returns |x509|'s notBefore time.
|
489
485
|
OPENSSL_EXPORT const ASN1_TIME *X509_get0_notBefore(const X509 *x509);
|
490
486
|
|
@@ -523,20 +519,16 @@ OPENSSL_EXPORT int X509_set_notBefore(X509 *x509, const ASN1_TIME *tm);
|
|
523
519
|
// instead.
|
524
520
|
OPENSSL_EXPORT int X509_set_notAfter(X509 *x509, const ASN1_TIME *tm);
|
525
521
|
|
526
|
-
// X509_get0_uids sets |*out_issuer_uid|
|
527
|
-
//
|
528
|
-
//
|
522
|
+
// X509_get0_uids sets |*out_issuer_uid| to a non-owning pointer to the
|
523
|
+
// issuerUID field of |x509|, or NULL if |x509| has no issuerUID. It similarly
|
524
|
+
// outputs |x509|'s subjectUID field to |*out_subject_uid|.
|
525
|
+
//
|
526
|
+
// Callers may pass NULL to either |out_issuer_uid| or |out_subject_uid| to
|
527
|
+
// ignore the corresponding field.
|
529
528
|
OPENSSL_EXPORT void X509_get0_uids(const X509 *x509,
|
530
529
|
const ASN1_BIT_STRING **out_issuer_uid,
|
531
530
|
const ASN1_BIT_STRING **out_subject_uid);
|
532
531
|
|
533
|
-
// X509_get_cert_info returns |x509|'s TBSCertificate structure. Note this
|
534
|
-
// function is not const-correct for legacy reasons.
|
535
|
-
//
|
536
|
-
// This function is deprecated and may be removed in the future. It is not
|
537
|
-
// present in OpenSSL and constrains some improvements to the library.
|
538
|
-
OPENSSL_EXPORT X509_CINF *X509_get_cert_info(const X509 *x509);
|
539
|
-
|
540
532
|
// X509_extract_key is a legacy alias to |X509_get_pubkey|. Use
|
541
533
|
// |X509_get_pubkey| instead.
|
542
534
|
#define X509_extract_key(x) X509_get_pubkey(x)
|
@@ -550,9 +542,9 @@ OPENSSL_EXPORT X509_CINF *X509_get_cert_info(const X509 *x509);
|
|
550
542
|
// |EXFLAG_INVALID| bit.
|
551
543
|
OPENSSL_EXPORT long X509_get_pathlen(X509 *x509);
|
552
544
|
|
553
|
-
// X509_REQ_get_version returns the numerical value of |req|'s version.
|
554
|
-
//
|
555
|
-
// value, or -1 on overflow.
|
545
|
+
// X509_REQ_get_version returns the numerical value of |req|'s version. Callers
|
546
|
+
// may compare the result to |X509V*_VERSION| constants. If |req| is invalid, it
|
547
|
+
// may return another value, or -1 on overflow.
|
556
548
|
OPENSSL_EXPORT long X509_REQ_get_version(const X509_REQ *req);
|
557
549
|
|
558
550
|
// X509_REQ_get_subject_name returns |req|'s subject name. Note this function is
|
@@ -565,9 +557,9 @@ OPENSSL_EXPORT X509_NAME *X509_REQ_get_subject_name(const X509_REQ *req);
|
|
565
557
|
// X509_name_cmp is a legacy alias for |X509_NAME_cmp|.
|
566
558
|
#define X509_name_cmp(a, b) X509_NAME_cmp((a), (b))
|
567
559
|
|
568
|
-
//
|
569
|
-
//
|
570
|
-
// may return another value, or -1 on overflow.
|
560
|
+
// X509_CRL_get_version returns the numerical value of |crl|'s version. Callers
|
561
|
+
// may compare the result to |X509V*_VERSION| constants. If |crl| is invalid,
|
562
|
+
// it may return another value, or -1 on overflow.
|
571
563
|
OPENSSL_EXPORT long X509_CRL_get_version(const X509_CRL *crl);
|
572
564
|
|
573
565
|
// X509_CRL_get0_lastUpdate returns |crl|'s lastUpdate time.
|
@@ -602,32 +594,18 @@ OPENSSL_EXPORT ASN1_TIME *X509_CRL_get_nextUpdate(X509_CRL *crl);
|
|
602
594
|
// const-correct for legacy reasons.
|
603
595
|
OPENSSL_EXPORT X509_NAME *X509_CRL_get_issuer(const X509_CRL *crl);
|
604
596
|
|
605
|
-
// X509_CRL_get_REVOKED returns the list of revoked certificates in |crl
|
597
|
+
// X509_CRL_get_REVOKED returns the list of revoked certificates in |crl|, or
|
598
|
+
// NULL if |crl| omits it.
|
606
599
|
//
|
607
600
|
// TOOD(davidben): This function was originally a macro, without clear const
|
608
601
|
// semantics. It should take a const input and give const output, but the latter
|
609
602
|
// would break existing callers. For now, we match upstream.
|
610
603
|
OPENSSL_EXPORT STACK_OF(X509_REVOKED) *X509_CRL_get_REVOKED(X509_CRL *crl);
|
611
604
|
|
612
|
-
// X509_CRL_get0_extensions returns |crl|'s extension list
|
613
|
-
|
614
|
-
|
615
|
-
|
616
|
-
// X509_CINF_set_modified marks |cinf| as modified so that changes will be
|
617
|
-
// reflected in serializing the structure.
|
618
|
-
//
|
619
|
-
// This function is deprecated and may be removed in the future. It is not
|
620
|
-
// present in OpenSSL and constrains some improvements to the library.
|
621
|
-
OPENSSL_EXPORT void X509_CINF_set_modified(X509_CINF *cinf);
|
622
|
-
|
623
|
-
// X509_CINF_get_signature returns the signature algorithm in |cinf|. Note this
|
624
|
-
// isn't the signature itself, but the extra copy of the signature algorithm
|
625
|
-
// in the TBSCertificate.
|
626
|
-
//
|
627
|
-
// This function is deprecated and may be removed in the future. It is not
|
628
|
-
// present in OpenSSL and constrains some improvements to the library. Use
|
629
|
-
// |X509_get0_tbs_sigalg| instead.
|
630
|
-
OPENSSL_EXPORT const X509_ALGOR *X509_CINF_get_signature(const X509_CINF *cinf);
|
605
|
+
// X509_CRL_get0_extensions returns |crl|'s extension list, or NULL if |crl|
|
606
|
+
// omits it.
|
607
|
+
OPENSSL_EXPORT const STACK_OF(X509_EXTENSION) *X509_CRL_get0_extensions(
|
608
|
+
const X509_CRL *crl);
|
631
609
|
|
632
610
|
// X509_SIG_get0 sets |*out_alg| and |*out_digest| to non-owning pointers to
|
633
611
|
// |sig|'s algorithm and digest fields, respectively. Either |out_alg| and
|
@@ -697,9 +675,8 @@ OPENSSL_EXPORT NETSCAPE_SPKI *NETSCAPE_SPKI_b64_decode(const char *str,
|
|
697
675
|
OPENSSL_EXPORT char *NETSCAPE_SPKI_b64_encode(NETSCAPE_SPKI *spki);
|
698
676
|
|
699
677
|
// NETSCAPE_SPKI_get_pubkey decodes and returns the public key in |spki| as an
|
700
|
-
// |EVP_PKEY|, or NULL on error. The
|
701
|
-
//
|
702
|
-
// |EVP_PKEY_up_ref| to extend the lifetime.
|
678
|
+
// |EVP_PKEY|, or NULL on error. The caller takes ownership of the resulting
|
679
|
+
// pointer and must call |EVP_PKEY_free| when done.
|
703
680
|
OPENSSL_EXPORT EVP_PKEY *NETSCAPE_SPKI_get_pubkey(NETSCAPE_SPKI *spki);
|
704
681
|
|
705
682
|
// NETSCAPE_SPKI_set_pubkey sets |spki|'s public key to |pkey|. It returns one
|
@@ -718,25 +695,95 @@ OPENSSL_EXPORT int X509_signature_dump(BIO *bio, const ASN1_STRING *sig,
|
|
718
695
|
OPENSSL_EXPORT int X509_signature_print(BIO *bio, const X509_ALGOR *alg,
|
719
696
|
const ASN1_STRING *sig);
|
720
697
|
|
721
|
-
|
722
|
-
|
723
|
-
|
724
|
-
|
725
|
-
OPENSSL_EXPORT int
|
726
|
-
|
727
|
-
|
698
|
+
// X509_sign signs |x509| with |pkey| and replaces the signature algorithm and
|
699
|
+
// signature fields. It returns one on success and zero on error. This function
|
700
|
+
// uses digest algorithm |md|, or |pkey|'s default if NULL. Other signing
|
701
|
+
// parameters use |pkey|'s defaults. To customize them, use |X509_sign_ctx|.
|
702
|
+
OPENSSL_EXPORT int X509_sign(X509 *x509, EVP_PKEY *pkey, const EVP_MD *md);
|
703
|
+
|
704
|
+
// X509_sign_ctx signs |x509| with |ctx| and replaces the signature algorithm
|
705
|
+
// and signature fields. It returns one on success and zero on error. The
|
706
|
+
// signature algorithm and parameters come from |ctx|, which must have been
|
707
|
+
// initialized with |EVP_DigestSignInit|. The caller should configure the
|
708
|
+
// corresponding |EVP_PKEY_CTX| before calling this function.
|
709
|
+
OPENSSL_EXPORT int X509_sign_ctx(X509 *x509, EVP_MD_CTX *ctx);
|
710
|
+
|
711
|
+
// X509_REQ_sign signs |req| with |pkey| and replaces the signature algorithm
|
712
|
+
// and signature fields. It returns one on success and zero on error. This
|
713
|
+
// function uses digest algorithm |md|, or |pkey|'s default if NULL. Other
|
714
|
+
// signing parameters use |pkey|'s defaults. To customize them, use
|
715
|
+
// |X509_REQ_sign_ctx|.
|
716
|
+
OPENSSL_EXPORT int X509_REQ_sign(X509_REQ *req, EVP_PKEY *pkey,
|
717
|
+
const EVP_MD *md);
|
718
|
+
|
719
|
+
// X509_REQ_sign_ctx signs |req| with |ctx| and replaces the signature algorithm
|
720
|
+
// and signature fields. It returns one on success and zero on error. The
|
721
|
+
// signature algorithm and parameters come from |ctx|, which must have been
|
722
|
+
// initialized with |EVP_DigestSignInit|. The caller should configure the
|
723
|
+
// corresponding |EVP_PKEY_CTX| before calling this function.
|
724
|
+
OPENSSL_EXPORT int X509_REQ_sign_ctx(X509_REQ *req, EVP_MD_CTX *ctx);
|
725
|
+
|
726
|
+
// X509_CRL_sign signs |crl| with |pkey| and replaces the signature algorithm
|
727
|
+
// and signature fields. It returns one on success and zero on error. This
|
728
|
+
// function uses digest algorithm |md|, or |pkey|'s default if NULL. Other
|
729
|
+
// signing parameters use |pkey|'s defaults. To customize them, use
|
730
|
+
// |X509_CRL_sign_ctx|.
|
731
|
+
OPENSSL_EXPORT int X509_CRL_sign(X509_CRL *crl, EVP_PKEY *pkey,
|
732
|
+
const EVP_MD *md);
|
733
|
+
|
734
|
+
// X509_CRL_sign_ctx signs |crl| with |ctx| and replaces the signature algorithm
|
735
|
+
// and signature fields. It returns one on success and zero on error. The
|
736
|
+
// signature algorithm and parameters come from |ctx|, which must have been
|
737
|
+
// initialized with |EVP_DigestSignInit|. The caller should configure the
|
738
|
+
// corresponding |EVP_PKEY_CTX| before calling this function.
|
739
|
+
OPENSSL_EXPORT int X509_CRL_sign_ctx(X509_CRL *crl, EVP_MD_CTX *ctx);
|
740
|
+
|
741
|
+
// NETSCAPE_SPKI_sign signs |spki| with |pkey| and replaces the signature
|
742
|
+
// algorithm and signature fields. It returns one on success and zero on error.
|
743
|
+
// This function uses digest algorithm |md|, or |pkey|'s default if NULL. Other
|
744
|
+
// signing parameters use |pkey|'s defaults.
|
745
|
+
OPENSSL_EXPORT int NETSCAPE_SPKI_sign(NETSCAPE_SPKI *spki, EVP_PKEY *pkey,
|
728
746
|
const EVP_MD *md);
|
729
747
|
|
730
|
-
|
731
|
-
|
732
|
-
|
733
|
-
|
734
|
-
|
735
|
-
|
736
|
-
|
737
|
-
|
738
|
-
|
739
|
-
|
748
|
+
// X509_pubkey_digest hashes the DER encoding of |x509|'s subjectPublicKeyInfo
|
749
|
+
// field with |md| and writes the result to |out|. |EVP_MD_CTX_size| bytes are
|
750
|
+
// written, which is at most |EVP_MAX_MD_SIZE|. If |out_len| is not NULL,
|
751
|
+
// |*out_len| is set to the number of bytes written. This function returns one
|
752
|
+
// on success and zero on error.
|
753
|
+
OPENSSL_EXPORT int X509_pubkey_digest(const X509 *x509, const EVP_MD *md,
|
754
|
+
uint8_t *out, unsigned *out_len);
|
755
|
+
|
756
|
+
// X509_digest hashes |x509|'s DER encoding with |md| and writes the result to
|
757
|
+
// |out|. |EVP_MD_CTX_size| bytes are written, which is at most
|
758
|
+
// |EVP_MAX_MD_SIZE|. If |out_len| is not NULL, |*out_len| is set to the number
|
759
|
+
// of bytes written. This function returns one on success and zero on error.
|
760
|
+
// Note this digest covers the entire certificate, not just the signed portion.
|
761
|
+
OPENSSL_EXPORT int X509_digest(const X509 *x509, const EVP_MD *md, uint8_t *out,
|
762
|
+
unsigned *out_len);
|
763
|
+
|
764
|
+
// X509_CRL_digest hashes |crl|'s DER encoding with |md| and writes the result
|
765
|
+
// to |out|. |EVP_MD_CTX_size| bytes are written, which is at most
|
766
|
+
// |EVP_MAX_MD_SIZE|. If |out_len| is not NULL, |*out_len| is set to the number
|
767
|
+
// of bytes written. This function returns one on success and zero on error.
|
768
|
+
// Note this digest covers the entire CRL, not just the signed portion.
|
769
|
+
OPENSSL_EXPORT int X509_CRL_digest(const X509_CRL *crl, const EVP_MD *md,
|
770
|
+
uint8_t *out, unsigned *out_len);
|
771
|
+
|
772
|
+
// X509_REQ_digest hashes |req|'s DER encoding with |md| and writes the result
|
773
|
+
// to |out|. |EVP_MD_CTX_size| bytes are written, which is at most
|
774
|
+
// |EVP_MAX_MD_SIZE|. If |out_len| is not NULL, |*out_len| is set to the number
|
775
|
+
// of bytes written. This function returns one on success and zero on error.
|
776
|
+
// Note this digest covers the entire certificate request, not just the signed
|
777
|
+
// portion.
|
778
|
+
OPENSSL_EXPORT int X509_REQ_digest(const X509_REQ *req, const EVP_MD *md,
|
779
|
+
uint8_t *out, unsigned *out_len);
|
780
|
+
|
781
|
+
// X509_NAME_digest hashes |name|'s DER encoding with |md| and writes the result
|
782
|
+
// to |out|. |EVP_MD_CTX_size| bytes are written, which is at most
|
783
|
+
// |EVP_MAX_MD_SIZE|. If |out_len| is not NULL, |*out_len| is set to the number
|
784
|
+
// of bytes written. This function returns one on success and zero on error.
|
785
|
+
OPENSSL_EXPORT int X509_NAME_digest(const X509_NAME *name, const EVP_MD *md,
|
786
|
+
uint8_t *out, unsigned *out_len);
|
740
787
|
|
741
788
|
// X509_parse_from_buffer parses an X.509 structure from |buf| and returns a
|
742
789
|
// fresh X509 or NULL on error. There must not be any trailing data in |buf|.
|
@@ -823,12 +870,54 @@ OPENSSL_EXPORT X509_CRL *X509_CRL_dup(X509_CRL *crl);
|
|
823
870
|
OPENSSL_EXPORT X509_REVOKED *X509_REVOKED_dup(X509_REVOKED *rev);
|
824
871
|
OPENSSL_EXPORT X509_REQ *X509_REQ_dup(X509_REQ *req);
|
825
872
|
OPENSSL_EXPORT X509_ALGOR *X509_ALGOR_dup(X509_ALGOR *xn);
|
826
|
-
|
827
|
-
|
828
|
-
|
829
|
-
|
830
|
-
|
873
|
+
|
874
|
+
// X509_ALGOR_set0 sets |alg| to an AlgorithmIdentifier with algorithm |obj| and
|
875
|
+
// parameter determined by |param_type| and |param_value|. It returns one on
|
876
|
+
// success and zero on error. This function takes ownership of |obj| and
|
877
|
+
// |param_value| on success.
|
878
|
+
//
|
879
|
+
// If |param_type| is |V_ASN1_UNDEF|, the parameter is omitted. If |param_type|
|
880
|
+
// is zero, the parameter is left unchanged. Otherwise, |param_type| and
|
881
|
+
// |param_value| are interpreted as in |ASN1_TYPE_set|.
|
882
|
+
//
|
883
|
+
// Note omitting the parameter (|V_ASN1_UNDEF|) and encoding an explicit NULL
|
884
|
+
// value (|V_ASN1_NULL|) are different. Some algorithms require one and some the
|
885
|
+
// other. Consult the relevant specification before calling this function. The
|
886
|
+
// correct parameter for an RSASSA-PKCS1-v1_5 signature is |V_ASN1_NULL|. The
|
887
|
+
// correct one for an ECDSA or Ed25519 signature is |V_ASN1_UNDEF|.
|
888
|
+
OPENSSL_EXPORT int X509_ALGOR_set0(X509_ALGOR *alg, ASN1_OBJECT *obj,
|
889
|
+
int param_type, void *param_value);
|
890
|
+
|
891
|
+
// X509_ALGOR_get0 sets |*out_obj| to the |alg|'s algorithm. If |alg|'s
|
892
|
+
// parameter is omitted, it sets |*out_param_type| and |*out_param_value| to
|
893
|
+
// |V_ASN1_UNDEF| and NULL. Otherwise, it sets |*out_param_type| and
|
894
|
+
// |*out_param_value| to the parameter, using the same representation as
|
895
|
+
// |ASN1_TYPE_set0|. See |ASN1_TYPE_set0| and |ASN1_TYPE| for details.
|
896
|
+
//
|
897
|
+
// Callers that require the parameter in serialized form should, after checking
|
898
|
+
// for |V_ASN1_UNDEF|, use |ASN1_TYPE_set1| and |d2i_ASN1_TYPE|, rather than
|
899
|
+
// inspecting |*out_param_value|.
|
900
|
+
//
|
901
|
+
// Each of |out_obj|, |out_param_type|, and |out_param_value| may be NULL to
|
902
|
+
// ignore the output. If |out_param_type| is NULL, |out_param_value| is ignored.
|
903
|
+
//
|
904
|
+
// WARNING: If |*out_param_type| is set to |V_ASN1_UNDEF|, OpenSSL and older
|
905
|
+
// revisions of BoringSSL leave |*out_param_value| unset rather than setting it
|
906
|
+
// to NULL. Callers that support both OpenSSL and BoringSSL should not assume
|
907
|
+
// |*out_param_value| is uniformly initialized.
|
908
|
+
OPENSSL_EXPORT void X509_ALGOR_get0(const ASN1_OBJECT **out_obj,
|
909
|
+
int *out_param_type,
|
910
|
+
const void **out_param_value,
|
911
|
+
const X509_ALGOR *alg);
|
912
|
+
|
913
|
+
// X509_ALGOR_set_md sets |alg| to the hash function |md|. Note this
|
914
|
+
// AlgorithmIdentifier represents the hash function itself, not a signature
|
915
|
+
// algorithm that uses |md|.
|
831
916
|
OPENSSL_EXPORT void X509_ALGOR_set_md(X509_ALGOR *alg, const EVP_MD *md);
|
917
|
+
|
918
|
+
// X509_ALGOR_cmp returns zero if |a| and |b| are equal, and some non-zero value
|
919
|
+
// otherwise. Note this function can only be used for equality checks, not an
|
920
|
+
// ordering.
|
832
921
|
OPENSSL_EXPORT int X509_ALGOR_cmp(const X509_ALGOR *a, const X509_ALGOR *b);
|
833
922
|
|
834
923
|
OPENSSL_EXPORT X509_NAME *X509_NAME_dup(X509_NAME *xn);
|
@@ -854,7 +943,6 @@ OPENSSL_EXPORT const char *X509_get_default_private_dir(void);
|
|
854
943
|
|
855
944
|
OPENSSL_EXPORT X509_REQ *X509_to_X509_REQ(X509 *x, EVP_PKEY *pkey,
|
856
945
|
const EVP_MD *md);
|
857
|
-
OPENSSL_EXPORT X509 *X509_REQ_to_X509(X509_REQ *r, int days, EVP_PKEY *pkey);
|
858
946
|
|
859
947
|
DECLARE_ASN1_ENCODE_FUNCTIONS(X509_ALGORS, X509_ALGORS, X509_ALGORS)
|
860
948
|
DECLARE_ASN1_FUNCTIONS(X509_VAL)
|
@@ -869,7 +957,12 @@ DECLARE_ASN1_FUNCTIONS(X509_REQ_INFO)
|
|
869
957
|
DECLARE_ASN1_FUNCTIONS(X509_REQ)
|
870
958
|
|
871
959
|
DECLARE_ASN1_FUNCTIONS(X509_ATTRIBUTE)
|
872
|
-
|
960
|
+
|
961
|
+
// X509_ATTRIBUTE_create returns a newly-allocated |X509_ATTRIBUTE|, or NULL on
|
962
|
+
// error. The attribute has type |nid| and contains a single value determined by
|
963
|
+
// |attrtype| and |value|, which are interpreted as in |ASN1_TYPE_set|. Note
|
964
|
+
// this function takes ownership of |value|.
|
965
|
+
OPENSSL_EXPORT X509_ATTRIBUTE *X509_ATTRIBUTE_create(int nid, int attrtype,
|
873
966
|
void *value);
|
874
967
|
|
875
968
|
DECLARE_ASN1_FUNCTIONS(X509_EXTENSION)
|
@@ -886,8 +979,8 @@ DECLARE_ASN1_FUNCTIONS(X509_CINF)
|
|
886
979
|
DECLARE_ASN1_FUNCTIONS(X509)
|
887
980
|
DECLARE_ASN1_FUNCTIONS(X509_CERT_AUX)
|
888
981
|
|
889
|
-
// X509_up_ref adds one to the reference count of |
|
890
|
-
OPENSSL_EXPORT int X509_up_ref(X509 *
|
982
|
+
// X509_up_ref adds one to the reference count of |x509| and returns one.
|
983
|
+
OPENSSL_EXPORT int X509_up_ref(X509 *x509);
|
891
984
|
|
892
985
|
OPENSSL_EXPORT int X509_get_ex_new_index(long argl, void *argp,
|
893
986
|
CRYPTO_EX_unused *unused,
|
@@ -899,14 +992,71 @@ OPENSSL_EXPORT int i2d_X509_AUX(X509 *a, unsigned char **pp);
|
|
899
992
|
OPENSSL_EXPORT X509 *d2i_X509_AUX(X509 **a, const unsigned char **pp,
|
900
993
|
long length);
|
901
994
|
|
902
|
-
|
903
|
-
|
904
|
-
|
905
|
-
|
906
|
-
|
907
|
-
|
908
|
-
|
909
|
-
|
995
|
+
// i2d_re_X509_tbs serializes the TBSCertificate portion of |x509|. If |outp| is
|
996
|
+
// NULL, nothing is written. Otherwise, if |*outp| is not NULL, the result is
|
997
|
+
// written to |*outp|, which must have enough space available, and |*outp| is
|
998
|
+
// advanced just past the output. If |outp| is non-NULL and |*outp| is NULL, it
|
999
|
+
// sets |*outp| to a newly-allocated buffer containing the result. The caller is
|
1000
|
+
// responsible for releasing the buffer with |OPENSSL_free|. In all cases, this
|
1001
|
+
// function returns the number of bytes in the result, whether written or not,
|
1002
|
+
// or a negative value on error.
|
1003
|
+
//
|
1004
|
+
// This function re-encodes the TBSCertificate and may not reflect |x509|'s
|
1005
|
+
// original encoding. It may be used to manually generate a signature for a new
|
1006
|
+
// certificate. To verify certificates, use |i2d_X509_tbs| instead.
|
1007
|
+
OPENSSL_EXPORT int i2d_re_X509_tbs(X509 *x509, unsigned char **outp);
|
1008
|
+
|
1009
|
+
// i2d_X509_tbs serializes the TBSCertificate portion of |x509|. If |outp| is
|
1010
|
+
// NULL, nothing is written. Otherwise, if |*outp| is not NULL, the result is
|
1011
|
+
// written to |*outp|, which must have enough space available, and |*outp| is
|
1012
|
+
// advanced just past the output. If |outp| is non-NULL and |*outp| is NULL, it
|
1013
|
+
// sets |*outp| to a newly-allocated buffer containing the result. The caller is
|
1014
|
+
// responsible for releasing the buffer with |OPENSSL_free|. In all cases, this
|
1015
|
+
// function returns the number of bytes in the result, whether written or not,
|
1016
|
+
// or a negative value on error.
|
1017
|
+
//
|
1018
|
+
// This function preserves the original encoding of the TBSCertificate and may
|
1019
|
+
// not reflect modifications made to |x509|. It may be used to manually verify
|
1020
|
+
// the signature of an existing certificate. To generate certificates, use
|
1021
|
+
// |i2d_re_X509_tbs| instead.
|
1022
|
+
OPENSSL_EXPORT int i2d_X509_tbs(X509 *x509, unsigned char **outp);
|
1023
|
+
|
1024
|
+
// X509_set1_signature_algo sets |x509|'s signature algorithm to |algo| and
|
1025
|
+
// returns one on success or zero on error. It updates both the signature field
|
1026
|
+
// of the TBSCertificate structure, and the signatureAlgorithm field of the
|
1027
|
+
// Certificate.
|
1028
|
+
OPENSSL_EXPORT int X509_set1_signature_algo(X509 *x509, const X509_ALGOR *algo);
|
1029
|
+
|
1030
|
+
// X509_set1_signature_value sets |x509|'s signature to a copy of the |sig_len|
|
1031
|
+
// bytes pointed by |sig|. It returns one on success and zero on error.
|
1032
|
+
//
|
1033
|
+
// Due to a specification error, X.509 certificates store signatures in ASN.1
|
1034
|
+
// BIT STRINGs, but signature algorithms return byte strings rather than bit
|
1035
|
+
// strings. This function creates a BIT STRING containing a whole number of
|
1036
|
+
// bytes, with the bit order matching the DER encoding. This matches the
|
1037
|
+
// encoding used by all X.509 signature algorithms.
|
1038
|
+
OPENSSL_EXPORT int X509_set1_signature_value(X509 *x509, const uint8_t *sig,
|
1039
|
+
size_t sig_len);
|
1040
|
+
|
1041
|
+
// X509_get0_signature sets |*out_sig| and |*out_alg| to the signature and
|
1042
|
+
// signature algorithm of |x509|, respectively. Either output pointer may be
|
1043
|
+
// NULL to ignore the value.
|
1044
|
+
//
|
1045
|
+
// This function outputs the outer signature algorithm. For the one in the
|
1046
|
+
// TBSCertificate, see |X509_get0_tbs_sigalg|. Certificates with mismatched
|
1047
|
+
// signature algorithms will successfully parse, but they will be rejected when
|
1048
|
+
// verifying.
|
1049
|
+
OPENSSL_EXPORT void X509_get0_signature(const ASN1_BIT_STRING **out_sig,
|
1050
|
+
const X509_ALGOR **out_alg,
|
1051
|
+
const X509 *x509);
|
1052
|
+
|
1053
|
+
// X509_get_signature_nid returns the NID corresponding to |x509|'s signature
|
1054
|
+
// algorithm, or |NID_undef| if the signature algorithm does not correspond to
|
1055
|
+
// a known NID.
|
1056
|
+
OPENSSL_EXPORT int X509_get_signature_nid(const X509 *x509);
|
1057
|
+
|
1058
|
+
OPENSSL_EXPORT int X509_alias_set1(X509 *x, const unsigned char *name, int len);
|
1059
|
+
OPENSSL_EXPORT int X509_keyid_set1(X509 *x, const unsigned char *id, int len);
|
910
1060
|
OPENSSL_EXPORT unsigned char *X509_alias_get0(X509 *x, int *len);
|
911
1061
|
OPENSSL_EXPORT unsigned char *X509_keyid_get0(X509 *x, int *len);
|
912
1062
|
OPENSSL_EXPORT int (*X509_TRUST_set_default(int (*trust)(int, X509 *,
|
@@ -958,82 +1108,275 @@ OPENSSL_EXPORT int ASN1_item_sign_ctx(const ASN1_ITEM *it, X509_ALGOR *algor1,
|
|
958
1108
|
ASN1_BIT_STRING *signature, void *asn,
|
959
1109
|
EVP_MD_CTX *ctx);
|
960
1110
|
|
961
|
-
|
962
|
-
|
963
|
-
OPENSSL_EXPORT ASN1_INTEGER *X509_get_serialNumber(X509 *
|
964
|
-
|
965
|
-
|
966
|
-
|
967
|
-
OPENSSL_EXPORT
|
968
|
-
|
969
|
-
|
970
|
-
OPENSSL_EXPORT
|
971
|
-
|
972
|
-
|
973
|
-
|
974
|
-
|
975
|
-
|
1111
|
+
// X509_get_serialNumber returns a mutable pointer to |x509|'s serial number.
|
1112
|
+
// Prefer |X509_get0_serialNumber|.
|
1113
|
+
OPENSSL_EXPORT ASN1_INTEGER *X509_get_serialNumber(X509 *x509);
|
1114
|
+
|
1115
|
+
// X509_set_issuer_name sets |x509|'s issuer to a copy of |name|. It returns one
|
1116
|
+
// on success and zero on error.
|
1117
|
+
OPENSSL_EXPORT int X509_set_issuer_name(X509 *x509, X509_NAME *name);
|
1118
|
+
|
1119
|
+
// X509_get_issuer_name returns |x509|'s issuer.
|
1120
|
+
OPENSSL_EXPORT X509_NAME *X509_get_issuer_name(const X509 *x509);
|
1121
|
+
|
1122
|
+
// X509_set_subject_name sets |x509|'s subject to a copy of |name|. It returns
|
1123
|
+
// one on success and zero on error.
|
1124
|
+
OPENSSL_EXPORT int X509_set_subject_name(X509 *x509, X509_NAME *name);
|
1125
|
+
|
1126
|
+
// X509_get_issuer_name returns |x509|'s subject.
|
1127
|
+
OPENSSL_EXPORT X509_NAME *X509_get_subject_name(const X509 *x509);
|
1128
|
+
|
1129
|
+
// X509_set_pubkey sets |x509|'s public key to |pkey|. It returns one on success
|
1130
|
+
// and zero on error. This function does not take ownership of |pkey| and
|
1131
|
+
// internally copies and updates reference counts as needed.
|
1132
|
+
OPENSSL_EXPORT int X509_set_pubkey(X509 *x509, EVP_PKEY *pkey);
|
1133
|
+
|
1134
|
+
// X509_get_pubkey returns |x509|'s public key as an |EVP_PKEY|, or NULL if the
|
1135
|
+
// public key was unsupported or could not be decoded. This function returns a
|
1136
|
+
// reference to the |EVP_PKEY|. The caller must release the result with
|
1137
|
+
// |EVP_PKEY_free| when done.
|
1138
|
+
OPENSSL_EXPORT EVP_PKEY *X509_get_pubkey(X509 *x509);
|
1139
|
+
|
1140
|
+
// X509_get0_pubkey_bitstr returns the BIT STRING portion of |x509|'s public
|
1141
|
+
// key. Note this does not contain the AlgorithmIdentifier portion.
|
1142
|
+
//
|
1143
|
+
// WARNING: This function returns a non-const pointer for OpenSSL compatibility,
|
1144
|
+
// but the caller must not modify the resulting object. Doing so will break
|
1145
|
+
// internal invariants in |x509|.
|
1146
|
+
OPENSSL_EXPORT ASN1_BIT_STRING *X509_get0_pubkey_bitstr(const X509 *x509);
|
1147
|
+
|
1148
|
+
// X509_get0_extensions returns |x509|'s extension list, or NULL if |x509| omits
|
1149
|
+
// it.
|
1150
|
+
OPENSSL_EXPORT const STACK_OF(X509_EXTENSION) *X509_get0_extensions(
|
1151
|
+
const X509 *x509);
|
1152
|
+
|
1153
|
+
// X509_get0_tbs_sigalg returns the signature algorithm in |x509|'s
|
1154
|
+
// TBSCertificate. For the outer signature algorithm, see |X509_get0_signature|.
|
1155
|
+
//
|
1156
|
+
// Certificates with mismatched signature algorithms will successfully parse,
|
1157
|
+
// but they will be rejected when verifying.
|
1158
|
+
OPENSSL_EXPORT const X509_ALGOR *X509_get0_tbs_sigalg(const X509 *x509);
|
1159
|
+
|
1160
|
+
// X509_REQ_set_version sets |req|'s version to |version|, which should be
|
1161
|
+
// |X509V1_VERSION|. It returns one on success and zero on error.
|
1162
|
+
//
|
1163
|
+
// Note no versions other than |X509V1_VERSION| are defined for CSRs.
|
1164
|
+
OPENSSL_EXPORT int X509_REQ_set_version(X509_REQ *req, long version);
|
1165
|
+
|
1166
|
+
// X509_REQ_set_subject_name sets |req|'s subject to a copy of |name|. It
|
1167
|
+
// returns one on success and zero on error.
|
976
1168
|
OPENSSL_EXPORT int X509_REQ_set_subject_name(X509_REQ *req, X509_NAME *name);
|
1169
|
+
|
1170
|
+
// X509_REQ_get0_signature sets |*out_sig| and |*out_alg| to the signature and
|
1171
|
+
// signature algorithm of |req|, respectively. Either output pointer may be NULL
|
1172
|
+
// to ignore the value.
|
977
1173
|
OPENSSL_EXPORT void X509_REQ_get0_signature(const X509_REQ *req,
|
978
|
-
const ASN1_BIT_STRING **
|
979
|
-
const X509_ALGOR **
|
1174
|
+
const ASN1_BIT_STRING **out_sig,
|
1175
|
+
const X509_ALGOR **out_alg);
|
1176
|
+
|
1177
|
+
// X509_REQ_get_signature_nid returns the NID corresponding to |req|'s signature
|
1178
|
+
// algorithm, or |NID_undef| if the signature algorithm does not correspond to
|
1179
|
+
// a known NID.
|
980
1180
|
OPENSSL_EXPORT int X509_REQ_get_signature_nid(const X509_REQ *req);
|
981
|
-
|
982
|
-
|
1181
|
+
|
1182
|
+
// i2d_re_X509_REQ_tbs serializes the CertificationRequestInfo (see RFC2986)
|
1183
|
+
// portion of |req|. If |outp| is NULL, nothing is written. Otherwise, if
|
1184
|
+
// |*outp| is not NULL, the result is written to |*outp|, which must have enough
|
1185
|
+
// space available, and |*outp| is advanced just past the output. If |outp| is
|
1186
|
+
// non-NULL and |*outp| is NULL, it sets |*outp| to a newly-allocated buffer
|
1187
|
+
// containing the result. The caller is responsible for releasing the buffer
|
1188
|
+
// with |OPENSSL_free|. In all cases, this function returns the number of bytes
|
1189
|
+
// in the result, whether written or not, or a negative value on error.
|
1190
|
+
//
|
1191
|
+
// This function re-encodes the CertificationRequestInfo and may not reflect
|
1192
|
+
// |req|'s original encoding. It may be used to manually generate a signature
|
1193
|
+
// for a new certificate request.
|
1194
|
+
OPENSSL_EXPORT int i2d_re_X509_REQ_tbs(X509_REQ *req, uint8_t **outp);
|
1195
|
+
|
1196
|
+
// X509_REQ_set_pubkey sets |req|'s public key to |pkey|. It returns one on
|
1197
|
+
// success and zero on error. This function does not take ownership of |pkey|
|
1198
|
+
// and internally copies and updates reference counts as needed.
|
1199
|
+
OPENSSL_EXPORT int X509_REQ_set_pubkey(X509_REQ *req, EVP_PKEY *pkey);
|
1200
|
+
|
1201
|
+
// X509_REQ_get_pubkey returns |req|'s public key as an |EVP_PKEY|, or NULL if
|
1202
|
+
// the public key was unsupported or could not be decoded. This function returns
|
1203
|
+
// a reference to the |EVP_PKEY|. The caller must release the result with
|
1204
|
+
// |EVP_PKEY_free| when done.
|
983
1205
|
OPENSSL_EXPORT EVP_PKEY *X509_REQ_get_pubkey(X509_REQ *req);
|
1206
|
+
|
1207
|
+
// X509_REQ_extension_nid returns one if |nid| is a supported CSR attribute type
|
1208
|
+
// for carrying extensions and zero otherwise. The supported types are
|
1209
|
+
// |NID_ext_req| (pkcs-9-at-extensionRequest from RFC2985) and |NID_ms_ext_req|
|
1210
|
+
// (a Microsoft szOID_CERT_EXTENSIONS variant).
|
984
1211
|
OPENSSL_EXPORT int X509_REQ_extension_nid(int nid);
|
985
|
-
|
986
|
-
|
987
|
-
|
988
|
-
|
989
|
-
|
990
|
-
|
991
|
-
|
992
|
-
OPENSSL_EXPORT
|
993
|
-
|
1212
|
+
|
1213
|
+
// X509_REQ_get_extensions decodes the list of requested extensions in |req| and
|
1214
|
+
// returns a newly-allocated |STACK_OF(X509_EXTENSION)| containing the result.
|
1215
|
+
// It returns NULL on error, or if |req| did not request extensions.
|
1216
|
+
//
|
1217
|
+
// This function supports both pkcs-9-at-extensionRequest from RFC2985 and the
|
1218
|
+
// Microsoft szOID_CERT_EXTENSIONS variant.
|
1219
|
+
OPENSSL_EXPORT STACK_OF(X509_EXTENSION) *X509_REQ_get_extensions(X509_REQ *req);
|
1220
|
+
|
1221
|
+
// X509_REQ_add_extensions_nid adds an attribute to |req| of type |nid|, to
|
1222
|
+
// request the certificate extensions in |exts|. It returns one on success and
|
1223
|
+
// zero on error. |nid| should be |NID_ext_req| or |NID_ms_ext_req|.
|
1224
|
+
OPENSSL_EXPORT int X509_REQ_add_extensions_nid(
|
1225
|
+
X509_REQ *req, const STACK_OF(X509_EXTENSION) *exts, int nid);
|
1226
|
+
|
1227
|
+
// X509_REQ_add_extensions behaves like |X509_REQ_add_extensions_nid|, using the
|
1228
|
+
// standard |NID_ext_req| for the attribute type.
|
1229
|
+
OPENSSL_EXPORT int X509_REQ_add_extensions(
|
1230
|
+
X509_REQ *req, const STACK_OF(X509_EXTENSION) *exts);
|
1231
|
+
|
1232
|
+
// X509_REQ_get_attr_count returns the number of attributes in |req|.
|
994
1233
|
OPENSSL_EXPORT int X509_REQ_get_attr_count(const X509_REQ *req);
|
1234
|
+
|
1235
|
+
// X509_REQ_get_attr_by_NID returns the index of the attribute in |req| of type
|
1236
|
+
// |nid|, or a negative number if not found. If found, callers can use
|
1237
|
+
// |X509_REQ_get_attr| to look up the attribute by index.
|
1238
|
+
//
|
1239
|
+
// If |lastpos| is non-negative, it begins searching at |lastpos| + 1. Callers
|
1240
|
+
// can thus loop over all matching attributes by first passing -1 and then
|
1241
|
+
// passing the previously-returned value until no match is returned.
|
995
1242
|
OPENSSL_EXPORT int X509_REQ_get_attr_by_NID(const X509_REQ *req, int nid,
|
996
1243
|
int lastpos);
|
1244
|
+
|
1245
|
+
// X509_REQ_get_attr_by_OBJ behaves like |X509_REQ_get_attr_by_NID| but looks
|
1246
|
+
// for attributes of type |obj|.
|
997
1247
|
OPENSSL_EXPORT int X509_REQ_get_attr_by_OBJ(const X509_REQ *req,
|
998
|
-
ASN1_OBJECT *obj,
|
1248
|
+
const ASN1_OBJECT *obj,
|
1249
|
+
int lastpos);
|
1250
|
+
|
1251
|
+
// X509_REQ_get_attr returns the attribute at index |loc| in |req|, or NULL if
|
1252
|
+
// out of bounds.
|
999
1253
|
OPENSSL_EXPORT X509_ATTRIBUTE *X509_REQ_get_attr(const X509_REQ *req, int loc);
|
1254
|
+
|
1255
|
+
// X509_REQ_delete_attr removes the attribute at index |loc| in |req|. It
|
1256
|
+
// returns the removed attribute to the caller, or NULL if |loc| was out of
|
1257
|
+
// bounds. If non-NULL, the caller must release the result with
|
1258
|
+
// |X509_ATTRIBUTE_free| when done. It is also safe, but not necessary, to call
|
1259
|
+
// |X509_ATTRIBUTE_free| if the result is NULL.
|
1000
1260
|
OPENSSL_EXPORT X509_ATTRIBUTE *X509_REQ_delete_attr(X509_REQ *req, int loc);
|
1261
|
+
|
1262
|
+
// X509_REQ_add1_attr appends a copy of |attr| to |req|'s list of attributes. It
|
1263
|
+
// returns one on success and zero on error.
|
1264
|
+
//
|
1265
|
+
// TODO(https://crbug.com/boringssl/407): |attr| should be const.
|
1001
1266
|
OPENSSL_EXPORT int X509_REQ_add1_attr(X509_REQ *req, X509_ATTRIBUTE *attr);
|
1267
|
+
|
1268
|
+
// X509_REQ_add1_attr_by_OBJ appends a new attribute to |req| with type |obj|.
|
1269
|
+
// It returns one on success and zero on error. The value is determined by
|
1270
|
+
// |X509_ATTRIBUTE_set1_data|.
|
1271
|
+
//
|
1272
|
+
// WARNING: The interpretation of |attrtype|, |data|, and |len| is complex and
|
1273
|
+
// error-prone. See |X509_ATTRIBUTE_set1_data| for details.
|
1002
1274
|
OPENSSL_EXPORT int X509_REQ_add1_attr_by_OBJ(X509_REQ *req,
|
1003
|
-
const ASN1_OBJECT *obj,
|
1004
|
-
|
1275
|
+
const ASN1_OBJECT *obj,
|
1276
|
+
int attrtype,
|
1277
|
+
const unsigned char *data,
|
1005
1278
|
int len);
|
1006
|
-
|
1007
|
-
|
1279
|
+
|
1280
|
+
// X509_REQ_add1_attr_by_NID behaves like |X509_REQ_add1_attr_by_OBJ| except the
|
1281
|
+
// attribute type is determined by |nid|.
|
1282
|
+
OPENSSL_EXPORT int X509_REQ_add1_attr_by_NID(X509_REQ *req, int nid,
|
1283
|
+
int attrtype,
|
1284
|
+
const unsigned char *data,
|
1008
1285
|
int len);
|
1286
|
+
|
1287
|
+
// X509_REQ_add1_attr_by_txt behaves like |X509_REQ_add1_attr_by_OBJ| except the
|
1288
|
+
// attribute type is determined by calling |OBJ_txt2obj| with |attrname|.
|
1009
1289
|
OPENSSL_EXPORT int X509_REQ_add1_attr_by_txt(X509_REQ *req,
|
1010
|
-
const char *attrname, int
|
1011
|
-
const unsigned char *
|
1290
|
+
const char *attrname, int attrtype,
|
1291
|
+
const unsigned char *data,
|
1012
1292
|
int len);
|
1013
1293
|
|
1014
|
-
|
1015
|
-
|
1294
|
+
// X509_CRL_set_version sets |crl|'s version to |version|, which should be one
|
1295
|
+
// of the |X509V*_VERSION| constants. It returns one on success and zero on
|
1296
|
+
// error.
|
1297
|
+
//
|
1298
|
+
// If unsure, use |X509V2_VERSION|. Note |X509V3_VERSION| is not defined for
|
1299
|
+
// CRLs.
|
1300
|
+
OPENSSL_EXPORT int X509_CRL_set_version(X509_CRL *crl, long version);
|
1301
|
+
|
1302
|
+
// X509_CRL_set_issuer_name sets |crl|'s issuer to a copy of |name|. It returns
|
1303
|
+
// one on success and zero on error.
|
1304
|
+
OPENSSL_EXPORT int X509_CRL_set_issuer_name(X509_CRL *crl, X509_NAME *name);
|
1305
|
+
|
1016
1306
|
OPENSSL_EXPORT int X509_CRL_sort(X509_CRL *crl);
|
1307
|
+
|
1308
|
+
// X509_CRL_up_ref adds one to the reference count of |crl| and returns one.
|
1017
1309
|
OPENSSL_EXPORT int X509_CRL_up_ref(X509_CRL *crl);
|
1018
1310
|
|
1311
|
+
// X509_CRL_get0_signature sets |*out_sig| and |*out_alg| to the signature and
|
1312
|
+
// signature algorithm of |crl|, respectively. Either output pointer may be NULL
|
1313
|
+
// to ignore the value.
|
1314
|
+
//
|
1315
|
+
// This function outputs the outer signature algorithm, not the one in the
|
1316
|
+
// TBSCertList. CRLs with mismatched signature algorithms will successfully
|
1317
|
+
// parse, but they will be rejected when verifying.
|
1019
1318
|
OPENSSL_EXPORT void X509_CRL_get0_signature(const X509_CRL *crl,
|
1020
|
-
const ASN1_BIT_STRING **
|
1021
|
-
const X509_ALGOR **
|
1319
|
+
const ASN1_BIT_STRING **out_sig,
|
1320
|
+
const X509_ALGOR **out_alg);
|
1321
|
+
|
1322
|
+
// X509_CRL_get_signature_nid returns the NID corresponding to |crl|'s signature
|
1323
|
+
// algorithm, or |NID_undef| if the signature algorithm does not correspond to
|
1324
|
+
// a known NID.
|
1022
1325
|
OPENSSL_EXPORT int X509_CRL_get_signature_nid(const X509_CRL *crl);
|
1023
|
-
OPENSSL_EXPORT int i2d_re_X509_CRL_tbs(X509_CRL *req, unsigned char **pp);
|
1024
1326
|
|
1327
|
+
// i2d_re_X509_CRL_tbs serializes the TBSCertList portion of |crl|. If |outp| is
|
1328
|
+
// NULL, nothing is written. Otherwise, if |*outp| is not NULL, the result is
|
1329
|
+
// written to |*outp|, which must have enough space available, and |*outp| is
|
1330
|
+
// advanced just past the output. If |outp| is non-NULL and |*outp| is NULL, it
|
1331
|
+
// sets |*outp| to a newly-allocated buffer containing the result. The caller is
|
1332
|
+
// responsible for releasing the buffer with |OPENSSL_free|. In all cases, this
|
1333
|
+
// function returns the number of bytes in the result, whether written or not,
|
1334
|
+
// or a negative value on error.
|
1335
|
+
//
|
1336
|
+
// This function re-encodes the TBSCertList and may not reflect |crl|'s original
|
1337
|
+
// encoding. It may be used to manually generate a signature for a new CRL. To
|
1338
|
+
// verify CRLs, use |i2d_X509_CRL_tbs| instead.
|
1339
|
+
OPENSSL_EXPORT int i2d_re_X509_CRL_tbs(X509_CRL *crl, unsigned char **outp);
|
1340
|
+
|
1341
|
+
// i2d_X509_CRL_tbs serializes the TBSCertList portion of |crl|. If |outp| is
|
1342
|
+
// NULL, nothing is written. Otherwise, if |*outp| is not NULL, the result is
|
1343
|
+
// written to |*outp|, which must have enough space available, and |*outp| is
|
1344
|
+
// advanced just past the output. If |outp| is non-NULL and |*outp| is NULL, it
|
1345
|
+
// sets |*outp| to a newly-allocated buffer containing the result. The caller is
|
1346
|
+
// responsible for releasing the buffer with |OPENSSL_free|. In all cases, this
|
1347
|
+
// function returns the number of bytes in the result, whether written or not,
|
1348
|
+
// or a negative value on error.
|
1349
|
+
//
|
1350
|
+
// This function preserves the original encoding of the TBSCertList and may not
|
1351
|
+
// reflect modifications made to |crl|. It may be used to manually verify the
|
1352
|
+
// signature of an existing CRL. To generate CRLs, use |i2d_re_X509_CRL_tbs|
|
1353
|
+
// instead.
|
1354
|
+
OPENSSL_EXPORT int i2d_X509_CRL_tbs(X509_CRL *crl, unsigned char **outp);
|
1355
|
+
|
1356
|
+
// X509_REVOKED_get0_serialNumber returns the serial number of the certificate
|
1357
|
+
// revoked by |revoked|.
|
1025
1358
|
OPENSSL_EXPORT const ASN1_INTEGER *X509_REVOKED_get0_serialNumber(
|
1026
|
-
const X509_REVOKED *
|
1027
|
-
|
1028
|
-
|
1359
|
+
const X509_REVOKED *revoked);
|
1360
|
+
|
1361
|
+
// X509_REVOKED_set_serialNumber sets |revoked|'s serial number to |serial|. It
|
1362
|
+
// returns one on success or zero on error.
|
1363
|
+
OPENSSL_EXPORT int X509_REVOKED_set_serialNumber(X509_REVOKED *revoked,
|
1364
|
+
const ASN1_INTEGER *serial);
|
1365
|
+
|
1366
|
+
// X509_REVOKED_get0_revocationDate returns the revocation time of the
|
1367
|
+
// certificate revoked by |revoked|.
|
1029
1368
|
OPENSSL_EXPORT const ASN1_TIME *X509_REVOKED_get0_revocationDate(
|
1030
|
-
const X509_REVOKED *
|
1031
|
-
|
1032
|
-
|
1369
|
+
const X509_REVOKED *revoked);
|
1370
|
+
|
1371
|
+
// X509_REVOKED_set_revocationDate sets |revoked|'s revocation time to |tm|. It
|
1372
|
+
// returns one on success or zero on error.
|
1373
|
+
OPENSSL_EXPORT int X509_REVOKED_set_revocationDate(X509_REVOKED *revoked,
|
1374
|
+
const ASN1_TIME *tm);
|
1033
1375
|
|
1034
|
-
// X509_REVOKED_get0_extensions returns |r|'s extensions
|
1035
|
-
|
1036
|
-
|
1376
|
+
// X509_REVOKED_get0_extensions returns |r|'s extensions list, or NULL if |r|
|
1377
|
+
// omits it.
|
1378
|
+
OPENSSL_EXPORT const STACK_OF(X509_EXTENSION) *X509_REVOKED_get0_extensions(
|
1379
|
+
const X509_REVOKED *r);
|
1037
1380
|
|
1038
1381
|
OPENSSL_EXPORT X509_CRL *X509_CRL_diff(X509_CRL *base, X509_CRL *newer,
|
1039
1382
|
EVP_PKEY *skey, const EVP_MD *md,
|
@@ -1043,14 +1386,18 @@ OPENSSL_EXPORT int X509_REQ_check_private_key(X509_REQ *x509, EVP_PKEY *pkey);
|
|
1043
1386
|
|
1044
1387
|
OPENSSL_EXPORT int X509_check_private_key(X509 *x509, const EVP_PKEY *pkey);
|
1045
1388
|
OPENSSL_EXPORT int X509_chain_check_suiteb(int *perror_depth, X509 *x,
|
1046
|
-
STACK_OF(X509) *
|
1389
|
+
STACK_OF(X509) *chain,
|
1047
1390
|
unsigned long flags);
|
1048
1391
|
OPENSSL_EXPORT int X509_CRL_check_suiteb(X509_CRL *crl, EVP_PKEY *pk,
|
1049
1392
|
unsigned long flags);
|
1050
|
-
|
1393
|
+
|
1394
|
+
// X509_chain_up_ref returns a newly-allocated |STACK_OF(X509)| containing a
|
1395
|
+
// shallow copy of |chain|, or NULL on error. That is, the return value has the
|
1396
|
+
// same contents as |chain|, and each |X509|'s reference count is incremented by
|
1397
|
+
// one.
|
1398
|
+
OPENSSL_EXPORT STACK_OF(X509) *X509_chain_up_ref(STACK_OF(X509) *chain);
|
1051
1399
|
|
1052
1400
|
OPENSSL_EXPORT int X509_issuer_and_serial_cmp(const X509 *a, const X509 *b);
|
1053
|
-
OPENSSL_EXPORT unsigned long X509_issuer_and_serial_hash(X509 *a);
|
1054
1401
|
|
1055
1402
|
OPENSSL_EXPORT int X509_issuer_name_cmp(const X509 *a, const X509 *b);
|
1056
1403
|
OPENSSL_EXPORT unsigned long X509_issuer_name_hash(X509 *a);
|
@@ -1141,21 +1488,19 @@ OPENSSL_EXPORT ASN1_OBJECT *X509_NAME_ENTRY_get_object(
|
|
1141
1488
|
const X509_NAME_ENTRY *ne);
|
1142
1489
|
OPENSSL_EXPORT ASN1_STRING *X509_NAME_ENTRY_get_data(const X509_NAME_ENTRY *ne);
|
1143
1490
|
|
1144
|
-
OPENSSL_EXPORT int X509v3_get_ext_count(const STACK_OF(X509_EXTENSION) *
|
1145
|
-
OPENSSL_EXPORT int X509v3_get_ext_by_NID(const STACK_OF(X509_EXTENSION) *
|
1491
|
+
OPENSSL_EXPORT int X509v3_get_ext_count(const STACK_OF(X509_EXTENSION) *x);
|
1492
|
+
OPENSSL_EXPORT int X509v3_get_ext_by_NID(const STACK_OF(X509_EXTENSION) *x,
|
1146
1493
|
int nid, int lastpos);
|
1147
|
-
OPENSSL_EXPORT int X509v3_get_ext_by_OBJ(const STACK_OF(X509_EXTENSION) *
|
1494
|
+
OPENSSL_EXPORT int X509v3_get_ext_by_OBJ(const STACK_OF(X509_EXTENSION) *x,
|
1148
1495
|
const ASN1_OBJECT *obj, int lastpos);
|
1149
|
-
OPENSSL_EXPORT int X509v3_get_ext_by_critical(const STACK_OF(X509_EXTENSION) *
|
1150
|
-
x,
|
1496
|
+
OPENSSL_EXPORT int X509v3_get_ext_by_critical(const STACK_OF(X509_EXTENSION) *x,
|
1151
1497
|
int crit, int lastpos);
|
1152
|
-
OPENSSL_EXPORT X509_EXTENSION *X509v3_get_ext(const STACK_OF(X509_EXTENSION) *
|
1153
|
-
x,
|
1498
|
+
OPENSSL_EXPORT X509_EXTENSION *X509v3_get_ext(const STACK_OF(X509_EXTENSION) *x,
|
1154
1499
|
int loc);
|
1155
|
-
OPENSSL_EXPORT X509_EXTENSION *X509v3_delete_ext(STACK_OF(X509_EXTENSION) *
|
1500
|
+
OPENSSL_EXPORT X509_EXTENSION *X509v3_delete_ext(STACK_OF(X509_EXTENSION) *x,
|
1156
1501
|
int loc);
|
1157
|
-
OPENSSL_EXPORT STACK_OF(X509_EXTENSION) *
|
1158
|
-
|
1502
|
+
OPENSSL_EXPORT STACK_OF(X509_EXTENSION) *X509v3_add_ext(
|
1503
|
+
STACK_OF(X509_EXTENSION) **x, X509_EXTENSION *ex, int loc);
|
1159
1504
|
|
1160
1505
|
OPENSSL_EXPORT int X509_get_ext_count(const X509 *x);
|
1161
1506
|
OPENSSL_EXPORT int X509_get_ext_by_NID(const X509 *x, int nid, int lastpos);
|
@@ -1166,12 +1511,27 @@ OPENSSL_EXPORT int X509_get_ext_by_critical(const X509 *x, int crit,
|
|
1166
1511
|
OPENSSL_EXPORT X509_EXTENSION *X509_get_ext(const X509 *x, int loc);
|
1167
1512
|
OPENSSL_EXPORT X509_EXTENSION *X509_delete_ext(X509 *x, int loc);
|
1168
1513
|
OPENSSL_EXPORT int X509_add_ext(X509 *x, X509_EXTENSION *ex, int loc);
|
1169
|
-
|
1514
|
+
|
1515
|
+
// X509_get_ext_d2i behaves like |X509V3_get_d2i| but looks for the extension in
|
1516
|
+
// |x509|'s extension list.
|
1517
|
+
//
|
1518
|
+
// WARNING: This function is difficult to use correctly. See the documentation
|
1519
|
+
// for |X509V3_get_d2i| for details.
|
1520
|
+
OPENSSL_EXPORT void *X509_get_ext_d2i(const X509 *x509, int nid,
|
1521
|
+
int *out_critical, int *out_idx);
|
1522
|
+
|
1523
|
+
// X509_add1_ext_i2d behaves like |X509V3_add1_i2d| but adds the extension to
|
1524
|
+
// |x|'s extension list.
|
1525
|
+
//
|
1526
|
+
// WARNING: This function may return zero or -1 on error. The caller must also
|
1527
|
+
// ensure |value|'s type matches |nid|. See the documentation for
|
1528
|
+
// |X509V3_add1_i2d| for details.
|
1170
1529
|
OPENSSL_EXPORT int X509_add1_ext_i2d(X509 *x, int nid, void *value, int crit,
|
1171
1530
|
unsigned long flags);
|
1172
1531
|
|
1173
1532
|
OPENSSL_EXPORT int X509_CRL_get_ext_count(const X509_CRL *x);
|
1174
|
-
OPENSSL_EXPORT int X509_CRL_get_ext_by_NID(const X509_CRL *x, int nid,
|
1533
|
+
OPENSSL_EXPORT int X509_CRL_get_ext_by_NID(const X509_CRL *x, int nid,
|
1534
|
+
int lastpos);
|
1175
1535
|
OPENSSL_EXPORT int X509_CRL_get_ext_by_OBJ(const X509_CRL *x,
|
1176
1536
|
const ASN1_OBJECT *obj, int lastpos);
|
1177
1537
|
OPENSSL_EXPORT int X509_CRL_get_ext_by_critical(const X509_CRL *x, int crit,
|
@@ -1179,8 +1539,21 @@ OPENSSL_EXPORT int X509_CRL_get_ext_by_critical(const X509_CRL *x, int crit,
|
|
1179
1539
|
OPENSSL_EXPORT X509_EXTENSION *X509_CRL_get_ext(const X509_CRL *x, int loc);
|
1180
1540
|
OPENSSL_EXPORT X509_EXTENSION *X509_CRL_delete_ext(X509_CRL *x, int loc);
|
1181
1541
|
OPENSSL_EXPORT int X509_CRL_add_ext(X509_CRL *x, X509_EXTENSION *ex, int loc);
|
1182
|
-
|
1183
|
-
|
1542
|
+
|
1543
|
+
// X509_CRL_get_ext_d2i behaves like |X509V3_get_d2i| but looks for the
|
1544
|
+
// extension in |crl|'s extension list.
|
1545
|
+
//
|
1546
|
+
// WARNING: This function is difficult to use correctly. See the documentation
|
1547
|
+
// for |X509V3_get_d2i| for details.
|
1548
|
+
OPENSSL_EXPORT void *X509_CRL_get_ext_d2i(const X509_CRL *crl, int nid,
|
1549
|
+
int *out_critical, int *out_idx);
|
1550
|
+
|
1551
|
+
// X509_CRL_add1_ext_i2d behaves like |X509V3_add1_i2d| but adds the extension
|
1552
|
+
// to |x|'s extension list.
|
1553
|
+
//
|
1554
|
+
// WARNING: This function may return zero or -1 on error. The caller must also
|
1555
|
+
// ensure |value|'s type matches |nid|. See the documentation for
|
1556
|
+
// |X509V3_add1_i2d| for details.
|
1184
1557
|
OPENSSL_EXPORT int X509_CRL_add1_ext_i2d(X509_CRL *x, int nid, void *value,
|
1185
1558
|
int crit, unsigned long flags);
|
1186
1559
|
|
@@ -1198,8 +1571,22 @@ OPENSSL_EXPORT X509_EXTENSION *X509_REVOKED_delete_ext(X509_REVOKED *x,
|
|
1198
1571
|
int loc);
|
1199
1572
|
OPENSSL_EXPORT int X509_REVOKED_add_ext(X509_REVOKED *x, X509_EXTENSION *ex,
|
1200
1573
|
int loc);
|
1201
|
-
|
1202
|
-
|
1574
|
+
|
1575
|
+
// X509_REVOKED_get_ext_d2i behaves like |X509V3_get_d2i| but looks for the
|
1576
|
+
// extension in |revoked|'s extension list.
|
1577
|
+
//
|
1578
|
+
// WARNING: This function is difficult to use correctly. See the documentation
|
1579
|
+
// for |X509V3_get_d2i| for details.
|
1580
|
+
OPENSSL_EXPORT void *X509_REVOKED_get_ext_d2i(const X509_REVOKED *revoked,
|
1581
|
+
int nid, int *out_critical,
|
1582
|
+
int *out_idx);
|
1583
|
+
|
1584
|
+
// X509_REVOKED_add1_ext_i2d behaves like |X509V3_add1_i2d| but adds the
|
1585
|
+
// extension to |x|'s extension list.
|
1586
|
+
//
|
1587
|
+
// WARNING: This function may return zero or -1 on error. The caller must also
|
1588
|
+
// ensure |value|'s type matches |nid|. See the documentation for
|
1589
|
+
// |X509V3_add1_i2d| for details.
|
1203
1590
|
OPENSSL_EXPORT int X509_REVOKED_add1_ext_i2d(X509_REVOKED *x, int nid,
|
1204
1591
|
void *value, int crit,
|
1205
1592
|
unsigned long flags);
|
@@ -1218,57 +1605,129 @@ OPENSSL_EXPORT ASN1_OBJECT *X509_EXTENSION_get_object(X509_EXTENSION *ex);
|
|
1218
1605
|
OPENSSL_EXPORT ASN1_OCTET_STRING *X509_EXTENSION_get_data(X509_EXTENSION *ne);
|
1219
1606
|
OPENSSL_EXPORT int X509_EXTENSION_get_critical(X509_EXTENSION *ex);
|
1220
1607
|
|
1221
|
-
OPENSSL_EXPORT int X509at_get_attr_count(const STACK_OF(X509_ATTRIBUTE) *
|
1222
|
-
OPENSSL_EXPORT int X509at_get_attr_by_NID(const STACK_OF(X509_ATTRIBUTE) *
|
1608
|
+
OPENSSL_EXPORT int X509at_get_attr_count(const STACK_OF(X509_ATTRIBUTE) *x);
|
1609
|
+
OPENSSL_EXPORT int X509at_get_attr_by_NID(const STACK_OF(X509_ATTRIBUTE) *x,
|
1223
1610
|
int nid, int lastpos);
|
1224
|
-
OPENSSL_EXPORT int X509at_get_attr_by_OBJ(const STACK_OF(X509_ATTRIBUTE) *
|
1611
|
+
OPENSSL_EXPORT int X509at_get_attr_by_OBJ(const STACK_OF(X509_ATTRIBUTE) *sk,
|
1225
1612
|
const ASN1_OBJECT *obj, int lastpos);
|
1226
|
-
OPENSSL_EXPORT X509_ATTRIBUTE *X509at_get_attr(
|
1227
|
-
|
1228
|
-
|
1229
|
-
OPENSSL_EXPORT X509_ATTRIBUTE *X509at_delete_attr(STACK_OF(X509_ATTRIBUTE) * x,
|
1613
|
+
OPENSSL_EXPORT X509_ATTRIBUTE *X509at_get_attr(
|
1614
|
+
const STACK_OF(X509_ATTRIBUTE) *x, int loc);
|
1615
|
+
OPENSSL_EXPORT X509_ATTRIBUTE *X509at_delete_attr(STACK_OF(X509_ATTRIBUTE) *x,
|
1230
1616
|
int loc);
|
1231
|
-
OPENSSL_EXPORT STACK_OF(X509_ATTRIBUTE) *
|
1232
|
-
|
1233
|
-
OPENSSL_EXPORT STACK_OF(X509_ATTRIBUTE) *
|
1234
|
-
|
1235
|
-
|
1236
|
-
|
1237
|
-
|
1238
|
-
|
1239
|
-
|
1240
|
-
|
1241
|
-
|
1242
|
-
|
1243
|
-
OPENSSL_EXPORT void *X509at_get0_data_by_OBJ(STACK_OF(X509_ATTRIBUTE) * x,
|
1617
|
+
OPENSSL_EXPORT STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr(
|
1618
|
+
STACK_OF(X509_ATTRIBUTE) **x, X509_ATTRIBUTE *attr);
|
1619
|
+
OPENSSL_EXPORT STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr_by_OBJ(
|
1620
|
+
STACK_OF(X509_ATTRIBUTE) **x, const ASN1_OBJECT *obj, int type,
|
1621
|
+
const unsigned char *bytes, int len);
|
1622
|
+
OPENSSL_EXPORT STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr_by_NID(
|
1623
|
+
STACK_OF(X509_ATTRIBUTE) **x, int nid, int type, const unsigned char *bytes,
|
1624
|
+
int len);
|
1625
|
+
OPENSSL_EXPORT STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr_by_txt(
|
1626
|
+
STACK_OF(X509_ATTRIBUTE) **x, const char *attrname, int type,
|
1627
|
+
const unsigned char *bytes, int len);
|
1628
|
+
OPENSSL_EXPORT void *X509at_get0_data_by_OBJ(STACK_OF(X509_ATTRIBUTE) *x,
|
1244
1629
|
ASN1_OBJECT *obj, int lastpos,
|
1245
1630
|
int type);
|
1631
|
+
|
1632
|
+
// X509_ATTRIBUTE_create_by_NID returns a newly-allocated |X509_ATTRIBUTE| of
|
1633
|
+
// type |nid|, or NULL on error. The value is determined as in
|
1634
|
+
// |X509_ATTRIBUTE_set1_data|.
|
1635
|
+
//
|
1636
|
+
// If |attr| is non-NULL, the resulting |X509_ATTRIBUTE| is also written to
|
1637
|
+
// |*attr|. If |*attr| was non-NULL when the function was called, |*attr| is
|
1638
|
+
// reused instead of creating a new object.
|
1639
|
+
//
|
1640
|
+
// WARNING: The interpretation of |attrtype|, |data|, and |len| is complex and
|
1641
|
+
// error-prone. See |X509_ATTRIBUTE_set1_data| for details.
|
1642
|
+
//
|
1643
|
+
// WARNING: The object reuse form is deprecated and may be removed in the
|
1644
|
+
// future. It also currently incorrectly appends to the reused object's value
|
1645
|
+
// set rather than overwriting it.
|
1246
1646
|
OPENSSL_EXPORT X509_ATTRIBUTE *X509_ATTRIBUTE_create_by_NID(
|
1247
|
-
X509_ATTRIBUTE **attr, int nid, int
|
1647
|
+
X509_ATTRIBUTE **attr, int nid, int attrtype, const void *data, int len);
|
1648
|
+
|
1649
|
+
// X509_ATTRIBUTE_create_by_OBJ behaves like |X509_ATTRIBUTE_create_by_NID|
|
1650
|
+
// except the attribute's type is determined by |obj|.
|
1248
1651
|
OPENSSL_EXPORT X509_ATTRIBUTE *X509_ATTRIBUTE_create_by_OBJ(
|
1249
|
-
X509_ATTRIBUTE **attr, const ASN1_OBJECT *obj, int
|
1652
|
+
X509_ATTRIBUTE **attr, const ASN1_OBJECT *obj, int attrtype,
|
1250
1653
|
const void *data, int len);
|
1654
|
+
|
1655
|
+
// X509_ATTRIBUTE_create_by_txt behaves like |X509_ATTRIBUTE_create_by_NID|
|
1656
|
+
// except the attribute's type is determined by calling |OBJ_txt2obj| with
|
1657
|
+
// |attrname|.
|
1251
1658
|
OPENSSL_EXPORT X509_ATTRIBUTE *X509_ATTRIBUTE_create_by_txt(
|
1252
|
-
X509_ATTRIBUTE **attr, const char *
|
1659
|
+
X509_ATTRIBUTE **attr, const char *attrname, int type,
|
1253
1660
|
const unsigned char *bytes, int len);
|
1661
|
+
|
1662
|
+
// X509_ATTRIBUTE_set1_object sets |attr|'s type to |obj|. It returns one on
|
1663
|
+
// success and zero on error.
|
1254
1664
|
OPENSSL_EXPORT int X509_ATTRIBUTE_set1_object(X509_ATTRIBUTE *attr,
|
1255
1665
|
const ASN1_OBJECT *obj);
|
1666
|
+
|
1667
|
+
// X509_ATTRIBUTE_set1_data appends a value to |attr|'s value set and returns
|
1668
|
+
// one on success or zero on error. The value is determined as follows:
|
1669
|
+
//
|
1670
|
+
// If |attrtype| is a |MBSTRING_*| constant, the value is an ASN.1 string. The
|
1671
|
+
// string is determined by decoding |len| bytes from |data| in the encoding
|
1672
|
+
// specified by |attrtype|, and then re-encoding it in a form appropriate for
|
1673
|
+
// |attr|'s type. If |len| is -1, |strlen(data)| is used instead. See
|
1674
|
+
// |ASN1_STRING_set_by_NID| for details.
|
1675
|
+
//
|
1676
|
+
// TODO(davidben): Document |ASN1_STRING_set_by_NID| so the reference is useful.
|
1677
|
+
//
|
1678
|
+
// Otherwise, if |len| is not -1, the value is an ASN.1 string. |attrtype| is an
|
1679
|
+
// |ASN1_STRING| type value and the |len| bytes from |data| are copied as the
|
1680
|
+
// type-specific representation of |ASN1_STRING|. See |ASN1_STRING| for details.
|
1681
|
+
//
|
1682
|
+
// WARNING: If this form is used to construct a negative INTEGER or ENUMERATED,
|
1683
|
+
// |attrtype| includes the |V_ASN1_NEG| flag for |ASN1_STRING|, but the function
|
1684
|
+
// forgets to clear the flag for |ASN1_TYPE|. This matches OpenSSL but is
|
1685
|
+
// probably a bug. For now, do not use this form with negative values.
|
1686
|
+
//
|
1687
|
+
// Otherwise, if |len| is -1, the value is constructed by passing |attrtype| and
|
1688
|
+
// |data| to |ASN1_TYPE_set1|. That is, |attrtype| is an |ASN1_TYPE| type value,
|
1689
|
+
// and |data| is cast to the corresponding pointer type.
|
1690
|
+
//
|
1691
|
+
// WARNING: Despite the name, this function appends to |attr|'s value set,
|
1692
|
+
// rather than overwriting it. To overwrite the value set, create a new
|
1693
|
+
// |X509_ATTRIBUTE| with |X509_ATTRIBUTE_new|.
|
1694
|
+
//
|
1695
|
+
// WARNING: If using the |MBSTRING_*| form, pass a length rather than relying on
|
1696
|
+
// |strlen|. In particular, |strlen| will not behave correctly if the input is
|
1697
|
+
// |MBSTRING_BMP| or |MBSTRING_UNIV|.
|
1698
|
+
//
|
1699
|
+
// WARNING: This function currently misinterprets |V_ASN1_OTHER| as an
|
1700
|
+
// |MBSTRING_*| constant. This matches OpenSSL but means it is impossible to
|
1701
|
+
// construct a value with a non-universal tag.
|
1256
1702
|
OPENSSL_EXPORT int X509_ATTRIBUTE_set1_data(X509_ATTRIBUTE *attr, int attrtype,
|
1257
1703
|
const void *data, int len);
|
1704
|
+
|
1705
|
+
// X509_ATTRIBUTE_get0_data returns the |idx|th value of |attr| in a
|
1706
|
+
// type-specific representation to |attrtype|, or NULL if out of bounds or the
|
1707
|
+
// type does not match. |attrtype| is one of the type values in |ASN1_TYPE|. On
|
1708
|
+
// match, the return value uses the same representation as |ASN1_TYPE_set0|. See
|
1709
|
+
// |ASN1_TYPE| for details.
|
1258
1710
|
OPENSSL_EXPORT void *X509_ATTRIBUTE_get0_data(X509_ATTRIBUTE *attr, int idx,
|
1259
|
-
int
|
1260
|
-
|
1711
|
+
int attrtype, void *unused);
|
1712
|
+
|
1713
|
+
// X509_ATTRIBUTE_count returns the number of values in |attr|.
|
1714
|
+
OPENSSL_EXPORT int X509_ATTRIBUTE_count(const X509_ATTRIBUTE *attr);
|
1715
|
+
|
1716
|
+
// X509_ATTRIBUTE_get0_object returns the type of |attr|.
|
1261
1717
|
OPENSSL_EXPORT ASN1_OBJECT *X509_ATTRIBUTE_get0_object(X509_ATTRIBUTE *attr);
|
1718
|
+
|
1719
|
+
// X509_ATTRIBUTE_get0_type returns the |idx|th value in |attr|, or NULL if out
|
1720
|
+
// of bounds. Note this function returns one of |attr|'s values, not the type.
|
1262
1721
|
OPENSSL_EXPORT ASN1_TYPE *X509_ATTRIBUTE_get0_type(X509_ATTRIBUTE *attr,
|
1263
1722
|
int idx);
|
1264
1723
|
|
1265
1724
|
OPENSSL_EXPORT int X509_verify_cert(X509_STORE_CTX *ctx);
|
1266
1725
|
|
1267
1726
|
// lookup a cert from a X509 STACK
|
1268
|
-
OPENSSL_EXPORT X509 *X509_find_by_issuer_and_serial(STACK_OF(X509) *
|
1727
|
+
OPENSSL_EXPORT X509 *X509_find_by_issuer_and_serial(STACK_OF(X509) *sk,
|
1269
1728
|
X509_NAME *name,
|
1270
1729
|
ASN1_INTEGER *serial);
|
1271
|
-
OPENSSL_EXPORT X509 *X509_find_by_subject(STACK_OF(X509) *
|
1730
|
+
OPENSSL_EXPORT X509 *X509_find_by_subject(STACK_OF(X509) *sk, X509_NAME *name);
|
1272
1731
|
|
1273
1732
|
// PKCS#8 utilities
|
1274
1733
|
|
@@ -1284,13 +1743,36 @@ OPENSSL_EXPORT int PKCS8_pkey_get0(ASN1_OBJECT **ppkalg,
|
|
1284
1743
|
const unsigned char **pk, int *ppklen,
|
1285
1744
|
X509_ALGOR **pa, PKCS8_PRIV_KEY_INFO *p8);
|
1286
1745
|
|
1287
|
-
|
1288
|
-
|
1289
|
-
|
1290
|
-
|
1291
|
-
|
1292
|
-
|
1293
|
-
|
1746
|
+
// X509_PUBKEY_set0_param sets |pub| to a key with AlgorithmIdentifier
|
1747
|
+
// determined by |obj|, |param_type|, and |param_value|, and an encoded
|
1748
|
+
// public key of |key|. On success, it takes ownership of all its parameters and
|
1749
|
+
// returns one. Otherwise, it returns zero. |key| must have been allocated by
|
1750
|
+
// |OPENSSL_malloc|.
|
1751
|
+
//
|
1752
|
+
// |obj|, |param_type|, and |param_value| are interpreted as in
|
1753
|
+
// |X509_ALGOR_set0|. See |X509_ALGOR_set0| for details.
|
1754
|
+
OPENSSL_EXPORT int X509_PUBKEY_set0_param(X509_PUBKEY *pub, ASN1_OBJECT *obj,
|
1755
|
+
int param_type, void *param_value,
|
1756
|
+
uint8_t *key, int key_len);
|
1757
|
+
|
1758
|
+
// X509_PUBKEY_get0_param outputs fields of |pub| and returns one. If |out_obj|
|
1759
|
+
// is not NULL, it sets |*out_obj| to AlgorithmIdentifier's OID. If |out_key|
|
1760
|
+
// is not NULL, it sets |*out_key| and |*out_key_len| to the encoded public key.
|
1761
|
+
// If |out_alg| is not NULL, it sets |*out_alg| to the AlgorithmIdentifier.
|
1762
|
+
//
|
1763
|
+
// Note: X.509 SubjectPublicKeyInfo structures store the encoded public key as a
|
1764
|
+
// BIT STRING. |*out_key| and |*out_key_len| will silently pad the key with zero
|
1765
|
+
// bits if |pub| did not contain a whole number of bytes. Use
|
1766
|
+
// |X509_PUBKEY_get0_public_key| to preserve this information.
|
1767
|
+
OPENSSL_EXPORT int X509_PUBKEY_get0_param(ASN1_OBJECT **out_obj,
|
1768
|
+
const uint8_t **out_key,
|
1769
|
+
int *out_key_len,
|
1770
|
+
X509_ALGOR **out_alg,
|
1771
|
+
X509_PUBKEY *pub);
|
1772
|
+
|
1773
|
+
// X509_PUBKEY_get0_public_key returns |pub|'s encoded public key.
|
1774
|
+
OPENSSL_EXPORT const ASN1_BIT_STRING *X509_PUBKEY_get0_public_key(
|
1775
|
+
const X509_PUBKEY *pub);
|
1294
1776
|
|
1295
1777
|
OPENSSL_EXPORT int X509_check_trust(X509 *x, int id, int flags);
|
1296
1778
|
OPENSSL_EXPORT int X509_TRUST_get_count(void);
|
@@ -1330,6 +1812,7 @@ BORINGSSL_MAKE_DELETER(RSA_PSS_PARAMS, RSA_PSS_PARAMS_free)
|
|
1330
1812
|
BORINGSSL_MAKE_DELETER(X509, X509_free)
|
1331
1813
|
BORINGSSL_MAKE_UP_REF(X509, X509_up_ref)
|
1332
1814
|
BORINGSSL_MAKE_DELETER(X509_ALGOR, X509_ALGOR_free)
|
1815
|
+
BORINGSSL_MAKE_DELETER(X509_ATTRIBUTE, X509_ATTRIBUTE_free)
|
1333
1816
|
BORINGSSL_MAKE_DELETER(X509_CRL, X509_CRL_free)
|
1334
1817
|
BORINGSSL_MAKE_UP_REF(X509_CRL, X509_CRL_up_ref)
|
1335
1818
|
BORINGSSL_MAKE_DELETER(X509_CRL_METHOD, X509_CRL_METHOD_free)
|