grpc 1.30.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 (2443) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +1497 -18376
  3. data/etc/roots.pem +592 -899
  4. data/include/grpc/byte_buffer.h +1 -1
  5. data/include/grpc/byte_buffer_reader.h +1 -1
  6. data/include/grpc/compression.h +1 -1
  7. data/include/grpc/event_engine/README.md +38 -0
  8. data/include/grpc/event_engine/endpoint_config.h +43 -0
  9. data/include/grpc/event_engine/event_engine.h +399 -0
  10. data/include/grpc/event_engine/internal/memory_allocator_impl.h +68 -0
  11. data/include/grpc/event_engine/memory_allocator.h +226 -0
  12. data/include/grpc/event_engine/memory_request.h +57 -0
  13. data/include/grpc/event_engine/port.h +39 -0
  14. data/include/grpc/fork.h +1 -1
  15. data/include/grpc/grpc.h +90 -25
  16. data/include/grpc/grpc_posix.h +22 -18
  17. data/include/grpc/grpc_security.h +563 -315
  18. data/include/grpc/grpc_security_constants.h +20 -14
  19. data/include/grpc/impl/codegen/README.md +22 -0
  20. data/include/grpc/impl/codegen/atm.h +5 -3
  21. data/include/grpc/impl/codegen/atm_gcc_atomic.h +2 -0
  22. data/include/grpc/impl/codegen/atm_gcc_sync.h +2 -0
  23. data/include/grpc/impl/codegen/atm_windows.h +6 -0
  24. data/include/grpc/impl/codegen/byte_buffer.h +3 -1
  25. data/include/grpc/impl/codegen/byte_buffer_reader.h +2 -0
  26. data/include/grpc/impl/codegen/compression_types.h +2 -2
  27. data/include/grpc/impl/codegen/connectivity_state.h +2 -0
  28. data/include/grpc/impl/codegen/fork.h +2 -0
  29. data/include/grpc/impl/codegen/gpr_slice.h +2 -0
  30. data/include/grpc/impl/codegen/gpr_types.h +2 -0
  31. data/include/grpc/impl/codegen/grpc_types.h +84 -53
  32. data/include/grpc/impl/codegen/log.h +2 -2
  33. data/include/grpc/impl/codegen/port_platform.h +100 -97
  34. data/include/grpc/impl/codegen/propagation_bits.h +2 -0
  35. data/include/grpc/impl/codegen/slice.h +6 -1
  36. data/include/grpc/impl/codegen/status.h +2 -0
  37. data/include/grpc/impl/codegen/sync.h +8 -5
  38. data/include/grpc/impl/codegen/sync_abseil.h +2 -0
  39. data/include/grpc/impl/codegen/sync_custom.h +2 -0
  40. data/include/grpc/impl/codegen/sync_generic.h +3 -0
  41. data/include/grpc/impl/codegen/sync_posix.h +4 -2
  42. data/include/grpc/impl/codegen/sync_windows.h +6 -0
  43. data/include/grpc/module.modulemap +14 -14
  44. data/include/grpc/slice.h +1 -12
  45. data/include/grpc/slice_buffer.h +3 -3
  46. data/include/grpc/status.h +1 -1
  47. data/include/grpc/support/atm.h +1 -1
  48. data/include/grpc/support/atm_gcc_atomic.h +1 -1
  49. data/include/grpc/support/atm_gcc_sync.h +1 -1
  50. data/include/grpc/support/atm_windows.h +1 -1
  51. data/include/grpc/support/log.h +1 -1
  52. data/include/grpc/support/port_platform.h +1 -1
  53. data/include/grpc/support/sync.h +4 -4
  54. data/include/grpc/support/sync_abseil.h +1 -1
  55. data/include/grpc/support/sync_custom.h +1 -1
  56. data/include/grpc/support/sync_generic.h +1 -1
  57. data/include/grpc/support/sync_posix.h +1 -1
  58. data/include/grpc/support/sync_windows.h +1 -1
  59. data/include/grpc/support/time.h +9 -9
  60. data/src/core/ext/filters/census/grpc_context.cc +1 -0
  61. data/src/core/ext/filters/channel_idle/channel_idle_filter.cc +309 -0
  62. data/src/core/ext/filters/channel_idle/channel_idle_filter.h +122 -0
  63. data/src/core/ext/filters/channel_idle/idle_filter_state.cc +96 -0
  64. data/src/core/ext/filters/channel_idle/idle_filter_state.h +66 -0
  65. data/src/core/ext/filters/client_channel/backend_metric.cc +33 -35
  66. data/src/core/ext/filters/client_channel/backend_metric.h +4 -3
  67. data/src/core/ext/filters/client_channel/backup_poller.cc +20 -14
  68. data/src/core/ext/filters/client_channel/backup_poller.h +1 -0
  69. data/src/core/ext/filters/client_channel/channel_connectivity.cc +158 -202
  70. data/src/core/ext/filters/client_channel/client_channel.cc +2284 -3096
  71. data/src/core/ext/filters/client_channel/client_channel.h +566 -63
  72. data/src/core/ext/filters/client_channel/client_channel_channelz.cc +6 -5
  73. data/src/core/ext/filters/client_channel/client_channel_channelz.h +2 -5
  74. data/src/core/ext/filters/client_channel/client_channel_factory.cc +2 -1
  75. data/src/core/ext/filters/client_channel/client_channel_factory.h +18 -19
  76. data/src/core/ext/filters/client_channel/client_channel_plugin.cc +19 -22
  77. data/src/core/ext/filters/client_channel/config_selector.cc +59 -0
  78. data/src/core/ext/filters/client_channel/config_selector.h +145 -0
  79. data/src/core/ext/filters/client_channel/connector.h +20 -20
  80. data/src/core/ext/filters/client_channel/dynamic_filters.cc +189 -0
  81. data/src/core/ext/filters/client_channel/dynamic_filters.h +99 -0
  82. data/src/core/ext/filters/client_channel/global_subchannel_pool.cc +27 -143
  83. data/src/core/ext/filters/client_channel/global_subchannel_pool.h +16 -24
  84. data/src/core/ext/filters/client_channel/health/health_check_client.cc +129 -572
  85. data/src/core/ext/filters/client_channel/health/health_check_client.h +24 -158
  86. data/src/core/ext/filters/client_channel/http_connect_handshaker.cc +60 -62
  87. data/src/core/ext/filters/client_channel/http_connect_handshaker.h +10 -2
  88. data/src/core/ext/filters/client_channel/http_proxy.cc +113 -117
  89. data/src/core/ext/filters/client_channel/http_proxy.h +17 -0
  90. data/src/core/ext/filters/client_channel/lb_policy/address_filtering.cc +52 -38
  91. data/src/core/ext/filters/client_channel/lb_policy/address_filtering.h +12 -9
  92. data/src/core/ext/filters/client_channel/lb_policy/child_policy_handler.cc +16 -9
  93. data/src/core/ext/filters/client_channel/lb_policy/child_policy_handler.h +1 -1
  94. data/src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc +12 -24
  95. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +519 -388
  96. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.h +3 -6
  97. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.cc +1 -14
  98. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.h +1 -4
  99. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.cc +4 -3
  100. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h +6 -5
  101. data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc +20 -21
  102. data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h +4 -4
  103. data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +106 -75
  104. data/src/core/ext/filters/client_channel/lb_policy/priority/priority.cc +307 -211
  105. data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.cc +804 -0
  106. data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.h +37 -0
  107. data/src/core/ext/filters/client_channel/lb_policy/rls/rls.cc +2542 -0
  108. data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +84 -84
  109. data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +32 -49
  110. data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +138 -96
  111. data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +443 -156
  112. data/src/core/ext/filters/client_channel/lb_policy/xds/xds.h +52 -24
  113. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_channel_args.h +29 -0
  114. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_impl.cc +872 -0
  115. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_manager.cc +710 -0
  116. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_resolver.cc +1215 -0
  117. data/src/core/ext/filters/client_channel/lb_policy.cc +23 -29
  118. data/src/core/ext/filters/client_channel/lb_policy.h +178 -142
  119. data/src/core/ext/filters/client_channel/lb_policy_factory.h +2 -1
  120. data/src/core/ext/filters/client_channel/lb_policy_registry.cc +13 -10
  121. data/src/core/ext/filters/client_channel/lb_policy_registry.h +1 -1
  122. data/src/core/ext/filters/client_channel/local_subchannel_pool.cc +27 -67
  123. data/src/core/ext/filters/client_channel/local_subchannel_pool.h +10 -9
  124. data/src/core/ext/filters/client_channel/resolver/binder/binder_resolver.cc +133 -0
  125. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +304 -339
  126. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h +22 -42
  127. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_event_engine.cc +31 -0
  128. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +31 -24
  129. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +58 -72
  130. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +524 -230
  131. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +44 -26
  132. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_event_engine.cc +28 -0
  133. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc +2 -2
  134. data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +98 -247
  135. data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc +60 -62
  136. data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h +10 -7
  137. data/src/core/ext/filters/client_channel/resolver/google_c2p/google_c2p_resolver.cc +400 -0
  138. data/src/core/ext/filters/client_channel/resolver/polling_resolver.cc +201 -0
  139. data/src/core/ext/filters/client_channel/resolver/polling_resolver.h +106 -0
  140. data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +71 -63
  141. data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +983 -101
  142. data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.h +28 -0
  143. data/src/core/ext/filters/client_channel/resolver_result_parsing.cc +57 -314
  144. data/src/core/ext/filters/client_channel/resolver_result_parsing.h +40 -62
  145. data/src/core/ext/filters/client_channel/retry_filter.cc +2655 -0
  146. data/src/core/ext/filters/client_channel/retry_filter.h +30 -0
  147. data/src/core/ext/filters/client_channel/retry_service_config.cc +314 -0
  148. data/src/core/ext/filters/client_channel/retry_service_config.h +102 -0
  149. data/src/core/ext/filters/client_channel/retry_throttle.cc +17 -60
  150. data/src/core/ext/filters/client_channel/retry_throttle.h +15 -7
  151. data/src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc +157 -0
  152. data/src/core/ext/filters/client_channel/subchannel.cc +284 -397
  153. data/src/core/ext/filters/client_channel/subchannel.h +116 -161
  154. data/src/core/ext/filters/client_channel/subchannel_interface.h +41 -5
  155. data/src/core/ext/filters/client_channel/subchannel_pool_interface.cc +38 -9
  156. data/src/core/ext/filters/client_channel/subchannel_pool_interface.h +27 -12
  157. data/src/core/ext/filters/client_channel/subchannel_stream_client.cc +544 -0
  158. data/src/core/ext/filters/client_channel/subchannel_stream_client.h +214 -0
  159. data/src/core/ext/filters/deadline/deadline_filter.cc +120 -114
  160. data/src/core/ext/filters/deadline/deadline_filter.h +9 -12
  161. data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +258 -0
  162. data/src/core/ext/filters/fault_injection/fault_injection_filter.h +62 -0
  163. data/src/core/ext/filters/fault_injection/service_config_parser.cc +179 -0
  164. data/src/core/ext/filters/fault_injection/service_config_parser.h +91 -0
  165. data/src/core/ext/filters/http/client/http_client_filter.cc +84 -539
  166. data/src/core/ext/filters/http/client/http_client_filter.h +21 -4
  167. data/src/core/ext/filters/http/client_authority_filter.cc +39 -103
  168. data/src/core/ext/filters/http/client_authority_filter.h +24 -5
  169. data/src/core/ext/filters/http/http_filters_plugin.cc +55 -69
  170. data/src/core/ext/filters/http/message_compress/message_compress_filter.cc +67 -157
  171. data/src/core/ext/filters/http/message_compress/message_decompress_filter.cc +103 -75
  172. data/src/core/ext/filters/http/message_compress/message_decompress_filter.h +3 -1
  173. data/src/core/ext/filters/http/server/http_server_filter.cc +89 -295
  174. data/src/core/ext/filters/message_size/message_size_filter.cc +101 -130
  175. data/src/core/ext/filters/message_size/message_size_filter.h +17 -3
  176. data/src/core/ext/filters/rbac/rbac_filter.cc +162 -0
  177. data/src/core/ext/filters/rbac/rbac_filter.h +76 -0
  178. data/src/core/ext/filters/rbac/rbac_service_config_parser.cc +606 -0
  179. data/src/core/ext/filters/rbac/rbac_service_config_parser.h +75 -0
  180. data/src/core/ext/filters/server_config_selector/server_config_selector.cc +61 -0
  181. data/src/core/ext/filters/server_config_selector/server_config_selector.h +71 -0
  182. data/src/core/ext/filters/server_config_selector/server_config_selector_filter.cc +143 -0
  183. data/src/core/ext/filters/server_config_selector/server_config_selector_filter.h +32 -0
  184. data/src/core/ext/transport/chttp2/alpn/alpn.cc +2 -1
  185. data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +335 -46
  186. data/src/core/ext/transport/chttp2/client/chttp2_connector.h +22 -5
  187. data/src/core/ext/transport/chttp2/server/chttp2_server.cc +1005 -355
  188. data/src/core/ext/transport/chttp2/server/chttp2_server.h +16 -2
  189. data/src/core/ext/transport/chttp2/transport/bin_decoder.cc +11 -9
  190. data/src/core/ext/transport/chttp2/transport/bin_decoder.h +2 -1
  191. data/src/core/ext/transport/chttp2/transport/bin_encoder.cc +1 -0
  192. data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +807 -778
  193. data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +24 -5
  194. data/src/core/ext/transport/chttp2/transport/context_list.cc +4 -6
  195. data/src/core/ext/transport/chttp2/transport/context_list.h +4 -6
  196. data/src/core/ext/transport/chttp2/transport/flow_control.cc +89 -67
  197. data/src/core/ext/transport/chttp2/transport/flow_control.h +52 -38
  198. data/src/core/ext/transport/chttp2/transport/frame_data.cc +30 -30
  199. data/src/core/ext/transport/chttp2/transport/frame_data.h +11 -10
  200. data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +25 -25
  201. data/src/core/ext/transport/chttp2/transport/frame_goaway.h +7 -6
  202. data/src/core/ext/transport/chttp2/transport/frame_ping.cc +19 -20
  203. data/src/core/ext/transport/chttp2/transport/frame_ping.h +8 -6
  204. data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +23 -22
  205. data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +7 -6
  206. data/src/core/ext/transport/chttp2/transport/frame_settings.cc +55 -22
  207. data/src/core/ext/transport/chttp2/transport/frame_settings.h +9 -7
  208. data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +25 -25
  209. data/src/core/ext/transport/chttp2/transport/frame_window_update.h +5 -6
  210. data/src/core/ext/transport/chttp2/transport/hpack_constants.h +41 -0
  211. data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +516 -749
  212. data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +183 -71
  213. data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.cc +86 -0
  214. data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.h +71 -0
  215. data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +814 -1196
  216. data/src/core/ext/transport/chttp2/transport/hpack_parser.h +101 -83
  217. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.cc +239 -0
  218. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +115 -0
  219. data/src/core/ext/transport/chttp2/transport/internal.h +79 -78
  220. data/src/core/ext/transport/chttp2/transport/parsing.cc +177 -327
  221. data/src/core/ext/transport/chttp2/transport/stream_lists.cc +2 -2
  222. data/src/core/ext/transport/chttp2/transport/varint.cc +13 -7
  223. data/src/core/ext/transport/chttp2/transport/varint.h +39 -28
  224. data/src/core/ext/transport/chttp2/transport/writing.cc +145 -190
  225. data/src/core/ext/transport/inproc/inproc_plugin.cc +0 -4
  226. data/src/core/ext/transport/inproc/inproc_transport.cc +262 -237
  227. data/src/core/ext/transport/inproc/inproc_transport.h +1 -4
  228. data/src/core/ext/upb-generated/envoy/admin/v3/certs.upb.c +117 -0
  229. data/src/core/ext/upb-generated/envoy/admin/v3/certs.upb.h +482 -0
  230. data/src/core/ext/upb-generated/envoy/admin/v3/clusters.upb.c +121 -0
  231. data/src/core/ext/upb-generated/envoy/admin/v3/clusters.upb.h +553 -0
  232. data/src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.c +444 -0
  233. data/src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.h +2156 -0
  234. data/src/core/ext/upb-generated/envoy/admin/v3/init_dump.upb.c +56 -0
  235. data/src/core/ext/upb-generated/envoy/admin/v3/init_dump.upb.h +151 -0
  236. data/src/core/ext/upb-generated/envoy/admin/v3/listeners.upb.c +62 -0
  237. data/src/core/ext/upb-generated/envoy/admin/v3/listeners.upb.h +160 -0
  238. data/src/core/ext/upb-generated/envoy/admin/v3/memory.upb.c +46 -0
  239. data/src/core/ext/upb-generated/envoy/admin/v3/memory.upb.h +124 -0
  240. data/src/core/ext/upb-generated/envoy/admin/v3/metrics.upb.c +43 -0
  241. data/src/core/ext/upb-generated/envoy/admin/v3/metrics.upb.h +102 -0
  242. data/src/core/ext/upb-generated/envoy/admin/v3/mutex_stats.upb.c +43 -0
  243. data/src/core/ext/upb-generated/envoy/admin/v3/mutex_stats.upb.h +97 -0
  244. data/src/core/ext/upb-generated/envoy/admin/v3/server_info.upb.c +106 -0
  245. data/src/core/ext/upb-generated/envoy/admin/v3/server_info.upb.h +605 -0
  246. data/src/core/ext/upb-generated/envoy/admin/v3/tap.upb.c +48 -0
  247. data/src/core/ext/upb-generated/envoy/admin/v3/tap.upb.h +103 -0
  248. data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.c +44 -1
  249. data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.h +53 -2
  250. data/src/core/ext/upb-generated/envoy/annotations/resource.upb.c +31 -5
  251. data/src/core/ext/upb-generated/envoy/annotations/resource.upb.h +59 -14
  252. data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.c +270 -0
  253. data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.h +1240 -0
  254. data/src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.c +411 -0
  255. data/src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.h +2161 -0
  256. data/src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.c +95 -0
  257. data/src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.h +382 -0
  258. data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.c +543 -0
  259. data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.h +2961 -0
  260. data/src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.c +48 -0
  261. data/src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.h +103 -0
  262. data/src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.c +89 -0
  263. data/src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.h +545 -0
  264. data/src/core/ext/upb-generated/envoy/config/common/matcher/v3/matcher.upb.c +299 -0
  265. data/src/core/ext/upb-generated/envoy/config/common/matcher/v3/matcher.upb.h +1381 -0
  266. data/src/core/ext/upb-generated/envoy/config/core/v3/address.upb.c +145 -0
  267. data/src/core/ext/upb-generated/envoy/config/core/v3/address.upb.h +636 -0
  268. data/src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.c +49 -0
  269. data/src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.h +116 -0
  270. data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.c +419 -0
  271. data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.h +1783 -0
  272. data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.c +163 -0
  273. data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.h +778 -0
  274. data/src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.c +47 -0
  275. data/src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.h +100 -0
  276. data/src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.c +47 -0
  277. data/src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.h +103 -0
  278. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_method_list.upb.c +58 -0
  279. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_method_list.upb.h +151 -0
  280. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.c +269 -0
  281. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.h +1277 -0
  282. data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.c +220 -0
  283. data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.h +1219 -0
  284. data/src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.c +49 -0
  285. data/src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.h +122 -0
  286. data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.c +322 -0
  287. data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.h +1686 -0
  288. data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.c +40 -0
  289. data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.h +84 -0
  290. data/src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.c +60 -0
  291. data/src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.h +169 -0
  292. data/src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.c +47 -0
  293. data/src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.h +144 -0
  294. data/src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.c +56 -0
  295. data/src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.h +178 -0
  296. data/src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.c +48 -0
  297. data/src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.h +118 -0
  298. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.c +106 -0
  299. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.h +348 -0
  300. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.c +144 -0
  301. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.h +623 -0
  302. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.c +129 -0
  303. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.h +568 -0
  304. data/src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.c +46 -0
  305. data/src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.h +94 -0
  306. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.c +165 -0
  307. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.h +886 -0
  308. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.c +186 -0
  309. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.h +941 -0
  310. data/src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.c +63 -0
  311. data/src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.h +234 -0
  312. data/src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.c +56 -0
  313. data/src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.h +154 -0
  314. data/src/core/ext/upb-generated/envoy/config/metrics/v3/metrics_service.upb.c +53 -0
  315. data/src/core/ext/upb-generated/envoy/config/metrics/v3/metrics_service.upb.h +136 -0
  316. data/src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.c +165 -0
  317. data/src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.h +716 -0
  318. data/src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.c +174 -0
  319. data/src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.h +721 -0
  320. data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.c +209 -0
  321. data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.h +1008 -0
  322. data/src/core/ext/upb-generated/envoy/config/route/v3/route.upb.c +101 -0
  323. data/src/core/ext/upb-generated/envoy/config/route/v3/route.upb.h +443 -0
  324. data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.c +1051 -0
  325. data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.h +5956 -0
  326. data/src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.c +79 -0
  327. data/src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.h +255 -0
  328. data/src/core/ext/upb-generated/envoy/config/tap/v3/common.upb.c +222 -0
  329. data/src/core/ext/upb-generated/envoy/config/tap/v3/common.upb.h +1052 -0
  330. data/src/core/ext/upb-generated/envoy/config/trace/v3/datadog.upb.c +44 -0
  331. data/src/core/ext/upb-generated/envoy/config/trace/v3/datadog.upb.h +88 -0
  332. data/src/core/ext/upb-generated/envoy/config/trace/v3/dynamic_ot.upb.c +49 -0
  333. data/src/core/ext/upb-generated/envoy/config/trace/v3/dynamic_ot.upb.h +103 -0
  334. data/src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.c +63 -0
  335. data/src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.h +167 -0
  336. data/src/core/ext/upb-generated/envoy/config/trace/v3/lightstep.upb.c +52 -0
  337. data/src/core/ext/upb-generated/envoy/config/trace/v3/lightstep.upb.h +134 -0
  338. data/src/core/ext/upb-generated/envoy/config/trace/v3/opencensus.upb.c +63 -0
  339. data/src/core/ext/upb-generated/envoy/config/trace/v3/opencensus.upb.h +250 -0
  340. data/src/core/ext/upb-generated/envoy/config/trace/v3/service.upb.c +47 -0
  341. data/src/core/ext/upb-generated/envoy/config/trace/v3/service.upb.h +94 -0
  342. data/src/core/ext/upb-generated/envoy/config/trace/v3/skywalking.upb.c +69 -0
  343. data/src/core/ext/upb-generated/envoy/config/trace/v3/skywalking.upb.h +213 -0
  344. data/src/core/ext/upb-generated/envoy/config/trace/v3/trace.upb.c +32 -0
  345. data/src/core/ext/upb-generated/envoy/config/trace/v3/trace.upb.h +42 -0
  346. data/src/core/ext/upb-generated/envoy/config/trace/v3/xray.upb.c +71 -0
  347. data/src/core/ext/upb-generated/envoy/config/trace/v3/xray.upb.h +218 -0
  348. data/src/core/ext/upb-generated/envoy/config/trace/v3/zipkin.upb.c +54 -0
  349. data/src/core/ext/upb-generated/envoy/config/trace/v3/zipkin.upb.h +146 -0
  350. data/src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.c +42 -0
  351. data/src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.h +85 -0
  352. data/src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.c +96 -0
  353. data/src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.h +375 -0
  354. data/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.c +94 -0
  355. data/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.h +433 -0
  356. data/src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.c +64 -0
  357. data/src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.h +183 -0
  358. data/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.c +55 -0
  359. data/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.h +168 -0
  360. data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.c +463 -0
  361. data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +2606 -0
  362. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.c +28 -0
  363. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.h +38 -0
  364. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.c +175 -0
  365. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.h +880 -0
  366. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.c +88 -0
  367. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.h +308 -0
  368. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.c +191 -0
  369. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +1035 -0
  370. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.c +62 -0
  371. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.h +160 -0
  372. data/src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.c +38 -0
  373. data/src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.h +70 -0
  374. data/src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.c +165 -0
  375. data/src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.h +755 -0
  376. data/src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.c +68 -0
  377. data/src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.h +210 -0
  378. data/src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.c +138 -0
  379. data/src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.h +631 -0
  380. data/src/core/ext/upb-generated/envoy/type/http/v3/cookie.upb.c +48 -0
  381. data/src/core/ext/upb-generated/envoy/type/http/v3/cookie.upb.h +112 -0
  382. data/src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.c +76 -0
  383. data/src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.h +249 -0
  384. data/src/core/ext/upb-generated/envoy/type/matcher/v3/http_inputs.upb.c +74 -0
  385. data/src/core/ext/upb-generated/envoy/type/matcher/v3/http_inputs.upb.h +214 -0
  386. data/src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.c +62 -0
  387. data/src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.h +188 -0
  388. data/src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.c +49 -0
  389. data/src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.h +117 -0
  390. data/src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.c +48 -0
  391. data/src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.h +113 -0
  392. data/src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.c +47 -0
  393. data/src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.h +100 -0
  394. data/src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.c +80 -0
  395. data/src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.h +234 -0
  396. data/src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.c +67 -0
  397. data/src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.h +218 -0
  398. data/src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.c +60 -0
  399. data/src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.h +170 -0
  400. data/src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.c +78 -0
  401. data/src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.h +294 -0
  402. data/src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.c +107 -0
  403. data/src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.h +429 -0
  404. data/src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.c +107 -0
  405. data/src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.h +419 -0
  406. data/src/core/ext/upb-generated/envoy/type/v3/hash_policy.upb.c +66 -0
  407. data/src/core/ext/upb-generated/envoy/type/v3/hash_policy.upb.h +201 -0
  408. data/src/core/ext/upb-generated/envoy/type/v3/http.upb.c +26 -0
  409. data/src/core/ext/upb-generated/envoy/type/v3/http.upb.h +39 -0
  410. data/src/core/ext/upb-generated/envoy/type/v3/http_status.upb.c +42 -0
  411. data/src/core/ext/upb-generated/envoy/type/v3/http_status.upb.h +139 -0
  412. data/src/core/ext/upb-generated/envoy/type/v3/percent.upb.c +54 -0
  413. data/src/core/ext/upb-generated/envoy/type/v3/percent.upb.h +139 -0
  414. data/src/core/ext/upb-generated/envoy/type/v3/range.upb.c +66 -0
  415. data/src/core/ext/upb-generated/envoy/type/v3/range.upb.h +196 -0
  416. data/src/core/ext/upb-generated/envoy/type/v3/ratelimit_unit.upb.c +26 -0
  417. data/src/core/ext/upb-generated/envoy/type/v3/ratelimit_unit.upb.h +41 -0
  418. data/src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.c +43 -0
  419. data/src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.h +97 -0
  420. data/src/core/ext/upb-generated/envoy/type/v3/token_bucket.upb.c +51 -0
  421. data/src/core/ext/upb-generated/envoy/type/v3/token_bucket.upb.h +127 -0
  422. data/src/core/ext/upb-generated/google/api/annotations.upb.c +23 -1
  423. data/src/core/ext/upb-generated/google/api/annotations.upb.h +25 -2
  424. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.c +271 -0
  425. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.h +1236 -0
  426. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.c +283 -0
  427. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.h +1338 -0
  428. data/src/core/ext/upb-generated/google/api/http.upb.c +44 -29
  429. data/src/core/ext/upb-generated/google/api/http.upb.h +241 -100
  430. data/src/core/ext/upb-generated/google/api/httpbody.upb.c +46 -0
  431. data/src/core/ext/upb-generated/google/api/httpbody.upb.h +111 -0
  432. data/src/core/ext/upb-generated/google/protobuf/any.upb.c +19 -6
  433. data/src/core/ext/upb-generated/google/protobuf/any.upb.h +48 -18
  434. data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.c +374 -283
  435. data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.h +2368 -969
  436. data/src/core/ext/upb-generated/google/protobuf/duration.upb.c +19 -6
  437. data/src/core/ext/upb-generated/google/protobuf/duration.upb.h +46 -16
  438. data/src/core/ext/upb-generated/google/protobuf/empty.upb.c +16 -3
  439. data/src/core/ext/upb-generated/google/protobuf/empty.upb.h +31 -11
  440. data/src/core/ext/upb-generated/google/protobuf/struct.upb.c +48 -32
  441. data/src/core/ext/upb-generated/google/protobuf/struct.upb.h +203 -101
  442. data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.c +19 -6
  443. data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.h +46 -16
  444. data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.c +58 -37
  445. data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.h +313 -112
  446. data/src/core/ext/upb-generated/google/rpc/status.upb.c +22 -9
  447. data/src/core/ext/upb-generated/google/rpc/status.upb.h +63 -26
  448. data/src/core/ext/upb-generated/opencensus/proto/trace/v1/trace_config.upb.c +84 -0
  449. data/src/core/ext/upb-generated/opencensus/proto/trace/v1/trace_config.upb.h +319 -0
  450. data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.c +33 -19
  451. data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.h +118 -60
  452. data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.c +136 -108
  453. data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.h +777 -337
  454. data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.c +28 -13
  455. data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.h +99 -34
  456. data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.c +23 -9
  457. data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.h +74 -27
  458. data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.c +82 -62
  459. data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.h +460 -184
  460. data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.c +70 -0
  461. data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.h +208 -0
  462. data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls_config.upb.c +175 -0
  463. data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls_config.upb.h +764 -0
  464. data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.c +76 -14
  465. data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.h +217 -43
  466. data/src/core/ext/upb-generated/udpa/annotations/security.upb.c +55 -0
  467. data/src/core/ext/upb-generated/udpa/annotations/security.upb.h +108 -0
  468. data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.c +22 -1
  469. data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.h +18 -2
  470. data/src/core/ext/upb-generated/udpa/annotations/status.upb.c +32 -6
  471. data/src/core/ext/upb-generated/udpa/annotations/status.upb.h +66 -16
  472. data/src/core/ext/upb-generated/udpa/annotations/versioning.upb.c +53 -0
  473. data/src/core/ext/upb-generated/udpa/annotations/versioning.upb.h +99 -0
  474. data/src/core/ext/upb-generated/validate/validate.upb.c +407 -295
  475. data/src/core/ext/upb-generated/validate/validate.upb.h +3024 -1084
  476. data/src/core/ext/upb-generated/xds/annotations/v3/migrate.upb.c +110 -0
  477. data/src/core/ext/upb-generated/xds/annotations/v3/migrate.upb.h +278 -0
  478. data/src/core/ext/upb-generated/xds/annotations/v3/security.upb.c +55 -0
  479. data/src/core/ext/upb-generated/xds/annotations/v3/security.upb.h +108 -0
  480. data/src/core/ext/upb-generated/xds/annotations/v3/sensitive.upb.c +38 -0
  481. data/src/core/ext/upb-generated/xds/annotations/v3/sensitive.upb.h +46 -0
  482. data/src/core/ext/upb-generated/xds/annotations/v3/status.upb.c +105 -0
  483. data/src/core/ext/upb-generated/xds/annotations/v3/status.upb.h +290 -0
  484. data/src/core/ext/upb-generated/xds/annotations/v3/versioning.upb.c +53 -0
  485. data/src/core/ext/upb-generated/xds/annotations/v3/versioning.upb.h +99 -0
  486. data/src/core/ext/upb-generated/xds/core/v3/authority.upb.c +41 -0
  487. data/src/core/ext/upb-generated/xds/core/v3/authority.upb.h +79 -0
  488. data/src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.c +66 -0
  489. data/src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.h +200 -0
  490. data/src/core/ext/upb-generated/xds/core/v3/context_params.upb.c +56 -0
  491. data/src/core/ext/upb-generated/xds/core/v3/context_params.upb.h +115 -0
  492. data/src/core/ext/upb-generated/xds/core/v3/extension.upb.c +46 -0
  493. data/src/core/ext/upb-generated/xds/core/v3/extension.upb.h +103 -0
  494. data/src/core/ext/upb-generated/xds/core/v3/resource.upb.c +49 -0
  495. data/src/core/ext/upb-generated/xds/core/v3/resource.upb.h +127 -0
  496. data/src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.c +68 -0
  497. data/src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.h +240 -0
  498. data/src/core/ext/upb-generated/xds/core/v3/resource_name.upb.c +49 -0
  499. data/src/core/ext/upb-generated/xds/core/v3/resource_name.upb.h +121 -0
  500. data/src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.c +73 -0
  501. data/src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.h +187 -0
  502. data/src/core/ext/upb-generated/xds/type/matcher/v3/matcher.upb.c +207 -0
  503. data/src/core/ext/upb-generated/xds/type/matcher/v3/matcher.upb.h +878 -0
  504. data/src/core/ext/upb-generated/xds/type/matcher/v3/regex.upb.c +52 -0
  505. data/src/core/ext/upb-generated/xds/type/matcher/v3/regex.upb.h +143 -0
  506. data/src/core/ext/upb-generated/xds/type/matcher/v3/string.upb.c +65 -0
  507. data/src/core/ext/upb-generated/xds/type/matcher/v3/string.upb.h +218 -0
  508. data/src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.c +46 -0
  509. data/src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.h +103 -0
  510. data/src/core/ext/upbdefs-generated/envoy/admin/v3/certs.upbdefs.c +84 -0
  511. data/src/core/ext/upbdefs-generated/envoy/admin/v3/certs.upbdefs.h +55 -0
  512. data/src/core/ext/upbdefs-generated/envoy/admin/v3/clusters.upbdefs.c +127 -0
  513. data/src/core/ext/upbdefs-generated/envoy/admin/v3/clusters.upbdefs.h +50 -0
  514. data/src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump.upbdefs.c +309 -0
  515. data/src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump.upbdefs.h +140 -0
  516. data/src/core/ext/upbdefs-generated/envoy/admin/v3/init_dump.upbdefs.c +43 -0
  517. data/src/core/ext/upbdefs-generated/envoy/admin/v3/init_dump.upbdefs.h +40 -0
  518. data/src/core/ext/upbdefs-generated/envoy/admin/v3/listeners.upbdefs.c +53 -0
  519. data/src/core/ext/upbdefs-generated/envoy/admin/v3/listeners.upbdefs.h +40 -0
  520. data/src/core/ext/upbdefs-generated/envoy/admin/v3/memory.upbdefs.c +49 -0
  521. data/src/core/ext/upbdefs-generated/envoy/admin/v3/memory.upbdefs.h +35 -0
  522. data/src/core/ext/upbdefs-generated/envoy/admin/v3/metrics.upbdefs.c +46 -0
  523. data/src/core/ext/upbdefs-generated/envoy/admin/v3/metrics.upbdefs.h +35 -0
  524. data/src/core/ext/upbdefs-generated/envoy/admin/v3/mutex_stats.upbdefs.c +46 -0
  525. data/src/core/ext/upbdefs-generated/envoy/admin/v3/mutex_stats.upbdefs.h +35 -0
  526. data/src/core/ext/upbdefs-generated/envoy/admin/v3/server_info.upbdefs.c +142 -0
  527. data/src/core/ext/upbdefs-generated/envoy/admin/v3/server_info.upbdefs.h +40 -0
  528. data/src/core/ext/upbdefs-generated/envoy/admin/v3/tap.upbdefs.c +51 -0
  529. data/src/core/ext/upbdefs-generated/envoy/admin/v3/tap.upbdefs.h +35 -0
  530. data/src/core/ext/upbdefs-generated/envoy/annotations/deprecation.upbdefs.c +48 -0
  531. data/src/core/ext/upbdefs-generated/envoy/annotations/deprecation.upbdefs.h +30 -0
  532. data/src/core/ext/upbdefs-generated/envoy/annotations/resource.upbdefs.c +38 -0
  533. data/src/core/ext/upbdefs-generated/envoy/annotations/resource.upbdefs.h +35 -0
  534. data/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.c +222 -0
  535. data/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.h +105 -0
  536. data/src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3/bootstrap.upbdefs.c +393 -0
  537. data/src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3/bootstrap.upbdefs.h +120 -0
  538. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/circuit_breaker.upbdefs.c +98 -0
  539. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/circuit_breaker.upbdefs.h +45 -0
  540. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.c +557 -0
  541. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.h +155 -0
  542. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/filter.upbdefs.c +51 -0
  543. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/filter.upbdefs.h +35 -0
  544. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/outlier_detection.upbdefs.c +138 -0
  545. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/outlier_detection.upbdefs.h +35 -0
  546. data/src/core/ext/upbdefs-generated/envoy/config/common/matcher/v3/matcher.upbdefs.c +206 -0
  547. data/src/core/ext/upbdefs-generated/envoy/config/common/matcher/v3/matcher.upbdefs.h +105 -0
  548. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/address.upbdefs.c +112 -0
  549. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/address.upbdefs.h +65 -0
  550. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/backoff.upbdefs.c +54 -0
  551. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/backoff.upbdefs.h +35 -0
  552. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.c +267 -0
  553. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.h +150 -0
  554. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.c +168 -0
  555. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.h +65 -0
  556. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/event_service_config.upbdefs.c +53 -0
  557. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/event_service_config.upbdefs.h +35 -0
  558. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.c +47 -0
  559. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.h +35 -0
  560. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_method_list.upbdefs.c +53 -0
  561. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_method_list.upbdefs.h +40 -0
  562. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.c +235 -0
  563. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.h +100 -0
  564. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.c +228 -0
  565. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.h +75 -0
  566. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/http_uri.upbdefs.c +53 -0
  567. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/http_uri.upbdefs.h +35 -0
  568. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.c +298 -0
  569. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.h +110 -0
  570. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.c +41 -0
  571. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.h +35 -0
  572. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/resolver.upbdefs.c +55 -0
  573. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/resolver.upbdefs.h +40 -0
  574. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/socket_option.upbdefs.c +57 -0
  575. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/socket_option.upbdefs.h +35 -0
  576. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.c +70 -0
  577. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.h +35 -0
  578. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/udp_socket_config.upbdefs.c +49 -0
  579. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/udp_socket_config.upbdefs.h +35 -0
  580. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint.upbdefs.c +99 -0
  581. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint.upbdefs.h +50 -0
  582. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint_components.upbdefs.c +128 -0
  583. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint_components.upbdefs.h +60 -0
  584. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/load_report.upbdefs.c +136 -0
  585. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/load_report.upbdefs.h +55 -0
  586. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/api_listener.upbdefs.c +48 -0
  587. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/api_listener.upbdefs.h +35 -0
  588. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.c +197 -0
  589. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.h +60 -0
  590. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.c +190 -0
  591. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.h +65 -0
  592. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/quic_config.upbdefs.c +88 -0
  593. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/quic_config.upbdefs.h +35 -0
  594. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.c +63 -0
  595. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.h +40 -0
  596. data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/metrics_service.upbdefs.c +69 -0
  597. data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/metrics_service.upbdefs.h +35 -0
  598. data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/stats.upbdefs.c +125 -0
  599. data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/stats.upbdefs.h +70 -0
  600. data/src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.c +134 -0
  601. data/src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.h +75 -0
  602. data/src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.c +190 -0
  603. data/src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.h +70 -0
  604. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.c +115 -0
  605. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.h +45 -0
  606. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.c +896 -0
  607. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.h +295 -0
  608. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/scoped_route.upbdefs.c +77 -0
  609. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/scoped_route.upbdefs.h +45 -0
  610. data/src/core/ext/upbdefs-generated/envoy/config/tap/v3/common.upbdefs.c +188 -0
  611. data/src/core/ext/upbdefs-generated/envoy/config/tap/v3/common.upbdefs.h +85 -0
  612. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/datadog.upbdefs.c +54 -0
  613. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/datadog.upbdefs.h +35 -0
  614. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/dynamic_ot.upbdefs.c +57 -0
  615. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/dynamic_ot.upbdefs.h +35 -0
  616. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/http_tracer.upbdefs.c +57 -0
  617. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/http_tracer.upbdefs.h +40 -0
  618. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/lightstep.upbdefs.c +72 -0
  619. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/lightstep.upbdefs.h +35 -0
  620. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/opencensus.upbdefs.c +99 -0
  621. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/opencensus.upbdefs.h +35 -0
  622. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/service.upbdefs.c +52 -0
  623. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/service.upbdefs.h +35 -0
  624. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/skywalking.upbdefs.c +71 -0
  625. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/skywalking.upbdefs.h +40 -0
  626. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/trace.upbdefs.c +57 -0
  627. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/trace.upbdefs.h +30 -0
  628. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/xray.upbdefs.c +75 -0
  629. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/xray.upbdefs.h +40 -0
  630. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/zipkin.upbdefs.c +77 -0
  631. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/zipkin.upbdefs.h +35 -0
  632. data/src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.c +50 -0
  633. data/src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h +35 -0
  634. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3/fault.upbdefs.c +92 -0
  635. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3/fault.upbdefs.h +55 -0
  636. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3/fault.upbdefs.c +117 -0
  637. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3/fault.upbdefs.h +45 -0
  638. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.c +59 -0
  639. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h +40 -0
  640. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.c +78 -0
  641. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.h +35 -0
  642. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +551 -0
  643. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h +130 -0
  644. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.c +48 -0
  645. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.h +30 -0
  646. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c +210 -0
  647. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h +65 -0
  648. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.c +91 -0
  649. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h +45 -0
  650. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c +254 -0
  651. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h +65 -0
  652. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.c +58 -0
  653. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.h +40 -0
  654. data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/ads.upbdefs.c +58 -0
  655. data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/ads.upbdefs.h +35 -0
  656. data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.c +128 -0
  657. data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.h +65 -0
  658. data/src/core/ext/upbdefs-generated/envoy/service/load_stats/v3/lrs.upbdefs.c +76 -0
  659. data/src/core/ext/upbdefs-generated/envoy/service/load_stats/v3/lrs.upbdefs.h +40 -0
  660. data/src/core/ext/upbdefs-generated/envoy/service/status/v3/csds.upbdefs.c +153 -0
  661. data/src/core/ext/upbdefs-generated/envoy/service/status/v3/csds.upbdefs.h +55 -0
  662. data/src/core/ext/upbdefs-generated/envoy/type/http/v3/cookie.upbdefs.c +46 -0
  663. data/src/core/ext/upbdefs-generated/envoy/type/http/v3/cookie.upbdefs.h +35 -0
  664. data/src/core/ext/upbdefs-generated/envoy/type/http/v3/path_transformation.upbdefs.c +56 -0
  665. data/src/core/ext/upbdefs-generated/envoy/type/http/v3/path_transformation.upbdefs.h +50 -0
  666. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/http_inputs.upbdefs.c +52 -0
  667. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/http_inputs.upbdefs.h +50 -0
  668. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/metadata.upbdefs.c +61 -0
  669. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/metadata.upbdefs.h +40 -0
  670. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/node.upbdefs.c +54 -0
  671. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/node.upbdefs.h +35 -0
  672. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/number.upbdefs.c +52 -0
  673. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/number.upbdefs.h +35 -0
  674. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/path.upbdefs.c +51 -0
  675. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/path.upbdefs.h +35 -0
  676. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.c +70 -0
  677. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.h +45 -0
  678. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/string.upbdefs.c +65 -0
  679. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/string.upbdefs.h +40 -0
  680. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/struct.upbdefs.c +58 -0
  681. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/struct.upbdefs.h +40 -0
  682. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/value.upbdefs.c +75 -0
  683. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/value.upbdefs.h +45 -0
  684. data/src/core/ext/upbdefs-generated/envoy/type/metadata/v3/metadata.upbdefs.c +78 -0
  685. data/src/core/ext/upbdefs-generated/envoy/type/metadata/v3/metadata.upbdefs.h +65 -0
  686. data/src/core/ext/upbdefs-generated/envoy/type/tracing/v3/custom_tag.upbdefs.c +85 -0
  687. data/src/core/ext/upbdefs-generated/envoy/type/tracing/v3/custom_tag.upbdefs.h +55 -0
  688. data/src/core/ext/upbdefs-generated/envoy/type/v3/hash_policy.upbdefs.c +53 -0
  689. data/src/core/ext/upbdefs-generated/envoy/type/v3/hash_policy.upbdefs.h +45 -0
  690. data/src/core/ext/upbdefs-generated/envoy/type/v3/http.upbdefs.c +36 -0
  691. data/src/core/ext/upbdefs-generated/envoy/type/v3/http.upbdefs.h +30 -0
  692. data/src/core/ext/upbdefs-generated/envoy/type/v3/http_status.upbdefs.c +94 -0
  693. data/src/core/ext/upbdefs-generated/envoy/type/v3/http_status.upbdefs.h +35 -0
  694. data/src/core/ext/upbdefs-generated/envoy/type/v3/percent.upbdefs.c +54 -0
  695. data/src/core/ext/upbdefs-generated/envoy/type/v3/percent.upbdefs.h +40 -0
  696. data/src/core/ext/upbdefs-generated/envoy/type/v3/range.upbdefs.c +48 -0
  697. data/src/core/ext/upbdefs-generated/envoy/type/v3/range.upbdefs.h +45 -0
  698. data/src/core/ext/upbdefs-generated/envoy/type/v3/ratelimit_unit.upbdefs.c +38 -0
  699. data/src/core/ext/upbdefs-generated/envoy/type/v3/ratelimit_unit.upbdefs.h +30 -0
  700. data/src/core/ext/upbdefs-generated/envoy/type/v3/semantic_version.upbdefs.c +44 -0
  701. data/src/core/ext/upbdefs-generated/envoy/type/v3/semantic_version.upbdefs.h +35 -0
  702. data/src/core/ext/upbdefs-generated/envoy/type/v3/token_bucket.upbdefs.c +57 -0
  703. data/src/core/ext/upbdefs-generated/envoy/type/v3/token_bucket.upbdefs.h +35 -0
  704. data/src/core/ext/upbdefs-generated/google/api/annotations.upbdefs.c +40 -0
  705. data/src/core/ext/upbdefs-generated/google/api/annotations.upbdefs.h +30 -0
  706. data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/checked.upbdefs.c +154 -0
  707. data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/checked.upbdefs.h +95 -0
  708. data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/syntax.upbdefs.c +153 -0
  709. data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/syntax.upbdefs.h +100 -0
  710. data/src/core/ext/upbdefs-generated/google/api/http.upbdefs.c +52 -0
  711. data/src/core/ext/upbdefs-generated/google/api/http.upbdefs.h +45 -0
  712. data/src/core/ext/upbdefs-generated/google/api/httpbody.upbdefs.c +39 -0
  713. data/src/core/ext/upbdefs-generated/google/api/httpbody.upbdefs.h +35 -0
  714. data/src/core/ext/upbdefs-generated/google/protobuf/any.upbdefs.c +34 -0
  715. data/src/core/ext/upbdefs-generated/google/protobuf/any.upbdefs.h +35 -0
  716. data/src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.c +329 -0
  717. data/src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.h +165 -0
  718. data/src/core/ext/upbdefs-generated/google/protobuf/duration.upbdefs.c +35 -0
  719. data/src/core/ext/upbdefs-generated/google/protobuf/duration.upbdefs.h +35 -0
  720. data/src/core/ext/upbdefs-generated/google/protobuf/empty.upbdefs.c +32 -0
  721. data/src/core/ext/upbdefs-generated/google/protobuf/empty.upbdefs.h +35 -0
  722. data/src/core/ext/upbdefs-generated/google/protobuf/struct.upbdefs.c +54 -0
  723. data/src/core/ext/upbdefs-generated/google/protobuf/struct.upbdefs.h +50 -0
  724. data/src/core/ext/upbdefs-generated/google/protobuf/timestamp.upbdefs.c +35 -0
  725. data/src/core/ext/upbdefs-generated/google/protobuf/timestamp.upbdefs.h +35 -0
  726. data/src/core/ext/upbdefs-generated/google/protobuf/wrappers.upbdefs.c +45 -0
  727. data/src/core/ext/upbdefs-generated/google/protobuf/wrappers.upbdefs.h +75 -0
  728. data/src/core/ext/upbdefs-generated/google/rpc/status.upbdefs.c +37 -0
  729. data/src/core/ext/upbdefs-generated/google/rpc/status.upbdefs.h +35 -0
  730. data/src/core/ext/upbdefs-generated/opencensus/proto/trace/v1/trace_config.upbdefs.c +67 -0
  731. data/src/core/ext/upbdefs-generated/opencensus/proto/trace/v1/trace_config.upbdefs.h +50 -0
  732. data/src/core/ext/upbdefs-generated/src/proto/grpc/lookup/v1/rls_config.upbdefs.c +99 -0
  733. data/src/core/ext/upbdefs-generated/src/proto/grpc/lookup/v1/rls_config.upbdefs.h +75 -0
  734. data/src/core/ext/upbdefs-generated/udpa/annotations/migrate.upbdefs.c +62 -0
  735. data/src/core/ext/upbdefs-generated/udpa/annotations/migrate.upbdefs.h +45 -0
  736. data/src/core/ext/upbdefs-generated/udpa/annotations/security.upbdefs.c +47 -0
  737. data/src/core/ext/upbdefs-generated/udpa/annotations/security.upbdefs.h +35 -0
  738. data/src/core/ext/upbdefs-generated/udpa/annotations/sensitive.upbdefs.c +34 -0
  739. data/src/core/ext/upbdefs-generated/udpa/annotations/sensitive.upbdefs.h +30 -0
  740. data/src/core/ext/upbdefs-generated/udpa/annotations/status.upbdefs.c +46 -0
  741. data/src/core/ext/upbdefs-generated/udpa/annotations/status.upbdefs.h +35 -0
  742. data/src/core/ext/upbdefs-generated/udpa/annotations/versioning.upbdefs.c +39 -0
  743. data/src/core/ext/upbdefs-generated/udpa/annotations/versioning.upbdefs.h +35 -0
  744. data/src/core/ext/upbdefs-generated/validate/validate.upbdefs.c +283 -0
  745. data/src/core/ext/upbdefs-generated/validate/validate.upbdefs.h +145 -0
  746. data/src/core/ext/upbdefs-generated/xds/annotations/v3/migrate.upbdefs.c +63 -0
  747. data/src/core/ext/upbdefs-generated/xds/annotations/v3/migrate.upbdefs.h +45 -0
  748. data/src/core/ext/upbdefs-generated/xds/annotations/v3/security.upbdefs.c +47 -0
  749. data/src/core/ext/upbdefs-generated/xds/annotations/v3/security.upbdefs.h +35 -0
  750. data/src/core/ext/upbdefs-generated/xds/annotations/v3/sensitive.upbdefs.c +35 -0
  751. data/src/core/ext/upbdefs-generated/xds/annotations/v3/sensitive.upbdefs.h +30 -0
  752. data/src/core/ext/upbdefs-generated/xds/annotations/v3/status.upbdefs.c +64 -0
  753. data/src/core/ext/upbdefs-generated/xds/annotations/v3/status.upbdefs.h +50 -0
  754. data/src/core/ext/upbdefs-generated/xds/annotations/v3/versioning.upbdefs.c +40 -0
  755. data/src/core/ext/upbdefs-generated/xds/annotations/v3/versioning.upbdefs.h +35 -0
  756. data/src/core/ext/upbdefs-generated/xds/core/v3/authority.upbdefs.c +38 -0
  757. data/src/core/ext/upbdefs-generated/xds/core/v3/authority.upbdefs.h +35 -0
  758. data/src/core/ext/upbdefs-generated/xds/core/v3/collection_entry.upbdefs.c +56 -0
  759. data/src/core/ext/upbdefs-generated/xds/core/v3/collection_entry.upbdefs.h +40 -0
  760. data/src/core/ext/upbdefs-generated/xds/core/v3/context_params.upbdefs.c +39 -0
  761. data/src/core/ext/upbdefs-generated/xds/core/v3/context_params.upbdefs.h +40 -0
  762. data/src/core/ext/upbdefs-generated/xds/core/v3/extension.upbdefs.c +41 -0
  763. data/src/core/ext/upbdefs-generated/xds/core/v3/extension.upbdefs.h +35 -0
  764. data/src/core/ext/upbdefs-generated/xds/core/v3/resource.upbdefs.c +45 -0
  765. data/src/core/ext/upbdefs-generated/xds/core/v3/resource.upbdefs.h +35 -0
  766. data/src/core/ext/upbdefs-generated/xds/core/v3/resource_locator.upbdefs.c +61 -0
  767. data/src/core/ext/upbdefs-generated/xds/core/v3/resource_locator.upbdefs.h +40 -0
  768. data/src/core/ext/upbdefs-generated/xds/core/v3/resource_name.upbdefs.c +46 -0
  769. data/src/core/ext/upbdefs-generated/xds/core/v3/resource_name.upbdefs.h +35 -0
  770. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/matcher.upbdefs.c +126 -0
  771. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/matcher.upbdefs.h +80 -0
  772. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/regex.upbdefs.c +40 -0
  773. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/regex.upbdefs.h +40 -0
  774. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/string.upbdefs.c +52 -0
  775. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/string.upbdefs.h +40 -0
  776. data/src/core/ext/upbdefs-generated/xds/type/v3/typed_struct.upbdefs.c +40 -0
  777. data/src/core/ext/upbdefs-generated/xds/type/v3/typed_struct.upbdefs.h +35 -0
  778. data/src/core/ext/xds/certificate_provider_factory.h +61 -0
  779. data/src/core/ext/xds/certificate_provider_registry.cc +103 -0
  780. data/src/core/ext/xds/certificate_provider_registry.h +57 -0
  781. data/src/core/ext/xds/certificate_provider_store.cc +95 -0
  782. data/src/core/ext/xds/certificate_provider_store.h +121 -0
  783. data/src/core/ext/xds/file_watcher_certificate_provider_factory.cc +144 -0
  784. data/src/core/ext/xds/file_watcher_certificate_provider_factory.h +69 -0
  785. data/src/core/ext/xds/upb_utils.h +67 -0
  786. data/src/core/ext/xds/xds_api.cc +730 -0
  787. data/src/core/ext/xds/xds_api.h +191 -0
  788. data/src/core/ext/xds/xds_bootstrap.cc +570 -0
  789. data/src/core/ext/xds/xds_bootstrap.h +143 -0
  790. data/src/core/ext/xds/xds_certificate_provider.cc +407 -0
  791. data/src/core/ext/xds/xds_certificate_provider.h +159 -0
  792. data/src/core/ext/xds/xds_channel_args.h +32 -0
  793. data/src/core/ext/xds/xds_channel_stack_modifier.cc +109 -0
  794. data/src/core/ext/xds/xds_channel_stack_modifier.h +53 -0
  795. data/src/core/ext/xds/xds_client.cc +2512 -0
  796. data/src/core/ext/xds/xds_client.h +348 -0
  797. data/src/core/ext/xds/xds_client_stats.cc +160 -0
  798. data/src/core/ext/xds/xds_client_stats.h +241 -0
  799. data/src/core/ext/xds/xds_cluster.cc +453 -0
  800. data/src/core/ext/xds/xds_cluster.h +108 -0
  801. data/src/core/ext/xds/xds_cluster_specifier_plugin.cc +142 -0
  802. data/src/core/ext/xds/xds_cluster_specifier_plugin.h +79 -0
  803. data/src/core/ext/xds/xds_common_types.cc +388 -0
  804. data/src/core/ext/xds/xds_common_types.h +95 -0
  805. data/src/core/ext/xds/xds_endpoint.cc +371 -0
  806. data/src/core/ext/xds/xds_endpoint.h +135 -0
  807. data/src/core/ext/xds/xds_http_fault_filter.cc +227 -0
  808. data/src/core/ext/xds/xds_http_fault_filter.h +64 -0
  809. data/src/core/ext/xds/xds_http_filters.cc +122 -0
  810. data/src/core/ext/xds/xds_http_filters.h +133 -0
  811. data/src/core/ext/xds/xds_http_rbac_filter.cc +563 -0
  812. data/src/core/ext/xds/xds_http_rbac_filter.h +54 -0
  813. data/src/core/ext/xds/xds_listener.cc +1039 -0
  814. data/src/core/ext/xds/xds_listener.h +220 -0
  815. data/src/core/ext/xds/xds_resource_type.cc +33 -0
  816. data/src/core/ext/xds/xds_resource_type.h +98 -0
  817. data/src/core/ext/xds/xds_resource_type_impl.h +87 -0
  818. data/src/core/ext/xds/xds_route_config.cc +1122 -0
  819. data/src/core/ext/xds/xds_route_config.h +218 -0
  820. data/src/core/ext/xds/xds_routing.cc +250 -0
  821. data/src/core/ext/xds/xds_routing.h +101 -0
  822. data/src/core/ext/xds/xds_server_config_fetcher.cc +1314 -0
  823. data/src/core/lib/address_utils/parse_address.cc +340 -0
  824. data/src/core/lib/address_utils/parse_address.h +82 -0
  825. data/src/core/lib/address_utils/sockaddr_utils.cc +409 -0
  826. data/src/core/lib/address_utils/sockaddr_utils.h +95 -0
  827. data/src/core/lib/avl/avl.h +452 -88
  828. data/src/core/lib/backoff/backoff.cc +9 -38
  829. data/src/core/lib/backoff/backoff.h +11 -11
  830. data/src/core/lib/channel/call_finalization.h +86 -0
  831. data/src/core/lib/channel/call_tracer.h +88 -0
  832. data/src/core/lib/channel/channel_args.cc +182 -24
  833. data/src/core/lib/channel/channel_args.h +214 -2
  834. data/src/core/lib/channel/channel_args_preconditioning.cc +42 -0
  835. data/src/core/lib/channel/channel_args_preconditioning.h +61 -0
  836. data/src/core/lib/channel/channel_stack.cc +37 -15
  837. data/src/core/lib/channel/channel_stack.h +57 -16
  838. data/src/core/lib/channel/channel_stack_builder.cc +24 -283
  839. data/src/core/lib/channel/channel_stack_builder.h +118 -157
  840. data/src/core/lib/channel/channel_stack_builder_impl.cc +102 -0
  841. data/src/core/lib/channel/channel_stack_builder_impl.h +48 -0
  842. data/src/core/lib/channel/channel_trace.cc +14 -18
  843. data/src/core/lib/channel/channel_trace.h +3 -2
  844. data/src/core/lib/channel/channelz.cc +191 -137
  845. data/src/core/lib/channel/channelz.h +76 -53
  846. data/src/core/lib/channel/channelz_registry.cc +37 -19
  847. data/src/core/lib/channel/channelz_registry.h +4 -2
  848. data/src/core/lib/channel/connected_channel.cc +14 -10
  849. data/src/core/lib/channel/connected_channel.h +2 -2
  850. data/src/core/lib/channel/context.h +14 -0
  851. data/src/core/lib/channel/handshaker.cc +14 -54
  852. data/src/core/lib/channel/handshaker.h +10 -28
  853. data/src/core/lib/channel/handshaker_factory.h +10 -2
  854. data/src/core/lib/channel/handshaker_registry.cc +15 -70
  855. data/src/core/lib/channel/handshaker_registry.h +29 -12
  856. data/src/core/lib/channel/promise_based_filter.cc +1002 -0
  857. data/src/core/lib/channel/promise_based_filter.h +437 -0
  858. data/src/core/lib/channel/status_util.cc +12 -2
  859. data/src/core/lib/channel/status_util.h +11 -2
  860. data/src/core/lib/compression/compression.cc +22 -110
  861. data/src/core/lib/compression/compression_internal.cc +139 -202
  862. data/src/core/lib/compression/compression_internal.h +67 -71
  863. data/src/core/lib/compression/message_compress.cc +13 -13
  864. data/src/core/lib/compression/message_compress.h +2 -2
  865. data/src/core/lib/config/core_configuration.cc +104 -0
  866. data/src/core/lib/config/core_configuration.h +196 -0
  867. data/src/core/lib/debug/stats.cc +1 -1
  868. data/src/core/lib/debug/stats.h +4 -3
  869. data/src/core/lib/debug/stats_data.cc +17 -19
  870. data/src/core/lib/debug/stats_data.h +6 -8
  871. data/src/core/lib/debug/trace.cc +1 -0
  872. data/src/core/lib/debug/trace.h +4 -3
  873. data/src/core/lib/event_engine/channel_args_endpoint_config.cc +46 -0
  874. data/src/core/lib/event_engine/channel_args_endpoint_config.h +42 -0
  875. data/src/core/lib/event_engine/default_event_engine_factory.cc +27 -0
  876. data/src/core/lib/event_engine/event_engine.cc +52 -0
  877. data/src/core/lib/event_engine/event_engine_factory.h +36 -0
  878. data/src/core/lib/event_engine/memory_allocator.cc +66 -0
  879. data/src/core/lib/event_engine/resolved_address.cc +39 -0
  880. data/src/core/lib/event_engine/sockaddr.cc +40 -0
  881. data/src/core/lib/event_engine/sockaddr.h +44 -0
  882. data/src/core/lib/gpr/alloc.cc +7 -5
  883. data/src/core/lib/gpr/atm.cc +1 -1
  884. data/src/core/lib/gpr/cpu_iphone.cc +10 -2
  885. data/src/core/lib/gpr/cpu_posix.cc +1 -1
  886. data/src/core/lib/gpr/env_linux.cc +1 -2
  887. data/src/core/lib/gpr/env_posix.cc +2 -3
  888. data/src/core/lib/gpr/log.cc +61 -19
  889. data/src/core/lib/gpr/log_android.cc +3 -2
  890. data/src/core/lib/gpr/log_linux.cc +30 -13
  891. data/src/core/lib/gpr/log_posix.cc +25 -10
  892. data/src/core/lib/gpr/log_windows.cc +18 -4
  893. data/src/core/lib/gpr/murmur_hash.cc +5 -3
  894. data/src/core/lib/gpr/spinlock.h +10 -2
  895. data/src/core/lib/gpr/string.cc +35 -33
  896. data/src/core/lib/gpr/string.h +11 -10
  897. data/src/core/lib/gpr/sync.cc +6 -6
  898. data/src/core/lib/gpr/sync_abseil.cc +10 -12
  899. data/src/core/lib/gpr/sync_posix.cc +6 -11
  900. data/src/core/lib/gpr/sync_windows.cc +2 -2
  901. data/src/core/lib/gpr/time.cc +17 -15
  902. data/src/core/lib/gpr/time_precise.cc +5 -2
  903. data/src/core/lib/gpr/time_precise.h +6 -2
  904. data/src/core/lib/gpr/time_windows.cc +3 -2
  905. data/src/core/lib/gpr/tls.h +126 -36
  906. data/src/core/lib/gpr/tmpfile_posix.cc +1 -2
  907. data/src/core/lib/gpr/useful.h +97 -31
  908. data/src/core/lib/gpr/wrap_memcpy.cc +2 -1
  909. data/src/core/lib/gprpp/atomic_utils.h +47 -0
  910. data/src/core/lib/gprpp/bitset.h +207 -0
  911. data/src/core/lib/gprpp/capture.h +76 -0
  912. data/src/core/lib/gprpp/chunked_vector.h +253 -0
  913. data/src/core/lib/gprpp/construct_destruct.h +39 -0
  914. data/src/core/lib/gprpp/cpp_impl_of.h +49 -0
  915. data/src/core/lib/gprpp/debug_location.h +2 -0
  916. data/src/core/lib/gprpp/dual_ref_counted.h +330 -0
  917. data/src/core/lib/gprpp/examine_stack.cc +43 -0
  918. data/src/core/lib/gprpp/examine_stack.h +46 -0
  919. data/src/core/lib/gprpp/fork.cc +16 -14
  920. data/src/core/lib/gprpp/fork.h +4 -4
  921. data/src/core/lib/gprpp/global_config.h +1 -2
  922. data/src/core/lib/gprpp/global_config_env.cc +18 -16
  923. data/src/core/lib/gprpp/global_config_env.h +2 -2
  924. data/src/core/lib/gprpp/global_config_generic.h +2 -2
  925. data/src/core/lib/gprpp/manual_constructor.h +12 -10
  926. data/src/core/lib/gprpp/match.h +73 -0
  927. data/src/core/lib/gprpp/memory.h +9 -3
  928. data/src/core/lib/gprpp/mpscq.cc +9 -9
  929. data/src/core/lib/gprpp/mpscq.h +6 -5
  930. data/src/core/lib/gprpp/orphanable.h +11 -15
  931. data/src/core/lib/gprpp/overload.h +59 -0
  932. data/src/core/lib/gprpp/ref_counted.h +125 -86
  933. data/src/core/lib/gprpp/ref_counted_ptr.h +166 -7
  934. data/src/core/lib/gprpp/single_set_ptr.h +87 -0
  935. data/src/core/lib/gprpp/stat.h +38 -0
  936. data/src/core/lib/gprpp/stat_posix.cc +49 -0
  937. data/src/core/lib/gprpp/stat_windows.cc +48 -0
  938. data/src/core/lib/gprpp/status_helper.cc +435 -0
  939. data/src/core/lib/gprpp/status_helper.h +181 -0
  940. data/src/core/lib/gprpp/sync.h +106 -43
  941. data/src/core/lib/gprpp/table.h +434 -0
  942. data/src/core/lib/gprpp/thd.h +3 -3
  943. data/src/core/lib/gprpp/thd_posix.cc +47 -42
  944. data/src/core/lib/gprpp/thd_windows.cc +7 -12
  945. data/src/core/lib/gprpp/time.cc +198 -0
  946. data/src/core/lib/gprpp/time.h +292 -0
  947. data/src/core/lib/gprpp/time_util.cc +77 -0
  948. data/src/core/lib/gprpp/time_util.h +42 -0
  949. data/src/core/lib/http/format_request.cc +29 -25
  950. data/src/core/lib/http/format_request.h +8 -6
  951. data/src/core/lib/http/httpcli.cc +304 -211
  952. data/src/core/lib/http/httpcli.h +183 -86
  953. data/src/core/lib/http/httpcli_security_connector.cc +75 -85
  954. data/src/core/lib/http/httpcli_ssl_credentials.h +37 -0
  955. data/src/core/lib/http/parser.cc +145 -54
  956. data/src/core/lib/http/parser.h +20 -6
  957. data/src/core/lib/iomgr/buffer_list.cc +16 -17
  958. data/src/core/lib/iomgr/buffer_list.h +23 -25
  959. data/src/core/lib/iomgr/call_combiner.cc +60 -25
  960. data/src/core/lib/iomgr/call_combiner.h +12 -14
  961. data/src/core/lib/iomgr/cfstream_handle.cc +7 -6
  962. data/src/core/lib/iomgr/cfstream_handle.h +1 -1
  963. data/src/core/lib/iomgr/closure.h +33 -12
  964. data/src/core/lib/iomgr/combiner.cc +48 -37
  965. data/src/core/lib/iomgr/combiner.h +3 -2
  966. data/src/core/lib/iomgr/dualstack_socket_posix.cc +1 -0
  967. data/src/core/lib/iomgr/endpoint.cc +6 -6
  968. data/src/core/lib/iomgr/endpoint.h +10 -9
  969. data/src/core/lib/iomgr/endpoint_cfstream.cc +56 -60
  970. data/src/core/lib/iomgr/endpoint_cfstream.h +4 -4
  971. data/src/core/lib/iomgr/endpoint_pair.h +1 -0
  972. data/src/core/lib/iomgr/endpoint_pair_event_engine.cc +32 -0
  973. data/src/core/lib/iomgr/endpoint_pair_posix.cc +19 -17
  974. data/src/core/lib/iomgr/endpoint_pair_windows.cc +5 -6
  975. data/src/core/lib/iomgr/error.cc +287 -111
  976. data/src/core/lib/iomgr/error.h +278 -114
  977. data/src/core/lib/iomgr/error_cfstream.cc +17 -10
  978. data/src/core/lib/iomgr/error_cfstream.h +2 -2
  979. data/src/core/lib/iomgr/error_internal.h +7 -2
  980. data/src/core/lib/iomgr/ev_apple.cc +19 -15
  981. data/src/core/lib/iomgr/ev_apple.h +1 -1
  982. data/src/core/lib/iomgr/ev_epoll1_linux.cc +64 -64
  983. data/src/core/lib/iomgr/ev_poll_posix.cc +82 -79
  984. data/src/core/lib/iomgr/ev_posix.cc +21 -22
  985. data/src/core/lib/iomgr/ev_posix.h +9 -9
  986. data/src/core/lib/iomgr/event_engine/closure.cc +77 -0
  987. data/src/core/lib/iomgr/event_engine/closure.h +42 -0
  988. data/src/core/lib/iomgr/event_engine/endpoint.cc +172 -0
  989. data/src/core/lib/iomgr/event_engine/endpoint.h +52 -0
  990. data/src/core/lib/iomgr/event_engine/iomgr.cc +85 -0
  991. data/src/core/lib/iomgr/event_engine/pollset.cc +87 -0
  992. data/src/core/lib/iomgr/event_engine/pollset.h +25 -0
  993. data/src/core/lib/iomgr/event_engine/promise.h +51 -0
  994. data/src/core/lib/iomgr/event_engine/resolved_address_internal.cc +47 -0
  995. data/src/core/lib/iomgr/event_engine/resolved_address_internal.h +37 -0
  996. data/src/core/lib/iomgr/event_engine/resolver.cc +133 -0
  997. data/src/core/lib/iomgr/event_engine/resolver.h +56 -0
  998. data/src/core/lib/iomgr/event_engine/tcp.cc +296 -0
  999. data/src/core/lib/iomgr/event_engine/timer.cc +62 -0
  1000. data/src/core/lib/iomgr/exec_ctx.cc +30 -99
  1001. data/src/core/lib/iomgr/exec_ctx.h +42 -63
  1002. data/src/core/lib/iomgr/executor/mpmcqueue.cc +15 -16
  1003. data/src/core/lib/iomgr/executor/mpmcqueue.h +11 -15
  1004. data/src/core/lib/iomgr/executor/threadpool.cc +4 -5
  1005. data/src/core/lib/iomgr/executor/threadpool.h +8 -7
  1006. data/src/core/lib/iomgr/executor.cc +37 -45
  1007. data/src/core/lib/iomgr/executor.h +4 -4
  1008. data/src/core/lib/iomgr/fork_posix.cc +2 -1
  1009. data/src/core/lib/iomgr/grpc_if_nametoindex_posix.cc +2 -2
  1010. data/src/core/lib/iomgr/grpc_if_nametoindex_unsupported.cc +2 -2
  1011. data/src/core/lib/iomgr/internal_errqueue.cc +3 -2
  1012. data/src/core/lib/iomgr/iocp_windows.cc +10 -9
  1013. data/src/core/lib/iomgr/iocp_windows.h +1 -1
  1014. data/src/core/lib/iomgr/iomgr.cc +6 -4
  1015. data/src/core/lib/iomgr/iomgr.h +3 -3
  1016. data/src/core/lib/iomgr/iomgr_internal.cc +8 -12
  1017. data/src/core/lib/iomgr/iomgr_internal.h +6 -5
  1018. data/src/core/lib/iomgr/iomgr_posix.cc +5 -4
  1019. data/src/core/lib/iomgr/iomgr_posix_cfstream.cc +44 -15
  1020. data/src/core/lib/iomgr/iomgr_windows.cc +4 -5
  1021. data/src/core/lib/iomgr/load_file.cc +6 -6
  1022. data/src/core/lib/iomgr/load_file.h +2 -2
  1023. data/src/core/lib/iomgr/lockfree_event.cc +38 -15
  1024. data/src/core/lib/iomgr/lockfree_event.h +2 -2
  1025. data/src/core/lib/iomgr/polling_entity.cc +2 -2
  1026. data/src/core/lib/iomgr/polling_entity.h +6 -0
  1027. data/src/core/lib/iomgr/pollset.cc +5 -5
  1028. data/src/core/lib/iomgr/pollset.h +9 -9
  1029. data/src/core/lib/iomgr/pollset_set_windows.cc +1 -0
  1030. data/src/core/lib/iomgr/pollset_windows.cc +6 -6
  1031. data/src/core/lib/iomgr/port.h +9 -37
  1032. data/src/core/lib/iomgr/python_util.h +6 -5
  1033. data/src/core/lib/iomgr/resolve_address.cc +10 -24
  1034. data/src/core/lib/iomgr/resolve_address.h +48 -43
  1035. data/src/core/lib/iomgr/resolve_address_impl.h +59 -0
  1036. data/src/core/lib/iomgr/resolve_address_posix.cc +91 -83
  1037. data/src/core/lib/iomgr/resolve_address_posix.h +47 -0
  1038. data/src/core/lib/iomgr/resolve_address_windows.cc +106 -89
  1039. data/src/core/lib/iomgr/resolve_address_windows.h +47 -0
  1040. data/src/core/lib/iomgr/resolved_address.h +39 -0
  1041. data/src/core/lib/iomgr/sockaddr.h +2 -1
  1042. data/src/core/lib/iomgr/sockaddr_utils_posix.cc +62 -0
  1043. data/src/core/lib/iomgr/socket_factory_posix.cc +8 -7
  1044. data/src/core/lib/iomgr/socket_factory_posix.h +1 -0
  1045. data/src/core/lib/iomgr/socket_mutator.cc +20 -6
  1046. data/src/core/lib/iomgr/socket_mutator.h +27 -3
  1047. data/src/core/lib/iomgr/socket_utils_common_posix.cc +124 -99
  1048. data/src/core/lib/iomgr/socket_utils_linux.cc +4 -4
  1049. data/src/core/lib/iomgr/socket_utils_posix.cc +2 -2
  1050. data/src/core/lib/iomgr/socket_utils_posix.h +22 -22
  1051. data/src/core/lib/iomgr/socket_utils_windows.cc +2 -2
  1052. data/src/core/lib/iomgr/socket_windows.cc +4 -5
  1053. data/src/core/lib/iomgr/tcp_client.cc +4 -4
  1054. data/src/core/lib/iomgr/tcp_client.h +5 -2
  1055. data/src/core/lib/iomgr/tcp_client_cfstream.cc +19 -37
  1056. data/src/core/lib/iomgr/tcp_client_posix.cc +51 -67
  1057. data/src/core/lib/iomgr/tcp_client_posix.h +7 -6
  1058. data/src/core/lib/iomgr/tcp_client_windows.cc +21 -21
  1059. data/src/core/lib/iomgr/tcp_posix.cc +256 -209
  1060. data/src/core/lib/iomgr/tcp_posix.h +17 -12
  1061. data/src/core/lib/iomgr/tcp_server.cc +9 -10
  1062. data/src/core/lib/iomgr/tcp_server.h +21 -17
  1063. data/src/core/lib/iomgr/tcp_server_posix.cc +98 -86
  1064. data/src/core/lib/iomgr/tcp_server_utils_posix.h +36 -32
  1065. data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +28 -27
  1066. data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc +14 -19
  1067. data/src/core/lib/iomgr/tcp_server_utils_posix_noifaddrs.cc +4 -4
  1068. data/src/core/lib/iomgr/tcp_server_windows.cc +38 -41
  1069. data/src/core/lib/iomgr/tcp_windows.cc +56 -57
  1070. data/src/core/lib/iomgr/tcp_windows.h +3 -3
  1071. data/src/core/lib/iomgr/timer.cc +3 -2
  1072. data/src/core/lib/iomgr/timer.h +17 -8
  1073. data/src/core/lib/iomgr/timer_generic.cc +129 -139
  1074. data/src/core/lib/iomgr/timer_generic.h +1 -0
  1075. data/src/core/lib/iomgr/timer_heap.cc +2 -3
  1076. data/src/core/lib/iomgr/timer_manager.cc +19 -18
  1077. data/src/core/lib/iomgr/unix_sockets_posix.cc +33 -41
  1078. data/src/core/lib/iomgr/unix_sockets_posix.h +9 -6
  1079. data/src/core/lib/iomgr/unix_sockets_posix_noop.cc +15 -11
  1080. data/src/core/lib/iomgr/wakeup_fd_eventfd.cc +3 -3
  1081. data/src/core/lib/iomgr/wakeup_fd_nospecial.cc +2 -1
  1082. data/src/core/lib/iomgr/wakeup_fd_pipe.cc +8 -9
  1083. data/src/core/lib/iomgr/wakeup_fd_posix.cc +4 -3
  1084. data/src/core/lib/iomgr/wakeup_fd_posix.h +8 -6
  1085. data/src/core/lib/iomgr/work_serializer.cc +120 -44
  1086. data/src/core/lib/iomgr/work_serializer.h +33 -5
  1087. data/src/core/lib/json/json.h +13 -3
  1088. data/src/core/lib/json/json_reader.cc +112 -70
  1089. data/src/core/lib/json/json_util.cc +126 -0
  1090. data/src/core/lib/json/json_util.h +154 -0
  1091. data/src/core/lib/json/json_writer.cc +2 -4
  1092. data/src/core/lib/matchers/matchers.cc +327 -0
  1093. data/src/core/lib/matchers/matchers.h +160 -0
  1094. data/src/core/lib/profiling/basic_timers.cc +8 -6
  1095. data/src/core/lib/profiling/stap_timers.cc +2 -2
  1096. data/src/core/lib/promise/activity.cc +121 -0
  1097. data/src/core/lib/promise/activity.h +540 -0
  1098. data/src/core/lib/promise/arena_promise.h +188 -0
  1099. data/src/core/lib/promise/call_push_pull.h +144 -0
  1100. data/src/core/lib/promise/context.h +86 -0
  1101. data/src/core/lib/promise/detail/basic_seq.h +496 -0
  1102. data/src/core/lib/promise/detail/promise_factory.h +189 -0
  1103. data/src/core/lib/promise/detail/promise_like.h +85 -0
  1104. data/src/core/lib/promise/detail/status.h +50 -0
  1105. data/src/core/lib/promise/detail/switch.h +1455 -0
  1106. data/src/core/lib/promise/exec_ctx_wakeup_scheduler.h +48 -0
  1107. data/src/core/lib/promise/intra_activity_waiter.h +49 -0
  1108. data/src/core/lib/promise/latch.h +104 -0
  1109. data/src/core/lib/promise/loop.h +134 -0
  1110. data/src/core/lib/promise/map.h +88 -0
  1111. data/src/core/lib/promise/poll.h +66 -0
  1112. data/src/core/lib/promise/promise.h +95 -0
  1113. data/src/core/lib/promise/race.h +84 -0
  1114. data/src/core/lib/promise/seq.h +89 -0
  1115. data/src/core/lib/promise/sleep.cc +74 -0
  1116. data/src/core/lib/promise/sleep.h +66 -0
  1117. data/src/core/lib/promise/try_seq.h +157 -0
  1118. data/src/core/lib/resolver/resolver.cc +79 -0
  1119. data/src/core/lib/resolver/resolver.h +135 -0
  1120. data/src/core/lib/resolver/resolver_factory.h +76 -0
  1121. data/src/core/lib/resolver/resolver_registry.cc +156 -0
  1122. data/src/core/lib/resolver/resolver_registry.h +113 -0
  1123. data/src/core/lib/resolver/server_address.cc +170 -0
  1124. data/src/core/lib/resolver/server_address.h +144 -0
  1125. data/src/core/lib/resource_quota/api.cc +83 -0
  1126. data/src/core/lib/resource_quota/api.h +40 -0
  1127. data/src/core/lib/resource_quota/arena.cc +107 -0
  1128. data/src/core/lib/resource_quota/arena.h +142 -0
  1129. data/src/core/lib/resource_quota/memory_quota.cc +478 -0
  1130. data/src/core/lib/resource_quota/memory_quota.h +457 -0
  1131. data/src/core/lib/resource_quota/resource_quota.cc +33 -0
  1132. data/src/core/lib/resource_quota/resource_quota.h +66 -0
  1133. data/src/core/lib/resource_quota/thread_quota.cc +43 -0
  1134. data/src/core/lib/resource_quota/thread_quota.h +57 -0
  1135. data/src/core/lib/resource_quota/trace.cc +19 -0
  1136. data/src/core/lib/resource_quota/trace.h +24 -0
  1137. data/src/core/lib/security/authorization/authorization_engine.h +44 -0
  1138. data/src/core/lib/security/authorization/authorization_policy_provider.h +40 -0
  1139. data/src/core/lib/security/authorization/authorization_policy_provider_vtable.cc +46 -0
  1140. data/src/core/lib/security/authorization/evaluate_args.cc +212 -0
  1141. data/src/core/lib/security/authorization/evaluate_args.h +92 -0
  1142. data/src/core/lib/security/authorization/grpc_authorization_engine.cc +60 -0
  1143. data/src/core/lib/security/authorization/grpc_authorization_engine.h +62 -0
  1144. data/src/core/lib/security/authorization/grpc_server_authz_filter.cc +106 -0
  1145. data/src/core/lib/security/authorization/grpc_server_authz_filter.h +50 -0
  1146. data/src/core/lib/security/authorization/matchers.cc +227 -0
  1147. data/src/core/lib/security/authorization/matchers.h +211 -0
  1148. data/src/core/lib/security/authorization/rbac_policy.cc +442 -0
  1149. data/src/core/lib/security/authorization/rbac_policy.h +171 -0
  1150. data/src/core/lib/security/context/security_context.cc +19 -13
  1151. data/src/core/lib/security/context/security_context.h +12 -3
  1152. data/src/core/lib/security/credentials/alts/alts_credentials.cc +8 -6
  1153. data/src/core/lib/security/credentials/alts/alts_credentials.h +11 -1
  1154. data/src/core/lib/security/credentials/alts/check_gcp_environment.cc +1 -1
  1155. data/src/core/lib/security/credentials/alts/check_gcp_environment_linux.cc +2 -2
  1156. data/src/core/lib/security/credentials/alts/check_gcp_environment_no_op.cc +2 -2
  1157. data/src/core/lib/security/credentials/alts/check_gcp_environment_windows.cc +2 -2
  1158. data/src/core/lib/security/credentials/call_creds_util.cc +87 -0
  1159. data/src/core/lib/security/credentials/call_creds_util.h +42 -0
  1160. data/src/core/lib/security/credentials/channel_creds_registry.h +97 -0
  1161. data/src/core/lib/security/credentials/channel_creds_registry_init.cc +70 -0
  1162. data/src/core/lib/security/credentials/composite/composite_credentials.cc +28 -86
  1163. data/src/core/lib/security/credentials/composite/composite_credentials.h +23 -10
  1164. data/src/core/lib/security/credentials/credentials.cc +18 -17
  1165. data/src/core/lib/security/credentials/credentials.h +92 -90
  1166. data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +419 -0
  1167. data/src/core/lib/security/credentials/external/aws_external_account_credentials.h +82 -0
  1168. data/src/core/lib/security/credentials/external/aws_request_signer.cc +214 -0
  1169. data/src/core/lib/security/credentials/external/aws_request_signer.h +72 -0
  1170. data/src/core/lib/security/credentials/external/external_account_credentials.cc +544 -0
  1171. data/src/core/lib/security/credentials/external/external_account_credentials.h +118 -0
  1172. data/src/core/lib/security/credentials/external/file_external_account_credentials.cc +135 -0
  1173. data/src/core/lib/security/credentials/external/file_external_account_credentials.h +49 -0
  1174. data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +230 -0
  1175. data/src/core/lib/security/credentials/external/url_external_account_credentials.h +61 -0
  1176. data/src/core/lib/security/credentials/fake/fake_credentials.cc +26 -29
  1177. data/src/core/lib/security/credentials/fake/fake_credentials.h +22 -21
  1178. data/src/core/lib/security/credentials/google_default/credentials_generic.cc +8 -7
  1179. data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +169 -82
  1180. data/src/core/lib/security/credentials/google_default/google_default_credentials.h +9 -3
  1181. data/src/core/lib/security/credentials/iam/iam_credentials.cc +23 -29
  1182. data/src/core/lib/security/credentials/iam/iam_credentials.h +15 -9
  1183. data/src/core/lib/security/credentials/insecure/insecure_credentials.cc +63 -0
  1184. data/src/core/lib/security/credentials/insecure/insecure_credentials.h +57 -0
  1185. data/src/core/lib/security/credentials/jwt/json_token.cc +10 -12
  1186. data/src/core/lib/security/credentials/jwt/json_token.h +2 -1
  1187. data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +61 -53
  1188. data/src/core/lib/security/credentials/jwt/jwt_credentials.h +31 -18
  1189. data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +70 -62
  1190. data/src/core/lib/security/credentials/jwt/jwt_verifier.h +4 -4
  1191. data/src/core/lib/security/credentials/local/local_credentials.cc +8 -7
  1192. data/src/core/lib/security/credentials/local/local_credentials.h +11 -1
  1193. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +216 -251
  1194. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +67 -38
  1195. data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +100 -158
  1196. data/src/core/lib/security/credentials/plugin/plugin_credentials.h +56 -27
  1197. data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +36 -22
  1198. data/src/core/lib/security/credentials/ssl/ssl_credentials.h +26 -6
  1199. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.cc +348 -0
  1200. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.h +217 -0
  1201. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +454 -0
  1202. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h +195 -0
  1203. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.cc +209 -0
  1204. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.h +145 -0
  1205. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +62 -184
  1206. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +98 -294
  1207. data/src/core/lib/security/credentials/tls/tls_credentials.cc +40 -21
  1208. data/src/core/lib/security/credentials/tls/tls_credentials.h +9 -3
  1209. data/src/core/lib/security/credentials/tls/tls_utils.cc +123 -0
  1210. data/src/core/lib/security/credentials/tls/tls_utils.h +51 -0
  1211. data/src/core/lib/security/credentials/xds/xds_credentials.cc +237 -0
  1212. data/src/core/lib/security/credentials/xds/xds_credentials.h +100 -0
  1213. data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +23 -19
  1214. data/src/core/lib/security/security_connector/alts/alts_security_connector.h +3 -3
  1215. data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +37 -43
  1216. data/src/core/lib/security/security_connector/fake/fake_security_connector.h +0 -2
  1217. data/src/core/lib/security/security_connector/insecure/insecure_security_connector.cc +111 -0
  1218. data/src/core/lib/security/security_connector/insecure/insecure_security_connector.h +92 -0
  1219. data/src/core/lib/security/security_connector/load_system_roots.h +4 -0
  1220. data/src/core/lib/security/security_connector/load_system_roots_fallback.cc +1 -0
  1221. data/src/core/lib/security/security_connector/load_system_roots_linux.cc +5 -6
  1222. data/src/core/lib/security/security_connector/load_system_roots_linux.h +2 -0
  1223. data/src/core/lib/security/security_connector/local/local_security_connector.cc +35 -27
  1224. data/src/core/lib/security/security_connector/security_connector.cc +14 -18
  1225. data/src/core/lib/security/security_connector/security_connector.h +38 -27
  1226. data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +43 -32
  1227. data/src/core/lib/security/security_connector/ssl/ssl_security_connector.h +6 -2
  1228. data/src/core/lib/security/security_connector/ssl_utils.cc +119 -65
  1229. data/src/core/lib/security/security_connector/ssl_utils.h +40 -40
  1230. data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +646 -423
  1231. data/src/core/lib/security/security_connector/tls/tls_security_connector.h +187 -104
  1232. data/src/core/lib/security/transport/auth_filters.h +37 -8
  1233. data/src/core/lib/security/transport/client_auth_filter.cc +102 -358
  1234. data/src/core/lib/security/transport/secure_endpoint.cc +214 -149
  1235. data/src/core/lib/security/transport/secure_endpoint.h +2 -1
  1236. data/src/core/lib/security/transport/security_handshaker.cc +172 -94
  1237. data/src/core/lib/security/transport/security_handshaker.h +2 -1
  1238. data/src/core/lib/security/transport/server_auth_filter.cc +58 -47
  1239. data/src/core/lib/security/transport/tsi_error.cc +5 -6
  1240. data/src/core/lib/security/transport/tsi_error.h +2 -1
  1241. data/src/core/lib/security/util/json_util.cc +10 -13
  1242. data/src/core/lib/security/util/json_util.h +2 -1
  1243. data/src/core/lib/service_config/service_config.h +82 -0
  1244. data/src/core/lib/service_config/service_config_call_data.h +72 -0
  1245. data/src/core/lib/service_config/service_config_impl.cc +230 -0
  1246. data/src/core/lib/service_config/service_config_impl.h +125 -0
  1247. data/src/core/lib/service_config/service_config_parser.cc +93 -0
  1248. data/src/core/lib/service_config/service_config_parser.h +106 -0
  1249. data/src/core/lib/slice/percent_encoding.cc +84 -97
  1250. data/src/core/lib/slice/percent_encoding.h +23 -28
  1251. data/src/core/lib/slice/slice.cc +111 -181
  1252. data/src/core/lib/slice/slice.h +384 -0
  1253. data/src/core/lib/slice/slice_api.cc +39 -0
  1254. data/src/core/lib/slice/slice_buffer.cc +12 -8
  1255. data/src/core/lib/slice/slice_internal.h +17 -277
  1256. data/src/core/lib/slice/slice_refcount.cc +35 -0
  1257. data/src/core/lib/slice/slice_refcount.h +46 -0
  1258. data/src/core/lib/slice/slice_refcount_base.h +61 -0
  1259. data/src/core/lib/slice/slice_split.cc +100 -0
  1260. data/src/core/lib/slice/slice_split.h +40 -0
  1261. data/src/core/lib/slice/slice_string_helpers.cc +0 -83
  1262. data/src/core/lib/slice/slice_string_helpers.h +0 -11
  1263. data/src/core/lib/surface/api_trace.cc +2 -1
  1264. data/src/core/lib/surface/api_trace.h +1 -0
  1265. data/src/core/lib/surface/builtins.cc +49 -0
  1266. data/src/core/lib/surface/builtins.h +26 -0
  1267. data/src/core/lib/surface/byte_buffer_reader.cc +1 -1
  1268. data/src/core/lib/surface/call.cc +1171 -1248
  1269. data/src/core/lib/surface/call.h +16 -24
  1270. data/src/core/lib/surface/call_details.cc +10 -10
  1271. data/src/core/lib/surface/call_log_batch.cc +2 -2
  1272. data/src/core/lib/surface/channel.cc +96 -135
  1273. data/src/core/lib/surface/channel.h +31 -22
  1274. data/src/core/lib/surface/channel_init.cc +22 -76
  1275. data/src/core/lib/surface/channel_init.h +44 -40
  1276. data/src/core/lib/surface/channel_ping.cc +2 -3
  1277. data/src/core/lib/surface/channel_stack_type.cc +2 -1
  1278. data/src/core/lib/surface/completion_queue.cc +154 -162
  1279. data/src/core/lib/surface/completion_queue.h +18 -17
  1280. data/src/core/lib/surface/completion_queue_factory.cc +3 -3
  1281. data/src/core/lib/surface/completion_queue_factory.h +1 -0
  1282. data/src/core/lib/surface/event_string.cc +1 -0
  1283. data/src/core/lib/surface/init.cc +121 -83
  1284. data/src/core/lib/surface/init.h +10 -4
  1285. data/src/core/lib/surface/lame_client.cc +80 -72
  1286. data/src/core/lib/surface/lame_client.h +5 -0
  1287. data/src/core/lib/surface/metadata_array.cc +2 -2
  1288. data/src/core/lib/surface/server.cc +1142 -1373
  1289. data/src/core/lib/surface/server.h +467 -71
  1290. data/src/core/lib/surface/validate_metadata.cc +55 -24
  1291. data/src/core/lib/surface/validate_metadata.h +6 -2
  1292. data/src/core/lib/surface/version.cc +2 -2
  1293. data/src/core/lib/transport/bdp_estimator.cc +11 -12
  1294. data/src/core/lib/transport/bdp_estimator.h +4 -3
  1295. data/src/core/lib/transport/byte_stream.cc +11 -5
  1296. data/src/core/lib/transport/byte_stream.h +12 -11
  1297. data/src/core/lib/transport/connectivity_state.cc +27 -19
  1298. data/src/core/lib/transport/connectivity_state.h +28 -14
  1299. data/src/core/lib/transport/error_utils.cc +73 -21
  1300. data/src/core/lib/transport/error_utils.h +17 -4
  1301. data/src/core/lib/transport/metadata_batch.h +1355 -152
  1302. data/src/core/lib/transport/parsed_metadata.cc +37 -0
  1303. data/src/core/lib/transport/parsed_metadata.h +401 -0
  1304. data/src/core/lib/transport/pid_controller.cc +4 -4
  1305. data/src/core/lib/transport/status_conversion.cc +2 -2
  1306. data/src/core/lib/transport/status_conversion.h +1 -1
  1307. data/src/core/lib/transport/timeout_encoding.cc +208 -71
  1308. data/src/core/lib/transport/timeout_encoding.h +40 -10
  1309. data/src/core/lib/transport/transport.cc +18 -36
  1310. data/src/core/lib/transport/transport.h +129 -15
  1311. data/src/core/lib/transport/transport_impl.h +14 -0
  1312. data/src/core/lib/transport/transport_op_string.cc +13 -35
  1313. data/src/core/lib/uri/uri_parser.cc +305 -254
  1314. data/src/core/lib/uri/uri_parser.h +92 -38
  1315. data/src/core/plugin_registry/grpc_plugin_registry.cc +76 -68
  1316. data/src/core/plugin_registry/grpc_plugin_registry_extra.cc +85 -0
  1317. data/src/core/tsi/alts/crypt/aes_gcm.cc +6 -3
  1318. data/src/core/tsi/alts/crypt/gsec.cc +5 -4
  1319. data/src/core/tsi/alts/crypt/gsec.h +5 -0
  1320. data/src/core/tsi/alts/frame_protector/alts_frame_protector.cc +13 -12
  1321. data/src/core/tsi/alts/frame_protector/frame_handler.cc +18 -17
  1322. data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +77 -68
  1323. data/src/core/tsi/alts/handshaker/alts_handshaker_client.h +2 -3
  1324. data/src/core/tsi/alts/handshaker/alts_shared_resource.cc +9 -1
  1325. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +103 -64
  1326. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.h +1 -1
  1327. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker_private.h +2 -1
  1328. data/src/core/tsi/alts/handshaker/alts_tsi_utils.cc +2 -2
  1329. data/src/core/tsi/alts/handshaker/alts_tsi_utils.h +1 -1
  1330. data/src/core/tsi/alts/handshaker/transport_security_common_api.cc +5 -5
  1331. data/src/core/tsi/alts/handshaker/transport_security_common_api.h +2 -2
  1332. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.cc +2 -2
  1333. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc +1 -1
  1334. data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc +8 -6
  1335. data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +6 -6
  1336. data/src/core/tsi/fake_transport_security.cc +32 -12
  1337. data/src/core/tsi/local_transport_security.cc +46 -87
  1338. data/src/core/tsi/local_transport_security.h +6 -10
  1339. data/src/core/tsi/ssl/key_logging/ssl_key_logging.cc +141 -0
  1340. data/src/core/tsi/ssl/key_logging/ssl_key_logging.h +81 -0
  1341. data/src/core/tsi/ssl/session_cache/ssl_session.h +2 -4
  1342. data/src/core/tsi/ssl/session_cache/ssl_session_boringssl.cc +1 -1
  1343. data/src/core/tsi/ssl/session_cache/ssl_session_cache.cc +20 -55
  1344. data/src/core/tsi/ssl/session_cache/ssl_session_cache.h +9 -9
  1345. data/src/core/tsi/ssl/session_cache/ssl_session_openssl.cc +2 -2
  1346. data/src/core/tsi/ssl_transport_security.cc +422 -129
  1347. data/src/core/tsi/ssl_transport_security.h +68 -16
  1348. data/src/core/tsi/transport_security.cc +25 -11
  1349. data/src/core/tsi/transport_security.h +16 -1
  1350. data/src/core/tsi/transport_security_grpc.h +1 -0
  1351. data/src/core/tsi/transport_security_interface.h +34 -1
  1352. data/src/ruby/bin/math_services_pb.rb +5 -5
  1353. data/src/ruby/ext/grpc/extconf.rb +34 -11
  1354. data/src/ruby/ext/grpc/rb_byte_buffer.c +2 -1
  1355. data/src/ruby/ext/grpc/rb_call.c +8 -7
  1356. data/src/ruby/ext/grpc/rb_call.h +4 -0
  1357. data/src/ruby/ext/grpc/rb_call_credentials.c +62 -17
  1358. data/src/ruby/ext/grpc/rb_channel.c +24 -10
  1359. data/src/ruby/ext/grpc/rb_channel_args.c +2 -2
  1360. data/src/ruby/ext/grpc/rb_channel_credentials.c +24 -5
  1361. data/src/ruby/ext/grpc/rb_channel_credentials.h +5 -0
  1362. data/src/ruby/ext/grpc/rb_completion_queue.c +3 -2
  1363. data/src/ruby/ext/grpc/rb_compression_options.c +6 -5
  1364. data/src/ruby/ext/grpc/rb_enable_cpp.cc +1 -1
  1365. data/src/ruby/ext/grpc/rb_event_thread.c +4 -2
  1366. data/src/ruby/ext/grpc/rb_grpc.c +9 -4
  1367. data/src/ruby/ext/grpc/rb_grpc.h +1 -0
  1368. data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +76 -48
  1369. data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +130 -88
  1370. data/src/ruby/ext/grpc/rb_server.c +26 -10
  1371. data/src/ruby/ext/grpc/rb_server_credentials.c +22 -6
  1372. data/src/ruby/ext/grpc/rb_server_credentials.h +5 -0
  1373. data/src/ruby/ext/grpc/rb_xds_channel_credentials.c +218 -0
  1374. data/src/ruby/ext/grpc/rb_xds_channel_credentials.h +37 -0
  1375. data/src/ruby/ext/grpc/rb_xds_server_credentials.c +170 -0
  1376. data/src/ruby/ext/grpc/rb_xds_server_credentials.h +37 -0
  1377. data/src/ruby/lib/grpc/generic/active_call.rb +7 -1
  1378. data/src/ruby/lib/grpc/generic/client_stub.rb +5 -3
  1379. data/src/ruby/lib/grpc/generic/interceptors.rb +1 -1
  1380. data/src/ruby/lib/grpc/grpc.rb +1 -1
  1381. data/src/ruby/lib/grpc/version.rb +1 -1
  1382. data/src/ruby/pb/generate_proto_ruby.sh +1 -0
  1383. data/src/ruby/pb/grpc/health/v1/health_services_pb.rb +3 -3
  1384. data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +40 -0
  1385. data/src/ruby/pb/src/proto/grpc/testing/test_pb.rb +1 -0
  1386. data/src/ruby/pb/src/proto/grpc/testing/test_services_pb.rb +50 -16
  1387. data/src/ruby/pb/test/client.rb +769 -0
  1388. data/src/ruby/pb/test/server.rb +252 -0
  1389. data/src/ruby/pb/test/xds_client.rb +415 -0
  1390. data/src/ruby/spec/call_spec.rb +1 -1
  1391. data/src/ruby/spec/channel_credentials_spec.rb +42 -0
  1392. data/src/ruby/spec/channel_spec.rb +17 -6
  1393. data/src/ruby/spec/client_auth_spec.rb +27 -1
  1394. data/src/ruby/spec/client_server_spec.rb +1 -1
  1395. data/src/ruby/spec/errors_spec.rb +1 -1
  1396. data/src/ruby/spec/generic/active_call_spec.rb +21 -10
  1397. data/src/ruby/spec/generic/client_stub_spec.rb +4 -4
  1398. data/src/ruby/spec/generic/rpc_server_spec.rb +1 -1
  1399. data/src/ruby/spec/pb/codegen/grpc/testing/package_options_import2.proto +23 -0
  1400. data/src/ruby/spec/pb/codegen/grpc/testing/package_options_ruby_style.proto +2 -0
  1401. data/src/ruby/spec/pb/codegen/grpc/testing/same_package_service_name.proto +27 -0
  1402. data/src/ruby/spec/pb/codegen/grpc/testing/same_ruby_package_service_name.proto +29 -0
  1403. data/src/ruby/spec/pb/codegen/package_option_spec.rb +27 -7
  1404. data/src/ruby/spec/server_credentials_spec.rb +25 -0
  1405. data/src/ruby/spec/server_spec.rb +22 -0
  1406. data/src/ruby/spec/support/services.rb +10 -4
  1407. data/src/ruby/spec/user_agent_spec.rb +74 -0
  1408. data/third_party/abseil-cpp/absl/algorithm/container.h +1774 -0
  1409. data/third_party/abseil-cpp/absl/base/attributes.h +169 -55
  1410. data/third_party/abseil-cpp/absl/base/call_once.h +3 -10
  1411. data/third_party/abseil-cpp/absl/base/casts.h +9 -6
  1412. data/third_party/abseil-cpp/absl/base/config.h +150 -49
  1413. data/third_party/abseil-cpp/absl/base/dynamic_annotations.h +417 -335
  1414. data/third_party/abseil-cpp/absl/base/internal/direct_mmap.h +169 -0
  1415. data/third_party/abseil-cpp/absl/base/internal/dynamic_annotations.h +398 -0
  1416. data/third_party/abseil-cpp/absl/base/internal/endian.h +61 -0
  1417. data/third_party/abseil-cpp/absl/base/internal/fast_type_id.h +48 -0
  1418. data/third_party/abseil-cpp/absl/base/internal/invoke.h +4 -4
  1419. data/third_party/abseil-cpp/absl/base/internal/low_level_alloc.cc +620 -0
  1420. data/third_party/abseil-cpp/absl/base/internal/low_level_alloc.h +126 -0
  1421. data/third_party/abseil-cpp/absl/base/internal/low_level_scheduling.h +31 -4
  1422. data/third_party/abseil-cpp/absl/base/internal/raw_logging.cc +35 -33
  1423. data/third_party/abseil-cpp/absl/base/internal/raw_logging.h +17 -5
  1424. data/third_party/abseil-cpp/absl/base/internal/spinlock.cc +36 -40
  1425. data/third_party/abseil-cpp/absl/base/internal/spinlock.h +36 -31
  1426. data/third_party/abseil-cpp/absl/base/internal/spinlock_akaros.inc +2 -2
  1427. data/third_party/abseil-cpp/absl/base/internal/spinlock_linux.inc +11 -3
  1428. data/third_party/abseil-cpp/absl/base/internal/spinlock_posix.inc +2 -2
  1429. data/third_party/abseil-cpp/absl/base/internal/spinlock_wait.h +13 -11
  1430. data/third_party/abseil-cpp/absl/base/internal/spinlock_win32.inc +5 -5
  1431. data/third_party/abseil-cpp/absl/base/internal/sysinfo.cc +97 -5
  1432. data/third_party/abseil-cpp/absl/base/internal/sysinfo.h +8 -0
  1433. data/third_party/abseil-cpp/absl/base/internal/thread_identity.cc +9 -6
  1434. data/third_party/abseil-cpp/absl/base/internal/thread_identity.h +58 -52
  1435. data/third_party/abseil-cpp/absl/base/internal/throw_delegate.cc +111 -7
  1436. data/third_party/abseil-cpp/absl/base/internal/tsan_mutex_interface.h +3 -1
  1437. data/third_party/abseil-cpp/absl/base/internal/unaligned_access.h +0 -76
  1438. data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc +17 -3
  1439. data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.h +7 -7
  1440. data/third_party/abseil-cpp/absl/base/log_severity.h +4 -4
  1441. data/third_party/abseil-cpp/absl/base/macros.h +47 -109
  1442. data/third_party/abseil-cpp/absl/base/optimization.h +69 -6
  1443. data/third_party/abseil-cpp/absl/base/options.h +31 -4
  1444. data/third_party/abseil-cpp/absl/base/policy_checks.h +1 -1
  1445. data/third_party/abseil-cpp/absl/base/port.h +0 -1
  1446. data/third_party/abseil-cpp/absl/base/thread_annotations.h +95 -40
  1447. data/third_party/abseil-cpp/absl/container/fixed_array.h +527 -0
  1448. data/third_party/abseil-cpp/absl/container/flat_hash_map.h +606 -0
  1449. data/third_party/abseil-cpp/absl/container/inlined_vector.h +141 -134
  1450. data/third_party/abseil-cpp/absl/container/internal/common.h +206 -0
  1451. data/third_party/abseil-cpp/absl/container/internal/compressed_tuple.h +34 -9
  1452. data/third_party/abseil-cpp/absl/container/internal/container_memory.h +460 -0
  1453. data/third_party/abseil-cpp/absl/container/internal/hash_function_defaults.h +163 -0
  1454. data/third_party/abseil-cpp/absl/container/internal/hash_policy_traits.h +208 -0
  1455. data/third_party/abseil-cpp/absl/container/internal/hashtable_debug_hooks.h +85 -0
  1456. data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.cc +190 -0
  1457. data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.h +281 -0
  1458. data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler_force_weak_definition.cc +31 -0
  1459. data/third_party/abseil-cpp/absl/container/internal/have_sse.h +50 -0
  1460. data/third_party/abseil-cpp/absl/container/internal/inlined_vector.h +469 -429
  1461. data/third_party/abseil-cpp/absl/container/internal/layout.h +743 -0
  1462. data/third_party/abseil-cpp/absl/container/internal/raw_hash_map.h +198 -0
  1463. data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.cc +67 -0
  1464. data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.h +2034 -0
  1465. data/third_party/abseil-cpp/absl/debugging/internal/address_is_readable.cc +139 -0
  1466. data/third_party/abseil-cpp/absl/debugging/internal/address_is_readable.h +32 -0
  1467. data/third_party/abseil-cpp/absl/debugging/internal/demangle.cc +1959 -0
  1468. data/third_party/abseil-cpp/absl/debugging/internal/demangle.h +71 -0
  1469. data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.cc +383 -0
  1470. data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.h +138 -0
  1471. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_aarch64-inl.inc +199 -0
  1472. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_arm-inl.inc +134 -0
  1473. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_config.h +87 -0
  1474. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_emscripten-inl.inc +110 -0
  1475. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_generic-inl.inc +108 -0
  1476. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_powerpc-inl.inc +253 -0
  1477. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_riscv-inl.inc +234 -0
  1478. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_unimplemented-inl.inc +24 -0
  1479. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_win32-inl.inc +93 -0
  1480. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_x86-inl.inc +364 -0
  1481. data/third_party/abseil-cpp/absl/debugging/internal/symbolize.h +153 -0
  1482. data/third_party/abseil-cpp/absl/debugging/internal/vdso_support.cc +191 -0
  1483. data/third_party/abseil-cpp/absl/debugging/internal/vdso_support.h +158 -0
  1484. data/third_party/abseil-cpp/absl/debugging/stacktrace.cc +142 -0
  1485. data/third_party/abseil-cpp/absl/debugging/stacktrace.h +231 -0
  1486. data/third_party/abseil-cpp/absl/debugging/symbolize.cc +38 -0
  1487. data/third_party/abseil-cpp/absl/debugging/symbolize.h +99 -0
  1488. data/third_party/abseil-cpp/absl/debugging/symbolize_darwin.inc +101 -0
  1489. data/third_party/abseil-cpp/absl/debugging/symbolize_elf.inc +1574 -0
  1490. data/third_party/abseil-cpp/absl/debugging/symbolize_emscripten.inc +72 -0
  1491. data/third_party/abseil-cpp/absl/debugging/symbolize_unimplemented.inc +40 -0
  1492. data/third_party/abseil-cpp/absl/debugging/symbolize_win32.inc +81 -0
  1493. data/third_party/abseil-cpp/absl/functional/bind_front.h +184 -0
  1494. data/third_party/abseil-cpp/absl/functional/function_ref.h +142 -0
  1495. data/third_party/abseil-cpp/absl/functional/internal/front_binder.h +95 -0
  1496. data/third_party/abseil-cpp/absl/functional/internal/function_ref.h +106 -0
  1497. data/third_party/abseil-cpp/absl/hash/hash.h +347 -0
  1498. data/third_party/abseil-cpp/absl/hash/internal/city.cc +349 -0
  1499. data/third_party/abseil-cpp/absl/hash/internal/city.h +78 -0
  1500. data/third_party/abseil-cpp/absl/hash/internal/hash.cc +69 -0
  1501. data/third_party/abseil-cpp/absl/hash/internal/hash.h +1096 -0
  1502. data/third_party/abseil-cpp/absl/hash/internal/low_level_hash.cc +123 -0
  1503. data/third_party/abseil-cpp/absl/hash/internal/low_level_hash.h +50 -0
  1504. data/third_party/abseil-cpp/absl/memory/memory.h +4 -0
  1505. data/third_party/abseil-cpp/absl/meta/type_traits.h +49 -11
  1506. data/third_party/abseil-cpp/absl/numeric/bits.h +177 -0
  1507. data/third_party/abseil-cpp/absl/numeric/int128.cc +16 -37
  1508. data/third_party/abseil-cpp/absl/numeric/int128.h +159 -85
  1509. data/third_party/abseil-cpp/absl/numeric/int128_have_intrinsic.inc +19 -25
  1510. data/third_party/abseil-cpp/absl/numeric/int128_no_intrinsic.inc +73 -70
  1511. data/third_party/abseil-cpp/absl/numeric/internal/bits.h +358 -0
  1512. data/third_party/abseil-cpp/absl/numeric/internal/representation.h +55 -0
  1513. data/third_party/abseil-cpp/absl/profiling/internal/exponential_biased.cc +93 -0
  1514. data/third_party/abseil-cpp/absl/profiling/internal/exponential_biased.h +130 -0
  1515. data/third_party/abseil-cpp/absl/profiling/internal/sample_recorder.h +230 -0
  1516. data/third_party/abseil-cpp/absl/random/bernoulli_distribution.h +200 -0
  1517. data/third_party/abseil-cpp/absl/random/beta_distribution.h +427 -0
  1518. data/third_party/abseil-cpp/absl/random/discrete_distribution.cc +98 -0
  1519. data/third_party/abseil-cpp/absl/random/discrete_distribution.h +247 -0
  1520. data/third_party/abseil-cpp/absl/random/distributions.h +452 -0
  1521. data/third_party/abseil-cpp/absl/random/exponential_distribution.h +165 -0
  1522. data/third_party/abseil-cpp/absl/random/gaussian_distribution.cc +104 -0
  1523. data/third_party/abseil-cpp/absl/random/gaussian_distribution.h +275 -0
  1524. data/third_party/abseil-cpp/absl/random/internal/distribution_caller.h +92 -0
  1525. data/third_party/abseil-cpp/absl/random/internal/fast_uniform_bits.h +268 -0
  1526. data/third_party/abseil-cpp/absl/random/internal/fastmath.h +57 -0
  1527. data/third_party/abseil-cpp/absl/random/internal/generate_real.h +144 -0
  1528. data/third_party/abseil-cpp/absl/random/internal/iostream_state_saver.h +245 -0
  1529. data/third_party/abseil-cpp/absl/random/internal/nonsecure_base.h +150 -0
  1530. data/third_party/abseil-cpp/absl/random/internal/pcg_engine.h +308 -0
  1531. data/third_party/abseil-cpp/absl/random/internal/platform.h +171 -0
  1532. data/third_party/abseil-cpp/absl/random/internal/pool_urbg.cc +253 -0
  1533. data/third_party/abseil-cpp/absl/random/internal/pool_urbg.h +131 -0
  1534. data/third_party/abseil-cpp/absl/random/internal/randen.cc +91 -0
  1535. data/third_party/abseil-cpp/absl/random/internal/randen.h +102 -0
  1536. data/third_party/abseil-cpp/absl/random/internal/randen_detect.cc +221 -0
  1537. data/third_party/abseil-cpp/absl/random/internal/randen_detect.h +33 -0
  1538. data/third_party/abseil-cpp/absl/random/internal/randen_engine.h +239 -0
  1539. data/third_party/abseil-cpp/absl/random/internal/randen_hwaes.cc +526 -0
  1540. data/third_party/abseil-cpp/absl/random/internal/randen_hwaes.h +50 -0
  1541. data/third_party/abseil-cpp/absl/random/internal/randen_round_keys.cc +462 -0
  1542. data/third_party/abseil-cpp/absl/random/internal/randen_slow.cc +471 -0
  1543. data/third_party/abseil-cpp/absl/random/internal/randen_slow.h +40 -0
  1544. data/third_party/abseil-cpp/absl/random/internal/randen_traits.h +88 -0
  1545. data/third_party/abseil-cpp/absl/random/internal/salted_seed_seq.h +167 -0
  1546. data/third_party/abseil-cpp/absl/random/internal/seed_material.cc +267 -0
  1547. data/third_party/abseil-cpp/absl/random/internal/seed_material.h +104 -0
  1548. data/third_party/abseil-cpp/absl/random/internal/traits.h +101 -0
  1549. data/third_party/abseil-cpp/absl/random/internal/uniform_helper.h +244 -0
  1550. data/third_party/abseil-cpp/absl/random/internal/wide_multiply.h +111 -0
  1551. data/third_party/abseil-cpp/absl/random/log_uniform_int_distribution.h +257 -0
  1552. data/third_party/abseil-cpp/absl/random/poisson_distribution.h +258 -0
  1553. data/third_party/abseil-cpp/absl/random/random.h +189 -0
  1554. data/third_party/abseil-cpp/absl/random/seed_gen_exception.cc +46 -0
  1555. data/third_party/abseil-cpp/absl/random/seed_gen_exception.h +55 -0
  1556. data/third_party/abseil-cpp/absl/random/seed_sequences.cc +29 -0
  1557. data/third_party/abseil-cpp/absl/random/seed_sequences.h +110 -0
  1558. data/third_party/abseil-cpp/absl/random/uniform_int_distribution.h +275 -0
  1559. data/third_party/abseil-cpp/absl/random/uniform_real_distribution.h +202 -0
  1560. data/third_party/abseil-cpp/absl/random/zipf_distribution.h +271 -0
  1561. data/third_party/abseil-cpp/absl/status/internal/status_internal.h +69 -0
  1562. data/third_party/abseil-cpp/absl/status/internal/statusor_internal.h +396 -0
  1563. data/third_party/abseil-cpp/absl/status/status.cc +444 -0
  1564. data/third_party/abseil-cpp/absl/status/status.h +882 -0
  1565. data/third_party/abseil-cpp/absl/status/status_payload_printer.cc +38 -0
  1566. data/third_party/abseil-cpp/absl/status/status_payload_printer.h +51 -0
  1567. data/third_party/abseil-cpp/absl/status/statusor.cc +103 -0
  1568. data/third_party/abseil-cpp/absl/status/statusor.h +770 -0
  1569. data/third_party/abseil-cpp/absl/strings/charconv.cc +10 -10
  1570. data/third_party/abseil-cpp/absl/strings/charconv.h +3 -2
  1571. data/third_party/abseil-cpp/absl/strings/cord.cc +2047 -0
  1572. data/third_party/abseil-cpp/absl/strings/cord.h +1521 -0
  1573. data/third_party/abseil-cpp/absl/strings/escaping.cc +13 -13
  1574. data/third_party/abseil-cpp/absl/strings/internal/char_map.h +1 -1
  1575. data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.cc +1 -1
  1576. data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.h +2 -2
  1577. data/third_party/abseil-cpp/absl/strings/internal/charconv_parse.cc +9 -9
  1578. data/third_party/abseil-cpp/absl/strings/internal/cord_internal.cc +89 -0
  1579. data/third_party/abseil-cpp/absl/strings/internal/cord_internal.h +620 -0
  1580. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.cc +1128 -0
  1581. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.h +939 -0
  1582. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_navigator.cc +185 -0
  1583. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_navigator.h +265 -0
  1584. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_reader.cc +68 -0
  1585. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_reader.h +211 -0
  1586. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_consume.cc +129 -0
  1587. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_consume.h +50 -0
  1588. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_flat.h +146 -0
  1589. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_ring.cc +771 -0
  1590. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_ring.h +607 -0
  1591. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_ring_reader.h +118 -0
  1592. data/third_party/abseil-cpp/absl/strings/internal/cordz_functions.cc +96 -0
  1593. data/third_party/abseil-cpp/absl/strings/internal/cordz_functions.h +85 -0
  1594. data/third_party/abseil-cpp/absl/strings/internal/cordz_handle.cc +139 -0
  1595. data/third_party/abseil-cpp/absl/strings/internal/cordz_handle.h +131 -0
  1596. data/third_party/abseil-cpp/absl/strings/internal/cordz_info.cc +445 -0
  1597. data/third_party/abseil-cpp/absl/strings/internal/cordz_info.h +298 -0
  1598. data/third_party/abseil-cpp/absl/strings/internal/cordz_statistics.h +87 -0
  1599. data/third_party/abseil-cpp/absl/strings/internal/cordz_update_scope.h +71 -0
  1600. data/third_party/abseil-cpp/absl/strings/internal/cordz_update_tracker.h +121 -0
  1601. data/third_party/abseil-cpp/absl/strings/internal/resize_uninitialized.h +48 -2
  1602. data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.cc +236 -136
  1603. data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.h +158 -64
  1604. data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.cc +19 -6
  1605. data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.h +30 -22
  1606. data/third_party/abseil-cpp/absl/strings/internal/str_format/checker.h +21 -14
  1607. data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.cc +37 -13
  1608. data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.h +183 -153
  1609. data/third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.cc +1017 -87
  1610. data/third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.h +17 -3
  1611. data/third_party/abseil-cpp/absl/strings/internal/str_format/output.h +4 -12
  1612. data/third_party/abseil-cpp/absl/strings/internal/str_format/parser.cc +82 -77
  1613. data/third_party/abseil-cpp/absl/strings/internal/str_format/parser.h +51 -27
  1614. data/third_party/abseil-cpp/absl/strings/internal/str_split_internal.h +49 -74
  1615. data/third_party/abseil-cpp/absl/strings/internal/string_constant.h +64 -0
  1616. data/third_party/abseil-cpp/absl/strings/match.cc +6 -3
  1617. data/third_party/abseil-cpp/absl/strings/match.h +16 -6
  1618. data/third_party/abseil-cpp/absl/strings/numbers.cc +133 -5
  1619. data/third_party/abseil-cpp/absl/strings/numbers.h +44 -10
  1620. data/third_party/abseil-cpp/absl/strings/str_cat.cc +8 -8
  1621. data/third_party/abseil-cpp/absl/strings/str_cat.h +1 -1
  1622. data/third_party/abseil-cpp/absl/strings/str_format.h +290 -15
  1623. data/third_party/abseil-cpp/absl/strings/str_join.h +1 -1
  1624. data/third_party/abseil-cpp/absl/strings/str_split.cc +2 -2
  1625. data/third_party/abseil-cpp/absl/strings/str_split.h +39 -4
  1626. data/third_party/abseil-cpp/absl/strings/string_view.cc +16 -21
  1627. data/third_party/abseil-cpp/absl/strings/string_view.h +143 -55
  1628. data/third_party/abseil-cpp/absl/strings/substitute.cc +7 -6
  1629. data/third_party/abseil-cpp/absl/strings/substitute.h +109 -81
  1630. data/third_party/abseil-cpp/absl/synchronization/barrier.cc +52 -0
  1631. data/third_party/abseil-cpp/absl/synchronization/barrier.h +79 -0
  1632. data/third_party/abseil-cpp/absl/synchronization/blocking_counter.cc +67 -0
  1633. data/third_party/abseil-cpp/absl/synchronization/blocking_counter.h +101 -0
  1634. data/third_party/abseil-cpp/absl/synchronization/internal/create_thread_identity.cc +140 -0
  1635. data/third_party/abseil-cpp/absl/synchronization/internal/create_thread_identity.h +60 -0
  1636. data/third_party/abseil-cpp/absl/synchronization/internal/futex.h +154 -0
  1637. data/third_party/abseil-cpp/absl/synchronization/internal/graphcycles.cc +698 -0
  1638. data/third_party/abseil-cpp/absl/synchronization/internal/graphcycles.h +141 -0
  1639. data/third_party/abseil-cpp/absl/synchronization/internal/kernel_timeout.h +156 -0
  1640. data/third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.cc +106 -0
  1641. data/third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.h +115 -0
  1642. data/third_party/abseil-cpp/absl/synchronization/internal/waiter.cc +428 -0
  1643. data/third_party/abseil-cpp/absl/synchronization/internal/waiter.h +155 -0
  1644. data/third_party/abseil-cpp/absl/synchronization/mutex.cc +2751 -0
  1645. data/third_party/abseil-cpp/absl/synchronization/mutex.h +1082 -0
  1646. data/third_party/abseil-cpp/absl/synchronization/notification.cc +78 -0
  1647. data/third_party/abseil-cpp/absl/synchronization/notification.h +123 -0
  1648. data/third_party/abseil-cpp/absl/time/civil_time.cc +9 -11
  1649. data/third_party/abseil-cpp/absl/time/clock.cc +146 -130
  1650. data/third_party/abseil-cpp/absl/time/clock.h +2 -2
  1651. data/third_party/abseil-cpp/absl/time/duration.cc +93 -61
  1652. data/third_party/abseil-cpp/absl/time/format.cc +43 -36
  1653. data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/civil_time_detail.h +33 -27
  1654. data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/time_zone.h +97 -22
  1655. data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/zone_info_source.h +1 -1
  1656. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.cc +1 -1
  1657. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_format.cc +136 -29
  1658. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.h +2 -1
  1659. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.cc +13 -21
  1660. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.h +1 -1
  1661. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.cc +219 -150
  1662. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.h +4 -5
  1663. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.cc +15 -8
  1664. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup.cc +49 -0
  1665. data/third_party/abseil-cpp/absl/time/internal/cctz/src/tzfile.h +3 -3
  1666. data/third_party/abseil-cpp/absl/time/internal/cctz/src/zone_info_source.cc +1 -1
  1667. data/third_party/abseil-cpp/absl/time/time.cc +4 -3
  1668. data/third_party/abseil-cpp/absl/time/time.h +107 -75
  1669. data/third_party/abseil-cpp/absl/types/bad_optional_access.h +1 -1
  1670. data/third_party/abseil-cpp/absl/types/bad_variant_access.cc +64 -0
  1671. data/third_party/abseil-cpp/absl/types/bad_variant_access.h +82 -0
  1672. data/third_party/abseil-cpp/absl/types/internal/variant.h +1646 -0
  1673. data/third_party/abseil-cpp/absl/types/optional.h +9 -9
  1674. data/third_party/abseil-cpp/absl/types/span.h +51 -38
  1675. data/third_party/abseil-cpp/absl/types/variant.h +866 -0
  1676. data/third_party/abseil-cpp/absl/utility/utility.h +2 -2
  1677. data/third_party/address_sorting/address_sorting_posix.c +1 -0
  1678. data/third_party/address_sorting/include/address_sorting/address_sorting.h +2 -0
  1679. data/third_party/boringssl-with-bazel/err_data.c +775 -721
  1680. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bitstr.c +72 -59
  1681. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bool.c +22 -23
  1682. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_d2i_fp.c +0 -2
  1683. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_enum.c +5 -5
  1684. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_gentm.c +6 -1
  1685. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_int.c +6 -6
  1686. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_mbstr.c +16 -23
  1687. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_object.c +70 -57
  1688. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_octet.c +3 -3
  1689. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_print.c +19 -29
  1690. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strex.c +650 -0
  1691. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strnid.c +106 -153
  1692. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_time.c +6 -6
  1693. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_type.c +23 -11
  1694. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utctm.c +3 -42
  1695. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utf8.c +1 -1
  1696. data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_lib.c +74 -68
  1697. data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_par.c +1 -1
  1698. data/third_party/boringssl-with-bazel/src/crypto/asn1/asn_pack.c +25 -29
  1699. data/third_party/boringssl-with-bazel/src/crypto/{x509 → asn1}/charmap.h +0 -0
  1700. data/third_party/boringssl-with-bazel/src/crypto/asn1/f_int.c +6 -1
  1701. data/third_party/boringssl-with-bazel/src/crypto/asn1/f_string.c +1 -1
  1702. data/third_party/boringssl-with-bazel/src/crypto/asn1/internal.h +224 -0
  1703. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_dec.c +79 -354
  1704. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_enc.c +327 -281
  1705. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_fre.c +15 -26
  1706. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_new.c +20 -75
  1707. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_typ.c +8 -8
  1708. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_utl.c +3 -2
  1709. data/third_party/boringssl-with-bazel/src/crypto/asn1/time_support.c +1 -1
  1710. data/third_party/boringssl-with-bazel/src/crypto/base64/base64.c +24 -8
  1711. data/third_party/boringssl-with-bazel/src/crypto/bio/bio.c +2 -0
  1712. data/third_party/boringssl-with-bazel/src/crypto/bio/bio_mem.c +1 -7
  1713. data/third_party/boringssl-with-bazel/src/crypto/bio/connect.c +1 -5
  1714. data/third_party/boringssl-with-bazel/src/crypto/bio/fd.c +0 -4
  1715. data/third_party/boringssl-with-bazel/src/crypto/bio/file.c +1 -7
  1716. data/third_party/boringssl-with-bazel/src/crypto/bio/pair.c +1 -6
  1717. data/third_party/boringssl-with-bazel/src/crypto/bio/socket.c +3 -17
  1718. data/third_party/boringssl-with-bazel/src/crypto/bio/socket_helper.c +4 -0
  1719. data/third_party/boringssl-with-bazel/src/crypto/blake2/blake2.c +156 -0
  1720. data/third_party/boringssl-with-bazel/src/crypto/bn_extra/bn_asn1.c +3 -10
  1721. data/third_party/boringssl-with-bazel/src/crypto/bytestring/ber.c +11 -10
  1722. data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbb.c +9 -0
  1723. data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.c +68 -45
  1724. data/third_party/boringssl-with-bazel/src/crypto/chacha/chacha.c +38 -47
  1725. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/cipher_extra.c +49 -65
  1726. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_chacha20poly1305.c +6 -81
  1727. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_tls.c +1 -88
  1728. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/internal.h +101 -3
  1729. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/tls_cbc.c +120 -273
  1730. data/third_party/boringssl-with-bazel/src/crypto/conf/conf.c +14 -3
  1731. data/third_party/boringssl-with-bazel/src/crypto/cpu-aarch64-win.c +41 -0
  1732. data/third_party/boringssl-with-bazel/src/crypto/cpu-arm-linux.c +11 -2
  1733. data/third_party/boringssl-with-bazel/src/crypto/cpu-arm.c +3 -3
  1734. data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519.c +1 -1
  1735. data/third_party/boringssl-with-bazel/src/crypto/curve25519/internal.h +1 -1
  1736. data/third_party/boringssl-with-bazel/src/crypto/{dh → dh_extra}/dh_asn1.c +0 -0
  1737. data/third_party/boringssl-with-bazel/src/crypto/dh_extra/params.c +272 -0
  1738. data/third_party/boringssl-with-bazel/src/crypto/digest_extra/digest_extra.c +31 -3
  1739. data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.c +30 -43
  1740. data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa_asn1.c +55 -4
  1741. data/third_party/boringssl-with-bazel/src/crypto/dsa/internal.h +34 -0
  1742. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_asn1.c +2 -17
  1743. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/hash_to_curve.c +12 -52
  1744. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/internal.h +0 -22
  1745. data/third_party/boringssl-with-bazel/src/crypto/err/err.c +87 -80
  1746. data/third_party/boringssl-with-bazel/src/crypto/evp/evp.c +13 -0
  1747. data/third_party/boringssl-with-bazel/src/crypto/evp/evp_asn1.c +161 -2
  1748. data/third_party/boringssl-with-bazel/src/crypto/evp/p_dsa_asn1.c +6 -2
  1749. data/third_party/boringssl-with-bazel/src/crypto/evp/scrypt.c +32 -34
  1750. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/mode_wrappers.c +17 -1
  1751. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.c +4 -1
  1752. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bn.c +13 -20
  1753. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div.c +28 -12
  1754. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd_extra.c +3 -2
  1755. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +26 -5
  1756. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/prime.c +0 -4
  1757. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/sqrt.c +5 -9
  1758. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/cipher.c +44 -16
  1759. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aes.c +208 -37
  1760. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/des/des.c +10 -11
  1761. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/des/internal.h +1 -3
  1762. data/third_party/boringssl-with-bazel/src/crypto/{dh → fipsmodule/dh}/check.c +0 -0
  1763. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/dh.c +456 -0
  1764. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digest.c +11 -0
  1765. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digests.c +10 -2
  1766. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/md32_common.h +87 -160
  1767. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec.c +16 -0
  1768. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.c +9 -2
  1769. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/internal.h +2 -5
  1770. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p224-64.c +13 -11
  1771. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-x86_64.c +24 -23
  1772. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256.c +20 -16
  1773. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple_mul.c +2 -2
  1774. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/util.c +3 -3
  1775. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.c +105 -95
  1776. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/internal.h +39 -0
  1777. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md4/md4.c +56 -72
  1778. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md5/md5.c +56 -73
  1779. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/cbc.c +33 -22
  1780. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/cfb.c +9 -8
  1781. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/ctr.c +9 -8
  1782. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/gcm.c +17 -13
  1783. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/gcm_nohw.c +1 -1
  1784. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/internal.h +1 -22
  1785. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/ofb.c +2 -1
  1786. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/internal.h +30 -9
  1787. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.c +123 -44
  1788. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/urandom.c +30 -20
  1789. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/internal.h +4 -0
  1790. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.c +80 -43
  1791. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c +120 -62
  1792. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/fips.c +79 -0
  1793. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c +238 -18
  1794. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1.c +93 -107
  1795. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha256.c +91 -113
  1796. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha512.c +50 -86
  1797. data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c +618 -0
  1798. data/third_party/boringssl-with-bazel/src/crypto/hrss/hrss.c +219 -121
  1799. data/third_party/boringssl-with-bazel/src/crypto/hrss/internal.h +9 -2
  1800. data/third_party/boringssl-with-bazel/src/crypto/internal.h +125 -0
  1801. data/third_party/boringssl-with-bazel/src/crypto/lhash/internal.h +253 -0
  1802. data/third_party/boringssl-with-bazel/src/crypto/lhash/lhash.c +28 -23
  1803. data/third_party/boringssl-with-bazel/src/crypto/mem.c +75 -24
  1804. data/third_party/boringssl-with-bazel/src/crypto/obj/obj.c +10 -6
  1805. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_all.c +0 -9
  1806. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_info.c +0 -2
  1807. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_lib.c +0 -8
  1808. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pk8.c +0 -2
  1809. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pkey.c +0 -4
  1810. data/third_party/boringssl-with-bazel/src/crypto/pkcs7/internal.h +16 -7
  1811. data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7.c +38 -4
  1812. data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7_x509.c +156 -15
  1813. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h +7 -1
  1814. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8.c +1 -1
  1815. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.c +132 -54
  1816. data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305.c +11 -8
  1817. data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_arm.c +13 -11
  1818. data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_vec.c +4 -0
  1819. data/third_party/boringssl-with-bazel/src/crypto/pool/internal.h +5 -1
  1820. data/third_party/boringssl-with-bazel/src/crypto/pool/pool.c +59 -22
  1821. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/deterministic.c +4 -0
  1822. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/fuchsia.c +4 -0
  1823. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/passive.c +34 -0
  1824. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/rand_extra.c +5 -1
  1825. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/windows.c +4 -0
  1826. data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/rsa_asn1.c +1 -2
  1827. data/third_party/boringssl-with-bazel/src/crypto/siphash/siphash.c +6 -6
  1828. data/third_party/boringssl-with-bazel/src/crypto/stack/stack.c +7 -13
  1829. data/third_party/boringssl-with-bazel/src/crypto/thread_pthread.c +0 -28
  1830. data/third_party/boringssl-with-bazel/src/crypto/trust_token/internal.h +110 -70
  1831. data/third_party/boringssl-with-bazel/src/crypto/trust_token/pmbtoken.c +348 -423
  1832. data/third_party/boringssl-with-bazel/src/crypto/trust_token/trust_token.c +217 -79
  1833. data/third_party/boringssl-with-bazel/src/crypto/trust_token/voprf.c +766 -0
  1834. data/third_party/boringssl-with-bazel/src/crypto/x509/a_verify.c +15 -11
  1835. data/third_party/boringssl-with-bazel/src/crypto/x509/algorithm.c +11 -1
  1836. data/third_party/boringssl-with-bazel/src/crypto/x509/asn1_gen.c +5 -21
  1837. data/third_party/boringssl-with-bazel/src/crypto/x509/by_dir.c +1 -0
  1838. data/third_party/boringssl-with-bazel/src/crypto/x509/by_file.c +2 -0
  1839. data/third_party/boringssl-with-bazel/src/crypto/x509/internal.h +351 -13
  1840. data/third_party/boringssl-with-bazel/src/crypto/x509/name_print.c +246 -0
  1841. data/third_party/boringssl-with-bazel/src/crypto/x509/rsa_pss.c +20 -5
  1842. data/third_party/boringssl-with-bazel/src/crypto/x509/t_crl.c +13 -8
  1843. data/third_party/boringssl-with-bazel/src/crypto/x509/t_req.c +2 -0
  1844. data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509.c +1 -180
  1845. data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509a.c +7 -2
  1846. data/third_party/boringssl-with-bazel/src/crypto/x509/x509.c +0 -67
  1847. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_att.c +24 -47
  1848. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_cmp.c +24 -39
  1849. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_ext.c +29 -23
  1850. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.c +1 -5
  1851. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_obj.c +2 -1
  1852. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_req.c +52 -89
  1853. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_set.c +67 -12
  1854. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.c +9 -4
  1855. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_txt.c +67 -67
  1856. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_v3.c +29 -26
  1857. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +82 -113
  1858. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vpm.c +54 -74
  1859. data/third_party/boringssl-with-bazel/src/crypto/x509/x509cset.c +99 -25
  1860. data/third_party/boringssl-with-bazel/src/crypto/x509/x509name.c +11 -12
  1861. data/third_party/boringssl-with-bazel/src/crypto/x509/x509rset.c +3 -0
  1862. data/third_party/boringssl-with-bazel/src/crypto/x509/x_algor.c +21 -19
  1863. data/third_party/boringssl-with-bazel/src/crypto/x509/x_all.c +13 -26
  1864. data/third_party/boringssl-with-bazel/src/crypto/x509/x_attrib.c +21 -34
  1865. data/third_party/boringssl-with-bazel/src/crypto/x509/x_crl.c +52 -28
  1866. data/third_party/boringssl-with-bazel/src/crypto/x509/x_exten.c +2 -0
  1867. data/third_party/boringssl-with-bazel/src/crypto/x509/x_name.c +49 -59
  1868. data/third_party/boringssl-with-bazel/src/crypto/x509/x_pkey.c +2 -2
  1869. data/third_party/boringssl-with-bazel/src/crypto/x509/x_pubkey.c +21 -172
  1870. data/third_party/boringssl-with-bazel/src/crypto/x509/x_req.c +5 -8
  1871. data/third_party/boringssl-with-bazel/src/crypto/x509/x_sig.c +25 -0
  1872. data/third_party/boringssl-with-bazel/src/crypto/x509/x_val.c +2 -0
  1873. data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509.c +75 -15
  1874. data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509a.c +5 -2
  1875. data/third_party/boringssl-with-bazel/src/crypto/x509v3/ext_dat.h +1 -4
  1876. data/third_party/boringssl-with-bazel/src/crypto/x509v3/internal.h +244 -11
  1877. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_cache.c +2 -1
  1878. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_data.c +7 -5
  1879. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_lib.c +1 -1
  1880. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_map.c +2 -1
  1881. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_node.c +1 -1
  1882. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_tree.c +5 -4
  1883. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_akey.c +27 -8
  1884. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_alt.c +43 -32
  1885. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_bitst.c +6 -3
  1886. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_conf.c +33 -28
  1887. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_cpols.c +10 -13
  1888. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_crld.c +4 -2
  1889. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_enum.c +7 -1
  1890. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_genn.c +42 -22
  1891. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_ia5.c +3 -4
  1892. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_info.c +1 -1
  1893. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_lib.c +48 -40
  1894. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_ncons.c +112 -55
  1895. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pci.c +2 -1
  1896. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_prn.c +15 -14
  1897. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_purp.c +128 -42
  1898. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_skey.c +8 -7
  1899. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_utl.c +86 -44
  1900. data/third_party/boringssl-with-bazel/src/include/openssl/aead.h +25 -4
  1901. data/third_party/boringssl-with-bazel/src/include/openssl/aes.h +16 -4
  1902. data/third_party/boringssl-with-bazel/src/include/openssl/arm_arch.h +119 -0
  1903. data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +1801 -673
  1904. data/third_party/boringssl-with-bazel/src/include/openssl/asn1t.h +5 -179
  1905. data/third_party/boringssl-with-bazel/src/include/openssl/base.h +67 -15
  1906. data/third_party/boringssl-with-bazel/src/include/openssl/base64.h +8 -0
  1907. data/third_party/boringssl-with-bazel/src/include/openssl/bio.h +7 -1
  1908. data/third_party/boringssl-with-bazel/src/include/openssl/blake2.h +62 -0
  1909. data/third_party/boringssl-with-bazel/src/include/openssl/bn.h +3 -3
  1910. data/third_party/boringssl-with-bazel/src/include/openssl/bytestring.h +32 -7
  1911. data/third_party/boringssl-with-bazel/src/include/openssl/chacha.h +1 -1
  1912. data/third_party/boringssl-with-bazel/src/include/openssl/cipher.h +42 -7
  1913. data/third_party/boringssl-with-bazel/src/include/openssl/conf.h +8 -5
  1914. data/third_party/boringssl-with-bazel/src/include/openssl/cpu.h +22 -32
  1915. data/third_party/boringssl-with-bazel/src/include/openssl/crypto.h +25 -5
  1916. data/third_party/boringssl-with-bazel/src/include/openssl/des.h +6 -0
  1917. data/third_party/boringssl-with-bazel/src/include/openssl/dh.h +66 -32
  1918. data/third_party/boringssl-with-bazel/src/include/openssl/digest.h +19 -2
  1919. data/third_party/boringssl-with-bazel/src/include/openssl/dsa.h +27 -41
  1920. data/third_party/boringssl-with-bazel/src/include/openssl/ec.h +20 -2
  1921. data/third_party/boringssl-with-bazel/src/include/openssl/ec_key.h +12 -27
  1922. data/third_party/boringssl-with-bazel/src/include/openssl/ecdsa.h +41 -10
  1923. data/third_party/boringssl-with-bazel/src/include/openssl/err.h +3 -2
  1924. data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +108 -75
  1925. data/third_party/boringssl-with-bazel/src/include/openssl/evp_errors.h +99 -0
  1926. data/third_party/boringssl-with-bazel/src/include/openssl/hkdf.h +4 -0
  1927. data/third_party/boringssl-with-bazel/src/include/openssl/hpke.h +350 -0
  1928. data/third_party/boringssl-with-bazel/src/include/openssl/hrss.h +14 -12
  1929. data/third_party/boringssl-with-bazel/src/include/openssl/lhash.h +4 -205
  1930. data/third_party/boringssl-with-bazel/src/include/openssl/mem.h +12 -3
  1931. data/third_party/boringssl-with-bazel/src/include/openssl/obj.h +26 -6
  1932. data/third_party/boringssl-with-bazel/src/include/openssl/opensslconf.h +3 -0
  1933. data/third_party/boringssl-with-bazel/src/include/openssl/pem.h +194 -146
  1934. data/third_party/boringssl-with-bazel/src/include/openssl/pkcs7.h +42 -18
  1935. data/third_party/boringssl-with-bazel/src/include/openssl/pkcs8.h +15 -2
  1936. data/third_party/boringssl-with-bazel/src/include/openssl/pool.h +7 -1
  1937. data/third_party/boringssl-with-bazel/src/include/openssl/rand.h +5 -2
  1938. data/third_party/boringssl-with-bazel/src/include/openssl/rsa.h +128 -91
  1939. data/third_party/boringssl-with-bazel/src/include/openssl/span.h +39 -16
  1940. data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +570 -144
  1941. data/third_party/boringssl-with-bazel/src/include/openssl/tls1.h +53 -38
  1942. data/third_party/boringssl-with-bazel/src/include/openssl/trust_token.h +43 -24
  1943. data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +2041 -829
  1944. data/third_party/boringssl-with-bazel/src/include/openssl/x509_vfy.h +16 -679
  1945. data/third_party/boringssl-with-bazel/src/include/openssl/x509v3.h +642 -452
  1946. data/third_party/boringssl-with-bazel/src/ssl/bio_ssl.cc +18 -5
  1947. data/third_party/boringssl-with-bazel/src/ssl/d1_both.cc +16 -18
  1948. data/third_party/boringssl-with-bazel/src/ssl/d1_srtp.cc +1 -1
  1949. data/third_party/boringssl-with-bazel/src/ssl/encrypted_client_hello.cc +1084 -0
  1950. data/third_party/boringssl-with-bazel/src/ssl/extensions.cc +4325 -0
  1951. data/third_party/boringssl-with-bazel/src/ssl/handoff.cc +336 -25
  1952. data/third_party/boringssl-with-bazel/src/ssl/handshake.cc +108 -53
  1953. data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +317 -221
  1954. data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +187 -36
  1955. data/third_party/boringssl-with-bazel/src/ssl/internal.h +554 -173
  1956. data/third_party/boringssl-with-bazel/src/ssl/s3_both.cc +9 -3
  1957. data/third_party/boringssl-with-bazel/src/ssl/s3_lib.cc +0 -2
  1958. data/third_party/boringssl-with-bazel/src/ssl/s3_pkt.cc +14 -19
  1959. data/third_party/boringssl-with-bazel/src/ssl/ssl_asn1.cc +55 -15
  1960. data/third_party/boringssl-with-bazel/src/ssl/ssl_cert.cc +7 -12
  1961. data/third_party/boringssl-with-bazel/src/ssl/ssl_cipher.cc +10 -11
  1962. data/third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc +34 -31
  1963. data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +167 -110
  1964. data/third_party/boringssl-with-bazel/src/ssl/ssl_privkey.cc +2 -0
  1965. data/third_party/boringssl-with-bazel/src/ssl/ssl_session.cc +147 -138
  1966. data/third_party/boringssl-with-bazel/src/ssl/ssl_stat.cc +3 -0
  1967. data/third_party/boringssl-with-bazel/src/ssl/ssl_transcript.cc +12 -17
  1968. data/third_party/boringssl-with-bazel/src/ssl/ssl_versions.cc +16 -8
  1969. data/third_party/boringssl-with-bazel/src/ssl/ssl_x509.cc +28 -23
  1970. data/third_party/boringssl-with-bazel/src/ssl/t1_enc.cc +47 -28
  1971. data/third_party/boringssl-with-bazel/src/ssl/tls13_both.cc +80 -36
  1972. data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +316 -211
  1973. data/third_party/boringssl-with-bazel/src/ssl/tls13_enc.cc +160 -91
  1974. data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +398 -145
  1975. data/third_party/boringssl-with-bazel/src/ssl/tls_method.cc +4 -2
  1976. data/third_party/boringssl-with-bazel/src/ssl/tls_record.cc +5 -3
  1977. data/third_party/cares/cares/include/ares.h +742 -0
  1978. data/third_party/cares/cares/include/ares_dns.h +112 -0
  1979. data/third_party/cares/cares/{ares_rules.h → include/ares_rules.h} +0 -0
  1980. data/third_party/cares/cares/include/ares_version.h +24 -0
  1981. data/third_party/cares/cares/src/lib/ares__close_sockets.c +61 -0
  1982. data/third_party/cares/cares/src/lib/ares__get_hostent.c +260 -0
  1983. data/third_party/cares/cares/src/lib/ares__parse_into_addrinfo.c +260 -0
  1984. data/third_party/cares/cares/{ares__read_line.c → src/lib/ares__read_line.c} +0 -0
  1985. data/third_party/cares/cares/src/lib/ares__readaddrinfo.c +264 -0
  1986. data/third_party/cares/cares/src/lib/ares__sortaddrinfo.c +499 -0
  1987. data/third_party/cares/cares/{ares__timeval.c → src/lib/ares__timeval.c} +0 -0
  1988. data/third_party/cares/cares/src/lib/ares_android.c +444 -0
  1989. data/third_party/cares/cares/src/lib/ares_android.h +27 -0
  1990. data/third_party/cares/cares/{ares_cancel.c → src/lib/ares_cancel.c} +0 -0
  1991. data/third_party/cares/cares/src/lib/ares_create_query.c +197 -0
  1992. data/third_party/cares/cares/src/lib/ares_data.c +240 -0
  1993. data/third_party/cares/cares/src/lib/ares_data.h +74 -0
  1994. data/third_party/cares/cares/{ares_destroy.c → src/lib/ares_destroy.c} +0 -0
  1995. data/third_party/cares/cares/src/lib/ares_expand_name.c +300 -0
  1996. data/third_party/cares/cares/src/lib/ares_expand_string.c +67 -0
  1997. data/third_party/cares/cares/{ares_fds.c → src/lib/ares_fds.c} +0 -0
  1998. data/third_party/cares/cares/src/lib/ares_free_hostent.c +43 -0
  1999. data/third_party/cares/cares/{ares_free_string.c → src/lib/ares_free_string.c} +0 -0
  2000. data/third_party/cares/cares/src/lib/ares_freeaddrinfo.c +59 -0
  2001. data/third_party/cares/cares/src/lib/ares_getaddrinfo.c +772 -0
  2002. data/third_party/cares/cares/src/lib/ares_getenv.c +28 -0
  2003. data/third_party/cares/cares/{ares_getenv.h → src/lib/ares_getenv.h} +0 -0
  2004. data/third_party/cares/cares/src/lib/ares_gethostbyaddr.c +287 -0
  2005. data/third_party/cares/cares/src/lib/ares_gethostbyname.c +534 -0
  2006. data/third_party/cares/cares/src/lib/ares_getnameinfo.c +447 -0
  2007. data/third_party/cares/cares/{ares_getsock.c → src/lib/ares_getsock.c} +0 -0
  2008. data/third_party/cares/cares/{ares_inet_net_pton.h → src/lib/ares_inet_net_pton.h} +0 -0
  2009. data/third_party/cares/cares/src/lib/ares_init.c +2654 -0
  2010. data/third_party/cares/cares/{ares_iphlpapi.h → src/lib/ares_iphlpapi.h} +0 -0
  2011. data/third_party/cares/cares/src/lib/ares_ipv6.h +85 -0
  2012. data/third_party/cares/cares/src/lib/ares_library_init.c +200 -0
  2013. data/third_party/cares/cares/src/lib/ares_library_init.h +43 -0
  2014. data/third_party/cares/cares/{ares_llist.c → src/lib/ares_llist.c} +0 -0
  2015. data/third_party/cares/cares/{ares_llist.h → src/lib/ares_llist.h} +0 -0
  2016. data/third_party/cares/cares/{ares_mkquery.c → src/lib/ares_mkquery.c} +0 -0
  2017. data/third_party/cares/cares/src/lib/ares_nameser.h +482 -0
  2018. data/third_party/cares/cares/{ares_nowarn.c → src/lib/ares_nowarn.c} +0 -0
  2019. data/third_party/cares/cares/{ares_nowarn.h → src/lib/ares_nowarn.h} +0 -0
  2020. data/third_party/cares/cares/{ares_options.c → src/lib/ares_options.c} +0 -0
  2021. data/third_party/cares/cares/src/lib/ares_parse_a_reply.c +209 -0
  2022. data/third_party/cares/cares/src/lib/ares_parse_aaaa_reply.c +212 -0
  2023. data/third_party/cares/cares/src/lib/ares_parse_caa_reply.c +199 -0
  2024. data/third_party/cares/cares/src/lib/ares_parse_mx_reply.c +164 -0
  2025. data/third_party/cares/cares/src/lib/ares_parse_naptr_reply.c +183 -0
  2026. data/third_party/cares/cares/src/lib/ares_parse_ns_reply.c +177 -0
  2027. data/third_party/cares/cares/src/lib/ares_parse_ptr_reply.c +228 -0
  2028. data/third_party/cares/cares/src/lib/ares_parse_soa_reply.c +179 -0
  2029. data/third_party/cares/cares/src/lib/ares_parse_srv_reply.c +168 -0
  2030. data/third_party/cares/cares/src/lib/ares_parse_txt_reply.c +214 -0
  2031. data/third_party/cares/cares/{ares_platform.c → src/lib/ares_platform.c} +0 -0
  2032. data/third_party/cares/cares/{ares_platform.h → src/lib/ares_platform.h} +0 -0
  2033. data/third_party/cares/cares/src/lib/ares_private.h +423 -0
  2034. data/third_party/cares/cares/src/lib/ares_process.c +1548 -0
  2035. data/third_party/cares/cares/src/lib/ares_query.c +180 -0
  2036. data/third_party/cares/cares/src/lib/ares_search.c +321 -0
  2037. data/third_party/cares/cares/src/lib/ares_send.c +131 -0
  2038. data/third_party/cares/cares/src/lib/ares_setup.h +220 -0
  2039. data/third_party/cares/cares/{ares_strcasecmp.c → src/lib/ares_strcasecmp.c} +0 -0
  2040. data/third_party/cares/cares/{ares_strcasecmp.h → src/lib/ares_strcasecmp.h} +0 -0
  2041. data/third_party/cares/cares/{ares_strdup.c → src/lib/ares_strdup.c} +0 -0
  2042. data/third_party/cares/cares/{ares_strdup.h → src/lib/ares_strdup.h} +0 -0
  2043. data/third_party/cares/cares/{ares_strerror.c → src/lib/ares_strerror.c} +0 -0
  2044. data/third_party/cares/cares/src/lib/ares_strsplit.c +178 -0
  2045. data/third_party/cares/cares/{ares_strsplit.h → src/lib/ares_strsplit.h} +0 -0
  2046. data/third_party/cares/cares/{ares_timeout.c → src/lib/ares_timeout.c} +0 -0
  2047. data/third_party/cares/cares/{ares_version.c → src/lib/ares_version.c} +0 -0
  2048. data/third_party/cares/cares/{ares_writev.c → src/lib/ares_writev.c} +0 -0
  2049. data/third_party/cares/cares/src/lib/ares_writev.h +36 -0
  2050. data/third_party/cares/cares/{bitncmp.c → src/lib/bitncmp.c} +0 -0
  2051. data/third_party/cares/cares/{bitncmp.h → src/lib/bitncmp.h} +0 -0
  2052. data/third_party/cares/cares/src/lib/config-dos.h +115 -0
  2053. data/third_party/cares/cares/{config-win32.h → src/lib/config-win32.h} +0 -0
  2054. data/third_party/cares/cares/src/lib/inet_net_pton.c +444 -0
  2055. data/third_party/cares/cares/src/lib/inet_ntop.c +201 -0
  2056. data/third_party/cares/cares/{setup_once.h → src/lib/setup_once.h} +0 -0
  2057. data/third_party/cares/cares/{windows_port.c → src/lib/windows_port.c} +0 -0
  2058. data/third_party/re2/re2/bitmap256.h +117 -0
  2059. data/third_party/re2/re2/bitstate.cc +385 -0
  2060. data/third_party/re2/re2/compile.cc +1261 -0
  2061. data/third_party/re2/re2/dfa.cc +2118 -0
  2062. data/third_party/re2/re2/filtered_re2.cc +137 -0
  2063. data/third_party/re2/re2/filtered_re2.h +114 -0
  2064. data/third_party/re2/re2/mimics_pcre.cc +197 -0
  2065. data/third_party/re2/re2/nfa.cc +713 -0
  2066. data/third_party/re2/re2/onepass.cc +623 -0
  2067. data/third_party/re2/re2/parse.cc +2483 -0
  2068. data/third_party/re2/re2/perl_groups.cc +119 -0
  2069. data/third_party/re2/re2/pod_array.h +55 -0
  2070. data/third_party/re2/re2/prefilter.cc +711 -0
  2071. data/third_party/re2/re2/prefilter.h +108 -0
  2072. data/third_party/re2/re2/prefilter_tree.cc +407 -0
  2073. data/third_party/re2/re2/prefilter_tree.h +139 -0
  2074. data/third_party/re2/re2/prog.cc +1166 -0
  2075. data/third_party/re2/re2/prog.h +455 -0
  2076. data/third_party/re2/re2/re2.cc +1331 -0
  2077. data/third_party/re2/re2/re2.h +1017 -0
  2078. data/third_party/re2/re2/regexp.cc +987 -0
  2079. data/third_party/re2/re2/regexp.h +665 -0
  2080. data/third_party/re2/re2/set.cc +176 -0
  2081. data/third_party/re2/re2/set.h +85 -0
  2082. data/third_party/re2/re2/simplify.cc +665 -0
  2083. data/third_party/re2/re2/sparse_array.h +392 -0
  2084. data/third_party/re2/re2/sparse_set.h +264 -0
  2085. data/third_party/re2/re2/stringpiece.cc +65 -0
  2086. data/third_party/re2/re2/stringpiece.h +210 -0
  2087. data/third_party/re2/re2/tostring.cc +351 -0
  2088. data/third_party/re2/re2/unicode_casefold.cc +582 -0
  2089. data/third_party/re2/re2/unicode_casefold.h +78 -0
  2090. data/third_party/re2/re2/unicode_groups.cc +6269 -0
  2091. data/third_party/re2/re2/unicode_groups.h +67 -0
  2092. data/third_party/re2/re2/walker-inl.h +246 -0
  2093. data/third_party/re2/util/benchmark.h +156 -0
  2094. data/third_party/re2/util/flags.h +26 -0
  2095. data/third_party/re2/util/logging.h +109 -0
  2096. data/third_party/re2/util/malloc_counter.h +19 -0
  2097. data/third_party/re2/util/mix.h +41 -0
  2098. data/third_party/re2/util/mutex.h +148 -0
  2099. data/third_party/re2/util/pcre.cc +1025 -0
  2100. data/third_party/re2/util/pcre.h +681 -0
  2101. data/third_party/re2/util/rune.cc +260 -0
  2102. data/third_party/re2/util/strutil.cc +149 -0
  2103. data/third_party/re2/util/strutil.h +21 -0
  2104. data/third_party/re2/util/test.h +50 -0
  2105. data/third_party/re2/util/utf.h +44 -0
  2106. data/third_party/re2/util/util.h +42 -0
  2107. data/third_party/upb/third_party/utf8_range/naive.c +92 -0
  2108. data/third_party/upb/third_party/utf8_range/range2-neon.c +157 -0
  2109. data/third_party/upb/third_party/utf8_range/range2-sse.c +170 -0
  2110. data/third_party/upb/third_party/utf8_range/utf8_range.h +9 -0
  2111. data/third_party/upb/upb/decode.c +997 -481
  2112. data/third_party/upb/upb/decode.h +79 -6
  2113. data/third_party/upb/upb/decode_fast.c +1055 -0
  2114. data/third_party/upb/upb/decode_fast.h +153 -0
  2115. data/third_party/upb/upb/decode_internal.h +211 -0
  2116. data/third_party/upb/upb/def.c +3261 -0
  2117. data/third_party/upb/upb/def.h +409 -0
  2118. data/third_party/upb/upb/def.hpp +438 -0
  2119. data/third_party/upb/upb/encode.c +459 -233
  2120. data/third_party/upb/upb/encode.h +56 -6
  2121. data/third_party/upb/upb/json_encode.c +776 -0
  2122. data/third_party/upb/upb/json_encode.h +62 -0
  2123. data/third_party/upb/upb/msg.c +387 -70
  2124. data/third_party/upb/upb/msg.h +90 -45
  2125. data/third_party/upb/upb/msg_internal.h +831 -0
  2126. data/third_party/upb/upb/port_def.inc +195 -84
  2127. data/third_party/upb/upb/port_undef.inc +48 -7
  2128. data/third_party/upb/upb/reflection.c +480 -0
  2129. data/third_party/upb/upb/reflection.h +220 -0
  2130. data/third_party/upb/upb/reflection.hpp +37 -0
  2131. data/third_party/upb/upb/table.c +441 -428
  2132. data/third_party/upb/upb/table_internal.h +385 -0
  2133. data/third_party/upb/upb/text_encode.c +472 -0
  2134. data/third_party/upb/upb/text_encode.h +64 -0
  2135. data/third_party/upb/upb/upb.c +255 -154
  2136. data/third_party/upb/upb/upb.h +235 -226
  2137. data/third_party/upb/upb/upb.hpp +115 -0
  2138. data/third_party/upb/upb/upb_internal.h +68 -0
  2139. data/third_party/xxhash/xxhash.h +5580 -0
  2140. data/third_party/zlib/crc32.c +966 -292
  2141. data/third_party/zlib/crc32.h +9441 -436
  2142. data/third_party/zlib/deflate.c +78 -30
  2143. data/third_party/zlib/deflate.h +12 -15
  2144. data/third_party/zlib/gzguts.h +3 -2
  2145. data/third_party/zlib/gzlib.c +5 -3
  2146. data/third_party/zlib/gzread.c +5 -7
  2147. data/third_party/zlib/gzwrite.c +25 -13
  2148. data/third_party/zlib/infback.c +2 -1
  2149. data/third_party/zlib/inffast.c +14 -14
  2150. data/third_party/zlib/inflate.c +39 -8
  2151. data/third_party/zlib/inflate.h +3 -2
  2152. data/third_party/zlib/inftrees.c +3 -3
  2153. data/third_party/zlib/trees.c +27 -48
  2154. data/third_party/zlib/zlib.h +123 -100
  2155. data/third_party/zlib/zutil.c +2 -2
  2156. data/third_party/zlib/zutil.h +12 -9
  2157. metadata +1175 -359
  2158. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.h +0 -45
  2159. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.cc +0 -121
  2160. data/src/core/ext/filters/client_channel/lb_policy/xds/eds.cc +0 -938
  2161. data/src/core/ext/filters/client_channel/lb_policy/xds/lrs.cc +0 -528
  2162. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_routing.cc +0 -834
  2163. data/src/core/ext/filters/client_channel/parse_address.cc +0 -238
  2164. data/src/core/ext/filters/client_channel/parse_address.h +0 -53
  2165. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.cc +0 -484
  2166. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_libuv.cc +0 -177
  2167. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_fallback.cc +0 -68
  2168. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_libuv.cc +0 -38
  2169. data/src/core/ext/filters/client_channel/resolver.cc +0 -85
  2170. data/src/core/ext/filters/client_channel/resolver.h +0 -144
  2171. data/src/core/ext/filters/client_channel/resolver_factory.h +0 -73
  2172. data/src/core/ext/filters/client_channel/resolver_registry.cc +0 -197
  2173. data/src/core/ext/filters/client_channel/resolver_registry.h +0 -89
  2174. data/src/core/ext/filters/client_channel/resolving_lb_policy.cc +0 -348
  2175. data/src/core/ext/filters/client_channel/resolving_lb_policy.h +0 -123
  2176. data/src/core/ext/filters/client_channel/server_address.cc +0 -48
  2177. data/src/core/ext/filters/client_channel/server_address.h +0 -90
  2178. data/src/core/ext/filters/client_channel/service_config.cc +0 -221
  2179. data/src/core/ext/filters/client_channel/service_config.h +0 -123
  2180. data/src/core/ext/filters/client_channel/service_config_call_data.h +0 -68
  2181. data/src/core/ext/filters/client_channel/service_config_parser.cc +0 -87
  2182. data/src/core/ext/filters/client_channel/service_config_parser.h +0 -89
  2183. data/src/core/ext/filters/client_channel/xds/xds_api.cc +0 -1906
  2184. data/src/core/ext/filters/client_channel/xds/xds_api.h +0 -280
  2185. data/src/core/ext/filters/client_channel/xds/xds_bootstrap.cc +0 -342
  2186. data/src/core/ext/filters/client_channel/xds/xds_bootstrap.h +0 -88
  2187. data/src/core/ext/filters/client_channel/xds/xds_channel.h +0 -46
  2188. data/src/core/ext/filters/client_channel/xds/xds_channel_args.h +0 -26
  2189. data/src/core/ext/filters/client_channel/xds/xds_channel_secure.cc +0 -106
  2190. data/src/core/ext/filters/client_channel/xds/xds_client.cc +0 -2367
  2191. data/src/core/ext/filters/client_channel/xds/xds_client.h +0 -309
  2192. data/src/core/ext/filters/client_channel/xds/xds_client_stats.cc +0 -115
  2193. data/src/core/ext/filters/client_channel/xds/xds_client_stats.h +0 -211
  2194. data/src/core/ext/filters/client_idle/client_idle_filter.cc +0 -440
  2195. data/src/core/ext/filters/max_age/max_age_filter.cc +0 -556
  2196. data/src/core/ext/filters/max_age/max_age_filter.h +0 -26
  2197. data/src/core/ext/filters/workarounds/workaround_cronet_compression_filter.cc +0 -210
  2198. data/src/core/ext/filters/workarounds/workaround_cronet_compression_filter.h +0 -27
  2199. data/src/core/ext/filters/workarounds/workaround_utils.cc +0 -53
  2200. data/src/core/ext/filters/workarounds/workaround_utils.h +0 -39
  2201. data/src/core/ext/transport/chttp2/client/authority.cc +0 -42
  2202. data/src/core/ext/transport/chttp2/client/authority.h +0 -36
  2203. data/src/core/ext/transport/chttp2/client/insecure/channel_create.cc +0 -112
  2204. data/src/core/ext/transport/chttp2/client/insecure/channel_create_posix.cc +0 -79
  2205. data/src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc +0 -225
  2206. data/src/core/ext/transport/chttp2/server/insecure/server_chttp2.cc +0 -45
  2207. data/src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc +0 -75
  2208. data/src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.cc +0 -86
  2209. data/src/core/ext/transport/chttp2/transport/chttp2_plugin.cc +0 -37
  2210. data/src/core/ext/transport/chttp2/transport/hpack_table.cc +0 -246
  2211. data/src/core/ext/transport/chttp2/transport/hpack_table.h +0 -148
  2212. data/src/core/ext/transport/chttp2/transport/incoming_metadata.cc +0 -66
  2213. data/src/core/ext/transport/chttp2/transport/incoming_metadata.h +0 -58
  2214. data/src/core/ext/upb-generated/envoy/api/v2/auth/cert.upb.c +0 -21
  2215. data/src/core/ext/upb-generated/envoy/api/v2/auth/cert.upb.h +0 -35
  2216. data/src/core/ext/upb-generated/envoy/api/v2/auth/common.upb.c +0 -114
  2217. data/src/core/ext/upb-generated/envoy/api/v2/auth/common.upb.h +0 -418
  2218. data/src/core/ext/upb-generated/envoy/api/v2/auth/secret.upb.c +0 -72
  2219. data/src/core/ext/upb-generated/envoy/api/v2/auth/secret.upb.h +0 -197
  2220. data/src/core/ext/upb-generated/envoy/api/v2/auth/tls.upb.c +0 -105
  2221. data/src/core/ext/upb-generated/envoy/api/v2/auth/tls.upb.h +0 -378
  2222. data/src/core/ext/upb-generated/envoy/api/v2/cds.upb.c +0 -28
  2223. data/src/core/ext/upb-generated/envoy/api/v2/cds.upb.h +0 -53
  2224. data/src/core/ext/upb-generated/envoy/api/v2/cluster/circuit_breaker.upb.c +0 -74
  2225. data/src/core/ext/upb-generated/envoy/api/v2/cluster/circuit_breaker.upb.h +0 -218
  2226. data/src/core/ext/upb-generated/envoy/api/v2/cluster/filter.upb.c +0 -35
  2227. data/src/core/ext/upb-generated/envoy/api/v2/cluster/filter.upb.h +0 -69
  2228. data/src/core/ext/upb-generated/envoy/api/v2/cluster/outlier_detection.upb.c +0 -55
  2229. data/src/core/ext/upb-generated/envoy/api/v2/cluster/outlier_detection.upb.h +0 -305
  2230. data/src/core/ext/upb-generated/envoy/api/v2/cluster.upb.c +0 -403
  2231. data/src/core/ext/upb-generated/envoy/api/v2/cluster.upb.h +0 -1447
  2232. data/src/core/ext/upb-generated/envoy/api/v2/core/address.upb.c +0 -112
  2233. data/src/core/ext/upb-generated/envoy/api/v2/core/address.upb.h +0 -328
  2234. data/src/core/ext/upb-generated/envoy/api/v2/core/backoff.upb.c +0 -35
  2235. data/src/core/ext/upb-generated/envoy/api/v2/core/backoff.upb.h +0 -78
  2236. data/src/core/ext/upb-generated/envoy/api/v2/core/base.upb.c +0 -313
  2237. data/src/core/ext/upb-generated/envoy/api/v2/core/base.upb.h +0 -897
  2238. data/src/core/ext/upb-generated/envoy/api/v2/core/config_source.upb.c +0 -96
  2239. data/src/core/ext/upb-generated/envoy/api/v2/core/config_source.upb.h +0 -322
  2240. data/src/core/ext/upb-generated/envoy/api/v2/core/event_service_config.upb.c +0 -34
  2241. data/src/core/ext/upb-generated/envoy/api/v2/core/event_service_config.upb.h +0 -72
  2242. data/src/core/ext/upb-generated/envoy/api/v2/core/grpc_service.upb.c +0 -197
  2243. data/src/core/ext/upb-generated/envoy/api/v2/core/grpc_service.upb.h +0 -642
  2244. data/src/core/ext/upb-generated/envoy/api/v2/core/health_check.upb.c +0 -172
  2245. data/src/core/ext/upb-generated/envoy/api/v2/core/health_check.upb.h +0 -673
  2246. data/src/core/ext/upb-generated/envoy/api/v2/core/http_uri.upb.c +0 -36
  2247. data/src/core/ext/upb-generated/envoy/api/v2/core/http_uri.upb.h +0 -80
  2248. data/src/core/ext/upb-generated/envoy/api/v2/core/protocol.upb.c +0 -152
  2249. data/src/core/ext/upb-generated/envoy/api/v2/core/protocol.upb.h +0 -518
  2250. data/src/core/ext/upb-generated/envoy/api/v2/core/socket_option.upb.c +0 -34
  2251. data/src/core/ext/upb-generated/envoy/api/v2/core/socket_option.upb.h +0 -89
  2252. data/src/core/ext/upb-generated/envoy/api/v2/discovery.upb.c +0 -129
  2253. data/src/core/ext/upb-generated/envoy/api/v2/discovery.upb.h +0 -392
  2254. data/src/core/ext/upb-generated/envoy/api/v2/eds.upb.c +0 -31
  2255. data/src/core/ext/upb-generated/envoy/api/v2/eds.upb.h +0 -53
  2256. data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint.upb.c +0 -18
  2257. data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint.upb.h +0 -33
  2258. data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint_components.upb.c +0 -91
  2259. data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint_components.upb.h +0 -266
  2260. data/src/core/ext/upb-generated/envoy/api/v2/endpoint/load_report.upb.c +0 -112
  2261. data/src/core/ext/upb-generated/envoy/api/v2/endpoint/load_report.upb.h +0 -324
  2262. data/src/core/ext/upb-generated/envoy/api/v2/endpoint.upb.c +0 -92
  2263. data/src/core/ext/upb-generated/envoy/api/v2/endpoint.upb.h +0 -240
  2264. data/src/core/ext/upb-generated/envoy/api/v2/lds.upb.c +0 -31
  2265. data/src/core/ext/upb-generated/envoy/api/v2/lds.upb.h +0 -53
  2266. data/src/core/ext/upb-generated/envoy/api/v2/listener/listener.upb.c +0 -18
  2267. data/src/core/ext/upb-generated/envoy/api/v2/listener/listener.upb.h +0 -33
  2268. data/src/core/ext/upb-generated/envoy/api/v2/listener/listener_components.upb.c +0 -145
  2269. data/src/core/ext/upb-generated/envoy/api/v2/listener/listener_components.upb.h +0 -527
  2270. data/src/core/ext/upb-generated/envoy/api/v2/listener/udp_listener_config.upb.c +0 -43
  2271. data/src/core/ext/upb-generated/envoy/api/v2/listener/udp_listener_config.upb.h +0 -112
  2272. data/src/core/ext/upb-generated/envoy/api/v2/listener.upb.c +0 -109
  2273. data/src/core/ext/upb-generated/envoy/api/v2/listener.upb.h +0 -399
  2274. data/src/core/ext/upb-generated/envoy/api/v2/rds.upb.c +0 -30
  2275. data/src/core/ext/upb-generated/envoy/api/v2/rds.upb.h +0 -53
  2276. data/src/core/ext/upb-generated/envoy/api/v2/route/route.upb.c +0 -18
  2277. data/src/core/ext/upb-generated/envoy/api/v2/route/route.upb.h +0 -33
  2278. data/src/core/ext/upb-generated/envoy/api/v2/route/route_components.upb.c +0 -815
  2279. data/src/core/ext/upb-generated/envoy/api/v2/route/route_components.upb.h +0 -3032
  2280. data/src/core/ext/upb-generated/envoy/api/v2/route.upb.c +0 -63
  2281. data/src/core/ext/upb-generated/envoy/api/v2/route.upb.h +0 -199
  2282. data/src/core/ext/upb-generated/envoy/api/v2/scoped_route.upb.c +0 -59
  2283. data/src/core/ext/upb-generated/envoy/api/v2/scoped_route.upb.h +0 -134
  2284. data/src/core/ext/upb-generated/envoy/api/v2/srds.upb.c +0 -28
  2285. data/src/core/ext/upb-generated/envoy/api/v2/srds.upb.h +0 -53
  2286. data/src/core/ext/upb-generated/envoy/config/filter/accesslog/v2/accesslog.upb.c +0 -228
  2287. data/src/core/ext/upb-generated/envoy/config/filter/accesslog/v2/accesslog.upb.h +0 -725
  2288. data/src/core/ext/upb-generated/envoy/config/filter/network/http_connection_manager/v2/http_connection_manager.upb.c +0 -316
  2289. data/src/core/ext/upb-generated/envoy/config/filter/network/http_connection_manager/v2/http_connection_manager.upb.h +0 -1132
  2290. data/src/core/ext/upb-generated/envoy/config/listener/v2/api_listener.upb.c +0 -33
  2291. data/src/core/ext/upb-generated/envoy/config/listener/v2/api_listener.upb.h +0 -65
  2292. data/src/core/ext/upb-generated/envoy/config/trace/v2/http_tracer.upb.c +0 -51
  2293. data/src/core/ext/upb-generated/envoy/config/trace/v2/http_tracer.upb.h +0 -125
  2294. data/src/core/ext/upb-generated/envoy/service/discovery/v2/ads.upb.c +0 -24
  2295. data/src/core/ext/upb-generated/envoy/service/discovery/v2/ads.upb.h +0 -50
  2296. data/src/core/ext/upb-generated/envoy/service/load_stats/v2/lrs.upb.c +0 -54
  2297. data/src/core/ext/upb-generated/envoy/service/load_stats/v2/lrs.upb.h +0 -134
  2298. data/src/core/ext/upb-generated/envoy/type/http.upb.c +0 -17
  2299. data/src/core/ext/upb-generated/envoy/type/http.upb.h +0 -36
  2300. data/src/core/ext/upb-generated/envoy/type/matcher/regex.upb.c +0 -63
  2301. data/src/core/ext/upb-generated/envoy/type/matcher/regex.upb.h +0 -144
  2302. data/src/core/ext/upb-generated/envoy/type/matcher/string.upb.c +0 -53
  2303. data/src/core/ext/upb-generated/envoy/type/matcher/string.upb.h +0 -133
  2304. data/src/core/ext/upb-generated/envoy/type/metadata/v2/metadata.upb.c +0 -88
  2305. data/src/core/ext/upb-generated/envoy/type/metadata/v2/metadata.upb.h +0 -258
  2306. data/src/core/ext/upb-generated/envoy/type/percent.upb.c +0 -39
  2307. data/src/core/ext/upb-generated/envoy/type/percent.upb.h +0 -87
  2308. data/src/core/ext/upb-generated/envoy/type/range.upb.c +0 -50
  2309. data/src/core/ext/upb-generated/envoy/type/range.upb.h +0 -112
  2310. data/src/core/ext/upb-generated/envoy/type/semantic_version.upb.c +0 -29
  2311. data/src/core/ext/upb-generated/envoy/type/semantic_version.upb.h +0 -62
  2312. data/src/core/ext/upb-generated/envoy/type/tracing/v2/custom_tag.upb.c +0 -89
  2313. data/src/core/ext/upb-generated/envoy/type/tracing/v2/custom_tag.upb.h +0 -249
  2314. data/src/core/ext/upb-generated/gogoproto/gogo.upb.c +0 -17
  2315. data/src/core/ext/upb-generated/gogoproto/gogo.upb.h +0 -30
  2316. data/src/core/ext/upb-generated/udpa/data/orca/v1/orca_load_report.upb.c +0 -58
  2317. data/src/core/ext/upb-generated/udpa/data/orca/v1/orca_load_report.upb.h +0 -144
  2318. data/src/core/lib/avl/avl.cc +0 -306
  2319. data/src/core/lib/compression/algorithm_metadata.h +0 -61
  2320. data/src/core/lib/compression/compression_args.cc +0 -134
  2321. data/src/core/lib/compression/compression_args.h +0 -56
  2322. data/src/core/lib/compression/stream_compression.cc +0 -80
  2323. data/src/core/lib/compression/stream_compression.h +0 -116
  2324. data/src/core/lib/compression/stream_compression_gzip.cc +0 -230
  2325. data/src/core/lib/compression/stream_compression_gzip.h +0 -28
  2326. data/src/core/lib/compression/stream_compression_identity.cc +0 -92
  2327. data/src/core/lib/compression/stream_compression_identity.h +0 -29
  2328. data/src/core/lib/gpr/arena.h +0 -47
  2329. data/src/core/lib/gpr/tls_gcc.h +0 -52
  2330. data/src/core/lib/gpr/tls_msvc.h +0 -52
  2331. data/src/core/lib/gpr/tls_pthread.cc +0 -30
  2332. data/src/core/lib/gpr/tls_pthread.h +0 -56
  2333. data/src/core/lib/gprpp/arena.cc +0 -103
  2334. data/src/core/lib/gprpp/arena.h +0 -120
  2335. data/src/core/lib/gprpp/atomic.h +0 -104
  2336. data/src/core/lib/gprpp/map.h +0 -53
  2337. data/src/core/lib/iomgr/endpoint_pair_uv.cc +0 -40
  2338. data/src/core/lib/iomgr/ev_epollex_linux.cc +0 -1656
  2339. data/src/core/lib/iomgr/ev_epollex_linux.h +0 -30
  2340. data/src/core/lib/iomgr/iomgr_custom.cc +0 -79
  2341. data/src/core/lib/iomgr/iomgr_custom.h +0 -49
  2342. data/src/core/lib/iomgr/iomgr_posix.h +0 -26
  2343. data/src/core/lib/iomgr/iomgr_uv.cc +0 -43
  2344. data/src/core/lib/iomgr/is_epollexclusive_available.cc +0 -105
  2345. data/src/core/lib/iomgr/is_epollexclusive_available.h +0 -36
  2346. data/src/core/lib/iomgr/poller/eventmanager_libuv.cc +0 -87
  2347. data/src/core/lib/iomgr/poller/eventmanager_libuv.h +0 -88
  2348. data/src/core/lib/iomgr/pollset_custom.cc +0 -106
  2349. data/src/core/lib/iomgr/pollset_custom.h +0 -35
  2350. data/src/core/lib/iomgr/pollset_set_custom.cc +0 -48
  2351. data/src/core/lib/iomgr/pollset_set_custom.h +0 -26
  2352. data/src/core/lib/iomgr/pollset_uv.cc +0 -93
  2353. data/src/core/lib/iomgr/pollset_uv.h +0 -32
  2354. data/src/core/lib/iomgr/resolve_address_custom.cc +0 -173
  2355. data/src/core/lib/iomgr/resolve_address_custom.h +0 -45
  2356. data/src/core/lib/iomgr/resource_quota.cc +0 -1013
  2357. data/src/core/lib/iomgr/resource_quota.h +0 -177
  2358. data/src/core/lib/iomgr/sockaddr_custom.h +0 -54
  2359. data/src/core/lib/iomgr/sockaddr_utils.cc +0 -293
  2360. data/src/core/lib/iomgr/sockaddr_utils.h +0 -79
  2361. data/src/core/lib/iomgr/socket_utils_uv.cc +0 -49
  2362. data/src/core/lib/iomgr/sys_epoll_wrapper.h +0 -30
  2363. data/src/core/lib/iomgr/tcp_client_custom.cc +0 -163
  2364. data/src/core/lib/iomgr/tcp_custom.cc +0 -370
  2365. data/src/core/lib/iomgr/tcp_custom.h +0 -84
  2366. data/src/core/lib/iomgr/tcp_server_custom.cc +0 -485
  2367. data/src/core/lib/iomgr/tcp_uv.cc +0 -419
  2368. data/src/core/lib/iomgr/timer_custom.cc +0 -95
  2369. data/src/core/lib/iomgr/timer_custom.h +0 -43
  2370. data/src/core/lib/iomgr/timer_uv.cc +0 -66
  2371. data/src/core/lib/iomgr/udp_server.cc +0 -747
  2372. data/src/core/lib/iomgr/udp_server.h +0 -101
  2373. data/src/core/lib/security/credentials/credentials_metadata.cc +0 -62
  2374. data/src/core/lib/security/transport/target_authority_table.cc +0 -75
  2375. data/src/core/lib/security/transport/target_authority_table.h +0 -40
  2376. data/src/core/lib/slice/slice_hash_table.h +0 -199
  2377. data/src/core/lib/slice/slice_intern.cc +0 -375
  2378. data/src/core/lib/slice/slice_utils.h +0 -200
  2379. data/src/core/lib/slice/slice_weak_hash_table.h +0 -102
  2380. data/src/core/lib/surface/init_secure.cc +0 -81
  2381. data/src/core/lib/transport/metadata.cc +0 -679
  2382. data/src/core/lib/transport/metadata.h +0 -446
  2383. data/src/core/lib/transport/metadata_batch.cc +0 -392
  2384. data/src/core/lib/transport/static_metadata.cc +0 -1230
  2385. data/src/core/lib/transport/static_metadata.h +0 -597
  2386. data/src/core/lib/transport/status_metadata.cc +0 -61
  2387. data/src/core/lib/transport/status_metadata.h +0 -48
  2388. data/third_party/abseil-cpp/absl/base/dynamic_annotations.cc +0 -129
  2389. data/third_party/abseil-cpp/absl/base/internal/bits.h +0 -218
  2390. data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_locl.h +0 -104
  2391. data/third_party/boringssl-with-bazel/src/crypto/asn1/f_enum.c +0 -93
  2392. data/third_party/boringssl-with-bazel/src/crypto/dh/dh.c +0 -533
  2393. data/third_party/boringssl-with-bazel/src/crypto/dh/params.c +0 -93
  2394. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/is_fips.c +0 -29
  2395. data/third_party/boringssl-with-bazel/src/crypto/x509/a_strex.c +0 -653
  2396. data/third_party/boringssl-with-bazel/src/crypto/x509/vpm_int.h +0 -71
  2397. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_r2x.c +0 -116
  2398. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_int.h +0 -217
  2399. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pku.c +0 -110
  2400. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_sxnet.c +0 -274
  2401. data/third_party/boringssl-with-bazel/src/ssl/t1_lib.cc +0 -3870
  2402. data/third_party/cares/cares/ares.h +0 -670
  2403. data/third_party/cares/cares/ares__close_sockets.c +0 -61
  2404. data/third_party/cares/cares/ares__get_hostent.c +0 -261
  2405. data/third_party/cares/cares/ares_create_query.c +0 -206
  2406. data/third_party/cares/cares/ares_data.c +0 -222
  2407. data/third_party/cares/cares/ares_data.h +0 -72
  2408. data/third_party/cares/cares/ares_dns.h +0 -103
  2409. data/third_party/cares/cares/ares_expand_name.c +0 -209
  2410. data/third_party/cares/cares/ares_expand_string.c +0 -70
  2411. data/third_party/cares/cares/ares_free_hostent.c +0 -41
  2412. data/third_party/cares/cares/ares_getenv.c +0 -30
  2413. data/third_party/cares/cares/ares_gethostbyaddr.c +0 -294
  2414. data/third_party/cares/cares/ares_gethostbyname.c +0 -529
  2415. data/third_party/cares/cares/ares_getnameinfo.c +0 -453
  2416. data/third_party/cares/cares/ares_getopt.c +0 -122
  2417. data/third_party/cares/cares/ares_getopt.h +0 -53
  2418. data/third_party/cares/cares/ares_init.c +0 -2615
  2419. data/third_party/cares/cares/ares_ipv6.h +0 -78
  2420. data/third_party/cares/cares/ares_library_init.c +0 -195
  2421. data/third_party/cares/cares/ares_library_init.h +0 -43
  2422. data/third_party/cares/cares/ares_parse_a_reply.c +0 -264
  2423. data/third_party/cares/cares/ares_parse_aaaa_reply.c +0 -264
  2424. data/third_party/cares/cares/ares_parse_mx_reply.c +0 -170
  2425. data/third_party/cares/cares/ares_parse_naptr_reply.c +0 -194
  2426. data/third_party/cares/cares/ares_parse_ns_reply.c +0 -183
  2427. data/third_party/cares/cares/ares_parse_ptr_reply.c +0 -221
  2428. data/third_party/cares/cares/ares_parse_soa_reply.c +0 -133
  2429. data/third_party/cares/cares/ares_parse_srv_reply.c +0 -179
  2430. data/third_party/cares/cares/ares_parse_txt_reply.c +0 -220
  2431. data/third_party/cares/cares/ares_private.h +0 -382
  2432. data/third_party/cares/cares/ares_process.c +0 -1473
  2433. data/third_party/cares/cares/ares_query.c +0 -186
  2434. data/third_party/cares/cares/ares_search.c +0 -323
  2435. data/third_party/cares/cares/ares_send.c +0 -137
  2436. data/third_party/cares/cares/ares_setup.h +0 -217
  2437. data/third_party/cares/cares/ares_strsplit.c +0 -174
  2438. data/third_party/cares/cares/ares_version.h +0 -24
  2439. data/third_party/cares/cares/inet_net_pton.c +0 -450
  2440. data/third_party/cares/cares/inet_ntop.c +0 -207
  2441. data/third_party/upb/upb/generated_util.h +0 -105
  2442. data/third_party/upb/upb/port.c +0 -26
  2443. data/third_party/upb/upb/table.int.h +0 -507
@@ -4,21 +4,21 @@
4
4
  * This package is an SSL implementation written
5
5
  * by Eric Young (eay@cryptsoft.com).
6
6
  * The implementation was written so as to conform with Netscapes SSL.
7
- *
7
+ *
8
8
  * This library is free for commercial and non-commercial use as long as
9
9
  * the following conditions are aheared to. The following conditions
10
10
  * apply to all code found in this distribution, be it the RC4, RSA,
11
11
  * lhash, DES, etc., code; not just the SSL code. The SSL documentation
12
12
  * included with this distribution is covered by the same copyright terms
13
13
  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
14
- *
14
+ *
15
15
  * Copyright remains Eric Young's, and as such any Copyright notices in
16
16
  * the code are not to be removed.
17
17
  * If this package is used in a product, Eric Young should be given attribution
18
18
  * as the author of the parts of the library used.
19
19
  * This can be in the form of a textual message at program startup or
20
20
  * in documentation (online or textual) provided with the package.
21
- *
21
+ *
22
22
  * Redistribution and use in source and binary forms, with or without
23
23
  * modification, are permitted provided that the following conditions
24
24
  * are met:
@@ -33,10 +33,10 @@
33
33
  * Eric Young (eay@cryptsoft.com)"
34
34
  * The word 'cryptographic' can be left out if the rouines from the library
35
35
  * being used are not cryptographic related :-).
36
- * 4. If you include any Windows specific code (or a derivative thereof) from
36
+ * 4. If you include any Windows specific code (or a derivative thereof) from
37
37
  * the apps directory (application code) you must include an acknowledgement:
38
38
  * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
39
- *
39
+ *
40
40
  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
41
41
  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42
42
  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
@@ -48,7 +48,7 @@
48
48
  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
49
49
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
50
50
  * SUCH DAMAGE.
51
- *
51
+ *
52
52
  * The licence and distribution terms for any publically available version or
53
53
  * derivative of this code cannot be changed. i.e. this code cannot simply be
54
54
  * copied and put under another distribution licence
@@ -63,742 +63,1868 @@
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
 
74
73
 
75
- /* Legacy ASN.1 library.
76
- *
77
- * 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. */
80
-
81
-
82
- #define V_ASN1_UNIVERSAL 0x00
83
- #define V_ASN1_APPLICATION 0x40
84
- #define V_ASN1_CONTEXT_SPECIFIC 0x80
85
- #define V_ASN1_PRIVATE 0xc0
86
-
87
- #define V_ASN1_CONSTRUCTED 0x20
88
- #define V_ASN1_PRIMITIVE_TAG 0x1f
89
-
90
- #define V_ASN1_APP_CHOOSE -2 /* let the recipient choose */
91
- #define V_ASN1_OTHER -3 /* used in ASN1_TYPE */
92
- #define V_ASN1_ANY -4 /* used in ASN1 template code */
93
-
94
- #define V_ASN1_NEG 0x100 /* negative flag */
95
- /* No supported universal tags may exceed this value, to avoid ambiguity with
96
- * V_ASN1_NEG. */
97
- #define V_ASN1_MAX_UNIVERSAL 0xff
98
-
99
- #define V_ASN1_UNDEF -1
100
- #define V_ASN1_EOC 0
101
- #define V_ASN1_BOOLEAN 1 /**/
102
- #define V_ASN1_INTEGER 2
103
- #define V_ASN1_NEG_INTEGER (2 | V_ASN1_NEG)
104
- #define V_ASN1_BIT_STRING 3
105
- #define V_ASN1_OCTET_STRING 4
106
- #define V_ASN1_NULL 5
107
- #define V_ASN1_OBJECT 6
108
- #define V_ASN1_OBJECT_DESCRIPTOR 7
109
- #define V_ASN1_EXTERNAL 8
110
- #define V_ASN1_REAL 9
111
- #define V_ASN1_ENUMERATED 10
112
- #define V_ASN1_NEG_ENUMERATED (10 | V_ASN1_NEG)
113
- #define V_ASN1_UTF8STRING 12
114
- #define V_ASN1_SEQUENCE 16
115
- #define V_ASN1_SET 17
116
- #define V_ASN1_NUMERICSTRING 18 /**/
117
- #define V_ASN1_PRINTABLESTRING 19
118
- #define V_ASN1_T61STRING 20
119
- #define V_ASN1_TELETEXSTRING 20 /* alias */
120
- #define V_ASN1_VIDEOTEXSTRING 21 /**/
121
- #define V_ASN1_IA5STRING 22
122
- #define V_ASN1_UTCTIME 23
123
- #define V_ASN1_GENERALIZEDTIME 24 /**/
124
- #define V_ASN1_GRAPHICSTRING 25 /**/
125
- #define V_ASN1_ISO64STRING 26 /**/
126
- #define V_ASN1_VISIBLESTRING 26 /* alias */
127
- #define V_ASN1_GENERALSTRING 27 /**/
128
- #define V_ASN1_UNIVERSALSTRING 28 /**/
129
- #define V_ASN1_BMPSTRING 30
130
-
131
- /* For use with d2i_ASN1_type_bytes() */
132
- #define B_ASN1_NUMERICSTRING 0x0001
133
- #define B_ASN1_PRINTABLESTRING 0x0002
134
- #define B_ASN1_T61STRING 0x0004
135
- #define B_ASN1_TELETEXSTRING 0x0004
136
- #define B_ASN1_VIDEOTEXSTRING 0x0008
137
- #define B_ASN1_IA5STRING 0x0010
138
- #define B_ASN1_GRAPHICSTRING 0x0020
139
- #define B_ASN1_ISO64STRING 0x0040
140
- #define B_ASN1_VISIBLESTRING 0x0040
141
- #define B_ASN1_GENERALSTRING 0x0080
142
- #define B_ASN1_UNIVERSALSTRING 0x0100
143
- #define B_ASN1_OCTET_STRING 0x0200
144
- #define B_ASN1_BIT_STRING 0x0400
145
- #define B_ASN1_BMPSTRING 0x0800
146
- #define B_ASN1_UNKNOWN 0x1000
147
- #define B_ASN1_UTF8STRING 0x2000
148
- #define B_ASN1_UTCTIME 0x4000
149
- #define B_ASN1_GENERALIZEDTIME 0x8000
150
- #define B_ASN1_SEQUENCE 0x10000
151
-
152
- /* For use with ASN1_mbstring_copy() */
153
- #define MBSTRING_FLAG 0x1000
154
- #define MBSTRING_UTF8 (MBSTRING_FLAG)
155
- /* |MBSTRING_ASC| refers to Latin-1, not ASCII. It is used with TeletexString
156
- * which, in turn, is treated as Latin-1 rather than T.61 by OpenSSL and most
157
- * other software. */
158
- #define MBSTRING_ASC (MBSTRING_FLAG|1)
159
- #define MBSTRING_BMP (MBSTRING_FLAG|2)
160
- #define MBSTRING_UNIV (MBSTRING_FLAG|4)
161
-
162
- #define DECLARE_ASN1_SET_OF(type) /* filled in by mkstack.pl */
163
- #define IMPLEMENT_ASN1_SET_OF(type) /* nothing, no longer needed */
164
-
165
- /* These are used internally in the ASN1_OBJECT to keep track of
166
- * whether the names and data need to be free()ed */
167
- #define ASN1_OBJECT_FLAG_DYNAMIC 0x01 /* internal use */
168
- #define ASN1_OBJECT_FLAG_DYNAMIC_STRINGS 0x04 /* internal use */
169
- #define ASN1_OBJECT_FLAG_DYNAMIC_DATA 0x08 /* internal use */
170
- struct asn1_object_st
171
- {
172
- const char *sn,*ln;
173
- int nid;
174
- int length;
175
- const unsigned char *data; /* data remains const after init */
176
- int flags; /* Should we free this one */
177
- };
178
-
179
- DEFINE_STACK_OF(ASN1_OBJECT)
180
-
181
- #define ASN1_STRING_FLAG_BITS_LEFT 0x08 /* Set if 0x07 has bits left value */
182
- /* This indicates that the ASN1_STRING is not a real value but just a place
183
- * holder for the location where indefinite length constructed data should
184
- * be inserted in the memory buffer
185
- */
186
- #define ASN1_STRING_FLAG_NDEF 0x010
187
-
188
- /* This flag is used by ASN1 code to indicate an ASN1_STRING is an MSTRING
189
- * type.
190
- */
191
- #define ASN1_STRING_FLAG_MSTRING 0x040
192
- /* This is the base type that holds just about everything :-) */
193
- struct asn1_string_st
194
- {
195
- int length;
196
- int type;
197
- unsigned char *data;
198
- /* The value of the following field depends on the type being
199
- * held. It is mostly being used for BIT_STRING so if the
200
- * input data has a non-zero 'unused bits' value, it will be
201
- * handled correctly */
202
- long flags;
203
- };
204
-
205
- /* ASN1_ENCODING structure: this is used to save the received
206
- * encoding of an ASN1 type. This is useful to get round
207
- * problems with invalid encodings which can break signatures.
208
- */
209
-
210
- typedef struct ASN1_ENCODING_st
211
- {
212
- unsigned char *enc; /* DER encoding */
213
- long len; /* Length of encoding */
214
- int modified; /* set to 1 if 'enc' is invalid */
215
- /* alias_only is zero if |enc| owns the buffer that it points to
216
- * (although |enc| may still be NULL). If one, |enc| points into a
217
- * buffer that is owned elsewhere. */
218
- unsigned alias_only:1;
219
- /* alias_only_on_next_parse is one iff the next parsing operation
220
- * should avoid taking a copy of the input and rather set
221
- * |alias_only|. */
222
- unsigned alias_only_on_next_parse:1;
223
- } ASN1_ENCODING;
224
-
225
- #define STABLE_FLAGS_MALLOC 0x01
226
- #define STABLE_NO_MASK 0x02
227
- #define DIRSTRING_TYPE \
228
- (B_ASN1_PRINTABLESTRING|B_ASN1_T61STRING|B_ASN1_BMPSTRING|B_ASN1_UTF8STRING)
229
- #define PKCS9STRING_TYPE (DIRSTRING_TYPE|B_ASN1_IA5STRING)
230
-
231
- typedef struct asn1_string_table_st {
232
- int nid;
233
- long minsize;
234
- long maxsize;
235
- unsigned long mask;
236
- unsigned long flags;
237
- } ASN1_STRING_TABLE;
238
-
239
- /* size limits: this stuff is taken straight from RFC2459 */
240
-
241
- #define ub_name 32768
242
- #define ub_common_name 64
243
- #define ub_locality_name 128
244
- #define ub_state_name 128
245
- #define ub_organization_name 64
246
- #define ub_organization_unit_name 64
247
- #define ub_title 64
248
- #define ub_email_address 128
249
-
250
- /* Declarations for template structures: for full definitions
251
- * see asn1t.h
252
- */
253
- typedef struct ASN1_TEMPLATE_st ASN1_TEMPLATE;
254
- typedef struct ASN1_TLC_st ASN1_TLC;
255
- /* This is just an opaque pointer */
256
- typedef struct ASN1_VALUE_st ASN1_VALUE;
257
-
258
- /* Declare ASN1 functions: the implement macro in in asn1t.h */
259
-
260
- #define DECLARE_ASN1_FUNCTIONS(type) DECLARE_ASN1_FUNCTIONS_name(type, type)
261
-
262
- #define DECLARE_ASN1_ALLOC_FUNCTIONS(type) \
263
- DECLARE_ASN1_ALLOC_FUNCTIONS_name(type, type)
264
-
265
- #define DECLARE_ASN1_FUNCTIONS_name(type, name) \
266
- DECLARE_ASN1_ALLOC_FUNCTIONS_name(type, name) \
267
- DECLARE_ASN1_ENCODE_FUNCTIONS(type, name, name)
268
-
269
- #define DECLARE_ASN1_FUNCTIONS_fname(type, itname, name) \
270
- DECLARE_ASN1_ALLOC_FUNCTIONS_name(type, name) \
271
- DECLARE_ASN1_ENCODE_FUNCTIONS(type, itname, name)
272
-
273
- #define DECLARE_ASN1_ENCODE_FUNCTIONS(type, itname, name) \
274
- OPENSSL_EXPORT type *d2i_##name(type **a, const unsigned char **in, long len); \
275
- OPENSSL_EXPORT int i2d_##name(type *a, unsigned char **out); \
276
- DECLARE_ASN1_ITEM(itname)
277
-
278
- #define DECLARE_ASN1_ENCODE_FUNCTIONS_const(type, name) \
279
- OPENSSL_EXPORT type *d2i_##name(type **a, const unsigned char **in, long len); \
280
- OPENSSL_EXPORT int i2d_##name(const type *a, unsigned char **out); \
281
- DECLARE_ASN1_ITEM(name)
282
-
283
- #define DECLARE_ASN1_NDEF_FUNCTION(name) \
284
- OPENSSL_EXPORT int i2d_##name##_NDEF(name *a, unsigned char **out);
285
-
286
- #define DECLARE_ASN1_FUNCTIONS_const(name) \
287
- DECLARE_ASN1_ALLOC_FUNCTIONS(name) \
288
- DECLARE_ASN1_ENCODE_FUNCTIONS_const(name, name)
289
-
290
- #define DECLARE_ASN1_ALLOC_FUNCTIONS_name(type, name) \
291
- OPENSSL_EXPORT type *name##_new(void); \
292
- OPENSSL_EXPORT void name##_free(type *a);
74
+ // Legacy ASN.1 library.
75
+ //
76
+ // This header is part of OpenSSL's ASN.1 implementation. It is retained for
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.
83
+
84
+
85
+ // Tag constants.
86
+ //
87
+ // These constants are used in various APIs to specify ASN.1 types and tag
88
+ // components. See the specific API's documentation for details on which values
89
+ // are used and how.
90
+
91
+ // The following constants are tag classes.
92
+ #define V_ASN1_UNIVERSAL 0x00
93
+ #define V_ASN1_APPLICATION 0x40
94
+ #define V_ASN1_CONTEXT_SPECIFIC 0x80
95
+ #define V_ASN1_PRIVATE 0xc0
96
+
97
+ // V_ASN1_CONSTRUCTED indicates an element is constructed, rather than
98
+ // primitive.
99
+ #define V_ASN1_CONSTRUCTED 0x20
100
+
101
+ // V_ASN1_PRIMITIVE_TAG is the highest tag number which can be encoded in a
102
+ // single byte. Note this is unrelated to whether an element is constructed or
103
+ // primitive.
104
+ //
105
+ // TODO(davidben): Make this private.
106
+ #define V_ASN1_PRIMITIVE_TAG 0x1f
107
+
108
+ // V_ASN1_MAX_UNIVERSAL is the highest supported universal tag number. It is
109
+ // necessary to avoid ambiguity with |V_ASN1_NEG| and |MBSTRING_FLAG|.
110
+ //
111
+ // TODO(davidben): Make this private.
112
+ #define V_ASN1_MAX_UNIVERSAL 0xff
113
+
114
+ // V_ASN1_UNDEF is used in some APIs to indicate an ASN.1 element is omitted.
115
+ #define V_ASN1_UNDEF (-1)
116
+
117
+ // V_ASN1_OTHER is used in |ASN1_TYPE| to indicate a non-universal ASN.1 type.
118
+ #define V_ASN1_OTHER (-3)
119
+
120
+ // V_ASN1_ANY is used by the ASN.1 templates to indicate an ANY type.
121
+ #define V_ASN1_ANY (-4)
122
+
123
+ // The following constants are tag numbers for universal types.
124
+ #define V_ASN1_EOC 0
125
+ #define V_ASN1_BOOLEAN 1
126
+ #define V_ASN1_INTEGER 2
127
+ #define V_ASN1_BIT_STRING 3
128
+ #define V_ASN1_OCTET_STRING 4
129
+ #define V_ASN1_NULL 5
130
+ #define V_ASN1_OBJECT 6
131
+ #define V_ASN1_OBJECT_DESCRIPTOR 7
132
+ #define V_ASN1_EXTERNAL 8
133
+ #define V_ASN1_REAL 9
134
+ #define V_ASN1_ENUMERATED 10
135
+ #define V_ASN1_UTF8STRING 12
136
+ #define V_ASN1_SEQUENCE 16
137
+ #define V_ASN1_SET 17
138
+ #define V_ASN1_NUMERICSTRING 18
139
+ #define V_ASN1_PRINTABLESTRING 19
140
+ #define V_ASN1_T61STRING 20
141
+ #define V_ASN1_TELETEXSTRING 20
142
+ #define V_ASN1_VIDEOTEXSTRING 21
143
+ #define V_ASN1_IA5STRING 22
144
+ #define V_ASN1_UTCTIME 23
145
+ #define V_ASN1_GENERALIZEDTIME 24
146
+ #define V_ASN1_GRAPHICSTRING 25
147
+ #define V_ASN1_ISO64STRING 26
148
+ #define V_ASN1_VISIBLESTRING 26
149
+ #define V_ASN1_GENERALSTRING 27
150
+ #define V_ASN1_UNIVERSALSTRING 28
151
+ #define V_ASN1_BMPSTRING 30
152
+
153
+ // The following constants are used for |ASN1_STRING| values that represent
154
+ // negative INTEGER and ENUMERATED values. See |ASN1_STRING| for more details.
155
+ #define V_ASN1_NEG 0x100
156
+ #define V_ASN1_NEG_INTEGER (V_ASN1_INTEGER | V_ASN1_NEG)
157
+ #define V_ASN1_NEG_ENUMERATED (V_ASN1_ENUMERATED | V_ASN1_NEG)
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);
293
190
 
294
- #define DECLARE_ASN1_PRINT_FUNCTION(stname) \
295
- DECLARE_ASN1_PRINT_FUNCTION_fname(stname, stname)
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);
296
194
 
297
- #define DECLARE_ASN1_PRINT_FUNCTION_fname(stname, fname) \
298
- OPENSSL_EXPORT int fname##_print_ctx(BIO *out, stname *x, int indent, \
299
- const ASN1_PCTX *pctx);
300
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.
301
274
  typedef void *d2i_of_void(void **, const unsigned char **, long);
302
275
  typedef int i2d_of_void(const void *, unsigned char **);
303
276
 
304
- /* The following macros and typedefs allow an ASN1_ITEM
305
- * to be embedded in a structure and referenced. Since
306
- * the ASN1_ITEM pointers need to be globally accessible
307
- * (possibly from shared libraries) they may exist in
308
- * different forms. On platforms that support it the
309
- * ASN1_ITEM structure itself will be globally exported.
310
- * Other platforms will export a function that returns
311
- * an ASN1_ITEM pointer.
312
- *
313
- * To handle both cases transparently the macros below
314
- * should be used instead of hard coding an ASN1_ITEM
315
- * pointer in a structure.
316
- *
317
- * The structure will look like this:
318
- *
319
- * typedef struct SOMETHING_st {
320
- * ...
321
- * ASN1_ITEM_EXP *iptr;
322
- * ...
323
- * } SOMETHING;
324
- *
325
- * It would be initialised as e.g.:
326
- *
327
- * SOMETHING somevar = {...,ASN1_ITEM_ref(X509),...};
328
- *
329
- * and the actual pointer extracted with:
330
- *
331
- * const ASN1_ITEM *it = ASN1_ITEM_ptr(somevar.iptr);
332
- *
333
- * Finally an ASN1_ITEM pointer can be extracted from an
334
- * appropriate reference with: ASN1_ITEM_rptr(X509). This
335
- * would be used when a function takes an ASN1_ITEM * argument.
336
- *
337
- */
338
277
 
339
- /* ASN1_ITEM pointer exported type */
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|.
340
309
  typedef const ASN1_ITEM ASN1_ITEM_EXP;
341
310
 
342
- /* Macro to obtain ASN1_ITEM pointer from exported type */
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*|.
343
316
  #define ASN1_ITEM_ptr(iptr) (iptr)
344
317
 
345
- /* Macro to include ASN1_ITEM pointer from base type */
346
- #define ASN1_ITEM_ref(iptr) (&(iptr##_it))
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;
347
321
 
348
- #define ASN1_ITEM_rptr(ref) (&(ref##_it))
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);
349
337
 
350
- #define DECLARE_ASN1_ITEM(name) \
351
- extern OPENSSL_EXPORT const ASN1_ITEM name##_it;
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);
352
349
 
353
- /* Parameters used by ASN1_STRING_print_ex() */
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);
354
394
 
355
- /* These determine which characters to escape:
356
- * RFC2253 special characters, control characters and
357
- * MSB set characters
358
- */
395
+ // The following functions behave like |ASN1_item_d2i| but read from |in|
396
+ // instead. |out| is the same parameter as in |ASN1_item_d2i|, but written with
397
+ // |void*| instead. The return values similarly match.
398
+ //
399
+ // These functions may not be used with |ASN1_ITEM|s whose C type is
400
+ // |ASN1_BOOLEAN|.
401
+ //
402
+ // WARNING: These functions do not bound how much data is read from |in|.
403
+ // Parsing an untrusted input could consume unbounded memory.
404
+ OPENSSL_EXPORT void *ASN1_item_d2i_fp(const ASN1_ITEM *it, FILE *in, void *out);
405
+ OPENSSL_EXPORT void *ASN1_item_d2i_bio(const ASN1_ITEM *it, BIO *in, void *out);
406
+
407
+ // The following functions behave like |ASN1_item_i2d| but write to |out|
408
+ // instead. |in| is the same parameter as in |ASN1_item_i2d|, but written with
409
+ // |void*| instead.
410
+ //
411
+ // These functions may not be used with |ASN1_ITEM|s whose C type is
412
+ // |ASN1_BOOLEAN|.
413
+ OPENSSL_EXPORT int ASN1_item_i2d_fp(const ASN1_ITEM *it, FILE *out, void *in);
414
+ OPENSSL_EXPORT int ASN1_item_i2d_bio(const ASN1_ITEM *it, BIO *out, void *in);
415
+
416
+ // ASN1_item_unpack parses |oct|'s contents as |it|'s ASN.1 type. It returns a
417
+ // newly-allocated instance of |it|'s C type on success, or NULL on error.
418
+ //
419
+ // This function may not be used with |ASN1_ITEM|s whose C type is
420
+ // |ASN1_BOOLEAN|.
421
+ //
422
+ // WARNING: Casting the result of this function to the wrong type is a
423
+ // potentially exploitable memory error. Callers must ensure the value is used
424
+ // consistently with |it|.
425
+ OPENSSL_EXPORT void *ASN1_item_unpack(const ASN1_STRING *oct,
426
+ const ASN1_ITEM *it);
427
+
428
+ // ASN1_item_pack marshals |obj| as |it|'s ASN.1 type. If |out| is NULL, it
429
+ // returns a newly-allocated |ASN1_STRING| with the result, or NULL on error.
430
+ // If |out| is non-NULL, but |*out| is NULL, it does the same but additionally
431
+ // sets |*out| to the result. If both |out| and |*out| are non-NULL, it writes
432
+ // the result to |*out| and returns |*out| on success or NULL on error.
433
+ //
434
+ // This function may not be used with |ASN1_ITEM|s whose C type is
435
+ // |ASN1_BOOLEAN|.
436
+ //
437
+ // WARNING: Passing a pointer of the wrong type into this function is a
438
+ // potentially exploitable memory error. Callers must ensure |val| is consistent
439
+ // with |it|.
440
+ OPENSSL_EXPORT ASN1_STRING *ASN1_item_pack(void *obj, const ASN1_ITEM *it,
441
+ ASN1_STRING **out);
442
+
443
+
444
+ // Booleans.
445
+ //
446
+ // This library represents ASN.1 BOOLEAN values with |ASN1_BOOLEAN|, which is an
447
+ // integer type. FALSE is zero, TRUE is 0xff, and an omitted OPTIONAL BOOLEAN is
448
+ // -1.
449
+
450
+ // d2i_ASN1_BOOLEAN parses a DER-encoded ASN.1 BOOLEAN from up to |len| bytes at
451
+ // |*inp|. On success, it advances |*inp| by the number of bytes read and
452
+ // returns the result. If |out| is non-NULL, it additionally writes the result
453
+ // to |*out|. On error, it returns -1.
454
+ //
455
+ // This function does not reject trailing data in the input. This allows the
456
+ // caller to parse a sequence of concatenated structures. Callers parsing only
457
+ // one structure should check for trailing data by comparing the updated |*inp|
458
+ // with the end of the input.
459
+ //
460
+ // WARNING: This function's is slightly different from other |d2i_*| functions
461
+ // because |ASN1_BOOLEAN| is not a pointer type.
462
+ //
463
+ // TODO(https://crbug.com/boringssl/354): This function currently also accepts
464
+ // BER, but this will be removed in the future.
465
+ OPENSSL_EXPORT ASN1_BOOLEAN d2i_ASN1_BOOLEAN(ASN1_BOOLEAN *out,
466
+ const unsigned char **inp,
467
+ long len);
468
+
469
+ // i2d_ASN1_BOOLEAN marshals |a| as a DER-encoded ASN.1 BOOLEAN, as described in
470
+ // |i2d_SAMPLE|.
471
+ OPENSSL_EXPORT int i2d_ASN1_BOOLEAN(ASN1_BOOLEAN a, unsigned char **outp);
472
+
473
+ // The following |ASN1_ITEM|s have ASN.1 type BOOLEAN and C type |ASN1_BOOLEAN|.
474
+ // |ASN1_TBOOLEAN| and |ASN1_FBOOLEAN| must be marked OPTIONAL. When omitted,
475
+ // they are parsed as TRUE and FALSE, respectively, rather than -1.
476
+ DECLARE_ASN1_ITEM(ASN1_BOOLEAN)
477
+ DECLARE_ASN1_ITEM(ASN1_TBOOLEAN)
478
+ DECLARE_ASN1_ITEM(ASN1_FBOOLEAN)
479
+
480
+
481
+ // Strings.
482
+ //
483
+ // ASN.1 contains a myriad of string types, as well as types that contain data
484
+ // that may be encoded into a string. This library uses a single type,
485
+ // |ASN1_STRING|, to represent most values.
486
+
487
+ // An asn1_string_st (aka |ASN1_STRING|) represents a value of a string-like
488
+ // ASN.1 type. It contains a type field, and a byte string data field with a
489
+ // type-specific representation.
490
+ //
491
+ // When representing a string value, the type field is one of
492
+ // |V_ASN1_OCTET_STRING|, |V_ASN1_UTF8STRING|, |V_ASN1_NUMERICSTRING|,
493
+ // |V_ASN1_PRINTABLESTRING|, |V_ASN1_T61STRING|, |V_ASN1_VIDEOTEXSTRING|,
494
+ // |V_ASN1_IA5STRING|, |V_ASN1_GRAPHICSTRING|, |V_ASN1_ISO64STRING|,
495
+ // |V_ASN1_VISIBLESTRING|, |V_ASN1_GENERALSTRING|, |V_ASN1_UNIVERSALSTRING|, or
496
+ // |V_ASN1_BMPSTRING|. The data contains the byte representation of of the
497
+ // string.
498
+ //
499
+ // When representing a BIT STRING value, the type field is |V_ASN1_BIT_STRING|.
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.
505
+ //
506
+ // When representing a GeneralizedTime or UTCTime value, the type field is
507
+ // |V_ASN1_GENERALIZEDTIME| or |V_ASN1_UTCTIME|, respectively. The data contains
508
+ // the DER encoding of the value. For example, the UNIX epoch would be
509
+ // "19700101000000Z" for a GeneralizedTime and "700101000000Z" for a UTCTime.
510
+ //
511
+ // |ASN1_STRING|, when stored in an |ASN1_TYPE|, may also represent an element
512
+ // with tag not directly supported by this library. See |ASN1_TYPE| for details.
513
+ //
514
+ // |ASN1_STRING| additionally has the following typedefs: |ASN1_BIT_STRING|,
515
+ // |ASN1_BMPSTRING|, |ASN1_ENUMERATED|, |ASN1_GENERALIZEDTIME|,
516
+ // |ASN1_GENERALSTRING|, |ASN1_IA5STRING|, |ASN1_INTEGER|, |ASN1_OCTET_STRING|,
517
+ // |ASN1_PRINTABLESTRING|, |ASN1_T61STRING|, |ASN1_TIME|,
518
+ // |ASN1_UNIVERSALSTRING|, |ASN1_UTCTIME|, |ASN1_UTF8STRING|, and
519
+ // |ASN1_VISIBLESTRING|. Other than |ASN1_TIME|, these correspond to universal
520
+ // ASN.1 types. |ASN1_TIME| represents a CHOICE of UTCTime and GeneralizedTime,
521
+ // with a cutoff of 2049, as used in Section 4.1.2.5 of RFC 5280.
522
+ //
523
+ // For clarity, callers are encouraged to use the appropriate typedef when
524
+ // available. They are the same type as |ASN1_STRING|, so a caller may freely
525
+ // pass them into functions expecting |ASN1_STRING|, such as
526
+ // |ASN1_STRING_length|.
527
+ //
528
+ // If a function returns an |ASN1_STRING| where the typedef or ASN.1 structure
529
+ // implies constraints on the type field, callers may assume that the type field
530
+ // is correct. However, if a function takes an |ASN1_STRING| as input, callers
531
+ // must ensure the type field matches. These invariants are not captured by the
532
+ // C type system and may not be checked at runtime. For example, callers may
533
+ // assume the output of |X509_get0_serialNumber| has type |V_ASN1_INTEGER| or
534
+ // |V_ASN1_NEG_INTEGER|. Callers must not pass a string of type
535
+ // |V_ASN1_OCTET_STRING| to |X509_set_serialNumber|. Doing so may break
536
+ // invariants on the |X509| object and break the |X509_get0_serialNumber|
537
+ // invariant.
538
+ //
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.
543
+ struct asn1_string_st {
544
+ int length;
545
+ int type;
546
+ unsigned char *data;
547
+ long flags;
548
+ };
549
+
550
+ // ASN1_STRING_FLAG_BITS_LEFT indicates, in a BIT STRING |ASN1_STRING|, that
551
+ // flags & 0x7 contains the number of padding bits added to the BIT STRING
552
+ // value. When not set, all trailing zero bits in the last byte are implicitly
553
+ // treated as padding. This behavior is deprecated and should not be used.
554
+ #define ASN1_STRING_FLAG_BITS_LEFT 0x08
555
+
556
+ // ASN1_STRING_type_new returns a newly-allocated empty |ASN1_STRING| object of
557
+ // type |type|, or NULL on error.
558
+ OPENSSL_EXPORT ASN1_STRING *ASN1_STRING_type_new(int type);
559
+
560
+ // ASN1_STRING_new returns a newly-allocated empty |ASN1_STRING| object with an
561
+ // arbitrary type. Prefer one of the type-specific constructors, such as
562
+ // |ASN1_OCTET_STRING_new|, or |ASN1_STRING_type_new|.
563
+ OPENSSL_EXPORT ASN1_STRING *ASN1_STRING_new(void);
564
+
565
+ // ASN1_STRING_free releases memory associated with |str|.
566
+ OPENSSL_EXPORT void ASN1_STRING_free(ASN1_STRING *str);
567
+
568
+ // ASN1_STRING_copy sets |dst| to a copy of |str|. It returns one on success and
569
+ // zero on error.
570
+ OPENSSL_EXPORT int ASN1_STRING_copy(ASN1_STRING *dst, const ASN1_STRING *str);
571
+
572
+ // ASN1_STRING_dup returns a newly-allocated copy of |str|, or NULL on error.
573
+ OPENSSL_EXPORT ASN1_STRING *ASN1_STRING_dup(const ASN1_STRING *str);
574
+
575
+ // ASN1_STRING_type returns the type of |str|. This value will be one of the
576
+ // |V_ASN1_*| constants.
577
+ OPENSSL_EXPORT int ASN1_STRING_type(const ASN1_STRING *str);
578
+
579
+ // ASN1_STRING_get0_data returns a pointer to |str|'s contents. Callers should
580
+ // use |ASN1_STRING_length| to determine the length of the string. The string
581
+ // may have embedded NUL bytes and may not be NUL-terminated.
582
+ OPENSSL_EXPORT const unsigned char *ASN1_STRING_get0_data(
583
+ const ASN1_STRING *str);
584
+
585
+ // ASN1_STRING_data returns a mutable pointer to |str|'s contents. Callers
586
+ // should use |ASN1_STRING_length| to determine the length of the string. The
587
+ // string may have embedded NUL bytes and may not be NUL-terminated.
588
+ //
589
+ // Prefer |ASN1_STRING_get0_data|.
590
+ OPENSSL_EXPORT unsigned char *ASN1_STRING_data(ASN1_STRING *str);
591
+
592
+ // ASN1_STRING_length returns the length of |str|, in bytes.
593
+ OPENSSL_EXPORT int ASN1_STRING_length(const ASN1_STRING *str);
594
+
595
+ // ASN1_STRING_cmp compares |a| and |b|'s type and contents. It returns an
596
+ // integer equal to, less than, or greater than zero if |a| is equal to, less
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.
602
+ //
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|.
605
+ OPENSSL_EXPORT int ASN1_STRING_cmp(const ASN1_STRING *a, const ASN1_STRING *b);
606
+
607
+ // ASN1_STRING_set sets the contents of |str| to a copy of |len| bytes from
608
+ // |data|. It returns one on success and zero on error.
609
+ OPENSSL_EXPORT int ASN1_STRING_set(ASN1_STRING *str, const void *data, int len);
610
+
611
+ // ASN1_STRING_set0 sets the contents of |str| to |len| bytes from |data|. It
612
+ // takes ownership of |data|, which must have been allocated with
613
+ // |OPENSSL_malloc|.
614
+ OPENSSL_EXPORT void ASN1_STRING_set0(ASN1_STRING *str, void *data, int len);
615
+
616
+ // The following functions call |ASN1_STRING_type_new| with the corresponding
617
+ // |V_ASN1_*| constant.
618
+ OPENSSL_EXPORT ASN1_BMPSTRING *ASN1_BMPSTRING_new(void);
619
+ OPENSSL_EXPORT ASN1_GENERALSTRING *ASN1_GENERALSTRING_new(void);
620
+ OPENSSL_EXPORT ASN1_IA5STRING *ASN1_IA5STRING_new(void);
621
+ OPENSSL_EXPORT ASN1_OCTET_STRING *ASN1_OCTET_STRING_new(void);
622
+ OPENSSL_EXPORT ASN1_PRINTABLESTRING *ASN1_PRINTABLESTRING_new(void);
623
+ OPENSSL_EXPORT ASN1_T61STRING *ASN1_T61STRING_new(void);
624
+ OPENSSL_EXPORT ASN1_UNIVERSALSTRING *ASN1_UNIVERSALSTRING_new(void);
625
+ OPENSSL_EXPORT ASN1_UTF8STRING *ASN1_UTF8STRING_new(void);
626
+ OPENSSL_EXPORT ASN1_VISIBLESTRING *ASN1_VISIBLESTRING_new(void);
627
+
628
+ // The following functions call |ASN1_STRING_free|.
629
+ OPENSSL_EXPORT void ASN1_BMPSTRING_free(ASN1_BMPSTRING *str);
630
+ OPENSSL_EXPORT void ASN1_GENERALSTRING_free(ASN1_GENERALSTRING *str);
631
+ OPENSSL_EXPORT void ASN1_IA5STRING_free(ASN1_IA5STRING *str);
632
+ OPENSSL_EXPORT void ASN1_OCTET_STRING_free(ASN1_OCTET_STRING *str);
633
+ OPENSSL_EXPORT void ASN1_PRINTABLESTRING_free(ASN1_PRINTABLESTRING *str);
634
+ OPENSSL_EXPORT void ASN1_T61STRING_free(ASN1_T61STRING *str);
635
+ OPENSSL_EXPORT void ASN1_UNIVERSALSTRING_free(ASN1_UNIVERSALSTRING *str);
636
+ OPENSSL_EXPORT void ASN1_UTF8STRING_free(ASN1_UTF8STRING *str);
637
+ OPENSSL_EXPORT void ASN1_VISIBLESTRING_free(ASN1_VISIBLESTRING *str);
638
+
639
+ // The following functions parse up to |len| bytes from |*inp| as a
640
+ // DER-encoded ASN.1 value of the corresponding type, as described in
641
+ // |d2i_SAMPLE_with_reuse|.
642
+ //
643
+ // TODO(https://crbug.com/boringssl/354): This function currently also accepts
644
+ // BER, but this will be removed in the future.
645
+ OPENSSL_EXPORT ASN1_BMPSTRING *d2i_ASN1_BMPSTRING(ASN1_BMPSTRING **out,
646
+ const uint8_t **inp,
647
+ long len);
648
+ OPENSSL_EXPORT ASN1_GENERALSTRING *d2i_ASN1_GENERALSTRING(
649
+ ASN1_GENERALSTRING **out, const uint8_t **inp, long len);
650
+ OPENSSL_EXPORT ASN1_IA5STRING *d2i_ASN1_IA5STRING(ASN1_IA5STRING **out,
651
+ const uint8_t **inp,
652
+ long len);
653
+ OPENSSL_EXPORT ASN1_OCTET_STRING *d2i_ASN1_OCTET_STRING(ASN1_OCTET_STRING **out,
654
+ const uint8_t **inp,
655
+ long len);
656
+ OPENSSL_EXPORT ASN1_PRINTABLESTRING *d2i_ASN1_PRINTABLESTRING(
657
+ ASN1_PRINTABLESTRING **out, const uint8_t **inp, long len);
658
+ OPENSSL_EXPORT ASN1_T61STRING *d2i_ASN1_T61STRING(ASN1_T61STRING **out,
659
+ const uint8_t **inp,
660
+ long len);
661
+ OPENSSL_EXPORT ASN1_UNIVERSALSTRING *d2i_ASN1_UNIVERSALSTRING(
662
+ ASN1_UNIVERSALSTRING **out, const uint8_t **inp, long len);
663
+ OPENSSL_EXPORT ASN1_UTF8STRING *d2i_ASN1_UTF8STRING(ASN1_UTF8STRING **out,
664
+ const uint8_t **inp,
665
+ long len);
666
+ OPENSSL_EXPORT ASN1_VISIBLESTRING *d2i_ASN1_VISIBLESTRING(
667
+ ASN1_VISIBLESTRING **out, const uint8_t **inp, long len);
668
+
669
+ // The following functions marshal |in| as a DER-encoded ASN.1 value of the
670
+ // corresponding type, as described in |i2d_SAMPLE|.
671
+ OPENSSL_EXPORT int i2d_ASN1_BMPSTRING(const ASN1_BMPSTRING *in, uint8_t **outp);
672
+ OPENSSL_EXPORT int i2d_ASN1_GENERALSTRING(const ASN1_GENERALSTRING *in,
673
+ uint8_t **outp);
674
+ OPENSSL_EXPORT int i2d_ASN1_IA5STRING(const ASN1_IA5STRING *in, uint8_t **outp);
675
+ OPENSSL_EXPORT int i2d_ASN1_OCTET_STRING(const ASN1_OCTET_STRING *in,
676
+ uint8_t **outp);
677
+ OPENSSL_EXPORT int i2d_ASN1_PRINTABLESTRING(const ASN1_PRINTABLESTRING *in,
678
+ uint8_t **outp);
679
+ OPENSSL_EXPORT int i2d_ASN1_T61STRING(const ASN1_T61STRING *in, uint8_t **outp);
680
+ OPENSSL_EXPORT int i2d_ASN1_UNIVERSALSTRING(const ASN1_UNIVERSALSTRING *in,
681
+ uint8_t **outp);
682
+ OPENSSL_EXPORT int i2d_ASN1_UTF8STRING(const ASN1_UTF8STRING *in,
683
+ uint8_t **outp);
684
+ OPENSSL_EXPORT int i2d_ASN1_VISIBLESTRING(const ASN1_VISIBLESTRING *in,
685
+ uint8_t **outp);
686
+
687
+ // The following |ASN1_ITEM|s have the ASN.1 type referred to in their name and
688
+ // C type |ASN1_STRING*|. The C type may also be written as the corresponding
689
+ // typedef.
690
+ DECLARE_ASN1_ITEM(ASN1_BMPSTRING)
691
+ DECLARE_ASN1_ITEM(ASN1_GENERALSTRING)
692
+ DECLARE_ASN1_ITEM(ASN1_IA5STRING)
693
+ DECLARE_ASN1_ITEM(ASN1_OCTET_STRING)
694
+ DECLARE_ASN1_ITEM(ASN1_PRINTABLESTRING)
695
+ DECLARE_ASN1_ITEM(ASN1_T61STRING)
696
+ DECLARE_ASN1_ITEM(ASN1_UNIVERSALSTRING)
697
+ DECLARE_ASN1_ITEM(ASN1_UTF8STRING)
698
+ DECLARE_ASN1_ITEM(ASN1_VISIBLESTRING)
699
+
700
+ // ASN1_OCTET_STRING_dup calls |ASN1_STRING_dup|.
701
+ OPENSSL_EXPORT ASN1_OCTET_STRING *ASN1_OCTET_STRING_dup(
702
+ const ASN1_OCTET_STRING *a);
703
+
704
+ // ASN1_OCTET_STRING_cmp calls |ASN1_STRING_cmp|.
705
+ OPENSSL_EXPORT int ASN1_OCTET_STRING_cmp(const ASN1_OCTET_STRING *a,
706
+ const ASN1_OCTET_STRING *b);
707
+
708
+ // ASN1_OCTET_STRING_set calls |ASN1_STRING_set|.
709
+ OPENSSL_EXPORT int ASN1_OCTET_STRING_set(ASN1_OCTET_STRING *str,
710
+ const unsigned char *data, int len);
711
+
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);
718
+
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)
726
+
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)
731
+
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.
744
+ //
745
+ // If |mask| is zero, |DIRSTRING_TYPE| is used by default.
746
+ //
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.
769
+ //
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.
776
+ //
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.
799
+ //
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.
810
+ //
811
+ // A multi-string, or "MSTRING", is an |ASN1_STRING| that represents a CHOICE of
812
+ // several string or string-like types, such as X.509's DirectoryString. The
813
+ // |ASN1_STRING|'s type field determines which type is used.
814
+ //
815
+ // Multi-string types are associated with a bitmask, using the |B_ASN1_*|
816
+ // constants, which defines which types are valid.
817
+
818
+ // B_ASN1_DIRECTORYSTRING is a bitmask of types allowed in an X.509
819
+ // DirectoryString (RFC 5280).
820
+ #define B_ASN1_DIRECTORYSTRING \
821
+ (B_ASN1_PRINTABLESTRING | B_ASN1_TELETEXSTRING | B_ASN1_BMPSTRING | \
822
+ B_ASN1_UNIVERSALSTRING | B_ASN1_UTF8STRING)
823
+
824
+ // DIRECTORYSTRING_new returns a newly-allocated |ASN1_STRING| with type -1, or
825
+ // NULL on error. The resulting |ASN1_STRING| is not a valid X.509
826
+ // DirectoryString until initialized with a value.
827
+ OPENSSL_EXPORT ASN1_STRING *DIRECTORYSTRING_new(void);
828
+
829
+ // DIRECTORYSTRING_free calls |ASN1_STRING_free|.
830
+ OPENSSL_EXPORT void DIRECTORYSTRING_free(ASN1_STRING *str);
831
+
832
+ // d2i_DIRECTORYSTRING parses up to |len| bytes from |*inp| as a DER-encoded
833
+ // X.509 DirectoryString (RFC 5280), as described in |d2i_SAMPLE_with_reuse|.
834
+ //
835
+ // TODO(https://crbug.com/boringssl/354): This function currently also accepts
836
+ // BER, but this will be removed in the future.
837
+ //
838
+ // TODO(https://crbug.com/boringssl/449): DirectoryString's non-empty string
839
+ // requirement is not currently enforced.
840
+ OPENSSL_EXPORT ASN1_STRING *d2i_DIRECTORYSTRING(ASN1_STRING **out,
841
+ const uint8_t **inp, long len);
842
+
843
+ // i2d_DIRECTORYSTRING marshals |in| as a DER-encoded X.509 DirectoryString (RFC
844
+ // 5280), as described in |i2d_SAMPLE|.
845
+ OPENSSL_EXPORT int i2d_DIRECTORYSTRING(const ASN1_STRING *in, uint8_t **outp);
846
+
847
+ // DIRECTORYSTRING is an |ASN1_ITEM| whose ASN.1 type is X.509 DirectoryString
848
+ // (RFC 5280) and C type is |ASN1_STRING*|.
849
+ DECLARE_ASN1_ITEM(DIRECTORYSTRING)
850
+
851
+ // B_ASN1_DISPLAYTEXT is a bitmask of types allowed in an X.509 DisplayText (RFC
852
+ // 5280).
853
+ #define B_ASN1_DISPLAYTEXT \
854
+ (B_ASN1_IA5STRING | B_ASN1_VISIBLESTRING | B_ASN1_BMPSTRING | \
855
+ B_ASN1_UTF8STRING)
856
+
857
+ // DISPLAYTEXT_new returns a newly-allocated |ASN1_STRING| with type -1, or NULL
858
+ // on error. The resulting |ASN1_STRING| is not a valid X.509 DisplayText until
859
+ // initialized with a value.
860
+ OPENSSL_EXPORT ASN1_STRING *DISPLAYTEXT_new(void);
861
+
862
+ // DISPLAYTEXT_free calls |ASN1_STRING_free|.
863
+ OPENSSL_EXPORT void DISPLAYTEXT_free(ASN1_STRING *str);
864
+
865
+ // d2i_DISPLAYTEXT parses up to |len| bytes from |*inp| as a DER-encoded X.509
866
+ // DisplayText (RFC 5280), as described in |d2i_SAMPLE_with_reuse|.
867
+ //
868
+ // TODO(https://crbug.com/boringssl/354): This function currently also accepts
869
+ // BER, but this will be removed in the future.
870
+ //
871
+ // TODO(https://crbug.com/boringssl/449): DisplayText's size limits are not
872
+ // currently enforced.
873
+ OPENSSL_EXPORT ASN1_STRING *d2i_DISPLAYTEXT(ASN1_STRING **out,
874
+ const uint8_t **inp, long len);
875
+
876
+ // i2d_DISPLAYTEXT marshals |in| as a DER-encoded X.509 DisplayText (RFC 5280),
877
+ // as described in |i2d_SAMPLE|.
878
+ OPENSSL_EXPORT int i2d_DISPLAYTEXT(const ASN1_STRING *in, uint8_t **outp);
879
+
880
+ // DISPLAYTEXT is an |ASN1_ITEM| whose ASN.1 type is X.509 DisplayText (RFC
881
+ // 5280) and C type is |ASN1_STRING*|.
882
+ DECLARE_ASN1_ITEM(DISPLAYTEXT)
883
+
884
+
885
+ // Bit strings.
886
+ //
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);
979
+
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);
995
+
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);
999
+
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);
1007
+
1008
+
1009
+ // Integers and enumerated values.
1010
+ //
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.
359
1017
 
360
- #define ASN1_STRFLGS_ESC_2253 1
361
- #define ASN1_STRFLGS_ESC_CTRL 2
362
- #define ASN1_STRFLGS_ESC_MSB 4
1018
+ DEFINE_STACK_OF(ASN1_INTEGER)
363
1019
 
1020
+ // ASN1_INTEGER_new calls |ASN1_STRING_type_new| with |V_ASN1_INTEGER|. The
1021
+ // resulting object has value zero.
1022
+ OPENSSL_EXPORT ASN1_INTEGER *ASN1_INTEGER_new(void);
1023
+
1024
+ // ASN1_INTEGER_free calls |ASN1_STRING_free|.
1025
+ OPENSSL_EXPORT void ASN1_INTEGER_free(ASN1_INTEGER *str);
1026
+
1027
+ // ASN1_INTEGER_dup calls |ASN1_STRING_dup|.
1028
+ OPENSSL_EXPORT ASN1_INTEGER *ASN1_INTEGER_dup(const ASN1_INTEGER *x);
1029
+
1030
+ // d2i_ASN1_INTEGER parses up to |len| bytes from |*inp| as a DER-encoded
1031
+ // ASN.1 INTEGER, as described in |d2i_SAMPLE_with_reuse|.
1032
+ //
1033
+ // TODO(https://crbug.com/boringssl/354): This function currently also accepts
1034
+ // BER, but this will be removed in the future.
1035
+ OPENSSL_EXPORT ASN1_INTEGER *d2i_ASN1_INTEGER(ASN1_INTEGER **out,
1036
+ const uint8_t **inp, long len);
1037
+
1038
+ // i2d_ASN1_INTEGER marshals |in| as a DER-encoded ASN.1 INTEGER, as
1039
+ // described in |i2d_SAMPLE|.
1040
+ OPENSSL_EXPORT int i2d_ASN1_INTEGER(const ASN1_INTEGER *in, uint8_t **outp);
1041
+
1042
+ // c2i_ASN1_INTEGER decodes |len| bytes from |*inp| as the contents of a
1043
+ // DER-encoded INTEGER, excluding the tag and length. It behaves like
1044
+ // |d2i_SAMPLE_with_reuse| except, on success, it always consumes all |len|
1045
+ // bytes.
1046
+ //
1047
+ // TODO(https://crbug.com/boringssl/354): This function currently also accepts
1048
+ // some invalid inputs, but this will be removed in the future.
1049
+ OPENSSL_EXPORT ASN1_INTEGER *c2i_ASN1_INTEGER(ASN1_INTEGER **in,
1050
+ const uint8_t **outp, long len);
1051
+
1052
+ // i2c_ASN1_INTEGER encodes |in| as the contents of a DER-encoded INTEGER,
1053
+ // excluding the tag and length. If |outp| is non-NULL, it writes the result to
1054
+ // |*outp|, advances |*outp| just past the output, and returns the number of
1055
+ // bytes written. |*outp| must have space available for the result. If |outp| is
1056
+ // NULL, it returns the number of bytes without writing anything. On error, it
1057
+ // returns a value <= 0.
1058
+ //
1059
+ // Note this function differs slightly from |i2d_SAMPLE|. If |outp| is non-NULL
1060
+ // and |*outp| is NULL, it does not allocate a new buffer.
1061
+ //
1062
+ // TODO(davidben): This function currently returns zero on error instead of -1,
1063
+ // but it is also mostly infallible. I've currently documented <= 0 to suggest
1064
+ // callers work with both.
1065
+ OPENSSL_EXPORT int i2c_ASN1_INTEGER(const ASN1_INTEGER *in, uint8_t **outp);
1066
+
1067
+ // ASN1_INTEGER is an |ASN1_ITEM| with ASN.1 type INTEGER and C type
1068
+ // |ASN1_INTEGER*|.
1069
+ DECLARE_ASN1_ITEM(ASN1_INTEGER)
1070
+
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);
364
1074
 
365
- /* This flag determines how we do escaping: normally
366
- * RC2253 backslash only, set this to use backslash and
367
- * quote.
368
- */
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);
369
1078
 
370
- #define ASN1_STRFLGS_ESC_QUOTE 8
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);
371
1082
 
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);
1089
+
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);
1094
+
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);
1100
+
1101
+ // ASN1_ENUMERATED_new calls |ASN1_STRING_type_new| with |V_ASN1_ENUMERATED|.
1102
+ // The resulting object has value zero.
1103
+ OPENSSL_EXPORT ASN1_ENUMERATED *ASN1_ENUMERATED_new(void);
1104
+
1105
+ // ASN1_ENUMERATED_free calls |ASN1_STRING_free|.
1106
+ OPENSSL_EXPORT void ASN1_ENUMERATED_free(ASN1_ENUMERATED *str);
1107
+
1108
+ // d2i_ASN1_ENUMERATED parses up to |len| bytes from |*inp| as a DER-encoded
1109
+ // ASN.1 ENUMERATED, as described in |d2i_SAMPLE_with_reuse|.
1110
+ //
1111
+ // TODO(https://crbug.com/boringssl/354): This function currently also accepts
1112
+ // BER, but this will be removed in the future.
1113
+ OPENSSL_EXPORT ASN1_ENUMERATED *d2i_ASN1_ENUMERATED(ASN1_ENUMERATED **out,
1114
+ const uint8_t **inp,
1115
+ long len);
1116
+
1117
+ // i2d_ASN1_ENUMERATED marshals |in| as a DER-encoded ASN.1 ENUMERATED, as
1118
+ // described in |i2d_SAMPLE|.
1119
+ OPENSSL_EXPORT int i2d_ASN1_ENUMERATED(const ASN1_ENUMERATED *in,
1120
+ uint8_t **outp);
1121
+
1122
+ // ASN1_ENUMERATED is an |ASN1_ITEM| with ASN.1 type ENUMERATED and C type
1123
+ // |ASN1_ENUMERATED*|.
1124
+ DECLARE_ASN1_ITEM(ASN1_ENUMERATED)
1125
+
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);
372
1129
 
373
- /* These three flags are internal use only. */
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);
1133
+
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);
1140
+
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);
1146
+
1147
+
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.
1165
+
1166
+ // ASN1_UTCTIME_new calls |ASN1_STRING_type_new| with |V_ASN1_UTCTIME|. The
1167
+ // resulting object contains empty contents and must be initialized to be a
1168
+ // valid UTCTime.
1169
+ OPENSSL_EXPORT ASN1_UTCTIME *ASN1_UTCTIME_new(void);
1170
+
1171
+ // ASN1_UTCTIME_free calls |ASN1_STRING_free|.
1172
+ OPENSSL_EXPORT void ASN1_UTCTIME_free(ASN1_UTCTIME *str);
1173
+
1174
+ // d2i_ASN1_UTCTIME parses up to |len| bytes from |*inp| as a DER-encoded
1175
+ // ASN.1 UTCTime, as described in |d2i_SAMPLE_with_reuse|.
1176
+ //
1177
+ // TODO(https://crbug.com/boringssl/354): This function currently also accepts
1178
+ // BER, but this will be removed in the future.
1179
+ OPENSSL_EXPORT ASN1_UTCTIME *d2i_ASN1_UTCTIME(ASN1_UTCTIME **out,
1180
+ const uint8_t **inp, long len);
1181
+
1182
+ // i2d_ASN1_UTCTIME marshals |in| as a DER-encoded ASN.1 UTCTime, as
1183
+ // described in |i2d_SAMPLE|.
1184
+ OPENSSL_EXPORT int i2d_ASN1_UTCTIME(const ASN1_UTCTIME *in, uint8_t **outp);
1185
+
1186
+ // ASN1_UTCTIME is an |ASN1_ITEM| with ASN.1 type UTCTime and C type
1187
+ // |ASN1_UTCTIME*|.
1188
+ DECLARE_ASN1_ITEM(ASN1_UTCTIME)
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);
374
1192
 
375
- /* Character is a valid PrintableString character */
376
- #define CHARTYPE_PRINTABLESTRING 0x10
377
- /* Character needs escaping if it is the first character */
378
- #define CHARTYPE_FIRST_ESC_2253 0x20
379
- /* Character needs escaping if it is the last character */
380
- #define CHARTYPE_LAST_ESC_2253 0x40
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.
1196
+ //
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.
1203
+ //
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);
381
1215
 
382
- /* NB the internal flags are safely reused below by flags
383
- * handled at the top level.
384
- */
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);
385
1219
 
386
- /* If this is set we convert all character strings
387
- * to UTF8 first
388
- */
1220
+ // ASN1_GENERALIZEDTIME_new calls |ASN1_STRING_type_new| with
1221
+ // |V_ASN1_GENERALIZEDTIME|. The resulting object contains empty contents and
1222
+ // must be initialized to be a valid GeneralizedTime.
1223
+ OPENSSL_EXPORT ASN1_GENERALIZEDTIME *ASN1_GENERALIZEDTIME_new(void);
1224
+
1225
+ // ASN1_GENERALIZEDTIME_free calls |ASN1_STRING_free|.
1226
+ OPENSSL_EXPORT void ASN1_GENERALIZEDTIME_free(ASN1_GENERALIZEDTIME *str);
1227
+
1228
+ // d2i_ASN1_GENERALIZEDTIME parses up to |len| bytes from |*inp| as a
1229
+ // DER-encoded ASN.1 GeneralizedTime, as described in |d2i_SAMPLE_with_reuse|.
1230
+ //
1231
+ // TODO(https://crbug.com/boringssl/354): This function currently also accepts
1232
+ // BER, but this will be removed in the future.
1233
+ OPENSSL_EXPORT ASN1_GENERALIZEDTIME *d2i_ASN1_GENERALIZEDTIME(
1234
+ ASN1_GENERALIZEDTIME **out, const uint8_t **inp, long len);
1235
+
1236
+ // i2d_ASN1_GENERALIZEDTIME marshals |in| as a DER-encoded ASN.1
1237
+ // GeneralizedTime, as described in |i2d_SAMPLE|.
1238
+ OPENSSL_EXPORT int i2d_ASN1_GENERALIZEDTIME(const ASN1_GENERALIZEDTIME *in,
1239
+ uint8_t **outp);
1240
+
1241
+ // ASN1_GENERALIZEDTIME is an |ASN1_ITEM| with ASN.1 type GeneralizedTime and C
1242
+ // type |ASN1_GENERALIZEDTIME*|.
1243
+ DECLARE_ASN1_ITEM(ASN1_GENERALIZEDTIME)
1244
+
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);
389
1248
 
390
- #define ASN1_STRFLGS_UTF8_CONVERT 0x10
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.
1261
+ //
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.
1270
+ //
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|.
1288
+ //
1289
+ // TODO(https://crbug.com/boringssl/354): This function currently also accepts
1290
+ // BER, but this will be removed in the future.
1291
+ OPENSSL_EXPORT ASN1_TIME *d2i_ASN1_TIME(ASN1_TIME **out, const uint8_t **inp,
1292
+ long len);
1293
+
1294
+ // i2d_ASN1_TIME marshals |in| as a DER-encoded X.509 Time (RFC 5280), as
1295
+ // described in |i2d_SAMPLE|.
1296
+ OPENSSL_EXPORT int i2d_ASN1_TIME(const ASN1_TIME *in, uint8_t **outp);
1297
+
1298
+ // ASN1_TIME is an |ASN1_ITEM| whose ASN.1 type is X.509 Time (RFC 5280) and C
1299
+ // type is |ASN1_TIME*|.
1300
+ DECLARE_ASN1_ITEM(ASN1_TIME)
1301
+
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.
1305
+ //
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.
1309
+ //
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.
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);
1322
+
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);
1333
+
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);
1338
+
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);
1346
+
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);
391
1351
 
392
- /* If this is set we don't attempt to interpret content:
393
- * just assume all strings are 1 byte per character. This
394
- * will produce some pretty odd looking output!
395
- */
1352
+ // TODO(davidben): Expand and document function prototypes generated in macros.
396
1353
 
397
- #define ASN1_STRFLGS_IGNORE_TYPE 0x20
398
1354
 
399
- /* If this is set we include the string type in the output */
400
- #define ASN1_STRFLGS_SHOW_TYPE 0x40
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.
401
1361
 
402
- /* This determines which strings to display and which to
403
- * 'dump' (hex dump of content octets or DER encoding). We can
404
- * only dump non character strings or everything. If we
405
- * don't dump 'unknown' they are interpreted as character
406
- * strings with 1 octet per character and are subject to
407
- * the usual escaping options.
408
- */
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);
409
1365
 
410
- #define ASN1_STRFLGS_DUMP_ALL 0x80
411
- #define ASN1_STRFLGS_DUMP_UNKNOWN 0x100
1366
+ // ASN1_NULL_free does nothing.
1367
+ OPENSSL_EXPORT void ASN1_NULL_free(ASN1_NULL *null);
412
1368
 
413
- /* These determine what 'dumping' does, we can dump the
414
- * content octets or the DER encoding: both use the
415
- * RFC2253 #XXXXX notation.
416
- */
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);
417
1376
 
418
- #define ASN1_STRFLGS_DUMP_DER 0x200
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);
419
1380
 
420
- /* All the string flags consistent with RFC2253,
421
- * escaping control characters isn't essential in
422
- * RFC2253 but it is advisable anyway.
423
- */
1381
+ // ASN1_NULL is an |ASN1_ITEM| with ASN.1 type NULL and C type |ASN1_NULL*|.
1382
+ DECLARE_ASN1_ITEM(ASN1_NULL)
424
1383
 
425
- #define ASN1_STRFLGS_RFC2253 (ASN1_STRFLGS_ESC_2253 | \
426
- ASN1_STRFLGS_ESC_CTRL | \
427
- ASN1_STRFLGS_ESC_MSB | \
428
- ASN1_STRFLGS_UTF8_CONVERT | \
429
- ASN1_STRFLGS_DUMP_UNKNOWN | \
430
- ASN1_STRFLGS_DUMP_DER)
431
1384
 
432
- DEFINE_STACK_OF(ASN1_INTEGER)
433
- DECLARE_ASN1_SET_OF(ASN1_INTEGER)
434
-
435
- struct asn1_type_st
436
- {
437
- int type;
438
- union {
439
- char *ptr;
440
- ASN1_BOOLEAN boolean;
441
- ASN1_STRING * asn1_string;
442
- ASN1_OBJECT * object;
443
- ASN1_INTEGER * integer;
444
- ASN1_ENUMERATED * enumerated;
445
- ASN1_BIT_STRING * bit_string;
446
- ASN1_OCTET_STRING * octet_string;
447
- ASN1_PRINTABLESTRING * printablestring;
448
- ASN1_T61STRING * t61string;
449
- ASN1_IA5STRING * ia5string;
450
- ASN1_GENERALSTRING * generalstring;
451
- ASN1_BMPSTRING * bmpstring;
452
- ASN1_UNIVERSALSTRING * universalstring;
453
- ASN1_UTCTIME * utctime;
454
- ASN1_GENERALIZEDTIME * generalizedtime;
455
- ASN1_VISIBLESTRING * visiblestring;
456
- ASN1_UTF8STRING * utf8string;
457
- /* set and sequence are left complete and still
458
- * contain the set or sequence bytes */
459
- ASN1_STRING * set;
460
- ASN1_STRING * sequence;
461
- ASN1_VALUE * asn1_value;
462
- } value;
463
- };
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.
464
1393
 
465
- DEFINE_STACK_OF(ASN1_TYPE)
466
- DECLARE_ASN1_SET_OF(ASN1_TYPE)
1394
+ DEFINE_STACK_OF(ASN1_OBJECT)
467
1395
 
468
- typedef STACK_OF(ASN1_TYPE) ASN1_SEQUENCE_ANY;
1396
+ // ASN1_OBJECT_create returns a newly-allocated |ASN1_OBJECT| with |len| bytes
1397
+ // from |data| as the encoded OID, or NULL on error. |data| should contain the
1398
+ // DER-encoded identifier, excluding the tag and length.
1399
+ //
1400
+ // |nid| should be |NID_undef|. Passing a NID value that does not match |data|
1401
+ // will cause some functions to misbehave. |sn| and |ln| should be NULL. If
1402
+ // non-NULL, they are stored as short and long names, respectively, but these
1403
+ // values have no effect for |ASN1_OBJECT|s created through this function.
1404
+ //
1405
+ // TODO(davidben): Should we just ignore all those parameters? NIDs and names
1406
+ // are only relevant for |ASN1_OBJECT|s in the obj.h table.
1407
+ OPENSSL_EXPORT ASN1_OBJECT *ASN1_OBJECT_create(int nid, const uint8_t *data,
1408
+ int len, const char *sn,
1409
+ const char *ln);
1410
+
1411
+ // ASN1_OBJECT_free releases memory associated with |a|. If |a| is a static
1412
+ // |ASN1_OBJECT|, returned from |OBJ_nid2obj|, this function does nothing.
1413
+ OPENSSL_EXPORT void ASN1_OBJECT_free(ASN1_OBJECT *a);
1414
+
1415
+ // d2i_ASN1_OBJECT parses a DER-encoded ASN.1 OBJECT IDENTIFIER from up to |len|
1416
+ // bytes at |*inp|, as described in |d2i_SAMPLE_with_reuse|.
1417
+ //
1418
+ // TODO(https://crbug.com/boringssl/354): This function currently also accepts
1419
+ // BER, but this will be removed in the future.
1420
+ OPENSSL_EXPORT ASN1_OBJECT *d2i_ASN1_OBJECT(ASN1_OBJECT **out,
1421
+ const uint8_t **inp, long len);
1422
+
1423
+ // i2d_ASN1_OBJECT marshals |in| as a DER-encoded ASN.1 OBJECT IDENTIFIER, as
1424
+ // described in |i2d_SAMPLE|.
1425
+ OPENSSL_EXPORT int i2d_ASN1_OBJECT(const ASN1_OBJECT *a, uint8_t **outp);
1426
+
1427
+ // c2i_ASN1_OBJECT decodes |len| bytes from |*inp| as the contents of a
1428
+ // DER-encoded OBJECT IDENTIFIER, excluding the tag and length. It behaves like
1429
+ // |d2i_SAMPLE_with_reuse| except, on success, it always consumes all |len|
1430
+ // bytes.
1431
+ OPENSSL_EXPORT ASN1_OBJECT *c2i_ASN1_OBJECT(ASN1_OBJECT **out,
1432
+ const uint8_t **inp, long len);
1433
+
1434
+ // ASN1_OBJECT is an |ASN1_ITEM| with ASN.1 type OBJECT IDENTIFIER and C type
1435
+ // |ASN1_OBJECT*|.
1436
+ DECLARE_ASN1_ITEM(ASN1_OBJECT)
469
1437
 
470
- DECLARE_ASN1_ENCODE_FUNCTIONS_const(ASN1_SEQUENCE_ANY, ASN1_SEQUENCE_ANY)
471
- DECLARE_ASN1_ENCODE_FUNCTIONS_const(ASN1_SEQUENCE_ANY, ASN1_SET_ANY)
472
-
473
- struct X509_algor_st
474
- {
475
- ASN1_OBJECT *algorithm;
476
- ASN1_TYPE *parameter;
477
- } /* X509_ALGOR */;
478
-
479
- DECLARE_ASN1_FUNCTIONS(X509_ALGOR)
480
-
481
- /* This is used to contain a list of bit names */
482
- typedef struct BIT_STRING_BITNAME_st {
483
- int bitnum;
484
- const char *lname;
485
- const char *sname;
486
- } BIT_STRING_BITNAME;
487
-
488
-
489
- #define M_ASN1_STRING_length(x) ((x)->length)
490
- #define M_ASN1_STRING_length_set(x, n) ((x)->length = (n))
491
- #define M_ASN1_STRING_type(x) ((x)->type)
492
- #define M_ASN1_STRING_data(x) ((x)->data)
493
-
494
- /* Macros for string operations */
495
- #define M_ASN1_BIT_STRING_new() (ASN1_BIT_STRING *)\
496
- ASN1_STRING_type_new(V_ASN1_BIT_STRING)
497
- #define M_ASN1_BIT_STRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
498
- #define M_ASN1_BIT_STRING_dup(a) (ASN1_BIT_STRING *)\
499
- ASN1_STRING_dup((const ASN1_STRING *)a)
500
- #define M_ASN1_BIT_STRING_cmp(a,b) ASN1_STRING_cmp(\
501
- (const ASN1_STRING *)a,(const ASN1_STRING *)b)
502
- #define M_ASN1_BIT_STRING_set(a,b,c) ASN1_STRING_set((ASN1_STRING *)a,b,c)
503
-
504
- #define M_ASN1_INTEGER_new() (ASN1_INTEGER *)\
505
- ASN1_STRING_type_new(V_ASN1_INTEGER)
506
- #define M_ASN1_INTEGER_free(a) ASN1_STRING_free((ASN1_STRING *)a)
507
- #define M_ASN1_INTEGER_dup(a) (ASN1_INTEGER *)\
508
- ASN1_STRING_dup((const ASN1_STRING *)a)
509
- #define M_ASN1_INTEGER_cmp(a,b) ASN1_STRING_cmp(\
510
- (const ASN1_STRING *)a,(const ASN1_STRING *)b)
511
-
512
- #define M_ASN1_ENUMERATED_new() (ASN1_ENUMERATED *)\
513
- ASN1_STRING_type_new(V_ASN1_ENUMERATED)
514
- #define M_ASN1_ENUMERATED_free(a) ASN1_STRING_free((ASN1_STRING *)a)
515
- #define M_ASN1_ENUMERATED_dup(a) (ASN1_ENUMERATED *)\
516
- ASN1_STRING_dup((const ASN1_STRING *)a)
517
- #define M_ASN1_ENUMERATED_cmp(a,b) ASN1_STRING_cmp(\
518
- (const ASN1_STRING *)a,(const ASN1_STRING *)b)
519
-
520
- #define M_ASN1_OCTET_STRING_new() (ASN1_OCTET_STRING *)\
521
- ASN1_STRING_type_new(V_ASN1_OCTET_STRING)
522
- #define M_ASN1_OCTET_STRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
523
- #define M_ASN1_OCTET_STRING_dup(a) (ASN1_OCTET_STRING *)\
524
- ASN1_STRING_dup((const ASN1_STRING *)a)
525
- #define M_ASN1_OCTET_STRING_cmp(a,b) ASN1_STRING_cmp(\
526
- (const ASN1_STRING *)a,(const ASN1_STRING *)b)
527
- #define M_ASN1_OCTET_STRING_set(a,b,c) ASN1_STRING_set((ASN1_STRING *)a,b,c)
528
- #define M_ASN1_OCTET_STRING_print(a,b) ASN1_STRING_print(a,(ASN1_STRING *)b)
529
-
530
- #define B_ASN1_TIME \
531
- B_ASN1_UTCTIME | \
532
- B_ASN1_GENERALIZEDTIME
533
-
534
- #define B_ASN1_PRINTABLE \
535
- B_ASN1_NUMERICSTRING| \
536
- B_ASN1_PRINTABLESTRING| \
537
- B_ASN1_T61STRING| \
538
- B_ASN1_IA5STRING| \
539
- B_ASN1_BIT_STRING| \
540
- B_ASN1_UNIVERSALSTRING|\
541
- B_ASN1_BMPSTRING|\
542
- B_ASN1_UTF8STRING|\
543
- B_ASN1_SEQUENCE|\
544
- B_ASN1_UNKNOWN
545
-
546
- #define B_ASN1_DIRECTORYSTRING \
547
- B_ASN1_PRINTABLESTRING| \
548
- B_ASN1_TELETEXSTRING|\
549
- B_ASN1_BMPSTRING|\
550
- B_ASN1_UNIVERSALSTRING|\
551
- B_ASN1_UTF8STRING
552
-
553
- #define B_ASN1_DISPLAYTEXT \
554
- B_ASN1_IA5STRING| \
555
- B_ASN1_VISIBLESTRING| \
556
- B_ASN1_BMPSTRING|\
557
- B_ASN1_UTF8STRING
558
-
559
- #define M_ASN1_PRINTABLE_new() ASN1_STRING_type_new(V_ASN1_T61STRING)
560
- #define M_ASN1_PRINTABLE_free(a) ASN1_STRING_free((ASN1_STRING *)a)
561
-
562
- #define M_DIRECTORYSTRING_new() ASN1_STRING_type_new(V_ASN1_PRINTABLESTRING)
563
- #define M_DIRECTORYSTRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
564
-
565
- #define M_DISPLAYTEXT_new() ASN1_STRING_type_new(V_ASN1_VISIBLESTRING)
566
- #define M_DISPLAYTEXT_free(a) ASN1_STRING_free((ASN1_STRING *)a)
567
-
568
- #define M_ASN1_PRINTABLESTRING_new() (ASN1_PRINTABLESTRING *)\
569
- ASN1_STRING_type_new(V_ASN1_PRINTABLESTRING)
570
- #define M_ASN1_PRINTABLESTRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
571
-
572
- #define M_ASN1_T61STRING_new() (ASN1_T61STRING *)\
573
- ASN1_STRING_type_new(V_ASN1_T61STRING)
574
- #define M_ASN1_T61STRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
575
-
576
- #define M_ASN1_IA5STRING_new() (ASN1_IA5STRING *)\
577
- ASN1_STRING_type_new(V_ASN1_IA5STRING)
578
- #define M_ASN1_IA5STRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
579
- #define M_ASN1_IA5STRING_dup(a) \
580
- (ASN1_IA5STRING *)ASN1_STRING_dup((const ASN1_STRING *)a)
581
-
582
- #define M_ASN1_UTCTIME_new() (ASN1_UTCTIME *)\
583
- ASN1_STRING_type_new(V_ASN1_UTCTIME)
584
- #define M_ASN1_UTCTIME_free(a) ASN1_STRING_free((ASN1_STRING *)a)
585
- #define M_ASN1_UTCTIME_dup(a) (ASN1_UTCTIME *)\
586
- ASN1_STRING_dup((const ASN1_STRING *)a)
587
-
588
- #define M_ASN1_GENERALIZEDTIME_new() (ASN1_GENERALIZEDTIME *)\
589
- ASN1_STRING_type_new(V_ASN1_GENERALIZEDTIME)
590
- #define M_ASN1_GENERALIZEDTIME_free(a) ASN1_STRING_free((ASN1_STRING *)a)
591
- #define M_ASN1_GENERALIZEDTIME_dup(a) (ASN1_GENERALIZEDTIME *)ASN1_STRING_dup(\
592
- (const ASN1_STRING *)a)
593
-
594
- #define M_ASN1_TIME_new() (ASN1_TIME *)\
595
- ASN1_STRING_type_new(V_ASN1_UTCTIME)
596
- #define M_ASN1_TIME_free(a) ASN1_STRING_free((ASN1_STRING *)a)
597
- #define M_ASN1_TIME_dup(a) (ASN1_TIME *)\
598
- ASN1_STRING_dup((const ASN1_STRING *)a)
599
-
600
- #define M_ASN1_GENERALSTRING_new() (ASN1_GENERALSTRING *)\
601
- ASN1_STRING_type_new(V_ASN1_GENERALSTRING)
602
- #define M_ASN1_GENERALSTRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
603
-
604
- #define M_ASN1_UNIVERSALSTRING_new() (ASN1_UNIVERSALSTRING *)\
605
- ASN1_STRING_type_new(V_ASN1_UNIVERSALSTRING)
606
- #define M_ASN1_UNIVERSALSTRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
607
-
608
- #define M_ASN1_BMPSTRING_new() (ASN1_BMPSTRING *)\
609
- ASN1_STRING_type_new(V_ASN1_BMPSTRING)
610
- #define M_ASN1_BMPSTRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
611
-
612
- #define M_ASN1_VISIBLESTRING_new() (ASN1_VISIBLESTRING *)\
613
- ASN1_STRING_type_new(V_ASN1_VISIBLESTRING)
614
- #define M_ASN1_VISIBLESTRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
615
-
616
- #define M_ASN1_UTF8STRING_new() (ASN1_UTF8STRING *)\
617
- ASN1_STRING_type_new(V_ASN1_UTF8STRING)
618
- #define M_ASN1_UTF8STRING_free(a) ASN1_STRING_free((ASN1_STRING *)a)
619
-
620
- DECLARE_ASN1_FUNCTIONS_fname(ASN1_TYPE, ASN1_ANY, ASN1_TYPE)
621
-
622
- OPENSSL_EXPORT int ASN1_TYPE_get(ASN1_TYPE *a);
623
- OPENSSL_EXPORT void ASN1_TYPE_set(ASN1_TYPE *a, int type, void *value);
624
- OPENSSL_EXPORT int ASN1_TYPE_set1(ASN1_TYPE *a, int type, const void *value);
625
- OPENSSL_EXPORT int ASN1_TYPE_cmp(const ASN1_TYPE *a, const ASN1_TYPE *b);
626
1438
 
627
- OPENSSL_EXPORT ASN1_OBJECT * ASN1_OBJECT_new(void );
628
- OPENSSL_EXPORT void ASN1_OBJECT_free(ASN1_OBJECT *a);
629
- OPENSSL_EXPORT int i2d_ASN1_OBJECT(ASN1_OBJECT *a,unsigned char **pp);
630
- OPENSSL_EXPORT ASN1_OBJECT * c2i_ASN1_OBJECT(ASN1_OBJECT **a,const unsigned char **pp,
631
- long length);
632
- OPENSSL_EXPORT ASN1_OBJECT * d2i_ASN1_OBJECT(ASN1_OBJECT **a,const unsigned char **pp,
633
- long length);
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
+ };
634
1508
 
635
- DECLARE_ASN1_ITEM(ASN1_OBJECT)
1509
+ DEFINE_STACK_OF(ASN1_TYPE)
636
1510
 
637
- DECLARE_ASN1_SET_OF(ASN1_OBJECT)
638
-
639
- OPENSSL_EXPORT ASN1_STRING * ASN1_STRING_new(void);
640
- OPENSSL_EXPORT void ASN1_STRING_free(ASN1_STRING *a);
641
- OPENSSL_EXPORT int ASN1_STRING_copy(ASN1_STRING *dst, const ASN1_STRING *str);
642
- OPENSSL_EXPORT ASN1_STRING * ASN1_STRING_dup(const ASN1_STRING *a);
643
- OPENSSL_EXPORT ASN1_STRING * ASN1_STRING_type_new(int type );
644
- OPENSSL_EXPORT int ASN1_STRING_cmp(const ASN1_STRING *a, const ASN1_STRING *b);
645
- /* Since this is used to store all sorts of things, via macros, for now, make
646
- its data void * */
647
- OPENSSL_EXPORT int ASN1_STRING_set(ASN1_STRING *str, const void *data, int len);
648
- OPENSSL_EXPORT void ASN1_STRING_set0(ASN1_STRING *str, void *data, int len);
649
- OPENSSL_EXPORT int ASN1_STRING_length(const ASN1_STRING *x);
650
- OPENSSL_EXPORT void ASN1_STRING_length_set(ASN1_STRING *x, int n);
651
- OPENSSL_EXPORT int ASN1_STRING_type(ASN1_STRING *x);
652
- OPENSSL_EXPORT unsigned char * ASN1_STRING_data(ASN1_STRING *x);
653
- OPENSSL_EXPORT const unsigned char *ASN1_STRING_get0_data(const ASN1_STRING *x);
654
-
655
- DECLARE_ASN1_FUNCTIONS(ASN1_BIT_STRING)
656
- OPENSSL_EXPORT int i2c_ASN1_BIT_STRING(ASN1_BIT_STRING *a,unsigned char **pp);
657
- OPENSSL_EXPORT ASN1_BIT_STRING *c2i_ASN1_BIT_STRING(ASN1_BIT_STRING **a,const unsigned char **pp, long length);
658
- OPENSSL_EXPORT int ASN1_BIT_STRING_set(ASN1_BIT_STRING *a, unsigned char *d, int length );
659
- OPENSSL_EXPORT int ASN1_BIT_STRING_set_bit(ASN1_BIT_STRING *a, int n, int value);
660
- OPENSSL_EXPORT int ASN1_BIT_STRING_get_bit(ASN1_BIT_STRING *a, int n);
661
- OPENSSL_EXPORT int ASN1_BIT_STRING_check(ASN1_BIT_STRING *a, unsigned char *flags, int flags_len);
662
-
663
- OPENSSL_EXPORT int i2d_ASN1_BOOLEAN(int a,unsigned char **pp);
664
- OPENSSL_EXPORT int d2i_ASN1_BOOLEAN(int *a,const unsigned char **pp,long length);
665
-
666
- DECLARE_ASN1_FUNCTIONS(ASN1_INTEGER)
667
- OPENSSL_EXPORT int i2c_ASN1_INTEGER(ASN1_INTEGER *a,unsigned char **pp);
668
- OPENSSL_EXPORT ASN1_INTEGER *c2i_ASN1_INTEGER(ASN1_INTEGER **a,const unsigned char **pp, long length);
669
- OPENSSL_EXPORT ASN1_INTEGER * ASN1_INTEGER_dup(const ASN1_INTEGER *x);
670
- OPENSSL_EXPORT int ASN1_INTEGER_cmp(const ASN1_INTEGER *x, const ASN1_INTEGER *y);
671
-
672
- DECLARE_ASN1_FUNCTIONS(ASN1_ENUMERATED)
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);
673
1554
 
674
- OPENSSL_EXPORT int ASN1_UTCTIME_check(const ASN1_UTCTIME *a);
675
- OPENSSL_EXPORT ASN1_UTCTIME *ASN1_UTCTIME_set(ASN1_UTCTIME *s,time_t t);
676
- OPENSSL_EXPORT ASN1_UTCTIME *ASN1_UTCTIME_adj(ASN1_UTCTIME *s, time_t t, int offset_day, long offset_sec);
677
- OPENSSL_EXPORT int ASN1_UTCTIME_set_string(ASN1_UTCTIME *s, const char *str);
678
- OPENSSL_EXPORT int ASN1_UTCTIME_cmp_time_t(const ASN1_UTCTIME *s, time_t t);
679
- #if 0
680
- time_t ASN1_UTCTIME_get(const ASN1_UTCTIME *s);
681
- #endif
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);
682
1558
 
683
- OPENSSL_EXPORT int ASN1_GENERALIZEDTIME_check(const ASN1_GENERALIZEDTIME *a);
684
- OPENSSL_EXPORT ASN1_GENERALIZEDTIME *ASN1_GENERALIZEDTIME_set(ASN1_GENERALIZEDTIME *s,time_t t);
685
- OPENSSL_EXPORT ASN1_GENERALIZEDTIME *ASN1_GENERALIZEDTIME_adj(ASN1_GENERALIZEDTIME *s, time_t t, int offset_day, long offset_sec);
686
- OPENSSL_EXPORT int ASN1_GENERALIZEDTIME_set_string(ASN1_GENERALIZEDTIME *s, const char *str);
687
- OPENSSL_EXPORT int ASN1_TIME_diff(int *pday, int *psec, const ASN1_TIME *from, const ASN1_TIME *to);
688
-
689
- DECLARE_ASN1_FUNCTIONS(ASN1_OCTET_STRING)
690
- OPENSSL_EXPORT ASN1_OCTET_STRING * ASN1_OCTET_STRING_dup(const ASN1_OCTET_STRING *a);
691
- OPENSSL_EXPORT int ASN1_OCTET_STRING_cmp(const ASN1_OCTET_STRING *a, const ASN1_OCTET_STRING *b);
692
- OPENSSL_EXPORT int ASN1_OCTET_STRING_set(ASN1_OCTET_STRING *str, const unsigned char *data, int len);
693
-
694
- DECLARE_ASN1_FUNCTIONS(ASN1_VISIBLESTRING)
695
- DECLARE_ASN1_FUNCTIONS(ASN1_UNIVERSALSTRING)
696
- DECLARE_ASN1_FUNCTIONS(ASN1_UTF8STRING)
697
- DECLARE_ASN1_FUNCTIONS(ASN1_NULL)
698
- DECLARE_ASN1_FUNCTIONS(ASN1_BMPSTRING)
699
-
700
- DECLARE_ASN1_FUNCTIONS_name(ASN1_STRING, ASN1_PRINTABLE)
701
-
702
- DECLARE_ASN1_FUNCTIONS_name(ASN1_STRING, DIRECTORYSTRING)
703
- DECLARE_ASN1_FUNCTIONS_name(ASN1_STRING, DISPLAYTEXT)
704
- DECLARE_ASN1_FUNCTIONS(ASN1_PRINTABLESTRING)
705
- DECLARE_ASN1_FUNCTIONS(ASN1_T61STRING)
706
- DECLARE_ASN1_FUNCTIONS(ASN1_IA5STRING)
707
- DECLARE_ASN1_FUNCTIONS(ASN1_GENERALSTRING)
708
- DECLARE_ASN1_FUNCTIONS(ASN1_UTCTIME)
709
- DECLARE_ASN1_FUNCTIONS(ASN1_GENERALIZEDTIME)
710
- DECLARE_ASN1_FUNCTIONS(ASN1_TIME)
711
-
712
- DECLARE_ASN1_ITEM(ASN1_OCTET_STRING_NDEF)
713
-
714
- OPENSSL_EXPORT ASN1_TIME *ASN1_TIME_set(ASN1_TIME *s,time_t t);
715
- OPENSSL_EXPORT ASN1_TIME *ASN1_TIME_adj(ASN1_TIME *s,time_t t, int offset_day, long offset_sec);
716
- OPENSSL_EXPORT int ASN1_TIME_check(ASN1_TIME *t);
717
- OPENSSL_EXPORT ASN1_GENERALIZEDTIME *ASN1_TIME_to_generalizedtime(ASN1_TIME *t, ASN1_GENERALIZEDTIME **out);
718
- OPENSSL_EXPORT int ASN1_TIME_set_string(ASN1_TIME *s, const char *str);
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);
719
1563
 
720
- OPENSSL_EXPORT int i2a_ASN1_INTEGER(BIO *bp, ASN1_INTEGER *a);
721
- OPENSSL_EXPORT int i2a_ASN1_ENUMERATED(BIO *bp, ASN1_ENUMERATED *a);
722
- OPENSSL_EXPORT int i2a_ASN1_OBJECT(BIO *bp,ASN1_OBJECT *a);
723
- OPENSSL_EXPORT int i2a_ASN1_STRING(BIO *bp, ASN1_STRING *a, int type);
724
- OPENSSL_EXPORT int i2t_ASN1_OBJECT(char *buf,int buf_len,ASN1_OBJECT *a);
1564
+ typedef STACK_OF(ASN1_TYPE) ASN1_SEQUENCE_ANY;
725
1565
 
726
- OPENSSL_EXPORT ASN1_OBJECT *ASN1_OBJECT_create(int nid, unsigned char *data,int len, const char *sn, const char *ln);
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);
1622
+
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
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.
1648
+ #define ASN1_STRFLGS_IGNORE_TYPE 0x20
1649
+
1650
+ // ASN1_STRFLGS_SHOW_TYPE causes the string type to be included in the output.
1651
+ #define ASN1_STRFLGS_SHOW_TYPE 0x40
1652
+
1653
+ // ASN1_STRFLGS_DUMP_ALL causes all strings to be printed as a hexdump, using
1654
+ // RFC 2253 hexstring notation, such as "#0123456789ABCDEF".
1655
+ #define ASN1_STRFLGS_DUMP_ALL 0x80
1656
+
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
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|.
1666
+ #define ASN1_STRFLGS_DUMP_DER 0x200
1667
+
1668
+ // ASN1_STRFLGS_RFC2253 causes the string to be escaped as in RFC 2253,
1669
+ // additionally escaping control characters.
1670
+ #define ASN1_STRFLGS_RFC2253 \
1671
+ (ASN1_STRFLGS_ESC_2253 | ASN1_STRFLGS_ESC_CTRL | ASN1_STRFLGS_ESC_MSB | \
1672
+ ASN1_STRFLGS_UTF8_CONVERT | ASN1_STRFLGS_DUMP_UNKNOWN | \
1673
+ ASN1_STRFLGS_DUMP_DER)
1674
+
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);
1685
+
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);
1690
+
1691
+ // i2a_ASN1_INTEGER writes a human-readable representation of |a| to |bp|. It
1692
+ // returns the number of bytes written on success, or a negative number on
1693
+ // error. On error, this function may have written a partial output to |bp|.
1694
+ OPENSSL_EXPORT int i2a_ASN1_INTEGER(BIO *bp, const ASN1_INTEGER *a);
1695
+
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);
1705
+
1706
+ // i2a_ASN1_STRING writes a text representation of |a|'s contents to |bp|. It
1707
+ // returns the number of bytes written on success, or a negative number on
1708
+ // error. On error, this function may have written a partial output to |bp|.
1709
+ // |type| is ignored.
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);
727
1768
 
728
- OPENSSL_EXPORT int ASN1_INTEGER_set(ASN1_INTEGER *a, long v);
729
- OPENSSL_EXPORT int ASN1_INTEGER_set_uint64(ASN1_INTEGER *out, uint64_t v);
730
- OPENSSL_EXPORT long ASN1_INTEGER_get(const ASN1_INTEGER *a);
731
- OPENSSL_EXPORT ASN1_INTEGER *BN_to_ASN1_INTEGER(const BIGNUM *bn, ASN1_INTEGER *ai);
732
- OPENSSL_EXPORT BIGNUM *ASN1_INTEGER_to_BN(const ASN1_INTEGER *ai,BIGNUM *bn);
733
1769
 
734
- OPENSSL_EXPORT int ASN1_ENUMERATED_set(ASN1_ENUMERATED *a, long v);
735
- OPENSSL_EXPORT long ASN1_ENUMERATED_get(ASN1_ENUMERATED *a);
736
- OPENSSL_EXPORT ASN1_ENUMERATED *BN_to_ASN1_ENUMERATED(BIGNUM *bn, ASN1_ENUMERATED *ai);
737
- OPENSSL_EXPORT BIGNUM *ASN1_ENUMERATED_to_BN(ASN1_ENUMERATED *ai,BIGNUM *bn);
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.
738
1775
 
739
- /* General */
740
- /* given a string, return the correct type, max is the maximum length */
741
- OPENSSL_EXPORT int ASN1_PRINTABLE_type(const unsigned char *s, int max);
1776
+ #define DECLARE_ASN1_FUNCTIONS(type) DECLARE_ASN1_FUNCTIONS_name(type, type)
742
1777
 
743
- OPENSSL_EXPORT unsigned long ASN1_tag2bit(int tag);
1778
+ #define DECLARE_ASN1_ALLOC_FUNCTIONS(type) \
1779
+ DECLARE_ASN1_ALLOC_FUNCTIONS_name(type, type)
744
1780
 
745
- /* SPECIALS */
746
- OPENSSL_EXPORT int ASN1_get_object(const unsigned char **pp, long *plength, int *ptag, int *pclass, long omax);
747
- OPENSSL_EXPORT void ASN1_put_object(unsigned char **pp, int constructed, int length, int tag, int xclass);
748
- OPENSSL_EXPORT int ASN1_put_eoc(unsigned char **pp);
749
- OPENSSL_EXPORT int ASN1_object_size(int constructed, int length, int tag);
1781
+ #define DECLARE_ASN1_FUNCTIONS_name(type, name) \
1782
+ DECLARE_ASN1_ALLOC_FUNCTIONS_name(type, name) \
1783
+ DECLARE_ASN1_ENCODE_FUNCTIONS(type, name, name)
750
1784
 
751
- OPENSSL_EXPORT void *ASN1_item_dup(const ASN1_ITEM *it, void *x);
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)
752
1788
 
753
- #ifndef OPENSSL_NO_FP_API
754
- OPENSSL_EXPORT void *ASN1_item_d2i_fp(const ASN1_ITEM *it, FILE *in, void *x);
755
- OPENSSL_EXPORT int ASN1_item_i2d_fp(const ASN1_ITEM *it, FILE *out, void *x);
756
- OPENSSL_EXPORT int ASN1_STRING_print_ex_fp(FILE *fp, ASN1_STRING *str, unsigned long flags);
757
- #endif
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)
758
1794
 
759
- OPENSSL_EXPORT int ASN1_STRING_to_UTF8(unsigned char **out, ASN1_STRING *in);
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)
760
1800
 
761
- OPENSSL_EXPORT void *ASN1_item_d2i_bio(const ASN1_ITEM *it, BIO *in, void *x);
762
- OPENSSL_EXPORT int ASN1_item_i2d_bio(const ASN1_ITEM *it, BIO *out, void *x);
763
- OPENSSL_EXPORT int ASN1_UTCTIME_print(BIO *fp, const ASN1_UTCTIME *a);
764
- OPENSSL_EXPORT int ASN1_GENERALIZEDTIME_print(BIO *fp, const ASN1_GENERALIZEDTIME *a);
765
- OPENSSL_EXPORT int ASN1_TIME_print(BIO *fp, const ASN1_TIME *a);
766
- OPENSSL_EXPORT int ASN1_STRING_print(BIO *bp, const ASN1_STRING *v);
767
- OPENSSL_EXPORT int ASN1_STRING_print_ex(BIO *out, ASN1_STRING *str, unsigned long flags);
768
- OPENSSL_EXPORT const char *ASN1_tag2str(int tag);
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);
769
1808
 
770
- /* Used to load and write netscape format cert */
771
1809
 
772
- OPENSSL_EXPORT void *ASN1_item_unpack(ASN1_STRING *oct, const ASN1_ITEM *it);
1810
+ // Deprecated functions.
773
1811
 
774
- OPENSSL_EXPORT ASN1_STRING *ASN1_item_pack(void *obj, const ASN1_ITEM *it, ASN1_OCTET_STRING **oct);
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);
775
1820
 
1821
+ // ASN1_STRING_set_default_mask does nothing.
776
1822
  OPENSSL_EXPORT void ASN1_STRING_set_default_mask(unsigned long mask);
1823
+
1824
+ // ASN1_STRING_set_default_mask_asc returns one.
777
1825
  OPENSSL_EXPORT int ASN1_STRING_set_default_mask_asc(const char *p);
1826
+
1827
+ // ASN1_STRING_get_default_mask returns |B_ASN1_UTF8STRING|.
778
1828
  OPENSSL_EXPORT unsigned long ASN1_STRING_get_default_mask(void);
779
- OPENSSL_EXPORT int ASN1_mbstring_copy(ASN1_STRING **out, const unsigned char *in, int len, int inform, unsigned long mask);
780
- OPENSSL_EXPORT int ASN1_mbstring_ncopy(ASN1_STRING **out, const unsigned char *in, int len, int inform, unsigned long mask, long minsize, long maxsize);
781
1829
 
782
- OPENSSL_EXPORT ASN1_STRING *ASN1_STRING_set_by_NID(ASN1_STRING **out, const unsigned char *in, int inlen, int inform, int nid);
783
- OPENSSL_EXPORT ASN1_STRING_TABLE *ASN1_STRING_TABLE_get(int nid);
784
- OPENSSL_EXPORT int ASN1_STRING_TABLE_add(int, long, long, unsigned long, unsigned long);
1830
+ // ASN1_STRING_TABLE_cleanup does nothing.
785
1831
  OPENSSL_EXPORT void ASN1_STRING_TABLE_cleanup(void);
786
1832
 
787
- /* ASN1 template functions */
788
-
789
- /* Old API compatible functions */
790
- OPENSSL_EXPORT ASN1_VALUE *ASN1_item_new(const ASN1_ITEM *it);
791
- OPENSSL_EXPORT void ASN1_item_free(ASN1_VALUE *val, const ASN1_ITEM *it);
792
- OPENSSL_EXPORT ASN1_VALUE * ASN1_item_d2i(ASN1_VALUE **val, const unsigned char **in, long len, const ASN1_ITEM *it);
793
- OPENSSL_EXPORT int ASN1_item_i2d(ASN1_VALUE *val, unsigned char **out, const ASN1_ITEM *it);
794
- OPENSSL_EXPORT int ASN1_item_ndef_i2d(ASN1_VALUE *val, unsigned char **out, const ASN1_ITEM *it);
795
-
796
- OPENSSL_EXPORT ASN1_TYPE *ASN1_generate_nconf(char *str, CONF *nconf);
797
- OPENSSL_EXPORT ASN1_TYPE *ASN1_generate_v3(char *str, X509V3_CTX *cnf);
798
-
799
-
800
- #ifdef __cplusplus
801
- }
1833
+ // M_ASN1_* are legacy aliases for various |ASN1_STRING| functions. Use the
1834
+ // functions themselves.
1835
+ #define M_ASN1_STRING_length(x) ASN1_STRING_length(x)
1836
+ #define M_ASN1_STRING_type(x) ASN1_STRING_type(x)
1837
+ #define M_ASN1_STRING_data(x) ASN1_STRING_data(x)
1838
+ #define M_ASN1_BIT_STRING_new() ASN1_BIT_STRING_new()
1839
+ #define M_ASN1_BIT_STRING_free(a) ASN1_BIT_STRING_free(a)
1840
+ #define M_ASN1_BIT_STRING_dup(a) ASN1_STRING_dup(a)
1841
+ #define M_ASN1_BIT_STRING_cmp(a, b) ASN1_STRING_cmp(a, b)
1842
+ #define M_ASN1_BIT_STRING_set(a, b, c) ASN1_BIT_STRING_set(a, b, c)
1843
+ #define M_ASN1_INTEGER_new() ASN1_INTEGER_new()
1844
+ #define M_ASN1_INTEGER_free(a) ASN1_INTEGER_free(a)
1845
+ #define M_ASN1_INTEGER_dup(a) ASN1_INTEGER_dup(a)
1846
+ #define M_ASN1_INTEGER_cmp(a, b) ASN1_INTEGER_cmp(a, b)
1847
+ #define M_ASN1_ENUMERATED_new() ASN1_ENUMERATED_new()
1848
+ #define M_ASN1_ENUMERATED_free(a) ASN1_ENUMERATED_free(a)
1849
+ #define M_ASN1_ENUMERATED_dup(a) ASN1_STRING_dup(a)
1850
+ #define M_ASN1_ENUMERATED_cmp(a, b) ASN1_STRING_cmp(a, b)
1851
+ #define M_ASN1_OCTET_STRING_new() ASN1_OCTET_STRING_new()
1852
+ #define M_ASN1_OCTET_STRING_free(a) ASN1_OCTET_STRING_free()
1853
+ #define M_ASN1_OCTET_STRING_dup(a) ASN1_OCTET_STRING_dup(a)
1854
+ #define M_ASN1_OCTET_STRING_cmp(a, b) ASN1_OCTET_STRING_cmp(a, b)
1855
+ #define M_ASN1_OCTET_STRING_set(a, b, c) ASN1_OCTET_STRING_set(a, b, c)
1856
+ #define M_ASN1_OCTET_STRING_print(a, b) ASN1_STRING_print(a, b)
1857
+ #define M_ASN1_PRINTABLESTRING_new() ASN1_PRINTABLESTRING_new()
1858
+ #define M_ASN1_PRINTABLESTRING_free(a) ASN1_PRINTABLESTRING_free(a)
1859
+ #define M_ASN1_IA5STRING_new() ASN1_IA5STRING_new()
1860
+ #define M_ASN1_IA5STRING_free(a) ASN1_IA5STRING_free(a)
1861
+ #define M_ASN1_IA5STRING_dup(a) ASN1_STRING_dup(a)
1862
+ #define M_ASN1_UTCTIME_new() ASN1_UTCTIME_new()
1863
+ #define M_ASN1_UTCTIME_free(a) ASN1_UTCTIME_free(a)
1864
+ #define M_ASN1_UTCTIME_dup(a) ASN1_STRING_dup(a)
1865
+ #define M_ASN1_T61STRING_new() ASN1_T61STRING_new()
1866
+ #define M_ASN1_T61STRING_free(a) ASN1_T61STRING_free(a)
1867
+ #define M_ASN1_GENERALIZEDTIME_new() ASN1_GENERALIZEDTIME_new()
1868
+ #define M_ASN1_GENERALIZEDTIME_free(a) ASN1_GENERALIZEDTIME_free(a)
1869
+ #define M_ASN1_GENERALIZEDTIME_dup(a) ASN1_STRING_dup(a)
1870
+ #define M_ASN1_GENERALSTRING_new() ASN1_GENERALSTRING_new()
1871
+ #define M_ASN1_GENERALSTRING_free(a) ASN1_GENERALSTRING_free(a)
1872
+ #define M_ASN1_UNIVERSALSTRING_new() ASN1_UNIVERSALSTRING_new()
1873
+ #define M_ASN1_UNIVERSALSTRING_free(a) ASN1_UNIVERSALSTRING_free(a)
1874
+ #define M_ASN1_BMPSTRING_new() ASN1_BMPSTRING_new()
1875
+ #define M_ASN1_BMPSTRING_free(a) ASN1_BMPSTRING_free(a)
1876
+ #define M_ASN1_VISIBLESTRING_new() ASN1_VISIBLESTRING_new()
1877
+ #define M_ASN1_VISIBLESTRING_free(a) ASN1_VISIBLESTRING_free(a)
1878
+ #define M_ASN1_UTF8STRING_new() ASN1_UTF8STRING_new()
1879
+ #define M_ASN1_UTF8STRING_free(a) ASN1_UTF8STRING_free(a)
1880
+
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.
1887
+ #define B_ASN1_PRINTABLE \
1888
+ (B_ASN1_NUMERICSTRING | B_ASN1_PRINTABLESTRING | B_ASN1_T61STRING | \
1889
+ B_ASN1_IA5STRING | B_ASN1_BIT_STRING | B_ASN1_UNIVERSALSTRING | \
1890
+ B_ASN1_BMPSTRING | B_ASN1_UTF8STRING | B_ASN1_SEQUENCE | B_ASN1_UNKNOWN)
1891
+
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);
1896
+
1897
+ // ASN1_PRINTABLE_free calls |ASN1_STRING_free|.
1898
+ OPENSSL_EXPORT void ASN1_PRINTABLE_free(ASN1_STRING *str);
1899
+
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);
1911
+
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);
1917
+
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)
1924
+
1925
+
1926
+ #if defined(__cplusplus)
1927
+ } // extern C
802
1928
 
803
1929
  extern "C++" {
804
1930
 
@@ -810,7 +1936,7 @@ BORINGSSL_MAKE_DELETER(ASN1_TYPE, ASN1_TYPE_free)
810
1936
 
811
1937
  BSSL_NAMESPACE_END
812
1938
 
813
- } /* extern C++ */
1939
+ } // extern C++
814
1940
 
815
1941
  #endif
816
1942
 
@@ -907,5 +2033,7 @@ BSSL_NAMESPACE_END
907
2033
  #define ASN1_R_WRONG_TAG 190
908
2034
  #define ASN1_R_WRONG_TYPE 191
909
2035
  #define ASN1_R_NESTED_TOO_DEEP 192
2036
+ #define ASN1_R_BAD_TEMPLATE 193
2037
+ #define ASN1_R_INVALID_BIT_STRING_PADDING 194
910
2038
 
911
2039
  #endif