grpc 1.41.0 → 1.42.0.pre1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of grpc might be problematic. Click here for more details.

Files changed (519) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +57 -44
  3. data/etc/roots.pem +335 -326
  4. data/include/grpc/event_engine/event_engine.h +82 -42
  5. data/include/grpc/event_engine/internal/memory_allocator_impl.h +98 -0
  6. data/include/grpc/event_engine/memory_allocator.h +210 -0
  7. data/include/grpc/grpc.h +4 -0
  8. data/include/grpc/grpc_security.h +18 -0
  9. data/include/grpc/grpc_security_constants.h +1 -0
  10. data/include/grpc/impl/codegen/port_platform.h +7 -0
  11. data/src/core/ext/filters/client_channel/backend_metric.cc +18 -19
  12. data/src/core/ext/filters/client_channel/backup_poller.cc +2 -1
  13. data/src/core/ext/filters/client_channel/channel_connectivity.cc +71 -89
  14. data/src/core/ext/filters/client_channel/client_channel.cc +187 -252
  15. data/src/core/ext/filters/client_channel/client_channel.h +74 -27
  16. data/src/core/ext/filters/client_channel/client_channel_factory.cc +1 -1
  17. data/src/core/ext/filters/client_channel/client_channel_factory.h +17 -19
  18. data/src/core/ext/filters/client_channel/client_channel_plugin.cc +8 -14
  19. data/src/core/ext/filters/client_channel/config_selector.cc +1 -1
  20. data/src/core/ext/filters/client_channel/config_selector.h +4 -5
  21. data/src/core/ext/filters/client_channel/connector.h +18 -18
  22. data/src/core/ext/filters/client_channel/dynamic_filters.cc +1 -1
  23. data/src/core/ext/filters/client_channel/global_subchannel_pool.h +0 -1
  24. data/src/core/ext/filters/client_channel/health/health_check_client.cc +12 -11
  25. data/src/core/ext/filters/client_channel/http_connect_handshaker.h +1 -1
  26. data/src/core/ext/filters/client_channel/lb_policy/child_policy_handler.cc +4 -0
  27. data/src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc +6 -15
  28. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +166 -82
  29. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.h +4 -0
  30. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.cc +1 -1
  31. data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc +2 -4
  32. data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +23 -7
  33. data/src/core/ext/filters/client_channel/lb_policy/priority/priority.cc +15 -10
  34. data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.cc +2 -3
  35. data/src/core/ext/filters/client_channel/lb_policy/rls/rls.cc +2502 -0
  36. data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +6 -1
  37. data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +7 -1
  38. data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +6 -2
  39. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_channel_args.h +1 -1
  40. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_impl.cc +5 -0
  41. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_manager.cc +8 -1
  42. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_resolver.cc +7 -16
  43. data/src/core/ext/filters/client_channel/lb_policy.h +11 -1
  44. data/src/core/ext/filters/client_channel/lb_policy_factory.h +1 -0
  45. data/src/core/ext/filters/client_channel/resolver/binder/binder_resolver.cc +139 -0
  46. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +11 -5
  47. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +3 -3
  48. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +12 -39
  49. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +21 -1
  50. data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +6 -2
  51. data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc +3 -1
  52. data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +77 -68
  53. data/src/core/ext/filters/client_channel/resolver.h +1 -1
  54. data/src/core/ext/filters/client_channel/resolver_factory.h +2 -0
  55. data/src/core/ext/filters/client_channel/resolver_registry.cc +6 -8
  56. data/src/core/ext/filters/client_channel/resolver_result_parsing.cc +1 -1
  57. data/src/core/ext/filters/client_channel/resolver_result_parsing.h +1 -1
  58. data/src/core/ext/filters/client_channel/retry_filter.cc +48 -86
  59. data/src/core/ext/filters/client_channel/retry_service_config.h +1 -1
  60. data/src/core/ext/filters/client_channel/retry_throttle.cc +17 -48
  61. data/src/core/ext/filters/client_channel/server_address.h +1 -1
  62. data/src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc +49 -36
  63. data/src/core/ext/filters/client_channel/subchannel.cc +85 -143
  64. data/src/core/ext/filters/client_channel/subchannel.h +29 -49
  65. data/src/core/ext/filters/client_channel/subchannel_pool_interface.cc +22 -7
  66. data/src/core/ext/filters/client_channel/subchannel_pool_interface.h +11 -2
  67. data/src/core/ext/filters/client_idle/client_idle_filter.cc +27 -210
  68. data/src/core/ext/filters/client_idle/idle_filter_state.cc +96 -0
  69. data/src/core/ext/filters/client_idle/idle_filter_state.h +66 -0
  70. data/src/core/ext/filters/deadline/deadline_filter.cc +23 -26
  71. data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +19 -19
  72. data/src/core/ext/filters/fault_injection/service_config_parser.cc +0 -1
  73. data/src/core/ext/filters/fault_injection/service_config_parser.h +1 -1
  74. data/src/core/ext/filters/http/client/http_client_filter.cc +41 -44
  75. data/src/core/ext/filters/http/client_authority_filter.cc +14 -15
  76. data/src/core/ext/filters/http/http_filters_plugin.cc +53 -71
  77. data/src/core/ext/filters/http/message_compress/message_compress_filter.cc +17 -12
  78. data/src/core/ext/filters/http/message_compress/message_decompress_filter.cc +1 -1
  79. data/src/core/ext/filters/http/server/http_server_filter.cc +72 -69
  80. data/src/core/ext/filters/max_age/max_age_filter.cc +24 -26
  81. data/src/core/ext/filters/message_size/message_size_filter.cc +19 -16
  82. data/src/core/ext/filters/message_size/message_size_filter.h +1 -1
  83. data/src/core/ext/{filters/client_channel → service_config}/service_config.cc +2 -2
  84. data/src/core/ext/{filters/client_channel → service_config}/service_config.h +4 -4
  85. data/src/core/ext/service_config/service_config_call_data.h +72 -0
  86. data/src/core/ext/{filters/client_channel → service_config}/service_config_parser.cc +3 -3
  87. data/src/core/ext/{filters/client_channel → service_config}/service_config_parser.h +8 -6
  88. data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +2 -5
  89. data/src/core/ext/transport/chttp2/client/insecure/channel_create.cc +19 -24
  90. data/src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc +27 -50
  91. data/src/core/ext/transport/chttp2/server/chttp2_server.cc +14 -16
  92. data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +59 -58
  93. data/src/core/ext/transport/chttp2/transport/flow_control.cc +19 -16
  94. data/src/core/ext/transport/chttp2/transport/flow_control.h +4 -4
  95. data/src/core/ext/transport/chttp2/transport/frame_data.cc +4 -4
  96. data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +2 -1
  97. data/src/core/ext/transport/chttp2/transport/frame_ping.cc +2 -1
  98. data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +2 -3
  99. data/src/core/ext/transport/chttp2/transport/frame_settings.cc +2 -2
  100. data/src/core/ext/transport/chttp2/transport/hpack_constants.h +1 -1
  101. data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +41 -1
  102. data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +8 -4
  103. data/src/core/ext/transport/chttp2/transport/hpack_encoder_index.h +1 -1
  104. data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +136 -98
  105. data/src/core/ext/transport/chttp2/transport/hpack_parser.h +27 -8
  106. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.cc +12 -25
  107. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +37 -30
  108. data/src/core/ext/transport/chttp2/transport/internal.h +4 -3
  109. data/src/core/ext/transport/chttp2/transport/parsing.cc +30 -173
  110. data/src/core/ext/transport/chttp2/transport/popularity_count.h +1 -1
  111. data/src/core/ext/transport/chttp2/transport/writing.cc +29 -22
  112. data/src/core/ext/transport/inproc/inproc_transport.cc +105 -109
  113. data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.c +68 -34
  114. data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.h +139 -1
  115. data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.c +16 -4
  116. data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.h +53 -4
  117. data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.c +3 -2
  118. data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.h +15 -0
  119. data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.c +13 -8
  120. data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.h +23 -0
  121. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.c +0 -1
  122. data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.c +14 -11
  123. data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.h +17 -0
  124. data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.c +15 -12
  125. data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.h +49 -19
  126. data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.c +55 -0
  127. data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.h +154 -0
  128. data/src/core/ext/upb-generated/udpa/annotations/security.upb.c +0 -2
  129. data/src/core/ext/upb-generated/xds/annotations/v3/status.upb.c +58 -0
  130. data/src/core/ext/upb-generated/xds/annotations/v3/status.upb.h +182 -0
  131. data/src/core/ext/upb-generated/xds/core/v3/authority.upb.c +1 -1
  132. data/src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.c +1 -1
  133. data/src/core/ext/upb-generated/xds/core/v3/context_params.upb.c +1 -1
  134. data/src/core/ext/upb-generated/xds/core/v3/resource.upb.c +1 -1
  135. data/src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.c +1 -1
  136. data/src/core/ext/upb-generated/xds/core/v3/resource_name.upb.c +1 -1
  137. data/src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.c +58 -0
  138. data/src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.h +130 -0
  139. data/src/core/ext/upb-generated/{udpa/type/v1 → xds/type/v3}/typed_struct.upb.c +7 -7
  140. data/src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.h +83 -0
  141. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.c +310 -286
  142. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.h +10 -0
  143. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.c +101 -88
  144. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.h +5 -0
  145. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.c +59 -56
  146. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.c +59 -46
  147. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint_components.upbdefs.c +78 -82
  148. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.c +323 -316
  149. data/src/core/ext/upbdefs-generated/udpa/annotations/migrate.upbdefs.c +5 -4
  150. data/src/core/ext/upbdefs-generated/udpa/annotations/security.upbdefs.c +19 -23
  151. data/src/core/ext/upbdefs-generated/udpa/annotations/sensitive.upbdefs.c +4 -3
  152. data/src/core/ext/upbdefs-generated/udpa/annotations/status.upbdefs.c +5 -3
  153. data/src/core/ext/upbdefs-generated/udpa/annotations/versioning.upbdefs.c +5 -4
  154. data/src/core/ext/upbdefs-generated/xds/annotations/v3/status.upbdefs.c +75 -0
  155. data/src/core/ext/upbdefs-generated/xds/annotations/v3/status.upbdefs.h +50 -0
  156. data/src/core/ext/upbdefs-generated/xds/core/v3/authority.upbdefs.c +13 -12
  157. data/src/core/ext/upbdefs-generated/xds/core/v3/collection_entry.upbdefs.c +25 -24
  158. data/src/core/ext/upbdefs-generated/xds/core/v3/context_params.upbdefs.c +16 -15
  159. data/src/core/ext/upbdefs-generated/xds/core/v3/resource.upbdefs.c +17 -16
  160. data/src/core/ext/upbdefs-generated/xds/core/v3/resource_locator.upbdefs.c +33 -32
  161. data/src/core/ext/upbdefs-generated/xds/core/v3/resource_name.upbdefs.c +19 -18
  162. data/src/core/ext/upbdefs-generated/xds/type/v3/typed_struct.upbdefs.c +45 -0
  163. data/src/core/ext/upbdefs-generated/xds/type/v3/typed_struct.upbdefs.h +35 -0
  164. data/src/core/ext/xds/xds_api.cc +325 -362
  165. data/src/core/ext/xds/xds_api.h +134 -82
  166. data/src/core/ext/xds/xds_bootstrap.h +10 -0
  167. data/src/core/ext/xds/xds_certificate_provider.cc +3 -3
  168. data/src/core/ext/xds/xds_channel_stack_modifier.cc +113 -0
  169. data/src/core/ext/xds/xds_channel_stack_modifier.h +52 -0
  170. data/src/core/ext/xds/xds_client.cc +527 -314
  171. data/src/core/ext/xds/xds_client.h +42 -37
  172. data/src/core/ext/xds/xds_client_stats.h +1 -1
  173. data/src/core/ext/xds/xds_server_config_fetcher.cc +5 -7
  174. data/src/core/lib/address_utils/parse_address.cc +2 -0
  175. data/src/core/lib/avl/avl.cc +5 -5
  176. data/src/core/lib/backoff/backoff.cc +1 -1
  177. data/src/core/lib/channel/channel_args.cc +24 -6
  178. data/src/core/lib/channel/channel_args.h +9 -0
  179. data/src/core/lib/channel/channel_stack_builder.cc +3 -3
  180. data/src/core/lib/channel/channel_trace.cc +1 -1
  181. data/src/core/lib/channel/channel_trace.h +1 -1
  182. data/src/core/lib/channel/channelz.cc +3 -3
  183. data/src/core/lib/channel/channelz.h +2 -2
  184. data/src/core/lib/channel/channelz_registry.cc +1 -1
  185. data/src/core/lib/channel/channelz_registry.h +1 -1
  186. data/src/core/lib/channel/connected_channel.cc +1 -3
  187. data/src/core/lib/channel/connected_channel.h +1 -2
  188. data/src/core/lib/compression/compression.cc +2 -2
  189. data/src/core/lib/compression/compression_args.cc +6 -4
  190. data/src/core/lib/compression/compression_internal.cc +2 -2
  191. data/src/core/lib/compression/compression_internal.h +1 -1
  192. data/src/core/lib/config/core_configuration.cc +44 -2
  193. data/src/core/lib/config/core_configuration.h +39 -1
  194. data/src/core/lib/debug/stats.cc +1 -1
  195. data/src/core/lib/debug/stats_data.cc +13 -13
  196. data/src/core/lib/gpr/atm.cc +1 -1
  197. data/src/core/lib/gpr/cpu_posix.cc +1 -1
  198. data/src/core/lib/gpr/string.cc +2 -2
  199. data/src/core/lib/gpr/tls.h +1 -1
  200. data/src/core/lib/gpr/useful.h +79 -32
  201. data/src/core/lib/gprpp/arena.h +10 -0
  202. data/src/core/lib/gprpp/bitset.h +38 -16
  203. data/src/core/lib/gprpp/chunked_vector.h +211 -0
  204. data/src/core/lib/gprpp/construct_destruct.h +1 -1
  205. data/src/core/lib/gprpp/match.h +1 -1
  206. data/src/core/lib/gprpp/memory.h +6 -0
  207. data/src/core/lib/gprpp/overload.h +1 -1
  208. data/src/core/lib/gprpp/status_helper.cc +23 -3
  209. data/src/core/lib/gprpp/status_helper.h +12 -1
  210. data/src/core/lib/gprpp/table.h +411 -0
  211. data/src/core/lib/http/httpcli.cc +200 -182
  212. data/src/core/lib/http/parser.cc +2 -2
  213. data/src/core/lib/iomgr/call_combiner.cc +28 -10
  214. data/src/core/lib/iomgr/combiner.cc +6 -21
  215. data/src/core/lib/iomgr/endpoint_cfstream.cc +7 -6
  216. data/src/core/lib/iomgr/error.cc +113 -52
  217. data/src/core/lib/iomgr/error.h +50 -9
  218. data/src/core/lib/iomgr/error_cfstream.cc +5 -0
  219. data/src/core/lib/iomgr/ev_epoll1_linux.cc +3 -2
  220. data/src/core/lib/iomgr/ev_epollex_linux.cc +7 -7
  221. data/src/core/lib/iomgr/ev_poll_posix.cc +29 -20
  222. data/src/core/lib/iomgr/event_engine/closure.cc +41 -18
  223. data/src/core/lib/iomgr/event_engine/closure.h +10 -1
  224. data/src/core/lib/iomgr/event_engine/endpoint.cc +3 -3
  225. data/src/core/lib/iomgr/event_engine/iomgr.cc +1 -1
  226. data/src/core/lib/iomgr/event_engine/pollset.cc +5 -4
  227. data/src/core/lib/iomgr/event_engine/resolver.cc +10 -7
  228. data/src/core/lib/iomgr/event_engine/tcp.cc +9 -8
  229. data/src/core/lib/iomgr/event_engine/timer.cc +7 -2
  230. data/src/core/lib/iomgr/exec_ctx.cc +1 -9
  231. data/src/core/lib/iomgr/executor/mpmcqueue.cc +5 -7
  232. data/src/core/lib/iomgr/executor/mpmcqueue.h +3 -8
  233. data/src/core/lib/iomgr/executor.cc +6 -20
  234. data/src/core/lib/iomgr/iomgr.cc +3 -1
  235. data/src/core/lib/iomgr/iomgr_internal.cc +4 -9
  236. data/src/core/lib/iomgr/iomgr_internal.h +3 -2
  237. data/src/core/lib/iomgr/load_file.cc +2 -2
  238. data/src/core/lib/iomgr/lockfree_event.cc +18 -0
  239. data/src/core/lib/iomgr/pollset_custom.cc +1 -1
  240. data/src/core/lib/iomgr/pollset_custom.h +1 -1
  241. data/src/core/lib/iomgr/resolve_address_posix.cc +5 -7
  242. data/src/core/lib/iomgr/resource_quota.cc +13 -11
  243. data/src/core/lib/iomgr/socket_factory_posix.cc +2 -2
  244. data/src/core/lib/iomgr/socket_mutator.cc +2 -2
  245. data/src/core/lib/iomgr/socket_utils_common_posix.cc +1 -2
  246. data/src/core/lib/iomgr/tcp_client_cfstream.cc +5 -3
  247. data/src/core/lib/iomgr/tcp_client_custom.cc +1 -1
  248. data/src/core/lib/iomgr/tcp_client_posix.cc +9 -18
  249. data/src/core/lib/iomgr/tcp_client_windows.cc +2 -3
  250. data/src/core/lib/iomgr/tcp_posix.cc +4 -5
  251. data/src/core/lib/iomgr/tcp_server_custom.cc +2 -1
  252. data/src/core/lib/iomgr/tcp_server_posix.cc +3 -4
  253. data/src/core/lib/iomgr/tcp_server_windows.cc +4 -5
  254. data/src/core/lib/iomgr/tcp_windows.cc +2 -2
  255. data/src/core/lib/iomgr/timer_generic.cc +13 -13
  256. data/src/core/lib/iomgr/timer_heap.cc +1 -1
  257. data/src/core/lib/json/json_util.cc +68 -0
  258. data/src/core/lib/json/json_util.h +57 -99
  259. data/src/core/lib/json/json_writer.cc +0 -3
  260. data/src/core/lib/security/authorization/authorization_policy_provider.h +1 -1
  261. data/src/core/lib/security/authorization/authorization_policy_provider_vtable.cc +1 -1
  262. data/src/core/lib/security/authorization/evaluate_args.cc +14 -12
  263. data/src/core/lib/security/authorization/sdk_server_authz_filter.cc +13 -1
  264. data/src/core/lib/security/context/security_context.cc +4 -2
  265. data/src/core/lib/security/credentials/composite/composite_credentials.cc +1 -1
  266. data/src/core/lib/security/credentials/credentials.cc +4 -2
  267. data/src/core/lib/security/credentials/credentials.h +6 -1
  268. data/src/core/lib/security/credentials/external/external_account_credentials.cc +47 -11
  269. data/src/core/lib/security/credentials/external/external_account_credentials.h +1 -0
  270. data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +1 -1
  271. data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +5 -9
  272. data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +2 -2
  273. data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +2 -2
  274. data/src/core/lib/security/security_connector/security_connector.cc +9 -4
  275. data/src/core/lib/security/security_connector/security_connector.h +1 -1
  276. data/src/core/lib/security/security_connector/ssl_utils.cc +1 -1
  277. data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +1 -0
  278. data/src/core/lib/security/security_connector/tls/tls_security_connector.h +0 -2
  279. data/src/core/lib/security/transport/client_auth_filter.cc +5 -5
  280. data/src/core/lib/security/transport/security_handshaker.cc +73 -43
  281. data/src/core/lib/security/transport/server_auth_filter.cc +3 -5
  282. data/src/core/lib/security/transport/tsi_error.cc +3 -5
  283. data/src/core/lib/slice/slice.cc +0 -16
  284. data/src/core/lib/slice/slice_api.cc +39 -0
  285. data/src/core/lib/slice/slice_buffer.cc +5 -5
  286. data/src/core/lib/slice/slice_intern.cc +8 -13
  287. data/src/core/lib/slice/slice_internal.h +1 -244
  288. data/src/core/lib/slice/slice_refcount.cc +17 -0
  289. data/src/core/lib/slice/slice_refcount.h +121 -0
  290. data/src/core/lib/slice/slice_refcount_base.h +173 -0
  291. data/src/core/lib/slice/slice_split.cc +100 -0
  292. data/src/core/lib/slice/slice_split.h +40 -0
  293. data/src/core/lib/slice/slice_string_helpers.cc +0 -83
  294. data/src/core/lib/slice/slice_string_helpers.h +0 -11
  295. data/src/core/lib/slice/static_slice.cc +529 -0
  296. data/src/core/lib/slice/static_slice.h +331 -0
  297. data/src/core/lib/surface/builtins.cc +49 -0
  298. data/src/core/{ext/filters/workarounds/workaround_cronet_compression_filter.h → lib/surface/builtins.h} +8 -9
  299. data/src/core/lib/surface/call.cc +103 -120
  300. data/src/core/lib/surface/call.h +0 -6
  301. data/src/core/lib/surface/channel.cc +19 -32
  302. data/src/core/lib/surface/channel.h +0 -9
  303. data/src/core/lib/surface/channel_init.cc +23 -76
  304. data/src/core/lib/surface/channel_init.h +52 -44
  305. data/src/core/lib/surface/completion_queue.cc +6 -5
  306. data/src/core/lib/surface/init.cc +0 -39
  307. data/src/core/lib/surface/init_secure.cc +17 -14
  308. data/src/core/lib/surface/lame_client.cc +18 -11
  309. data/src/core/lib/surface/lame_client.h +1 -1
  310. data/src/core/lib/surface/server.cc +25 -17
  311. data/src/core/lib/surface/server.h +17 -10
  312. data/src/core/lib/surface/validate_metadata.cc +5 -2
  313. data/src/core/lib/surface/version.cc +2 -2
  314. data/src/core/lib/transport/bdp_estimator.cc +1 -1
  315. data/src/core/lib/transport/error_utils.cc +42 -17
  316. data/src/core/lib/transport/error_utils.h +1 -1
  317. data/src/core/lib/transport/metadata.cc +31 -10
  318. data/src/core/lib/transport/metadata.h +2 -1
  319. data/src/core/lib/transport/metadata_batch.cc +35 -371
  320. data/src/core/lib/transport/metadata_batch.h +905 -71
  321. data/src/core/lib/transport/parsed_metadata.h +263 -0
  322. data/src/core/lib/transport/pid_controller.cc +4 -4
  323. data/src/core/lib/transport/static_metadata.cc +714 -846
  324. data/src/core/lib/transport/static_metadata.h +115 -379
  325. data/src/core/lib/transport/status_metadata.cc +1 -0
  326. data/src/core/lib/transport/transport.cc +4 -5
  327. data/src/core/lib/transport/transport_op_string.cc +40 -20
  328. data/src/core/plugin_registry/grpc_plugin_registry.cc +64 -43
  329. data/src/core/tsi/alts/crypt/aes_gcm.cc +3 -1
  330. data/src/core/tsi/alts/frame_protector/alts_frame_protector.cc +13 -12
  331. data/src/core/tsi/alts/frame_protector/frame_handler.cc +10 -11
  332. data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +1 -2
  333. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +12 -2
  334. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc +1 -1
  335. data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +2 -2
  336. data/src/core/tsi/fake_transport_security.cc +15 -7
  337. data/src/core/tsi/local_transport_security.cc +36 -73
  338. data/src/core/tsi/ssl/session_cache/ssl_session_cache.cc +16 -50
  339. data/src/core/tsi/ssl/session_cache/ssl_session_cache.h +4 -3
  340. data/src/core/tsi/ssl_transport_security.cc +10 -2
  341. data/src/core/tsi/transport_security.cc +12 -0
  342. data/src/core/tsi/transport_security.h +16 -1
  343. data/src/core/tsi/transport_security_interface.h +26 -0
  344. data/src/ruby/ext/grpc/extconf.rb +12 -9
  345. data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +4 -0
  346. data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +6 -0
  347. data/src/ruby/lib/grpc/version.rb +1 -1
  348. data/src/ruby/pb/src/proto/grpc/testing/test_pb.rb +2 -2
  349. data/src/ruby/spec/client_server_spec.rb +1 -1
  350. data/third_party/abseil-cpp/absl/base/internal/thread_identity.cc +4 -4
  351. data/third_party/abseil-cpp/absl/base/internal/thread_identity.h +11 -6
  352. data/third_party/address_sorting/address_sorting_posix.c +1 -0
  353. data/third_party/boringssl-with-bazel/err_data.c +278 -272
  354. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bool.c +21 -22
  355. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_d2i_fp.c +0 -2
  356. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_gentm.c +5 -0
  357. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_mbstr.c +15 -22
  358. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_object.c +13 -7
  359. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_print.c +19 -29
  360. data/third_party/boringssl-with-bazel/src/crypto/{x509 → asn1}/a_strex.c +268 -271
  361. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strnid.c +106 -153
  362. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_time.c +2 -2
  363. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utctm.c +0 -39
  364. data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_par.c +1 -1
  365. data/third_party/boringssl-with-bazel/src/crypto/{x509 → asn1}/charmap.h +0 -0
  366. data/third_party/boringssl-with-bazel/src/crypto/asn1/internal.h +38 -0
  367. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_dec.c +8 -8
  368. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_enc.c +289 -198
  369. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_fre.c +8 -8
  370. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_new.c +9 -13
  371. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_utl.c +1 -0
  372. data/third_party/boringssl-with-bazel/src/crypto/base64/base64.c +11 -8
  373. data/third_party/boringssl-with-bazel/src/crypto/bio/bio_mem.c +1 -7
  374. data/third_party/boringssl-with-bazel/src/crypto/bio/connect.c +1 -5
  375. data/third_party/boringssl-with-bazel/src/crypto/bio/fd.c +0 -4
  376. data/third_party/boringssl-with-bazel/src/crypto/bio/file.c +1 -7
  377. data/third_party/boringssl-with-bazel/src/crypto/bio/pair.c +1 -6
  378. data/third_party/boringssl-with-bazel/src/crypto/bio/socket.c +3 -17
  379. data/third_party/boringssl-with-bazel/src/crypto/blake2/blake2.c +4 -6
  380. data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbb.c +9 -0
  381. data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.c +8 -0
  382. data/third_party/boringssl-with-bazel/src/crypto/chacha/chacha.c +38 -47
  383. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/cipher_extra.c +45 -65
  384. data/third_party/boringssl-with-bazel/src/crypto/digest_extra/digest_extra.c +1 -0
  385. data/third_party/boringssl-with-bazel/src/crypto/evp/scrypt.c +32 -34
  386. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div.c +21 -3
  387. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd_extra.c +3 -2
  388. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +5 -2
  389. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/sqrt.c +5 -9
  390. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aes.c +10 -0
  391. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/des/des.c +10 -11
  392. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/des/internal.h +1 -3
  393. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md4/md4.c +4 -7
  394. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md5/md5.c +4 -7
  395. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/gcm_nohw.c +1 -1
  396. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.c +1 -1
  397. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.c +24 -9
  398. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c +4 -2
  399. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1.c +35 -35
  400. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha256.c +11 -10
  401. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha512.c +10 -37
  402. data/third_party/boringssl-with-bazel/src/crypto/internal.h +39 -0
  403. data/third_party/boringssl-with-bazel/src/crypto/mem.c +12 -9
  404. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_all.c +0 -9
  405. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_info.c +0 -2
  406. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_lib.c +0 -8
  407. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pk8.c +0 -2
  408. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pkey.c +0 -4
  409. data/third_party/boringssl-with-bazel/src/crypto/pkcs7/internal.h +16 -7
  410. data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7.c +9 -4
  411. data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7_x509.c +151 -12
  412. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.c +1 -1
  413. data/third_party/boringssl-with-bazel/src/crypto/siphash/siphash.c +6 -6
  414. data/third_party/boringssl-with-bazel/src/crypto/x509/by_file.c +2 -0
  415. data/third_party/boringssl-with-bazel/src/crypto/x509/internal.h +181 -1
  416. data/third_party/boringssl-with-bazel/src/crypto/x509/name_print.c +246 -0
  417. data/third_party/boringssl-with-bazel/src/crypto/x509/rsa_pss.c +11 -2
  418. data/third_party/boringssl-with-bazel/src/crypto/x509/t_crl.c +0 -2
  419. data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509.c +0 -179
  420. data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509a.c +4 -2
  421. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.c +0 -5
  422. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_obj.c +1 -0
  423. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +11 -50
  424. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vpm.c +1 -1
  425. data/third_party/boringssl-with-bazel/src/crypto/x509/x509name.c +2 -4
  426. data/third_party/boringssl-with-bazel/src/crypto/x509/x_all.c +0 -16
  427. data/third_party/boringssl-with-bazel/src/crypto/x509/x_name.c +22 -18
  428. data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509.c +11 -8
  429. data/third_party/boringssl-with-bazel/src/crypto/x509v3/internal.h +16 -0
  430. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_cache.c +1 -0
  431. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_data.c +1 -1
  432. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_int.h +1 -1
  433. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_map.c +1 -0
  434. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_tree.c +4 -3
  435. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_akey.c +24 -5
  436. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_alt.c +17 -8
  437. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_bitst.c +3 -0
  438. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_cpols.c +6 -6
  439. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_crld.c +4 -0
  440. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_enum.c +5 -0
  441. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_ncons.c +112 -55
  442. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pci.c +2 -1
  443. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_prn.c +0 -2
  444. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_purp.c +1 -1
  445. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_utl.c +71 -26
  446. data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +366 -227
  447. data/third_party/boringssl-with-bazel/src/include/openssl/asn1t.h +2 -9
  448. data/third_party/boringssl-with-bazel/src/include/openssl/base.h +10 -4
  449. data/third_party/boringssl-with-bazel/src/include/openssl/bio.h +3 -1
  450. data/third_party/boringssl-with-bazel/src/include/openssl/bn.h +3 -3
  451. data/third_party/boringssl-with-bazel/src/include/openssl/bytestring.h +9 -0
  452. data/third_party/boringssl-with-bazel/src/include/openssl/cipher.h +8 -2
  453. data/third_party/boringssl-with-bazel/src/include/openssl/hkdf.h +4 -0
  454. data/third_party/boringssl-with-bazel/src/include/openssl/mem.h +9 -3
  455. data/third_party/boringssl-with-bazel/src/include/openssl/pem.h +0 -20
  456. data/third_party/boringssl-with-bazel/src/include/openssl/pkcs7.h +12 -5
  457. data/third_party/boringssl-with-bazel/src/include/openssl/rsa.h +5 -0
  458. data/third_party/boringssl-with-bazel/src/include/openssl/span.h +37 -15
  459. data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +28 -14
  460. data/third_party/boringssl-with-bazel/src/include/openssl/tls1.h +31 -32
  461. data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +529 -91
  462. data/third_party/boringssl-with-bazel/src/include/openssl/x509_vfy.h +16 -695
  463. data/third_party/boringssl-with-bazel/src/include/openssl/x509v3.h +48 -8
  464. data/third_party/boringssl-with-bazel/src/ssl/encrypted_client_hello.cc +266 -357
  465. data/third_party/boringssl-with-bazel/src/ssl/extensions.cc +90 -152
  466. data/third_party/boringssl-with-bazel/src/ssl/handshake.cc +15 -13
  467. data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +75 -79
  468. data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +96 -97
  469. data/third_party/boringssl-with-bazel/src/ssl/internal.h +63 -43
  470. data/third_party/boringssl-with-bazel/src/ssl/ssl_cipher.cc +2 -2
  471. data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +2 -2
  472. data/third_party/boringssl-with-bazel/src/ssl/ssl_transcript.cc +6 -12
  473. data/third_party/boringssl-with-bazel/src/ssl/ssl_x509.cc +14 -17
  474. data/third_party/boringssl-with-bazel/src/ssl/tls13_both.cc +14 -27
  475. data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +203 -203
  476. data/third_party/boringssl-with-bazel/src/ssl/tls13_enc.cc +30 -41
  477. data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +47 -33
  478. data/third_party/re2/re2/compile.cc +91 -109
  479. data/third_party/re2/re2/dfa.cc +27 -39
  480. data/third_party/re2/re2/filtered_re2.cc +18 -2
  481. data/third_party/re2/re2/filtered_re2.h +10 -5
  482. data/third_party/re2/re2/nfa.cc +1 -1
  483. data/third_party/re2/re2/parse.cc +42 -23
  484. data/third_party/re2/re2/perl_groups.cc +34 -34
  485. data/third_party/re2/re2/prefilter.cc +3 -2
  486. data/third_party/re2/re2/prog.cc +182 -4
  487. data/third_party/re2/re2/prog.h +28 -9
  488. data/third_party/re2/re2/re2.cc +87 -118
  489. data/third_party/re2/re2/re2.h +156 -141
  490. data/third_party/re2/re2/regexp.cc +12 -5
  491. data/third_party/re2/re2/regexp.h +8 -2
  492. data/third_party/re2/re2/set.cc +31 -9
  493. data/third_party/re2/re2/set.h +9 -4
  494. data/third_party/re2/re2/simplify.cc +11 -3
  495. data/third_party/re2/re2/tostring.cc +1 -1
  496. data/third_party/re2/re2/walker-inl.h +1 -1
  497. data/third_party/re2/util/mutex.h +2 -2
  498. data/third_party/re2/util/pcre.h +3 -3
  499. metadata +83 -70
  500. data/include/grpc/event_engine/slice_allocator.h +0 -71
  501. data/src/core/ext/filters/client_channel/service_config_call_data.h +0 -126
  502. data/src/core/ext/filters/workarounds/workaround_cronet_compression_filter.cc +0 -211
  503. data/src/core/ext/filters/workarounds/workaround_utils.cc +0 -53
  504. data/src/core/ext/filters/workarounds/workaround_utils.h +0 -39
  505. data/src/core/ext/transport/chttp2/client/authority.cc +0 -42
  506. data/src/core/ext/transport/chttp2/client/authority.h +0 -36
  507. data/src/core/ext/transport/chttp2/transport/chttp2_slice_allocator.cc +0 -67
  508. data/src/core/ext/transport/chttp2/transport/chttp2_slice_allocator.h +0 -74
  509. data/src/core/ext/transport/chttp2/transport/incoming_metadata.cc +0 -66
  510. data/src/core/ext/transport/chttp2/transport/incoming_metadata.h +0 -58
  511. data/src/core/ext/upb-generated/udpa/data/orca/v1/orca_load_report.upb.c +0 -58
  512. data/src/core/ext/upb-generated/udpa/data/orca/v1/orca_load_report.upb.h +0 -130
  513. data/src/core/ext/upb-generated/udpa/type/v1/typed_struct.upb.h +0 -83
  514. data/src/core/ext/upbdefs-generated/udpa/type/v1/typed_struct.upbdefs.c +0 -44
  515. data/src/core/ext/upbdefs-generated/udpa/type/v1/typed_struct.upbdefs.h +0 -35
  516. data/src/core/lib/iomgr/udp_server.cc +0 -747
  517. data/src/core/lib/iomgr/udp_server.h +0 -103
  518. data/src/core/lib/transport/authority_override.cc +0 -40
  519. data/src/core/lib/transport/authority_override.h +0 -37
@@ -111,10 +111,6 @@ extern "C" {
111
111
  // V_ASN1_UNDEF is used in some APIs to indicate an ASN.1 element is omitted.
112
112
  #define V_ASN1_UNDEF (-1)
113
113
 
114
- // V_ASN1_APP_CHOOSE is used in some APIs to specify a default ASN.1 type based
115
- // on the context.
116
- #define V_ASN1_APP_CHOOSE (-2)
117
-
118
114
  // V_ASN1_OTHER is used in |ASN1_TYPE| to indicate a non-universal ASN.1 type.
119
115
  #define V_ASN1_OTHER (-3)
120
116
 
@@ -157,6 +153,31 @@ extern "C" {
157
153
  #define V_ASN1_NEG_INTEGER (V_ASN1_INTEGER | V_ASN1_NEG)
158
154
  #define V_ASN1_NEG_ENUMERATED (V_ASN1_ENUMERATED | V_ASN1_NEG)
159
155
 
156
+ // The following constants are bitmask representations of ASN.1 types.
157
+ #define B_ASN1_NUMERICSTRING 0x0001
158
+ #define B_ASN1_PRINTABLESTRING 0x0002
159
+ #define B_ASN1_T61STRING 0x0004
160
+ #define B_ASN1_TELETEXSTRING 0x0004
161
+ #define B_ASN1_VIDEOTEXSTRING 0x0008
162
+ #define B_ASN1_IA5STRING 0x0010
163
+ #define B_ASN1_GRAPHICSTRING 0x0020
164
+ #define B_ASN1_ISO64STRING 0x0040
165
+ #define B_ASN1_VISIBLESTRING 0x0040
166
+ #define B_ASN1_GENERALSTRING 0x0080
167
+ #define B_ASN1_UNIVERSALSTRING 0x0100
168
+ #define B_ASN1_OCTET_STRING 0x0200
169
+ #define B_ASN1_BIT_STRING 0x0400
170
+ #define B_ASN1_BMPSTRING 0x0800
171
+ #define B_ASN1_UNKNOWN 0x1000
172
+ #define B_ASN1_UTF8STRING 0x2000
173
+ #define B_ASN1_UTCTIME 0x4000
174
+ #define B_ASN1_GENERALIZEDTIME 0x8000
175
+ #define B_ASN1_SEQUENCE 0x10000
176
+
177
+ // ASN1_tag2str returns a string representation of |tag|, interpret as a tag
178
+ // number for a universal type, or |V_ASN1_NEG_*|.
179
+ OPENSSL_EXPORT const char *ASN1_tag2str(int tag);
180
+
160
181
 
161
182
  // Strings.
162
183
  //
@@ -232,14 +253,6 @@ struct asn1_string_st {
232
253
  // treated as padding. This behavior is deprecated and should not be used.
233
254
  #define ASN1_STRING_FLAG_BITS_LEFT 0x08
234
255
 
235
- // ASN1_STRING_FLAG_MSTRING indicates that the |ASN1_STRING| is an MSTRING type,
236
- // which is how this library refers to a CHOICE type of several string types.
237
- // For example, DirectoryString as defined in RFC5280.
238
- //
239
- // TODO(davidben): This is only used in one place within the library and is easy
240
- // to accidentally drop. Can it be removed?
241
- #define ASN1_STRING_FLAG_MSTRING 0x040
242
-
243
256
  // ASN1_STRING_type_new returns a newly-allocated empty |ASN1_STRING| object of
244
257
  // type |type|, or NULL on error.
245
258
  OPENSSL_EXPORT ASN1_STRING *ASN1_STRING_type_new(int type);
@@ -311,6 +324,96 @@ OPENSSL_EXPORT void ASN1_STRING_set0(ASN1_STRING *str, void *data, int len);
311
324
  OPENSSL_EXPORT int ASN1_STRING_to_UTF8(unsigned char **out,
312
325
  const ASN1_STRING *in);
313
326
 
327
+ // The following formats define encodings for use with functions like
328
+ // |ASN1_mbstring_copy|.
329
+ #define MBSTRING_FLAG 0x1000
330
+ #define MBSTRING_UTF8 (MBSTRING_FLAG)
331
+ // |MBSTRING_ASC| refers to Latin-1, not ASCII.
332
+ #define MBSTRING_ASC (MBSTRING_FLAG | 1)
333
+ #define MBSTRING_BMP (MBSTRING_FLAG | 2)
334
+ #define MBSTRING_UNIV (MBSTRING_FLAG | 4)
335
+
336
+ // DIRSTRING_TYPE contains the valid string types in an X.509 DirectoryString.
337
+ #define DIRSTRING_TYPE \
338
+ (B_ASN1_PRINTABLESTRING | B_ASN1_T61STRING | B_ASN1_BMPSTRING | \
339
+ B_ASN1_UTF8STRING)
340
+
341
+ // PKCS9STRING_TYPE contains the valid string types in a PKCS9String.
342
+ #define PKCS9STRING_TYPE (DIRSTRING_TYPE | B_ASN1_IA5STRING)
343
+
344
+ // ASN1_mbstring_copy converts |len| bytes from |in| to an ASN.1 string. If
345
+ // |len| is -1, |in| must be NUL-terminated and the length is determined by
346
+ // |strlen|. |in| is decoded according to |inform|, which must be one of
347
+ // |MBSTRING_*|. |mask| determines the set of valid output types and is a
348
+ // bitmask containing a subset of |B_ASN1_PRINTABLESTRING|, |B_ASN1_IA5STRING|,
349
+ // |B_ASN1_T61STRING|, |B_ASN1_BMPSTRING|, |B_ASN1_UNIVERSALSTRING|, and
350
+ // |B_ASN1_UTF8STRING|, in that preference order. This function chooses the
351
+ // first output type in |mask| which can represent |in|. It interprets T61String
352
+ // as Latin-1, rather than T.61.
353
+ //
354
+ // If |mask| is zero, |DIRSTRING_TYPE| is used by default.
355
+ //
356
+ // On success, this function returns the |V_ASN1_*| constant corresponding to
357
+ // the selected output type and, if |out| and |*out| are both non-NULL, updates
358
+ // the object at |*out| with the result. If |out| is non-NULL and |*out| is
359
+ // NULL, it instead sets |*out| to a newly-allocated |ASN1_STRING| containing
360
+ // the result. If |out| is NULL, it returns the selected output type without
361
+ // constructing an |ASN1_STRING|. On error, this function returns -1.
362
+ OPENSSL_EXPORT int ASN1_mbstring_copy(ASN1_STRING **out, const uint8_t *in,
363
+ int len, int inform, unsigned long mask);
364
+
365
+ // ASN1_mbstring_ncopy behaves like |ASN1_mbstring_copy| but returns an error if
366
+ // the input is less than |minsize| or greater than |maxsize| codepoints long. A
367
+ // |maxsize| value of zero is ignored. Note the sizes are measured in
368
+ // codepoints, not output bytes.
369
+ OPENSSL_EXPORT int ASN1_mbstring_ncopy(ASN1_STRING **out, const uint8_t *in,
370
+ int len, int inform, unsigned long mask,
371
+ long minsize, long maxsize);
372
+
373
+ // ASN1_STRING_set_by_NID behaves like |ASN1_mbstring_ncopy|, but determines
374
+ // |mask|, |minsize|, and |maxsize| based on |nid|. When |nid| is a recognized
375
+ // X.509 attribute type, it will pick a suitable ASN.1 string type and bounds.
376
+ // For most attribute types, it preferentially chooses UTF8String. If |nid| is
377
+ // unrecognized, it uses UTF8String by default.
378
+ //
379
+ // Slightly unlike |ASN1_mbstring_ncopy|, this function interprets |out| and
380
+ // returns its result as follows: If |out| is NULL, it returns a newly-allocated
381
+ // |ASN1_STRING| containing the result. If |out| is non-NULL and
382
+ // |*out| is NULL, it additionally sets |*out| to the result. If both |out| and
383
+ // |*out| are non-NULL, it instead updates the object at |*out| and returns
384
+ // |*out|. In all cases, it returns NULL on error.
385
+ //
386
+ // This function supports the following NIDs: |NID_countryName|,
387
+ // |NID_dnQualifier|, |NID_domainComponent|, |NID_friendlyName|,
388
+ // |NID_givenName|, |NID_initials|, |NID_localityName|, |NID_ms_csp_name|,
389
+ // |NID_name|, |NID_organizationalUnitName|, |NID_organizationName|,
390
+ // |NID_pkcs9_challengePassword|, |NID_pkcs9_emailAddress|,
391
+ // |NID_pkcs9_unstructuredAddress|, |NID_pkcs9_unstructuredName|,
392
+ // |NID_serialNumber|, |NID_stateOrProvinceName|, and |NID_surname|. Additional
393
+ // NIDs may be registered with |ASN1_STRING_set_by_NID|, but it is recommended
394
+ // to call |ASN1_mbstring_ncopy| directly instead.
395
+ OPENSSL_EXPORT ASN1_STRING *ASN1_STRING_set_by_NID(ASN1_STRING **out,
396
+ const unsigned char *in,
397
+ int len, int inform,
398
+ int nid);
399
+
400
+ // STABLE_NO_MASK causes |ASN1_STRING_TABLE_add| to allow types other than
401
+ // UTF8String.
402
+ #define STABLE_NO_MASK 0x02
403
+
404
+ // ASN1_STRING_TABLE_add registers the corresponding parameters with |nid|, for
405
+ // use with |ASN1_STRING_set_by_NID|. It returns one on success and zero on
406
+ // error. It is an error to call this function if |nid| is a built-in NID, or
407
+ // was already registered by a previous call.
408
+ //
409
+ // WARNING: This function affects global state in the library. If two libraries
410
+ // in the same address space register information for the same OID, one call
411
+ // will fail. Prefer directly passing the desired parametrs to
412
+ // |ASN1_mbstring_copy| or |ASN1_mbstring_ncopy| instead.
413
+ OPENSSL_EXPORT int ASN1_STRING_TABLE_add(int nid, long minsize, long maxsize,
414
+ unsigned long mask,
415
+ unsigned long flags);
416
+
314
417
  // TODO(davidben): Expand and document function prototypes generated in macros.
315
418
 
316
419
 
@@ -321,7 +424,7 @@ OPENSSL_EXPORT int ASN1_STRING_to_UTF8(unsigned char **out,
321
424
  // in several forms:
322
425
  //
323
426
  // Some BIT STRINGs represent a bitmask of named bits, such as the X.509 key
324
- // usage extension in RFC5280, section 4.2.1.3. For such bit strings, DER
427
+ // usage extension in RFC 5280, section 4.2.1.3. For such bit strings, DER
325
428
  // imposes an additional restriction that trailing zero bits are removed. Some
326
429
  // functions like |ASN1_BIT_STRING_set_bit| help in maintaining this.
327
430
  //
@@ -452,6 +555,135 @@ OPENSSL_EXPORT BIGNUM *ASN1_ENUMERATED_to_BN(const ASN1_ENUMERATED *ai,
452
555
  // TODO(davidben): Expand and document function prototypes generated in macros.
453
556
 
454
557
 
558
+ // Time.
559
+ //
560
+ // GeneralizedTime and UTCTime values are represented as |ASN1_STRING|s. The
561
+ // type field is |V_ASN1_GENERALIZEDTIME| or |V_ASN1_UTCTIME|, respectively. The
562
+ // data field contains the DER encoding of the value. For example, the UNIX
563
+ // epoch would be "19700101000000Z" for a GeneralizedTime and "700101000000Z"
564
+ // for a UTCTime.
565
+ //
566
+ // ASN.1 does not define how to interpret UTCTime's two-digit year. RFC 5280
567
+ // defines it as a range from 1950 to 2049 for X.509. The library uses the
568
+ // RFC 5280 interpretation. It does not currently enforce the restrictions from
569
+ // BER, and the additional restrictions from RFC 5280, but future versions may.
570
+ // Callers should not rely on fractional seconds and non-UTC time zones.
571
+ //
572
+ // The |ASN1_TIME| typedef represents the X.509 Time type, which is a CHOICE of
573
+ // GeneralizedTime and UTCTime, using UTCTime when the value is in range.
574
+
575
+ // ASN1_UTCTIME_check returns one if |a| is a valid UTCTime and zero otherwise.
576
+ OPENSSL_EXPORT int ASN1_UTCTIME_check(const ASN1_UTCTIME *a);
577
+
578
+ // ASN1_UTCTIME_set represents |t| as a UTCTime and writes the result to |s|. It
579
+ // returns |s| on success and NULL on error. If |s| is NULL, it returns a
580
+ // newly-allocated |ASN1_UTCTIME| instead.
581
+ //
582
+ // Note this function may fail if the time is out of range for UTCTime.
583
+ OPENSSL_EXPORT ASN1_UTCTIME *ASN1_UTCTIME_set(ASN1_UTCTIME *s, time_t t);
584
+
585
+ // ASN1_UTCTIME_adj adds |offset_day| days and |offset_sec| seconds to |t| and
586
+ // writes the result to |s| as a UTCTime. It returns |s| on success and NULL on
587
+ // error. If |s| is NULL, it returns a newly-allocated |ASN1_UTCTIME| instead.
588
+ //
589
+ // Note this function may fail if the time overflows or is out of range for
590
+ // UTCTime.
591
+ OPENSSL_EXPORT ASN1_UTCTIME *ASN1_UTCTIME_adj(ASN1_UTCTIME *s, time_t t,
592
+ int offset_day, long offset_sec);
593
+
594
+ // ASN1_UTCTIME_set_string sets |s| to a UTCTime whose contents are a copy of
595
+ // |str|. It returns one on success and zero on error or if |str| is not a valid
596
+ // UTCTime.
597
+ //
598
+ // If |s| is NULL, this function validates |str| without copying it.
599
+ OPENSSL_EXPORT int ASN1_UTCTIME_set_string(ASN1_UTCTIME *s, const char *str);
600
+
601
+ // ASN1_UTCTIME_cmp_time_t compares |s| to |t|. It returns -1 if |s| < |t|, 0 if
602
+ // they are equal, 1 if |s| > |t|, and -2 on error.
603
+ OPENSSL_EXPORT int ASN1_UTCTIME_cmp_time_t(const ASN1_UTCTIME *s, time_t t);
604
+
605
+ // ASN1_GENERALIZEDTIME_check returns one if |a| is a valid GeneralizedTime and
606
+ // zero otherwise.
607
+ OPENSSL_EXPORT int ASN1_GENERALIZEDTIME_check(const ASN1_GENERALIZEDTIME *a);
608
+
609
+ // ASN1_GENERALIZEDTIME_set represents |t| as a GeneralizedTime and writes the
610
+ // result to |s|. It returns |s| on success and NULL on error. If |s| is NULL,
611
+ // it returns a newly-allocated |ASN1_GENERALIZEDTIME| instead.
612
+ //
613
+ // Note this function may fail if the time is out of range for GeneralizedTime.
614
+ OPENSSL_EXPORT ASN1_GENERALIZEDTIME *ASN1_GENERALIZEDTIME_set(
615
+ ASN1_GENERALIZEDTIME *s, time_t t);
616
+
617
+ // ASN1_GENERALIZEDTIME_adj adds |offset_day| days and |offset_sec| seconds to
618
+ // |t| and writes the result to |s| as a GeneralizedTime. It returns |s| on
619
+ // success and NULL on error. If |s| is NULL, it returns a newly-allocated
620
+ // |ASN1_GENERALIZEDTIME| instead.
621
+ //
622
+ // Note this function may fail if the time overflows or is out of range for
623
+ // GeneralizedTime.
624
+ OPENSSL_EXPORT ASN1_GENERALIZEDTIME *ASN1_GENERALIZEDTIME_adj(
625
+ ASN1_GENERALIZEDTIME *s, time_t t, int offset_day, long offset_sec);
626
+
627
+ // ASN1_GENERALIZEDTIME_set_string sets |s| to a GeneralizedTime whose contents
628
+ // are a copy of |str|. It returns one on success and zero on error or if |str|
629
+ // is not a valid GeneralizedTime.
630
+ //
631
+ // If |s| is NULL, this function validates |str| without copying it.
632
+ OPENSSL_EXPORT int ASN1_GENERALIZEDTIME_set_string(ASN1_GENERALIZEDTIME *s,
633
+ const char *str);
634
+
635
+ // ASN1_TIME_diff computes |to| - |from|. On success, it sets |*out_days| to the
636
+ // difference in days, rounded towards zero, sets |*out_seconds| to the
637
+ // remainder, and returns one. On error, it returns zero.
638
+ //
639
+ // If |from| is before |to|, both outputs will be <= 0, with at least one
640
+ // negative. If |from| is after |to|, both will be >= 0, with at least one
641
+ // positive. If they are equal, ignoring fractional seconds, both will be zero.
642
+ //
643
+ // Note this function may fail on overflow, or if |from| or |to| cannot be
644
+ // decoded.
645
+ OPENSSL_EXPORT int ASN1_TIME_diff(int *out_days, int *out_seconds,
646
+ const ASN1_TIME *from, const ASN1_TIME *to);
647
+
648
+ // ASN1_TIME_set represents |t| as a GeneralizedTime or UTCTime and writes
649
+ // the result to |s|. As in RFC 5280, section 4.1.2.5, it uses UTCTime when the
650
+ // time fits and GeneralizedTime otherwise. It returns |s| on success and NULL
651
+ // on error. If |s| is NULL, it returns a newly-allocated |ASN1_TIME| instead.
652
+ //
653
+ // Note this function may fail if the time is out of range for GeneralizedTime.
654
+ OPENSSL_EXPORT ASN1_TIME *ASN1_TIME_set(ASN1_TIME *s, time_t t);
655
+
656
+ // ASN1_TIME_adj adds |offset_day| days and |offset_sec| seconds to
657
+ // |t| and writes the result to |s|. As in RFC 5280, section 4.1.2.5, it uses
658
+ // UTCTime when the time fits and GeneralizedTime otherwise. It returns |s| on
659
+ // success and NULL on error. If |s| is NULL, it returns a newly-allocated
660
+ // |ASN1_GENERALIZEDTIME| instead.
661
+ //
662
+ // Note this function may fail if the time overflows or is out of range for
663
+ // GeneralizedTime.
664
+ OPENSSL_EXPORT ASN1_TIME *ASN1_TIME_adj(ASN1_TIME *s, time_t t, int offset_day,
665
+ long offset_sec);
666
+
667
+ // ASN1_TIME_check returns one if |t| is a valid UTCTime or GeneralizedTime, and
668
+ // zero otherwise. |t|'s type determines which check is performed. This
669
+ // function does not enforce that UTCTime was used when possible.
670
+ OPENSSL_EXPORT int ASN1_TIME_check(const ASN1_TIME *t);
671
+
672
+ // ASN1_TIME_to_generalizedtime converts |t| to a GeneralizedTime. If |out| is
673
+ // NULL, it returns a newly-allocated |ASN1_GENERALIZEDTIME| on success, or NULL
674
+ // on error. If |out| is non-NULL and |*out| is NULL, it additionally sets
675
+ // |*out| to the result. If |out| and |*out| are non-NULL, it instead updates
676
+ // the object pointed by |*out| and returns |*out| on success or NULL on error.
677
+ OPENSSL_EXPORT ASN1_GENERALIZEDTIME *ASN1_TIME_to_generalizedtime(
678
+ const ASN1_TIME *t, ASN1_GENERALIZEDTIME **out);
679
+
680
+ // ASN1_TIME_set_string behaves like |ASN1_UTCTIME_set_string| if |str| is a
681
+ // valid UTCTime, and |ASN1_GENERALIZEDTIME_set_string| if |str| is a valid
682
+ // GeneralizedTime. If |str| is neither, it returns zero.
683
+ OPENSSL_EXPORT int ASN1_TIME_set_string(ASN1_TIME *s, const char *str);
684
+
685
+ // TODO(davidben): Expand and document function prototypes generated in macros.
686
+
455
687
 
456
688
  // Arbitrary elements.
457
689
 
@@ -558,40 +790,126 @@ OPENSSL_EXPORT int ASN1_TYPE_cmp(const ASN1_TYPE *a, const ASN1_TYPE *b);
558
790
  // the macros, document them, and move them to this section.
559
791
 
560
792
 
561
- // Underdocumented functions.
793
+ // Human-readable output.
562
794
  //
563
- // The following functions are not yet documented and organized.
795
+ // The following functions output types in some human-readable format. These
796
+ // functions may be used for debugging and logging. However, the output should
797
+ // not be consumed programmatically. They may be ambiguous or lose information.
564
798
 
565
- // For use with d2i_ASN1_type_bytes()
566
- #define B_ASN1_NUMERICSTRING 0x0001
567
- #define B_ASN1_PRINTABLESTRING 0x0002
568
- #define B_ASN1_T61STRING 0x0004
569
- #define B_ASN1_TELETEXSTRING 0x0004
570
- #define B_ASN1_VIDEOTEXSTRING 0x0008
571
- #define B_ASN1_IA5STRING 0x0010
572
- #define B_ASN1_GRAPHICSTRING 0x0020
573
- #define B_ASN1_ISO64STRING 0x0040
574
- #define B_ASN1_VISIBLESTRING 0x0040
575
- #define B_ASN1_GENERALSTRING 0x0080
576
- #define B_ASN1_UNIVERSALSTRING 0x0100
577
- #define B_ASN1_OCTET_STRING 0x0200
578
- #define B_ASN1_BIT_STRING 0x0400
579
- #define B_ASN1_BMPSTRING 0x0800
580
- #define B_ASN1_UNKNOWN 0x1000
581
- #define B_ASN1_UTF8STRING 0x2000
582
- #define B_ASN1_UTCTIME 0x4000
583
- #define B_ASN1_GENERALIZEDTIME 0x8000
584
- #define B_ASN1_SEQUENCE 0x10000
799
+ // ASN1_UTCTIME_print writes a human-readable representation of |a| to |out|. It
800
+ // returns one on success and zero on error.
801
+ OPENSSL_EXPORT int ASN1_UTCTIME_print(BIO *out, const ASN1_UTCTIME *a);
585
802
 
586
- // For use with ASN1_mbstring_copy()
587
- #define MBSTRING_FLAG 0x1000
588
- #define MBSTRING_UTF8 (MBSTRING_FLAG)
589
- // |MBSTRING_ASC| refers to Latin-1, not ASCII. It is used with TeletexString
590
- // which, in turn, is treated as Latin-1 rather than T.61 by OpenSSL and most
591
- // other software.
592
- #define MBSTRING_ASC (MBSTRING_FLAG | 1)
593
- #define MBSTRING_BMP (MBSTRING_FLAG | 2)
594
- #define MBSTRING_UNIV (MBSTRING_FLAG | 4)
803
+ // ASN1_GENERALIZEDTIME_print writes a human-readable representation of |a| to
804
+ // |out|. It returns one on success and zero on error.
805
+ OPENSSL_EXPORT int ASN1_GENERALIZEDTIME_print(BIO *out,
806
+ const ASN1_GENERALIZEDTIME *a);
807
+
808
+ // ASN1_TIME_print writes a human-readable representation of |a| to |out|. It
809
+ // returns one on success and zero on error.
810
+ OPENSSL_EXPORT int ASN1_TIME_print(BIO *out, const ASN1_TIME *a);
811
+
812
+ // ASN1_STRING_print writes a human-readable representation of |str| to |out|.
813
+ // It returns one on success and zero on error. Unprintable characters are
814
+ // replaced with '.'.
815
+ OPENSSL_EXPORT int ASN1_STRING_print(BIO *out, const ASN1_STRING *str);
816
+
817
+ // ASN1_STRFLGS_ESC_2253 causes characters to be escaped as in RFC 2253, section
818
+ // 2.4.
819
+ #define ASN1_STRFLGS_ESC_2253 1
820
+
821
+ // ASN1_STRFLGS_ESC_CTRL causes all control characters to be escaped.
822
+ #define ASN1_STRFLGS_ESC_CTRL 2
823
+
824
+ // ASN1_STRFLGS_ESC_MSB causes all characters above 127 to be escaped.
825
+ #define ASN1_STRFLGS_ESC_MSB 4
826
+
827
+ // ASN1_STRFLGS_ESC_QUOTE causes the string to be surrounded by quotes, rather
828
+ // than using backslashes, when characters are escaped. Fewer characters will
829
+ // require escapes in this case.
830
+ #define ASN1_STRFLGS_ESC_QUOTE 8
831
+
832
+ // ASN1_STRFLGS_UTF8_CONVERT causes the string to be encoded as UTF-8, with each
833
+ // byte in the UTF-8 encoding treated as an individual character for purposes of
834
+ // escape sequences. If not set, each Unicode codepoint in the string is treated
835
+ // as a character, with wide characters escaped as "\Uxxxx" or "\Wxxxxxxxx".
836
+ // Note this can be ambiguous if |ASN1_STRFLGS_ESC_*| are all unset. In that
837
+ // case, backslashes are not escaped, but wide characters are.
838
+ #define ASN1_STRFLGS_UTF8_CONVERT 0x10
839
+
840
+ // ASN1_STRFLGS_IGNORE_TYPE causes the string type to be ignored. The
841
+ // |ASN1_STRING| in-memory representation will be printed directly.
842
+ #define ASN1_STRFLGS_IGNORE_TYPE 0x20
843
+
844
+ // ASN1_STRFLGS_SHOW_TYPE causes the string type to be included in the output.
845
+ #define ASN1_STRFLGS_SHOW_TYPE 0x40
846
+
847
+ // ASN1_STRFLGS_DUMP_ALL causes all strings to be printed as a hexdump, using
848
+ // RFC 2253 hexstring notation, such as "#0123456789ABCDEF".
849
+ #define ASN1_STRFLGS_DUMP_ALL 0x80
850
+
851
+ // ASN1_STRFLGS_DUMP_UNKNOWN behaves like |ASN1_STRFLGS_DUMP_ALL| but only
852
+ // applies to values of unknown type. If unset, unknown values will print
853
+ // their contents as single-byte characters with escape sequences.
854
+ #define ASN1_STRFLGS_DUMP_UNKNOWN 0x100
855
+
856
+ // ASN1_STRFLGS_DUMP_DER causes hexdumped strings (as determined by
857
+ // |ASN1_STRFLGS_DUMP_ALL| or |ASN1_STRFLGS_DUMP_UNKNOWN|) to print the entire
858
+ // DER element as in RFC 2253, rather than only the contents of the
859
+ // |ASN1_STRING|.
860
+ #define ASN1_STRFLGS_DUMP_DER 0x200
861
+
862
+ // ASN1_STRFLGS_RFC2253 causes the string to be escaped as in RFC 2253,
863
+ // additionally escaping control characters.
864
+ #define ASN1_STRFLGS_RFC2253 \
865
+ (ASN1_STRFLGS_ESC_2253 | ASN1_STRFLGS_ESC_CTRL | ASN1_STRFLGS_ESC_MSB | \
866
+ ASN1_STRFLGS_UTF8_CONVERT | ASN1_STRFLGS_DUMP_UNKNOWN | \
867
+ ASN1_STRFLGS_DUMP_DER)
868
+
869
+ // ASN1_STRING_print_ex writes a human-readable representation of |str| to
870
+ // |out|. It returns the number of bytes written on success and -1 on error. If
871
+ // |out| is NULL, it returns the number of bytes it would have written, without
872
+ // writing anything.
873
+ //
874
+ // The |flags| should be a combination of combination of |ASN1_STRFLGS_*|
875
+ // constants. See the documentation for each flag for how it controls the
876
+ // output. If unsure, use |ASN1_STRFLGS_RFC2253|.
877
+ OPENSSL_EXPORT int ASN1_STRING_print_ex(BIO *out, const ASN1_STRING *str,
878
+ unsigned long flags);
879
+
880
+ // ASN1_STRING_print_ex_fp behaves like |ASN1_STRING_print_ex| but writes to a
881
+ // |FILE| rather than a |BIO|.
882
+ OPENSSL_EXPORT int ASN1_STRING_print_ex_fp(FILE *fp, const ASN1_STRING *str,
883
+ unsigned long flags);
884
+
885
+
886
+ // Deprecated functions.
887
+
888
+ // ASN1_PRINTABLE_type interprets |len| bytes from |s| as a Latin-1 string. It
889
+ // returns the first of |V_ASN1_PRINTABLESTRING|, |V_ASN1_IA5STRING|, or
890
+ // |V_ASN1_T61STRING| that can represent every character. If |len| is negative,
891
+ // |strlen(s)| is used instead.
892
+ //
893
+ // TODO(davidben): Remove this once all copies of Conscrypt have been updated
894
+ // past https://github.com/google/conscrypt/pull/1032.
895
+ OPENSSL_EXPORT int ASN1_PRINTABLE_type(const unsigned char *s, int len);
896
+
897
+ // ASN1_STRING_set_default_mask does nothing.
898
+ OPENSSL_EXPORT void ASN1_STRING_set_default_mask(unsigned long mask);
899
+
900
+ // ASN1_STRING_set_default_mask_asc returns one.
901
+ OPENSSL_EXPORT int ASN1_STRING_set_default_mask_asc(const char *p);
902
+
903
+ // ASN1_STRING_get_default_mask returns |B_ASN1_UTF8STRING|.
904
+ OPENSSL_EXPORT unsigned long ASN1_STRING_get_default_mask(void);
905
+
906
+ // ASN1_STRING_TABLE_cleanup does nothing.
907
+ OPENSSL_EXPORT void ASN1_STRING_TABLE_cleanup(void);
908
+
909
+
910
+ // Underdocumented functions.
911
+ //
912
+ // The following functions are not yet documented and organized.
595
913
 
596
914
  DEFINE_STACK_OF(ASN1_OBJECT)
597
915
 
@@ -613,32 +931,6 @@ typedef struct ASN1_ENCODING_st {
613
931
  unsigned alias_only_on_next_parse : 1;
614
932
  } ASN1_ENCODING;
615
933
 
616
- #define STABLE_FLAGS_MALLOC 0x01
617
- #define STABLE_NO_MASK 0x02
618
- #define DIRSTRING_TYPE \
619
- (B_ASN1_PRINTABLESTRING | B_ASN1_T61STRING | B_ASN1_BMPSTRING | \
620
- B_ASN1_UTF8STRING)
621
- #define PKCS9STRING_TYPE (DIRSTRING_TYPE | B_ASN1_IA5STRING)
622
-
623
- typedef struct asn1_string_table_st {
624
- int nid;
625
- long minsize;
626
- long maxsize;
627
- unsigned long mask;
628
- unsigned long flags;
629
- } ASN1_STRING_TABLE;
630
-
631
- // size limits: this stuff is taken straight from RFC2459
632
-
633
- #define ub_name 32768
634
- #define ub_common_name 64
635
- #define ub_locality_name 128
636
- #define ub_state_name 128
637
- #define ub_organization_name 64
638
- #define ub_organization_unit_name 64
639
- #define ub_title 64
640
- #define ub_email_address 128
641
-
642
934
  // Declarations for template structures: for full definitions
643
935
  // see asn1t.h
644
936
  typedef struct ASN1_TEMPLATE_st ASN1_TEMPLATE;
@@ -679,13 +971,6 @@ typedef struct ASN1_TLC_st ASN1_TLC;
679
971
  OPENSSL_EXPORT type *name##_new(void); \
680
972
  OPENSSL_EXPORT void name##_free(type *a);
681
973
 
682
- #define DECLARE_ASN1_PRINT_FUNCTION(stname) \
683
- DECLARE_ASN1_PRINT_FUNCTION_fname(stname, stname)
684
-
685
- #define DECLARE_ASN1_PRINT_FUNCTION_fname(stname, fname) \
686
- OPENSSL_EXPORT int fname##_print_ctx(BIO *out, stname *x, int indent, \
687
- const ASN1_PCTX *pctx);
688
-
689
974
  typedef void *d2i_of_void(void **, const unsigned char **, long);
690
975
  typedef int i2d_of_void(const void *, unsigned char **);
691
976
 
@@ -736,75 +1021,6 @@ typedef const ASN1_ITEM ASN1_ITEM_EXP;
736
1021
 
737
1022
  #define DECLARE_ASN1_ITEM(name) extern OPENSSL_EXPORT const ASN1_ITEM name##_it;
738
1023
 
739
- // Parameters used by ASN1_STRING_print_ex()
740
-
741
- // These determine which characters to escape:
742
- // RFC2253 special characters, control characters and
743
- // MSB set characters
744
-
745
- #define ASN1_STRFLGS_ESC_2253 1
746
- #define ASN1_STRFLGS_ESC_CTRL 2
747
- #define ASN1_STRFLGS_ESC_MSB 4
748
-
749
-
750
- // This flag determines how we do escaping: normally
751
- // RC2253 backslash only, set this to use backslash and
752
- // quote.
753
-
754
- #define ASN1_STRFLGS_ESC_QUOTE 8
755
-
756
-
757
- // These three flags are internal use only.
758
-
759
- // Character is a valid PrintableString character
760
- #define CHARTYPE_PRINTABLESTRING 0x10
761
- // Character needs escaping if it is the first character
762
- #define CHARTYPE_FIRST_ESC_2253 0x20
763
- // Character needs escaping if it is the last character
764
- #define CHARTYPE_LAST_ESC_2253 0x40
765
-
766
- // NB the internal flags are safely reused below by flags
767
- // handled at the top level.
768
-
769
- // If this is set we convert all character strings
770
- // to UTF8 first
771
-
772
- #define ASN1_STRFLGS_UTF8_CONVERT 0x10
773
-
774
- // If this is set we don't attempt to interpret content:
775
- // just assume all strings are 1 byte per character. This
776
- // will produce some pretty odd looking output!
777
-
778
- #define ASN1_STRFLGS_IGNORE_TYPE 0x20
779
-
780
- // If this is set we include the string type in the output
781
- #define ASN1_STRFLGS_SHOW_TYPE 0x40
782
-
783
- // This determines which strings to display and which to
784
- // 'dump' (hex dump of content octets or DER encoding). We can
785
- // only dump non character strings or everything. If we
786
- // don't dump 'unknown' they are interpreted as character
787
- // strings with 1 octet per character and are subject to
788
- // the usual escaping options.
789
-
790
- #define ASN1_STRFLGS_DUMP_ALL 0x80
791
- #define ASN1_STRFLGS_DUMP_UNKNOWN 0x100
792
-
793
- // These determine what 'dumping' does, we can dump the
794
- // content octets or the DER encoding: both use the
795
- // RFC2253 #XXXXX notation.
796
-
797
- #define ASN1_STRFLGS_DUMP_DER 0x200
798
-
799
- // All the string flags consistent with RFC2253,
800
- // escaping control characters isn't essential in
801
- // RFC2253 but it is advisable anyway.
802
-
803
- #define ASN1_STRFLGS_RFC2253 \
804
- (ASN1_STRFLGS_ESC_2253 | ASN1_STRFLGS_ESC_CTRL | ASN1_STRFLGS_ESC_MSB | \
805
- ASN1_STRFLGS_UTF8_CONVERT | ASN1_STRFLGS_DUMP_UNKNOWN | \
806
- ASN1_STRFLGS_DUMP_DER)
807
-
808
1024
  DEFINE_STACK_OF(ASN1_INTEGER)
809
1025
 
810
1026
  DEFINE_STACK_OF(ASN1_TYPE)
@@ -814,20 +1030,6 @@ typedef STACK_OF(ASN1_TYPE) ASN1_SEQUENCE_ANY;
814
1030
  DECLARE_ASN1_ENCODE_FUNCTIONS_const(ASN1_SEQUENCE_ANY, ASN1_SEQUENCE_ANY)
815
1031
  DECLARE_ASN1_ENCODE_FUNCTIONS_const(ASN1_SEQUENCE_ANY, ASN1_SET_ANY)
816
1032
 
817
- struct X509_algor_st {
818
- ASN1_OBJECT *algorithm;
819
- ASN1_TYPE *parameter;
820
- } /* X509_ALGOR */;
821
-
822
- DECLARE_ASN1_FUNCTIONS(X509_ALGOR)
823
-
824
- // This is used to contain a list of bit names
825
- typedef struct BIT_STRING_BITNAME_st {
826
- int bitnum;
827
- const char *lname;
828
- const char *sname;
829
- } BIT_STRING_BITNAME;
830
-
831
1033
  // M_ASN1_* are legacy aliases for various |ASN1_STRING| functions. Use the
832
1034
  // functions themselves.
833
1035
  #define M_ASN1_STRING_length(x) ASN1_STRING_length(x)
@@ -911,9 +1113,10 @@ OPENSSL_EXPORT ASN1_BIT_STRING *c2i_ASN1_BIT_STRING(ASN1_BIT_STRING **a,
911
1113
  const unsigned char **pp,
912
1114
  long length);
913
1115
 
914
- OPENSSL_EXPORT int i2d_ASN1_BOOLEAN(int a, unsigned char **pp);
915
- OPENSSL_EXPORT int d2i_ASN1_BOOLEAN(int *a, const unsigned char **pp,
916
- long length);
1116
+ OPENSSL_EXPORT int i2d_ASN1_BOOLEAN(ASN1_BOOLEAN a, unsigned char **pp);
1117
+ OPENSSL_EXPORT ASN1_BOOLEAN d2i_ASN1_BOOLEAN(ASN1_BOOLEAN *a,
1118
+ const unsigned char **pp,
1119
+ long length);
917
1120
 
918
1121
  DECLARE_ASN1_FUNCTIONS(ASN1_INTEGER)
919
1122
  OPENSSL_EXPORT int i2c_ASN1_INTEGER(const ASN1_INTEGER *a, unsigned char **pp);
@@ -924,26 +1127,6 @@ OPENSSL_EXPORT ASN1_INTEGER *ASN1_INTEGER_dup(const ASN1_INTEGER *x);
924
1127
 
925
1128
  DECLARE_ASN1_FUNCTIONS(ASN1_ENUMERATED)
926
1129
 
927
- OPENSSL_EXPORT int ASN1_UTCTIME_check(const ASN1_UTCTIME *a);
928
- OPENSSL_EXPORT ASN1_UTCTIME *ASN1_UTCTIME_set(ASN1_UTCTIME *s, time_t t);
929
- OPENSSL_EXPORT ASN1_UTCTIME *ASN1_UTCTIME_adj(ASN1_UTCTIME *s, time_t t,
930
- int offset_day, long offset_sec);
931
- OPENSSL_EXPORT int ASN1_UTCTIME_set_string(ASN1_UTCTIME *s, const char *str);
932
- OPENSSL_EXPORT int ASN1_UTCTIME_cmp_time_t(const ASN1_UTCTIME *s, time_t t);
933
- #if 0
934
- time_t ASN1_UTCTIME_get(const ASN1_UTCTIME *s);
935
- #endif
936
-
937
- OPENSSL_EXPORT int ASN1_GENERALIZEDTIME_check(const ASN1_GENERALIZEDTIME *a);
938
- OPENSSL_EXPORT ASN1_GENERALIZEDTIME *ASN1_GENERALIZEDTIME_set(
939
- ASN1_GENERALIZEDTIME *s, time_t t);
940
- OPENSSL_EXPORT ASN1_GENERALIZEDTIME *ASN1_GENERALIZEDTIME_adj(
941
- ASN1_GENERALIZEDTIME *s, time_t t, int offset_day, long offset_sec);
942
- OPENSSL_EXPORT int ASN1_GENERALIZEDTIME_set_string(ASN1_GENERALIZEDTIME *s,
943
- const char *str);
944
- OPENSSL_EXPORT int ASN1_TIME_diff(int *pday, int *psec, const ASN1_TIME *from,
945
- const ASN1_TIME *to);
946
-
947
1130
  DECLARE_ASN1_FUNCTIONS(ASN1_OCTET_STRING)
948
1131
  OPENSSL_EXPORT ASN1_OCTET_STRING *ASN1_OCTET_STRING_dup(
949
1132
  const ASN1_OCTET_STRING *a);
@@ -970,14 +1153,6 @@ DECLARE_ASN1_FUNCTIONS(ASN1_UTCTIME)
970
1153
  DECLARE_ASN1_FUNCTIONS(ASN1_GENERALIZEDTIME)
971
1154
  DECLARE_ASN1_FUNCTIONS(ASN1_TIME)
972
1155
 
973
- OPENSSL_EXPORT ASN1_TIME *ASN1_TIME_set(ASN1_TIME *s, time_t t);
974
- OPENSSL_EXPORT ASN1_TIME *ASN1_TIME_adj(ASN1_TIME *s, time_t t, int offset_day,
975
- long offset_sec);
976
- OPENSSL_EXPORT int ASN1_TIME_check(const ASN1_TIME *t);
977
- OPENSSL_EXPORT ASN1_GENERALIZEDTIME *ASN1_TIME_to_generalizedtime(
978
- const ASN1_TIME *t, ASN1_GENERALIZEDTIME **out);
979
- OPENSSL_EXPORT int ASN1_TIME_set_string(ASN1_TIME *s, const char *str);
980
-
981
1156
  OPENSSL_EXPORT int i2a_ASN1_INTEGER(BIO *bp, const ASN1_INTEGER *a);
982
1157
  OPENSSL_EXPORT int i2a_ASN1_ENUMERATED(BIO *bp, const ASN1_ENUMERATED *a);
983
1158
  OPENSSL_EXPORT int i2a_ASN1_OBJECT(BIO *bp, const ASN1_OBJECT *a);
@@ -990,10 +1165,6 @@ OPENSSL_EXPORT ASN1_OBJECT *ASN1_OBJECT_create(int nid,
990
1165
  int len, const char *sn,
991
1166
  const char *ln);
992
1167
 
993
- // General
994
- // given a string, return the correct type, max is the maximum length
995
- OPENSSL_EXPORT int ASN1_PRINTABLE_type(const unsigned char *s, int max);
996
-
997
1168
  OPENSSL_EXPORT unsigned long ASN1_tag2bit(int tag);
998
1169
 
999
1170
  // SPECIALS
@@ -1006,23 +1177,11 @@ OPENSSL_EXPORT int ASN1_object_size(int constructed, int length, int tag);
1006
1177
 
1007
1178
  OPENSSL_EXPORT void *ASN1_item_dup(const ASN1_ITEM *it, void *x);
1008
1179
 
1009
- #ifndef OPENSSL_NO_FP_API
1010
1180
  OPENSSL_EXPORT void *ASN1_item_d2i_fp(const ASN1_ITEM *it, FILE *in, void *x);
1011
1181
  OPENSSL_EXPORT int ASN1_item_i2d_fp(const ASN1_ITEM *it, FILE *out, void *x);
1012
- OPENSSL_EXPORT int ASN1_STRING_print_ex_fp(FILE *fp, const ASN1_STRING *str,
1013
- unsigned long flags);
1014
- #endif
1015
1182
 
1016
1183
  OPENSSL_EXPORT void *ASN1_item_d2i_bio(const ASN1_ITEM *it, BIO *in, void *x);
1017
1184
  OPENSSL_EXPORT int ASN1_item_i2d_bio(const ASN1_ITEM *it, BIO *out, void *x);
1018
- OPENSSL_EXPORT int ASN1_UTCTIME_print(BIO *fp, const ASN1_UTCTIME *a);
1019
- OPENSSL_EXPORT int ASN1_GENERALIZEDTIME_print(BIO *fp,
1020
- const ASN1_GENERALIZEDTIME *a);
1021
- OPENSSL_EXPORT int ASN1_TIME_print(BIO *fp, const ASN1_TIME *a);
1022
- OPENSSL_EXPORT int ASN1_STRING_print(BIO *bp, const ASN1_STRING *v);
1023
- OPENSSL_EXPORT int ASN1_STRING_print_ex(BIO *out, const ASN1_STRING *str,
1024
- unsigned long flags);
1025
- OPENSSL_EXPORT const char *ASN1_tag2str(int tag);
1026
1185
 
1027
1186
  // Used to load and write netscape format cert
1028
1187
 
@@ -1032,26 +1191,6 @@ OPENSSL_EXPORT void *ASN1_item_unpack(const ASN1_STRING *oct,
1032
1191
  OPENSSL_EXPORT ASN1_STRING *ASN1_item_pack(void *obj, const ASN1_ITEM *it,
1033
1192
  ASN1_OCTET_STRING **oct);
1034
1193
 
1035
- OPENSSL_EXPORT void ASN1_STRING_set_default_mask(unsigned long mask);
1036
- OPENSSL_EXPORT int ASN1_STRING_set_default_mask_asc(const char *p);
1037
- OPENSSL_EXPORT unsigned long ASN1_STRING_get_default_mask(void);
1038
- OPENSSL_EXPORT int ASN1_mbstring_copy(ASN1_STRING **out,
1039
- const unsigned char *in, int len,
1040
- int inform, unsigned long mask);
1041
- OPENSSL_EXPORT int ASN1_mbstring_ncopy(ASN1_STRING **out,
1042
- const unsigned char *in, int len,
1043
- int inform, unsigned long mask,
1044
- long minsize, long maxsize);
1045
-
1046
- OPENSSL_EXPORT ASN1_STRING *ASN1_STRING_set_by_NID(ASN1_STRING **out,
1047
- const unsigned char *in,
1048
- int inlen, int inform,
1049
- int nid);
1050
- OPENSSL_EXPORT ASN1_STRING_TABLE *ASN1_STRING_TABLE_get(int nid);
1051
- OPENSSL_EXPORT int ASN1_STRING_TABLE_add(int, long, long, unsigned long,
1052
- unsigned long);
1053
- OPENSSL_EXPORT void ASN1_STRING_TABLE_cleanup(void);
1054
-
1055
1194
  // ASN1 template functions
1056
1195
 
1057
1196
  // Old API compatible functions