grpc 1.40.0 → 1.46.3

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 (1941) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +462 -267
  3. data/etc/roots.pem +335 -326
  4. data/include/grpc/byte_buffer.h +1 -1
  5. data/include/grpc/byte_buffer_reader.h +1 -1
  6. data/include/grpc/event_engine/endpoint_config.h +6 -11
  7. data/include/grpc/event_engine/event_engine.h +164 -95
  8. data/include/grpc/event_engine/internal/memory_allocator_impl.h +68 -0
  9. data/include/grpc/event_engine/memory_allocator.h +226 -0
  10. data/include/grpc/event_engine/memory_request.h +57 -0
  11. data/include/grpc/event_engine/port.h +1 -3
  12. data/include/grpc/fork.h +1 -1
  13. data/include/grpc/grpc.h +54 -18
  14. data/include/grpc/grpc_posix.h +22 -18
  15. data/include/grpc/grpc_security.h +328 -193
  16. data/include/grpc/grpc_security_constants.h +2 -14
  17. data/include/grpc/impl/codegen/atm.h +5 -3
  18. data/include/grpc/impl/codegen/atm_gcc_atomic.h +2 -0
  19. data/include/grpc/impl/codegen/atm_gcc_sync.h +2 -0
  20. data/include/grpc/impl/codegen/atm_windows.h +2 -0
  21. data/include/grpc/impl/codegen/byte_buffer.h +2 -0
  22. data/include/grpc/impl/codegen/byte_buffer_reader.h +2 -0
  23. data/include/grpc/impl/codegen/compression_types.h +2 -2
  24. data/include/grpc/impl/codegen/connectivity_state.h +2 -0
  25. data/include/grpc/impl/codegen/fork.h +2 -0
  26. data/include/grpc/impl/codegen/gpr_slice.h +2 -0
  27. data/include/grpc/impl/codegen/gpr_types.h +2 -0
  28. data/include/grpc/impl/codegen/grpc_types.h +28 -26
  29. data/include/grpc/impl/codegen/log.h +2 -0
  30. data/include/grpc/impl/codegen/port_platform.h +37 -22
  31. data/include/grpc/impl/codegen/propagation_bits.h +2 -0
  32. data/include/grpc/impl/codegen/slice.h +6 -1
  33. data/include/grpc/impl/codegen/status.h +2 -0
  34. data/include/grpc/impl/codegen/sync.h +8 -5
  35. data/include/grpc/impl/codegen/sync_abseil.h +2 -0
  36. data/include/grpc/impl/codegen/sync_custom.h +2 -0
  37. data/include/grpc/impl/codegen/sync_generic.h +3 -0
  38. data/include/grpc/impl/codegen/sync_posix.h +4 -2
  39. data/include/grpc/impl/codegen/sync_windows.h +2 -0
  40. data/include/grpc/slice.h +1 -12
  41. data/include/grpc/status.h +1 -1
  42. data/include/grpc/support/atm.h +1 -1
  43. data/include/grpc/support/atm_gcc_atomic.h +1 -1
  44. data/include/grpc/support/atm_gcc_sync.h +1 -1
  45. data/include/grpc/support/atm_windows.h +1 -1
  46. data/include/grpc/support/log.h +1 -1
  47. data/include/grpc/support/port_platform.h +1 -1
  48. data/include/grpc/support/sync.h +1 -1
  49. data/include/grpc/support/sync_abseil.h +1 -1
  50. data/include/grpc/support/sync_custom.h +1 -1
  51. data/include/grpc/support/sync_generic.h +1 -1
  52. data/include/grpc/support/sync_posix.h +1 -1
  53. data/include/grpc/support/sync_windows.h +1 -1
  54. data/include/grpc/support/time.h +2 -2
  55. data/src/core/ext/filters/census/grpc_context.cc +1 -0
  56. data/src/core/ext/filters/channel_idle/channel_idle_filter.cc +309 -0
  57. data/src/core/ext/filters/channel_idle/channel_idle_filter.h +122 -0
  58. data/src/core/ext/filters/channel_idle/idle_filter_state.cc +96 -0
  59. data/src/core/ext/filters/channel_idle/idle_filter_state.h +66 -0
  60. data/src/core/ext/filters/client_channel/backend_metric.cc +24 -27
  61. data/src/core/ext/filters/client_channel/backend_metric.h +4 -3
  62. data/src/core/ext/filters/client_channel/backup_poller.cc +14 -9
  63. data/src/core/ext/filters/client_channel/backup_poller.h +1 -0
  64. data/src/core/ext/filters/client_channel/channel_connectivity.cc +75 -94
  65. data/src/core/ext/filters/client_channel/client_channel.cc +532 -501
  66. data/src/core/ext/filters/client_channel/client_channel.h +115 -64
  67. data/src/core/ext/filters/client_channel/client_channel_channelz.cc +6 -5
  68. data/src/core/ext/filters/client_channel/client_channel_channelz.h +1 -1
  69. data/src/core/ext/filters/client_channel/client_channel_factory.cc +2 -1
  70. data/src/core/ext/filters/client_channel/client_channel_factory.h +17 -19
  71. data/src/core/ext/filters/client_channel/client_channel_plugin.cc +18 -24
  72. data/src/core/ext/filters/client_channel/config_selector.cc +2 -1
  73. data/src/core/ext/filters/client_channel/config_selector.h +5 -6
  74. data/src/core/ext/filters/client_channel/connector.h +19 -19
  75. data/src/core/ext/filters/client_channel/dynamic_filters.cc +6 -7
  76. data/src/core/ext/filters/client_channel/dynamic_filters.h +2 -2
  77. data/src/core/ext/filters/client_channel/global_subchannel_pool.cc +2 -22
  78. data/src/core/ext/filters/client_channel/global_subchannel_pool.h +3 -16
  79. data/src/core/ext/filters/client_channel/health/health_check_client.cc +128 -582
  80. data/src/core/ext/filters/client_channel/health/health_check_client.h +24 -159
  81. data/src/core/ext/filters/client_channel/http_connect_handshaker.cc +30 -34
  82. data/src/core/ext/filters/client_channel/http_connect_handshaker.h +10 -2
  83. data/src/core/ext/filters/client_channel/http_proxy.cc +88 -110
  84. data/src/core/ext/filters/client_channel/http_proxy.h +17 -0
  85. data/src/core/ext/filters/client_channel/lb_policy/address_filtering.cc +4 -3
  86. data/src/core/ext/filters/client_channel/lb_policy/address_filtering.h +6 -5
  87. data/src/core/ext/filters/client_channel/lb_policy/child_policy_handler.cc +6 -2
  88. data/src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc +6 -18
  89. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +247 -150
  90. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.h +3 -6
  91. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.cc +1 -1
  92. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.h +1 -1
  93. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.cc +3 -4
  94. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h +4 -4
  95. data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc +17 -18
  96. data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h +4 -4
  97. data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +73 -39
  98. data/src/core/ext/filters/client_channel/lb_policy/priority/priority.cc +226 -181
  99. data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.cc +126 -79
  100. data/src/core/ext/filters/client_channel/lb_policy/rls/rls.cc +2542 -0
  101. data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +68 -62
  102. data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +18 -13
  103. data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +106 -71
  104. data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +119 -159
  105. data/src/core/ext/filters/client_channel/lb_policy/xds/xds.h +1 -1
  106. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_channel_args.h +1 -1
  107. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_impl.cc +162 -77
  108. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_manager.cc +29 -19
  109. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_resolver.cc +331 -488
  110. data/src/core/ext/filters/client_channel/lb_policy.cc +15 -14
  111. data/src/core/ext/filters/client_channel/lb_policy.h +115 -106
  112. data/src/core/ext/filters/client_channel/lb_policy_factory.h +1 -0
  113. data/src/core/ext/filters/client_channel/lb_policy_registry.cc +4 -7
  114. data/src/core/ext/filters/client_channel/resolver/binder/binder_resolver.cc +133 -0
  115. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +296 -324
  116. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h +23 -12
  117. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +23 -18
  118. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +37 -55
  119. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +153 -275
  120. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +38 -25
  121. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc +1 -1
  122. data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +96 -254
  123. data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc +23 -20
  124. data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h +2 -1
  125. data/src/core/ext/filters/client_channel/resolver/google_c2p/google_c2p_resolver.cc +85 -69
  126. data/src/core/ext/filters/client_channel/resolver/polling_resolver.cc +201 -0
  127. data/src/core/ext/filters/client_channel/resolver/polling_resolver.h +106 -0
  128. data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +40 -39
  129. data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +509 -439
  130. data/src/core/ext/filters/client_channel/resolver_result_parsing.cc +11 -15
  131. data/src/core/ext/filters/client_channel/resolver_result_parsing.h +13 -7
  132. data/src/core/ext/filters/client_channel/retry_filter.cc +282 -238
  133. data/src/core/ext/filters/client_channel/retry_service_config.cc +16 -18
  134. data/src/core/ext/filters/client_channel/retry_service_config.h +18 -12
  135. data/src/core/ext/filters/client_channel/retry_throttle.cc +14 -59
  136. data/src/core/ext/filters/client_channel/retry_throttle.h +11 -5
  137. data/src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc +51 -37
  138. data/src/core/ext/filters/client_channel/subchannel.cc +132 -197
  139. data/src/core/ext/filters/client_channel/subchannel.h +36 -56
  140. data/src/core/ext/filters/client_channel/subchannel_pool_interface.cc +22 -7
  141. data/src/core/ext/filters/client_channel/subchannel_pool_interface.h +11 -2
  142. data/src/core/ext/filters/client_channel/subchannel_stream_client.cc +544 -0
  143. data/src/core/ext/filters/client_channel/subchannel_stream_client.h +214 -0
  144. data/src/core/ext/filters/deadline/deadline_filter.cc +31 -33
  145. data/src/core/ext/filters/deadline/deadline_filter.h +3 -2
  146. data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +158 -401
  147. data/src/core/ext/filters/fault_injection/fault_injection_filter.h +24 -1
  148. data/src/core/ext/filters/fault_injection/service_config_parser.cc +17 -27
  149. data/src/core/ext/filters/fault_injection/service_config_parser.h +10 -4
  150. data/src/core/ext/filters/http/client/http_client_filter.cc +83 -548
  151. data/src/core/ext/filters/http/client/http_client_filter.h +21 -4
  152. data/src/core/ext/filters/http/client_authority_filter.cc +39 -103
  153. data/src/core/ext/filters/http/client_authority_filter.h +24 -5
  154. data/src/core/ext/filters/http/http_filters_plugin.cc +55 -73
  155. data/src/core/ext/filters/http/message_compress/message_compress_filter.cc +49 -140
  156. data/src/core/ext/filters/http/message_compress/message_decompress_filter.cc +22 -35
  157. data/src/core/ext/filters/http/server/http_server_filter.cc +64 -274
  158. data/src/core/ext/filters/message_size/message_size_filter.cc +49 -58
  159. data/src/core/ext/filters/message_size/message_size_filter.h +10 -3
  160. data/src/core/ext/filters/rbac/rbac_filter.cc +162 -0
  161. data/src/core/ext/filters/rbac/rbac_filter.h +76 -0
  162. data/src/core/ext/filters/rbac/rbac_service_config_parser.cc +606 -0
  163. data/src/core/ext/filters/rbac/rbac_service_config_parser.h +75 -0
  164. data/src/core/ext/filters/server_config_selector/server_config_selector.cc +61 -0
  165. data/src/core/ext/filters/server_config_selector/server_config_selector.h +71 -0
  166. data/src/core/ext/filters/server_config_selector/server_config_selector_filter.cc +143 -0
  167. data/src/core/ext/filters/{workarounds/workaround_cronet_compression_filter.h → server_config_selector/server_config_selector_filter.h} +11 -6
  168. data/src/core/ext/transport/chttp2/alpn/alpn.cc +2 -1
  169. data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +245 -12
  170. data/src/core/ext/transport/chttp2/server/chttp2_server.cc +294 -95
  171. data/src/core/ext/transport/chttp2/transport/bin_decoder.cc +3 -1
  172. data/src/core/ext/transport/chttp2/transport/bin_decoder.h +2 -1
  173. data/src/core/ext/transport/chttp2/transport/bin_encoder.cc +1 -0
  174. data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +368 -349
  175. data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +12 -4
  176. data/src/core/ext/transport/chttp2/transport/context_list.cc +2 -3
  177. data/src/core/ext/transport/chttp2/transport/context_list.h +3 -5
  178. data/src/core/ext/transport/chttp2/transport/flow_control.cc +63 -44
  179. data/src/core/ext/transport/chttp2/transport/flow_control.h +18 -12
  180. data/src/core/ext/transport/chttp2/transport/frame_data.cc +11 -12
  181. data/src/core/ext/transport/chttp2/transport/frame_data.h +1 -0
  182. data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +6 -4
  183. data/src/core/ext/transport/chttp2/transport/frame_goaway.h +1 -0
  184. data/src/core/ext/transport/chttp2/transport/frame_ping.cc +10 -9
  185. data/src/core/ext/transport/chttp2/transport/frame_ping.h +1 -0
  186. data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +10 -8
  187. data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +1 -0
  188. data/src/core/ext/transport/chttp2/transport/frame_settings.cc +40 -7
  189. data/src/core/ext/transport/chttp2/transport/frame_settings.h +1 -0
  190. data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +12 -7
  191. data/src/core/ext/transport/chttp2/transport/frame_window_update.h +1 -0
  192. data/src/core/ext/transport/chttp2/transport/hpack_constants.h +41 -0
  193. data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +516 -749
  194. data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +183 -71
  195. data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.cc +86 -0
  196. data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.h +71 -0
  197. data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +764 -1062
  198. data/src/core/ext/transport/chttp2/transport/hpack_parser.h +75 -178
  199. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.cc +239 -0
  200. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +115 -0
  201. data/src/core/ext/transport/chttp2/transport/internal.h +22 -48
  202. data/src/core/ext/transport/chttp2/transport/parsing.cc +61 -212
  203. data/src/core/ext/transport/chttp2/transport/stream_lists.cc +2 -2
  204. data/src/core/ext/transport/chttp2/transport/varint.cc +7 -3
  205. data/src/core/ext/transport/chttp2/transport/varint.h +39 -28
  206. data/src/core/ext/transport/chttp2/transport/writing.cc +125 -169
  207. data/src/core/ext/transport/inproc/inproc_plugin.cc +0 -4
  208. data/src/core/ext/transport/inproc/inproc_transport.cc +132 -173
  209. data/src/core/ext/transport/inproc/inproc_transport.h +1 -4
  210. data/src/core/ext/upb-generated/envoy/admin/v3/certs.upb.c +117 -0
  211. data/src/core/ext/upb-generated/envoy/admin/v3/certs.upb.h +482 -0
  212. data/src/core/ext/upb-generated/envoy/admin/v3/clusters.upb.c +121 -0
  213. data/src/core/ext/upb-generated/envoy/admin/v3/clusters.upb.h +553 -0
  214. data/src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.c +248 -210
  215. data/src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.h +1382 -685
  216. data/src/core/ext/upb-generated/envoy/admin/v3/init_dump.upb.c +56 -0
  217. data/src/core/ext/upb-generated/envoy/admin/v3/init_dump.upb.h +151 -0
  218. data/src/core/ext/upb-generated/envoy/admin/v3/listeners.upb.c +62 -0
  219. data/src/core/ext/upb-generated/envoy/admin/v3/listeners.upb.h +160 -0
  220. data/src/core/ext/upb-generated/envoy/admin/v3/memory.upb.c +46 -0
  221. data/src/core/ext/upb-generated/envoy/admin/v3/memory.upb.h +124 -0
  222. data/src/core/ext/upb-generated/envoy/admin/v3/metrics.upb.c +43 -0
  223. data/src/core/ext/upb-generated/envoy/admin/v3/metrics.upb.h +102 -0
  224. data/src/core/ext/upb-generated/envoy/admin/v3/mutex_stats.upb.c +43 -0
  225. data/src/core/ext/upb-generated/envoy/admin/v3/mutex_stats.upb.h +97 -0
  226. data/src/core/ext/upb-generated/envoy/admin/v3/server_info.upb.c +106 -0
  227. data/src/core/ext/upb-generated/envoy/admin/v3/server_info.upb.h +605 -0
  228. data/src/core/ext/upb-generated/envoy/admin/v3/tap.upb.c +48 -0
  229. data/src/core/ext/upb-generated/envoy/admin/v3/tap.upb.h +103 -0
  230. data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.c +44 -1
  231. data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.h +52 -1
  232. data/src/core/ext/upb-generated/envoy/annotations/resource.upb.c +31 -5
  233. data/src/core/ext/upb-generated/envoy/annotations/resource.upb.h +57 -18
  234. data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.c +144 -117
  235. data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.h +761 -386
  236. data/src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.c +240 -200
  237. data/src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.h +1376 -667
  238. data/src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.c +50 -29
  239. data/src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.h +224 -95
  240. data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.c +337 -255
  241. data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.h +1901 -790
  242. data/src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.c +21 -8
  243. data/src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.h +50 -24
  244. data/src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.c +61 -28
  245. data/src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.h +280 -99
  246. data/src/core/ext/upb-generated/envoy/config/common/matcher/v3/matcher.upb.c +299 -0
  247. data/src/core/ext/upb-generated/envoy/config/common/matcher/v3/matcher.upb.h +1381 -0
  248. data/src/core/ext/upb-generated/envoy/config/core/v3/address.upb.c +75 -54
  249. data/src/core/ext/upb-generated/envoy/config/core/v3/address.upb.h +398 -190
  250. data/src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.c +22 -8
  251. data/src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.h +53 -25
  252. data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.c +220 -171
  253. data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.h +1224 -567
  254. data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.c +106 -46
  255. data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.h +561 -171
  256. data/src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.c +20 -7
  257. data/src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.h +46 -24
  258. data/src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.c +17 -23
  259. data/src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.h +49 -95
  260. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_method_list.upb.c +58 -0
  261. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_method_list.upb.h +151 -0
  262. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.c +146 -118
  263. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.h +853 -415
  264. data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.c +142 -92
  265. data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.h +797 -345
  266. data/src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.c +22 -9
  267. data/src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.h +65 -31
  268. data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.c +205 -122
  269. data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.h +1097 -393
  270. data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.c +18 -5
  271. data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.h +36 -17
  272. data/src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.c +28 -14
  273. data/src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.h +97 -49
  274. data/src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.c +23 -10
  275. data/src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.h +83 -34
  276. data/src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.c +27 -14
  277. data/src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.h +101 -49
  278. data/src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.c +22 -9
  279. data/src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.h +54 -26
  280. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.c +52 -36
  281. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.h +214 -109
  282. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.c +92 -39
  283. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.h +449 -131
  284. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.c +71 -54
  285. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.h +389 -188
  286. data/src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.c +20 -7
  287. data/src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.h +42 -21
  288. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.c +99 -72
  289. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.h +541 -259
  290. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.c +105 -80
  291. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.h +610 -307
  292. data/src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.c +32 -17
  293. data/src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.h +112 -49
  294. data/src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.c +25 -11
  295. data/src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.h +79 -40
  296. data/src/core/ext/upb-generated/envoy/config/metrics/v3/metrics_service.upb.c +53 -0
  297. data/src/core/ext/upb-generated/envoy/config/metrics/v3/metrics_service.upb.h +136 -0
  298. data/src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.c +83 -62
  299. data/src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.h +463 -235
  300. data/src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.c +93 -60
  301. data/src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.h +483 -214
  302. data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.c +130 -100
  303. data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.h +628 -282
  304. data/src/core/ext/upb-generated/envoy/config/route/v3/route.upb.c +54 -35
  305. data/src/core/ext/upb-generated/envoy/config/route/v3/route.upb.h +291 -142
  306. data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.c +665 -567
  307. data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.h +3977 -1883
  308. data/src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.c +39 -20
  309. data/src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.h +168 -72
  310. data/src/core/ext/upb-generated/envoy/config/tap/v3/common.upb.c +222 -0
  311. data/src/core/ext/upb-generated/envoy/config/tap/v3/common.upb.h +1052 -0
  312. data/src/core/ext/upb-generated/envoy/config/trace/v3/datadog.upb.c +44 -0
  313. data/src/core/ext/upb-generated/envoy/config/trace/v3/datadog.upb.h +88 -0
  314. data/src/core/ext/upb-generated/envoy/config/trace/v3/dynamic_ot.upb.c +49 -0
  315. data/src/core/ext/upb-generated/envoy/config/trace/v3/dynamic_ot.upb.h +103 -0
  316. data/src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.c +28 -14
  317. data/src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.h +91 -46
  318. data/src/core/ext/upb-generated/envoy/config/trace/v3/lightstep.upb.c +52 -0
  319. data/src/core/ext/upb-generated/envoy/config/trace/v3/lightstep.upb.h +134 -0
  320. data/src/core/ext/upb-generated/envoy/config/trace/v3/opencensus.upb.c +63 -0
  321. data/src/core/ext/upb-generated/envoy/config/trace/v3/opencensus.upb.h +250 -0
  322. data/src/core/ext/upb-generated/envoy/config/trace/v3/service.upb.c +47 -0
  323. data/src/core/ext/upb-generated/envoy/config/trace/v3/service.upb.h +94 -0
  324. data/src/core/ext/upb-generated/envoy/config/trace/v3/skywalking.upb.c +69 -0
  325. data/src/core/ext/upb-generated/envoy/config/trace/v3/skywalking.upb.h +213 -0
  326. data/src/core/ext/upb-generated/envoy/config/trace/v3/trace.upb.c +32 -0
  327. data/src/core/ext/upb-generated/envoy/config/trace/v3/trace.upb.h +42 -0
  328. data/src/core/ext/upb-generated/envoy/config/trace/v3/xray.upb.c +71 -0
  329. data/src/core/ext/upb-generated/envoy/config/trace/v3/xray.upb.h +218 -0
  330. data/src/core/ext/upb-generated/envoy/config/trace/v3/zipkin.upb.c +54 -0
  331. data/src/core/ext/upb-generated/envoy/config/trace/v3/zipkin.upb.h +146 -0
  332. data/src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.c +18 -5
  333. data/src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.h +42 -24
  334. data/src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.c +46 -29
  335. data/src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.h +219 -112
  336. data/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.c +52 -37
  337. data/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.h +282 -134
  338. data/src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.c +64 -0
  339. data/src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.h +183 -0
  340. data/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.c +27 -14
  341. data/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.h +94 -43
  342. data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.c +284 -225
  343. data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +1673 -738
  344. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.c +10 -1
  345. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.h +7 -4
  346. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.c +113 -54
  347. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.h +621 -216
  348. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.c +42 -27
  349. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.h +176 -87
  350. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.c +128 -83
  351. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +673 -259
  352. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.c +62 -0
  353. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.h +160 -0
  354. data/src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.c +16 -3
  355. data/src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.h +29 -15
  356. data/src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.c +92 -73
  357. data/src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.h +516 -260
  358. data/src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.c +32 -18
  359. data/src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.h +121 -62
  360. data/src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.c +74 -57
  361. data/src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.h +379 -186
  362. data/src/core/ext/upb-generated/envoy/type/http/v3/cookie.upb.c +48 -0
  363. data/src/core/ext/upb-generated/envoy/type/http/v3/cookie.upb.h +112 -0
  364. data/src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.c +35 -19
  365. data/src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.h +149 -81
  366. data/src/core/ext/upb-generated/envoy/type/matcher/v3/http_inputs.upb.c +74 -0
  367. data/src/core/ext/upb-generated/envoy/type/matcher/v3/http_inputs.upb.h +214 -0
  368. data/src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.c +29 -14
  369. data/src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.h +116 -56
  370. data/src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.c +22 -9
  371. data/src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.h +58 -31
  372. data/src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.c +21 -8
  373. data/src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.h +56 -27
  374. data/src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.c +20 -7
  375. data/src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.h +46 -24
  376. data/src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.c +36 -21
  377. data/src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.h +137 -69
  378. data/src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.c +32 -18
  379. data/src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.h +137 -65
  380. data/src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.c +27 -13
  381. data/src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.h +99 -53
  382. data/src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.c +38 -23
  383. data/src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.h +170 -83
  384. data/src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.c +51 -32
  385. data/src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.h +273 -145
  386. data/src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.c +54 -37
  387. data/src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.h +268 -132
  388. data/src/core/ext/upb-generated/envoy/type/v3/hash_policy.upb.c +66 -0
  389. data/src/core/ext/upb-generated/envoy/type/v3/hash_policy.upb.h +201 -0
  390. data/src/core/ext/upb-generated/envoy/type/v3/http.upb.c +10 -1
  391. data/src/core/ext/upb-generated/envoy/type/v3/http.upb.h +4 -1
  392. data/src/core/ext/upb-generated/envoy/type/v3/http_status.upb.c +42 -0
  393. data/src/core/ext/upb-generated/envoy/type/v3/http_status.upb.h +139 -0
  394. data/src/core/ext/upb-generated/envoy/type/v3/percent.upb.c +24 -10
  395. data/src/core/ext/upb-generated/envoy/type/v3/percent.upb.h +76 -36
  396. data/src/core/ext/upb-generated/envoy/type/v3/range.upb.c +31 -16
  397. data/src/core/ext/upb-generated/envoy/type/v3/range.upb.h +118 -52
  398. data/src/core/ext/upb-generated/envoy/type/v3/ratelimit_unit.upb.c +26 -0
  399. data/src/core/ext/upb-generated/envoy/type/v3/ratelimit_unit.upb.h +41 -0
  400. data/src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.c +20 -7
  401. data/src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.h +48 -19
  402. data/src/core/ext/upb-generated/envoy/type/v3/token_bucket.upb.c +51 -0
  403. data/src/core/ext/upb-generated/envoy/type/v3/token_bucket.upb.h +127 -0
  404. data/src/core/ext/upb-generated/google/api/annotations.upb.c +23 -1
  405. data/src/core/ext/upb-generated/google/api/annotations.upb.h +24 -1
  406. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.c +155 -126
  407. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.h +791 -385
  408. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.c +159 -127
  409. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.h +869 -402
  410. data/src/core/ext/upb-generated/google/api/http.upb.c +44 -29
  411. data/src/core/ext/upb-generated/google/api/http.upb.h +236 -115
  412. data/src/core/ext/upb-generated/google/api/httpbody.upb.c +46 -0
  413. data/src/core/ext/upb-generated/google/api/httpbody.upb.h +111 -0
  414. data/src/core/ext/upb-generated/google/protobuf/any.upb.c +19 -6
  415. data/src/core/ext/upb-generated/google/protobuf/any.upb.h +46 -22
  416. data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.c +374 -283
  417. data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.h +2263 -1053
  418. data/src/core/ext/upb-generated/google/protobuf/duration.upb.c +19 -6
  419. data/src/core/ext/upb-generated/google/protobuf/duration.upb.h +44 -20
  420. data/src/core/ext/upb-generated/google/protobuf/empty.upb.c +16 -3
  421. data/src/core/ext/upb-generated/google/protobuf/empty.upb.h +29 -15
  422. data/src/core/ext/upb-generated/google/protobuf/struct.upb.c +48 -32
  423. data/src/core/ext/upb-generated/google/protobuf/struct.upb.h +197 -93
  424. data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.c +19 -6
  425. data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.h +44 -20
  426. data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.c +58 -37
  427. data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.h +296 -149
  428. data/src/core/ext/upb-generated/google/rpc/status.upb.c +22 -9
  429. data/src/core/ext/upb-generated/google/rpc/status.upb.h +60 -30
  430. data/src/core/ext/upb-generated/opencensus/proto/trace/v1/trace_config.upb.c +84 -0
  431. data/src/core/ext/upb-generated/opencensus/proto/trace/v1/trace_config.upb.h +319 -0
  432. data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.c +33 -19
  433. data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.h +111 -48
  434. data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.c +136 -108
  435. data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.h +753 -365
  436. data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.c +28 -13
  437. data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.h +90 -41
  438. data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.c +23 -9
  439. data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.h +70 -35
  440. data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.c +82 -62
  441. data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.h +448 -232
  442. data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.c +70 -0
  443. data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.h +208 -0
  444. data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls_config.upb.c +175 -0
  445. data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls_config.upb.h +764 -0
  446. data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.c +76 -14
  447. data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.h +213 -57
  448. data/src/core/ext/upb-generated/udpa/annotations/security.upb.c +32 -8
  449. data/src/core/ext/upb-generated/udpa/annotations/security.upb.h +62 -18
  450. data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.c +22 -1
  451. data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.h +17 -1
  452. data/src/core/ext/upb-generated/udpa/annotations/status.upb.c +32 -6
  453. data/src/core/ext/upb-generated/udpa/annotations/status.upb.h +64 -20
  454. data/src/core/ext/upb-generated/udpa/annotations/versioning.upb.c +31 -5
  455. data/src/core/ext/upb-generated/udpa/annotations/versioning.upb.h +57 -18
  456. data/src/core/ext/upb-generated/validate/validate.upb.c +407 -311
  457. data/src/core/ext/upb-generated/validate/validate.upb.h +2904 -1200
  458. data/src/core/ext/upb-generated/xds/annotations/v3/migrate.upb.c +110 -0
  459. data/src/core/ext/upb-generated/xds/annotations/v3/migrate.upb.h +278 -0
  460. data/src/core/ext/upb-generated/xds/annotations/v3/security.upb.c +55 -0
  461. data/src/core/ext/upb-generated/xds/annotations/v3/security.upb.h +108 -0
  462. data/src/core/ext/upb-generated/xds/annotations/v3/sensitive.upb.c +38 -0
  463. data/src/core/ext/upb-generated/xds/annotations/v3/sensitive.upb.h +46 -0
  464. data/src/core/ext/upb-generated/xds/annotations/v3/status.upb.c +105 -0
  465. data/src/core/ext/upb-generated/xds/annotations/v3/status.upb.h +290 -0
  466. data/src/core/ext/upb-generated/xds/annotations/v3/versioning.upb.c +53 -0
  467. data/src/core/ext/upb-generated/xds/annotations/v3/versioning.upb.h +99 -0
  468. data/src/core/ext/upb-generated/xds/core/v3/authority.upb.c +19 -6
  469. data/src/core/ext/upb-generated/xds/core/v3/authority.upb.h +38 -19
  470. data/src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.c +32 -18
  471. data/src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.h +112 -55
  472. data/src/core/ext/upb-generated/xds/core/v3/context_params.upb.c +27 -13
  473. data/src/core/ext/upb-generated/xds/core/v3/context_params.upb.h +61 -30
  474. data/src/core/ext/upb-generated/xds/core/v3/extension.upb.c +46 -0
  475. data/src/core/ext/upb-generated/xds/core/v3/extension.upb.h +103 -0
  476. data/src/core/ext/upb-generated/xds/core/v3/resource.upb.c +24 -11
  477. data/src/core/ext/upb-generated/xds/core/v3/resource.upb.h +63 -30
  478. data/src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.c +35 -21
  479. data/src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.h +144 -70
  480. data/src/core/ext/upb-generated/xds/core/v3/resource_name.upb.c +24 -11
  481. data/src/core/ext/upb-generated/xds/core/v3/resource_name.upb.h +66 -30
  482. data/src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.c +73 -0
  483. data/src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.h +187 -0
  484. data/src/core/ext/upb-generated/xds/type/matcher/v3/matcher.upb.c +207 -0
  485. data/src/core/ext/upb-generated/xds/type/matcher/v3/matcher.upb.h +878 -0
  486. data/src/core/ext/upb-generated/xds/type/matcher/v3/regex.upb.c +52 -0
  487. data/src/core/ext/upb-generated/xds/type/matcher/v3/regex.upb.h +143 -0
  488. data/src/core/ext/upb-generated/xds/type/matcher/v3/string.upb.c +65 -0
  489. data/src/core/ext/upb-generated/xds/type/matcher/v3/string.upb.h +218 -0
  490. data/src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.c +46 -0
  491. data/src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.h +103 -0
  492. data/src/core/ext/upbdefs-generated/envoy/admin/v3/certs.upbdefs.c +84 -0
  493. data/src/core/ext/upbdefs-generated/envoy/admin/v3/certs.upbdefs.h +55 -0
  494. data/src/core/ext/upbdefs-generated/envoy/admin/v3/clusters.upbdefs.c +127 -0
  495. data/src/core/ext/upbdefs-generated/envoy/admin/v3/clusters.upbdefs.h +50 -0
  496. data/src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump.upbdefs.c +16 -61
  497. data/src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump.upbdefs.h +67 -67
  498. data/src/core/ext/upbdefs-generated/envoy/admin/v3/init_dump.upbdefs.c +43 -0
  499. data/src/core/ext/upbdefs-generated/envoy/admin/v3/init_dump.upbdefs.h +40 -0
  500. data/src/core/ext/upbdefs-generated/envoy/admin/v3/listeners.upbdefs.c +53 -0
  501. data/src/core/ext/upbdefs-generated/envoy/admin/v3/listeners.upbdefs.h +40 -0
  502. data/src/core/ext/upbdefs-generated/envoy/admin/v3/memory.upbdefs.c +49 -0
  503. data/src/core/ext/upbdefs-generated/envoy/admin/v3/memory.upbdefs.h +35 -0
  504. data/src/core/ext/upbdefs-generated/envoy/admin/v3/metrics.upbdefs.c +46 -0
  505. data/src/core/ext/upbdefs-generated/envoy/admin/v3/metrics.upbdefs.h +35 -0
  506. data/src/core/ext/upbdefs-generated/envoy/admin/v3/mutex_stats.upbdefs.c +46 -0
  507. data/src/core/ext/upbdefs-generated/envoy/admin/v3/mutex_stats.upbdefs.h +35 -0
  508. data/src/core/ext/upbdefs-generated/envoy/admin/v3/server_info.upbdefs.c +142 -0
  509. data/src/core/ext/upbdefs-generated/envoy/admin/v3/server_info.upbdefs.h +40 -0
  510. data/src/core/ext/upbdefs-generated/envoy/admin/v3/tap.upbdefs.c +51 -0
  511. data/src/core/ext/upbdefs-generated/envoy/admin/v3/tap.upbdefs.h +35 -0
  512. data/src/core/ext/upbdefs-generated/envoy/annotations/deprecation.upbdefs.c +10 -8
  513. data/src/core/ext/upbdefs-generated/envoy/annotations/deprecation.upbdefs.h +1 -1
  514. data/src/core/ext/upbdefs-generated/envoy/annotations/resource.upbdefs.c +10 -13
  515. data/src/core/ext/upbdefs-generated/envoy/annotations/resource.upbdefs.h +4 -4
  516. data/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.c +22 -52
  517. data/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.h +46 -46
  518. data/src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3/bootstrap.upbdefs.c +250 -281
  519. data/src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3/bootstrap.upbdefs.h +55 -55
  520. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/circuit_breaker.upbdefs.c +60 -62
  521. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/circuit_breaker.upbdefs.h +10 -10
  522. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.c +445 -458
  523. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.h +80 -70
  524. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/filter.upbdefs.c +16 -18
  525. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/filter.upbdefs.h +4 -4
  526. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/outlier_detection.upbdefs.c +25 -23
  527. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/outlier_detection.upbdefs.h +4 -4
  528. data/src/core/ext/upbdefs-generated/envoy/config/common/matcher/v3/matcher.upbdefs.c +206 -0
  529. data/src/core/ext/upbdefs-generated/envoy/config/common/matcher/v3/matcher.upbdefs.h +105 -0
  530. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/address.upbdefs.c +17 -32
  531. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/address.upbdefs.h +22 -22
  532. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/backoff.upbdefs.c +17 -19
  533. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/backoff.upbdefs.h +4 -4
  534. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.c +121 -154
  535. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.h +75 -70
  536. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.c +140 -116
  537. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.h +26 -16
  538. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/event_service_config.upbdefs.c +16 -19
  539. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/event_service_config.upbdefs.h +4 -4
  540. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.c +24 -43
  541. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.h +4 -9
  542. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_method_list.upbdefs.c +53 -0
  543. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_method_list.upbdefs.h +40 -0
  544. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.c +23 -51
  545. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.h +43 -43
  546. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.c +179 -184
  547. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.h +30 -25
  548. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/http_uri.upbdefs.c +16 -19
  549. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/http_uri.upbdefs.h +4 -4
  550. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.c +263 -252
  551. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.h +53 -43
  552. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.c +14 -16
  553. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.h +4 -4
  554. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/resolver.upbdefs.c +16 -20
  555. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/resolver.upbdefs.h +7 -7
  556. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/socket_option.upbdefs.c +16 -18
  557. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/socket_option.upbdefs.h +4 -4
  558. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.c +20 -22
  559. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.h +4 -4
  560. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/udp_socket_config.upbdefs.c +15 -18
  561. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/udp_socket_config.upbdefs.h +4 -4
  562. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint.upbdefs.c +20 -28
  563. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint.upbdefs.h +13 -13
  564. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint_components.upbdefs.c +98 -83
  565. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint_components.upbdefs.h +23 -13
  566. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/load_report.upbdefs.c +20 -30
  567. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/load_report.upbdefs.h +16 -16
  568. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/api_listener.upbdefs.c +16 -18
  569. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/api_listener.upbdefs.h +4 -4
  570. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.c +54 -62
  571. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.h +19 -19
  572. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.c +155 -166
  573. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.h +22 -22
  574. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/quic_config.upbdefs.c +21 -23
  575. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/quic_config.upbdefs.h +4 -4
  576. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.c +17 -21
  577. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.h +7 -7
  578. data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/metrics_service.upbdefs.c +69 -0
  579. data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/metrics_service.upbdefs.h +35 -0
  580. data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/stats.upbdefs.c +19 -35
  581. data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/stats.upbdefs.h +25 -25
  582. data/src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.c +40 -47
  583. data/src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.h +30 -25
  584. data/src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.c +190 -0
  585. data/src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.h +70 -0
  586. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.c +38 -38
  587. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.h +10 -10
  588. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.c +845 -913
  589. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.h +160 -160
  590. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/scoped_route.upbdefs.c +54 -48
  591. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/scoped_route.upbdefs.h +10 -10
  592. data/src/core/ext/upbdefs-generated/envoy/config/tap/v3/common.upbdefs.c +188 -0
  593. data/src/core/ext/upbdefs-generated/envoy/config/tap/v3/common.upbdefs.h +85 -0
  594. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/datadog.upbdefs.c +54 -0
  595. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/datadog.upbdefs.h +35 -0
  596. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/dynamic_ot.upbdefs.c +57 -0
  597. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/dynamic_ot.upbdefs.h +35 -0
  598. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/http_tracer.upbdefs.c +17 -21
  599. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/http_tracer.upbdefs.h +7 -7
  600. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/lightstep.upbdefs.c +72 -0
  601. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/lightstep.upbdefs.h +35 -0
  602. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/opencensus.upbdefs.c +99 -0
  603. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/opencensus.upbdefs.h +35 -0
  604. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/service.upbdefs.c +52 -0
  605. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/service.upbdefs.h +35 -0
  606. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/skywalking.upbdefs.c +71 -0
  607. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/skywalking.upbdefs.h +40 -0
  608. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/trace.upbdefs.c +57 -0
  609. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/trace.upbdefs.h +30 -0
  610. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/xray.upbdefs.c +75 -0
  611. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/xray.upbdefs.h +40 -0
  612. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/zipkin.upbdefs.c +77 -0
  613. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/zipkin.upbdefs.h +35 -0
  614. data/src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.c +17 -18
  615. data/src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h +4 -4
  616. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3/fault.upbdefs.c +19 -29
  617. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3/fault.upbdefs.h +16 -16
  618. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3/fault.upbdefs.c +20 -26
  619. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3/fault.upbdefs.h +10 -10
  620. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.c +59 -0
  621. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h +40 -0
  622. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.c +19 -20
  623. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.h +4 -4
  624. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +291 -311
  625. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h +63 -58
  626. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.c +17 -13
  627. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.h +1 -1
  628. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c +173 -141
  629. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h +26 -16
  630. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.c +21 -27
  631. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h +10 -10
  632. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c +219 -211
  633. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h +24 -19
  634. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.c +58 -0
  635. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.h +40 -0
  636. data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/ads.upbdefs.c +16 -18
  637. data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/ads.upbdefs.h +4 -4
  638. data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.c +19 -33
  639. data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.h +22 -22
  640. data/src/core/ext/upbdefs-generated/envoy/service/load_stats/v3/lrs.upbdefs.c +18 -22
  641. data/src/core/ext/upbdefs-generated/envoy/service/load_stats/v3/lrs.upbdefs.h +7 -7
  642. data/src/core/ext/upbdefs-generated/envoy/service/status/v3/csds.upbdefs.c +22 -32
  643. data/src/core/ext/upbdefs-generated/envoy/service/status/v3/csds.upbdefs.h +16 -16
  644. data/src/core/ext/upbdefs-generated/envoy/type/http/v3/cookie.upbdefs.c +46 -0
  645. data/src/core/ext/upbdefs-generated/envoy/type/http/v3/cookie.upbdefs.h +35 -0
  646. data/src/core/ext/upbdefs-generated/envoy/type/http/v3/path_transformation.upbdefs.c +15 -23
  647. data/src/core/ext/upbdefs-generated/envoy/type/http/v3/path_transformation.upbdefs.h +13 -13
  648. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/http_inputs.upbdefs.c +52 -0
  649. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/http_inputs.upbdefs.h +50 -0
  650. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/metadata.upbdefs.c +24 -27
  651. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/metadata.upbdefs.h +7 -7
  652. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/node.upbdefs.c +17 -19
  653. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/node.upbdefs.h +4 -4
  654. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/number.upbdefs.c +17 -19
  655. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/number.upbdefs.h +4 -4
  656. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/path.upbdefs.c +17 -19
  657. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/path.upbdefs.h +4 -4
  658. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.c +17 -23
  659. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.h +10 -10
  660. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/string.upbdefs.c +17 -21
  661. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/string.upbdefs.h +7 -7
  662. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/struct.upbdefs.c +16 -21
  663. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/struct.upbdefs.h +7 -7
  664. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/value.upbdefs.c +18 -24
  665. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/value.upbdefs.h +10 -10
  666. data/src/core/ext/upbdefs-generated/envoy/type/metadata/v3/metadata.upbdefs.c +15 -29
  667. data/src/core/ext/upbdefs-generated/envoy/type/metadata/v3/metadata.upbdefs.h +22 -22
  668. data/src/core/ext/upbdefs-generated/envoy/type/tracing/v3/custom_tag.upbdefs.c +16 -26
  669. data/src/core/ext/upbdefs-generated/envoy/type/tracing/v3/custom_tag.upbdefs.h +16 -16
  670. data/src/core/ext/upbdefs-generated/envoy/type/v3/hash_policy.upbdefs.c +53 -0
  671. data/src/core/ext/upbdefs-generated/envoy/type/v3/hash_policy.upbdefs.h +45 -0
  672. data/src/core/ext/upbdefs-generated/envoy/type/v3/http.upbdefs.c +12 -10
  673. data/src/core/ext/upbdefs-generated/envoy/type/v3/http.upbdefs.h +1 -1
  674. data/src/core/ext/upbdefs-generated/envoy/type/v3/http_status.upbdefs.c +94 -0
  675. data/src/core/ext/upbdefs-generated/envoy/type/v3/http_status.upbdefs.h +35 -0
  676. data/src/core/ext/upbdefs-generated/envoy/type/v3/percent.upbdefs.c +14 -19
  677. data/src/core/ext/upbdefs-generated/envoy/type/v3/percent.upbdefs.h +7 -7
  678. data/src/core/ext/upbdefs-generated/envoy/type/v3/range.upbdefs.c +13 -19
  679. data/src/core/ext/upbdefs-generated/envoy/type/v3/range.upbdefs.h +10 -10
  680. data/src/core/ext/upbdefs-generated/envoy/type/v3/ratelimit_unit.upbdefs.c +38 -0
  681. data/src/core/ext/upbdefs-generated/envoy/type/v3/ratelimit_unit.upbdefs.h +30 -0
  682. data/src/core/ext/upbdefs-generated/envoy/type/v3/semantic_version.upbdefs.c +13 -16
  683. data/src/core/ext/upbdefs-generated/envoy/type/v3/semantic_version.upbdefs.h +4 -4
  684. data/src/core/ext/upbdefs-generated/envoy/type/v3/token_bucket.upbdefs.c +57 -0
  685. data/src/core/ext/upbdefs-generated/envoy/type/v3/token_bucket.upbdefs.h +35 -0
  686. data/src/core/ext/upbdefs-generated/google/api/annotations.upbdefs.c +7 -7
  687. data/src/core/ext/upbdefs-generated/google/api/annotations.upbdefs.h +1 -1
  688. data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/checked.upbdefs.c +154 -0
  689. data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/checked.upbdefs.h +95 -0
  690. data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/syntax.upbdefs.c +153 -0
  691. data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/syntax.upbdefs.h +100 -0
  692. data/src/core/ext/upbdefs-generated/google/api/http.upbdefs.c +5 -14
  693. data/src/core/ext/upbdefs-generated/google/api/http.upbdefs.h +10 -10
  694. data/src/core/ext/upbdefs-generated/google/api/httpbody.upbdefs.c +39 -0
  695. data/src/core/ext/upbdefs-generated/google/api/httpbody.upbdefs.h +35 -0
  696. data/src/core/ext/upbdefs-generated/google/protobuf/any.upbdefs.c +5 -10
  697. data/src/core/ext/upbdefs-generated/google/protobuf/any.upbdefs.h +4 -4
  698. data/src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.c +107 -164
  699. data/src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.h +82 -82
  700. data/src/core/ext/upbdefs-generated/google/protobuf/duration.upbdefs.c +5 -10
  701. data/src/core/ext/upbdefs-generated/google/protobuf/duration.upbdefs.h +4 -4
  702. data/src/core/ext/upbdefs-generated/google/protobuf/empty.upbdefs.c +5 -10
  703. data/src/core/ext/upbdefs-generated/google/protobuf/empty.upbdefs.h +4 -4
  704. data/src/core/ext/upbdefs-generated/google/protobuf/struct.upbdefs.c +5 -16
  705. data/src/core/ext/upbdefs-generated/google/protobuf/struct.upbdefs.h +13 -13
  706. data/src/core/ext/upbdefs-generated/google/protobuf/timestamp.upbdefs.c +5 -10
  707. data/src/core/ext/upbdefs-generated/google/protobuf/timestamp.upbdefs.h +4 -4
  708. data/src/core/ext/upbdefs-generated/google/protobuf/wrappers.upbdefs.c +5 -26
  709. data/src/core/ext/upbdefs-generated/google/protobuf/wrappers.upbdefs.h +28 -28
  710. data/src/core/ext/upbdefs-generated/google/rpc/status.upbdefs.c +6 -11
  711. data/src/core/ext/upbdefs-generated/google/rpc/status.upbdefs.h +4 -4
  712. data/src/core/ext/upbdefs-generated/opencensus/proto/trace/v1/trace_config.upbdefs.c +67 -0
  713. data/src/core/ext/upbdefs-generated/opencensus/proto/trace/v1/trace_config.upbdefs.h +50 -0
  714. data/src/core/ext/upbdefs-generated/src/proto/grpc/lookup/v1/rls_config.upbdefs.c +99 -0
  715. data/src/core/ext/upbdefs-generated/src/proto/grpc/lookup/v1/rls_config.upbdefs.h +75 -0
  716. data/src/core/ext/upbdefs-generated/udpa/annotations/migrate.upbdefs.c +10 -18
  717. data/src/core/ext/upbdefs-generated/udpa/annotations/migrate.upbdefs.h +10 -10
  718. data/src/core/ext/upbdefs-generated/udpa/annotations/security.upbdefs.c +24 -33
  719. data/src/core/ext/upbdefs-generated/udpa/annotations/security.upbdefs.h +4 -4
  720. data/src/core/ext/upbdefs-generated/udpa/annotations/sensitive.upbdefs.c +9 -8
  721. data/src/core/ext/upbdefs-generated/udpa/annotations/sensitive.upbdefs.h +1 -1
  722. data/src/core/ext/upbdefs-generated/udpa/annotations/status.upbdefs.c +10 -13
  723. data/src/core/ext/upbdefs-generated/udpa/annotations/status.upbdefs.h +4 -4
  724. data/src/core/ext/upbdefs-generated/udpa/annotations/versioning.upbdefs.c +10 -14
  725. data/src/core/ext/upbdefs-generated/udpa/annotations/versioning.upbdefs.h +4 -4
  726. data/src/core/ext/upbdefs-generated/validate/validate.upbdefs.c +8 -57
  727. data/src/core/ext/upbdefs-generated/validate/validate.upbdefs.h +70 -70
  728. data/src/core/ext/upbdefs-generated/xds/annotations/v3/migrate.upbdefs.c +63 -0
  729. data/src/core/ext/upbdefs-generated/xds/annotations/v3/migrate.upbdefs.h +45 -0
  730. data/src/core/ext/upbdefs-generated/xds/annotations/v3/security.upbdefs.c +47 -0
  731. data/src/core/ext/upbdefs-generated/xds/annotations/v3/security.upbdefs.h +35 -0
  732. data/src/core/ext/upbdefs-generated/xds/annotations/v3/sensitive.upbdefs.c +35 -0
  733. data/src/core/ext/upbdefs-generated/xds/annotations/v3/sensitive.upbdefs.h +30 -0
  734. data/src/core/ext/upbdefs-generated/xds/annotations/v3/status.upbdefs.c +64 -0
  735. data/src/core/ext/upbdefs-generated/xds/annotations/v3/status.upbdefs.h +50 -0
  736. data/src/core/ext/upbdefs-generated/xds/annotations/v3/versioning.upbdefs.c +40 -0
  737. data/src/core/ext/upbdefs-generated/xds/annotations/v3/versioning.upbdefs.h +35 -0
  738. data/src/core/ext/upbdefs-generated/xds/core/v3/authority.upbdefs.c +18 -22
  739. data/src/core/ext/upbdefs-generated/xds/core/v3/authority.upbdefs.h +4 -4
  740. data/src/core/ext/upbdefs-generated/xds/core/v3/collection_entry.upbdefs.c +32 -38
  741. data/src/core/ext/upbdefs-generated/xds/core/v3/collection_entry.upbdefs.h +7 -7
  742. data/src/core/ext/upbdefs-generated/xds/core/v3/context_params.upbdefs.c +20 -26
  743. data/src/core/ext/upbdefs-generated/xds/core/v3/context_params.upbdefs.h +7 -7
  744. data/src/core/ext/upbdefs-generated/xds/core/v3/extension.upbdefs.c +41 -0
  745. data/src/core/ext/upbdefs-generated/xds/core/v3/extension.upbdefs.h +35 -0
  746. data/src/core/ext/upbdefs-generated/xds/core/v3/resource.upbdefs.c +23 -27
  747. data/src/core/ext/upbdefs-generated/xds/core/v3/resource.upbdefs.h +4 -4
  748. data/src/core/ext/upbdefs-generated/xds/core/v3/resource_locator.upbdefs.c +39 -45
  749. data/src/core/ext/upbdefs-generated/xds/core/v3/resource_locator.upbdefs.h +7 -7
  750. data/src/core/ext/upbdefs-generated/xds/core/v3/resource_name.upbdefs.c +25 -29
  751. data/src/core/ext/upbdefs-generated/xds/core/v3/resource_name.upbdefs.h +4 -4
  752. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/matcher.upbdefs.c +126 -0
  753. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/matcher.upbdefs.h +80 -0
  754. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/regex.upbdefs.c +40 -0
  755. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/regex.upbdefs.h +40 -0
  756. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/string.upbdefs.c +52 -0
  757. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/string.upbdefs.h +40 -0
  758. data/src/core/ext/upbdefs-generated/xds/type/v3/typed_struct.upbdefs.c +40 -0
  759. data/src/core/ext/upbdefs-generated/xds/type/v3/typed_struct.upbdefs.h +35 -0
  760. data/src/core/ext/xds/certificate_provider_registry.cc +3 -3
  761. data/src/core/ext/xds/certificate_provider_store.cc +8 -0
  762. data/src/core/ext/xds/certificate_provider_store.h +10 -1
  763. data/src/core/ext/xds/file_watcher_certificate_provider_factory.cc +4 -4
  764. data/src/core/ext/xds/file_watcher_certificate_provider_factory.h +2 -2
  765. data/src/core/ext/xds/upb_utils.h +67 -0
  766. data/src/core/ext/xds/xds_api.cc +214 -3608
  767. data/src/core/ext/xds/xds_api.h +62 -580
  768. data/src/core/ext/xds/xds_bootstrap.cc +241 -167
  769. data/src/core/ext/xds/xds_bootstrap.h +43 -15
  770. data/src/core/ext/xds/xds_certificate_provider.cc +5 -3
  771. data/src/core/ext/xds/xds_certificate_provider.h +10 -2
  772. data/src/core/ext/xds/xds_channel_stack_modifier.cc +109 -0
  773. data/src/core/ext/xds/xds_channel_stack_modifier.h +53 -0
  774. data/src/core/ext/xds/xds_client.cc +872 -899
  775. data/src/core/ext/xds/xds_client.h +132 -159
  776. data/src/core/ext/xds/xds_client_stats.cc +31 -30
  777. data/src/core/ext/xds/xds_client_stats.h +12 -11
  778. data/src/core/ext/xds/xds_cluster.cc +453 -0
  779. data/src/core/ext/xds/xds_cluster.h +108 -0
  780. data/src/core/ext/xds/xds_cluster_specifier_plugin.cc +142 -0
  781. data/src/core/ext/xds/xds_cluster_specifier_plugin.h +79 -0
  782. data/src/core/ext/xds/xds_common_types.cc +388 -0
  783. data/src/core/ext/xds/xds_common_types.h +95 -0
  784. data/src/core/ext/xds/xds_endpoint.cc +371 -0
  785. data/src/core/ext/xds/xds_endpoint.h +135 -0
  786. data/src/core/ext/xds/xds_http_fault_filter.cc +11 -10
  787. data/src/core/ext/xds/xds_http_fault_filter.h +6 -5
  788. data/src/core/ext/xds/xds_http_filters.cc +12 -5
  789. data/src/core/ext/xds/xds_http_filters.h +4 -4
  790. data/src/core/ext/xds/xds_http_rbac_filter.cc +563 -0
  791. data/src/core/ext/xds/xds_http_rbac_filter.h +54 -0
  792. data/src/core/ext/xds/xds_listener.cc +1039 -0
  793. data/src/core/ext/xds/xds_listener.h +220 -0
  794. data/src/core/{lib/transport/authority_override.h → ext/xds/xds_resource_type.cc} +11 -15
  795. data/src/core/ext/xds/xds_resource_type.h +98 -0
  796. data/src/core/ext/xds/xds_resource_type_impl.h +87 -0
  797. data/src/core/ext/xds/xds_route_config.cc +1122 -0
  798. data/src/core/ext/xds/xds_route_config.h +218 -0
  799. data/src/core/ext/xds/xds_routing.cc +250 -0
  800. data/src/core/ext/xds/xds_routing.h +101 -0
  801. data/src/core/ext/xds/xds_server_config_fetcher.cc +1057 -289
  802. data/src/core/lib/address_utils/parse_address.cc +26 -8
  803. data/src/core/lib/address_utils/parse_address.h +5 -0
  804. data/src/core/lib/address_utils/sockaddr_utils.cc +33 -36
  805. data/src/core/lib/address_utils/sockaddr_utils.h +1 -16
  806. data/src/core/lib/avl/avl.h +452 -88
  807. data/src/core/lib/backoff/backoff.cc +9 -38
  808. data/src/core/lib/backoff/backoff.h +11 -11
  809. data/src/core/lib/channel/call_finalization.h +86 -0
  810. data/src/core/lib/channel/call_tracer.h +4 -1
  811. data/src/core/lib/channel/channel_args.cc +173 -16
  812. data/src/core/lib/channel/channel_args.h +214 -1
  813. data/src/core/lib/channel/channel_args_preconditioning.cc +42 -0
  814. data/src/core/lib/channel/channel_args_preconditioning.h +61 -0
  815. data/src/core/lib/channel/channel_stack.cc +15 -6
  816. data/src/core/lib/channel/channel_stack.h +39 -6
  817. data/src/core/lib/channel/channel_stack_builder.cc +24 -283
  818. data/src/core/lib/channel/channel_stack_builder.h +118 -157
  819. data/src/core/lib/channel/channel_stack_builder_impl.cc +102 -0
  820. data/src/core/lib/channel/channel_stack_builder_impl.h +48 -0
  821. data/src/core/lib/channel/channel_trace.cc +8 -10
  822. data/src/core/lib/channel/channel_trace.h +2 -1
  823. data/src/core/lib/channel/channelz.cc +44 -39
  824. data/src/core/lib/channel/channelz.h +29 -29
  825. data/src/core/lib/channel/channelz_registry.cc +8 -7
  826. data/src/core/lib/channel/channelz_registry.h +1 -1
  827. data/src/core/lib/channel/connected_channel.cc +10 -6
  828. data/src/core/lib/channel/connected_channel.h +2 -2
  829. data/src/core/lib/channel/context.h +11 -0
  830. data/src/core/lib/channel/handshaker.cc +3 -2
  831. data/src/core/lib/channel/handshaker.h +2 -3
  832. data/src/core/lib/channel/handshaker_factory.h +10 -2
  833. data/src/core/lib/channel/handshaker_registry.cc +15 -70
  834. data/src/core/lib/channel/handshaker_registry.h +29 -12
  835. data/src/core/lib/channel/promise_based_filter.cc +1002 -0
  836. data/src/core/lib/channel/promise_based_filter.h +437 -0
  837. data/src/core/lib/channel/status_util.h +2 -2
  838. data/src/core/lib/compression/compression.cc +22 -114
  839. data/src/core/lib/compression/compression_internal.cc +139 -207
  840. data/src/core/lib/compression/compression_internal.h +64 -69
  841. data/src/core/lib/compression/message_compress.cc +13 -13
  842. data/src/core/lib/compression/message_compress.h +2 -2
  843. data/src/core/lib/config/core_configuration.cc +104 -0
  844. data/src/core/lib/config/core_configuration.h +196 -0
  845. data/src/core/lib/debug/stats.cc +1 -1
  846. data/src/core/lib/debug/stats.h +1 -0
  847. data/src/core/lib/debug/stats_data.cc +17 -20
  848. data/src/core/lib/debug/stats_data.h +19 -21
  849. data/src/core/lib/debug/trace.cc +1 -0
  850. data/src/core/lib/debug/trace.h +4 -3
  851. data/src/core/lib/event_engine/{endpoint_config.cc → channel_args_endpoint_config.cc} +2 -2
  852. data/src/core/lib/event_engine/{endpoint_config_internal.h → channel_args_endpoint_config.h} +3 -3
  853. data/src/core/lib/{iomgr/event_engine/iomgr.h → event_engine/default_event_engine_factory.cc} +11 -8
  854. data/src/core/lib/event_engine/event_engine.cc +21 -19
  855. data/src/core/lib/event_engine/event_engine_factory.h +36 -0
  856. data/src/core/lib/event_engine/memory_allocator.cc +66 -0
  857. data/src/core/lib/event_engine/resolved_address.cc +39 -0
  858. data/src/core/lib/event_engine/sockaddr.cc +3 -3
  859. data/src/core/lib/gpr/alloc.cc +4 -3
  860. data/src/core/lib/gpr/atm.cc +1 -1
  861. data/src/core/lib/gpr/cpu_posix.cc +1 -1
  862. data/src/core/lib/gpr/env_linux.cc +1 -2
  863. data/src/core/lib/gpr/env_posix.cc +2 -3
  864. data/src/core/lib/gpr/log.cc +3 -3
  865. data/src/core/lib/gpr/log_android.cc +3 -2
  866. data/src/core/lib/gpr/log_linux.cc +7 -4
  867. data/src/core/lib/gpr/log_posix.cc +6 -3
  868. data/src/core/lib/gpr/string.cc +2 -2
  869. data/src/core/lib/gpr/string.h +2 -2
  870. data/src/core/lib/gpr/sync.cc +2 -2
  871. data/src/core/lib/gpr/sync_abseil.cc +7 -6
  872. data/src/core/lib/gpr/sync_posix.cc +4 -3
  873. data/src/core/lib/gpr/time.cc +5 -3
  874. data/src/core/lib/gpr/time_windows.cc +3 -2
  875. data/src/core/lib/gpr/tls.h +126 -40
  876. data/src/core/lib/gpr/tmpfile_posix.cc +1 -2
  877. data/src/core/lib/gpr/useful.h +97 -32
  878. data/src/core/lib/gprpp/atomic_utils.h +47 -0
  879. data/src/core/lib/gprpp/bitset.h +207 -0
  880. data/src/core/lib/gprpp/capture.h +76 -0
  881. data/src/core/lib/gprpp/chunked_vector.h +253 -0
  882. data/src/core/lib/{transport/authority_override.cc → gprpp/construct_destruct.h} +16 -17
  883. data/src/core/lib/gprpp/cpp_impl_of.h +49 -0
  884. data/src/core/lib/gprpp/debug_location.h +2 -0
  885. data/src/core/lib/gprpp/dual_ref_counted.h +25 -26
  886. data/src/core/lib/gprpp/fork.cc +14 -12
  887. data/src/core/lib/gprpp/fork.h +4 -4
  888. data/src/core/lib/gprpp/global_config.h +1 -2
  889. data/src/core/lib/gprpp/global_config_env.cc +14 -14
  890. data/src/core/lib/gprpp/global_config_env.h +2 -2
  891. data/src/core/lib/gprpp/global_config_generic.h +2 -2
  892. data/src/core/lib/gprpp/manual_constructor.h +10 -8
  893. data/src/core/lib/gprpp/match.h +73 -0
  894. data/src/core/lib/gprpp/memory.h +9 -3
  895. data/src/core/lib/gprpp/mpscq.cc +7 -7
  896. data/src/core/lib/gprpp/mpscq.h +6 -5
  897. data/src/core/lib/gprpp/orphanable.h +4 -4
  898. data/src/core/lib/gprpp/overload.h +59 -0
  899. data/src/core/lib/gprpp/ref_counted.h +21 -19
  900. data/src/core/lib/gprpp/ref_counted_ptr.h +2 -4
  901. data/src/core/lib/gprpp/single_set_ptr.h +87 -0
  902. data/src/core/lib/gprpp/status_helper.cc +65 -37
  903. data/src/core/lib/gprpp/status_helper.h +14 -16
  904. data/src/core/lib/gprpp/sync.h +3 -1
  905. data/src/core/lib/gprpp/table.h +434 -0
  906. data/src/core/lib/gprpp/thd_posix.cc +5 -5
  907. data/src/core/lib/gprpp/thd_windows.cc +4 -11
  908. data/src/core/lib/gprpp/time.cc +198 -0
  909. data/src/core/lib/gprpp/time.h +292 -0
  910. data/src/core/lib/gprpp/time_util.cc +2 -2
  911. data/src/core/lib/gprpp/time_util.h +2 -2
  912. data/src/core/lib/http/format_request.cc +29 -25
  913. data/src/core/lib/http/format_request.h +8 -6
  914. data/src/core/lib/http/httpcli.cc +298 -208
  915. data/src/core/lib/http/httpcli.h +183 -85
  916. data/src/core/lib/http/httpcli_security_connector.cc +67 -81
  917. data/src/core/lib/http/httpcli_ssl_credentials.h +37 -0
  918. data/src/core/lib/http/parser.cc +82 -11
  919. data/src/core/lib/http/parser.h +16 -2
  920. data/src/core/lib/iomgr/buffer_list.cc +11 -10
  921. data/src/core/lib/iomgr/buffer_list.h +19 -20
  922. data/src/core/lib/iomgr/call_combiner.cc +45 -16
  923. data/src/core/lib/iomgr/cfstream_handle.cc +1 -1
  924. data/src/core/lib/iomgr/closure.h +29 -9
  925. data/src/core/lib/iomgr/combiner.cc +34 -26
  926. data/src/core/lib/iomgr/combiner.h +1 -0
  927. data/src/core/lib/iomgr/dualstack_socket_posix.cc +1 -0
  928. data/src/core/lib/iomgr/endpoint.cc +0 -4
  929. data/src/core/lib/iomgr/endpoint.h +1 -4
  930. data/src/core/lib/iomgr/endpoint_cfstream.cc +15 -42
  931. data/src/core/lib/iomgr/endpoint_cfstream.h +4 -4
  932. data/src/core/lib/iomgr/endpoint_pair.h +1 -0
  933. data/src/core/lib/iomgr/endpoint_pair_event_engine.cc +1 -2
  934. data/src/core/lib/iomgr/endpoint_pair_posix.cc +11 -9
  935. data/src/core/lib/iomgr/endpoint_pair_windows.cc +5 -6
  936. data/src/core/lib/iomgr/error.cc +123 -59
  937. data/src/core/lib/iomgr/error.h +73 -20
  938. data/src/core/lib/iomgr/error_cfstream.cc +7 -2
  939. data/src/core/lib/iomgr/error_internal.h +1 -0
  940. data/src/core/lib/iomgr/ev_apple.cc +6 -5
  941. data/src/core/lib/iomgr/ev_epoll1_linux.cc +25 -31
  942. data/src/core/lib/iomgr/ev_poll_posix.cc +49 -52
  943. data/src/core/lib/iomgr/ev_posix.cc +10 -12
  944. data/src/core/lib/iomgr/ev_posix.h +1 -1
  945. data/src/core/lib/iomgr/event_engine/closure.cc +41 -18
  946. data/src/core/lib/iomgr/event_engine/closure.h +10 -1
  947. data/src/core/lib/iomgr/event_engine/endpoint.cc +7 -27
  948. data/src/core/lib/iomgr/event_engine/endpoint.h +1 -2
  949. data/src/core/lib/iomgr/event_engine/iomgr.cc +10 -30
  950. data/src/core/lib/iomgr/event_engine/pollset.cc +6 -6
  951. data/src/core/lib/iomgr/event_engine/resolved_address_internal.cc +6 -0
  952. data/src/core/lib/iomgr/event_engine/resolved_address_internal.h +2 -0
  953. data/src/core/lib/iomgr/event_engine/resolver.cc +70 -47
  954. data/src/core/lib/iomgr/event_engine/resolver.h +56 -0
  955. data/src/core/lib/iomgr/event_engine/tcp.cc +70 -37
  956. data/src/core/lib/iomgr/event_engine/timer.cc +13 -8
  957. data/src/core/lib/iomgr/exec_ctx.cc +28 -109
  958. data/src/core/lib/iomgr/exec_ctx.h +28 -52
  959. data/src/core/lib/iomgr/executor/mpmcqueue.cc +15 -16
  960. data/src/core/lib/iomgr/executor/mpmcqueue.h +7 -11
  961. data/src/core/lib/iomgr/executor/threadpool.cc +2 -2
  962. data/src/core/lib/iomgr/executor/threadpool.h +2 -1
  963. data/src/core/lib/iomgr/executor.cc +30 -39
  964. data/src/core/lib/iomgr/executor.h +1 -1
  965. data/src/core/lib/iomgr/fork_posix.cc +2 -1
  966. data/src/core/lib/iomgr/grpc_if_nametoindex_posix.cc +2 -2
  967. data/src/core/lib/iomgr/grpc_if_nametoindex_unsupported.cc +2 -2
  968. data/src/core/lib/iomgr/internal_errqueue.cc +3 -2
  969. data/src/core/lib/iomgr/iocp_windows.cc +10 -9
  970. data/src/core/lib/iomgr/iocp_windows.h +1 -1
  971. data/src/core/lib/iomgr/iomgr.cc +3 -1
  972. data/src/core/lib/iomgr/iomgr.h +2 -2
  973. data/src/core/lib/iomgr/iomgr_internal.cc +6 -10
  974. data/src/core/lib/iomgr/iomgr_internal.h +3 -2
  975. data/src/core/lib/iomgr/iomgr_posix.cc +2 -2
  976. data/src/core/lib/iomgr/iomgr_posix_cfstream.cc +2 -2
  977. data/src/core/lib/iomgr/iomgr_windows.cc +3 -4
  978. data/src/core/lib/iomgr/load_file.cc +2 -2
  979. data/src/core/lib/iomgr/lockfree_event.cc +18 -0
  980. data/src/core/lib/iomgr/polling_entity.cc +2 -2
  981. data/src/core/lib/iomgr/polling_entity.h +6 -0
  982. data/src/core/lib/iomgr/pollset.cc +1 -1
  983. data/src/core/lib/iomgr/pollset.h +4 -4
  984. data/src/core/lib/iomgr/pollset_set_windows.cc +1 -0
  985. data/src/core/lib/iomgr/pollset_windows.cc +2 -2
  986. data/src/core/lib/iomgr/port.h +6 -16
  987. data/src/core/lib/iomgr/python_util.h +1 -0
  988. data/src/core/lib/iomgr/resolve_address.cc +7 -25
  989. data/src/core/lib/iomgr/resolve_address.h +47 -48
  990. data/src/core/lib/iomgr/resolve_address_impl.h +59 -0
  991. data/src/core/lib/iomgr/resolve_address_posix.cc +90 -78
  992. data/src/core/lib/iomgr/resolve_address_posix.h +47 -0
  993. data/src/core/lib/iomgr/resolve_address_windows.cc +99 -82
  994. data/src/core/lib/iomgr/resolve_address_windows.h +47 -0
  995. data/src/core/lib/iomgr/resolved_address.h +39 -0
  996. data/src/core/lib/iomgr/sockaddr.h +1 -1
  997. data/src/core/lib/iomgr/{socket_utils_uv.cc → sockaddr_utils_posix.cc} +21 -8
  998. data/src/core/lib/iomgr/socket_factory_posix.cc +5 -5
  999. data/src/core/lib/iomgr/socket_factory_posix.h +1 -0
  1000. data/src/core/lib/iomgr/socket_mutator.cc +2 -2
  1001. data/src/core/lib/iomgr/socket_mutator.h +2 -2
  1002. data/src/core/lib/iomgr/socket_utils_common_posix.cc +4 -22
  1003. data/src/core/lib/iomgr/socket_utils_linux.cc +4 -4
  1004. data/src/core/lib/iomgr/socket_utils_posix.cc +2 -2
  1005. data/src/core/lib/iomgr/socket_utils_posix.h +2 -2
  1006. data/src/core/lib/iomgr/socket_utils_windows.cc +2 -2
  1007. data/src/core/lib/iomgr/tcp_client.cc +1 -1
  1008. data/src/core/lib/iomgr/tcp_client.h +5 -2
  1009. data/src/core/lib/iomgr/tcp_client_cfstream.cc +8 -24
  1010. data/src/core/lib/iomgr/tcp_client_posix.cc +17 -27
  1011. data/src/core/lib/iomgr/tcp_client_posix.h +4 -2
  1012. data/src/core/lib/iomgr/tcp_client_windows.cc +8 -10
  1013. data/src/core/lib/iomgr/tcp_posix.cc +143 -120
  1014. data/src/core/lib/iomgr/tcp_posix.h +9 -12
  1015. data/src/core/lib/iomgr/tcp_server.h +4 -3
  1016. data/src/core/lib/iomgr/tcp_server_posix.cc +40 -29
  1017. data/src/core/lib/iomgr/tcp_server_utils_posix.h +21 -17
  1018. data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +2 -2
  1019. data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc +4 -4
  1020. data/src/core/lib/iomgr/tcp_server_utils_posix_noifaddrs.cc +4 -4
  1021. data/src/core/lib/iomgr/tcp_server_windows.cc +6 -10
  1022. data/src/core/lib/iomgr/tcp_windows.cc +22 -39
  1023. data/src/core/lib/iomgr/tcp_windows.h +1 -1
  1024. data/src/core/lib/iomgr/timer.cc +3 -2
  1025. data/src/core/lib/iomgr/timer.h +11 -7
  1026. data/src/core/lib/iomgr/timer_generic.cc +113 -124
  1027. data/src/core/lib/iomgr/timer_generic.h +1 -0
  1028. data/src/core/lib/iomgr/timer_heap.cc +2 -3
  1029. data/src/core/lib/iomgr/timer_manager.cc +15 -14
  1030. data/src/core/lib/iomgr/unix_sockets_posix.cc +25 -39
  1031. data/src/core/lib/iomgr/unix_sockets_posix.h +6 -10
  1032. data/src/core/lib/iomgr/unix_sockets_posix_noop.cc +6 -15
  1033. data/src/core/lib/iomgr/wakeup_fd_nospecial.cc +1 -0
  1034. data/src/core/lib/iomgr/wakeup_fd_pipe.cc +2 -3
  1035. data/src/core/lib/iomgr/wakeup_fd_posix.cc +1 -0
  1036. data/src/core/lib/iomgr/work_serializer.cc +120 -44
  1037. data/src/core/lib/iomgr/work_serializer.h +17 -5
  1038. data/src/core/lib/json/json_reader.cc +92 -52
  1039. data/src/core/lib/json/json_util.cc +71 -3
  1040. data/src/core/lib/json/json_util.h +67 -117
  1041. data/src/core/lib/json/json_writer.cc +0 -3
  1042. data/src/core/lib/matchers/matchers.cc +1 -1
  1043. data/src/core/lib/matchers/matchers.h +0 -1
  1044. data/src/core/lib/profiling/basic_timers.cc +8 -6
  1045. data/src/core/lib/profiling/stap_timers.cc +2 -2
  1046. data/src/core/lib/promise/activity.cc +121 -0
  1047. data/src/core/lib/promise/activity.h +540 -0
  1048. data/src/core/lib/promise/arena_promise.h +188 -0
  1049. data/src/core/lib/promise/call_push_pull.h +144 -0
  1050. data/src/core/lib/promise/context.h +86 -0
  1051. data/src/core/lib/promise/detail/basic_seq.h +496 -0
  1052. data/src/core/lib/promise/detail/promise_factory.h +189 -0
  1053. data/src/core/lib/promise/detail/promise_like.h +85 -0
  1054. data/src/core/lib/promise/detail/status.h +50 -0
  1055. data/src/core/lib/promise/detail/switch.h +1455 -0
  1056. data/src/core/lib/promise/exec_ctx_wakeup_scheduler.h +48 -0
  1057. data/src/core/lib/promise/intra_activity_waiter.h +49 -0
  1058. data/src/core/lib/promise/latch.h +104 -0
  1059. data/src/core/lib/promise/loop.h +134 -0
  1060. data/src/core/lib/promise/map.h +88 -0
  1061. data/src/core/lib/promise/poll.h +66 -0
  1062. data/src/core/lib/promise/promise.h +95 -0
  1063. data/src/core/lib/promise/race.h +84 -0
  1064. data/src/core/lib/promise/seq.h +89 -0
  1065. data/src/core/lib/promise/sleep.cc +74 -0
  1066. data/src/core/lib/promise/sleep.h +66 -0
  1067. data/src/core/lib/promise/try_seq.h +157 -0
  1068. data/src/core/{ext/filters/client_channel → lib/resolver}/resolver.cc +17 -25
  1069. data/src/core/{ext/filters/client_channel → lib/resolver}/resolver.h +43 -44
  1070. data/src/core/{ext/filters/client_channel → lib/resolver}/resolver_factory.h +32 -29
  1071. data/src/core/lib/resolver/resolver_registry.cc +156 -0
  1072. data/src/core/lib/resolver/resolver_registry.h +113 -0
  1073. data/src/core/{ext/filters/client_channel → lib/resolver}/server_address.cc +1 -1
  1074. data/src/core/{ext/filters/client_channel → lib/resolver}/server_address.h +5 -5
  1075. data/src/core/lib/resource_quota/api.cc +83 -0
  1076. data/src/core/lib/resource_quota/api.h +40 -0
  1077. data/src/core/lib/{gprpp → resource_quota}/arena.cc +18 -14
  1078. data/src/core/lib/{gprpp → resource_quota}/arena.h +37 -16
  1079. data/src/core/lib/resource_quota/memory_quota.cc +478 -0
  1080. data/src/core/lib/resource_quota/memory_quota.h +457 -0
  1081. data/src/core/lib/resource_quota/resource_quota.cc +33 -0
  1082. data/src/core/lib/resource_quota/resource_quota.h +66 -0
  1083. data/src/core/lib/resource_quota/thread_quota.cc +43 -0
  1084. data/src/core/lib/resource_quota/thread_quota.h +57 -0
  1085. data/src/core/lib/resource_quota/trace.cc +19 -0
  1086. data/src/core/{ext/filters/max_age/max_age_filter.h → lib/resource_quota/trace.h} +6 -8
  1087. data/src/core/lib/security/authorization/authorization_policy_provider.h +12 -4
  1088. data/src/core/lib/security/authorization/authorization_policy_provider_vtable.cc +1 -1
  1089. data/src/core/lib/security/authorization/evaluate_args.cc +39 -36
  1090. data/src/core/lib/security/authorization/evaluate_args.h +3 -2
  1091. data/src/core/lib/security/authorization/grpc_authorization_engine.cc +60 -0
  1092. data/src/core/lib/security/authorization/grpc_authorization_engine.h +62 -0
  1093. data/src/core/lib/security/authorization/grpc_server_authz_filter.cc +106 -0
  1094. data/src/core/lib/security/authorization/grpc_server_authz_filter.h +50 -0
  1095. data/src/core/lib/security/authorization/matchers.cc +227 -0
  1096. data/src/core/lib/security/authorization/matchers.h +211 -0
  1097. data/src/core/lib/security/authorization/rbac_policy.cc +442 -0
  1098. data/src/core/lib/security/authorization/rbac_policy.h +171 -0
  1099. data/src/core/lib/security/context/security_context.cc +15 -10
  1100. data/src/core/lib/security/context/security_context.h +9 -2
  1101. data/src/core/lib/security/credentials/alts/alts_credentials.cc +6 -5
  1102. data/src/core/lib/security/credentials/alts/alts_credentials.h +10 -0
  1103. data/src/core/lib/security/credentials/alts/check_gcp_environment_linux.cc +2 -2
  1104. data/src/core/lib/security/credentials/alts/check_gcp_environment_no_op.cc +2 -2
  1105. data/src/core/lib/security/credentials/alts/check_gcp_environment_windows.cc +2 -2
  1106. data/src/core/lib/security/credentials/call_creds_util.cc +87 -0
  1107. data/src/core/lib/security/credentials/call_creds_util.h +42 -0
  1108. data/src/core/lib/security/credentials/channel_creds_registry.h +97 -0
  1109. data/src/core/lib/security/credentials/channel_creds_registry_init.cc +70 -0
  1110. data/src/core/lib/security/credentials/composite/composite_credentials.cc +28 -86
  1111. data/src/core/lib/security/credentials/composite/composite_credentials.h +23 -10
  1112. data/src/core/lib/security/credentials/credentials.cc +11 -10
  1113. data/src/core/lib/security/credentials/credentials.h +81 -82
  1114. data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +61 -59
  1115. data/src/core/lib/security/credentials/external/aws_external_account_credentials.h +2 -2
  1116. data/src/core/lib/security/credentials/external/aws_request_signer.cc +3 -3
  1117. data/src/core/lib/security/credentials/external/external_account_credentials.cc +112 -68
  1118. data/src/core/lib/security/credentials/external/external_account_credentials.h +6 -9
  1119. data/src/core/lib/security/credentials/external/file_external_account_credentials.cc +0 -1
  1120. data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +35 -18
  1121. data/src/core/lib/security/credentials/external/url_external_account_credentials.h +1 -0
  1122. data/src/core/lib/security/credentials/fake/fake_credentials.cc +23 -27
  1123. data/src/core/lib/security/credentials/fake/fake_credentials.h +22 -21
  1124. data/src/core/lib/security/credentials/google_default/credentials_generic.cc +1 -2
  1125. data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +77 -20
  1126. data/src/core/lib/security/credentials/google_default/google_default_credentials.h +9 -3
  1127. data/src/core/lib/security/credentials/iam/iam_credentials.cc +23 -29
  1128. data/src/core/lib/security/credentials/iam/iam_credentials.h +15 -9
  1129. data/src/core/lib/security/credentials/insecure/insecure_credentials.cc +25 -26
  1130. data/src/core/lib/security/credentials/insecure/insecure_credentials.h +57 -0
  1131. data/src/core/lib/security/credentials/jwt/json_token.cc +5 -7
  1132. data/src/core/lib/security/credentials/jwt/json_token.h +2 -1
  1133. data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +56 -51
  1134. data/src/core/lib/security/credentials/jwt/jwt_credentials.h +27 -15
  1135. data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +59 -54
  1136. data/src/core/lib/security/credentials/jwt/jwt_verifier.h +4 -4
  1137. data/src/core/lib/security/credentials/local/local_credentials.cc +6 -6
  1138. data/src/core/lib/security/credentials/local/local_credentials.h +10 -0
  1139. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +160 -181
  1140. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +61 -33
  1141. data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +98 -156
  1142. data/src/core/lib/security/credentials/plugin/plugin_credentials.h +56 -27
  1143. data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +11 -18
  1144. data/src/core/lib/security/credentials/ssl/ssl_credentials.h +14 -4
  1145. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.cc +3 -2
  1146. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.h +10 -6
  1147. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +13 -13
  1148. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h +62 -12
  1149. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.cc +209 -0
  1150. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.h +145 -0
  1151. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +33 -87
  1152. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +75 -151
  1153. data/src/core/lib/security/credentials/tls/tls_credentials.cc +30 -16
  1154. data/src/core/lib/security/credentials/tls/tls_credentials.h +6 -0
  1155. data/src/core/lib/security/credentials/xds/xds_credentials.cc +51 -58
  1156. data/src/core/lib/security/credentials/xds/xds_credentials.h +37 -6
  1157. data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +11 -17
  1158. data/src/core/lib/security/security_connector/alts/alts_security_connector.h +3 -3
  1159. data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +13 -24
  1160. data/src/core/lib/security/security_connector/fake/fake_security_connector.h +0 -2
  1161. data/src/core/lib/security/security_connector/insecure/insecure_security_connector.cc +8 -18
  1162. data/src/core/lib/security/security_connector/insecure/insecure_security_connector.h +11 -16
  1163. data/src/core/lib/security/security_connector/load_system_roots_fallback.cc +1 -0
  1164. data/src/core/lib/security/security_connector/load_system_roots_linux.cc +4 -5
  1165. data/src/core/lib/security/security_connector/local/local_security_connector.cc +14 -19
  1166. data/src/core/lib/security/security_connector/security_connector.cc +8 -15
  1167. data/src/core/lib/security/security_connector/security_connector.h +26 -22
  1168. data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +14 -20
  1169. data/src/core/lib/security/security_connector/ssl/ssl_security_connector.h +1 -2
  1170. data/src/core/lib/security/security_connector/ssl_utils.cc +41 -36
  1171. data/src/core/lib/security/security_connector/ssl_utils.h +14 -18
  1172. data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +366 -211
  1173. data/src/core/lib/security/security_connector/tls/tls_security_connector.h +69 -48
  1174. data/src/core/lib/security/transport/auth_filters.h +39 -5
  1175. data/src/core/lib/security/transport/client_auth_filter.cc +98 -363
  1176. data/src/core/lib/security/transport/secure_endpoint.cc +202 -143
  1177. data/src/core/lib/security/transport/secure_endpoint.h +2 -1
  1178. data/src/core/lib/security/transport/security_handshaker.cc +95 -54
  1179. data/src/core/lib/security/transport/security_handshaker.h +2 -1
  1180. data/src/core/lib/security/transport/server_auth_filter.cc +41 -37
  1181. data/src/core/lib/security/transport/tsi_error.cc +3 -5
  1182. data/src/core/lib/security/util/json_util.cc +6 -8
  1183. data/src/core/lib/service_config/service_config.h +82 -0
  1184. data/src/core/lib/service_config/service_config_call_data.h +72 -0
  1185. data/src/core/{ext/filters/client_channel/service_config.cc → lib/service_config/service_config_impl.cc} +20 -17
  1186. data/src/core/{ext/filters/client_channel/service_config.h → lib/service_config/service_config_impl.h} +16 -18
  1187. data/src/core/{ext/filters/client_channel → lib/service_config}/service_config_parser.cc +31 -27
  1188. data/src/core/{ext/filters/client_channel → lib/service_config}/service_config_parser.h +39 -28
  1189. data/src/core/lib/slice/percent_encoding.cc +84 -97
  1190. data/src/core/lib/slice/percent_encoding.h +23 -28
  1191. data/src/core/lib/slice/slice.cc +80 -200
  1192. data/src/core/lib/slice/slice.h +384 -0
  1193. data/src/core/lib/{iomgr/is_epollexclusive_available.h → slice/slice_api.cc} +15 -12
  1194. data/src/core/lib/slice/slice_buffer.cc +10 -7
  1195. data/src/core/lib/slice/slice_internal.h +15 -277
  1196. data/src/core/lib/slice/slice_refcount.cc +35 -0
  1197. data/src/core/lib/slice/slice_refcount.h +46 -0
  1198. data/src/core/lib/slice/slice_refcount_base.h +61 -0
  1199. data/src/core/lib/slice/slice_split.cc +100 -0
  1200. data/src/core/lib/slice/slice_split.h +40 -0
  1201. data/src/core/lib/slice/slice_string_helpers.cc +0 -83
  1202. data/src/core/lib/slice/slice_string_helpers.h +0 -11
  1203. data/src/core/lib/surface/api_trace.cc +2 -1
  1204. data/src/core/lib/surface/api_trace.h +1 -0
  1205. data/src/core/lib/surface/builtins.cc +49 -0
  1206. data/src/core/lib/surface/builtins.h +26 -0
  1207. data/src/core/lib/surface/byte_buffer_reader.cc +1 -1
  1208. data/src/core/lib/surface/call.cc +1142 -1247
  1209. data/src/core/lib/surface/call.h +8 -28
  1210. data/src/core/lib/surface/call_details.cc +2 -2
  1211. data/src/core/lib/surface/call_log_batch.cc +2 -2
  1212. data/src/core/lib/surface/channel.cc +72 -103
  1213. data/src/core/lib/surface/channel.h +15 -23
  1214. data/src/core/lib/surface/channel_init.cc +22 -76
  1215. data/src/core/lib/surface/channel_init.h +44 -40
  1216. data/src/core/lib/surface/channel_ping.cc +1 -2
  1217. data/src/core/lib/surface/channel_stack_type.cc +2 -1
  1218. data/src/core/lib/surface/completion_queue.cc +70 -78
  1219. data/src/core/lib/surface/completion_queue_factory.cc +2 -1
  1220. data/src/core/lib/surface/completion_queue_factory.h +1 -0
  1221. data/src/core/lib/surface/event_string.cc +1 -0
  1222. data/src/core/lib/surface/init.cc +81 -57
  1223. data/src/core/lib/surface/init.h +0 -3
  1224. data/src/core/lib/surface/lame_client.cc +47 -32
  1225. data/src/core/lib/surface/lame_client.h +1 -1
  1226. data/src/core/lib/surface/metadata_array.cc +2 -2
  1227. data/src/core/lib/surface/server.cc +71 -118
  1228. data/src/core/lib/surface/server.h +40 -37
  1229. data/src/core/lib/surface/validate_metadata.cc +49 -18
  1230. data/src/core/lib/surface/version.cc +2 -2
  1231. data/src/core/lib/transport/bdp_estimator.cc +11 -12
  1232. data/src/core/lib/transport/bdp_estimator.h +2 -2
  1233. data/src/core/lib/transport/byte_stream.cc +6 -0
  1234. data/src/core/lib/transport/byte_stream.h +1 -0
  1235. data/src/core/lib/transport/connectivity_state.cc +8 -5
  1236. data/src/core/lib/transport/connectivity_state.h +2 -2
  1237. data/src/core/lib/transport/error_utils.cc +48 -20
  1238. data/src/core/lib/transport/error_utils.h +3 -2
  1239. data/src/core/lib/transport/metadata_batch.h +1352 -171
  1240. data/src/core/lib/transport/parsed_metadata.cc +37 -0
  1241. data/src/core/lib/transport/parsed_metadata.h +401 -0
  1242. data/src/core/lib/transport/pid_controller.cc +4 -4
  1243. data/src/core/lib/transport/status_conversion.cc +2 -2
  1244. data/src/core/lib/transport/status_conversion.h +1 -1
  1245. data/src/core/lib/transport/timeout_encoding.cc +204 -67
  1246. data/src/core/lib/transport/timeout_encoding.h +40 -10
  1247. data/src/core/lib/transport/transport.cc +11 -32
  1248. data/src/core/lib/transport/transport.h +103 -4
  1249. data/src/core/lib/transport/transport_impl.h +14 -0
  1250. data/src/core/lib/transport/transport_op_string.cc +7 -29
  1251. data/src/core/lib/uri/uri_parser.cc +237 -63
  1252. data/src/core/lib/uri/uri_parser.h +39 -23
  1253. data/src/core/plugin_registry/grpc_plugin_registry.cc +69 -102
  1254. data/src/core/plugin_registry/grpc_plugin_registry_extra.cc +85 -0
  1255. data/src/core/tsi/alts/crypt/aes_gcm.cc +6 -3
  1256. data/src/core/tsi/alts/crypt/gsec.h +2 -3
  1257. data/src/core/tsi/alts/frame_protector/alts_frame_protector.cc +13 -12
  1258. data/src/core/tsi/alts/frame_protector/frame_handler.cc +10 -11
  1259. data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +31 -27
  1260. data/src/core/tsi/alts/handshaker/alts_handshaker_client.h +2 -3
  1261. data/src/core/tsi/alts/handshaker/alts_shared_resource.cc +9 -1
  1262. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +33 -15
  1263. data/src/core/tsi/alts/handshaker/alts_tsi_utils.cc +2 -2
  1264. data/src/core/tsi/alts/handshaker/alts_tsi_utils.h +1 -1
  1265. data/src/core/tsi/alts/handshaker/transport_security_common_api.cc +2 -2
  1266. data/src/core/tsi/alts/handshaker/transport_security_common_api.h +2 -2
  1267. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.cc +2 -2
  1268. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc +1 -1
  1269. data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +2 -2
  1270. data/src/core/tsi/fake_transport_security.cc +15 -7
  1271. data/src/core/tsi/local_transport_security.cc +42 -87
  1272. data/src/core/tsi/local_transport_security.h +1 -4
  1273. data/src/core/tsi/ssl/key_logging/ssl_key_logging.cc +141 -0
  1274. data/src/core/tsi/ssl/key_logging/ssl_key_logging.h +81 -0
  1275. data/src/core/tsi/ssl/session_cache/ssl_session.h +2 -4
  1276. data/src/core/tsi/ssl/session_cache/ssl_session_cache.cc +20 -53
  1277. data/src/core/tsi/ssl/session_cache/ssl_session_cache.h +6 -7
  1278. data/src/core/tsi/ssl/session_cache/ssl_session_openssl.cc +2 -2
  1279. data/src/core/tsi/ssl_transport_security.cc +229 -62
  1280. data/src/core/tsi/ssl_transport_security.h +50 -9
  1281. data/src/core/tsi/transport_security.cc +15 -3
  1282. data/src/core/tsi/transport_security.h +16 -1
  1283. data/src/core/tsi/transport_security_grpc.h +1 -0
  1284. data/src/core/tsi/transport_security_interface.h +28 -0
  1285. data/src/ruby/ext/grpc/extconf.rb +21 -11
  1286. data/src/ruby/ext/grpc/rb_byte_buffer.c +2 -1
  1287. data/src/ruby/ext/grpc/rb_call.c +5 -5
  1288. data/src/ruby/ext/grpc/rb_call_credentials.c +5 -5
  1289. data/src/ruby/ext/grpc/rb_channel.c +15 -10
  1290. data/src/ruby/ext/grpc/rb_channel_args.c +2 -2
  1291. data/src/ruby/ext/grpc/rb_channel_credentials.c +4 -4
  1292. data/src/ruby/ext/grpc/rb_channel_credentials.h +1 -0
  1293. data/src/ruby/ext/grpc/rb_completion_queue.c +3 -2
  1294. data/src/ruby/ext/grpc/rb_compression_options.c +5 -4
  1295. data/src/ruby/ext/grpc/rb_event_thread.c +4 -4
  1296. data/src/ruby/ext/grpc/rb_grpc.c +5 -4
  1297. data/src/ruby/ext/grpc/rb_grpc.h +1 -0
  1298. data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +30 -34
  1299. data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +45 -51
  1300. data/src/ruby/ext/grpc/rb_server.c +13 -9
  1301. data/src/ruby/ext/grpc/rb_server_credentials.c +3 -3
  1302. data/src/ruby/ext/grpc/rb_server_credentials.h +1 -0
  1303. data/src/ruby/ext/grpc/rb_xds_channel_credentials.c +8 -5
  1304. data/src/ruby/ext/grpc/rb_xds_channel_credentials.h +3 -1
  1305. data/src/ruby/ext/grpc/rb_xds_server_credentials.c +6 -5
  1306. data/src/ruby/ext/grpc/rb_xds_server_credentials.h +3 -1
  1307. data/src/ruby/lib/grpc/generic/active_call.rb +7 -1
  1308. data/src/ruby/lib/grpc/grpc.rb +1 -1
  1309. data/src/ruby/lib/grpc/version.rb +1 -1
  1310. data/src/ruby/pb/generate_proto_ruby.sh +1 -0
  1311. data/src/ruby/pb/src/proto/grpc/testing/test_pb.rb +1 -0
  1312. data/src/ruby/pb/test/client.rb +769 -0
  1313. data/src/ruby/pb/test/server.rb +252 -0
  1314. data/src/ruby/pb/test/xds_client.rb +415 -0
  1315. data/src/ruby/spec/client_server_spec.rb +1 -1
  1316. data/third_party/abseil-cpp/absl/algorithm/container.h +101 -91
  1317. data/third_party/abseil-cpp/absl/base/attributes.h +64 -31
  1318. data/third_party/abseil-cpp/absl/base/config.h +67 -37
  1319. data/third_party/abseil-cpp/absl/base/dynamic_annotations.h +1 -26
  1320. data/third_party/abseil-cpp/absl/base/internal/fast_type_id.h +48 -0
  1321. data/third_party/abseil-cpp/absl/base/internal/spinlock.h +3 -1
  1322. data/third_party/abseil-cpp/absl/base/internal/spinlock_wait.h +2 -0
  1323. data/third_party/abseil-cpp/absl/base/internal/sysinfo.cc +69 -0
  1324. data/third_party/abseil-cpp/absl/base/internal/thread_identity.cc +4 -4
  1325. data/third_party/abseil-cpp/absl/base/internal/thread_identity.h +15 -10
  1326. data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc +16 -0
  1327. data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.h +4 -4
  1328. data/third_party/abseil-cpp/absl/base/options.h +1 -1
  1329. data/third_party/abseil-cpp/absl/container/fixed_array.h +0 -5
  1330. data/third_party/abseil-cpp/absl/container/inlined_vector.h +105 -97
  1331. data/third_party/abseil-cpp/absl/container/internal/hash_function_defaults.h +17 -15
  1332. data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.cc +18 -102
  1333. data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.h +37 -78
  1334. data/third_party/abseil-cpp/absl/container/internal/inlined_vector.h +388 -423
  1335. data/third_party/abseil-cpp/absl/container/internal/raw_hash_map.h +3 -2
  1336. data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.cc +14 -8
  1337. data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.h +251 -120
  1338. data/third_party/abseil-cpp/absl/debugging/internal/demangle.cc +11 -1
  1339. data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.cc +12 -11
  1340. data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.h +6 -2
  1341. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_config.h +12 -5
  1342. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_emscripten-inl.inc +110 -0
  1343. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_riscv-inl.inc +234 -0
  1344. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_x86-inl.inc +25 -7
  1345. data/third_party/abseil-cpp/absl/debugging/internal/symbolize.h +8 -2
  1346. data/third_party/abseil-cpp/absl/debugging/internal/vdso_support.cc +21 -3
  1347. data/third_party/abseil-cpp/absl/debugging/stacktrace.cc +2 -0
  1348. data/third_party/abseil-cpp/absl/debugging/symbolize.cc +2 -0
  1349. data/third_party/abseil-cpp/absl/debugging/symbolize_elf.inc +14 -0
  1350. data/third_party/abseil-cpp/absl/debugging/symbolize_emscripten.inc +72 -0
  1351. data/third_party/abseil-cpp/absl/functional/function_ref.h +4 -1
  1352. data/third_party/abseil-cpp/absl/hash/hash.h +22 -0
  1353. data/third_party/abseil-cpp/absl/hash/internal/hash.cc +15 -16
  1354. data/third_party/abseil-cpp/absl/hash/internal/hash.h +88 -37
  1355. data/third_party/abseil-cpp/absl/hash/internal/{wyhash.cc → low_level_hash.cc} +23 -11
  1356. data/third_party/abseil-cpp/absl/hash/internal/{wyhash.h → low_level_hash.h} +14 -12
  1357. data/third_party/abseil-cpp/absl/memory/memory.h +1 -1
  1358. data/third_party/abseil-cpp/absl/meta/type_traits.h +32 -2
  1359. data/third_party/abseil-cpp/absl/numeric/int128.cc +3 -10
  1360. data/third_party/abseil-cpp/absl/numeric/int128.h +146 -73
  1361. data/third_party/abseil-cpp/absl/numeric/int128_have_intrinsic.inc +19 -25
  1362. data/third_party/abseil-cpp/absl/numeric/int128_no_intrinsic.inc +73 -70
  1363. data/third_party/abseil-cpp/absl/{base → profiling}/internal/exponential_biased.cc +4 -4
  1364. data/third_party/abseil-cpp/absl/{base → profiling}/internal/exponential_biased.h +6 -6
  1365. data/third_party/abseil-cpp/absl/profiling/internal/sample_recorder.h +230 -0
  1366. data/third_party/abseil-cpp/absl/random/bernoulli_distribution.h +200 -0
  1367. data/third_party/abseil-cpp/absl/random/beta_distribution.h +427 -0
  1368. data/third_party/abseil-cpp/absl/random/discrete_distribution.cc +98 -0
  1369. data/third_party/abseil-cpp/absl/random/discrete_distribution.h +247 -0
  1370. data/third_party/abseil-cpp/absl/random/distributions.h +452 -0
  1371. data/third_party/abseil-cpp/absl/random/exponential_distribution.h +165 -0
  1372. data/third_party/abseil-cpp/absl/random/gaussian_distribution.cc +104 -0
  1373. data/third_party/abseil-cpp/absl/random/gaussian_distribution.h +275 -0
  1374. data/third_party/abseil-cpp/absl/random/internal/distribution_caller.h +92 -0
  1375. data/third_party/abseil-cpp/absl/random/internal/fast_uniform_bits.h +268 -0
  1376. data/third_party/abseil-cpp/absl/random/internal/fastmath.h +57 -0
  1377. data/third_party/abseil-cpp/absl/random/internal/generate_real.h +144 -0
  1378. data/third_party/abseil-cpp/absl/random/internal/iostream_state_saver.h +245 -0
  1379. data/third_party/abseil-cpp/absl/random/internal/nonsecure_base.h +150 -0
  1380. data/third_party/abseil-cpp/absl/random/internal/pcg_engine.h +308 -0
  1381. data/third_party/abseil-cpp/absl/random/internal/platform.h +171 -0
  1382. data/third_party/abseil-cpp/absl/random/internal/pool_urbg.cc +253 -0
  1383. data/third_party/abseil-cpp/absl/random/internal/pool_urbg.h +131 -0
  1384. data/third_party/abseil-cpp/absl/random/internal/randen.cc +91 -0
  1385. data/third_party/abseil-cpp/absl/random/internal/randen.h +102 -0
  1386. data/third_party/abseil-cpp/absl/random/internal/randen_detect.cc +221 -0
  1387. data/third_party/abseil-cpp/absl/random/internal/randen_detect.h +33 -0
  1388. data/third_party/abseil-cpp/absl/random/internal/randen_engine.h +239 -0
  1389. data/third_party/abseil-cpp/absl/random/internal/randen_hwaes.cc +526 -0
  1390. data/third_party/abseil-cpp/absl/random/internal/randen_hwaes.h +50 -0
  1391. data/third_party/abseil-cpp/absl/random/internal/randen_round_keys.cc +462 -0
  1392. data/third_party/abseil-cpp/absl/random/internal/randen_slow.cc +471 -0
  1393. data/third_party/abseil-cpp/absl/random/internal/randen_slow.h +40 -0
  1394. data/third_party/abseil-cpp/absl/random/internal/randen_traits.h +88 -0
  1395. data/third_party/abseil-cpp/absl/random/internal/salted_seed_seq.h +167 -0
  1396. data/third_party/abseil-cpp/absl/random/internal/seed_material.cc +267 -0
  1397. data/third_party/abseil-cpp/absl/random/internal/seed_material.h +104 -0
  1398. data/third_party/abseil-cpp/absl/random/internal/traits.h +101 -0
  1399. data/third_party/abseil-cpp/absl/random/internal/uniform_helper.h +244 -0
  1400. data/third_party/abseil-cpp/absl/random/internal/wide_multiply.h +111 -0
  1401. data/third_party/abseil-cpp/absl/random/log_uniform_int_distribution.h +257 -0
  1402. data/third_party/abseil-cpp/absl/random/poisson_distribution.h +258 -0
  1403. data/third_party/abseil-cpp/absl/random/random.h +189 -0
  1404. data/third_party/abseil-cpp/absl/random/seed_gen_exception.cc +46 -0
  1405. data/third_party/abseil-cpp/absl/random/seed_gen_exception.h +55 -0
  1406. data/third_party/abseil-cpp/absl/random/seed_sequences.cc +29 -0
  1407. data/third_party/abseil-cpp/absl/random/seed_sequences.h +110 -0
  1408. data/third_party/abseil-cpp/absl/random/uniform_int_distribution.h +275 -0
  1409. data/third_party/abseil-cpp/absl/random/uniform_real_distribution.h +202 -0
  1410. data/third_party/abseil-cpp/absl/random/zipf_distribution.h +271 -0
  1411. data/third_party/abseil-cpp/absl/status/internal/status_internal.h +5 -5
  1412. data/third_party/abseil-cpp/absl/status/status.cc +9 -17
  1413. data/third_party/abseil-cpp/absl/status/status.h +19 -15
  1414. data/third_party/abseil-cpp/absl/status/statusor.cc +34 -2
  1415. data/third_party/abseil-cpp/absl/status/statusor.h +31 -21
  1416. data/third_party/abseil-cpp/absl/strings/charconv.cc +3 -3
  1417. data/third_party/abseil-cpp/absl/strings/charconv.h +3 -2
  1418. data/third_party/abseil-cpp/absl/strings/cord.cc +453 -359
  1419. data/third_party/abseil-cpp/absl/strings/cord.h +197 -70
  1420. data/third_party/abseil-cpp/absl/strings/internal/charconv_parse.cc +1 -1
  1421. data/third_party/abseil-cpp/absl/strings/internal/cord_internal.cc +6 -0
  1422. data/third_party/abseil-cpp/absl/strings/internal/cord_internal.h +140 -63
  1423. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.cc +1128 -0
  1424. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.h +939 -0
  1425. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_navigator.cc +185 -0
  1426. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_navigator.h +265 -0
  1427. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_reader.cc +68 -0
  1428. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_reader.h +211 -0
  1429. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_consume.cc +129 -0
  1430. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_consume.h +50 -0
  1431. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_flat.h +7 -7
  1432. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_ring.cc +55 -181
  1433. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_ring.h +42 -24
  1434. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_ring_reader.h +4 -0
  1435. data/third_party/abseil-cpp/absl/strings/internal/cordz_functions.cc +96 -0
  1436. data/third_party/abseil-cpp/absl/strings/internal/cordz_functions.h +85 -0
  1437. data/third_party/abseil-cpp/absl/strings/internal/cordz_handle.cc +139 -0
  1438. data/third_party/abseil-cpp/absl/strings/internal/cordz_handle.h +131 -0
  1439. data/third_party/abseil-cpp/absl/strings/internal/cordz_info.cc +445 -0
  1440. data/third_party/abseil-cpp/absl/strings/internal/cordz_info.h +298 -0
  1441. data/third_party/abseil-cpp/absl/strings/internal/cordz_statistics.h +87 -0
  1442. data/third_party/abseil-cpp/absl/strings/internal/cordz_update_scope.h +71 -0
  1443. data/third_party/abseil-cpp/absl/strings/internal/cordz_update_tracker.h +121 -0
  1444. data/third_party/abseil-cpp/absl/strings/internal/resize_uninitialized.h +48 -2
  1445. data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.h +8 -0
  1446. data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.cc +3 -4
  1447. data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.h +1 -1
  1448. data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.cc +6 -6
  1449. data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.h +36 -18
  1450. data/third_party/abseil-cpp/absl/strings/internal/str_format/parser.cc +62 -73
  1451. data/third_party/abseil-cpp/absl/strings/internal/str_format/parser.h +24 -16
  1452. data/third_party/abseil-cpp/absl/strings/internal/str_split_internal.h +35 -35
  1453. data/third_party/abseil-cpp/absl/strings/numbers.cc +1 -1
  1454. data/third_party/abseil-cpp/absl/strings/numbers.h +34 -0
  1455. data/third_party/abseil-cpp/absl/strings/str_cat.cc +4 -4
  1456. data/third_party/abseil-cpp/absl/strings/str_format.h +1 -2
  1457. data/third_party/abseil-cpp/absl/strings/string_view.cc +16 -21
  1458. data/third_party/abseil-cpp/absl/strings/string_view.h +120 -39
  1459. data/third_party/abseil-cpp/absl/strings/substitute.cc +2 -1
  1460. data/third_party/abseil-cpp/absl/strings/substitute.h +99 -74
  1461. data/third_party/abseil-cpp/absl/synchronization/blocking_counter.cc +25 -15
  1462. data/third_party/abseil-cpp/absl/synchronization/blocking_counter.h +5 -3
  1463. data/third_party/abseil-cpp/absl/synchronization/internal/waiter.cc +1 -1
  1464. data/third_party/abseil-cpp/absl/synchronization/mutex.h +3 -3
  1465. data/third_party/abseil-cpp/absl/time/civil_time.cc +1 -3
  1466. data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/time_zone.h +93 -20
  1467. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.cc +1 -1
  1468. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.h +2 -1
  1469. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.cc +83 -21
  1470. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup.cc +49 -0
  1471. data/third_party/abseil-cpp/absl/time/internal/cctz/src/tzfile.h +1 -1
  1472. data/third_party/abseil-cpp/absl/time/internal/cctz/src/zone_info_source.cc +2 -3
  1473. data/third_party/abseil-cpp/absl/time/time.h +67 -36
  1474. data/third_party/abseil-cpp/absl/types/bad_optional_access.h +1 -1
  1475. data/third_party/abseil-cpp/absl/types/bad_variant_access.h +2 -2
  1476. data/third_party/abseil-cpp/absl/types/span.h +3 -3
  1477. data/third_party/address_sorting/address_sorting_posix.c +1 -0
  1478. data/third_party/boringssl-with-bazel/err_data.c +685 -673
  1479. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bitstr.c +67 -54
  1480. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bool.c +21 -22
  1481. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_d2i_fp.c +0 -2
  1482. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_gentm.c +6 -1
  1483. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_mbstr.c +16 -23
  1484. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_object.c +55 -37
  1485. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_print.c +19 -29
  1486. data/third_party/boringssl-with-bazel/src/crypto/{x509 → asn1}/a_strex.c +269 -272
  1487. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strnid.c +106 -153
  1488. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_time.c +4 -4
  1489. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_type.c +1 -1
  1490. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utctm.c +1 -40
  1491. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utf8.c +1 -1
  1492. data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_lib.c +59 -47
  1493. data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_par.c +1 -1
  1494. data/third_party/boringssl-with-bazel/src/crypto/asn1/asn_pack.c +24 -28
  1495. data/third_party/boringssl-with-bazel/src/crypto/{x509 → asn1}/charmap.h +0 -0
  1496. data/third_party/boringssl-with-bazel/src/crypto/asn1/f_int.c +5 -0
  1497. data/third_party/boringssl-with-bazel/src/crypto/asn1/{asn1_locl.h → internal.h} +86 -1
  1498. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_dec.c +57 -281
  1499. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_enc.c +291 -199
  1500. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_fre.c +9 -9
  1501. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_new.c +10 -14
  1502. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_typ.c +8 -6
  1503. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_utl.c +2 -1
  1504. data/third_party/boringssl-with-bazel/src/crypto/asn1/time_support.c +1 -1
  1505. data/third_party/boringssl-with-bazel/src/crypto/base64/base64.c +24 -8
  1506. data/third_party/boringssl-with-bazel/src/crypto/bio/bio_mem.c +1 -7
  1507. data/third_party/boringssl-with-bazel/src/crypto/bio/connect.c +1 -5
  1508. data/third_party/boringssl-with-bazel/src/crypto/bio/fd.c +0 -4
  1509. data/third_party/boringssl-with-bazel/src/crypto/bio/file.c +1 -7
  1510. data/third_party/boringssl-with-bazel/src/crypto/bio/pair.c +1 -6
  1511. data/third_party/boringssl-with-bazel/src/crypto/bio/socket.c +3 -17
  1512. data/third_party/boringssl-with-bazel/src/crypto/blake2/blake2.c +4 -6
  1513. data/third_party/boringssl-with-bazel/src/crypto/bytestring/ber.c +3 -1
  1514. data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbb.c +9 -0
  1515. data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.c +8 -0
  1516. data/third_party/boringssl-with-bazel/src/crypto/chacha/chacha.c +38 -47
  1517. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/cipher_extra.c +45 -65
  1518. data/third_party/boringssl-with-bazel/src/crypto/conf/conf.c +14 -3
  1519. data/third_party/boringssl-with-bazel/src/crypto/digest_extra/digest_extra.c +6 -3
  1520. data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.c +21 -0
  1521. data/third_party/boringssl-with-bazel/src/crypto/evp/evp_asn1.c +2 -2
  1522. data/third_party/boringssl-with-bazel/src/crypto/evp/scrypt.c +32 -34
  1523. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div.c +26 -9
  1524. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd_extra.c +3 -2
  1525. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +5 -2
  1526. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/sqrt.c +5 -9
  1527. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/cipher.c +12 -0
  1528. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aes.c +10 -0
  1529. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/des/des.c +10 -11
  1530. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/des/internal.h +1 -3
  1531. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digest.c +2 -0
  1532. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.c +1 -2
  1533. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md4/md4.c +4 -7
  1534. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md5/md5.c +4 -7
  1535. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/gcm_nohw.c +1 -1
  1536. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/internal.h +5 -9
  1537. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.c +2 -2
  1538. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/urandom.c +4 -6
  1539. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.c +24 -9
  1540. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c +4 -2
  1541. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c +7 -7
  1542. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1.c +35 -35
  1543. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha256.c +11 -10
  1544. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha512.c +10 -37
  1545. data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c +36 -2
  1546. data/third_party/boringssl-with-bazel/src/crypto/hrss/hrss.c +219 -121
  1547. data/third_party/boringssl-with-bazel/src/crypto/hrss/internal.h +9 -2
  1548. data/third_party/boringssl-with-bazel/src/crypto/internal.h +62 -2
  1549. data/third_party/boringssl-with-bazel/src/crypto/lhash/internal.h +253 -0
  1550. data/third_party/boringssl-with-bazel/src/crypto/lhash/lhash.c +28 -23
  1551. data/third_party/boringssl-with-bazel/src/crypto/mem.c +32 -9
  1552. data/third_party/boringssl-with-bazel/src/crypto/obj/obj.c +7 -3
  1553. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_all.c +0 -9
  1554. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_info.c +0 -2
  1555. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_lib.c +0 -8
  1556. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pk8.c +0 -2
  1557. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pkey.c +0 -4
  1558. data/third_party/boringssl-with-bazel/src/crypto/pkcs7/internal.h +16 -7
  1559. data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7.c +38 -4
  1560. data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7_x509.c +151 -12
  1561. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h +0 -1
  1562. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8.c +1 -1
  1563. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.c +2 -2
  1564. data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305.c +1 -1
  1565. data/third_party/boringssl-with-bazel/src/crypto/pool/internal.h +5 -1
  1566. data/third_party/boringssl-with-bazel/src/crypto/pool/pool.c +59 -22
  1567. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/deterministic.c +4 -0
  1568. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/fuchsia.c +4 -0
  1569. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/windows.c +4 -0
  1570. data/third_party/boringssl-with-bazel/src/crypto/siphash/siphash.c +6 -6
  1571. data/third_party/boringssl-with-bazel/src/crypto/x509/a_verify.c +15 -11
  1572. data/third_party/boringssl-with-bazel/src/crypto/x509/algorithm.c +1 -1
  1573. data/third_party/boringssl-with-bazel/src/crypto/x509/asn1_gen.c +2 -18
  1574. data/third_party/boringssl-with-bazel/src/crypto/x509/by_dir.c +1 -0
  1575. data/third_party/boringssl-with-bazel/src/crypto/x509/by_file.c +2 -0
  1576. data/third_party/boringssl-with-bazel/src/crypto/x509/internal.h +233 -4
  1577. data/third_party/boringssl-with-bazel/src/crypto/x509/name_print.c +246 -0
  1578. data/third_party/boringssl-with-bazel/src/crypto/x509/rsa_pss.c +15 -4
  1579. data/third_party/boringssl-with-bazel/src/crypto/x509/t_crl.c +10 -5
  1580. data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509.c +0 -179
  1581. data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509a.c +4 -2
  1582. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_att.c +6 -23
  1583. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_ext.c +2 -2
  1584. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.c +1 -5
  1585. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_obj.c +1 -0
  1586. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_v3.c +25 -22
  1587. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +11 -54
  1588. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vpm.c +1 -1
  1589. data/third_party/boringssl-with-bazel/src/crypto/x509/x509cset.c +1 -0
  1590. data/third_party/boringssl-with-bazel/src/crypto/x509/x509name.c +2 -4
  1591. data/third_party/boringssl-with-bazel/src/crypto/x509/x_algor.c +1 -3
  1592. data/third_party/boringssl-with-bazel/src/crypto/x509/x_all.c +0 -16
  1593. data/third_party/boringssl-with-bazel/src/crypto/x509/x_crl.c +9 -11
  1594. data/third_party/boringssl-with-bazel/src/crypto/x509/x_exten.c +2 -0
  1595. data/third_party/boringssl-with-bazel/src/crypto/x509/x_name.c +23 -21
  1596. data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509.c +12 -11
  1597. data/third_party/boringssl-with-bazel/src/crypto/x509v3/internal.h +232 -11
  1598. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_cache.c +2 -1
  1599. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_data.c +2 -2
  1600. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_lib.c +1 -1
  1601. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_map.c +2 -1
  1602. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_node.c +1 -1
  1603. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_tree.c +5 -4
  1604. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_akey.c +24 -5
  1605. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_alt.c +18 -8
  1606. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_bitst.c +3 -0
  1607. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_conf.c +1 -0
  1608. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_cpols.c +6 -7
  1609. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_crld.c +4 -2
  1610. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_enum.c +5 -0
  1611. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_lib.c +23 -4
  1612. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_ncons.c +112 -55
  1613. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pci.c +2 -1
  1614. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_prn.c +14 -13
  1615. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_purp.c +1 -1
  1616. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_utl.c +76 -31
  1617. data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +1504 -561
  1618. data/third_party/boringssl-with-bazel/src/include/openssl/asn1t.h +5 -12
  1619. data/third_party/boringssl-with-bazel/src/include/openssl/base.h +10 -6
  1620. data/third_party/boringssl-with-bazel/src/include/openssl/base64.h +8 -0
  1621. data/third_party/boringssl-with-bazel/src/include/openssl/bio.h +3 -1
  1622. data/third_party/boringssl-with-bazel/src/include/openssl/bn.h +3 -3
  1623. data/third_party/boringssl-with-bazel/src/include/openssl/bytestring.h +9 -0
  1624. data/third_party/boringssl-with-bazel/src/include/openssl/cipher.h +21 -3
  1625. data/third_party/boringssl-with-bazel/src/include/openssl/conf.h +8 -5
  1626. data/third_party/boringssl-with-bazel/src/include/openssl/dh.h +4 -12
  1627. data/third_party/boringssl-with-bazel/src/include/openssl/digest.h +3 -0
  1628. data/third_party/boringssl-with-bazel/src/include/openssl/dsa.h +27 -41
  1629. data/third_party/boringssl-with-bazel/src/include/openssl/ec_key.h +12 -27
  1630. data/third_party/boringssl-with-bazel/src/include/openssl/ecdsa.h +8 -10
  1631. data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +35 -55
  1632. data/third_party/boringssl-with-bazel/src/include/openssl/hkdf.h +4 -0
  1633. data/third_party/boringssl-with-bazel/src/include/openssl/hpke.h +26 -1
  1634. data/third_party/boringssl-with-bazel/src/include/openssl/hrss.h +14 -12
  1635. data/third_party/boringssl-with-bazel/src/include/openssl/lhash.h +4 -205
  1636. data/third_party/boringssl-with-bazel/src/include/openssl/mem.h +12 -3
  1637. data/third_party/boringssl-with-bazel/src/include/openssl/obj.h +5 -4
  1638. data/third_party/boringssl-with-bazel/src/include/openssl/pem.h +0 -20
  1639. data/third_party/boringssl-with-bazel/src/include/openssl/pkcs7.h +24 -18
  1640. data/third_party/boringssl-with-bazel/src/include/openssl/pkcs8.h +6 -1
  1641. data/third_party/boringssl-with-bazel/src/include/openssl/pool.h +7 -1
  1642. data/third_party/boringssl-with-bazel/src/include/openssl/rsa.h +29 -28
  1643. data/third_party/boringssl-with-bazel/src/include/openssl/span.h +37 -15
  1644. data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +110 -26
  1645. data/third_party/boringssl-with-bazel/src/include/openssl/tls1.h +31 -32
  1646. data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +725 -189
  1647. data/third_party/boringssl-with-bazel/src/include/openssl/x509_vfy.h +16 -695
  1648. data/third_party/boringssl-with-bazel/src/include/openssl/x509v3.h +52 -16
  1649. data/third_party/boringssl-with-bazel/src/ssl/d1_both.cc +9 -16
  1650. data/third_party/boringssl-with-bazel/src/ssl/encrypted_client_hello.cc +310 -359
  1651. data/third_party/boringssl-with-bazel/src/ssl/{t1_lib.cc → extensions.cc} +110 -159
  1652. data/third_party/boringssl-with-bazel/src/ssl/handshake.cc +24 -13
  1653. data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +145 -142
  1654. data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +106 -99
  1655. data/third_party/boringssl-with-bazel/src/ssl/internal.h +90 -51
  1656. data/third_party/boringssl-with-bazel/src/ssl/s3_lib.cc +1 -2
  1657. data/third_party/boringssl-with-bazel/src/ssl/ssl_cipher.cc +2 -2
  1658. data/third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc +11 -5
  1659. data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +6 -51
  1660. data/third_party/boringssl-with-bazel/src/ssl/ssl_session.cc +121 -65
  1661. data/third_party/boringssl-with-bazel/src/ssl/ssl_transcript.cc +6 -12
  1662. data/third_party/boringssl-with-bazel/src/ssl/ssl_versions.cc +4 -0
  1663. data/third_party/boringssl-with-bazel/src/ssl/ssl_x509.cc +28 -23
  1664. data/third_party/boringssl-with-bazel/src/ssl/tls13_both.cc +14 -27
  1665. data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +210 -212
  1666. data/third_party/boringssl-with-bazel/src/ssl/tls13_enc.cc +30 -41
  1667. data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +48 -34
  1668. data/third_party/cares/cares/{ares.h → include/ares.h} +73 -1
  1669. data/third_party/cares/cares/{ares_dns.h → include/ares_dns.h} +9 -0
  1670. data/third_party/cares/cares/{ares_rules.h → include/ares_rules.h} +0 -0
  1671. data/third_party/cares/cares/{ares_version.h → include/ares_version.h} +3 -3
  1672. data/third_party/cares/cares/{ares__close_sockets.c → src/lib/ares__close_sockets.c} +2 -2
  1673. data/third_party/cares/cares/{ares__get_hostent.c → src/lib/ares__get_hostent.c} +1 -2
  1674. data/third_party/cares/cares/src/lib/ares__parse_into_addrinfo.c +260 -0
  1675. data/third_party/cares/cares/{ares__read_line.c → src/lib/ares__read_line.c} +0 -0
  1676. data/third_party/cares/cares/src/lib/ares__readaddrinfo.c +264 -0
  1677. data/third_party/cares/cares/src/lib/ares__sortaddrinfo.c +499 -0
  1678. data/third_party/cares/cares/{ares__timeval.c → src/lib/ares__timeval.c} +0 -0
  1679. data/third_party/cares/cares/src/lib/ares_android.c +444 -0
  1680. data/third_party/cares/cares/src/lib/ares_android.h +27 -0
  1681. data/third_party/cares/cares/{ares_cancel.c → src/lib/ares_cancel.c} +0 -0
  1682. data/third_party/cares/cares/{ares_create_query.c → src/lib/ares_create_query.c} +8 -17
  1683. data/third_party/cares/cares/{ares_data.c → src/lib/ares_data.c} +18 -0
  1684. data/third_party/cares/cares/{ares_data.h → src/lib/ares_data.h} +2 -0
  1685. data/third_party/cares/cares/{ares_destroy.c → src/lib/ares_destroy.c} +0 -0
  1686. data/third_party/cares/cares/{ares_expand_name.c → src/lib/ares_expand_name.c} +114 -23
  1687. data/third_party/cares/cares/{ares_expand_string.c → src/lib/ares_expand_string.c} +2 -5
  1688. data/third_party/cares/cares/{ares_fds.c → src/lib/ares_fds.c} +0 -0
  1689. data/third_party/cares/cares/{ares_free_hostent.c → src/lib/ares_free_hostent.c} +6 -4
  1690. data/third_party/cares/cares/{ares_free_string.c → src/lib/ares_free_string.c} +0 -0
  1691. data/third_party/cares/cares/src/lib/ares_freeaddrinfo.c +59 -0
  1692. data/third_party/cares/cares/src/lib/ares_getaddrinfo.c +772 -0
  1693. data/third_party/cares/cares/{ares_getenv.c → src/lib/ares_getenv.c} +0 -2
  1694. data/third_party/cares/cares/{ares_getenv.h → src/lib/ares_getenv.h} +0 -0
  1695. data/third_party/cares/cares/{ares_gethostbyaddr.c → src/lib/ares_gethostbyaddr.c} +2 -9
  1696. data/third_party/cares/cares/{ares_gethostbyname.c → src/lib/ares_gethostbyname.c} +25 -20
  1697. data/third_party/cares/cares/{ares_getnameinfo.c → src/lib/ares_getnameinfo.c} +4 -10
  1698. data/third_party/cares/cares/{ares_getsock.c → src/lib/ares_getsock.c} +0 -0
  1699. data/third_party/cares/cares/{ares_inet_net_pton.h → src/lib/ares_inet_net_pton.h} +0 -0
  1700. data/third_party/cares/cares/{ares_init.c → src/lib/ares_init.c} +79 -40
  1701. data/third_party/cares/cares/{ares_iphlpapi.h → src/lib/ares_iphlpapi.h} +0 -0
  1702. data/third_party/cares/cares/{ares_ipv6.h → src/lib/ares_ipv6.h} +7 -0
  1703. data/third_party/cares/cares/{ares_library_init.c → src/lib/ares_library_init.c} +7 -2
  1704. data/third_party/cares/cares/{ares_library_init.h → src/lib/ares_library_init.h} +1 -1
  1705. data/third_party/cares/cares/{ares_llist.c → src/lib/ares_llist.c} +0 -0
  1706. data/third_party/cares/cares/{ares_llist.h → src/lib/ares_llist.h} +0 -0
  1707. data/third_party/cares/cares/{ares_mkquery.c → src/lib/ares_mkquery.c} +0 -0
  1708. data/third_party/cares/cares/src/lib/ares_nameser.h +482 -0
  1709. data/third_party/cares/cares/{ares_nowarn.c → src/lib/ares_nowarn.c} +0 -0
  1710. data/third_party/cares/cares/{ares_nowarn.h → src/lib/ares_nowarn.h} +0 -0
  1711. data/third_party/cares/cares/{ares_options.c → src/lib/ares_options.c} +0 -0
  1712. data/third_party/cares/cares/src/lib/ares_parse_a_reply.c +209 -0
  1713. data/third_party/cares/cares/src/lib/ares_parse_aaaa_reply.c +212 -0
  1714. data/third_party/cares/cares/src/lib/ares_parse_caa_reply.c +199 -0
  1715. data/third_party/cares/cares/{ares_parse_mx_reply.c → src/lib/ares_parse_mx_reply.c} +2 -8
  1716. data/third_party/cares/cares/{ares_parse_naptr_reply.c → src/lib/ares_parse_naptr_reply.c} +2 -13
  1717. data/third_party/cares/cares/{ares_parse_ns_reply.c → src/lib/ares_parse_ns_reply.c} +5 -11
  1718. data/third_party/cares/cares/{ares_parse_ptr_reply.c → src/lib/ares_parse_ptr_reply.c} +53 -46
  1719. data/third_party/cares/cares/src/lib/ares_parse_soa_reply.c +179 -0
  1720. data/third_party/cares/cares/{ares_parse_srv_reply.c → src/lib/ares_parse_srv_reply.c} +2 -13
  1721. data/third_party/cares/cares/{ares_parse_txt_reply.c → src/lib/ares_parse_txt_reply.c} +3 -9
  1722. data/third_party/cares/cares/{ares_platform.c → src/lib/ares_platform.c} +0 -0
  1723. data/third_party/cares/cares/{ares_platform.h → src/lib/ares_platform.h} +0 -0
  1724. data/third_party/cares/cares/{ares_private.h → src/lib/ares_private.h} +52 -11
  1725. data/third_party/cares/cares/{ares_process.c → src/lib/ares_process.c} +127 -52
  1726. data/third_party/cares/cares/{ares_query.c → src/lib/ares_query.c} +3 -9
  1727. data/third_party/cares/cares/{ares_search.c → src/lib/ares_search.c} +5 -7
  1728. data/third_party/cares/cares/{ares_send.c → src/lib/ares_send.c} +2 -8
  1729. data/third_party/cares/cares/{ares_setup.h → src/lib/ares_setup.h} +4 -1
  1730. data/third_party/cares/cares/{ares_strcasecmp.c → src/lib/ares_strcasecmp.c} +0 -0
  1731. data/third_party/cares/cares/{ares_strcasecmp.h → src/lib/ares_strcasecmp.h} +0 -0
  1732. data/third_party/cares/cares/{ares_strdup.c → src/lib/ares_strdup.c} +0 -0
  1733. data/third_party/cares/cares/{ares_strdup.h → src/lib/ares_strdup.h} +0 -0
  1734. data/third_party/cares/cares/{ares_strerror.c → src/lib/ares_strerror.c} +0 -0
  1735. data/third_party/cares/cares/{ares_strsplit.c → src/lib/ares_strsplit.c} +4 -0
  1736. data/third_party/cares/cares/{ares_strsplit.h → src/lib/ares_strsplit.h} +0 -0
  1737. data/third_party/cares/cares/{ares_timeout.c → src/lib/ares_timeout.c} +0 -0
  1738. data/third_party/cares/cares/{ares_version.c → src/lib/ares_version.c} +0 -0
  1739. data/third_party/cares/cares/{ares_writev.c → src/lib/ares_writev.c} +0 -0
  1740. data/third_party/cares/cares/src/lib/ares_writev.h +36 -0
  1741. data/third_party/cares/cares/{bitncmp.c → src/lib/bitncmp.c} +0 -0
  1742. data/third_party/cares/cares/{bitncmp.h → src/lib/bitncmp.h} +0 -0
  1743. data/third_party/cares/cares/src/lib/config-dos.h +115 -0
  1744. data/third_party/cares/cares/{config-win32.h → src/lib/config-win32.h} +0 -0
  1745. data/third_party/cares/cares/{inet_net_pton.c → src/lib/inet_net_pton.c} +2 -8
  1746. data/third_party/cares/cares/{inet_ntop.c → src/lib/inet_ntop.c} +2 -8
  1747. data/third_party/cares/cares/{setup_once.h → src/lib/setup_once.h} +0 -0
  1748. data/third_party/cares/cares/{windows_port.c → src/lib/windows_port.c} +0 -0
  1749. data/third_party/re2/re2/compile.cc +91 -109
  1750. data/third_party/re2/re2/dfa.cc +27 -39
  1751. data/third_party/re2/re2/filtered_re2.cc +18 -2
  1752. data/third_party/re2/re2/filtered_re2.h +10 -5
  1753. data/third_party/re2/re2/nfa.cc +1 -1
  1754. data/third_party/re2/re2/parse.cc +42 -23
  1755. data/third_party/re2/re2/perl_groups.cc +34 -34
  1756. data/third_party/re2/re2/prefilter.cc +3 -2
  1757. data/third_party/re2/re2/prog.cc +182 -4
  1758. data/third_party/re2/re2/prog.h +28 -9
  1759. data/third_party/re2/re2/re2.cc +87 -118
  1760. data/third_party/re2/re2/re2.h +156 -141
  1761. data/third_party/re2/re2/regexp.cc +12 -5
  1762. data/third_party/re2/re2/regexp.h +8 -2
  1763. data/third_party/re2/re2/set.cc +31 -9
  1764. data/third_party/re2/re2/set.h +9 -4
  1765. data/third_party/re2/re2/simplify.cc +11 -3
  1766. data/third_party/re2/re2/tostring.cc +1 -1
  1767. data/third_party/re2/re2/walker-inl.h +1 -1
  1768. data/third_party/re2/util/mutex.h +2 -2
  1769. data/third_party/re2/util/pcre.h +3 -3
  1770. data/third_party/upb/third_party/utf8_range/naive.c +92 -0
  1771. data/third_party/upb/third_party/utf8_range/range2-neon.c +157 -0
  1772. data/third_party/upb/third_party/utf8_range/range2-sse.c +170 -0
  1773. data/third_party/upb/third_party/utf8_range/utf8_range.h +9 -0
  1774. data/third_party/upb/upb/decode.c +774 -351
  1775. data/third_party/upb/upb/decode.h +66 -12
  1776. data/third_party/upb/upb/decode_fast.c +596 -581
  1777. data/third_party/upb/upb/decode_fast.h +40 -13
  1778. data/third_party/upb/upb/decode_internal.h +211 -0
  1779. data/third_party/upb/upb/def.c +2151 -1068
  1780. data/third_party/upb/upb/def.h +352 -258
  1781. data/third_party/upb/upb/def.hpp +160 -161
  1782. data/third_party/upb/upb/encode.c +291 -165
  1783. data/third_party/upb/upb/encode.h +38 -13
  1784. data/third_party/upb/upb/json_encode.c +776 -0
  1785. data/third_party/upb/upb/json_encode.h +62 -0
  1786. data/third_party/upb/upb/msg.c +274 -102
  1787. data/third_party/upb/upb/msg.h +83 -582
  1788. data/third_party/upb/upb/msg_internal.h +831 -0
  1789. data/third_party/upb/upb/port_def.inc +93 -24
  1790. data/third_party/upb/upb/port_undef.inc +39 -1
  1791. data/third_party/upb/upb/reflection.c +312 -240
  1792. data/third_party/upb/upb/reflection.h +119 -67
  1793. data/third_party/upb/upb/reflection.hpp +37 -0
  1794. data/third_party/upb/upb/table.c +406 -197
  1795. data/third_party/upb/upb/table_internal.h +385 -0
  1796. data/third_party/upb/upb/text_encode.c +141 -90
  1797. data/third_party/upb/upb/text_encode.h +31 -5
  1798. data/third_party/upb/upb/upb.c +164 -66
  1799. data/third_party/upb/upb/upb.h +182 -146
  1800. data/third_party/upb/upb/upb.hpp +50 -23
  1801. data/third_party/upb/upb/upb_internal.h +68 -0
  1802. data/third_party/xxhash/xxhash.h +607 -352
  1803. data/third_party/zlib/crc32.c +966 -292
  1804. data/third_party/zlib/crc32.h +9441 -436
  1805. data/third_party/zlib/deflate.c +78 -30
  1806. data/third_party/zlib/deflate.h +12 -15
  1807. data/third_party/zlib/gzguts.h +3 -2
  1808. data/third_party/zlib/gzlib.c +5 -3
  1809. data/third_party/zlib/gzread.c +5 -7
  1810. data/third_party/zlib/gzwrite.c +25 -13
  1811. data/third_party/zlib/infback.c +2 -1
  1812. data/third_party/zlib/inffast.c +14 -14
  1813. data/third_party/zlib/inflate.c +39 -8
  1814. data/third_party/zlib/inflate.h +3 -2
  1815. data/third_party/zlib/inftrees.c +3 -3
  1816. data/third_party/zlib/trees.c +27 -48
  1817. data/third_party/zlib/zlib.h +123 -100
  1818. data/third_party/zlib/zutil.c +2 -2
  1819. data/third_party/zlib/zutil.h +12 -9
  1820. metadata +559 -260
  1821. data/include/grpc/event_engine/slice_allocator.h +0 -66
  1822. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.h +0 -44
  1823. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.cc +0 -84
  1824. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_libuv.cc +0 -179
  1825. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_libuv.cc +0 -38
  1826. data/src/core/ext/filters/client_channel/resolver_registry.cc +0 -197
  1827. data/src/core/ext/filters/client_channel/resolver_registry.h +0 -89
  1828. data/src/core/ext/filters/client_channel/service_config_call_data.h +0 -126
  1829. data/src/core/ext/filters/client_idle/client_idle_filter.cc +0 -441
  1830. data/src/core/ext/filters/max_age/max_age_filter.cc +0 -562
  1831. data/src/core/ext/filters/workarounds/workaround_cronet_compression_filter.cc +0 -211
  1832. data/src/core/ext/filters/workarounds/workaround_utils.cc +0 -53
  1833. data/src/core/ext/filters/workarounds/workaround_utils.h +0 -39
  1834. data/src/core/ext/transport/chttp2/client/authority.cc +0 -42
  1835. data/src/core/ext/transport/chttp2/client/authority.h +0 -36
  1836. data/src/core/ext/transport/chttp2/client/insecure/channel_create.cc +0 -125
  1837. data/src/core/ext/transport/chttp2/client/insecure/channel_create_posix.cc +0 -91
  1838. data/src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc +0 -213
  1839. data/src/core/ext/transport/chttp2/server/insecure/server_chttp2.cc +0 -54
  1840. data/src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc +0 -77
  1841. data/src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.cc +0 -129
  1842. data/src/core/ext/transport/chttp2/transport/chttp2_plugin.cc +0 -37
  1843. data/src/core/ext/transport/chttp2/transport/chttp2_slice_allocator.cc +0 -66
  1844. data/src/core/ext/transport/chttp2/transport/chttp2_slice_allocator.h +0 -74
  1845. data/src/core/ext/transport/chttp2/transport/hpack_table.cc +0 -243
  1846. data/src/core/ext/transport/chttp2/transport/hpack_table.h +0 -148
  1847. data/src/core/ext/transport/chttp2/transport/incoming_metadata.cc +0 -66
  1848. data/src/core/ext/transport/chttp2/transport/incoming_metadata.h +0 -58
  1849. data/src/core/ext/upb-generated/envoy/service/cluster/v3/cds.upb.c +0 -27
  1850. data/src/core/ext/upb-generated/envoy/service/cluster/v3/cds.upb.h +0 -56
  1851. data/src/core/ext/upb-generated/envoy/service/endpoint/v3/eds.upb.c +0 -27
  1852. data/src/core/ext/upb-generated/envoy/service/endpoint/v3/eds.upb.h +0 -56
  1853. data/src/core/ext/upb-generated/envoy/service/listener/v3/lds.upb.c +0 -27
  1854. data/src/core/ext/upb-generated/envoy/service/listener/v3/lds.upb.h +0 -56
  1855. data/src/core/ext/upb-generated/envoy/service/route/v3/rds.upb.c +0 -27
  1856. data/src/core/ext/upb-generated/envoy/service/route/v3/rds.upb.h +0 -56
  1857. data/src/core/ext/upb-generated/envoy/service/route/v3/srds.upb.c +0 -27
  1858. data/src/core/ext/upb-generated/envoy/service/route/v3/srds.upb.h +0 -56
  1859. data/src/core/ext/upb-generated/udpa/data/orca/v1/orca_load_report.upb.c +0 -58
  1860. data/src/core/ext/upb-generated/udpa/data/orca/v1/orca_load_report.upb.h +0 -124
  1861. data/src/core/ext/upb-generated/udpa/type/v1/typed_struct.upb.c +0 -33
  1862. data/src/core/ext/upb-generated/udpa/type/v1/typed_struct.upb.h +0 -77
  1863. data/src/core/ext/upbdefs-generated/envoy/service/cluster/v3/cds.upbdefs.c +0 -72
  1864. data/src/core/ext/upbdefs-generated/envoy/service/cluster/v3/cds.upbdefs.h +0 -35
  1865. data/src/core/ext/upbdefs-generated/envoy/service/endpoint/v3/eds.upbdefs.c +0 -73
  1866. data/src/core/ext/upbdefs-generated/envoy/service/endpoint/v3/eds.upbdefs.h +0 -35
  1867. data/src/core/ext/upbdefs-generated/envoy/service/listener/v3/lds.upbdefs.c +0 -72
  1868. data/src/core/ext/upbdefs-generated/envoy/service/listener/v3/lds.upbdefs.h +0 -35
  1869. data/src/core/ext/upbdefs-generated/envoy/service/route/v3/rds.upbdefs.c +0 -80
  1870. data/src/core/ext/upbdefs-generated/envoy/service/route/v3/rds.upbdefs.h +0 -35
  1871. data/src/core/ext/upbdefs-generated/envoy/service/route/v3/srds.upbdefs.c +0 -74
  1872. data/src/core/ext/upbdefs-generated/envoy/service/route/v3/srds.upbdefs.h +0 -35
  1873. data/src/core/ext/upbdefs-generated/udpa/type/v1/typed_struct.upbdefs.c +0 -44
  1874. data/src/core/ext/upbdefs-generated/udpa/type/v1/typed_struct.upbdefs.h +0 -35
  1875. data/src/core/lib/avl/avl.cc +0 -306
  1876. data/src/core/lib/compression/algorithm_metadata.h +0 -61
  1877. data/src/core/lib/compression/compression_args.cc +0 -135
  1878. data/src/core/lib/compression/compression_args.h +0 -56
  1879. data/src/core/lib/compression/stream_compression.cc +0 -80
  1880. data/src/core/lib/compression/stream_compression.h +0 -116
  1881. data/src/core/lib/compression/stream_compression_gzip.cc +0 -230
  1882. data/src/core/lib/compression/stream_compression_gzip.h +0 -28
  1883. data/src/core/lib/compression/stream_compression_identity.cc +0 -90
  1884. data/src/core/lib/compression/stream_compression_identity.h +0 -29
  1885. data/src/core/lib/gpr/tls_gcc.h +0 -52
  1886. data/src/core/lib/gpr/tls_msvc.h +0 -54
  1887. data/src/core/lib/gpr/tls_pthread.cc +0 -30
  1888. data/src/core/lib/gpr/tls_pthread.h +0 -56
  1889. data/src/core/lib/gpr/tls_stdcpp.h +0 -48
  1890. data/src/core/lib/gprpp/atomic.h +0 -104
  1891. data/src/core/lib/iomgr/endpoint_pair_uv.cc +0 -40
  1892. data/src/core/lib/iomgr/ev_epollex_linux.cc +0 -1661
  1893. data/src/core/lib/iomgr/ev_epollex_linux.h +0 -30
  1894. data/src/core/lib/iomgr/iomgr_custom.cc +0 -79
  1895. data/src/core/lib/iomgr/iomgr_custom.h +0 -49
  1896. data/src/core/lib/iomgr/iomgr_uv.cc +0 -43
  1897. data/src/core/lib/iomgr/is_epollexclusive_available.cc +0 -119
  1898. data/src/core/lib/iomgr/pollset_custom.cc +0 -106
  1899. data/src/core/lib/iomgr/pollset_custom.h +0 -37
  1900. data/src/core/lib/iomgr/pollset_set_custom.cc +0 -48
  1901. data/src/core/lib/iomgr/pollset_set_custom.h +0 -26
  1902. data/src/core/lib/iomgr/pollset_uv.cc +0 -95
  1903. data/src/core/lib/iomgr/pollset_uv.h +0 -36
  1904. data/src/core/lib/iomgr/resolve_address_custom.cc +0 -169
  1905. data/src/core/lib/iomgr/resolve_address_custom.h +0 -45
  1906. data/src/core/lib/iomgr/resource_quota.cc +0 -1019
  1907. data/src/core/lib/iomgr/resource_quota.h +0 -177
  1908. data/src/core/lib/iomgr/sockaddr_custom.h +0 -54
  1909. data/src/core/lib/iomgr/sys_epoll_wrapper.h +0 -30
  1910. data/src/core/lib/iomgr/tcp_client_custom.cc +0 -160
  1911. data/src/core/lib/iomgr/tcp_custom.cc +0 -389
  1912. data/src/core/lib/iomgr/tcp_custom.h +0 -85
  1913. data/src/core/lib/iomgr/tcp_server_custom.cc +0 -484
  1914. data/src/core/lib/iomgr/tcp_uv.cc +0 -421
  1915. data/src/core/lib/iomgr/timer_custom.cc +0 -96
  1916. data/src/core/lib/iomgr/timer_custom.h +0 -43
  1917. data/src/core/lib/iomgr/timer_uv.cc +0 -66
  1918. data/src/core/lib/iomgr/udp_server.cc +0 -748
  1919. data/src/core/lib/iomgr/udp_server.h +0 -103
  1920. data/src/core/lib/security/credentials/credentials_metadata.cc +0 -62
  1921. data/src/core/lib/slice/slice_intern.cc +0 -373
  1922. data/src/core/lib/slice/slice_utils.h +0 -200
  1923. data/src/core/lib/surface/init_secure.cc +0 -81
  1924. data/src/core/lib/transport/metadata.cc +0 -693
  1925. data/src/core/lib/transport/metadata.h +0 -446
  1926. data/src/core/lib/transport/metadata_batch.cc +0 -430
  1927. data/src/core/lib/transport/static_metadata.cc +0 -1249
  1928. data/src/core/lib/transport/static_metadata.h +0 -604
  1929. data/src/core/lib/transport/status_metadata.cc +0 -62
  1930. data/src/core/lib/transport/status_metadata.h +0 -48
  1931. data/third_party/boringssl-with-bazel/src/crypto/asn1/f_enum.c +0 -93
  1932. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_int.h +0 -217
  1933. data/third_party/cares/cares/ares_getopt.c +0 -122
  1934. data/third_party/cares/cares/ares_getopt.h +0 -53
  1935. data/third_party/cares/cares/ares_parse_a_reply.c +0 -264
  1936. data/third_party/cares/cares/ares_parse_aaaa_reply.c +0 -264
  1937. data/third_party/cares/cares/ares_parse_soa_reply.c +0 -133
  1938. data/third_party/upb/third_party/wyhash/wyhash.h +0 -145
  1939. data/third_party/upb/upb/decode.int.h +0 -163
  1940. data/third_party/upb/upb/table.int.h +0 -475
  1941. data/third_party/upb/upb/upb.int.h +0 -29
@@ -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.
@@ -111,10 +114,6 @@ extern "C" {
111
114
  // V_ASN1_UNDEF is used in some APIs to indicate an ASN.1 element is omitted.
112
115
  #define V_ASN1_UNDEF (-1)
113
116
 
114
- // V_ASN1_APP_CHOOSE is used in some APIs to specify a default ASN.1 type based
115
- // on the context.
116
- #define V_ASN1_APP_CHOOSE (-2)
117
-
118
117
  // V_ASN1_OTHER is used in |ASN1_TYPE| to indicate a non-universal ASN.1 type.
119
118
  #define V_ASN1_OTHER (-3)
120
119
 
@@ -157,6 +156,327 @@ extern "C" {
157
156
  #define V_ASN1_NEG_INTEGER (V_ASN1_INTEGER | V_ASN1_NEG)
158
157
  #define V_ASN1_NEG_ENUMERATED (V_ASN1_ENUMERATED | V_ASN1_NEG)
159
158
 
159
+ // The following constants are bitmask representations of ASN.1 types.
160
+ #define B_ASN1_NUMERICSTRING 0x0001
161
+ #define B_ASN1_PRINTABLESTRING 0x0002
162
+ #define B_ASN1_T61STRING 0x0004
163
+ #define B_ASN1_TELETEXSTRING 0x0004
164
+ #define B_ASN1_VIDEOTEXSTRING 0x0008
165
+ #define B_ASN1_IA5STRING 0x0010
166
+ #define B_ASN1_GRAPHICSTRING 0x0020
167
+ #define B_ASN1_ISO64STRING 0x0040
168
+ #define B_ASN1_VISIBLESTRING 0x0040
169
+ #define B_ASN1_GENERALSTRING 0x0080
170
+ #define B_ASN1_UNIVERSALSTRING 0x0100
171
+ #define B_ASN1_OCTET_STRING 0x0200
172
+ #define B_ASN1_BIT_STRING 0x0400
173
+ #define B_ASN1_BMPSTRING 0x0800
174
+ #define B_ASN1_UNKNOWN 0x1000
175
+ #define B_ASN1_UTF8STRING 0x2000
176
+ #define B_ASN1_UTCTIME 0x4000
177
+ #define B_ASN1_GENERALIZEDTIME 0x8000
178
+ #define B_ASN1_SEQUENCE 0x10000
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
+
191
+ // ASN1_tag2str returns a string representation of |tag|, interpret as a tag
192
+ // number for a universal type, or |V_ASN1_NEG_*|.
193
+ OPENSSL_EXPORT const char *ASN1_tag2str(int tag);
194
+
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
+
160
480
 
161
481
  // Strings.
162
482
  //
@@ -177,20 +497,11 @@ extern "C" {
177
497
  // string.
178
498
  //
179
499
  // When representing a BIT STRING value, the type field is |V_ASN1_BIT_STRING|.
180
- // The data contains the encoded form of the BIT STRING, including any padding
181
- // bits added to round to a whole number of bytes, but excluding the leading
182
- // byte containing the number of padding bits. The number of padding bits is
183
- // encoded in the flags field. See |ASN1_STRING_FLAG_BITS_LEFT| for details. For
184
- // example, DER encodes the BIT STRING {1, 0} as {0x06, 0x80 = 0b10_000000}. The
185
- // |ASN1_STRING| representation has data of {0x80} and flags of
186
- // ASN1_STRING_FLAG_BITS_LEFT | 6.
187
- //
188
- // When representing an INTEGER or ENUMERATED value, the data contains the
189
- // big-endian encoding of the absolute value of the integer. The sign bit is
190
- // encoded in the type: non-negative values have a type of |V_ASN1_INTEGER| or
191
- // |V_ASN1_ENUMERATED|, while negative values have a type of
192
- // |V_ASN1_NEG_INTEGER| or |V_ASN1_NEG_ENUMERATED|. Note this differs from DER's
193
- // two's complement representation.
500
+ // See bit string documentation below for how the data and flags are used.
501
+ //
502
+ // When representing an INTEGER or ENUMERATED value, the type field is one of
503
+ // |V_ASN1_INTEGER|, |V_ASN1_NEG_INTEGER|, |V_ASN1_ENUMERATED|, or
504
+ // |V_ASN1_NEG_ENUMERATED|. See integer documentation below for details.
194
505
  //
195
506
  // When representing a GeneralizedTime or UTCTime value, the type field is
196
507
  // |V_ASN1_GENERALIZEDTIME| or |V_ASN1_UTCTIME|, respectively. The data contains
@@ -225,9 +536,10 @@ extern "C" {
225
536
  // invariants on the |X509| object and break the |X509_get0_serialNumber|
226
537
  // invariant.
227
538
  //
228
- // TODO(davidben): This is very unfriendly. Getting the type field wrong should
229
- // not cause memory errors, but it may do strange things. We should add runtime
230
- // 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.
231
543
  struct asn1_string_st {
232
544
  int length;
233
545
  int type;
@@ -241,14 +553,6 @@ struct asn1_string_st {
241
553
  // treated as padding. This behavior is deprecated and should not be used.
242
554
  #define ASN1_STRING_FLAG_BITS_LEFT 0x08
243
555
 
244
- // ASN1_STRING_FLAG_MSTRING indicates that the |ASN1_STRING| is an MSTRING type,
245
- // which is how this library refers to a CHOICE type of several string types.
246
- // For example, DirectoryString as defined in RFC5280.
247
- //
248
- // TODO(davidben): This is only used in one place within the library and is easy
249
- // to accidentally drop. Can it be removed?
250
- #define ASN1_STRING_FLAG_MSTRING 0x040
251
-
252
556
  // ASN1_STRING_type_new returns a newly-allocated empty |ASN1_STRING| object of
253
557
  // type |type|, or NULL on error.
254
558
  OPENSSL_EXPORT ASN1_STRING *ASN1_STRING_type_new(int type);
@@ -290,13 +594,14 @@ OPENSSL_EXPORT int ASN1_STRING_length(const ASN1_STRING *str);
290
594
 
291
595
  // ASN1_STRING_cmp compares |a| and |b|'s type and contents. It returns an
292
596
  // integer equal to, less than, or greater than zero if |a| is equal to, less
293
- // than, or greater than |b|, respectively. The comparison is suitable for
294
- // sorting, but callers should not rely on the particular comparison.
597
+ // than, or greater than |b|, respectively. This function compares by length,
598
+ // then data, then type. Note the data compared is the |ASN1_STRING| internal
599
+ // representation and the type order is arbitrary. While this comparison is
600
+ // suitable for sorting, callers should not rely on the exact order when |a|
601
+ // and |b| are different types.
295
602
  //
296
- // Note if |a| or |b| are BIT STRINGs, this function does not compare the
297
- // |ASN1_STRING_FLAG_BITS_LEFT| flags.
298
- //
299
- // 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|.
300
605
  OPENSSL_EXPORT int ASN1_STRING_cmp(const ASN1_STRING *a, const ASN1_STRING *b);
301
606
 
302
607
  // ASN1_STRING_set sets the contents of |str| to a copy of |len| bytes from
@@ -308,412 +613,1222 @@ OPENSSL_EXPORT int ASN1_STRING_set(ASN1_STRING *str, const void *data, int len);
308
613
  // |OPENSSL_malloc|.
309
614
  OPENSSL_EXPORT void ASN1_STRING_set0(ASN1_STRING *str, void *data, int len);
310
615
 
311
- // TODO(davidben): Pull up and document functions specific to individual string
312
- // types.
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);
313
711
 
712
+ // ASN1_STRING_to_UTF8 converts |in| to UTF-8. On success, sets |*out| to a
713
+ // newly-allocated buffer containing the resulting string and returns the length
714
+ // of the string. The caller must call |OPENSSL_free| to release |*out| when
715
+ // done. On error, it returns a negative number.
716
+ OPENSSL_EXPORT int ASN1_STRING_to_UTF8(unsigned char **out,
717
+ const ASN1_STRING *in);
314
718
 
315
- // Arbitrary elements.
719
+ // The following formats define encodings for use with functions like
720
+ // |ASN1_mbstring_copy|. Note |MBSTRING_ASC| refers to Latin-1, not ASCII.
721
+ #define MBSTRING_FLAG 0x1000
722
+ #define MBSTRING_UTF8 (MBSTRING_FLAG)
723
+ #define MBSTRING_ASC (MBSTRING_FLAG | 1)
724
+ #define MBSTRING_BMP (MBSTRING_FLAG | 2)
725
+ #define MBSTRING_UNIV (MBSTRING_FLAG | 4)
316
726
 
317
- // ASN1_VALUE_st (aka |ASN1_VALUE|) is an opaque type used internally in the
318
- // library.
319
- typedef struct ASN1_VALUE_st ASN1_VALUE;
727
+ // DIRSTRING_TYPE contains the valid string types in an X.509 DirectoryString.
728
+ #define DIRSTRING_TYPE \
729
+ (B_ASN1_PRINTABLESTRING | B_ASN1_T61STRING | B_ASN1_BMPSTRING | \
730
+ B_ASN1_UTF8STRING)
320
731
 
321
- // An asn1_type_st (aka |ASN1_TYPE|) represents an arbitrary ASN.1 element,
322
- // typically used used for ANY types. It contains a |type| field and a |value|
323
- // union dependent on |type|.
732
+ // PKCS9STRING_TYPE contains the valid string types in a PKCS9String.
733
+ #define PKCS9STRING_TYPE (DIRSTRING_TYPE | B_ASN1_IA5STRING)
734
+
735
+ // ASN1_mbstring_copy converts |len| bytes from |in| to an ASN.1 string. If
736
+ // |len| is -1, |in| must be NUL-terminated and the length is determined by
737
+ // |strlen|. |in| is decoded according to |inform|, which must be one of
738
+ // |MBSTRING_*|. |mask| determines the set of valid output types and is a
739
+ // bitmask containing a subset of |B_ASN1_PRINTABLESTRING|, |B_ASN1_IA5STRING|,
740
+ // |B_ASN1_T61STRING|, |B_ASN1_BMPSTRING|, |B_ASN1_UNIVERSALSTRING|, and
741
+ // |B_ASN1_UTF8STRING|, in that preference order. This function chooses the
742
+ // first output type in |mask| which can represent |in|. It interprets T61String
743
+ // as Latin-1, rather than T.61.
324
744
  //
325
- // WARNING: This struct has a complex representation. Callers must not construct
326
- // |ASN1_TYPE| values manually. Use |ASN1_TYPE_set| and |ASN1_TYPE_set1|
327
- // instead. Additionally, callers performing non-trivial operations on this type
328
- // are encouraged to use |CBS| and |CBB| from <openssl/bytestring.h>, and
329
- // convert to or from |ASN1_TYPE| with |d2i_ASN1_TYPE| or |i2d_ASN1_TYPE|.
745
+ // If |mask| is zero, |DIRSTRING_TYPE| is used by default.
330
746
  //
331
- // The |type| field corresponds to the tag of the ASN.1 element being
332
- // represented:
747
+ // On success, this function returns the |V_ASN1_*| constant corresponding to
748
+ // the selected output type and, if |out| and |*out| are both non-NULL, updates
749
+ // the object at |*out| with the result. If |out| is non-NULL and |*out| is
750
+ // NULL, it instead sets |*out| to a newly-allocated |ASN1_STRING| containing
751
+ // the result. If |out| is NULL, it returns the selected output type without
752
+ // constructing an |ASN1_STRING|. On error, this function returns -1.
753
+ OPENSSL_EXPORT int ASN1_mbstring_copy(ASN1_STRING **out, const uint8_t *in,
754
+ int len, int inform, unsigned long mask);
755
+
756
+ // ASN1_mbstring_ncopy behaves like |ASN1_mbstring_copy| but returns an error if
757
+ // the input is less than |minsize| or greater than |maxsize| codepoints long. A
758
+ // |maxsize| value of zero is ignored. Note the sizes are measured in
759
+ // codepoints, not output bytes.
760
+ OPENSSL_EXPORT int ASN1_mbstring_ncopy(ASN1_STRING **out, const uint8_t *in,
761
+ int len, int inform, unsigned long mask,
762
+ long minsize, long maxsize);
763
+
764
+ // ASN1_STRING_set_by_NID behaves like |ASN1_mbstring_ncopy|, but determines
765
+ // |mask|, |minsize|, and |maxsize| based on |nid|. When |nid| is a recognized
766
+ // X.509 attribute type, it will pick a suitable ASN.1 string type and bounds.
767
+ // For most attribute types, it preferentially chooses UTF8String. If |nid| is
768
+ // unrecognized, it uses UTF8String by default.
333
769
  //
334
- // If |type| is a |V_ASN1_*| constant for an ASN.1 string-like type, as defined
335
- // by |ASN1_STRING|, the tag matches the constant. |value| contains an
336
- // |ASN1_STRING| pointer (equivalently, one of the more specific typedefs). See
337
- // |ASN1_STRING| for details on the representation. Unlike |ASN1_STRING|,
338
- // |ASN1_TYPE| does not use the |V_ASN1_NEG| flag for negative INTEGER and
339
- // ENUMERATE values. For a negative value, the |ASN1_TYPE|'s |type| will be
340
- // |V_ASN1_INTEGER| or |V_ASN1_ENUMERATED|, but |value| will an |ASN1_STRING|
341
- // whose |type| is |V_ASN1_NEG_INTEGER| or |V_ASN1_NEG_ENUMERATED|.
770
+ // Slightly unlike |ASN1_mbstring_ncopy|, this function interprets |out| and
771
+ // returns its result as follows: If |out| is NULL, it returns a newly-allocated
772
+ // |ASN1_STRING| containing the result. If |out| is non-NULL and
773
+ // |*out| is NULL, it additionally sets |*out| to the result. If both |out| and
774
+ // |*out| are non-NULL, it instead updates the object at |*out| and returns
775
+ // |*out|. In all cases, it returns NULL on error.
342
776
  //
343
- // If |type| is |V_ASN1_OBJECT|, the tag is OBJECT IDENTIFIER and |value|
344
- // contains an |ASN1_OBJECT| pointer.
777
+ // This function supports the following NIDs: |NID_countryName|,
778
+ // |NID_dnQualifier|, |NID_domainComponent|, |NID_friendlyName|,
779
+ // |NID_givenName|, |NID_initials|, |NID_localityName|, |NID_ms_csp_name|,
780
+ // |NID_name|, |NID_organizationalUnitName|, |NID_organizationName|,
781
+ // |NID_pkcs9_challengePassword|, |NID_pkcs9_emailAddress|,
782
+ // |NID_pkcs9_unstructuredAddress|, |NID_pkcs9_unstructuredName|,
783
+ // |NID_serialNumber|, |NID_stateOrProvinceName|, and |NID_surname|. Additional
784
+ // NIDs may be registered with |ASN1_STRING_set_by_NID|, but it is recommended
785
+ // to call |ASN1_mbstring_ncopy| directly instead.
786
+ OPENSSL_EXPORT ASN1_STRING *ASN1_STRING_set_by_NID(ASN1_STRING **out,
787
+ const unsigned char *in,
788
+ int len, int inform,
789
+ int nid);
790
+
791
+ // STABLE_NO_MASK causes |ASN1_STRING_TABLE_add| to allow types other than
792
+ // UTF8String.
793
+ #define STABLE_NO_MASK 0x02
794
+
795
+ // ASN1_STRING_TABLE_add registers the corresponding parameters with |nid|, for
796
+ // use with |ASN1_STRING_set_by_NID|. It returns one on success and zero on
797
+ // error. It is an error to call this function if |nid| is a built-in NID, or
798
+ // was already registered by a previous call.
345
799
  //
346
- // If |type| is |V_ASN1_NULL|, the tag is NULL. |value| contains a NULL pointer.
800
+ // WARNING: This function affects global state in the library. If two libraries
801
+ // in the same address space register information for the same OID, one call
802
+ // will fail. Prefer directly passing the desired parametrs to
803
+ // |ASN1_mbstring_copy| or |ASN1_mbstring_ncopy| instead.
804
+ OPENSSL_EXPORT int ASN1_STRING_TABLE_add(int nid, long minsize, long maxsize,
805
+ unsigned long mask,
806
+ unsigned long flags);
807
+
808
+
809
+ // Multi-strings.
347
810
  //
348
- // If |type| is |V_ASN1_BOOLEAN|, the tag is BOOLEAN. |value| contains an
349
- // |ASN1_BOOLEAN|.
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.
350
814
  //
351
- // If |type| is |V_ASN1_SEQUENCE|, |V_ASN1_SET|, or |V_ASN1_OTHER|, the tag is
352
- // SEQUENCE, SET, or some non-universal tag, respectively. |value| is an
353
- // |ASN1_STRING| containing the entire element, including the tag and length.
354
- // The |ASN1_STRING|'s |type| field matches the containing |ASN1_TYPE|'s |type|.
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|.
355
834
  //
356
- // Other positive values of |type|, up to |V_ASN1_MAX_UNIVERSAL|, correspond to
357
- // universal primitive tags not directly supported by this library. |value| is
358
- // an |ASN1_STRING| containing the body of the element, excluding the tag
359
- // and length. The |ASN1_STRING|'s |type| field matches the containing
360
- // |ASN1_TYPE|'s |type|.
361
- struct asn1_type_st {
362
- int type;
363
- union {
364
- char *ptr;
365
- ASN1_BOOLEAN boolean;
366
- ASN1_STRING *asn1_string;
367
- ASN1_OBJECT *object;
368
- ASN1_INTEGER *integer;
369
- ASN1_ENUMERATED *enumerated;
370
- ASN1_BIT_STRING *bit_string;
371
- ASN1_OCTET_STRING *octet_string;
372
- ASN1_PRINTABLESTRING *printablestring;
373
- ASN1_T61STRING *t61string;
374
- ASN1_IA5STRING *ia5string;
375
- ASN1_GENERALSTRING *generalstring;
376
- ASN1_BMPSTRING *bmpstring;
377
- ASN1_UNIVERSALSTRING *universalstring;
378
- ASN1_UTCTIME *utctime;
379
- ASN1_GENERALIZEDTIME *generalizedtime;
380
- ASN1_VISIBLESTRING *visiblestring;
381
- ASN1_UTF8STRING *utf8string;
382
- // set and sequence are left complete and still contain the entire element.
383
- ASN1_STRING *set;
384
- ASN1_STRING *sequence;
385
- ASN1_VALUE *asn1_value;
386
- } value;
387
- };
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)
388
856
 
389
- // ASN1_TYPE_get returns the type of |a|, which will be one of the |V_ASN1_*|
390
- // constants, or zero if |a| is not fully initialized.
391
- OPENSSL_EXPORT int ASN1_TYPE_get(const ASN1_TYPE *a);
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);
392
861
 
393
- // ASN1_TYPE_set sets |a| to an |ASN1_TYPE| of type |type| and value |value|,
394
- // releasing the previous contents of |a|.
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|.
395
867
  //
396
- // If |type| is |V_ASN1_BOOLEAN|, |a| is set to FALSE if |value| is NULL and
397
- // TRUE otherwise. If setting |a| to TRUE, |value| may be an invalid pointer,
398
- // such as (void*)1.
868
+ // TODO(https://crbug.com/boringssl/354): This function currently also accepts
869
+ // BER, but this will be removed in the future.
399
870
  //
400
- // If |type| is |V_ASN1_NULL|, |value| must be NULL.
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)
883
+
884
+
885
+ // Bit strings.
401
886
  //
402
- // For other values of |type|, this function takes ownership of |value|, which
403
- // must point to an object of the corresponding type. See |ASN1_TYPE| for
404
- // details.
405
- OPENSSL_EXPORT void ASN1_TYPE_set(ASN1_TYPE *a, int type, void *value);
887
+ // An ASN.1 BIT STRING type represents a string of bits. The string may not
888
+ // necessarily be a whole number of bytes. BIT STRINGs occur in ASN.1 structures
889
+ // in several forms:
890
+ //
891
+ // Some BIT STRINGs represent a bitmask of named bits, such as the X.509 key
892
+ // usage extension in RFC 5280, section 4.2.1.3. For such bit strings, DER
893
+ // imposes an additional restriction that trailing zero bits are removed. Some
894
+ // functions like |ASN1_BIT_STRING_set_bit| help in maintaining this.
895
+ //
896
+ // Other BIT STRINGs are arbitrary strings of bits used as identifiers and do
897
+ // not have this constraint, such as the X.509 issuerUniqueID field.
898
+ //
899
+ // Finally, some structures use BIT STRINGs as a container for byte strings. For
900
+ // example, the signatureValue field in X.509 and the subjectPublicKey field in
901
+ // SubjectPublicKeyInfo are defined as BIT STRINGs with a value specific to the
902
+ // AlgorithmIdentifier. While some unknown algorithm could choose to store
903
+ // arbitrary bit strings, all supported algorithms use a byte string, with bit
904
+ // order matching the DER encoding. Callers interpreting a BIT STRING as a byte
905
+ // string should use |ASN1_BIT_STRING_num_bytes| instead of |ASN1_STRING_length|
906
+ // and reject bit strings that are not a whole number of bytes.
907
+ //
908
+ // This library represents BIT STRINGs as |ASN1_STRING|s with type
909
+ // |V_ASN1_BIT_STRING|. The data contains the encoded form of the BIT STRING,
910
+ // including any padding bits added to round to a whole number of bytes, but
911
+ // excluding the leading byte containing the number of padding bits. If
912
+ // |ASN1_STRING_FLAG_BITS_LEFT| is set, the bottom three bits contains the
913
+ // number of padding bits. For example, DER encodes the BIT STRING {1, 0} as
914
+ // {0x06, 0x80 = 0b10_000000}. The |ASN1_STRING| representation has data of
915
+ // {0x80} and flags of ASN1_STRING_FLAG_BITS_LEFT | 6. If
916
+ // |ASN1_STRING_FLAG_BITS_LEFT| is unset, trailing zero bits are implicitly
917
+ // removed. Callers should not rely this representation when constructing bit
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)
970
+
971
+ // ASN1_BIT_STRING_num_bytes computes the length of |str| in bytes. If |str|'s
972
+ // bit length is a multiple of 8, it sets |*out| to the byte length and returns
973
+ // one. Otherwise, it returns zero.
974
+ //
975
+ // This function may be used with |ASN1_STRING_get0_data| to interpret |str| as
976
+ // a byte string.
977
+ OPENSSL_EXPORT int ASN1_BIT_STRING_num_bytes(const ASN1_BIT_STRING *str,
978
+ size_t *out);
406
979
 
407
- // ASN1_TYPE_set1 behaves like |ASN1_TYPE_set| except it does not take ownership
408
- // of |value|. It returns one on success and zero on error.
409
- OPENSSL_EXPORT int ASN1_TYPE_set1(ASN1_TYPE *a, int type, const void *value);
980
+ // ASN1_BIT_STRING_set calls |ASN1_STRING_set|. It leaves flags unchanged, so
981
+ // the caller must set the number of unused bits.
982
+ //
983
+ // TODO(davidben): Maybe it should? Wrapping a byte string in a bit string is a
984
+ // common use case.
985
+ OPENSSL_EXPORT int ASN1_BIT_STRING_set(ASN1_BIT_STRING *str,
986
+ const unsigned char *d, int length);
987
+
988
+ // ASN1_BIT_STRING_set_bit sets bit |n| of |str| to one if |value| is non-zero
989
+ // and zero if |value| is zero, resizing |str| as needed. It then truncates
990
+ // trailing zeros in |str| to align with the DER represention for a bit string
991
+ // with named bits. It returns one on success and zero on error. |n| is indexed
992
+ // beginning from zero.
993
+ OPENSSL_EXPORT int ASN1_BIT_STRING_set_bit(ASN1_BIT_STRING *str, int n,
994
+ int value);
410
995
 
411
- // ASN1_TYPE_cmp returns zero if |a| and |b| are equal and some non-zero value
412
- // otherwise. Note this function can only be used for equality checks, not an
413
- // ordering.
414
- OPENSSL_EXPORT int ASN1_TYPE_cmp(const ASN1_TYPE *a, const ASN1_TYPE *b);
996
+ // ASN1_BIT_STRING_get_bit returns one if bit |n| of |a| is in bounds and set,
997
+ // and zero otherwise. |n| is indexed beginning from zero.
998
+ OPENSSL_EXPORT int ASN1_BIT_STRING_get_bit(const ASN1_BIT_STRING *str, int n);
415
999
 
416
- // TODO(davidben): Most of |ASN1_TYPE|'s APIs are hidden behind macros. Expand
417
- // the macros, document them, and move them to this section.
1000
+ // ASN1_BIT_STRING_check returns one if |str| only contains bits that are set in
1001
+ // the |flags_len| bytes pointed by |flags|. Otherwise it returns zero. Bits in
1002
+ // |flags| are arranged according to the DER representation, so bit 0
1003
+ // corresponds to the MSB of |flags[0]|.
1004
+ OPENSSL_EXPORT int ASN1_BIT_STRING_check(const ASN1_BIT_STRING *str,
1005
+ const unsigned char *flags,
1006
+ int flags_len);
418
1007
 
419
1008
 
420
- // Underdocumented functions.
1009
+ // Integers and enumerated values.
421
1010
  //
422
- // The following functions are not yet documented and organized.
1011
+ // INTEGER and ENUMERATED values are represented as |ASN1_STRING|s where the
1012
+ // data contains the big-endian encoding of the absolute value of the integer.
1013
+ // The sign bit is encoded in the type: non-negative values have a type of
1014
+ // |V_ASN1_INTEGER| or |V_ASN1_ENUMERATED|, while negative values have a type of
1015
+ // |V_ASN1_NEG_INTEGER| or |V_ASN1_NEG_ENUMERATED|. Note this differs from DER's
1016
+ // two's complement representation.
423
1017
 
424
- // For use with d2i_ASN1_type_bytes()
425
- #define B_ASN1_NUMERICSTRING 0x0001
426
- #define B_ASN1_PRINTABLESTRING 0x0002
427
- #define B_ASN1_T61STRING 0x0004
428
- #define B_ASN1_TELETEXSTRING 0x0004
429
- #define B_ASN1_VIDEOTEXSTRING 0x0008
430
- #define B_ASN1_IA5STRING 0x0010
431
- #define B_ASN1_GRAPHICSTRING 0x0020
432
- #define B_ASN1_ISO64STRING 0x0040
433
- #define B_ASN1_VISIBLESTRING 0x0040
434
- #define B_ASN1_GENERALSTRING 0x0080
435
- #define B_ASN1_UNIVERSALSTRING 0x0100
436
- #define B_ASN1_OCTET_STRING 0x0200
437
- #define B_ASN1_BIT_STRING 0x0400
438
- #define B_ASN1_BMPSTRING 0x0800
439
- #define B_ASN1_UNKNOWN 0x1000
440
- #define B_ASN1_UTF8STRING 0x2000
441
- #define B_ASN1_UTCTIME 0x4000
442
- #define B_ASN1_GENERALIZEDTIME 0x8000
443
- #define B_ASN1_SEQUENCE 0x10000
1018
+ DEFINE_STACK_OF(ASN1_INTEGER)
444
1019
 
445
- // For use with ASN1_mbstring_copy()
446
- #define MBSTRING_FLAG 0x1000
447
- #define MBSTRING_UTF8 (MBSTRING_FLAG)
448
- // |MBSTRING_ASC| refers to Latin-1, not ASCII. It is used with TeletexString
449
- // which, in turn, is treated as Latin-1 rather than T.61 by OpenSSL and most
450
- // other software.
451
- #define MBSTRING_ASC (MBSTRING_FLAG | 1)
452
- #define MBSTRING_BMP (MBSTRING_FLAG | 2)
453
- #define MBSTRING_UNIV (MBSTRING_FLAG | 4)
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);
454
1023
 
455
- #define DECLARE_ASN1_SET_OF(type) // filled in by mkstack.pl
456
- #define IMPLEMENT_ASN1_SET_OF(type) // nothing, no longer needed
1024
+ // ASN1_INTEGER_free calls |ASN1_STRING_free|.
1025
+ OPENSSL_EXPORT void ASN1_INTEGER_free(ASN1_INTEGER *str);
457
1026
 
458
- // These are used internally in the ASN1_OBJECT to keep track of
459
- // whether the names and data need to be free()ed
460
- #define ASN1_OBJECT_FLAG_DYNAMIC 0x01 // internal use
461
- #define ASN1_OBJECT_FLAG_DYNAMIC_STRINGS 0x04 // internal use
462
- #define ASN1_OBJECT_FLAG_DYNAMIC_DATA 0x08 // internal use
1027
+ // ASN1_INTEGER_dup calls |ASN1_STRING_dup|.
1028
+ OPENSSL_EXPORT ASN1_INTEGER *ASN1_INTEGER_dup(const ASN1_INTEGER *x);
463
1029
 
464
- // An asn1_object_st (aka |ASN1_OBJECT|) represents an ASN.1 OBJECT IDENTIFIER.
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|.
465
1032
  //
466
- // Note: Although the struct is exposed, mutating an |ASN1_OBJECT| is only
467
- // permitted when initializing it. The library maintains a table of static
468
- // |ASN1_OBJECT|s, which may be referenced by non-const |ASN1_OBJECT| pointers.
469
- // Code which receives an |ASN1_OBJECT| pointer externally must assume it is
470
- // immutable, even if the pointer is not const.
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.
471
1046
  //
472
- // TODO(davidben): Document this more completely in its own section.
473
- struct asn1_object_st {
474
- const char *sn, *ln;
475
- int nid;
476
- int length;
477
- const unsigned char *data; // data remains const after init
478
- int flags; // Should we free this one
479
- };
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);
480
1066
 
481
- DEFINE_STACK_OF(ASN1_OBJECT)
1067
+ // ASN1_INTEGER is an |ASN1_ITEM| with ASN.1 type INTEGER and C type
1068
+ // |ASN1_INTEGER*|.
1069
+ DECLARE_ASN1_ITEM(ASN1_INTEGER)
482
1070
 
483
- // ASN1_ENCODING structure: this is used to save the received
484
- // encoding of an ASN1 type. This is useful to get round
485
- // problems with invalid encodings which can break signatures.
486
-
487
- typedef struct ASN1_ENCODING_st {
488
- unsigned char *enc; // DER encoding
489
- long len; // Length of encoding
490
- int modified; // set to 1 if 'enc' is invalid
491
- // alias_only is zero if |enc| owns the buffer that it points to
492
- // (although |enc| may still be NULL). If one, |enc| points into a
493
- // buffer that is owned elsewhere.
494
- unsigned alias_only : 1;
495
- // alias_only_on_next_parse is one iff the next parsing operation
496
- // should avoid taking a copy of the input and rather set
497
- // |alias_only|.
498
- unsigned alias_only_on_next_parse : 1;
499
- } ASN1_ENCODING;
500
-
501
- #define STABLE_FLAGS_MALLOC 0x01
502
- #define STABLE_NO_MASK 0x02
503
- #define DIRSTRING_TYPE \
504
- (B_ASN1_PRINTABLESTRING | B_ASN1_T61STRING | B_ASN1_BMPSTRING | \
505
- B_ASN1_UTF8STRING)
506
- #define PKCS9STRING_TYPE (DIRSTRING_TYPE | B_ASN1_IA5STRING)
1071
+ // ASN1_INTEGER_set sets |a| to an INTEGER with value |v|. It returns one on
1072
+ // success and zero on error.
1073
+ OPENSSL_EXPORT int ASN1_INTEGER_set(ASN1_INTEGER *a, long v);
507
1074
 
508
- typedef struct asn1_string_table_st {
509
- int nid;
510
- long minsize;
511
- long maxsize;
512
- unsigned long mask;
513
- unsigned long flags;
514
- } ASN1_STRING_TABLE;
1075
+ // ASN1_INTEGER_set_uint64 sets |a| to an INTEGER with value |v|. It returns one
1076
+ // on success and zero on error.
1077
+ OPENSSL_EXPORT int ASN1_INTEGER_set_uint64(ASN1_INTEGER *out, uint64_t v);
515
1078
 
516
- // size limits: this stuff is taken straight from RFC2459
1079
+ // ASN1_INTEGER_get returns the value of |a| as a |long|, or -1 if |a| is out of
1080
+ // range or the wrong type.
1081
+ OPENSSL_EXPORT long ASN1_INTEGER_get(const ASN1_INTEGER *a);
517
1082
 
518
- #define ub_name 32768
519
- #define ub_common_name 64
520
- #define ub_locality_name 128
521
- #define ub_state_name 128
522
- #define ub_organization_name 64
523
- #define ub_organization_unit_name 64
524
- #define ub_title 64
525
- #define ub_email_address 128
1083
+ // BN_to_ASN1_INTEGER sets |ai| to an INTEGER with value |bn| and returns |ai|
1084
+ // on success or NULL or error. If |ai| is NULL, it returns a newly-allocated
1085
+ // |ASN1_INTEGER| on success instead, which the caller must release with
1086
+ // |ASN1_INTEGER_free|.
1087
+ OPENSSL_EXPORT ASN1_INTEGER *BN_to_ASN1_INTEGER(const BIGNUM *bn,
1088
+ ASN1_INTEGER *ai);
526
1089
 
527
- // Declarations for template structures: for full definitions
528
- // see asn1t.h
529
- typedef struct ASN1_TEMPLATE_st ASN1_TEMPLATE;
530
- typedef struct ASN1_TLC_st ASN1_TLC;
1090
+ // ASN1_INTEGER_to_BN sets |bn| to the value of |ai| and returns |bn| on success
1091
+ // or NULL or error. If |bn| is NULL, it returns a newly-allocated |BIGNUM| on
1092
+ // success instead, which the caller must release with |BN_free|.
1093
+ OPENSSL_EXPORT BIGNUM *ASN1_INTEGER_to_BN(const ASN1_INTEGER *ai, BIGNUM *bn);
531
1094
 
532
- // Declare ASN1 functions: the implement macro in in asn1t.h
1095
+ // ASN1_INTEGER_cmp compares the values of |x| and |y|. It returns an integer
1096
+ // equal to, less than, or greater than zero if |x| is equal to, less than, or
1097
+ // greater than |y|, respectively.
1098
+ OPENSSL_EXPORT int ASN1_INTEGER_cmp(const ASN1_INTEGER *x,
1099
+ const ASN1_INTEGER *y);
533
1100
 
534
- #define DECLARE_ASN1_FUNCTIONS(type) DECLARE_ASN1_FUNCTIONS_name(type, type)
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);
535
1104
 
536
- #define DECLARE_ASN1_ALLOC_FUNCTIONS(type) \
537
- DECLARE_ASN1_ALLOC_FUNCTIONS_name(type, type)
1105
+ // ASN1_ENUMERATED_free calls |ASN1_STRING_free|.
1106
+ OPENSSL_EXPORT void ASN1_ENUMERATED_free(ASN1_ENUMERATED *str);
538
1107
 
539
- #define DECLARE_ASN1_FUNCTIONS_name(type, name) \
540
- DECLARE_ASN1_ALLOC_FUNCTIONS_name(type, name) \
541
- DECLARE_ASN1_ENCODE_FUNCTIONS(type, name, name)
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
+
1126
+ // ASN1_ENUMERATED_set sets |a| to an ENUMERATED with value |v|. It returns one
1127
+ // on success and zero on error.
1128
+ OPENSSL_EXPORT int ASN1_ENUMERATED_set(ASN1_ENUMERATED *a, long v);
542
1129
 
543
- #define DECLARE_ASN1_FUNCTIONS_fname(type, itname, name) \
544
- DECLARE_ASN1_ALLOC_FUNCTIONS_name(type, name) \
545
- DECLARE_ASN1_ENCODE_FUNCTIONS(type, itname, name)
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.
1132
+ OPENSSL_EXPORT long ASN1_ENUMERATED_get(const ASN1_ENUMERATED *a);
546
1133
 
547
- #define DECLARE_ASN1_ENCODE_FUNCTIONS(type, itname, name) \
548
- OPENSSL_EXPORT type *d2i_##name(type **a, const unsigned char **in, \
549
- long len); \
550
- OPENSSL_EXPORT int i2d_##name(type *a, unsigned char **out); \
551
- DECLARE_ASN1_ITEM(itname)
1134
+ // BN_to_ASN1_ENUMERATED sets |ai| to an ENUMERATED with value |bn| and returns
1135
+ // |ai| on success or NULL or error. If |ai| is NULL, it returns a
1136
+ // newly-allocated |ASN1_INTEGER| on success instead, which the caller must
1137
+ // release with |ASN1_INTEGER_free|.
1138
+ OPENSSL_EXPORT ASN1_ENUMERATED *BN_to_ASN1_ENUMERATED(const BIGNUM *bn,
1139
+ ASN1_ENUMERATED *ai);
552
1140
 
553
- #define DECLARE_ASN1_ENCODE_FUNCTIONS_const(type, name) \
554
- OPENSSL_EXPORT type *d2i_##name(type **a, const unsigned char **in, \
555
- long len); \
556
- OPENSSL_EXPORT int i2d_##name(const type *a, unsigned char **out); \
557
- DECLARE_ASN1_ITEM(name)
1141
+ // ASN1_ENUMERATED_to_BN sets |bn| to the value of |ai| and returns |bn| on
1142
+ // success or NULL or error. If |bn| is NULL, it returns a newly-allocated
1143
+ // |BIGNUM| on success instead, which the caller must release with |BN_free|.
1144
+ OPENSSL_EXPORT BIGNUM *ASN1_ENUMERATED_to_BN(const ASN1_ENUMERATED *ai,
1145
+ BIGNUM *bn);
558
1146
 
559
- #define DECLARE_ASN1_FUNCTIONS_const(name) \
560
- DECLARE_ASN1_ALLOC_FUNCTIONS(name) \
561
- DECLARE_ASN1_ENCODE_FUNCTIONS_const(name, name)
562
1147
 
563
- #define DECLARE_ASN1_ALLOC_FUNCTIONS_name(type, name) \
564
- OPENSSL_EXPORT type *name##_new(void); \
565
- OPENSSL_EXPORT void name##_free(type *a);
1148
+ // Time.
1149
+ //
1150
+ // GeneralizedTime and UTCTime values are represented as |ASN1_STRING|s. The
1151
+ // type field is |V_ASN1_GENERALIZEDTIME| or |V_ASN1_UTCTIME|, respectively. The
1152
+ // data field contains the DER encoding of the value. For example, the UNIX
1153
+ // epoch would be "19700101000000Z" for a GeneralizedTime and "700101000000Z"
1154
+ // for a UTCTime.
1155
+ //
1156
+ // ASN.1 does not define how to interpret UTCTime's two-digit year. RFC 5280
1157
+ // defines it as a range from 1950 to 2049 for X.509. The library uses the
1158
+ // RFC 5280 interpretation. It does not currently enforce the restrictions from
1159
+ // BER, and the additional restrictions from RFC 5280, but future versions may.
1160
+ // Callers should not rely on fractional seconds and non-UTC time zones.
1161
+ //
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.
566
1165
 
567
- #define DECLARE_ASN1_PRINT_FUNCTION(stname) \
568
- DECLARE_ASN1_PRINT_FUNCTION_fname(stname, stname)
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);
569
1170
 
570
- #define DECLARE_ASN1_PRINT_FUNCTION_fname(stname, fname) \
571
- OPENSSL_EXPORT int fname##_print_ctx(BIO *out, stname *x, int indent, \
572
- const ASN1_PCTX *pctx);
1171
+ // ASN1_UTCTIME_free calls |ASN1_STRING_free|.
1172
+ OPENSSL_EXPORT void ASN1_UTCTIME_free(ASN1_UTCTIME *str);
573
1173
 
574
- typedef void *d2i_of_void(void **, const unsigned char **, long);
575
- typedef int i2d_of_void(const void *, unsigned char **);
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);
576
1185
 
577
- // The following macros and typedefs allow an ASN1_ITEM
578
- // to be embedded in a structure and referenced. Since
579
- // the ASN1_ITEM pointers need to be globally accessible
580
- // (possibly from shared libraries) they may exist in
581
- // different forms. On platforms that support it the
582
- // ASN1_ITEM structure itself will be globally exported.
583
- // Other platforms will export a function that returns
584
- // an ASN1_ITEM pointer.
1186
+ // ASN1_UTCTIME is an |ASN1_ITEM| with ASN.1 type UTCTime and C type
1187
+ // |ASN1_UTCTIME*|.
1188
+ DECLARE_ASN1_ITEM(ASN1_UTCTIME)
1189
+
1190
+ // ASN1_UTCTIME_check returns one if |a| is a valid UTCTime and zero otherwise.
1191
+ OPENSSL_EXPORT int ASN1_UTCTIME_check(const ASN1_UTCTIME *a);
1192
+
1193
+ // ASN1_UTCTIME_set represents |t| as a UTCTime and writes the result to |s|. It
1194
+ // returns |s| on success and NULL on error. If |s| is NULL, it returns a
1195
+ // newly-allocated |ASN1_UTCTIME| instead.
585
1196
  //
586
- // To handle both cases transparently the macros below
587
- // should be used instead of hard coding an ASN1_ITEM
588
- // pointer in a structure.
1197
+ // Note this function may fail if the time is out of range for UTCTime.
1198
+ OPENSSL_EXPORT ASN1_UTCTIME *ASN1_UTCTIME_set(ASN1_UTCTIME *s, time_t t);
1199
+
1200
+ // ASN1_UTCTIME_adj adds |offset_day| days and |offset_sec| seconds to |t| and
1201
+ // writes the result to |s| as a UTCTime. It returns |s| on success and NULL on
1202
+ // error. If |s| is NULL, it returns a newly-allocated |ASN1_UTCTIME| instead.
589
1203
  //
590
- // The structure will look like this:
1204
+ // Note this function may fail if the time overflows or is out of range for
1205
+ // UTCTime.
1206
+ OPENSSL_EXPORT ASN1_UTCTIME *ASN1_UTCTIME_adj(ASN1_UTCTIME *s, time_t t,
1207
+ int offset_day, long offset_sec);
1208
+
1209
+ // ASN1_UTCTIME_set_string sets |s| to a UTCTime whose contents are a copy of
1210
+ // |str|. It returns one on success and zero on error or if |str| is not a valid
1211
+ // UTCTime.
1212
+ //
1213
+ // If |s| is NULL, this function validates |str| without copying it.
1214
+ OPENSSL_EXPORT int ASN1_UTCTIME_set_string(ASN1_UTCTIME *s, const char *str);
1215
+
1216
+ // ASN1_UTCTIME_cmp_time_t compares |s| to |t|. It returns -1 if |s| < |t|, 0 if
1217
+ // they are equal, 1 if |s| > |t|, and -2 on error.
1218
+ OPENSSL_EXPORT int ASN1_UTCTIME_cmp_time_t(const ASN1_UTCTIME *s, time_t t);
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|.
591
1230
  //
592
- // typedef struct SOMETHING_st {
593
- // ...
594
- // ASN1_ITEM_EXP *iptr;
595
- // ...
596
- // } SOMETHING;
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
+
1245
+ // ASN1_GENERALIZEDTIME_check returns one if |a| is a valid GeneralizedTime and
1246
+ // zero otherwise.
1247
+ OPENSSL_EXPORT int ASN1_GENERALIZEDTIME_check(const ASN1_GENERALIZEDTIME *a);
1248
+
1249
+ // ASN1_GENERALIZEDTIME_set represents |t| as a GeneralizedTime and writes the
1250
+ // result to |s|. It returns |s| on success and NULL on error. If |s| is NULL,
1251
+ // it returns a newly-allocated |ASN1_GENERALIZEDTIME| instead.
1252
+ //
1253
+ // Note this function may fail if the time is out of range for GeneralizedTime.
1254
+ OPENSSL_EXPORT ASN1_GENERALIZEDTIME *ASN1_GENERALIZEDTIME_set(
1255
+ ASN1_GENERALIZEDTIME *s, time_t t);
1256
+
1257
+ // ASN1_GENERALIZEDTIME_adj adds |offset_day| days and |offset_sec| seconds to
1258
+ // |t| and writes the result to |s| as a GeneralizedTime. It returns |s| on
1259
+ // success and NULL on error. If |s| is NULL, it returns a newly-allocated
1260
+ // |ASN1_GENERALIZEDTIME| instead.
597
1261
  //
598
- // It would be initialised as e.g.:
1262
+ // Note this function may fail if the time overflows or is out of range for
1263
+ // GeneralizedTime.
1264
+ OPENSSL_EXPORT ASN1_GENERALIZEDTIME *ASN1_GENERALIZEDTIME_adj(
1265
+ ASN1_GENERALIZEDTIME *s, time_t t, int offset_day, long offset_sec);
1266
+
1267
+ // ASN1_GENERALIZEDTIME_set_string sets |s| to a GeneralizedTime whose contents
1268
+ // are a copy of |str|. It returns one on success and zero on error or if |str|
1269
+ // is not a valid GeneralizedTime.
599
1270
  //
600
- // SOMETHING somevar = {...,ASN1_ITEM_ref(X509),...};
1271
+ // If |s| is NULL, this function validates |str| without copying it.
1272
+ OPENSSL_EXPORT int ASN1_GENERALIZEDTIME_set_string(ASN1_GENERALIZEDTIME *s,
1273
+ const char *str);
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|.
601
1288
  //
602
- // and the actual pointer extracted with:
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
+
1302
+ // ASN1_TIME_diff computes |to| - |from|. On success, it sets |*out_days| to the
1303
+ // difference in days, rounded towards zero, sets |*out_seconds| to the
1304
+ // remainder, and returns one. On error, it returns zero.
603
1305
  //
604
- // const ASN1_ITEM *it = ASN1_ITEM_ptr(somevar.iptr);
1306
+ // If |from| is before |to|, both outputs will be <= 0, with at least one
1307
+ // negative. If |from| is after |to|, both will be >= 0, with at least one
1308
+ // positive. If they are equal, ignoring fractional seconds, both will be zero.
605
1309
  //
606
- // Finally an ASN1_ITEM pointer can be extracted from an
607
- // appropriate reference with: ASN1_ITEM_rptr(X509). This
608
- // would be used when a function takes an ASN1_ITEM * argument.
1310
+ // Note this function may fail on overflow, or if |from| or |to| cannot be
1311
+ // decoded.
1312
+ OPENSSL_EXPORT int ASN1_TIME_diff(int *out_days, int *out_seconds,
1313
+ const ASN1_TIME *from, const ASN1_TIME *to);
1314
+
1315
+ // ASN1_TIME_set represents |t| as a GeneralizedTime or UTCTime and writes
1316
+ // the result to |s|. As in RFC 5280, section 4.1.2.5, it uses UTCTime when the
1317
+ // time fits and GeneralizedTime otherwise. It returns |s| on success and NULL
1318
+ // on error. If |s| is NULL, it returns a newly-allocated |ASN1_TIME| instead.
609
1319
  //
1320
+ // Note this function may fail if the time is out of range for GeneralizedTime.
1321
+ OPENSSL_EXPORT ASN1_TIME *ASN1_TIME_set(ASN1_TIME *s, time_t t);
610
1322
 
611
- // ASN1_ITEM pointer exported type
612
- typedef const ASN1_ITEM ASN1_ITEM_EXP;
1323
+ // ASN1_TIME_adj adds |offset_day| days and |offset_sec| seconds to
1324
+ // |t| and writes the result to |s|. As in RFC 5280, section 4.1.2.5, it uses
1325
+ // UTCTime when the time fits and GeneralizedTime otherwise. It returns |s| on
1326
+ // success and NULL on error. If |s| is NULL, it returns a newly-allocated
1327
+ // |ASN1_GENERALIZEDTIME| instead.
1328
+ //
1329
+ // Note this function may fail if the time overflows or is out of range for
1330
+ // GeneralizedTime.
1331
+ OPENSSL_EXPORT ASN1_TIME *ASN1_TIME_adj(ASN1_TIME *s, time_t t, int offset_day,
1332
+ long offset_sec);
613
1333
 
614
- // Macro to obtain ASN1_ITEM pointer from exported type
615
- #define ASN1_ITEM_ptr(iptr) (iptr)
1334
+ // ASN1_TIME_check returns one if |t| is a valid UTCTime or GeneralizedTime, and
1335
+ // zero otherwise. |t|'s type determines which check is performed. This
1336
+ // function does not enforce that UTCTime was used when possible.
1337
+ OPENSSL_EXPORT int ASN1_TIME_check(const ASN1_TIME *t);
616
1338
 
617
- // Macro to include ASN1_ITEM pointer from base type
618
- #define ASN1_ITEM_ref(iptr) (&(iptr##_it))
1339
+ // ASN1_TIME_to_generalizedtime converts |t| to a GeneralizedTime. If |out| is
1340
+ // NULL, it returns a newly-allocated |ASN1_GENERALIZEDTIME| on success, or NULL
1341
+ // on error. If |out| is non-NULL and |*out| is NULL, it additionally sets
1342
+ // |*out| to the result. If |out| and |*out| are non-NULL, it instead updates
1343
+ // the object pointed by |*out| and returns |*out| on success or NULL on error.
1344
+ OPENSSL_EXPORT ASN1_GENERALIZEDTIME *ASN1_TIME_to_generalizedtime(
1345
+ const ASN1_TIME *t, ASN1_GENERALIZEDTIME **out);
619
1346
 
620
- #define ASN1_ITEM_rptr(ref) (&(ref##_it))
1347
+ // ASN1_TIME_set_string behaves like |ASN1_UTCTIME_set_string| if |str| is a
1348
+ // valid UTCTime, and |ASN1_GENERALIZEDTIME_set_string| if |str| is a valid
1349
+ // GeneralizedTime. If |str| is neither, it returns zero.
1350
+ OPENSSL_EXPORT int ASN1_TIME_set_string(ASN1_TIME *s, const char *str);
621
1351
 
622
- #define DECLARE_ASN1_ITEM(name) extern OPENSSL_EXPORT const ASN1_ITEM name##_it;
1352
+ // TODO(davidben): Expand and document function prototypes generated in macros.
623
1353
 
624
- // Parameters used by ASN1_STRING_print_ex()
625
1354
 
626
- // These determine which characters to escape:
627
- // RFC2253 special characters, control characters and
628
- // MSB set characters
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.
629
1361
 
630
- #define ASN1_STRFLGS_ESC_2253 1
631
- #define ASN1_STRFLGS_ESC_CTRL 2
632
- #define ASN1_STRFLGS_ESC_MSB 4
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);
633
1365
 
1366
+ // ASN1_NULL_free does nothing.
1367
+ OPENSSL_EXPORT void ASN1_NULL_free(ASN1_NULL *null);
634
1368
 
635
- // This flag determines how we do escaping: normally
636
- // RC2253 backslash only, set this to use backslash and
637
- // quote.
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);
638
1376
 
639
- #define ASN1_STRFLGS_ESC_QUOTE 8
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);
640
1380
 
1381
+ // ASN1_NULL is an |ASN1_ITEM| with ASN.1 type NULL and C type |ASN1_NULL*|.
1382
+ DECLARE_ASN1_ITEM(ASN1_NULL)
641
1383
 
642
- // These three flags are internal use only.
643
1384
 
644
- // Character is a valid PrintableString character
645
- #define CHARTYPE_PRINTABLESTRING 0x10
646
- // Character needs escaping if it is the first character
647
- #define CHARTYPE_FIRST_ESC_2253 0x20
648
- // Character needs escaping if it is the last character
649
- #define CHARTYPE_LAST_ESC_2253 0x40
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.
650
1393
 
651
- // NB the internal flags are safely reused below by flags
652
- // handled at the top level.
1394
+ DEFINE_STACK_OF(ASN1_OBJECT)
653
1395
 
654
- // If this is set we convert all character strings
655
- // to UTF8 first
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);
656
1410
 
657
- #define ASN1_STRFLGS_UTF8_CONVERT 0x10
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.
1440
+
1441
+ // An asn1_type_st (aka |ASN1_TYPE|) represents an arbitrary ASN.1 element,
1442
+ // typically used for ANY types. It contains a |type| field and a |value| union
1443
+ // dependent on |type|.
1444
+ //
1445
+ // WARNING: This struct has a complex representation. Callers must not construct
1446
+ // |ASN1_TYPE| values manually. Use |ASN1_TYPE_set| and |ASN1_TYPE_set1|
1447
+ // instead. Additionally, callers performing non-trivial operations on this type
1448
+ // are encouraged to use |CBS| and |CBB| from <openssl/bytestring.h>, and
1449
+ // convert to or from |ASN1_TYPE| with |d2i_ASN1_TYPE| or |i2d_ASN1_TYPE|.
1450
+ //
1451
+ // The |type| field corresponds to the tag of the ASN.1 element being
1452
+ // represented:
1453
+ //
1454
+ // If |type| is a |V_ASN1_*| constant for an ASN.1 string-like type, as defined
1455
+ // by |ASN1_STRING|, the tag matches the constant. |value| contains an
1456
+ // |ASN1_STRING| pointer (equivalently, one of the more specific typedefs). See
1457
+ // |ASN1_STRING| for details on the representation. Unlike |ASN1_STRING|,
1458
+ // |ASN1_TYPE| does not use the |V_ASN1_NEG| flag for negative INTEGER and
1459
+ // ENUMERATE values. For a negative value, the |ASN1_TYPE|'s |type| will be
1460
+ // |V_ASN1_INTEGER| or |V_ASN1_ENUMERATED|, but |value| will an |ASN1_STRING|
1461
+ // whose |type| is |V_ASN1_NEG_INTEGER| or |V_ASN1_NEG_ENUMERATED|.
1462
+ //
1463
+ // If |type| is |V_ASN1_OBJECT|, the tag is OBJECT IDENTIFIER and |value|
1464
+ // contains an |ASN1_OBJECT| pointer.
1465
+ //
1466
+ // If |type| is |V_ASN1_NULL|, the tag is NULL. |value| contains a NULL pointer.
1467
+ //
1468
+ // If |type| is |V_ASN1_BOOLEAN|, the tag is BOOLEAN. |value| contains an
1469
+ // |ASN1_BOOLEAN|.
1470
+ //
1471
+ // If |type| is |V_ASN1_SEQUENCE|, |V_ASN1_SET|, or |V_ASN1_OTHER|, the tag is
1472
+ // SEQUENCE, SET, or some non-universal tag, respectively. |value| is an
1473
+ // |ASN1_STRING| containing the entire element, including the tag and length.
1474
+ // The |ASN1_STRING|'s |type| field matches the containing |ASN1_TYPE|'s |type|.
1475
+ //
1476
+ // Other positive values of |type|, up to |V_ASN1_MAX_UNIVERSAL|, correspond to
1477
+ // universal primitive tags not directly supported by this library. |value| is
1478
+ // an |ASN1_STRING| containing the body of the element, excluding the tag
1479
+ // and length. The |ASN1_STRING|'s |type| field matches the containing
1480
+ // |ASN1_TYPE|'s |type|.
1481
+ struct asn1_type_st {
1482
+ int type;
1483
+ union {
1484
+ char *ptr;
1485
+ ASN1_BOOLEAN boolean;
1486
+ ASN1_STRING *asn1_string;
1487
+ ASN1_OBJECT *object;
1488
+ ASN1_INTEGER *integer;
1489
+ ASN1_ENUMERATED *enumerated;
1490
+ ASN1_BIT_STRING *bit_string;
1491
+ ASN1_OCTET_STRING *octet_string;
1492
+ ASN1_PRINTABLESTRING *printablestring;
1493
+ ASN1_T61STRING *t61string;
1494
+ ASN1_IA5STRING *ia5string;
1495
+ ASN1_GENERALSTRING *generalstring;
1496
+ ASN1_BMPSTRING *bmpstring;
1497
+ ASN1_UNIVERSALSTRING *universalstring;
1498
+ ASN1_UTCTIME *utctime;
1499
+ ASN1_GENERALIZEDTIME *generalizedtime;
1500
+ ASN1_VISIBLESTRING *visiblestring;
1501
+ ASN1_UTF8STRING *utf8string;
1502
+ // set and sequence are left complete and still contain the entire element.
1503
+ ASN1_STRING *set;
1504
+ ASN1_STRING *sequence;
1505
+ ASN1_VALUE *asn1_value;
1506
+ } value;
1507
+ };
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
+
1537
+ // ASN1_TYPE_get returns the type of |a|, which will be one of the |V_ASN1_*|
1538
+ // constants, or zero if |a| is not fully initialized.
1539
+ OPENSSL_EXPORT int ASN1_TYPE_get(const ASN1_TYPE *a);
1540
+
1541
+ // ASN1_TYPE_set sets |a| to an |ASN1_TYPE| of type |type| and value |value|,
1542
+ // releasing the previous contents of |a|.
1543
+ //
1544
+ // If |type| is |V_ASN1_BOOLEAN|, |a| is set to FALSE if |value| is NULL and
1545
+ // TRUE otherwise. If setting |a| to TRUE, |value| may be an invalid pointer,
1546
+ // such as (void*)1.
1547
+ //
1548
+ // If |type| is |V_ASN1_NULL|, |value| must be NULL.
1549
+ //
1550
+ // For other values of |type|, this function takes ownership of |value|, which
1551
+ // must point to an object of the corresponding type. See |ASN1_TYPE| for
1552
+ // details.
1553
+ OPENSSL_EXPORT void ASN1_TYPE_set(ASN1_TYPE *a, int type, void *value);
1554
+
1555
+ // ASN1_TYPE_set1 behaves like |ASN1_TYPE_set| except it does not take ownership
1556
+ // of |value|. It returns one on success and zero on error.
1557
+ OPENSSL_EXPORT int ASN1_TYPE_set1(ASN1_TYPE *a, int type, const void *value);
1558
+
1559
+ // ASN1_TYPE_cmp returns zero if |a| and |b| are equal and some non-zero value
1560
+ // otherwise. Note this function can only be used for equality checks, not an
1561
+ // ordering.
1562
+ OPENSSL_EXPORT int ASN1_TYPE_cmp(const ASN1_TYPE *a, const ASN1_TYPE *b);
1563
+
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);
1597
+
1598
+
1599
+ // Human-readable output.
1600
+ //
1601
+ // The following functions output types in some human-readable format. These
1602
+ // functions may be used for debugging and logging. However, the output should
1603
+ // not be consumed programmatically. They may be ambiguous or lose information.
1604
+
1605
+ // ASN1_UTCTIME_print writes a human-readable representation of |a| to |out|. It
1606
+ // returns one on success and zero on error.
1607
+ OPENSSL_EXPORT int ASN1_UTCTIME_print(BIO *out, const ASN1_UTCTIME *a);
1608
+
1609
+ // ASN1_GENERALIZEDTIME_print writes a human-readable representation of |a| to
1610
+ // |out|. It returns one on success and zero on error.
1611
+ OPENSSL_EXPORT int ASN1_GENERALIZEDTIME_print(BIO *out,
1612
+ const ASN1_GENERALIZEDTIME *a);
1613
+
1614
+ // ASN1_TIME_print writes a human-readable representation of |a| to |out|. It
1615
+ // returns one on success and zero on error.
1616
+ OPENSSL_EXPORT int ASN1_TIME_print(BIO *out, const ASN1_TIME *a);
1617
+
1618
+ // ASN1_STRING_print writes a human-readable representation of |str| to |out|.
1619
+ // It returns one on success and zero on error. Unprintable characters are
1620
+ // replaced with '.'.
1621
+ OPENSSL_EXPORT int ASN1_STRING_print(BIO *out, const ASN1_STRING *str);
658
1622
 
659
- // If this is set we don't attempt to interpret content:
660
- // just assume all strings are 1 byte per character. This
661
- // will produce some pretty odd looking output!
1623
+ // ASN1_STRFLGS_ESC_2253 causes characters to be escaped as in RFC 2253, section
1624
+ // 2.4.
1625
+ #define ASN1_STRFLGS_ESC_2253 1
1626
+
1627
+ // ASN1_STRFLGS_ESC_CTRL causes all control characters to be escaped.
1628
+ #define ASN1_STRFLGS_ESC_CTRL 2
1629
+
1630
+ // ASN1_STRFLGS_ESC_MSB causes all characters above 127 to be escaped.
1631
+ #define ASN1_STRFLGS_ESC_MSB 4
1632
+
1633
+ // ASN1_STRFLGS_ESC_QUOTE causes the string to be surrounded by quotes, rather
1634
+ // than using backslashes, when characters are escaped. Fewer characters will
1635
+ // require escapes in this case.
1636
+ #define ASN1_STRFLGS_ESC_QUOTE 8
662
1637
 
1638
+ // ASN1_STRFLGS_UTF8_CONVERT causes the string to be encoded as UTF-8, with each
1639
+ // byte in the UTF-8 encoding treated as an individual character for purposes of
1640
+ // escape sequences. If not set, each Unicode codepoint in the string is treated
1641
+ // as a character, with wide characters escaped as "\Uxxxx" or "\Wxxxxxxxx".
1642
+ // Note this can be ambiguous if |ASN1_STRFLGS_ESC_*| are all unset. In that
1643
+ // case, backslashes are not escaped, but wide characters are.
1644
+ #define ASN1_STRFLGS_UTF8_CONVERT 0x10
1645
+
1646
+ // ASN1_STRFLGS_IGNORE_TYPE causes the string type to be ignored. The
1647
+ // |ASN1_STRING| in-memory representation will be printed directly.
663
1648
  #define ASN1_STRFLGS_IGNORE_TYPE 0x20
664
1649
 
665
- // If this is set we include the string type in the output
1650
+ // ASN1_STRFLGS_SHOW_TYPE causes the string type to be included in the output.
666
1651
  #define ASN1_STRFLGS_SHOW_TYPE 0x40
667
1652
 
668
- // This determines which strings to display and which to
669
- // 'dump' (hex dump of content octets or DER encoding). We can
670
- // only dump non character strings or everything. If we
671
- // don't dump 'unknown' they are interpreted as character
672
- // strings with 1 octet per character and are subject to
673
- // the usual escaping options.
674
-
1653
+ // ASN1_STRFLGS_DUMP_ALL causes all strings to be printed as a hexdump, using
1654
+ // RFC 2253 hexstring notation, such as "#0123456789ABCDEF".
675
1655
  #define ASN1_STRFLGS_DUMP_ALL 0x80
676
- #define ASN1_STRFLGS_DUMP_UNKNOWN 0x100
677
1656
 
678
- // These determine what 'dumping' does, we can dump the
679
- // content octets or the DER encoding: both use the
680
- // RFC2253 #XXXXX notation.
1657
+ // ASN1_STRFLGS_DUMP_UNKNOWN behaves like |ASN1_STRFLGS_DUMP_ALL| but only
1658
+ // applies to values of unknown type. If unset, unknown values will print
1659
+ // their contents as single-byte characters with escape sequences.
1660
+ #define ASN1_STRFLGS_DUMP_UNKNOWN 0x100
681
1661
 
1662
+ // ASN1_STRFLGS_DUMP_DER causes hexdumped strings (as determined by
1663
+ // |ASN1_STRFLGS_DUMP_ALL| or |ASN1_STRFLGS_DUMP_UNKNOWN|) to print the entire
1664
+ // DER element as in RFC 2253, rather than only the contents of the
1665
+ // |ASN1_STRING|.
682
1666
  #define ASN1_STRFLGS_DUMP_DER 0x200
683
1667
 
684
- // All the string flags consistent with RFC2253,
685
- // escaping control characters isn't essential in
686
- // RFC2253 but it is advisable anyway.
687
-
1668
+ // ASN1_STRFLGS_RFC2253 causes the string to be escaped as in RFC 2253,
1669
+ // additionally escaping control characters.
688
1670
  #define ASN1_STRFLGS_RFC2253 \
689
1671
  (ASN1_STRFLGS_ESC_2253 | ASN1_STRFLGS_ESC_CTRL | ASN1_STRFLGS_ESC_MSB | \
690
1672
  ASN1_STRFLGS_UTF8_CONVERT | ASN1_STRFLGS_DUMP_UNKNOWN | \
691
1673
  ASN1_STRFLGS_DUMP_DER)
692
1674
 
693
- DEFINE_STACK_OF(ASN1_INTEGER)
694
- DECLARE_ASN1_SET_OF(ASN1_INTEGER)
1675
+ // ASN1_STRING_print_ex writes a human-readable representation of |str| to
1676
+ // |out|. It returns the number of bytes written on success and -1 on error. If
1677
+ // |out| is NULL, it returns the number of bytes it would have written, without
1678
+ // writing anything.
1679
+ //
1680
+ // The |flags| should be a combination of combination of |ASN1_STRFLGS_*|
1681
+ // constants. See the documentation for each flag for how it controls the
1682
+ // output. If unsure, use |ASN1_STRFLGS_RFC2253|.
1683
+ OPENSSL_EXPORT int ASN1_STRING_print_ex(BIO *out, const ASN1_STRING *str,
1684
+ unsigned long flags);
695
1685
 
696
- DEFINE_STACK_OF(ASN1_TYPE)
697
- DECLARE_ASN1_SET_OF(ASN1_TYPE)
1686
+ // ASN1_STRING_print_ex_fp behaves like |ASN1_STRING_print_ex| but writes to a
1687
+ // |FILE| rather than a |BIO|.
1688
+ OPENSSL_EXPORT int ASN1_STRING_print_ex_fp(FILE *fp, const ASN1_STRING *str,
1689
+ unsigned long flags);
698
1690
 
699
- typedef STACK_OF(ASN1_TYPE) ASN1_SEQUENCE_ANY;
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);
700
1695
 
701
- DECLARE_ASN1_ENCODE_FUNCTIONS_const(ASN1_SEQUENCE_ANY, ASN1_SEQUENCE_ANY)
702
- DECLARE_ASN1_ENCODE_FUNCTIONS_const(ASN1_SEQUENCE_ANY, ASN1_SET_ANY)
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);
1700
+
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);
703
1705
 
704
- struct X509_algor_st {
705
- ASN1_OBJECT *algorithm;
706
- ASN1_TYPE *parameter;
707
- } /* X509_ALGOR */;
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.
1710
+ //
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);
1715
+
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);
1719
+
1720
+
1721
+ // Low-level encoding functions.
1722
+
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);
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);
1752
+
1753
+ // ASN1_put_eoc writes two zero bytes to |*outp|, advances |*outp| to point past
1754
+ // those bytes, and returns two.
1755
+ //
1756
+ // Use definite-length encoding instead.
1757
+ OPENSSL_EXPORT int ASN1_put_eoc(unsigned char **outp);
1758
+
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);
1768
+
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.
1775
+
1776
+ #define DECLARE_ASN1_FUNCTIONS(type) DECLARE_ASN1_FUNCTIONS_name(type, type)
1777
+
1778
+ #define DECLARE_ASN1_ALLOC_FUNCTIONS(type) \
1779
+ DECLARE_ASN1_ALLOC_FUNCTIONS_name(type, type)
1780
+
1781
+ #define DECLARE_ASN1_FUNCTIONS_name(type, name) \
1782
+ DECLARE_ASN1_ALLOC_FUNCTIONS_name(type, name) \
1783
+ DECLARE_ASN1_ENCODE_FUNCTIONS(type, name, name)
1784
+
1785
+ #define DECLARE_ASN1_FUNCTIONS_fname(type, itname, name) \
1786
+ DECLARE_ASN1_ALLOC_FUNCTIONS_name(type, name) \
1787
+ DECLARE_ASN1_ENCODE_FUNCTIONS(type, itname, name)
1788
+
1789
+ #define DECLARE_ASN1_ENCODE_FUNCTIONS(type, itname, name) \
1790
+ OPENSSL_EXPORT type *d2i_##name(type **a, const unsigned char **in, \
1791
+ long len); \
1792
+ OPENSSL_EXPORT int i2d_##name(type *a, unsigned char **out); \
1793
+ DECLARE_ASN1_ITEM(itname)
1794
+
1795
+ #define DECLARE_ASN1_ENCODE_FUNCTIONS_const(type, name) \
1796
+ OPENSSL_EXPORT type *d2i_##name(type **a, const unsigned char **in, \
1797
+ long len); \
1798
+ OPENSSL_EXPORT int i2d_##name(const type *a, unsigned char **out); \
1799
+ DECLARE_ASN1_ITEM(name)
1800
+
1801
+ #define DECLARE_ASN1_FUNCTIONS_const(name) \
1802
+ DECLARE_ASN1_ALLOC_FUNCTIONS(name) \
1803
+ DECLARE_ASN1_ENCODE_FUNCTIONS_const(name, name)
1804
+
1805
+ #define DECLARE_ASN1_ALLOC_FUNCTIONS_name(type, name) \
1806
+ OPENSSL_EXPORT type *name##_new(void); \
1807
+ OPENSSL_EXPORT void name##_free(type *a);
1808
+
1809
+
1810
+ // Deprecated functions.
1811
+
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);
1820
+
1821
+ // ASN1_STRING_set_default_mask does nothing.
1822
+ OPENSSL_EXPORT void ASN1_STRING_set_default_mask(unsigned long mask);
1823
+
1824
+ // ASN1_STRING_set_default_mask_asc returns one.
1825
+ OPENSSL_EXPORT int ASN1_STRING_set_default_mask_asc(const char *p);
708
1826
 
709
- DECLARE_ASN1_FUNCTIONS(X509_ALGOR)
1827
+ // ASN1_STRING_get_default_mask returns |B_ASN1_UTF8STRING|.
1828
+ OPENSSL_EXPORT unsigned long ASN1_STRING_get_default_mask(void);
710
1829
 
711
- // This is used to contain a list of bit names
712
- typedef struct BIT_STRING_BITNAME_st {
713
- int bitnum;
714
- const char *lname;
715
- const char *sname;
716
- } BIT_STRING_BITNAME;
1830
+ // ASN1_STRING_TABLE_cleanup does nothing.
1831
+ OPENSSL_EXPORT void ASN1_STRING_TABLE_cleanup(void);
717
1832
 
718
1833
  // M_ASN1_* are legacy aliases for various |ASN1_STRING| functions. Use the
719
1834
  // functions themselves.
@@ -763,226 +1878,53 @@ typedef struct BIT_STRING_BITNAME_st {
763
1878
  #define M_ASN1_UTF8STRING_new() ASN1_UTF8STRING_new()
764
1879
  #define M_ASN1_UTF8STRING_free(a) ASN1_UTF8STRING_free(a)
765
1880
 
766
- #define B_ASN1_TIME B_ASN1_UTCTIME | B_ASN1_GENERALIZEDTIME
767
-
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.
768
1887
  #define B_ASN1_PRINTABLE \
769
- B_ASN1_NUMERICSTRING | B_ASN1_PRINTABLESTRING | B_ASN1_T61STRING | \
770
- B_ASN1_IA5STRING | B_ASN1_BIT_STRING | B_ASN1_UNIVERSALSTRING | \
771
- B_ASN1_BMPSTRING | B_ASN1_UTF8STRING | B_ASN1_SEQUENCE | B_ASN1_UNKNOWN
772
-
773
- #define B_ASN1_DIRECTORYSTRING \
774
- B_ASN1_PRINTABLESTRING | B_ASN1_TELETEXSTRING | B_ASN1_BMPSTRING | \
775
- B_ASN1_UNIVERSALSTRING | B_ASN1_UTF8STRING
776
-
777
- #define B_ASN1_DISPLAYTEXT \
778
- B_ASN1_IA5STRING | B_ASN1_VISIBLESTRING | B_ASN1_BMPSTRING | B_ASN1_UTF8STRING
779
-
780
- DECLARE_ASN1_FUNCTIONS_fname(ASN1_TYPE, ASN1_ANY, ASN1_TYPE)
781
-
782
- OPENSSL_EXPORT ASN1_OBJECT *ASN1_OBJECT_new(void);
783
- OPENSSL_EXPORT void ASN1_OBJECT_free(ASN1_OBJECT *a);
784
- OPENSSL_EXPORT int i2d_ASN1_OBJECT(const ASN1_OBJECT *a, unsigned char **pp);
785
- OPENSSL_EXPORT ASN1_OBJECT *c2i_ASN1_OBJECT(ASN1_OBJECT **a,
786
- const unsigned char **pp,
787
- long length);
788
- OPENSSL_EXPORT ASN1_OBJECT *d2i_ASN1_OBJECT(ASN1_OBJECT **a,
789
- const unsigned char **pp,
790
- long length);
791
-
792
- DECLARE_ASN1_ITEM(ASN1_OBJECT)
793
-
794
- DECLARE_ASN1_SET_OF(ASN1_OBJECT)
795
-
796
- DECLARE_ASN1_FUNCTIONS(ASN1_BIT_STRING)
797
- OPENSSL_EXPORT int i2c_ASN1_BIT_STRING(const ASN1_BIT_STRING *a,
798
- unsigned char **pp);
799
- OPENSSL_EXPORT ASN1_BIT_STRING *c2i_ASN1_BIT_STRING(ASN1_BIT_STRING **a,
800
- const unsigned char **pp,
801
- long length);
802
- OPENSSL_EXPORT int ASN1_BIT_STRING_set(ASN1_BIT_STRING *a, unsigned char *d,
803
- int length);
804
- OPENSSL_EXPORT int ASN1_BIT_STRING_set_bit(ASN1_BIT_STRING *a, int n,
805
- int value);
806
- OPENSSL_EXPORT int ASN1_BIT_STRING_get_bit(const ASN1_BIT_STRING *a, int n);
807
- OPENSSL_EXPORT int ASN1_BIT_STRING_check(const ASN1_BIT_STRING *a,
808
- unsigned char *flags, int flags_len);
809
-
810
- OPENSSL_EXPORT int i2d_ASN1_BOOLEAN(int a, unsigned char **pp);
811
- OPENSSL_EXPORT int d2i_ASN1_BOOLEAN(int *a, const unsigned char **pp,
812
- long length);
813
-
814
- DECLARE_ASN1_FUNCTIONS(ASN1_INTEGER)
815
- OPENSSL_EXPORT int i2c_ASN1_INTEGER(const ASN1_INTEGER *a, unsigned char **pp);
816
- OPENSSL_EXPORT ASN1_INTEGER *c2i_ASN1_INTEGER(ASN1_INTEGER **a,
817
- const unsigned char **pp,
818
- long length);
819
- OPENSSL_EXPORT ASN1_INTEGER *ASN1_INTEGER_dup(const ASN1_INTEGER *x);
820
- OPENSSL_EXPORT int ASN1_INTEGER_cmp(const ASN1_INTEGER *x,
821
- const ASN1_INTEGER *y);
822
-
823
- DECLARE_ASN1_FUNCTIONS(ASN1_ENUMERATED)
824
-
825
- OPENSSL_EXPORT int ASN1_UTCTIME_check(const ASN1_UTCTIME *a);
826
- OPENSSL_EXPORT ASN1_UTCTIME *ASN1_UTCTIME_set(ASN1_UTCTIME *s, time_t t);
827
- OPENSSL_EXPORT ASN1_UTCTIME *ASN1_UTCTIME_adj(ASN1_UTCTIME *s, time_t t,
828
- int offset_day, long offset_sec);
829
- OPENSSL_EXPORT int ASN1_UTCTIME_set_string(ASN1_UTCTIME *s, const char *str);
830
- OPENSSL_EXPORT int ASN1_UTCTIME_cmp_time_t(const ASN1_UTCTIME *s, time_t t);
831
- #if 0
832
- time_t ASN1_UTCTIME_get(const ASN1_UTCTIME *s);
833
- #endif
834
-
835
- OPENSSL_EXPORT int ASN1_GENERALIZEDTIME_check(const ASN1_GENERALIZEDTIME *a);
836
- OPENSSL_EXPORT ASN1_GENERALIZEDTIME *ASN1_GENERALIZEDTIME_set(
837
- ASN1_GENERALIZEDTIME *s, time_t t);
838
- OPENSSL_EXPORT ASN1_GENERALIZEDTIME *ASN1_GENERALIZEDTIME_adj(
839
- ASN1_GENERALIZEDTIME *s, time_t t, int offset_day, long offset_sec);
840
- OPENSSL_EXPORT int ASN1_GENERALIZEDTIME_set_string(ASN1_GENERALIZEDTIME *s,
841
- const char *str);
842
- OPENSSL_EXPORT int ASN1_TIME_diff(int *pday, int *psec, const ASN1_TIME *from,
843
- const ASN1_TIME *to);
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)
844
1891
 
845
- DECLARE_ASN1_FUNCTIONS(ASN1_OCTET_STRING)
846
- OPENSSL_EXPORT ASN1_OCTET_STRING *ASN1_OCTET_STRING_dup(
847
- const ASN1_OCTET_STRING *a);
848
- OPENSSL_EXPORT int ASN1_OCTET_STRING_cmp(const ASN1_OCTET_STRING *a,
849
- const ASN1_OCTET_STRING *b);
850
- OPENSSL_EXPORT int ASN1_OCTET_STRING_set(ASN1_OCTET_STRING *str,
851
- const unsigned char *data, int len);
852
-
853
- DECLARE_ASN1_FUNCTIONS(ASN1_VISIBLESTRING)
854
- DECLARE_ASN1_FUNCTIONS(ASN1_UNIVERSALSTRING)
855
- DECLARE_ASN1_FUNCTIONS(ASN1_UTF8STRING)
856
- DECLARE_ASN1_FUNCTIONS(ASN1_NULL)
857
- DECLARE_ASN1_FUNCTIONS(ASN1_BMPSTRING)
858
-
859
- DECLARE_ASN1_FUNCTIONS_name(ASN1_STRING, ASN1_PRINTABLE)
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);
860
1896
 
861
- DECLARE_ASN1_FUNCTIONS_name(ASN1_STRING, DIRECTORYSTRING)
862
- DECLARE_ASN1_FUNCTIONS_name(ASN1_STRING, DISPLAYTEXT)
863
- DECLARE_ASN1_FUNCTIONS(ASN1_PRINTABLESTRING)
864
- DECLARE_ASN1_FUNCTIONS(ASN1_T61STRING)
865
- DECLARE_ASN1_FUNCTIONS(ASN1_IA5STRING)
866
- DECLARE_ASN1_FUNCTIONS(ASN1_GENERALSTRING)
867
- DECLARE_ASN1_FUNCTIONS(ASN1_UTCTIME)
868
- DECLARE_ASN1_FUNCTIONS(ASN1_GENERALIZEDTIME)
869
- DECLARE_ASN1_FUNCTIONS(ASN1_TIME)
1897
+ // ASN1_PRINTABLE_free calls |ASN1_STRING_free|.
1898
+ OPENSSL_EXPORT void ASN1_PRINTABLE_free(ASN1_STRING *str);
870
1899
 
871
- OPENSSL_EXPORT ASN1_TIME *ASN1_TIME_set(ASN1_TIME *s, time_t t);
872
- OPENSSL_EXPORT ASN1_TIME *ASN1_TIME_adj(ASN1_TIME *s, time_t t, int offset_day,
873
- long offset_sec);
874
- OPENSSL_EXPORT int ASN1_TIME_check(const ASN1_TIME *t);
875
- OPENSSL_EXPORT ASN1_GENERALIZEDTIME *ASN1_TIME_to_generalizedtime(
876
- const ASN1_TIME *t, ASN1_GENERALIZEDTIME **out);
877
- OPENSSL_EXPORT int ASN1_TIME_set_string(ASN1_TIME *s, const char *str);
878
-
879
- OPENSSL_EXPORT int i2a_ASN1_INTEGER(BIO *bp, const ASN1_INTEGER *a);
880
- OPENSSL_EXPORT int i2a_ASN1_ENUMERATED(BIO *bp, const ASN1_ENUMERATED *a);
881
- OPENSSL_EXPORT int i2a_ASN1_OBJECT(BIO *bp, const ASN1_OBJECT *a);
882
- OPENSSL_EXPORT int i2a_ASN1_STRING(BIO *bp, const ASN1_STRING *a, int type);
883
- OPENSSL_EXPORT int i2t_ASN1_OBJECT(char *buf, int buf_len,
884
- const ASN1_OBJECT *a);
885
-
886
- OPENSSL_EXPORT ASN1_OBJECT *ASN1_OBJECT_create(int nid,
887
- const unsigned char *data,
888
- int len, const char *sn,
889
- const char *ln);
890
-
891
- OPENSSL_EXPORT int ASN1_INTEGER_set(ASN1_INTEGER *a, long v);
892
- OPENSSL_EXPORT int ASN1_INTEGER_set_uint64(ASN1_INTEGER *out, uint64_t v);
893
- OPENSSL_EXPORT long ASN1_INTEGER_get(const ASN1_INTEGER *a);
894
- OPENSSL_EXPORT ASN1_INTEGER *BN_to_ASN1_INTEGER(const BIGNUM *bn,
895
- ASN1_INTEGER *ai);
896
- OPENSSL_EXPORT BIGNUM *ASN1_INTEGER_to_BN(const ASN1_INTEGER *ai, BIGNUM *bn);
897
-
898
- OPENSSL_EXPORT int ASN1_ENUMERATED_set(ASN1_ENUMERATED *a, long v);
899
- OPENSSL_EXPORT long ASN1_ENUMERATED_get(const ASN1_ENUMERATED *a);
900
- OPENSSL_EXPORT ASN1_ENUMERATED *BN_to_ASN1_ENUMERATED(const BIGNUM *bn,
901
- ASN1_ENUMERATED *ai);
902
- OPENSSL_EXPORT BIGNUM *ASN1_ENUMERATED_to_BN(const ASN1_ENUMERATED *ai,
903
- BIGNUM *bn);
904
-
905
- // General
906
- // given a string, return the correct type, max is the maximum length
907
- OPENSSL_EXPORT int ASN1_PRINTABLE_type(const unsigned char *s, int max);
908
-
909
- OPENSSL_EXPORT unsigned long ASN1_tag2bit(int tag);
910
-
911
- // SPECIALS
912
- OPENSSL_EXPORT int ASN1_get_object(const unsigned char **pp, long *plength,
913
- int *ptag, int *pclass, long omax);
914
- OPENSSL_EXPORT void ASN1_put_object(unsigned char **pp, int constructed,
915
- int length, int tag, int xclass);
916
- OPENSSL_EXPORT int ASN1_put_eoc(unsigned char **pp);
917
- OPENSSL_EXPORT int ASN1_object_size(int constructed, int length, int tag);
918
-
919
- OPENSSL_EXPORT void *ASN1_item_dup(const ASN1_ITEM *it, void *x);
920
-
921
- #ifndef OPENSSL_NO_FP_API
922
- OPENSSL_EXPORT void *ASN1_item_d2i_fp(const ASN1_ITEM *it, FILE *in, void *x);
923
- OPENSSL_EXPORT int ASN1_item_i2d_fp(const ASN1_ITEM *it, FILE *out, void *x);
924
- OPENSSL_EXPORT int ASN1_STRING_print_ex_fp(FILE *fp, const ASN1_STRING *str,
925
- unsigned long flags);
926
- #endif
927
-
928
- OPENSSL_EXPORT int ASN1_STRING_to_UTF8(unsigned char **out, ASN1_STRING *in);
929
-
930
- OPENSSL_EXPORT void *ASN1_item_d2i_bio(const ASN1_ITEM *it, BIO *in, void *x);
931
- OPENSSL_EXPORT int ASN1_item_i2d_bio(const ASN1_ITEM *it, BIO *out, void *x);
932
- OPENSSL_EXPORT int ASN1_UTCTIME_print(BIO *fp, const ASN1_UTCTIME *a);
933
- OPENSSL_EXPORT int ASN1_GENERALIZEDTIME_print(BIO *fp,
934
- const ASN1_GENERALIZEDTIME *a);
935
- OPENSSL_EXPORT int ASN1_TIME_print(BIO *fp, const ASN1_TIME *a);
936
- OPENSSL_EXPORT int ASN1_STRING_print(BIO *bp, const ASN1_STRING *v);
937
- OPENSSL_EXPORT int ASN1_STRING_print_ex(BIO *out, const ASN1_STRING *str,
938
- unsigned long flags);
939
- OPENSSL_EXPORT const char *ASN1_tag2str(int tag);
940
-
941
- // Used to load and write netscape format cert
942
-
943
- OPENSSL_EXPORT void *ASN1_item_unpack(const ASN1_STRING *oct,
944
- const ASN1_ITEM *it);
945
-
946
- OPENSSL_EXPORT ASN1_STRING *ASN1_item_pack(void *obj, const ASN1_ITEM *it,
947
- ASN1_OCTET_STRING **oct);
948
-
949
- OPENSSL_EXPORT void ASN1_STRING_set_default_mask(unsigned long mask);
950
- OPENSSL_EXPORT int ASN1_STRING_set_default_mask_asc(const char *p);
951
- OPENSSL_EXPORT unsigned long ASN1_STRING_get_default_mask(void);
952
- OPENSSL_EXPORT int ASN1_mbstring_copy(ASN1_STRING **out,
953
- const unsigned char *in, int len,
954
- int inform, unsigned long mask);
955
- OPENSSL_EXPORT int ASN1_mbstring_ncopy(ASN1_STRING **out,
956
- const unsigned char *in, int len,
957
- int inform, unsigned long mask,
958
- long minsize, long maxsize);
959
-
960
- OPENSSL_EXPORT ASN1_STRING *ASN1_STRING_set_by_NID(ASN1_STRING **out,
961
- const unsigned char *in,
962
- int inlen, int inform,
963
- int nid);
964
- OPENSSL_EXPORT ASN1_STRING_TABLE *ASN1_STRING_TABLE_get(int nid);
965
- OPENSSL_EXPORT int ASN1_STRING_TABLE_add(int, long, long, unsigned long,
966
- unsigned long);
967
- OPENSSL_EXPORT void ASN1_STRING_TABLE_cleanup(void);
968
-
969
- // 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);
970
1911
 
971
- // Old API compatible functions
972
- OPENSSL_EXPORT ASN1_VALUE *ASN1_item_new(const ASN1_ITEM *it);
973
- OPENSSL_EXPORT void ASN1_item_free(ASN1_VALUE *val, const ASN1_ITEM *it);
974
- OPENSSL_EXPORT ASN1_VALUE *ASN1_item_d2i(ASN1_VALUE **val,
975
- const unsigned char **in, long len,
976
- const ASN1_ITEM *it);
977
- OPENSSL_EXPORT int ASN1_item_i2d(ASN1_VALUE *val, unsigned char **out,
978
- 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);
979
1917
 
980
- OPENSSL_EXPORT ASN1_TYPE *ASN1_generate_nconf(const char *str, CONF *nconf);
981
- 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)
982
1924
 
983
1925
 
984
- #ifdef __cplusplus
985
- }
1926
+ #if defined(__cplusplus)
1927
+ } // extern C
986
1928
 
987
1929
  extern "C++" {
988
1930
 
@@ -1092,5 +2034,6 @@ BSSL_NAMESPACE_END
1092
2034
  #define ASN1_R_WRONG_TYPE 191
1093
2035
  #define ASN1_R_NESTED_TOO_DEEP 192
1094
2036
  #define ASN1_R_BAD_TEMPLATE 193
2037
+ #define ASN1_R_INVALID_BIT_STRING_PADDING 194
1095
2038
 
1096
2039
  #endif