grpc 1.42.0 → 1.43.1

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 (739) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +85 -34
  3. data/include/grpc/event_engine/event_engine.h +37 -13
  4. data/include/grpc/event_engine/internal/memory_allocator_impl.h +1 -31
  5. data/include/grpc/event_engine/memory_allocator.h +27 -11
  6. data/include/grpc/event_engine/memory_request.h +57 -0
  7. data/include/grpc/grpc_security.h +276 -145
  8. data/include/grpc/grpc_security_constants.h +1 -14
  9. data/include/grpc/impl/codegen/port_platform.h +7 -3
  10. data/src/core/ext/filters/client_channel/backend_metric.cc +6 -7
  11. data/src/core/ext/filters/client_channel/backend_metric.h +3 -2
  12. data/src/core/ext/filters/client_channel/client_channel.cc +81 -40
  13. data/src/core/ext/filters/client_channel/client_channel.h +5 -4
  14. data/src/core/ext/filters/client_channel/client_channel_plugin.cc +1 -2
  15. data/src/core/ext/filters/client_channel/dynamic_filters.cc +4 -4
  16. data/src/core/ext/filters/client_channel/health/health_check_client.h +1 -1
  17. data/src/core/ext/filters/client_channel/http_connect_handshaker.cc +12 -14
  18. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +1 -2
  19. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.cc +1 -2
  20. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h +2 -2
  21. data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.cc +2 -3
  22. data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +27 -80
  23. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_impl.cc +82 -34
  24. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_resolver.cc +47 -91
  25. data/src/core/ext/filters/client_channel/lb_policy.h +75 -59
  26. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +3 -3
  27. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h +2 -2
  28. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +8 -12
  29. data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +3 -3
  30. data/src/core/ext/filters/client_channel/resolver/google_c2p/google_c2p_resolver.cc +6 -12
  31. data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +222 -294
  32. data/src/core/ext/filters/client_channel/resolver_registry.cc +6 -7
  33. data/src/core/ext/filters/client_channel/resolver_registry.h +1 -2
  34. data/src/core/ext/filters/client_channel/subchannel.cc +4 -4
  35. data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +1 -1
  36. data/src/core/ext/filters/http/client/http_client_filter.cc +14 -30
  37. data/src/core/ext/filters/http/http_filters_plugin.cc +3 -5
  38. data/src/core/ext/filters/http/server/http_server_filter.cc +11 -28
  39. data/src/core/ext/filters/server_config_selector/server_config_selector.cc +67 -0
  40. data/src/core/ext/filters/server_config_selector/server_config_selector.h +70 -0
  41. data/src/core/ext/filters/server_config_selector/server_config_selector_filter.cc +265 -0
  42. data/src/core/ext/filters/server_config_selector/server_config_selector_filter.h +32 -0
  43. data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +4 -20
  44. data/src/core/ext/transport/chttp2/client/chttp2_connector.h +0 -2
  45. data/src/core/ext/transport/chttp2/client/insecure/channel_create.cc +8 -5
  46. data/src/core/ext/transport/chttp2/client/insecure/channel_create_posix.cc +11 -14
  47. data/src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc +6 -3
  48. data/src/core/ext/transport/chttp2/server/chttp2_server.cc +54 -79
  49. data/src/core/ext/transport/chttp2/server/insecure/server_chttp2.cc +2 -3
  50. data/src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc +9 -13
  51. data/src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.cc +6 -6
  52. data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +53 -62
  53. data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +1 -2
  54. data/src/core/ext/transport/chttp2/transport/context_list.cc +2 -3
  55. data/src/core/ext/transport/chttp2/transport/context_list.h +2 -3
  56. data/src/core/ext/transport/chttp2/transport/flow_control.cc +8 -8
  57. data/src/core/ext/transport/chttp2/transport/flow_control.h +2 -2
  58. data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +83 -19
  59. data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +33 -1
  60. data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +66 -92
  61. data/src/core/ext/transport/chttp2/transport/internal.h +8 -4
  62. data/src/core/ext/transport/inproc/inproc_transport.cc +16 -7
  63. data/src/core/ext/transport/inproc/inproc_transport.h +1 -1
  64. data/src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.c +197 -165
  65. data/src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.h +2 -0
  66. data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.c +41 -0
  67. data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.h +18 -0
  68. data/src/core/ext/upb-generated/envoy/annotations/resource.upb.c +26 -2
  69. data/src/core/ext/upb-generated/envoy/annotations/resource.upb.h +7 -0
  70. data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.c +107 -82
  71. data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.h +2 -0
  72. data/src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.c +188 -160
  73. data/src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.h +2 -0
  74. data/src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.c +35 -22
  75. data/src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.h +2 -0
  76. data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.c +253 -218
  77. data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.h +2 -0
  78. data/src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.c +16 -5
  79. data/src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.h +2 -0
  80. data/src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.c +36 -25
  81. data/src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.h +2 -0
  82. data/src/core/ext/upb-generated/envoy/config/core/v3/address.upb.c +56 -39
  83. data/src/core/ext/upb-generated/envoy/config/core/v3/address.upb.h +2 -0
  84. data/src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.c +16 -5
  85. data/src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.h +2 -0
  86. data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.c +162 -128
  87. data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.h +2 -0
  88. data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.c +51 -36
  89. data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.h +2 -0
  90. data/src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.c +15 -4
  91. data/src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.h +2 -0
  92. data/src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.c +25 -13
  93. data/src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.h +2 -0
  94. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.c +114 -90
  95. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.h +2 -0
  96. data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.c +89 -71
  97. data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.h +2 -0
  98. data/src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.c +17 -6
  99. data/src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.h +2 -0
  100. data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.c +117 -93
  101. data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.h +2 -0
  102. data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.c +13 -2
  103. data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.h +2 -0
  104. data/src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.c +21 -9
  105. data/src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.h +2 -0
  106. data/src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.c +18 -7
  107. data/src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.h +2 -0
  108. data/src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.c +22 -11
  109. data/src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.h +2 -0
  110. data/src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.c +17 -6
  111. data/src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.h +2 -0
  112. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.c +41 -27
  113. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.h +2 -0
  114. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.c +59 -43
  115. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.h +2 -0
  116. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.c +58 -43
  117. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.h +2 -0
  118. data/src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.c +15 -4
  119. data/src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.h +2 -0
  120. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.c +73 -57
  121. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.h +2 -0
  122. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.c +81 -64
  123. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.h +2 -0
  124. data/src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.c +25 -14
  125. data/src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.h +2 -0
  126. data/src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.c +19 -7
  127. data/src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.h +2 -0
  128. data/src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.c +63 -45
  129. data/src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.h +2 -0
  130. data/src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.c +66 -47
  131. data/src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.h +2 -0
  132. data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.c +93 -75
  133. data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.h +2 -0
  134. data/src/core/ext/upb-generated/envoy/config/route/v3/route.upb.c +41 -28
  135. data/src/core/ext/upb-generated/envoy/config/route/v3/route.upb.h +2 -0
  136. data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.c +503 -440
  137. data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.h +2 -0
  138. data/src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.c +26 -13
  139. data/src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.h +2 -0
  140. data/src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.c +21 -9
  141. data/src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.h +2 -0
  142. data/src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.c +13 -2
  143. data/src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.h +2 -0
  144. data/src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.c +35 -20
  145. data/src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.h +2 -0
  146. data/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.c +44 -31
  147. data/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.h +2 -0
  148. data/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.c +22 -11
  149. data/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.h +2 -0
  150. data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.c +210 -181
  151. data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +2 -0
  152. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.c +7 -0
  153. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.h +5 -3
  154. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.c +64 -48
  155. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.h +2 -0
  156. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.c +33 -20
  157. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.h +2 -0
  158. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.c +81 -65
  159. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +2 -0
  160. data/src/core/ext/upb-generated/envoy/service/cluster/v3/cds.upb.c +12 -1
  161. data/src/core/ext/upb-generated/envoy/service/cluster/v3/cds.upb.h +2 -0
  162. data/src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.c +12 -1
  163. data/src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.h +2 -0
  164. data/src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.c +75 -58
  165. data/src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.h +2 -0
  166. data/src/core/ext/upb-generated/envoy/service/endpoint/v3/eds.upb.c +12 -1
  167. data/src/core/ext/upb-generated/envoy/service/endpoint/v3/eds.upb.h +2 -0
  168. data/src/core/ext/upb-generated/envoy/service/listener/v3/lds.upb.c +12 -1
  169. data/src/core/ext/upb-generated/envoy/service/listener/v3/lds.upb.h +2 -0
  170. data/src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.c +25 -13
  171. data/src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.h +2 -0
  172. data/src/core/ext/upb-generated/envoy/service/route/v3/rds.upb.c +12 -1
  173. data/src/core/ext/upb-generated/envoy/service/route/v3/rds.upb.h +2 -0
  174. data/src/core/ext/upb-generated/envoy/service/route/v3/srds.upb.c +12 -1
  175. data/src/core/ext/upb-generated/envoy/service/route/v3/srds.upb.h +2 -0
  176. data/src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.c +61 -46
  177. data/src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.h +2 -0
  178. data/src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.c +26 -12
  179. data/src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.h +2 -0
  180. data/src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.c +22 -10
  181. data/src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.h +2 -0
  182. data/src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.c +17 -6
  183. data/src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.h +2 -0
  184. data/src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.c +16 -5
  185. data/src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.h +2 -0
  186. data/src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.c +15 -4
  187. data/src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.h +2 -0
  188. data/src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.c +27 -14
  189. data/src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.h +2 -0
  190. data/src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.c +25 -13
  191. data/src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.h +2 -0
  192. data/src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.c +20 -8
  193. data/src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.h +2 -0
  194. data/src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.c +30 -17
  195. data/src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.h +2 -0
  196. data/src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.c +38 -21
  197. data/src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.h +2 -0
  198. data/src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.c +41 -26
  199. data/src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.h +2 -0
  200. data/src/core/ext/upb-generated/envoy/type/v3/http.upb.c +7 -0
  201. data/src/core/ext/upb-generated/envoy/type/v3/http.upb.h +2 -0
  202. data/src/core/ext/upb-generated/envoy/type/v3/percent.upb.c +17 -5
  203. data/src/core/ext/upb-generated/envoy/type/v3/percent.upb.h +2 -0
  204. data/src/core/ext/upb-generated/envoy/type/v3/range.upb.c +22 -9
  205. data/src/core/ext/upb-generated/envoy/type/v3/range.upb.h +2 -0
  206. data/src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.c +15 -4
  207. data/src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.h +2 -0
  208. data/src/core/ext/upb-generated/google/api/annotations.upb.c +20 -0
  209. data/src/core/ext/upb-generated/google/api/annotations.upb.h +7 -0
  210. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.c +116 -93
  211. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.h +2 -0
  212. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/eval.upb.c +102 -0
  213. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/eval.upb.h +306 -0
  214. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/explain.upb.c +56 -0
  215. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/explain.upb.h +135 -0
  216. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.c +122 -98
  217. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.h +2 -0
  218. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/value.upb.c +115 -0
  219. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/value.upb.h +371 -0
  220. data/src/core/ext/upb-generated/google/api/http.upb.c +35 -22
  221. data/src/core/ext/upb-generated/google/api/http.upb.h +2 -0
  222. data/src/core/ext/upb-generated/google/protobuf/any.upb.c +14 -3
  223. data/src/core/ext/upb-generated/google/protobuf/any.upb.h +2 -0
  224. data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.c +247 -210
  225. data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.h +2 -0
  226. data/src/core/ext/upb-generated/google/protobuf/duration.upb.c +14 -3
  227. data/src/core/ext/upb-generated/google/protobuf/duration.upb.h +2 -0
  228. data/src/core/ext/upb-generated/google/protobuf/empty.upb.c +12 -1
  229. data/src/core/ext/upb-generated/google/protobuf/empty.upb.h +2 -0
  230. data/src/core/ext/upb-generated/google/protobuf/struct.upb.c +37 -23
  231. data/src/core/ext/upb-generated/google/protobuf/struct.upb.h +2 -0
  232. data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.c +14 -3
  233. data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.h +2 -0
  234. data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.c +37 -18
  235. data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.h +2 -0
  236. data/src/core/ext/upb-generated/google/rpc/status.upb.c +17 -6
  237. data/src/core/ext/upb-generated/google/rpc/status.upb.h +2 -0
  238. data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.c +26 -14
  239. data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.h +2 -0
  240. data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.c +105 -83
  241. data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.h +2 -0
  242. data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.c +20 -8
  243. data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.h +2 -0
  244. data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.c +16 -4
  245. data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.h +2 -0
  246. data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.c +65 -47
  247. data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.h +34 -36
  248. data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.c +26 -13
  249. data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.h +2 -0
  250. data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.c +67 -7
  251. data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.h +27 -0
  252. data/src/core/ext/upb-generated/udpa/annotations/security.upb.c +27 -3
  253. data/src/core/ext/upb-generated/udpa/annotations/security.upb.h +7 -0
  254. data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.c +19 -0
  255. data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.h +7 -0
  256. data/src/core/ext/upb-generated/udpa/annotations/status.upb.c +27 -3
  257. data/src/core/ext/upb-generated/udpa/annotations/status.upb.h +7 -0
  258. data/src/core/ext/upb-generated/udpa/annotations/versioning.upb.c +26 -2
  259. data/src/core/ext/upb-generated/udpa/annotations/versioning.upb.h +7 -0
  260. data/src/core/ext/upb-generated/validate/validate.upb.c +320 -251
  261. data/src/core/ext/upb-generated/validate/validate.upb.h +20 -0
  262. data/src/core/ext/upb-generated/xds/annotations/v3/status.upb.c +54 -9
  263. data/src/core/ext/upb-generated/xds/annotations/v3/status.upb.h +17 -0
  264. data/src/core/ext/upb-generated/xds/core/v3/authority.upb.c +13 -2
  265. data/src/core/ext/upb-generated/xds/core/v3/authority.upb.h +2 -0
  266. data/src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.c +24 -12
  267. data/src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.h +2 -0
  268. data/src/core/ext/upb-generated/xds/core/v3/context_params.upb.c +19 -7
  269. data/src/core/ext/upb-generated/xds/core/v3/context_params.upb.h +2 -0
  270. data/src/core/ext/upb-generated/xds/core/v3/resource.upb.c +18 -7
  271. data/src/core/ext/upb-generated/xds/core/v3/resource.upb.h +2 -0
  272. data/src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.c +27 -15
  273. data/src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.h +2 -0
  274. data/src/core/ext/upb-generated/xds/core/v3/resource_name.upb.c +18 -7
  275. data/src/core/ext/upb-generated/xds/core/v3/resource_name.upb.h +2 -0
  276. data/src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.c +28 -15
  277. data/src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.h +2 -0
  278. data/src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.c +16 -5
  279. data/src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.h +2 -0
  280. data/src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump.upbdefs.c +2 -49
  281. data/src/core/ext/upbdefs-generated/envoy/annotations/deprecation.upbdefs.c +2 -2
  282. data/src/core/ext/upbdefs-generated/envoy/annotations/resource.upbdefs.c +2 -7
  283. data/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.c +2 -35
  284. data/src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3/bootstrap.upbdefs.c +2 -41
  285. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/circuit_breaker.upbdefs.c +2 -11
  286. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.c +2 -55
  287. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/filter.upbdefs.c +2 -7
  288. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/outlier_detection.upbdefs.c +2 -7
  289. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/address.upbdefs.c +2 -19
  290. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/backoff.upbdefs.c +2 -7
  291. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.c +2 -53
  292. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.c +2 -15
  293. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/event_service_config.upbdefs.c +2 -7
  294. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.c +2 -9
  295. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.c +2 -33
  296. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.c +2 -21
  297. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/http_uri.upbdefs.c +2 -7
  298. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.c +2 -33
  299. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.c +2 -7
  300. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/resolver.upbdefs.c +2 -9
  301. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/socket_option.upbdefs.c +2 -7
  302. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.c +2 -7
  303. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/udp_socket_config.upbdefs.c +2 -7
  304. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint.upbdefs.c +2 -13
  305. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint_components.upbdefs.c +2 -17
  306. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/load_report.upbdefs.c +2 -15
  307. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/api_listener.upbdefs.c +2 -7
  308. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.c +2 -17
  309. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.c +2 -19
  310. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/quic_config.upbdefs.c +2 -7
  311. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.c +2 -9
  312. data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/stats.upbdefs.c +2 -21
  313. data/src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.c +2 -23
  314. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.c +2 -11
  315. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.c +2 -111
  316. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/scoped_route.upbdefs.c +2 -11
  317. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/http_tracer.upbdefs.c +2 -9
  318. data/src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.c +2 -7
  319. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3/fault.upbdefs.c +2 -15
  320. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3/fault.upbdefs.c +2 -11
  321. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.c +2 -7
  322. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +2 -43
  323. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.c +2 -2
  324. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c +2 -17
  325. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.c +2 -11
  326. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c +2 -17
  327. data/src/core/ext/upbdefs-generated/envoy/service/cluster/v3/cds.upbdefs.c +2 -7
  328. data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/ads.upbdefs.c +2 -7
  329. data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.c +2 -19
  330. data/src/core/ext/upbdefs-generated/envoy/service/endpoint/v3/eds.upbdefs.c +2 -7
  331. data/src/core/ext/upbdefs-generated/envoy/service/listener/v3/lds.upbdefs.c +2 -7
  332. data/src/core/ext/upbdefs-generated/envoy/service/load_stats/v3/lrs.upbdefs.c +2 -9
  333. data/src/core/ext/upbdefs-generated/envoy/service/route/v3/rds.upbdefs.c +2 -7
  334. data/src/core/ext/upbdefs-generated/envoy/service/route/v3/srds.upbdefs.c +2 -7
  335. data/src/core/ext/upbdefs-generated/envoy/service/status/v3/csds.upbdefs.c +2 -15
  336. data/src/core/ext/upbdefs-generated/envoy/type/http/v3/path_transformation.upbdefs.c +2 -13
  337. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/metadata.upbdefs.c +2 -9
  338. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/node.upbdefs.c +2 -7
  339. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/number.upbdefs.c +2 -7
  340. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/path.upbdefs.c +2 -7
  341. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.c +2 -11
  342. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/string.upbdefs.c +2 -9
  343. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/struct.upbdefs.c +2 -9
  344. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/value.upbdefs.c +2 -11
  345. data/src/core/ext/upbdefs-generated/envoy/type/metadata/v3/metadata.upbdefs.c +2 -19
  346. data/src/core/ext/upbdefs-generated/envoy/type/tracing/v3/custom_tag.upbdefs.c +2 -15
  347. data/src/core/ext/upbdefs-generated/envoy/type/v3/http.upbdefs.c +2 -2
  348. data/src/core/ext/upbdefs-generated/envoy/type/v3/percent.upbdefs.c +2 -9
  349. data/src/core/ext/upbdefs-generated/envoy/type/v3/range.upbdefs.c +2 -11
  350. data/src/core/ext/upbdefs-generated/envoy/type/v3/semantic_version.upbdefs.c +2 -7
  351. data/src/core/ext/upbdefs-generated/google/api/annotations.upbdefs.c +2 -2
  352. data/src/core/ext/upbdefs-generated/google/api/http.upbdefs.c +2 -11
  353. data/src/core/ext/upbdefs-generated/google/protobuf/any.upbdefs.c +2 -7
  354. data/src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.c +2 -59
  355. data/src/core/ext/upbdefs-generated/google/protobuf/duration.upbdefs.c +2 -7
  356. data/src/core/ext/upbdefs-generated/google/protobuf/empty.upbdefs.c +2 -7
  357. data/src/core/ext/upbdefs-generated/google/protobuf/struct.upbdefs.c +2 -13
  358. data/src/core/ext/upbdefs-generated/google/protobuf/timestamp.upbdefs.c +2 -7
  359. data/src/core/ext/upbdefs-generated/google/protobuf/wrappers.upbdefs.c +2 -23
  360. data/src/core/ext/upbdefs-generated/google/rpc/status.upbdefs.c +2 -7
  361. data/src/core/ext/upbdefs-generated/udpa/annotations/migrate.upbdefs.c +2 -11
  362. data/src/core/ext/upbdefs-generated/udpa/annotations/security.upbdefs.c +2 -7
  363. data/src/core/ext/upbdefs-generated/udpa/annotations/sensitive.upbdefs.c +2 -2
  364. data/src/core/ext/upbdefs-generated/udpa/annotations/status.upbdefs.c +2 -7
  365. data/src/core/ext/upbdefs-generated/udpa/annotations/versioning.upbdefs.c +2 -7
  366. data/src/core/ext/upbdefs-generated/validate/validate.upbdefs.c +2 -51
  367. data/src/core/ext/upbdefs-generated/xds/annotations/v3/status.upbdefs.c +2 -13
  368. data/src/core/ext/upbdefs-generated/xds/core/v3/authority.upbdefs.c +2 -7
  369. data/src/core/ext/upbdefs-generated/xds/core/v3/collection_entry.upbdefs.c +2 -9
  370. data/src/core/ext/upbdefs-generated/xds/core/v3/context_params.upbdefs.c +2 -9
  371. data/src/core/ext/upbdefs-generated/xds/core/v3/resource.upbdefs.c +2 -7
  372. data/src/core/ext/upbdefs-generated/xds/core/v3/resource_locator.upbdefs.c +2 -9
  373. data/src/core/ext/upbdefs-generated/xds/core/v3/resource_name.upbdefs.c +2 -7
  374. data/src/core/ext/upbdefs-generated/xds/type/v3/typed_struct.upbdefs.c +2 -7
  375. data/src/core/ext/xds/certificate_provider_registry.cc +1 -1
  376. data/src/core/ext/xds/certificate_provider_store.h +1 -1
  377. data/src/core/ext/xds/xds_api.cc +409 -304
  378. data/src/core/ext/xds/xds_api.h +3 -1
  379. data/src/core/ext/xds/xds_bootstrap.cc +6 -3
  380. data/src/core/ext/xds/xds_certificate_provider.h +1 -2
  381. data/src/core/ext/xds/xds_channel_stack_modifier.cc +3 -4
  382. data/src/core/ext/xds/xds_client.cc +395 -291
  383. data/src/core/ext/xds/xds_client.h +47 -38
  384. data/src/core/ext/xds/xds_routing.cc +247 -0
  385. data/src/core/ext/xds/xds_routing.h +98 -0
  386. data/src/core/ext/xds/xds_server_config_fetcher.cc +975 -261
  387. data/src/core/lib/avl/avl.h +389 -88
  388. data/src/core/lib/backoff/backoff.cc +2 -2
  389. data/src/core/lib/channel/channel_args.cc +17 -17
  390. data/src/core/lib/channel/channel_args.h +11 -10
  391. data/src/core/lib/channel/channel_args_preconditioning.cc +47 -0
  392. data/src/core/lib/channel/channel_args_preconditioning.h +62 -0
  393. data/src/core/lib/channel/channel_stack_builder.cc +0 -2
  394. data/src/core/lib/channel/channel_trace.cc +6 -6
  395. data/src/core/lib/channel/channelz.cc +1 -1
  396. data/src/core/lib/compression/compression_args.cc +7 -5
  397. data/src/core/lib/compression/compression_args.h +6 -4
  398. data/src/core/lib/config/core_configuration.cc +3 -1
  399. data/src/core/lib/config/core_configuration.h +11 -0
  400. data/src/core/lib/debug/trace.h +2 -2
  401. data/src/core/lib/event_engine/{endpoint_config.cc → channel_args_endpoint_config.cc} +2 -1
  402. data/src/core/lib/event_engine/{endpoint_config_internal.h → channel_args_endpoint_config.h} +3 -3
  403. data/src/core/lib/event_engine/event_engine.cc +0 -13
  404. data/src/core/lib/event_engine/event_engine_factory.cc +49 -0
  405. data/src/core/lib/event_engine/event_engine_factory.h +33 -0
  406. data/src/core/lib/event_engine/memory_allocator.cc +70 -0
  407. data/src/core/lib/gpr/tls.h +6 -0
  408. data/src/core/lib/gprpp/cpp_impl_of.h +45 -0
  409. data/src/core/lib/gprpp/global_config_env.cc +7 -7
  410. data/src/core/lib/gprpp/global_config_env.h +2 -2
  411. data/src/core/lib/gprpp/manual_constructor.h +2 -3
  412. data/src/core/lib/gprpp/orphanable.h +1 -1
  413. data/src/core/lib/gprpp/ref_counted.h +1 -1
  414. data/src/core/lib/gprpp/ref_counted_ptr.h +2 -4
  415. data/src/core/lib/gprpp/status_helper.h +1 -1
  416. data/src/core/lib/gprpp/table.h +13 -1
  417. data/src/core/lib/http/httpcli.cc +30 -26
  418. data/src/core/lib/http/httpcli.h +14 -12
  419. data/src/core/lib/iomgr/buffer_list.cc +9 -9
  420. data/src/core/lib/iomgr/buffer_list.h +13 -13
  421. data/src/core/lib/iomgr/call_combiner.cc +2 -3
  422. data/src/core/lib/iomgr/endpoint.h +0 -1
  423. data/src/core/lib/iomgr/endpoint_cfstream.cc +7 -24
  424. data/src/core/lib/iomgr/endpoint_cfstream.h +4 -4
  425. data/src/core/lib/iomgr/endpoint_pair_posix.cc +9 -11
  426. data/src/core/lib/iomgr/endpoint_pair_windows.cc +5 -14
  427. data/src/core/lib/iomgr/event_engine/endpoint.cc +2 -3
  428. data/src/core/lib/iomgr/event_engine/iomgr.cc +5 -25
  429. data/src/core/lib/iomgr/event_engine/resolver.cc +3 -2
  430. data/src/core/lib/iomgr/event_engine/tcp.cc +7 -5
  431. data/src/core/lib/iomgr/event_engine/timer.cc +4 -3
  432. data/src/core/lib/iomgr/exec_ctx.h +11 -11
  433. data/src/core/lib/iomgr/executor.cc +12 -15
  434. data/src/core/lib/iomgr/executor.h +1 -1
  435. data/src/core/lib/iomgr/tcp_client.cc +2 -4
  436. data/src/core/lib/iomgr/tcp_client.h +1 -3
  437. data/src/core/lib/iomgr/tcp_client_cfstream.cc +1 -9
  438. data/src/core/lib/iomgr/tcp_client_custom.cc +4 -10
  439. data/src/core/lib/iomgr/tcp_client_posix.cc +7 -23
  440. data/src/core/lib/iomgr/tcp_client_posix.h +3 -4
  441. data/src/core/lib/iomgr/tcp_client_windows.cc +1 -10
  442. data/src/core/lib/iomgr/tcp_custom.cc +9 -36
  443. data/src/core/lib/iomgr/tcp_custom.h +0 -1
  444. data/src/core/lib/iomgr/tcp_posix.cc +28 -33
  445. data/src/core/lib/iomgr/tcp_posix.h +1 -3
  446. data/src/core/lib/iomgr/tcp_server.cc +4 -6
  447. data/src/core/lib/iomgr/tcp_server.h +6 -8
  448. data/src/core/lib/iomgr/tcp_server_custom.cc +5 -15
  449. data/src/core/lib/iomgr/tcp_server_posix.cc +18 -22
  450. data/src/core/lib/iomgr/tcp_server_utils_posix.h +19 -18
  451. data/src/core/lib/iomgr/tcp_server_windows.cc +5 -12
  452. data/src/core/lib/iomgr/tcp_windows.cc +2 -7
  453. data/src/core/lib/iomgr/tcp_windows.h +1 -2
  454. data/src/core/lib/iomgr/unix_sockets_posix.cc +1 -1
  455. data/src/core/lib/iomgr/unix_sockets_posix.h +1 -1
  456. data/src/core/lib/iomgr/unix_sockets_posix_noop.cc +1 -1
  457. data/src/core/lib/iomgr/work_serializer.cc +115 -44
  458. data/src/core/lib/iomgr/work_serializer.h +16 -4
  459. data/src/core/lib/json/json_reader.cc +83 -35
  460. data/src/core/lib/json/json_util.cc +1 -1
  461. data/src/core/lib/promise/activity.cc +115 -0
  462. data/src/core/lib/promise/activity.h +499 -0
  463. data/src/core/lib/promise/context.h +86 -0
  464. data/src/core/lib/promise/detail/basic_seq.h +407 -0
  465. data/src/core/lib/promise/detail/promise_factory.h +189 -0
  466. data/src/core/lib/promise/detail/promise_like.h +85 -0
  467. data/src/core/lib/promise/detail/status.h +44 -0
  468. data/src/core/lib/promise/detail/switch.h +1455 -0
  469. data/src/core/lib/promise/exec_ctx_wakeup_scheduler.h +48 -0
  470. data/src/core/lib/promise/loop.h +108 -0
  471. data/src/core/lib/promise/map.h +88 -0
  472. data/src/core/lib/promise/poll.h +60 -0
  473. data/src/core/lib/promise/race.h +84 -0
  474. data/src/core/lib/promise/seq.h +71 -0
  475. data/src/core/lib/resource_quota/api.cc +108 -0
  476. data/src/core/lib/resource_quota/api.h +41 -0
  477. data/src/core/lib/resource_quota/memory_quota.cc +454 -0
  478. data/src/core/lib/resource_quota/memory_quota.h +421 -0
  479. data/src/core/lib/resource_quota/resource_quota.cc +33 -0
  480. data/src/core/lib/resource_quota/resource_quota.h +58 -0
  481. data/src/core/lib/resource_quota/thread_quota.cc +43 -0
  482. data/src/core/lib/resource_quota/thread_quota.h +57 -0
  483. data/src/core/lib/resource_quota/trace.cc +19 -0
  484. data/src/core/lib/resource_quota/trace.h +24 -0
  485. data/src/core/lib/security/authorization/evaluate_args.cc +13 -19
  486. data/src/core/lib/security/authorization/evaluate_args.h +2 -1
  487. data/src/core/lib/security/authorization/sdk_server_authz_filter.cc +3 -1
  488. data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +11 -12
  489. data/src/core/lib/security/credentials/external/external_account_credentials.cc +9 -10
  490. data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +3 -4
  491. data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +4 -6
  492. data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +1 -1
  493. data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +4 -6
  494. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +18 -22
  495. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +11 -12
  496. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h +7 -8
  497. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.cc +201 -0
  498. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.h +106 -0
  499. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +11 -90
  500. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +19 -82
  501. data/src/core/lib/security/credentials/tls/tls_credentials.cc +21 -10
  502. data/src/core/lib/security/credentials/xds/xds_credentials.cc +28 -33
  503. data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +3 -3
  504. data/src/core/lib/security/security_connector/alts/alts_security_connector.h +2 -2
  505. data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +3 -4
  506. data/src/core/lib/security/security_connector/insecure/insecure_security_connector.cc +2 -2
  507. data/src/core/lib/security/security_connector/insecure/insecure_security_connector.h +7 -7
  508. data/src/core/lib/security/security_connector/load_system_roots_linux.cc +1 -2
  509. data/src/core/lib/security/security_connector/local/local_security_connector.cc +4 -1
  510. data/src/core/lib/security/security_connector/ssl_utils.cc +10 -2
  511. data/src/core/lib/security/security_connector/ssl_utils.h +1 -1
  512. data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +344 -195
  513. data/src/core/lib/security/security_connector/tls/tls_security_connector.h +64 -41
  514. data/src/core/lib/security/transport/security_handshaker.cc +2 -2
  515. data/src/core/lib/slice/percent_encoding.cc +30 -86
  516. data/src/core/lib/slice/percent_encoding.h +5 -11
  517. data/src/core/lib/slice/slice.cc +7 -7
  518. data/src/core/lib/slice/slice.h +341 -0
  519. data/src/core/lib/slice/slice_buffer.cc +4 -0
  520. data/src/core/lib/slice/slice_intern.cc +1 -1
  521. data/src/core/lib/slice/slice_refcount.h +5 -1
  522. data/src/core/lib/slice/slice_refcount_base.h +19 -11
  523. data/src/core/lib/slice/static_slice.cc +331 -483
  524. data/src/core/lib/slice/static_slice.h +101 -132
  525. data/src/core/lib/surface/builtins.cc +1 -1
  526. data/src/core/lib/surface/call.cc +85 -59
  527. data/src/core/lib/surface/channel.cc +4 -29
  528. data/src/core/lib/surface/channel.h +2 -12
  529. data/src/core/lib/surface/completion_queue.cc +2 -2
  530. data/src/core/lib/surface/init.cc +0 -1
  531. data/src/core/lib/surface/lame_client.cc +24 -17
  532. data/src/core/lib/surface/server.cc +22 -22
  533. data/src/core/lib/surface/server.h +8 -9
  534. data/src/core/lib/surface/validate_metadata.cc +2 -2
  535. data/src/core/lib/surface/version.cc +2 -2
  536. data/src/core/lib/transport/bdp_estimator.cc +1 -1
  537. data/src/core/lib/transport/byte_stream.cc +4 -0
  538. data/src/core/lib/transport/metadata.h +4 -4
  539. data/src/core/lib/transport/metadata_batch.cc +5 -0
  540. data/src/core/lib/transport/metadata_batch.h +174 -99
  541. data/src/core/lib/transport/parsed_metadata.cc +35 -0
  542. data/src/core/lib/transport/parsed_metadata.h +180 -61
  543. data/src/core/lib/transport/pid_controller.cc +4 -4
  544. data/src/core/lib/transport/static_metadata.cc +529 -614
  545. data/src/core/lib/transport/static_metadata.h +0 -18
  546. data/src/core/lib/transport/transport.cc +4 -26
  547. data/src/core/lib/transport/transport.h +0 -1
  548. data/src/core/lib/transport/transport_op_string.cc +1 -1
  549. data/src/core/lib/uri/uri_parser.cc +19 -19
  550. data/src/core/lib/uri/uri_parser.h +2 -0
  551. data/src/core/plugin_registry/grpc_plugin_registry.cc +4 -2
  552. data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +1 -1
  553. data/src/core/tsi/local_transport_security.cc +15 -15
  554. data/src/core/tsi/ssl_transport_security.cc +30 -1
  555. data/src/core/tsi/ssl_transport_security.h +1 -0
  556. data/src/ruby/ext/grpc/extconf.rb +1 -1
  557. data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +6 -10
  558. data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +9 -15
  559. data/src/ruby/lib/grpc/version.rb +1 -1
  560. data/third_party/abseil-cpp/absl/algorithm/container.h +101 -91
  561. data/third_party/abseil-cpp/absl/base/attributes.h +64 -31
  562. data/third_party/abseil-cpp/absl/base/config.h +67 -37
  563. data/third_party/abseil-cpp/absl/base/dynamic_annotations.h +1 -26
  564. data/third_party/abseil-cpp/absl/base/internal/spinlock.h +3 -1
  565. data/third_party/abseil-cpp/absl/base/internal/spinlock_wait.h +2 -0
  566. data/third_party/abseil-cpp/absl/base/internal/sysinfo.cc +69 -0
  567. data/third_party/abseil-cpp/absl/base/internal/thread_identity.h +4 -4
  568. data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc +16 -0
  569. data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.h +4 -4
  570. data/third_party/abseil-cpp/absl/base/options.h +1 -1
  571. data/third_party/abseil-cpp/absl/container/fixed_array.h +0 -5
  572. data/third_party/abseil-cpp/absl/container/inlined_vector.h +105 -97
  573. data/third_party/abseil-cpp/absl/container/internal/hash_function_defaults.h +17 -15
  574. data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.cc +18 -102
  575. data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.h +37 -78
  576. data/third_party/abseil-cpp/absl/container/internal/inlined_vector.h +388 -423
  577. data/third_party/abseil-cpp/absl/container/internal/raw_hash_map.h +3 -2
  578. data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.cc +14 -8
  579. data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.h +251 -120
  580. data/third_party/abseil-cpp/absl/debugging/internal/demangle.cc +11 -1
  581. data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.cc +12 -11
  582. data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.h +6 -2
  583. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_config.h +12 -5
  584. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_emscripten-inl.inc +110 -0
  585. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_riscv-inl.inc +234 -0
  586. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_x86-inl.inc +25 -7
  587. data/third_party/abseil-cpp/absl/debugging/internal/symbolize.h +8 -2
  588. data/third_party/abseil-cpp/absl/debugging/internal/vdso_support.cc +21 -3
  589. data/third_party/abseil-cpp/absl/debugging/stacktrace.cc +2 -0
  590. data/third_party/abseil-cpp/absl/debugging/symbolize.cc +2 -0
  591. data/third_party/abseil-cpp/absl/debugging/symbolize_elf.inc +14 -0
  592. data/third_party/abseil-cpp/absl/debugging/symbolize_emscripten.inc +72 -0
  593. data/third_party/abseil-cpp/absl/functional/function_ref.h +4 -1
  594. data/third_party/abseil-cpp/absl/hash/hash.h +22 -0
  595. data/third_party/abseil-cpp/absl/hash/internal/hash.cc +15 -16
  596. data/third_party/abseil-cpp/absl/hash/internal/hash.h +88 -37
  597. data/third_party/abseil-cpp/absl/hash/internal/{wyhash.cc → low_level_hash.cc} +23 -11
  598. data/third_party/abseil-cpp/absl/hash/internal/{wyhash.h → low_level_hash.h} +14 -12
  599. data/third_party/abseil-cpp/absl/memory/memory.h +1 -1
  600. data/third_party/abseil-cpp/absl/meta/type_traits.h +32 -2
  601. data/third_party/abseil-cpp/absl/numeric/int128.cc +3 -10
  602. data/third_party/abseil-cpp/absl/numeric/int128.h +146 -73
  603. data/third_party/abseil-cpp/absl/numeric/int128_have_intrinsic.inc +19 -25
  604. data/third_party/abseil-cpp/absl/numeric/int128_no_intrinsic.inc +73 -70
  605. data/third_party/abseil-cpp/absl/{base → profiling}/internal/exponential_biased.cc +4 -4
  606. data/third_party/abseil-cpp/absl/{base → profiling}/internal/exponential_biased.h +6 -6
  607. data/third_party/abseil-cpp/absl/profiling/internal/sample_recorder.h +230 -0
  608. data/third_party/abseil-cpp/absl/status/internal/status_internal.h +5 -5
  609. data/third_party/abseil-cpp/absl/status/status.cc +9 -17
  610. data/third_party/abseil-cpp/absl/status/status.h +19 -15
  611. data/third_party/abseil-cpp/absl/status/statusor.cc +34 -2
  612. data/third_party/abseil-cpp/absl/status/statusor.h +31 -21
  613. data/third_party/abseil-cpp/absl/strings/charconv.cc +3 -3
  614. data/third_party/abseil-cpp/absl/strings/charconv.h +3 -2
  615. data/third_party/abseil-cpp/absl/strings/cord.cc +453 -359
  616. data/third_party/abseil-cpp/absl/strings/cord.h +197 -70
  617. data/third_party/abseil-cpp/absl/strings/internal/charconv_parse.cc +1 -1
  618. data/third_party/abseil-cpp/absl/strings/internal/cord_internal.cc +6 -0
  619. data/third_party/abseil-cpp/absl/strings/internal/cord_internal.h +140 -63
  620. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.cc +1128 -0
  621. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.h +939 -0
  622. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_navigator.cc +185 -0
  623. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_navigator.h +265 -0
  624. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_reader.cc +68 -0
  625. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_reader.h +211 -0
  626. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_consume.cc +129 -0
  627. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_consume.h +50 -0
  628. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_flat.h +7 -7
  629. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_ring.cc +55 -181
  630. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_ring.h +42 -24
  631. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_ring_reader.h +4 -0
  632. data/third_party/abseil-cpp/absl/strings/internal/cordz_functions.cc +96 -0
  633. data/third_party/abseil-cpp/absl/strings/internal/cordz_functions.h +85 -0
  634. data/third_party/abseil-cpp/absl/strings/internal/cordz_handle.cc +139 -0
  635. data/third_party/abseil-cpp/absl/strings/internal/cordz_handle.h +131 -0
  636. data/third_party/abseil-cpp/absl/strings/internal/cordz_info.cc +445 -0
  637. data/third_party/abseil-cpp/absl/strings/internal/cordz_info.h +298 -0
  638. data/third_party/abseil-cpp/absl/strings/internal/cordz_statistics.h +87 -0
  639. data/third_party/abseil-cpp/absl/strings/internal/cordz_update_scope.h +71 -0
  640. data/third_party/abseil-cpp/absl/strings/internal/cordz_update_tracker.h +121 -0
  641. data/third_party/abseil-cpp/absl/strings/internal/resize_uninitialized.h +48 -2
  642. data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.h +8 -0
  643. data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.cc +3 -4
  644. data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.h +1 -1
  645. data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.cc +6 -6
  646. data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.h +36 -18
  647. data/third_party/abseil-cpp/absl/strings/internal/str_format/parser.cc +62 -73
  648. data/third_party/abseil-cpp/absl/strings/internal/str_format/parser.h +24 -16
  649. data/third_party/abseil-cpp/absl/strings/internal/str_split_internal.h +35 -35
  650. data/third_party/abseil-cpp/absl/strings/numbers.cc +1 -1
  651. data/third_party/abseil-cpp/absl/strings/numbers.h +34 -0
  652. data/third_party/abseil-cpp/absl/strings/str_cat.cc +4 -4
  653. data/third_party/abseil-cpp/absl/strings/str_format.h +1 -2
  654. data/third_party/abseil-cpp/absl/strings/string_view.cc +16 -21
  655. data/third_party/abseil-cpp/absl/strings/string_view.h +120 -39
  656. data/third_party/abseil-cpp/absl/strings/substitute.cc +2 -1
  657. data/third_party/abseil-cpp/absl/strings/substitute.h +99 -74
  658. data/third_party/abseil-cpp/absl/synchronization/blocking_counter.cc +25 -15
  659. data/third_party/abseil-cpp/absl/synchronization/blocking_counter.h +5 -3
  660. data/third_party/abseil-cpp/absl/synchronization/internal/waiter.cc +1 -1
  661. data/third_party/abseil-cpp/absl/synchronization/mutex.h +3 -3
  662. data/third_party/abseil-cpp/absl/time/civil_time.cc +1 -3
  663. data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/time_zone.h +93 -20
  664. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.cc +1 -1
  665. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.h +2 -1
  666. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.cc +83 -21
  667. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup.cc +49 -0
  668. data/third_party/abseil-cpp/absl/time/internal/cctz/src/tzfile.h +1 -1
  669. data/third_party/abseil-cpp/absl/time/internal/cctz/src/zone_info_source.cc +2 -3
  670. data/third_party/abseil-cpp/absl/time/time.h +67 -36
  671. data/third_party/abseil-cpp/absl/types/bad_optional_access.h +1 -1
  672. data/third_party/abseil-cpp/absl/types/bad_variant_access.h +2 -2
  673. data/third_party/abseil-cpp/absl/types/span.h +3 -3
  674. data/third_party/boringssl-with-bazel/err_data.c +681 -677
  675. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bitstr.c +19 -11
  676. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_object.c +41 -30
  677. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_time.c +1 -1
  678. data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_lib.c +59 -47
  679. data/third_party/boringssl-with-bazel/src/crypto/asn1/asn_pack.c +24 -28
  680. data/third_party/boringssl-with-bazel/src/crypto/asn1/f_int.c +5 -0
  681. data/third_party/boringssl-with-bazel/src/crypto/asn1/internal.h +28 -0
  682. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_dec.c +48 -272
  683. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_typ.c +8 -6
  684. data/third_party/boringssl-with-bazel/src/crypto/bytestring/ber.c +3 -1
  685. data/third_party/boringssl-with-bazel/src/crypto/evp/evp_asn1.c +2 -2
  686. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c +7 -7
  687. data/third_party/boringssl-with-bazel/src/crypto/mem.c +18 -0
  688. data/third_party/boringssl-with-bazel/src/crypto/pool/internal.h +5 -1
  689. data/third_party/boringssl-with-bazel/src/crypto/pool/pool.c +59 -23
  690. data/third_party/boringssl-with-bazel/src/crypto/x509/asn1_gen.c +2 -18
  691. data/third_party/boringssl-with-bazel/src/crypto/x509/internal.h +8 -2
  692. data/third_party/boringssl-with-bazel/src/crypto/x509v3/internal.h +216 -11
  693. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_cache.c +1 -1
  694. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_data.c +1 -1
  695. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_lib.c +1 -1
  696. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_map.c +1 -1
  697. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_node.c +1 -1
  698. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_tree.c +1 -1
  699. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_alt.c +1 -0
  700. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_cpols.c +0 -1
  701. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_lib.c +21 -4
  702. data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +971 -253
  703. data/third_party/boringssl-with-bazel/src/include/openssl/asn1t.h +3 -3
  704. data/third_party/boringssl-with-bazel/src/include/openssl/base.h +0 -1
  705. data/third_party/boringssl-with-bazel/src/include/openssl/dh.h +4 -12
  706. data/third_party/boringssl-with-bazel/src/include/openssl/dsa.h +17 -41
  707. data/third_party/boringssl-with-bazel/src/include/openssl/ec_key.h +12 -27
  708. data/third_party/boringssl-with-bazel/src/include/openssl/ecdsa.h +8 -10
  709. data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +29 -55
  710. data/third_party/boringssl-with-bazel/src/include/openssl/pkcs7.h +3 -9
  711. data/third_party/boringssl-with-bazel/src/include/openssl/pool.h +7 -1
  712. data/third_party/boringssl-with-bazel/src/include/openssl/rsa.h +24 -28
  713. data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +6 -9
  714. data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +12 -43
  715. data/third_party/boringssl-with-bazel/src/include/openssl/x509v3.h +4 -3
  716. data/third_party/boringssl-with-bazel/src/ssl/internal.h +3 -3
  717. data/third_party/boringssl-with-bazel/src/ssl/ssl_versions.cc +4 -0
  718. data/third_party/upb/upb/decode.c +309 -178
  719. data/third_party/upb/upb/decode_fast.c +1 -1
  720. data/third_party/upb/upb/decode_internal.h +1 -0
  721. data/third_party/upb/upb/def.c +330 -85
  722. data/third_party/upb/upb/def.h +45 -14
  723. data/third_party/upb/upb/def.hpp +17 -4
  724. data/third_party/upb/upb/encode.c +100 -40
  725. data/third_party/upb/upb/msg.c +22 -9
  726. data/third_party/upb/upb/msg_internal.h +90 -8
  727. data/third_party/upb/upb/reflection.c +98 -58
  728. data/third_party/upb/upb/reflection.h +6 -2
  729. data/third_party/upb/upb/text_encode.c +3 -3
  730. data/third_party/upb/upb/upb.c +8 -0
  731. metadata +116 -56
  732. data/src/core/lib/avl/avl.cc +0 -306
  733. data/src/core/lib/gprpp/match.h +0 -73
  734. data/src/core/lib/gprpp/overload.h +0 -59
  735. data/src/core/lib/iomgr/event_engine/iomgr.h +0 -42
  736. data/src/core/lib/iomgr/resource_quota.cc +0 -1106
  737. data/src/core/lib/iomgr/resource_quota.h +0 -226
  738. data/third_party/boringssl-with-bazel/src/crypto/asn1/f_enum.c +0 -93
  739. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_int.h +0 -217
@@ -63,11 +63,10 @@
63
63
  #include <time.h>
64
64
 
65
65
  #include <openssl/bio.h>
66
- #include <openssl/stack.h>
67
-
68
66
  #include <openssl/bn.h>
67
+ #include <openssl/stack.h>
69
68
 
70
- #ifdef __cplusplus
69
+ #if defined(__cplusplus)
71
70
  extern "C" {
72
71
  #endif
73
72
 
@@ -75,8 +74,12 @@ extern "C" {
75
74
  // Legacy ASN.1 library.
76
75
  //
77
76
  // This header is part of OpenSSL's ASN.1 implementation. It is retained for
78
- // compatibility but otherwise underdocumented and not actively maintained. Use
79
- // the new |CBS| and |CBB| library in <openssl/bytestring.h> instead.
77
+ // compatibility but should not be used by new code. The functions are difficult
78
+ // to use correctly, and have buggy or non-standard behaviors. They are thus
79
+ // particularly prone to behavior changes and API removals, as BoringSSL
80
+ // iterates on these issues.
81
+ //
82
+ // Use the new |CBS| and |CBB| library in <openssl/bytestring.h> instead.
80
83
 
81
84
 
82
85
  // Tag constants.
@@ -174,11 +177,307 @@ extern "C" {
174
177
  #define B_ASN1_GENERALIZEDTIME 0x8000
175
178
  #define B_ASN1_SEQUENCE 0x10000
176
179
 
180
+ // ASN1_tag2bit converts |tag| from the tag number of a universal type to a
181
+ // corresponding |B_ASN1_*| constant, |B_ASN1_UNKNOWN|, or zero. If the
182
+ // |B_ASN1_*| constant above is defined, it will map the corresponding
183
+ // |V_ASN1_*| constant to it. Otherwise, whether it returns |B_ASN1_UNKNOWN| or
184
+ // zero is ill-defined and callers should not rely on it.
185
+ //
186
+ // TODO(https://crbug.com/boringssl/412): Figure out what |B_ASN1_UNNOWN| vs
187
+ // zero is meant to be. The main impact is what values go in |B_ASN1_PRINTABLE|.
188
+ // To that end, we must return zero on types that can't go in |ASN1_STRING|.
189
+ OPENSSL_EXPORT unsigned long ASN1_tag2bit(int tag);
190
+
177
191
  // ASN1_tag2str returns a string representation of |tag|, interpret as a tag
178
192
  // number for a universal type, or |V_ASN1_NEG_*|.
179
193
  OPENSSL_EXPORT const char *ASN1_tag2str(int tag);
180
194
 
181
195
 
196
+ // API conventions.
197
+ //
198
+ // The following sample functions document the calling conventions used by
199
+ // legacy ASN.1 APIs.
200
+
201
+ #if 0 // Sample functions
202
+
203
+ // d2i_SAMPLE parses a structure from up to |len| bytes at |*inp|. On success,
204
+ // it advances |*inp| by the number of bytes read and returns a newly-allocated
205
+ // |SAMPLE| object containing the parsed structure. If |out| is non-NULL, it
206
+ // additionally frees the previous value at |*out| and updates |*out| to the
207
+ // result. If parsing or allocating the result fails, it returns NULL.
208
+ //
209
+ // This function does not reject trailing data in the input. This allows the
210
+ // caller to parse a sequence of concatenated structures. Callers parsing only
211
+ // one structure should check for trailing data by comparing the updated |*inp|
212
+ // with the end of the input.
213
+ //
214
+ // Note: If |out| and |*out| are both non-NULL, the object at |*out| is not
215
+ // updated in-place. Instead, it is freed, and the pointer is updated to the
216
+ // new object. This differs from OpenSSL, which behaves more like
217
+ // |d2i_SAMPLE_with_reuse|. Callers are recommended to set |out| to NULL and
218
+ // instead use the return value.
219
+ SAMPLE *d2i_SAMPLE(SAMPLE **out, const uint8_t **inp, long len);
220
+
221
+ // d2i_SAMPLE_with_reuse parses a structure from up to |len| bytes at |*inp|. On
222
+ // success, it advances |*inp| by the number of bytes read and returns a
223
+ // non-NULL pointer to an object containing the parsed structure. The object is
224
+ // determined from |out| as follows:
225
+ //
226
+ // If |out| is NULL, the function places the result in a newly-allocated
227
+ // |SAMPLE| object and returns it. This mode is recommended.
228
+ //
229
+ // If |out| is non-NULL, but |*out| is NULL, the function also places the result
230
+ // in a newly-allocated |SAMPLE| object. It sets |*out| to this object and also
231
+ // returns it.
232
+ //
233
+ // If |out| and |*out| are both non-NULL, the function updates the object at
234
+ // |*out| in-place with the result and returns |*out|.
235
+ //
236
+ // If any of the above fail, the function returns NULL.
237
+ //
238
+ // This function does not reject trailing data in the input. This allows the
239
+ // caller to parse a sequence of concatenated structures. Callers parsing only
240
+ // one structure should check for trailing data by comparing the updated |*inp|
241
+ // with the end of the input.
242
+ //
243
+ // WARNING: Callers should not rely on the in-place update mode. It often
244
+ // produces the wrong result or breaks the type's internal invariants. Future
245
+ // revisions of BoringSSL may standardize on the |d2i_SAMPLE| behavior.
246
+ SAMPLE *d2i_SAMPLE_with_reuse(SAMPLE **out, const uint8_t **inp, long len);
247
+
248
+ // i2d_SAMPLE marshals |in|. On error, it returns a negative value. On success,
249
+ // it returns the length of the result and outputs it via |outp| as follows:
250
+ //
251
+ // If |outp| is NULL, the function writes nothing. This mode can be used to size
252
+ // buffers.
253
+ //
254
+ // If |outp| is non-NULL but |*outp| is NULL, the function sets |*outp| to a
255
+ // newly-allocated buffer containing the result. The caller is responsible for
256
+ // releasing |*outp| with |OPENSSL_free|. This mode is recommended for most
257
+ // callers.
258
+ //
259
+ // If |outp| and |*outp| are non-NULL, the function writes the result to
260
+ // |*outp|, which must have enough space available, and advances |*outp| just
261
+ // past the output.
262
+ //
263
+ // WARNING: In the third mode, the function does not internally check output
264
+ // bounds. Failing to correctly size the buffer will result in a potentially
265
+ // exploitable memory error.
266
+ int i2d_SAMPLE(const SAMPLE *in, uint8_t **outp);
267
+
268
+ #endif // Sample functions
269
+
270
+ // The following typedefs are sometimes used for pointers to functions like
271
+ // |d2i_SAMPLE| and |i2d_SAMPLE|. Note, however, that these act on |void*|.
272
+ // Calling a function with a different pointer type is undefined in C, so this
273
+ // is only valid with a wrapper.
274
+ typedef void *d2i_of_void(void **, const unsigned char **, long);
275
+ typedef int i2d_of_void(const void *, unsigned char **);
276
+
277
+
278
+ // ASN.1 types.
279
+ //
280
+ // An |ASN1_ITEM| represents an ASN.1 type and allows working with ASN.1 types
281
+ // generically.
282
+ //
283
+ // |ASN1_ITEM|s use a different namespace from C types and are accessed via
284
+ // |ASN1_ITEM_*| macros. So, for example, |ASN1_OCTET_STRING| is both a C type
285
+ // and the name of an |ASN1_ITEM|, referenced as
286
+ // |ASN1_ITEM_rptr(ASN1_OCTET_STRING)|.
287
+ //
288
+ // Each |ASN1_ITEM| has a corresponding C type, typically with the same name,
289
+ // which represents values in the ASN.1 type. This type is either a pointer type
290
+ // or |ASN1_BOOLEAN|. When it is a pointer, NULL pointers represent omitted
291
+ // values. For example, an OCTET STRING value is declared with the C type
292
+ // |ASN1_OCTET_STRING*| and uses the |ASN1_ITEM| named |ASN1_OCTET_STRING|. An
293
+ // OPTIONAL OCTET STRING uses the same C type and represents an omitted value
294
+ // with a NULL pointer. |ASN1_BOOLEAN| is described in a later section.
295
+
296
+ // DECLARE_ASN1_ITEM declares an |ASN1_ITEM| with name |name|. The |ASN1_ITEM|
297
+ // may be referenced with |ASN1_ITEM_rptr|. Uses of this macro should document
298
+ // the corresponding ASN.1 and C types.
299
+ #define DECLARE_ASN1_ITEM(name) extern OPENSSL_EXPORT const ASN1_ITEM name##_it;
300
+
301
+ // ASN1_ITEM_rptr returns the |const ASN1_ITEM *| named |name|.
302
+ #define ASN1_ITEM_rptr(name) (&(name##_it))
303
+
304
+ // ASN1_ITEM_EXP is an abstraction for referencing an |ASN1_ITEM| in a
305
+ // constant-initialized structure, such as a method table. It exists because, on
306
+ // some OpenSSL platforms, |ASN1_ITEM| references are indirected through
307
+ // functions. Structures reference the |ASN1_ITEM| by declaring a field like
308
+ // |ASN1_ITEM_EXP *item| and initializing it with |ASN1_ITEM_ref|.
309
+ typedef const ASN1_ITEM ASN1_ITEM_EXP;
310
+
311
+ // ASN1_ITEM_ref returns an |ASN1_ITEM_EXP*| for the |ASN1_ITEM| named |name|.
312
+ #define ASN1_ITEM_ref(name) (&(name##_it))
313
+
314
+ // ASN1_ITEM_ptr converts |iptr|, which must be an |ASN1_ITEM_EXP*| to a
315
+ // |const ASN1_ITEM*|.
316
+ #define ASN1_ITEM_ptr(iptr) (iptr)
317
+
318
+ // ASN1_VALUE_st (aka |ASN1_VALUE|) is an opaque type used as a placeholder for
319
+ // the C type corresponding to an |ASN1_ITEM|.
320
+ typedef struct ASN1_VALUE_st ASN1_VALUE;
321
+
322
+ // ASN1_item_new allocates a new value of the C type corresponding to |it|, or
323
+ // NULL on error. On success, the caller must release the value with
324
+ // |ASN1_item_free|, or the corresponding C type's free function, when done. The
325
+ // new value will initialize fields of the value to some default state, such as
326
+ // an empty string. Note, however, that this default state sometimes omits
327
+ // required values, such as with CHOICE types.
328
+ //
329
+ // This function may not be used with |ASN1_ITEM|s whose C type is
330
+ // |ASN1_BOOLEAN|.
331
+ //
332
+ // WARNING: Casting the result of this function to the wrong type is a
333
+ // potentially exploitable memory error. Callers must ensure the value is used
334
+ // consistently with |it|. Prefer using type-specific functions such as
335
+ // |ASN1_OCTET_STRING_new|.
336
+ OPENSSL_EXPORT ASN1_VALUE *ASN1_item_new(const ASN1_ITEM *it);
337
+
338
+ // ASN1_item_free releases memory associated with |val|, which must be an object
339
+ // of the C type corresponding to |it|.
340
+ //
341
+ // This function may not be used with |ASN1_ITEM|s whose C type is
342
+ // |ASN1_BOOLEAN|.
343
+ //
344
+ // WARNING: Passing a pointer of the wrong type into this function is a
345
+ // potentially exploitable memory error. Callers must ensure |val| is consistent
346
+ // with |it|. Prefer using type-specific functions such as
347
+ // |ASN1_OCTET_STRING_free|.
348
+ OPENSSL_EXPORT void ASN1_item_free(ASN1_VALUE *val, const ASN1_ITEM *it);
349
+
350
+ // ASN1_item_d2i parses the ASN.1 type |it| from up to |len| bytes at |*inp|.
351
+ // It behaves like |d2i_SAMPLE_with_reuse|, except that |out| and the return
352
+ // value are cast to |ASN1_VALUE| pointers.
353
+ //
354
+ // TODO(https://crbug.com/boringssl/444): C strict aliasing forbids type-punning
355
+ // |T*| and |ASN1_VALUE*| the way this function signature does. When that bug is
356
+ // resolved, we will need to pick which type |*out| is (probably |T*|). Do not
357
+ // use a non-NULL |out| to avoid ending up on the wrong side of this question.
358
+ //
359
+ // This function may not be used with |ASN1_ITEM|s whose C type is
360
+ // |ASN1_BOOLEAN|.
361
+ //
362
+ // WARNING: Casting the result of this function to the wrong type, or passing a
363
+ // pointer of the wrong type into this function, are potentially exploitable
364
+ // memory errors. Callers must ensure |out| is consistent with |it|. Prefer
365
+ // using type-specific functions such as |d2i_ASN1_OCTET_STRING|.
366
+ OPENSSL_EXPORT ASN1_VALUE *ASN1_item_d2i(ASN1_VALUE **out,
367
+ const unsigned char **inp, long len,
368
+ const ASN1_ITEM *it);
369
+
370
+ // ASN1_item_i2d marshals |val| as the ASN.1 type associated with |it|, as
371
+ // described in |i2d_SAMPLE|.
372
+ //
373
+ // This function may not be used with |ASN1_ITEM|s whose C type is
374
+ // |ASN1_BOOLEAN|.
375
+ //
376
+ // WARNING: Passing a pointer of the wrong type into this function is a
377
+ // potentially exploitable memory error. Callers must ensure |val| is consistent
378
+ // with |it|. Prefer using type-specific functions such as
379
+ // |i2d_ASN1_OCTET_STRING|.
380
+ OPENSSL_EXPORT int ASN1_item_i2d(ASN1_VALUE *val, unsigned char **outp,
381
+ const ASN1_ITEM *it);
382
+
383
+ // ASN1_item_dup returns a newly-allocated copy of |x|, or NULL on error. |x|
384
+ // must be an object of |it|'s C type.
385
+ //
386
+ // This function may not be used with |ASN1_ITEM|s whose C type is
387
+ // |ASN1_BOOLEAN|.
388
+ //
389
+ // WARNING: Casting the result of this function to the wrong type, or passing a
390
+ // pointer of the wrong type into this function, are potentially exploitable
391
+ // memory errors. Prefer using type-specific functions such as
392
+ // |ASN1_STRING_dup|.
393
+ OPENSSL_EXPORT void *ASN1_item_dup(const ASN1_ITEM *it, void *x);
394
+
395
+ // The following functions behave like |ASN1_item_d2i| but read from |in|
396
+ // instead. |out| is the same parameter as in |ASN1_item_d2i|, but written with
397
+ // |void*| instead. The return values similarly match.
398
+ //
399
+ // These functions may not be used with |ASN1_ITEM|s whose C type is
400
+ // |ASN1_BOOLEAN|.
401
+ //
402
+ // WARNING: These functions do not bound how much data is read from |in|.
403
+ // Parsing an untrusted input could consume unbounded memory.
404
+ OPENSSL_EXPORT void *ASN1_item_d2i_fp(const ASN1_ITEM *it, FILE *in, void *out);
405
+ OPENSSL_EXPORT void *ASN1_item_d2i_bio(const ASN1_ITEM *it, BIO *in, void *out);
406
+
407
+ // The following functions behave like |ASN1_item_i2d| but write to |out|
408
+ // instead. |in| is the same parameter as in |ASN1_item_i2d|, but written with
409
+ // |void*| instead.
410
+ //
411
+ // These functions may not be used with |ASN1_ITEM|s whose C type is
412
+ // |ASN1_BOOLEAN|.
413
+ OPENSSL_EXPORT int ASN1_item_i2d_fp(const ASN1_ITEM *it, FILE *out, void *in);
414
+ OPENSSL_EXPORT int ASN1_item_i2d_bio(const ASN1_ITEM *it, BIO *out, void *in);
415
+
416
+ // ASN1_item_unpack parses |oct|'s contents as |it|'s ASN.1 type. It returns a
417
+ // newly-allocated instance of |it|'s C type on success, or NULL on error.
418
+ //
419
+ // This function may not be used with |ASN1_ITEM|s whose C type is
420
+ // |ASN1_BOOLEAN|.
421
+ //
422
+ // WARNING: Casting the result of this function to the wrong type is a
423
+ // potentially exploitable memory error. Callers must ensure the value is used
424
+ // consistently with |it|.
425
+ OPENSSL_EXPORT void *ASN1_item_unpack(const ASN1_STRING *oct,
426
+ const ASN1_ITEM *it);
427
+
428
+ // ASN1_item_pack marshals |obj| as |it|'s ASN.1 type. If |out| is NULL, it
429
+ // returns a newly-allocated |ASN1_STRING| with the result, or NULL on error.
430
+ // If |out| is non-NULL, but |*out| is NULL, it does the same but additionally
431
+ // sets |*out| to the result. If both |out| and |*out| are non-NULL, it writes
432
+ // the result to |*out| and returns |*out| on success or NULL on error.
433
+ //
434
+ // This function may not be used with |ASN1_ITEM|s whose C type is
435
+ // |ASN1_BOOLEAN|.
436
+ //
437
+ // WARNING: Passing a pointer of the wrong type into this function is a
438
+ // potentially exploitable memory error. Callers must ensure |val| is consistent
439
+ // with |it|.
440
+ OPENSSL_EXPORT ASN1_STRING *ASN1_item_pack(void *obj, const ASN1_ITEM *it,
441
+ ASN1_STRING **out);
442
+
443
+
444
+ // Booleans.
445
+ //
446
+ // This library represents ASN.1 BOOLEAN values with |ASN1_BOOLEAN|, which is an
447
+ // integer type. FALSE is zero, TRUE is 0xff, and an omitted OPTIONAL BOOLEAN is
448
+ // -1.
449
+
450
+ // d2i_ASN1_BOOLEAN parses a DER-encoded ASN.1 BOOLEAN from up to |len| bytes at
451
+ // |*inp|. On success, it advances |*inp| by the number of bytes read and
452
+ // returns the result. If |out| is non-NULL, it additionally writes the result
453
+ // to |*out|. On error, it returns -1.
454
+ //
455
+ // This function does not reject trailing data in the input. This allows the
456
+ // caller to parse a sequence of concatenated structures. Callers parsing only
457
+ // one structure should check for trailing data by comparing the updated |*inp|
458
+ // with the end of the input.
459
+ //
460
+ // WARNING: This function's is slightly different from other |d2i_*| functions
461
+ // because |ASN1_BOOLEAN| is not a pointer type.
462
+ //
463
+ // TODO(https://crbug.com/boringssl/354): This function currently also accepts
464
+ // BER, but this will be removed in the future.
465
+ OPENSSL_EXPORT ASN1_BOOLEAN d2i_ASN1_BOOLEAN(ASN1_BOOLEAN *out,
466
+ const unsigned char **inp,
467
+ long len);
468
+
469
+ // i2d_ASN1_BOOLEAN marshals |a| as a DER-encoded ASN.1 BOOLEAN, as described in
470
+ // |i2d_SAMPLE|.
471
+ OPENSSL_EXPORT int i2d_ASN1_BOOLEAN(ASN1_BOOLEAN a, unsigned char **outp);
472
+
473
+ // The following |ASN1_ITEM|s have ASN.1 type BOOLEAN and C type |ASN1_BOOLEAN|.
474
+ // |ASN1_TBOOLEAN| and |ASN1_FBOOLEAN| must be marked OPTIONAL. When omitted,
475
+ // they are parsed as TRUE and FALSE, respectively, rather than -1.
476
+ DECLARE_ASN1_ITEM(ASN1_BOOLEAN)
477
+ DECLARE_ASN1_ITEM(ASN1_TBOOLEAN)
478
+ DECLARE_ASN1_ITEM(ASN1_FBOOLEAN)
479
+
480
+
182
481
  // Strings.
183
482
  //
184
483
  // ASN.1 contains a myriad of string types, as well as types that contain data
@@ -237,9 +536,10 @@ OPENSSL_EXPORT const char *ASN1_tag2str(int tag);
237
536
  // invariants on the |X509| object and break the |X509_get0_serialNumber|
238
537
  // invariant.
239
538
  //
240
- // TODO(davidben): This is very unfriendly. Getting the type field wrong should
241
- // not cause memory errors, but it may do strange things. We should add runtime
242
- // checks to anything that consumes |ASN1_STRING|s from the caller.
539
+ // TODO(https://crbug.com/boringssl/445): This is very unfriendly. Getting the
540
+ // type field wrong should not cause memory errors, but it may do strange
541
+ // things. We should add runtime checks to anything that consumes |ASN1_STRING|s
542
+ // from the caller.
243
543
  struct asn1_string_st {
244
544
  int length;
245
545
  int type;
@@ -300,12 +600,8 @@ OPENSSL_EXPORT int ASN1_STRING_length(const ASN1_STRING *str);
300
600
  // suitable for sorting, callers should not rely on the exact order when |a|
301
601
  // and |b| are different types.
302
602
  //
303
- // If |a| or |b| are BIT STRINGs, this function does not compare the
304
- // |ASN1_STRING_FLAG_BITS_LEFT| flags. Additionally, if |a| and |b| are
305
- // INTEGERs, this comparison does not order the values numerically. For a
306
- // numerical comparison, use |ASN1_INTEGER_cmp|.
307
- //
308
- // TODO(davidben): The BIT STRING comparison seems like a bug. Fix it?
603
+ // Note that, if |a| and |b| are INTEGERs, this comparison does not order the
604
+ // values numerically. For a numerical comparison, use |ASN1_INTEGER_cmp|.
309
605
  OPENSSL_EXPORT int ASN1_STRING_cmp(const ASN1_STRING *a, const ASN1_STRING *b);
310
606
 
311
607
  // ASN1_STRING_set sets the contents of |str| to a copy of |len| bytes from
@@ -317,6 +613,102 @@ OPENSSL_EXPORT int ASN1_STRING_set(ASN1_STRING *str, const void *data, int len);
317
613
  // |OPENSSL_malloc|.
318
614
  OPENSSL_EXPORT void ASN1_STRING_set0(ASN1_STRING *str, void *data, int len);
319
615
 
616
+ // The following functions call |ASN1_STRING_type_new| with the corresponding
617
+ // |V_ASN1_*| constant.
618
+ OPENSSL_EXPORT ASN1_BMPSTRING *ASN1_BMPSTRING_new(void);
619
+ OPENSSL_EXPORT ASN1_GENERALSTRING *ASN1_GENERALSTRING_new(void);
620
+ OPENSSL_EXPORT ASN1_IA5STRING *ASN1_IA5STRING_new(void);
621
+ OPENSSL_EXPORT ASN1_OCTET_STRING *ASN1_OCTET_STRING_new(void);
622
+ OPENSSL_EXPORT ASN1_PRINTABLESTRING *ASN1_PRINTABLESTRING_new(void);
623
+ OPENSSL_EXPORT ASN1_T61STRING *ASN1_T61STRING_new(void);
624
+ OPENSSL_EXPORT ASN1_UNIVERSALSTRING *ASN1_UNIVERSALSTRING_new(void);
625
+ OPENSSL_EXPORT ASN1_UTF8STRING *ASN1_UTF8STRING_new(void);
626
+ OPENSSL_EXPORT ASN1_VISIBLESTRING *ASN1_VISIBLESTRING_new(void);
627
+
628
+ // The following functions call |ASN1_STRING_free|.
629
+ OPENSSL_EXPORT void ASN1_BMPSTRING_free(ASN1_BMPSTRING *str);
630
+ OPENSSL_EXPORT void ASN1_GENERALSTRING_free(ASN1_GENERALSTRING *str);
631
+ OPENSSL_EXPORT void ASN1_IA5STRING_free(ASN1_IA5STRING *str);
632
+ OPENSSL_EXPORT void ASN1_OCTET_STRING_free(ASN1_OCTET_STRING *str);
633
+ OPENSSL_EXPORT void ASN1_PRINTABLESTRING_free(ASN1_PRINTABLESTRING *str);
634
+ OPENSSL_EXPORT void ASN1_T61STRING_free(ASN1_T61STRING *str);
635
+ OPENSSL_EXPORT void ASN1_UNIVERSALSTRING_free(ASN1_UNIVERSALSTRING *str);
636
+ OPENSSL_EXPORT void ASN1_UTF8STRING_free(ASN1_UTF8STRING *str);
637
+ OPENSSL_EXPORT void ASN1_VISIBLESTRING_free(ASN1_VISIBLESTRING *str);
638
+
639
+ // The following functions parse up to |len| bytes from |*inp| as a
640
+ // DER-encoded ASN.1 value of the corresponding type, as described in
641
+ // |d2i_SAMPLE_with_reuse|.
642
+ //
643
+ // TODO(https://crbug.com/boringssl/354): This function currently also accepts
644
+ // BER, but this will be removed in the future.
645
+ OPENSSL_EXPORT ASN1_BMPSTRING *d2i_ASN1_BMPSTRING(ASN1_BMPSTRING **out,
646
+ const uint8_t **inp,
647
+ long len);
648
+ OPENSSL_EXPORT ASN1_GENERALSTRING *d2i_ASN1_GENERALSTRING(
649
+ ASN1_GENERALSTRING **out, const uint8_t **inp, long len);
650
+ OPENSSL_EXPORT ASN1_IA5STRING *d2i_ASN1_IA5STRING(ASN1_IA5STRING **out,
651
+ const uint8_t **inp,
652
+ long len);
653
+ OPENSSL_EXPORT ASN1_OCTET_STRING *d2i_ASN1_OCTET_STRING(ASN1_OCTET_STRING **out,
654
+ const uint8_t **inp,
655
+ long len);
656
+ OPENSSL_EXPORT ASN1_PRINTABLESTRING *d2i_ASN1_PRINTABLESTRING(
657
+ ASN1_PRINTABLESTRING **out, const uint8_t **inp, long len);
658
+ OPENSSL_EXPORT ASN1_T61STRING *d2i_ASN1_T61STRING(ASN1_T61STRING **out,
659
+ const uint8_t **inp,
660
+ long len);
661
+ OPENSSL_EXPORT ASN1_UNIVERSALSTRING *d2i_ASN1_UNIVERSALSTRING(
662
+ ASN1_UNIVERSALSTRING **out, const uint8_t **inp, long len);
663
+ OPENSSL_EXPORT ASN1_UTF8STRING *d2i_ASN1_UTF8STRING(ASN1_UTF8STRING **out,
664
+ const uint8_t **inp,
665
+ long len);
666
+ OPENSSL_EXPORT ASN1_VISIBLESTRING *d2i_ASN1_VISIBLESTRING(
667
+ ASN1_VISIBLESTRING **out, const uint8_t **inp, long len);
668
+
669
+ // The following functions marshal |in| as a DER-encoded ASN.1 value of the
670
+ // corresponding type, as described in |i2d_SAMPLE|.
671
+ OPENSSL_EXPORT int i2d_ASN1_BMPSTRING(const ASN1_BMPSTRING *in, uint8_t **outp);
672
+ OPENSSL_EXPORT int i2d_ASN1_GENERALSTRING(const ASN1_GENERALSTRING *in,
673
+ uint8_t **outp);
674
+ OPENSSL_EXPORT int i2d_ASN1_IA5STRING(const ASN1_IA5STRING *in, uint8_t **outp);
675
+ OPENSSL_EXPORT int i2d_ASN1_OCTET_STRING(const ASN1_OCTET_STRING *in,
676
+ uint8_t **outp);
677
+ OPENSSL_EXPORT int i2d_ASN1_PRINTABLESTRING(const ASN1_PRINTABLESTRING *in,
678
+ uint8_t **outp);
679
+ OPENSSL_EXPORT int i2d_ASN1_T61STRING(const ASN1_T61STRING *in, uint8_t **outp);
680
+ OPENSSL_EXPORT int i2d_ASN1_UNIVERSALSTRING(const ASN1_UNIVERSALSTRING *in,
681
+ uint8_t **outp);
682
+ OPENSSL_EXPORT int i2d_ASN1_UTF8STRING(const ASN1_UTF8STRING *in,
683
+ uint8_t **outp);
684
+ OPENSSL_EXPORT int i2d_ASN1_VISIBLESTRING(const ASN1_VISIBLESTRING *in,
685
+ uint8_t **outp);
686
+
687
+ // The following |ASN1_ITEM|s have the ASN.1 type referred to in their name and
688
+ // C type |ASN1_STRING*|. The C type may also be written as the corresponding
689
+ // typedef.
690
+ DECLARE_ASN1_ITEM(ASN1_BMPSTRING)
691
+ DECLARE_ASN1_ITEM(ASN1_GENERALSTRING)
692
+ DECLARE_ASN1_ITEM(ASN1_IA5STRING)
693
+ DECLARE_ASN1_ITEM(ASN1_OCTET_STRING)
694
+ DECLARE_ASN1_ITEM(ASN1_PRINTABLESTRING)
695
+ DECLARE_ASN1_ITEM(ASN1_T61STRING)
696
+ DECLARE_ASN1_ITEM(ASN1_UNIVERSALSTRING)
697
+ DECLARE_ASN1_ITEM(ASN1_UTF8STRING)
698
+ DECLARE_ASN1_ITEM(ASN1_VISIBLESTRING)
699
+
700
+ // ASN1_OCTET_STRING_dup calls |ASN1_STRING_dup|.
701
+ OPENSSL_EXPORT ASN1_OCTET_STRING *ASN1_OCTET_STRING_dup(
702
+ const ASN1_OCTET_STRING *a);
703
+
704
+ // ASN1_OCTET_STRING_cmp calls |ASN1_STRING_cmp|.
705
+ OPENSSL_EXPORT int ASN1_OCTET_STRING_cmp(const ASN1_OCTET_STRING *a,
706
+ const ASN1_OCTET_STRING *b);
707
+
708
+ // ASN1_OCTET_STRING_set calls |ASN1_STRING_set|.
709
+ OPENSSL_EXPORT int ASN1_OCTET_STRING_set(ASN1_OCTET_STRING *str,
710
+ const unsigned char *data, int len);
711
+
320
712
  // ASN1_STRING_to_UTF8 converts |in| to UTF-8. On success, sets |*out| to a
321
713
  // newly-allocated buffer containing the resulting string and returns the length
322
714
  // of the string. The caller must call |OPENSSL_free| to release |*out| when
@@ -325,10 +717,9 @@ OPENSSL_EXPORT int ASN1_STRING_to_UTF8(unsigned char **out,
325
717
  const ASN1_STRING *in);
326
718
 
327
719
  // The following formats define encodings for use with functions like
328
- // |ASN1_mbstring_copy|.
720
+ // |ASN1_mbstring_copy|. Note |MBSTRING_ASC| refers to Latin-1, not ASCII.
329
721
  #define MBSTRING_FLAG 0x1000
330
722
  #define MBSTRING_UTF8 (MBSTRING_FLAG)
331
- // |MBSTRING_ASC| refers to Latin-1, not ASCII.
332
723
  #define MBSTRING_ASC (MBSTRING_FLAG | 1)
333
724
  #define MBSTRING_BMP (MBSTRING_FLAG | 2)
334
725
  #define MBSTRING_UNIV (MBSTRING_FLAG | 4)
@@ -414,7 +805,81 @@ OPENSSL_EXPORT int ASN1_STRING_TABLE_add(int nid, long minsize, long maxsize,
414
805
  unsigned long mask,
415
806
  unsigned long flags);
416
807
 
417
- // TODO(davidben): Expand and document function prototypes generated in macros.
808
+
809
+ // Multi-strings.
810
+ //
811
+ // A multi-string, or "MSTRING", is an |ASN1_STRING| that represents a CHOICE of
812
+ // several string or string-like types, such as X.509's DirectoryString. The
813
+ // |ASN1_STRING|'s type field determines which type is used.
814
+ //
815
+ // Multi-string types are associated with a bitmask, using the |B_ASN1_*|
816
+ // constants, which defines which types are valid.
817
+
818
+ // B_ASN1_DIRECTORYSTRING is a bitmask of types allowed in an X.509
819
+ // DirectoryString (RFC 5280).
820
+ #define B_ASN1_DIRECTORYSTRING \
821
+ (B_ASN1_PRINTABLESTRING | B_ASN1_TELETEXSTRING | B_ASN1_BMPSTRING | \
822
+ B_ASN1_UNIVERSALSTRING | B_ASN1_UTF8STRING)
823
+
824
+ // DIRECTORYSTRING_new returns a newly-allocated |ASN1_STRING| with type -1, or
825
+ // NULL on error. The resulting |ASN1_STRING| is not a valid X.509
826
+ // DirectoryString until initialized with a value.
827
+ OPENSSL_EXPORT ASN1_STRING *DIRECTORYSTRING_new(void);
828
+
829
+ // DIRECTORYSTRING_free calls |ASN1_STRING_free|.
830
+ OPENSSL_EXPORT void DIRECTORYSTRING_free(ASN1_STRING *str);
831
+
832
+ // d2i_DIRECTORYSTRING parses up to |len| bytes from |*inp| as a DER-encoded
833
+ // X.509 DirectoryString (RFC 5280), as described in |d2i_SAMPLE_with_reuse|.
834
+ //
835
+ // TODO(https://crbug.com/boringssl/354): This function currently also accepts
836
+ // BER, but this will be removed in the future.
837
+ //
838
+ // TODO(https://crbug.com/boringssl/449): DirectoryString's non-empty string
839
+ // requirement is not currently enforced.
840
+ OPENSSL_EXPORT ASN1_STRING *d2i_DIRECTORYSTRING(ASN1_STRING **out,
841
+ const uint8_t **inp, long len);
842
+
843
+ // i2d_DIRECTORYSTRING marshals |in| as a DER-encoded X.509 DirectoryString (RFC
844
+ // 5280), as described in |i2d_SAMPLE|.
845
+ OPENSSL_EXPORT int i2d_DIRECTORYSTRING(const ASN1_STRING *in, uint8_t **outp);
846
+
847
+ // DIRECTORYSTRING is an |ASN1_ITEM| whose ASN.1 type is X.509 DirectoryString
848
+ // (RFC 5280) and C type is |ASN1_STRING*|.
849
+ DECLARE_ASN1_ITEM(DIRECTORYSTRING)
850
+
851
+ // B_ASN1_DISPLAYTEXT is a bitmask of types allowed in an X.509 DisplayText (RFC
852
+ // 5280).
853
+ #define B_ASN1_DISPLAYTEXT \
854
+ (B_ASN1_IA5STRING | B_ASN1_VISIBLESTRING | B_ASN1_BMPSTRING | \
855
+ B_ASN1_UTF8STRING)
856
+
857
+ // DISPLAYTEXT_new returns a newly-allocated |ASN1_STRING| with type -1, or NULL
858
+ // on error. The resulting |ASN1_STRING| is not a valid X.509 DisplayText until
859
+ // initialized with a value.
860
+ OPENSSL_EXPORT ASN1_STRING *DISPLAYTEXT_new(void);
861
+
862
+ // DISPLAYTEXT_free calls |ASN1_STRING_free|.
863
+ OPENSSL_EXPORT void DISPLAYTEXT_free(ASN1_STRING *str);
864
+
865
+ // d2i_DISPLAYTEXT parses up to |len| bytes from |*inp| as a DER-encoded X.509
866
+ // DisplayText (RFC 5280), as described in |d2i_SAMPLE_with_reuse|.
867
+ //
868
+ // TODO(https://crbug.com/boringssl/354): This function currently also accepts
869
+ // BER, but this will be removed in the future.
870
+ //
871
+ // TODO(https://crbug.com/boringssl/449): DisplayText's size limits are not
872
+ // currently enforced.
873
+ OPENSSL_EXPORT ASN1_STRING *d2i_DISPLAYTEXT(ASN1_STRING **out,
874
+ const uint8_t **inp, long len);
875
+
876
+ // i2d_DISPLAYTEXT marshals |in| as a DER-encoded X.509 DisplayText (RFC 5280),
877
+ // as described in |i2d_SAMPLE|.
878
+ OPENSSL_EXPORT int i2d_DISPLAYTEXT(const ASN1_STRING *in, uint8_t **outp);
879
+
880
+ // DISPLAYTEXT is an |ASN1_ITEM| whose ASN.1 type is X.509 DisplayText (RFC
881
+ // 5280) and C type is |ASN1_STRING*|.
882
+ DECLARE_ASN1_ITEM(DISPLAYTEXT)
418
883
 
419
884
 
420
885
  // Bit strings.
@@ -450,7 +915,58 @@ OPENSSL_EXPORT int ASN1_STRING_TABLE_add(int nid, long minsize, long maxsize,
450
915
  // {0x80} and flags of ASN1_STRING_FLAG_BITS_LEFT | 6. If
451
916
  // |ASN1_STRING_FLAG_BITS_LEFT| is unset, trailing zero bits are implicitly
452
917
  // removed. Callers should not rely this representation when constructing bit
453
- // strings.
918
+ // strings. The padding bits in the |ASN1_STRING| data must be zero.
919
+
920
+ // ASN1_BIT_STRING_new calls |ASN1_STRING_type_new| with |V_ASN1_BIT_STRING|.
921
+ OPENSSL_EXPORT ASN1_BIT_STRING *ASN1_BIT_STRING_new(void);
922
+
923
+ // ASN1_BIT_STRING_free calls |ASN1_STRING_free|.
924
+ OPENSSL_EXPORT void ASN1_BIT_STRING_free(ASN1_BIT_STRING *str);
925
+
926
+ // d2i_ASN1_BIT_STRING parses up to |len| bytes from |*inp| as a DER-encoded
927
+ // ASN.1 BIT STRING, as described in |d2i_SAMPLE_with_reuse|.
928
+ //
929
+ // TODO(https://crbug.com/boringssl/354): This function currently also accepts
930
+ // BER, but this will be removed in the future.
931
+ OPENSSL_EXPORT ASN1_BIT_STRING *d2i_ASN1_BIT_STRING(ASN1_BIT_STRING **out,
932
+ const uint8_t **inp,
933
+ long len);
934
+
935
+ // i2d_ASN1_BIT_STRING marshals |in| as a DER-encoded ASN.1 BIT STRING, as
936
+ // described in |i2d_SAMPLE|.
937
+ OPENSSL_EXPORT int i2d_ASN1_BIT_STRING(const ASN1_BIT_STRING *in,
938
+ uint8_t **outp);
939
+
940
+ // c2i_ASN1_BIT_STRING decodes |len| bytes from |*inp| as the contents of a
941
+ // DER-encoded BIT STRING, excluding the tag and length. It behaves like
942
+ // |d2i_SAMPLE_with_reuse| except, on success, it always consumes all |len|
943
+ // bytes.
944
+ //
945
+ // TODO(https://crbug.com/boringssl/354): This function currently also accepts
946
+ // BER, but this will be removed in the future.
947
+ OPENSSL_EXPORT ASN1_BIT_STRING *c2i_ASN1_BIT_STRING(ASN1_BIT_STRING **out,
948
+ const uint8_t **inp,
949
+ long len);
950
+
951
+ // i2c_ASN1_BIT_STRING encodes |in| as the contents of a DER-encoded BIT STRING,
952
+ // excluding the tag and length. If |outp| is non-NULL, it writes the result to
953
+ // |*outp|, advances |*outp| just past the output, and returns the number of
954
+ // bytes written. |*outp| must have space available for the result. If |outp| is
955
+ // NULL, it returns the number of bytes without writing anything. On error, it
956
+ // returns a value <= 0.
957
+ //
958
+ // Note this function differs slightly from |i2d_SAMPLE|. If |outp| is non-NULL
959
+ // and |*outp| is NULL, it does not allocate a new buffer.
960
+ //
961
+ // TODO(davidben): This function currently returns zero on error instead of -1,
962
+ // but it is also mostly infallible. I've currently documented <= 0 to suggest
963
+ // callers work with both.
964
+ OPENSSL_EXPORT int i2c_ASN1_BIT_STRING(const ASN1_BIT_STRING *in,
965
+ uint8_t **outp);
966
+
967
+ // ASN1_BIT_STRING is an |ASN1_ITEM| with ASN.1 type BIT STRING and C type
968
+ // |ASN1_BIT_STRING*|.
969
+ DECLARE_ASN1_ITEM(ASN1_BIT_STRING)
454
970
 
455
971
  // ASN1_BIT_STRING_num_bytes computes the length of |str| in bytes. If |str|'s
456
972
  // bit length is a multiple of 8, it sets |*out| to the byte length and returns
@@ -489,8 +1005,6 @@ OPENSSL_EXPORT int ASN1_BIT_STRING_check(const ASN1_BIT_STRING *str,
489
1005
  const unsigned char *flags,
490
1006
  int flags_len);
491
1007
 
492
- // TODO(davidben): Expand and document function prototypes generated in macros.
493
-
494
1008
 
495
1009
  // Integers and enumerated values.
496
1010
  //
@@ -501,12 +1015,65 @@ OPENSSL_EXPORT int ASN1_BIT_STRING_check(const ASN1_BIT_STRING *str,
501
1015
  // |V_ASN1_NEG_INTEGER| or |V_ASN1_NEG_ENUMERATED|. Note this differs from DER's
502
1016
  // two's complement representation.
503
1017
 
1018
+ DEFINE_STACK_OF(ASN1_INTEGER)
1019
+
1020
+ // ASN1_INTEGER_new calls |ASN1_STRING_type_new| with |V_ASN1_INTEGER|. The
1021
+ // resulting object has value zero.
1022
+ OPENSSL_EXPORT ASN1_INTEGER *ASN1_INTEGER_new(void);
1023
+
1024
+ // ASN1_INTEGER_free calls |ASN1_STRING_free|.
1025
+ OPENSSL_EXPORT void ASN1_INTEGER_free(ASN1_INTEGER *str);
1026
+
1027
+ // ASN1_INTEGER_dup calls |ASN1_STRING_dup|.
1028
+ OPENSSL_EXPORT ASN1_INTEGER *ASN1_INTEGER_dup(const ASN1_INTEGER *x);
1029
+
1030
+ // d2i_ASN1_INTEGER parses up to |len| bytes from |*inp| as a DER-encoded
1031
+ // ASN.1 INTEGER, as described in |d2i_SAMPLE_with_reuse|.
1032
+ //
1033
+ // TODO(https://crbug.com/boringssl/354): This function currently also accepts
1034
+ // BER, but this will be removed in the future.
1035
+ OPENSSL_EXPORT ASN1_INTEGER *d2i_ASN1_INTEGER(ASN1_INTEGER **out,
1036
+ const uint8_t **inp, long len);
1037
+
1038
+ // i2d_ASN1_INTEGER marshals |in| as a DER-encoded ASN.1 INTEGER, as
1039
+ // described in |i2d_SAMPLE|.
1040
+ OPENSSL_EXPORT int i2d_ASN1_INTEGER(const ASN1_INTEGER *in, uint8_t **outp);
1041
+
1042
+ // c2i_ASN1_INTEGER decodes |len| bytes from |*inp| as the contents of a
1043
+ // DER-encoded INTEGER, excluding the tag and length. It behaves like
1044
+ // |d2i_SAMPLE_with_reuse| except, on success, it always consumes all |len|
1045
+ // bytes.
1046
+ //
1047
+ // TODO(https://crbug.com/boringssl/354): This function currently also accepts
1048
+ // some invalid inputs, but this will be removed in the future.
1049
+ OPENSSL_EXPORT ASN1_INTEGER *c2i_ASN1_INTEGER(ASN1_INTEGER **in,
1050
+ const uint8_t **outp, long len);
1051
+
1052
+ // i2c_ASN1_INTEGER encodes |in| as the contents of a DER-encoded INTEGER,
1053
+ // excluding the tag and length. If |outp| is non-NULL, it writes the result to
1054
+ // |*outp|, advances |*outp| just past the output, and returns the number of
1055
+ // bytes written. |*outp| must have space available for the result. If |outp| is
1056
+ // NULL, it returns the number of bytes without writing anything. On error, it
1057
+ // returns a value <= 0.
1058
+ //
1059
+ // Note this function differs slightly from |i2d_SAMPLE|. If |outp| is non-NULL
1060
+ // and |*outp| is NULL, it does not allocate a new buffer.
1061
+ //
1062
+ // TODO(davidben): This function currently returns zero on error instead of -1,
1063
+ // but it is also mostly infallible. I've currently documented <= 0 to suggest
1064
+ // callers work with both.
1065
+ OPENSSL_EXPORT int i2c_ASN1_INTEGER(const ASN1_INTEGER *in, uint8_t **outp);
1066
+
1067
+ // ASN1_INTEGER is an |ASN1_ITEM| with ASN.1 type INTEGER and C type
1068
+ // |ASN1_INTEGER*|.
1069
+ DECLARE_ASN1_ITEM(ASN1_INTEGER)
1070
+
504
1071
  // ASN1_INTEGER_set sets |a| to an INTEGER with value |v|. It returns one on
505
1072
  // success and zero on error.
506
1073
  OPENSSL_EXPORT int ASN1_INTEGER_set(ASN1_INTEGER *a, long v);
507
1074
 
508
- // ASN1_INTEGER_set sets |a| to an INTEGER with value |v|. It returns one on
509
- // success and zero on error.
1075
+ // ASN1_INTEGER_set_uint64 sets |a| to an INTEGER with value |v|. It returns one
1076
+ // on success and zero on error.
510
1077
  OPENSSL_EXPORT int ASN1_INTEGER_set_uint64(ASN1_INTEGER *out, uint64_t v);
511
1078
 
512
1079
  // ASN1_INTEGER_get returns the value of |a| as a |long|, or -1 if |a| is out of
@@ -531,12 +1098,37 @@ OPENSSL_EXPORT BIGNUM *ASN1_INTEGER_to_BN(const ASN1_INTEGER *ai, BIGNUM *bn);
531
1098
  OPENSSL_EXPORT int ASN1_INTEGER_cmp(const ASN1_INTEGER *x,
532
1099
  const ASN1_INTEGER *y);
533
1100
 
1101
+ // ASN1_ENUMERATED_new calls |ASN1_STRING_type_new| with |V_ASN1_ENUMERATED|.
1102
+ // The resulting object has value zero.
1103
+ OPENSSL_EXPORT ASN1_ENUMERATED *ASN1_ENUMERATED_new(void);
1104
+
1105
+ // ASN1_ENUMERATED_free calls |ASN1_STRING_free|.
1106
+ OPENSSL_EXPORT void ASN1_ENUMERATED_free(ASN1_ENUMERATED *str);
1107
+
1108
+ // d2i_ASN1_ENUMERATED parses up to |len| bytes from |*inp| as a DER-encoded
1109
+ // ASN.1 ENUMERATED, as described in |d2i_SAMPLE_with_reuse|.
1110
+ //
1111
+ // TODO(https://crbug.com/boringssl/354): This function currently also accepts
1112
+ // BER, but this will be removed in the future.
1113
+ OPENSSL_EXPORT ASN1_ENUMERATED *d2i_ASN1_ENUMERATED(ASN1_ENUMERATED **out,
1114
+ const uint8_t **inp,
1115
+ long len);
1116
+
1117
+ // i2d_ASN1_ENUMERATED marshals |in| as a DER-encoded ASN.1 ENUMERATED, as
1118
+ // described in |i2d_SAMPLE|.
1119
+ OPENSSL_EXPORT int i2d_ASN1_ENUMERATED(const ASN1_ENUMERATED *in,
1120
+ uint8_t **outp);
1121
+
1122
+ // ASN1_ENUMERATED is an |ASN1_ITEM| with ASN.1 type ENUMERATED and C type
1123
+ // |ASN1_ENUMERATED*|.
1124
+ DECLARE_ASN1_ITEM(ASN1_ENUMERATED)
1125
+
534
1126
  // ASN1_ENUMERATED_set sets |a| to an ENUMERATED with value |v|. It returns one
535
1127
  // on success and zero on error.
536
1128
  OPENSSL_EXPORT int ASN1_ENUMERATED_set(ASN1_ENUMERATED *a, long v);
537
1129
 
538
- // ASN1_INTEGER_get returns the value of |a| as a |long|, or -1 if |a| is out of
539
- // range or the wrong type.
1130
+ // ASN1_ENUMERATED_get returns the value of |a| as a |long|, or -1 if |a| is out
1131
+ // of range or the wrong type.
540
1132
  OPENSSL_EXPORT long ASN1_ENUMERATED_get(const ASN1_ENUMERATED *a);
541
1133
 
542
1134
  // BN_to_ASN1_ENUMERATED sets |ai| to an ENUMERATED with value |bn| and returns
@@ -552,8 +1144,6 @@ OPENSSL_EXPORT ASN1_ENUMERATED *BN_to_ASN1_ENUMERATED(const BIGNUM *bn,
552
1144
  OPENSSL_EXPORT BIGNUM *ASN1_ENUMERATED_to_BN(const ASN1_ENUMERATED *ai,
553
1145
  BIGNUM *bn);
554
1146
 
555
- // TODO(davidben): Expand and document function prototypes generated in macros.
556
-
557
1147
 
558
1148
  // Time.
559
1149
  //
@@ -569,8 +1159,33 @@ OPENSSL_EXPORT BIGNUM *ASN1_ENUMERATED_to_BN(const ASN1_ENUMERATED *ai,
569
1159
  // BER, and the additional restrictions from RFC 5280, but future versions may.
570
1160
  // Callers should not rely on fractional seconds and non-UTC time zones.
571
1161
  //
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.
1162
+ // The |ASN1_TIME| typedef is a multi-string representing the X.509 Time type,
1163
+ // which is a CHOICE of GeneralizedTime and UTCTime, using UTCTime when the
1164
+ // value is in range.
1165
+
1166
+ // ASN1_UTCTIME_new calls |ASN1_STRING_type_new| with |V_ASN1_UTCTIME|. The
1167
+ // resulting object contains empty contents and must be initialized to be a
1168
+ // valid UTCTime.
1169
+ OPENSSL_EXPORT ASN1_UTCTIME *ASN1_UTCTIME_new(void);
1170
+
1171
+ // ASN1_UTCTIME_free calls |ASN1_STRING_free|.
1172
+ OPENSSL_EXPORT void ASN1_UTCTIME_free(ASN1_UTCTIME *str);
1173
+
1174
+ // d2i_ASN1_UTCTIME parses up to |len| bytes from |*inp| as a DER-encoded
1175
+ // ASN.1 UTCTime, as described in |d2i_SAMPLE_with_reuse|.
1176
+ //
1177
+ // TODO(https://crbug.com/boringssl/354): This function currently also accepts
1178
+ // BER, but this will be removed in the future.
1179
+ OPENSSL_EXPORT ASN1_UTCTIME *d2i_ASN1_UTCTIME(ASN1_UTCTIME **out,
1180
+ const uint8_t **inp, long len);
1181
+
1182
+ // i2d_ASN1_UTCTIME marshals |in| as a DER-encoded ASN.1 UTCTime, as
1183
+ // described in |i2d_SAMPLE|.
1184
+ OPENSSL_EXPORT int i2d_ASN1_UTCTIME(const ASN1_UTCTIME *in, uint8_t **outp);
1185
+
1186
+ // ASN1_UTCTIME is an |ASN1_ITEM| with ASN.1 type UTCTime and C type
1187
+ // |ASN1_UTCTIME*|.
1188
+ DECLARE_ASN1_ITEM(ASN1_UTCTIME)
574
1189
 
575
1190
  // ASN1_UTCTIME_check returns one if |a| is a valid UTCTime and zero otherwise.
576
1191
  OPENSSL_EXPORT int ASN1_UTCTIME_check(const ASN1_UTCTIME *a);
@@ -602,6 +1217,31 @@ OPENSSL_EXPORT int ASN1_UTCTIME_set_string(ASN1_UTCTIME *s, const char *str);
602
1217
  // they are equal, 1 if |s| > |t|, and -2 on error.
603
1218
  OPENSSL_EXPORT int ASN1_UTCTIME_cmp_time_t(const ASN1_UTCTIME *s, time_t t);
604
1219
 
1220
+ // ASN1_GENERALIZEDTIME_new calls |ASN1_STRING_type_new| with
1221
+ // |V_ASN1_GENERALIZEDTIME|. The resulting object contains empty contents and
1222
+ // must be initialized to be a valid GeneralizedTime.
1223
+ OPENSSL_EXPORT ASN1_GENERALIZEDTIME *ASN1_GENERALIZEDTIME_new(void);
1224
+
1225
+ // ASN1_GENERALIZEDTIME_free calls |ASN1_STRING_free|.
1226
+ OPENSSL_EXPORT void ASN1_GENERALIZEDTIME_free(ASN1_GENERALIZEDTIME *str);
1227
+
1228
+ // d2i_ASN1_GENERALIZEDTIME parses up to |len| bytes from |*inp| as a
1229
+ // DER-encoded ASN.1 GeneralizedTime, as described in |d2i_SAMPLE_with_reuse|.
1230
+ //
1231
+ // TODO(https://crbug.com/boringssl/354): This function currently also accepts
1232
+ // BER, but this will be removed in the future.
1233
+ OPENSSL_EXPORT ASN1_GENERALIZEDTIME *d2i_ASN1_GENERALIZEDTIME(
1234
+ ASN1_GENERALIZEDTIME **out, const uint8_t **inp, long len);
1235
+
1236
+ // i2d_ASN1_GENERALIZEDTIME marshals |in| as a DER-encoded ASN.1
1237
+ // GeneralizedTime, as described in |i2d_SAMPLE|.
1238
+ OPENSSL_EXPORT int i2d_ASN1_GENERALIZEDTIME(const ASN1_GENERALIZEDTIME *in,
1239
+ uint8_t **outp);
1240
+
1241
+ // ASN1_GENERALIZEDTIME is an |ASN1_ITEM| with ASN.1 type GeneralizedTime and C
1242
+ // type |ASN1_GENERALIZEDTIME*|.
1243
+ DECLARE_ASN1_ITEM(ASN1_GENERALIZEDTIME)
1244
+
605
1245
  // ASN1_GENERALIZEDTIME_check returns one if |a| is a valid GeneralizedTime and
606
1246
  // zero otherwise.
607
1247
  OPENSSL_EXPORT int ASN1_GENERALIZEDTIME_check(const ASN1_GENERALIZEDTIME *a);
@@ -632,6 +1272,33 @@ OPENSSL_EXPORT ASN1_GENERALIZEDTIME *ASN1_GENERALIZEDTIME_adj(
632
1272
  OPENSSL_EXPORT int ASN1_GENERALIZEDTIME_set_string(ASN1_GENERALIZEDTIME *s,
633
1273
  const char *str);
634
1274
 
1275
+ // B_ASN1_TIME is a bitmask of types allowed in an X.509 Time.
1276
+ #define B_ASN1_TIME (B_ASN1_UTCTIME | B_ASN1_GENERALIZEDTIME)
1277
+
1278
+ // ASN1_TIME_new returns a newly-allocated |ASN1_TIME| with type -1, or NULL on
1279
+ // error. The resulting |ASN1_TIME| is not a valid X.509 Time until initialized
1280
+ // with a value.
1281
+ OPENSSL_EXPORT ASN1_TIME *ASN1_TIME_new(void);
1282
+
1283
+ // ASN1_TIME_free releases memory associated with |str|.
1284
+ OPENSSL_EXPORT void ASN1_TIME_free(ASN1_TIME *str);
1285
+
1286
+ // d2i_ASN1_TIME parses up to |len| bytes from |*inp| as a DER-encoded X.509
1287
+ // Time (RFC 5280), as described in |d2i_SAMPLE_with_reuse|.
1288
+ //
1289
+ // TODO(https://crbug.com/boringssl/354): This function currently also accepts
1290
+ // BER, but this will be removed in the future.
1291
+ OPENSSL_EXPORT ASN1_TIME *d2i_ASN1_TIME(ASN1_TIME **out, const uint8_t **inp,
1292
+ long len);
1293
+
1294
+ // i2d_ASN1_TIME marshals |in| as a DER-encoded X.509 Time (RFC 5280), as
1295
+ // described in |i2d_SAMPLE|.
1296
+ OPENSSL_EXPORT int i2d_ASN1_TIME(const ASN1_TIME *in, uint8_t **outp);
1297
+
1298
+ // ASN1_TIME is an |ASN1_ITEM| whose ASN.1 type is X.509 Time (RFC 5280) and C
1299
+ // type is |ASN1_TIME*|.
1300
+ DECLARE_ASN1_ITEM(ASN1_TIME)
1301
+
635
1302
  // ASN1_TIME_diff computes |to| - |from|. On success, it sets |*out_days| to the
636
1303
  // difference in days, rounded towards zero, sets |*out_seconds| to the
637
1304
  // remainder, and returns one. On error, it returns zero.
@@ -685,15 +1352,95 @@ OPENSSL_EXPORT int ASN1_TIME_set_string(ASN1_TIME *s, const char *str);
685
1352
  // TODO(davidben): Expand and document function prototypes generated in macros.
686
1353
 
687
1354
 
688
- // Arbitrary elements.
1355
+ // NULL values.
1356
+ //
1357
+ // This library represents the ASN.1 NULL value by a non-NULL pointer to the
1358
+ // opaque type |ASN1_NULL|. An omitted OPTIONAL ASN.1 NULL value is a NULL
1359
+ // pointer. Unlike other pointer types, it is not necessary to free |ASN1_NULL|
1360
+ // pointers, but it is safe to do so.
689
1361
 
690
- // ASN1_VALUE_st (aka |ASN1_VALUE|) is an opaque type used internally in the
691
- // library.
692
- typedef struct ASN1_VALUE_st ASN1_VALUE;
1362
+ // ASN1_NULL_new returns an opaque, non-NULL pointer. It is safe to call
1363
+ // |ASN1_NULL_free| on the result, but not necessary.
1364
+ OPENSSL_EXPORT ASN1_NULL *ASN1_NULL_new(void);
1365
+
1366
+ // ASN1_NULL_free does nothing.
1367
+ OPENSSL_EXPORT void ASN1_NULL_free(ASN1_NULL *null);
1368
+
1369
+ // d2i_ASN1_NULL parses a DER-encoded ASN.1 NULL value from up to |len| bytes
1370
+ // at |*inp|, as described in |d2i_SAMPLE|.
1371
+ //
1372
+ // TODO(https://crbug.com/boringssl/354): This function currently also accepts
1373
+ // BER, but this will be removed in the future.
1374
+ OPENSSL_EXPORT ASN1_NULL *d2i_ASN1_NULL(ASN1_NULL **out, const uint8_t **inp,
1375
+ long len);
1376
+
1377
+ // i2d_ASN1_NULL marshals |in| as a DER-encoded ASN.1 NULL value, as described
1378
+ // in |i2d_SAMPLE|.
1379
+ OPENSSL_EXPORT int i2d_ASN1_NULL(const ASN1_NULL *in, uint8_t **outp);
1380
+
1381
+ // ASN1_NULL is an |ASN1_ITEM| with ASN.1 type NULL and C type |ASN1_NULL*|.
1382
+ DECLARE_ASN1_ITEM(ASN1_NULL)
1383
+
1384
+
1385
+ // Object identifiers.
1386
+ //
1387
+ // An |ASN1_OBJECT| represents a ASN.1 OBJECT IDENTIFIER. See also obj.h for
1388
+ // additional functions relating to |ASN1_OBJECT|.
1389
+ //
1390
+ // TODO(davidben): What's the relationship between asn1.h and obj.h? Most of
1391
+ // obj.h deals with the large NID table, but then functions like |OBJ_get0_data|
1392
+ // or |OBJ_dup| are general |ASN1_OBJECT| functions.
1393
+
1394
+ DEFINE_STACK_OF(ASN1_OBJECT)
1395
+
1396
+ // ASN1_OBJECT_create returns a newly-allocated |ASN1_OBJECT| with |len| bytes
1397
+ // from |data| as the encoded OID, or NULL on error. |data| should contain the
1398
+ // DER-encoded identifier, excluding the tag and length.
1399
+ //
1400
+ // |nid| should be |NID_undef|. Passing a NID value that does not match |data|
1401
+ // will cause some functions to misbehave. |sn| and |ln| should be NULL. If
1402
+ // non-NULL, they are stored as short and long names, respectively, but these
1403
+ // values have no effect for |ASN1_OBJECT|s created through this function.
1404
+ //
1405
+ // TODO(davidben): Should we just ignore all those parameters? NIDs and names
1406
+ // are only relevant for |ASN1_OBJECT|s in the obj.h table.
1407
+ OPENSSL_EXPORT ASN1_OBJECT *ASN1_OBJECT_create(int nid, const uint8_t *data,
1408
+ int len, const char *sn,
1409
+ const char *ln);
1410
+
1411
+ // ASN1_OBJECT_free releases memory associated with |a|. If |a| is a static
1412
+ // |ASN1_OBJECT|, returned from |OBJ_nid2obj|, this function does nothing.
1413
+ OPENSSL_EXPORT void ASN1_OBJECT_free(ASN1_OBJECT *a);
1414
+
1415
+ // d2i_ASN1_OBJECT parses a DER-encoded ASN.1 OBJECT IDENTIFIER from up to |len|
1416
+ // bytes at |*inp|, as described in |d2i_SAMPLE_with_reuse|.
1417
+ //
1418
+ // TODO(https://crbug.com/boringssl/354): This function currently also accepts
1419
+ // BER, but this will be removed in the future.
1420
+ OPENSSL_EXPORT ASN1_OBJECT *d2i_ASN1_OBJECT(ASN1_OBJECT **out,
1421
+ const uint8_t **inp, long len);
1422
+
1423
+ // i2d_ASN1_OBJECT marshals |in| as a DER-encoded ASN.1 OBJECT IDENTIFIER, as
1424
+ // described in |i2d_SAMPLE|.
1425
+ OPENSSL_EXPORT int i2d_ASN1_OBJECT(const ASN1_OBJECT *a, uint8_t **outp);
1426
+
1427
+ // c2i_ASN1_OBJECT decodes |len| bytes from |*inp| as the contents of a
1428
+ // DER-encoded OBJECT IDENTIFIER, excluding the tag and length. It behaves like
1429
+ // |d2i_SAMPLE_with_reuse| except, on success, it always consumes all |len|
1430
+ // bytes.
1431
+ OPENSSL_EXPORT ASN1_OBJECT *c2i_ASN1_OBJECT(ASN1_OBJECT **out,
1432
+ const uint8_t **inp, long len);
1433
+
1434
+ // ASN1_OBJECT is an |ASN1_ITEM| with ASN.1 type OBJECT IDENTIFIER and C type
1435
+ // |ASN1_OBJECT*|.
1436
+ DECLARE_ASN1_ITEM(ASN1_OBJECT)
1437
+
1438
+
1439
+ // Arbitrary elements.
693
1440
 
694
1441
  // An asn1_type_st (aka |ASN1_TYPE|) represents an arbitrary ASN.1 element,
695
- // typically used used for ANY types. It contains a |type| field and a |value|
696
- // union dependent on |type|.
1442
+ // typically used for ANY types. It contains a |type| field and a |value| union
1443
+ // dependent on |type|.
697
1444
  //
698
1445
  // WARNING: This struct has a complex representation. Callers must not construct
699
1446
  // |ASN1_TYPE| values manually. Use |ASN1_TYPE_set| and |ASN1_TYPE_set1|
@@ -759,6 +1506,34 @@ struct asn1_type_st {
759
1506
  } value;
760
1507
  };
761
1508
 
1509
+ DEFINE_STACK_OF(ASN1_TYPE)
1510
+
1511
+ // ASN1_TYPE_new returns a newly-allocated |ASN1_TYPE|, or NULL on allocation
1512
+ // failure. The resulting object has type -1 and must be initialized to be
1513
+ // a valid ANY value.
1514
+ OPENSSL_EXPORT ASN1_TYPE *ASN1_TYPE_new(void);
1515
+
1516
+ // ASN1_TYPE_free releases memory associated with |a|.
1517
+ OPENSSL_EXPORT void ASN1_TYPE_free(ASN1_TYPE *a);
1518
+
1519
+ // d2i_ASN1_TYPE parses up to |len| bytes from |*inp| as an ASN.1 value of any
1520
+ // type, as described in |d2i_SAMPLE_with_reuse|. Note this function only
1521
+ // validates primitive, universal types supported by this library. Values of
1522
+ // type |V_ASN1_SEQUENCE|, |V_ASN1_SET|, |V_ASN1_OTHER|, or an unsupported
1523
+ // primitive type must be validated by the caller when interpreting.
1524
+ //
1525
+ // TODO(https://crbug.com/boringssl/354): This function currently also accepts
1526
+ // BER, but this will be removed in the future.
1527
+ OPENSSL_EXPORT ASN1_TYPE *d2i_ASN1_TYPE(ASN1_TYPE **out, const uint8_t **inp,
1528
+ long len);
1529
+
1530
+ // i2d_ASN1_TYPE marshals |in| as DER, as described in |i2d_SAMPLE|.
1531
+ OPENSSL_EXPORT int i2d_ASN1_TYPE(const ASN1_TYPE *in, uint8_t **outp);
1532
+
1533
+ // ASN1_ANY is an |ASN1_ITEM| with ASN.1 type ANY and C type |ASN1_TYPE*|. Note
1534
+ // the |ASN1_ITEM| name and C type do not match.
1535
+ DECLARE_ASN1_ITEM(ASN1_ANY)
1536
+
762
1537
  // ASN1_TYPE_get returns the type of |a|, which will be one of the |V_ASN1_*|
763
1538
  // constants, or zero if |a| is not fully initialized.
764
1539
  OPENSSL_EXPORT int ASN1_TYPE_get(const ASN1_TYPE *a);
@@ -786,8 +1561,39 @@ OPENSSL_EXPORT int ASN1_TYPE_set1(ASN1_TYPE *a, int type, const void *value);
786
1561
  // ordering.
787
1562
  OPENSSL_EXPORT int ASN1_TYPE_cmp(const ASN1_TYPE *a, const ASN1_TYPE *b);
788
1563
 
789
- // TODO(davidben): Most of |ASN1_TYPE|'s APIs are hidden behind macros. Expand
790
- // the macros, document them, and move them to this section.
1564
+ typedef STACK_OF(ASN1_TYPE) ASN1_SEQUENCE_ANY;
1565
+
1566
+ // d2i_ASN1_SEQUENCE_ANY parses up to |len| bytes from |*inp| as a DER-encoded
1567
+ // ASN.1 SEQUENCE OF ANY structure, as described in |d2i_SAMPLE_with_reuse|. The
1568
+ // resulting |ASN1_SEQUENCE_ANY| owns its contents and thus must be released
1569
+ // with |sk_ASN1_TYPE_pop_free| and |ASN1_TYPE_free|, not |sk_ASN1_TYPE_free|.
1570
+ //
1571
+ // TODO(https://crbug.com/boringssl/354): This function currently also accepts
1572
+ // BER, but this will be removed in the future.
1573
+ OPENSSL_EXPORT ASN1_SEQUENCE_ANY *d2i_ASN1_SEQUENCE_ANY(ASN1_SEQUENCE_ANY **out,
1574
+ const uint8_t **inp,
1575
+ long len);
1576
+
1577
+ // i2d_ASN1_SEQUENCE_ANY marshals |in| as a DER-encoded SEQUENCE OF ANY
1578
+ // structure, as described in |i2d_SAMPLE|.
1579
+ OPENSSL_EXPORT int i2d_ASN1_SEQUENCE_ANY(const ASN1_SEQUENCE_ANY *in,
1580
+ uint8_t **outp);
1581
+
1582
+ // d2i_ASN1_SET_ANY parses up to |len| bytes from |*inp| as a DER-encoded ASN.1
1583
+ // SET OF ANY structure, as described in |d2i_SAMPLE_with_reuse|. The resulting
1584
+ // |ASN1_SEQUENCE_ANY| owns its contents and thus must be released with
1585
+ // |sk_ASN1_TYPE_pop_free| and |ASN1_TYPE_free|, not |sk_ASN1_TYPE_free|.
1586
+ //
1587
+ // TODO(https://crbug.com/boringssl/354): This function currently also accepts
1588
+ // BER, but this will be removed in the future.
1589
+ OPENSSL_EXPORT ASN1_SEQUENCE_ANY *d2i_ASN1_SET_ANY(ASN1_SEQUENCE_ANY **out,
1590
+ const uint8_t **inp,
1591
+ long len);
1592
+
1593
+ // i2d_ASN1_SET_ANY marshals |in| as a DER-encoded SET OF ANY structure, as
1594
+ // described in |i2d_SAMPLE|.
1595
+ OPENSSL_EXPORT int i2d_ASN1_SET_ANY(const ASN1_SEQUENCE_ANY *in,
1596
+ uint8_t **outp);
791
1597
 
792
1598
 
793
1599
  // Human-readable output.
@@ -882,61 +1688,90 @@ OPENSSL_EXPORT int ASN1_STRING_print_ex(BIO *out, const ASN1_STRING *str,
882
1688
  OPENSSL_EXPORT int ASN1_STRING_print_ex_fp(FILE *fp, const ASN1_STRING *str,
883
1689
  unsigned long flags);
884
1690
 
1691
+ // i2a_ASN1_INTEGER writes a human-readable representation of |a| to |bp|. It
1692
+ // returns the number of bytes written on success, or a negative number on
1693
+ // error. On error, this function may have written a partial output to |bp|.
1694
+ OPENSSL_EXPORT int i2a_ASN1_INTEGER(BIO *bp, const ASN1_INTEGER *a);
885
1695
 
886
- // Deprecated functions.
1696
+ // i2a_ASN1_ENUMERATED writes a human-readable representation of |a| to |bp|. It
1697
+ // returns the number of bytes written on success, or a negative number on
1698
+ // error. On error, this function may have written a partial output to |bp|.
1699
+ OPENSSL_EXPORT int i2a_ASN1_ENUMERATED(BIO *bp, const ASN1_ENUMERATED *a);
887
1700
 
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.
1701
+ // i2a_ASN1_OBJECT writes a human-readable representation of |a| to |bp|. It
1702
+ // returns the number of bytes written on success, or a negative number on
1703
+ // error. On error, this function may have written a partial output to |bp|.
1704
+ OPENSSL_EXPORT int i2a_ASN1_OBJECT(BIO *bp, const ASN1_OBJECT *a);
1705
+
1706
+ // i2a_ASN1_STRING writes a text representation of |a|'s contents to |bp|. It
1707
+ // returns the number of bytes written on success, or a negative number on
1708
+ // error. On error, this function may have written a partial output to |bp|.
1709
+ // |type| is ignored.
892
1710
  //
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);
1711
+ // This function does not decode |a| into a Unicode string. It only hex-encodes
1712
+ // the internal representation of |a|. This is suitable for printing an OCTET
1713
+ // STRING, but may not be human-readable for any other string type.
1714
+ OPENSSL_EXPORT int i2a_ASN1_STRING(BIO *bp, const ASN1_STRING *a, int type);
896
1715
 
897
- // ASN1_STRING_set_default_mask does nothing.
898
- OPENSSL_EXPORT void ASN1_STRING_set_default_mask(unsigned long mask);
1716
+ // i2t_ASN1_OBJECT calls |OBJ_obj2txt| with |always_return_oid| set to zero.
1717
+ OPENSSL_EXPORT int i2t_ASN1_OBJECT(char *buf, int buf_len,
1718
+ const ASN1_OBJECT *a);
899
1719
 
900
- // ASN1_STRING_set_default_mask_asc returns one.
901
- OPENSSL_EXPORT int ASN1_STRING_set_default_mask_asc(const char *p);
902
1720
 
903
- // ASN1_STRING_get_default_mask returns |B_ASN1_UTF8STRING|.
904
- OPENSSL_EXPORT unsigned long ASN1_STRING_get_default_mask(void);
1721
+ // Low-level encoding functions.
905
1722
 
906
- // ASN1_STRING_TABLE_cleanup does nothing.
907
- OPENSSL_EXPORT void ASN1_STRING_TABLE_cleanup(void);
1723
+ // ASN1_get_object parses a BER element from up to |max_len| bytes at |*inp|. It
1724
+ // returns |V_ASN1_CONSTRUCTED| if it successfully parsed a constructed element,
1725
+ // zero if it successfully parsed a primitive element, and 0x80 on error. On
1726
+ // success, it additionally advances |*inp| to the element body, sets
1727
+ // |*out_length|, |*out_tag|, and |*out_class| to the element's length, tag
1728
+ // number, and tag class, respectively,
1729
+ //
1730
+ // Unlike OpenSSL, this function does not support indefinite-length elements.
1731
+ //
1732
+ // This function is difficult to use correctly. Use |CBS_get_asn1| and related
1733
+ // functions from bytestring.h.
1734
+ //
1735
+ // TODO(https://crbug.com/boringssl/354): Remove support for non-minimal
1736
+ // lengths.
1737
+ OPENSSL_EXPORT int ASN1_get_object(const unsigned char **inp, long *out_length,
1738
+ int *out_tag, int *out_class, long max_len);
908
1739
 
1740
+ // ASN1_put_object writes the header for a DER or BER element to |*outp| and
1741
+ // advances |*outp| by the number of bytes written. The caller is responsible
1742
+ // for ensuring |*outp| has enough space for the output. The header describes an
1743
+ // element with length |length|, tag number |tag|, and class |xclass|. |xclass|
1744
+ // should be one of the |V_ASN1_*| tag class constants. The element is primitive
1745
+ // if |constructed| is zero and constructed if it is one or two. If
1746
+ // |constructed| is two, |length| is ignored and the element uses
1747
+ // indefinite-length encoding.
1748
+ //
1749
+ // Use |CBB_add_asn1| instead.
1750
+ OPENSSL_EXPORT void ASN1_put_object(unsigned char **outp, int constructed,
1751
+ int length, int tag, int xclass);
909
1752
 
910
- // Underdocumented functions.
1753
+ // ASN1_put_eoc writes two zero bytes to |*outp|, advances |*outp| to point past
1754
+ // those bytes, and returns two.
911
1755
  //
912
- // The following functions are not yet documented and organized.
1756
+ // Use definite-length encoding instead.
1757
+ OPENSSL_EXPORT int ASN1_put_eoc(unsigned char **outp);
913
1758
 
914
- DEFINE_STACK_OF(ASN1_OBJECT)
1759
+ // ASN1_object_size returns the number of bytes needed to encode a DER or BER
1760
+ // value with length |length| and tag number |tag|, or -1 on error. |tag| should
1761
+ // not include the constructed bit or tag class. If |constructed| is zero or
1762
+ // one, the result uses a definite-length encoding with minimally-encoded
1763
+ // length, as in DER. If |constructed| is two, the result uses BER
1764
+ // indefinite-length encoding.
1765
+ //
1766
+ // Use |CBB_add_asn1| instead.
1767
+ OPENSSL_EXPORT int ASN1_object_size(int constructed, int length, int tag);
915
1768
 
916
- // ASN1_ENCODING structure: this is used to save the received
917
- // encoding of an ASN1 type. This is useful to get round
918
- // problems with invalid encodings which can break signatures.
919
-
920
- typedef struct ASN1_ENCODING_st {
921
- unsigned char *enc; // DER encoding
922
- long len; // Length of encoding
923
- int modified; // set to 1 if 'enc' is invalid
924
- // alias_only is zero if |enc| owns the buffer that it points to
925
- // (although |enc| may still be NULL). If one, |enc| points into a
926
- // buffer that is owned elsewhere.
927
- unsigned alias_only : 1;
928
- // alias_only_on_next_parse is one iff the next parsing operation
929
- // should avoid taking a copy of the input and rather set
930
- // |alias_only|.
931
- unsigned alias_only_on_next_parse : 1;
932
- } ASN1_ENCODING;
933
-
934
- // Declarations for template structures: for full definitions
935
- // see asn1t.h
936
- typedef struct ASN1_TEMPLATE_st ASN1_TEMPLATE;
937
- typedef struct ASN1_TLC_st ASN1_TLC;
938
-
939
- // Declare ASN1 functions: the implement macro in in asn1t.h
1769
+
1770
+ // Function declaration macros.
1771
+ //
1772
+ // The following macros declare functions for ASN.1 types. Prefer writing the
1773
+ // prototypes directly. Particularly when |type|, |itname|, or |name| differ,
1774
+ // the macros can be difficult to understand.
940
1775
 
941
1776
  #define DECLARE_ASN1_FUNCTIONS(type) DECLARE_ASN1_FUNCTIONS_name(type, type)
942
1777
 
@@ -971,64 +1806,29 @@ typedef struct ASN1_TLC_st ASN1_TLC;
971
1806
  OPENSSL_EXPORT type *name##_new(void); \
972
1807
  OPENSSL_EXPORT void name##_free(type *a);
973
1808
 
974
- typedef void *d2i_of_void(void **, const unsigned char **, long);
975
- typedef int i2d_of_void(const void *, unsigned char **);
976
1809
 
977
- // The following macros and typedefs allow an ASN1_ITEM
978
- // to be embedded in a structure and referenced. Since
979
- // the ASN1_ITEM pointers need to be globally accessible
980
- // (possibly from shared libraries) they may exist in
981
- // different forms. On platforms that support it the
982
- // ASN1_ITEM structure itself will be globally exported.
983
- // Other platforms will export a function that returns
984
- // an ASN1_ITEM pointer.
985
- //
986
- // To handle both cases transparently the macros below
987
- // should be used instead of hard coding an ASN1_ITEM
988
- // pointer in a structure.
989
- //
990
- // The structure will look like this:
991
- //
992
- // typedef struct SOMETHING_st {
993
- // ...
994
- // ASN1_ITEM_EXP *iptr;
995
- // ...
996
- // } SOMETHING;
997
- //
998
- // It would be initialised as e.g.:
999
- //
1000
- // SOMETHING somevar = {...,ASN1_ITEM_ref(X509),...};
1001
- //
1002
- // and the actual pointer extracted with:
1003
- //
1004
- // const ASN1_ITEM *it = ASN1_ITEM_ptr(somevar.iptr);
1005
- //
1006
- // Finally an ASN1_ITEM pointer can be extracted from an
1007
- // appropriate reference with: ASN1_ITEM_rptr(X509). This
1008
- // would be used when a function takes an ASN1_ITEM * argument.
1009
- //
1010
-
1011
- // ASN1_ITEM pointer exported type
1012
- typedef const ASN1_ITEM ASN1_ITEM_EXP;
1013
-
1014
- // Macro to obtain ASN1_ITEM pointer from exported type
1015
- #define ASN1_ITEM_ptr(iptr) (iptr)
1016
-
1017
- // Macro to include ASN1_ITEM pointer from base type
1018
- #define ASN1_ITEM_ref(iptr) (&(iptr##_it))
1019
-
1020
- #define ASN1_ITEM_rptr(ref) (&(ref##_it))
1810
+ // Deprecated functions.
1021
1811
 
1022
- #define DECLARE_ASN1_ITEM(name) extern OPENSSL_EXPORT const ASN1_ITEM name##_it;
1812
+ // ASN1_PRINTABLE_type interprets |len| bytes from |s| as a Latin-1 string. It
1813
+ // returns the first of |V_ASN1_PRINTABLESTRING|, |V_ASN1_IA5STRING|, or
1814
+ // |V_ASN1_T61STRING| that can represent every character. If |len| is negative,
1815
+ // |strlen(s)| is used instead.
1816
+ //
1817
+ // TODO(davidben): Remove this once all copies of Conscrypt have been updated
1818
+ // past https://github.com/google/conscrypt/pull/1032.
1819
+ OPENSSL_EXPORT int ASN1_PRINTABLE_type(const unsigned char *s, int len);
1023
1820
 
1024
- DEFINE_STACK_OF(ASN1_INTEGER)
1821
+ // ASN1_STRING_set_default_mask does nothing.
1822
+ OPENSSL_EXPORT void ASN1_STRING_set_default_mask(unsigned long mask);
1025
1823
 
1026
- DEFINE_STACK_OF(ASN1_TYPE)
1824
+ // ASN1_STRING_set_default_mask_asc returns one.
1825
+ OPENSSL_EXPORT int ASN1_STRING_set_default_mask_asc(const char *p);
1027
1826
 
1028
- typedef STACK_OF(ASN1_TYPE) ASN1_SEQUENCE_ANY;
1827
+ // ASN1_STRING_get_default_mask returns |B_ASN1_UTF8STRING|.
1828
+ OPENSSL_EXPORT unsigned long ASN1_STRING_get_default_mask(void);
1029
1829
 
1030
- DECLARE_ASN1_ENCODE_FUNCTIONS_const(ASN1_SEQUENCE_ANY, ASN1_SEQUENCE_ANY)
1031
- DECLARE_ASN1_ENCODE_FUNCTIONS_const(ASN1_SEQUENCE_ANY, ASN1_SET_ANY)
1830
+ // ASN1_STRING_TABLE_cleanup does nothing.
1831
+ OPENSSL_EXPORT void ASN1_STRING_TABLE_cleanup(void);
1032
1832
 
1033
1833
  // M_ASN1_* are legacy aliases for various |ASN1_STRING| functions. Use the
1034
1834
  // functions themselves.
@@ -1078,136 +1878,53 @@ DECLARE_ASN1_ENCODE_FUNCTIONS_const(ASN1_SEQUENCE_ANY, ASN1_SET_ANY)
1078
1878
  #define M_ASN1_UTF8STRING_new() ASN1_UTF8STRING_new()
1079
1879
  #define M_ASN1_UTF8STRING_free(a) ASN1_UTF8STRING_free(a)
1080
1880
 
1081
- #define B_ASN1_TIME B_ASN1_UTCTIME | B_ASN1_GENERALIZEDTIME
1082
-
1881
+ // B_ASN1_PRINTABLE is a bitmask for an ad-hoc subset of string-like types. Note
1882
+ // the presence of |B_ASN1_UNKNOWN| means it includes types which |ASN1_tag2bit|
1883
+ // maps to |B_ASN1_UNKNOWN|.
1884
+ //
1885
+ // Do not use this. Despite the name, it has no connection to PrintableString or
1886
+ // printable characters. See https://crbug.com/boringssl/412.
1083
1887
  #define B_ASN1_PRINTABLE \
1084
- B_ASN1_NUMERICSTRING | B_ASN1_PRINTABLESTRING | B_ASN1_T61STRING | \
1085
- B_ASN1_IA5STRING | B_ASN1_BIT_STRING | B_ASN1_UNIVERSALSTRING | \
1086
- B_ASN1_BMPSTRING | B_ASN1_UTF8STRING | B_ASN1_SEQUENCE | B_ASN1_UNKNOWN
1087
-
1088
- #define B_ASN1_DIRECTORYSTRING \
1089
- B_ASN1_PRINTABLESTRING | B_ASN1_TELETEXSTRING | B_ASN1_BMPSTRING | \
1090
- B_ASN1_UNIVERSALSTRING | B_ASN1_UTF8STRING
1091
-
1092
- #define B_ASN1_DISPLAYTEXT \
1093
- B_ASN1_IA5STRING | B_ASN1_VISIBLESTRING | B_ASN1_BMPSTRING | B_ASN1_UTF8STRING
1094
-
1095
- DECLARE_ASN1_FUNCTIONS_fname(ASN1_TYPE, ASN1_ANY, ASN1_TYPE)
1096
-
1097
- OPENSSL_EXPORT ASN1_OBJECT *ASN1_OBJECT_new(void);
1098
- OPENSSL_EXPORT void ASN1_OBJECT_free(ASN1_OBJECT *a);
1099
- OPENSSL_EXPORT int i2d_ASN1_OBJECT(const ASN1_OBJECT *a, unsigned char **pp);
1100
- OPENSSL_EXPORT ASN1_OBJECT *c2i_ASN1_OBJECT(ASN1_OBJECT **a,
1101
- const unsigned char **pp,
1102
- long length);
1103
- OPENSSL_EXPORT ASN1_OBJECT *d2i_ASN1_OBJECT(ASN1_OBJECT **a,
1104
- const unsigned char **pp,
1105
- long length);
1106
-
1107
- DECLARE_ASN1_ITEM(ASN1_OBJECT)
1108
-
1109
- DECLARE_ASN1_FUNCTIONS(ASN1_BIT_STRING)
1110
- OPENSSL_EXPORT int i2c_ASN1_BIT_STRING(const ASN1_BIT_STRING *a,
1111
- unsigned char **pp);
1112
- OPENSSL_EXPORT ASN1_BIT_STRING *c2i_ASN1_BIT_STRING(ASN1_BIT_STRING **a,
1113
- const unsigned char **pp,
1114
- long length);
1115
-
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);
1120
-
1121
- DECLARE_ASN1_FUNCTIONS(ASN1_INTEGER)
1122
- OPENSSL_EXPORT int i2c_ASN1_INTEGER(const ASN1_INTEGER *a, unsigned char **pp);
1123
- OPENSSL_EXPORT ASN1_INTEGER *c2i_ASN1_INTEGER(ASN1_INTEGER **a,
1124
- const unsigned char **pp,
1125
- long length);
1126
- OPENSSL_EXPORT ASN1_INTEGER *ASN1_INTEGER_dup(const ASN1_INTEGER *x);
1127
-
1128
- DECLARE_ASN1_FUNCTIONS(ASN1_ENUMERATED)
1129
-
1130
- DECLARE_ASN1_FUNCTIONS(ASN1_OCTET_STRING)
1131
- OPENSSL_EXPORT ASN1_OCTET_STRING *ASN1_OCTET_STRING_dup(
1132
- const ASN1_OCTET_STRING *a);
1133
- OPENSSL_EXPORT int ASN1_OCTET_STRING_cmp(const ASN1_OCTET_STRING *a,
1134
- const ASN1_OCTET_STRING *b);
1135
- OPENSSL_EXPORT int ASN1_OCTET_STRING_set(ASN1_OCTET_STRING *str,
1136
- const unsigned char *data, int len);
1137
-
1138
- DECLARE_ASN1_FUNCTIONS(ASN1_VISIBLESTRING)
1139
- DECLARE_ASN1_FUNCTIONS(ASN1_UNIVERSALSTRING)
1140
- DECLARE_ASN1_FUNCTIONS(ASN1_UTF8STRING)
1141
- DECLARE_ASN1_FUNCTIONS(ASN1_NULL)
1142
- DECLARE_ASN1_FUNCTIONS(ASN1_BMPSTRING)
1143
-
1144
- DECLARE_ASN1_FUNCTIONS_name(ASN1_STRING, ASN1_PRINTABLE)
1888
+ (B_ASN1_NUMERICSTRING | B_ASN1_PRINTABLESTRING | B_ASN1_T61STRING | \
1889
+ B_ASN1_IA5STRING | B_ASN1_BIT_STRING | B_ASN1_UNIVERSALSTRING | \
1890
+ B_ASN1_BMPSTRING | B_ASN1_UTF8STRING | B_ASN1_SEQUENCE | B_ASN1_UNKNOWN)
1145
1891
 
1146
- DECLARE_ASN1_FUNCTIONS_name(ASN1_STRING, DIRECTORYSTRING)
1147
- DECLARE_ASN1_FUNCTIONS_name(ASN1_STRING, DISPLAYTEXT)
1148
- DECLARE_ASN1_FUNCTIONS(ASN1_PRINTABLESTRING)
1149
- DECLARE_ASN1_FUNCTIONS(ASN1_T61STRING)
1150
- DECLARE_ASN1_FUNCTIONS(ASN1_IA5STRING)
1151
- DECLARE_ASN1_FUNCTIONS(ASN1_GENERALSTRING)
1152
- DECLARE_ASN1_FUNCTIONS(ASN1_UTCTIME)
1153
- DECLARE_ASN1_FUNCTIONS(ASN1_GENERALIZEDTIME)
1154
- DECLARE_ASN1_FUNCTIONS(ASN1_TIME)
1892
+ // ASN1_PRINTABLE_new returns a newly-allocated |ASN1_STRING| with type -1, or
1893
+ // NULL on error. The resulting |ASN1_STRING| is not a valid ASN.1 value until
1894
+ // initialized with a value.
1895
+ OPENSSL_EXPORT ASN1_STRING *ASN1_PRINTABLE_new(void);
1155
1896
 
1156
- OPENSSL_EXPORT int i2a_ASN1_INTEGER(BIO *bp, const ASN1_INTEGER *a);
1157
- OPENSSL_EXPORT int i2a_ASN1_ENUMERATED(BIO *bp, const ASN1_ENUMERATED *a);
1158
- OPENSSL_EXPORT int i2a_ASN1_OBJECT(BIO *bp, const ASN1_OBJECT *a);
1159
- OPENSSL_EXPORT int i2a_ASN1_STRING(BIO *bp, const ASN1_STRING *a, int type);
1160
- OPENSSL_EXPORT int i2t_ASN1_OBJECT(char *buf, int buf_len,
1161
- const ASN1_OBJECT *a);
1162
-
1163
- OPENSSL_EXPORT ASN1_OBJECT *ASN1_OBJECT_create(int nid,
1164
- const unsigned char *data,
1165
- int len, const char *sn,
1166
- const char *ln);
1167
-
1168
- OPENSSL_EXPORT unsigned long ASN1_tag2bit(int tag);
1897
+ // ASN1_PRINTABLE_free calls |ASN1_STRING_free|.
1898
+ OPENSSL_EXPORT void ASN1_PRINTABLE_free(ASN1_STRING *str);
1169
1899
 
1170
- // SPECIALS
1171
- OPENSSL_EXPORT int ASN1_get_object(const unsigned char **pp, long *plength,
1172
- int *ptag, int *pclass, long omax);
1173
- OPENSSL_EXPORT void ASN1_put_object(unsigned char **pp, int constructed,
1174
- int length, int tag, int xclass);
1175
- OPENSSL_EXPORT int ASN1_put_eoc(unsigned char **pp);
1176
- OPENSSL_EXPORT int ASN1_object_size(int constructed, int length, int tag);
1177
-
1178
- OPENSSL_EXPORT void *ASN1_item_dup(const ASN1_ITEM *it, void *x);
1179
-
1180
- OPENSSL_EXPORT void *ASN1_item_d2i_fp(const ASN1_ITEM *it, FILE *in, void *x);
1181
- OPENSSL_EXPORT int ASN1_item_i2d_fp(const ASN1_ITEM *it, FILE *out, void *x);
1182
-
1183
- OPENSSL_EXPORT void *ASN1_item_d2i_bio(const ASN1_ITEM *it, BIO *in, void *x);
1184
- OPENSSL_EXPORT int ASN1_item_i2d_bio(const ASN1_ITEM *it, BIO *out, void *x);
1185
-
1186
- // Used to load and write netscape format cert
1187
-
1188
- OPENSSL_EXPORT void *ASN1_item_unpack(const ASN1_STRING *oct,
1189
- const ASN1_ITEM *it);
1190
-
1191
- OPENSSL_EXPORT ASN1_STRING *ASN1_item_pack(void *obj, const ASN1_ITEM *it,
1192
- ASN1_OCTET_STRING **oct);
1193
-
1194
- // ASN1 template functions
1900
+ // d2i_ASN1_PRINTABLE parses up to |len| bytes from |*inp| as a DER-encoded
1901
+ // CHOICE of an ad-hoc subset of string-like types, as described in
1902
+ // |d2i_SAMPLE_with_reuse|.
1903
+ //
1904
+ // Do not use this. Despite, the name it has no connection to PrintableString or
1905
+ // printable characters. See https://crbug.com/boringssl/412.
1906
+ //
1907
+ // TODO(https://crbug.com/boringssl/354): This function currently also accepts
1908
+ // BER, but this will be removed in the future.
1909
+ OPENSSL_EXPORT ASN1_STRING *d2i_ASN1_PRINTABLE(ASN1_STRING **out,
1910
+ const uint8_t **inp, long len);
1195
1911
 
1196
- // Old API compatible functions
1197
- OPENSSL_EXPORT ASN1_VALUE *ASN1_item_new(const ASN1_ITEM *it);
1198
- OPENSSL_EXPORT void ASN1_item_free(ASN1_VALUE *val, const ASN1_ITEM *it);
1199
- OPENSSL_EXPORT ASN1_VALUE *ASN1_item_d2i(ASN1_VALUE **val,
1200
- const unsigned char **in, long len,
1201
- const ASN1_ITEM *it);
1202
- OPENSSL_EXPORT int ASN1_item_i2d(ASN1_VALUE *val, unsigned char **out,
1203
- const ASN1_ITEM *it);
1912
+ // i2d_ASN1_PRINTABLE marshals |in| as DER, as described in |i2d_SAMPLE|.
1913
+ //
1914
+ // Do not use this. Despite the name, it has no connection to PrintableString or
1915
+ // printable characters. See https://crbug.com/boringssl/412.
1916
+ OPENSSL_EXPORT int i2d_ASN1_PRINTABLE(const ASN1_STRING *in, uint8_t **outp);
1204
1917
 
1205
- OPENSSL_EXPORT ASN1_TYPE *ASN1_generate_nconf(const char *str, CONF *nconf);
1206
- OPENSSL_EXPORT ASN1_TYPE *ASN1_generate_v3(const char *str, X509V3_CTX *cnf);
1918
+ // ASN1_PRINTABLE is an |ASN1_ITEM| whose ASN.1 type is a CHOICE of an ad-hoc
1919
+ // subset of string-like types, and whose C type is |ASN1_STRING*|.
1920
+ //
1921
+ // Do not use this. Despite the name, it has no connection to PrintableString or
1922
+ // printable characters. See https://crbug.com/boringssl/412.
1923
+ DECLARE_ASN1_ITEM(ASN1_PRINTABLE)
1207
1924
 
1208
1925
 
1209
- #ifdef __cplusplus
1210
- }
1926
+ #if defined(__cplusplus)
1927
+ } // extern C
1211
1928
 
1212
1929
  extern "C++" {
1213
1930
 
@@ -1317,5 +2034,6 @@ BSSL_NAMESPACE_END
1317
2034
  #define ASN1_R_WRONG_TYPE 191
1318
2035
  #define ASN1_R_NESTED_TOO_DEEP 192
1319
2036
  #define ASN1_R_BAD_TEMPLATE 193
2037
+ #define ASN1_R_INVALID_BIT_STRING_PADDING 194
1320
2038
 
1321
2039
  #endif