grpc 1.43.1 → 1.44.0.pre2

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 (382) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +84 -64
  3. data/include/grpc/grpc_security.h +10 -0
  4. data/include/grpc/impl/codegen/compression_types.h +0 -2
  5. data/include/grpc/impl/codegen/grpc_types.h +6 -0
  6. data/src/core/ext/filters/client_channel/backend_metric.h +1 -1
  7. data/src/core/ext/filters/client_channel/client_channel.cc +62 -68
  8. data/src/core/ext/filters/client_channel/client_channel.h +8 -8
  9. data/src/core/ext/filters/client_channel/client_channel_plugin.cc +1 -1
  10. data/src/core/ext/filters/client_channel/config_selector.h +4 -4
  11. data/src/core/ext/filters/client_channel/dynamic_filters.h +1 -1
  12. data/src/core/ext/filters/client_channel/health/health_check_client.cc +16 -14
  13. data/src/core/ext/filters/client_channel/health/health_check_client.h +3 -3
  14. data/src/core/ext/filters/client_channel/http_connect_handshaker.cc +1 -1
  15. data/src/core/ext/filters/client_channel/lb_policy/address_filtering.cc +4 -3
  16. data/src/core/ext/filters/client_channel/lb_policy/address_filtering.h +6 -5
  17. data/src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc +3 -7
  18. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +31 -32
  19. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.h +0 -7
  20. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.h +1 -1
  21. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.h +1 -1
  22. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.cc +1 -1
  23. data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +43 -29
  24. data/src/core/ext/filters/client_channel/lb_policy/priority/priority.cc +6 -2
  25. data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.cc +120 -68
  26. data/src/core/ext/filters/client_channel/lb_policy/rls/rls.cc +60 -48
  27. data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +62 -61
  28. data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +16 -11
  29. data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +11 -5
  30. data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +19 -15
  31. data/src/core/ext/filters/client_channel/lb_policy/xds/xds.h +1 -1
  32. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_impl.cc +14 -12
  33. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_manager.cc +3 -2
  34. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_resolver.cc +50 -105
  35. data/src/core/ext/filters/client_channel/lb_policy.cc +15 -14
  36. data/src/core/ext/filters/client_channel/lb_policy.h +19 -3
  37. data/src/core/ext/filters/client_channel/resolver/binder/binder_resolver.cc +3 -3
  38. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +207 -81
  39. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h +22 -12
  40. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +19 -15
  41. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +23 -38
  42. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +118 -207
  43. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +25 -32
  44. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc +1 -1
  45. data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +82 -73
  46. data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc +10 -10
  47. data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h +2 -1
  48. data/src/core/ext/filters/client_channel/resolver/google_c2p/google_c2p_resolver.cc +2 -5
  49. data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +5 -5
  50. data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +157 -67
  51. data/src/core/ext/filters/client_channel/resolver_result_parsing.cc +1 -1
  52. data/src/core/ext/filters/client_channel/resolver_result_parsing.h +2 -2
  53. data/src/core/ext/filters/client_channel/retry_filter.cc +37 -64
  54. data/src/core/ext/filters/client_channel/retry_service_config.cc +1 -1
  55. data/src/core/ext/filters/client_channel/retry_service_config.h +1 -1
  56. data/src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc +1 -1
  57. data/src/core/ext/filters/client_channel/subchannel.cc +12 -16
  58. data/src/core/ext/filters/client_channel/subchannel.h +2 -3
  59. data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +37 -48
  60. data/src/core/ext/filters/fault_injection/service_config_parser.cc +6 -8
  61. data/src/core/ext/filters/fault_injection/service_config_parser.h +1 -1
  62. data/src/core/ext/filters/http/client/http_client_filter.cc +51 -122
  63. data/src/core/ext/filters/http/client_authority_filter.cc +8 -24
  64. data/src/core/ext/filters/http/message_compress/message_compress_filter.cc +42 -140
  65. data/src/core/ext/filters/http/message_compress/message_decompress_filter.cc +5 -25
  66. data/src/core/ext/filters/http/server/http_server_filter.cc +50 -135
  67. data/src/core/ext/filters/message_size/message_size_filter.cc +1 -1
  68. data/src/core/ext/filters/message_size/message_size_filter.h +1 -1
  69. data/src/core/ext/filters/rbac/rbac_filter.cc +157 -0
  70. data/src/core/ext/filters/rbac/rbac_filter.h +74 -0
  71. data/src/core/ext/filters/rbac/rbac_service_config_parser.cc +605 -0
  72. data/src/core/ext/filters/rbac/rbac_service_config_parser.h +70 -0
  73. data/src/core/ext/filters/server_config_selector/server_config_selector.h +3 -2
  74. data/src/core/ext/filters/server_config_selector/server_config_selector_filter.cc +11 -6
  75. data/src/core/ext/transport/chttp2/client/insecure/channel_create.cc +1 -1
  76. data/src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc +1 -1
  77. data/src/core/ext/transport/chttp2/server/chttp2_server.cc +89 -29
  78. data/src/core/ext/transport/chttp2/transport/chttp2_plugin.cc +0 -1
  79. data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +45 -186
  80. data/src/core/ext/transport/chttp2/transport/frame_data.cc +0 -1
  81. data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +341 -279
  82. data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +69 -159
  83. data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.cc +1 -1
  84. data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.h +2 -0
  85. data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +19 -32
  86. data/src/core/ext/transport/chttp2/transport/hpack_parser.h +0 -1
  87. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.cc +94 -1
  88. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +2 -24
  89. data/src/core/ext/transport/chttp2/transport/internal.h +0 -33
  90. data/src/core/ext/transport/chttp2/transport/parsing.cc +0 -6
  91. data/src/core/ext/transport/chttp2/transport/writing.cc +47 -116
  92. data/src/core/ext/transport/inproc/inproc_plugin.cc +0 -4
  93. data/src/core/ext/transport/inproc/inproc_transport.cc +11 -63
  94. data/src/core/ext/transport/inproc/inproc_transport.h +0 -3
  95. data/src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.c +61 -0
  96. data/src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.h +146 -0
  97. data/src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.c +188 -0
  98. data/src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.h +70 -0
  99. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.c +56 -0
  100. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h +40 -0
  101. data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/checked.upbdefs.c +154 -0
  102. data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/checked.upbdefs.h +95 -0
  103. data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/eval.upbdefs.c +58 -0
  104. data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/eval.upbdefs.h +55 -0
  105. data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/explain.upbdefs.c +44 -0
  106. data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/explain.upbdefs.h +40 -0
  107. data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/syntax.upbdefs.c +153 -0
  108. data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/syntax.upbdefs.h +100 -0
  109. data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/value.upbdefs.c +75 -0
  110. data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/value.upbdefs.h +55 -0
  111. data/src/core/ext/xds/upb_utils.h +65 -0
  112. data/src/core/ext/xds/xds_api.cc +81 -3458
  113. data/src/core/ext/xds/xds_api.h +56 -611
  114. data/src/core/ext/xds/xds_bootstrap.cc +189 -125
  115. data/src/core/ext/xds/xds_bootstrap.h +20 -15
  116. data/src/core/ext/xds/xds_certificate_provider.h +1 -0
  117. data/src/core/ext/xds/xds_channel_creds.cc +108 -0
  118. data/src/core/ext/xds/xds_channel_creds.h +50 -0
  119. data/src/core/ext/xds/xds_client.cc +584 -994
  120. data/src/core/ext/xds/xds_client.h +78 -135
  121. data/src/core/ext/xds/xds_cluster.cc +451 -0
  122. data/src/core/ext/xds/xds_cluster.h +111 -0
  123. data/src/core/ext/xds/xds_common_types.cc +388 -0
  124. data/src/core/ext/xds/xds_common_types.h +110 -0
  125. data/src/core/ext/xds/xds_endpoint.cc +364 -0
  126. data/src/core/ext/xds/xds_endpoint.h +135 -0
  127. data/src/core/ext/xds/xds_http_filters.cc +5 -0
  128. data/src/core/ext/xds/xds_http_rbac_filter.cc +563 -0
  129. data/src/core/ext/xds/xds_http_rbac_filter.h +54 -0
  130. data/src/core/ext/xds/xds_listener.cc +1036 -0
  131. data/src/core/ext/xds/xds_listener.h +220 -0
  132. data/src/core/ext/{transport/chttp2/transport/hpack_utils.h → xds/xds_resource_type.cc} +12 -9
  133. data/src/core/ext/xds/xds_resource_type.h +98 -0
  134. data/src/core/ext/xds/xds_resource_type_impl.h +87 -0
  135. data/src/core/ext/xds/xds_route_config.cc +993 -0
  136. data/src/core/ext/xds/xds_route_config.h +215 -0
  137. data/src/core/ext/xds/xds_routing.cc +11 -8
  138. data/src/core/ext/xds/xds_routing.h +8 -5
  139. data/src/core/ext/xds/xds_server_config_fetcher.cc +159 -99
  140. data/src/core/lib/address_utils/parse_address.cc +20 -0
  141. data/src/core/lib/address_utils/parse_address.h +5 -0
  142. data/src/core/lib/address_utils/sockaddr_utils.cc +33 -36
  143. data/src/core/lib/address_utils/sockaddr_utils.h +1 -16
  144. data/src/core/lib/backoff/backoff.cc +4 -30
  145. data/src/core/lib/backoff/backoff.h +3 -3
  146. data/src/core/lib/channel/channel_args.cc +0 -1
  147. data/src/core/lib/channel/channel_stack.cc +8 -0
  148. data/src/core/lib/channel/channel_stack.h +1 -1
  149. data/src/core/lib/channel/channel_stack_builder.cc +5 -9
  150. data/src/core/lib/channel/channel_stack_builder.h +4 -7
  151. data/src/core/lib/channel/channelz.cc +1 -0
  152. data/src/core/lib/compression/compression.cc +19 -111
  153. data/src/core/lib/compression/compression_internal.cc +142 -202
  154. data/src/core/lib/compression/compression_internal.h +64 -69
  155. data/src/core/lib/compression/message_compress.cc +11 -11
  156. data/src/core/lib/compression/message_compress.h +2 -2
  157. data/src/core/lib/gpr/useful.h +4 -0
  158. data/src/core/lib/gprpp/bitset.h +7 -0
  159. data/src/core/lib/gprpp/chunked_vector.h +45 -3
  160. data/src/core/lib/gprpp/status_helper.cc +20 -28
  161. data/src/core/lib/gprpp/status_helper.h +6 -19
  162. data/src/core/lib/gprpp/table.h +11 -0
  163. data/src/core/lib/http/httpcli.cc +37 -46
  164. data/src/core/lib/http/httpcli.h +3 -15
  165. data/src/core/lib/iomgr/call_combiner.cc +15 -4
  166. data/src/core/lib/iomgr/closure.h +29 -9
  167. data/src/core/lib/iomgr/combiner.cc +25 -3
  168. data/src/core/lib/iomgr/error.cc +2 -0
  169. data/src/core/lib/iomgr/error.h +3 -0
  170. data/src/core/lib/iomgr/event_engine/iomgr.cc +3 -2
  171. data/src/core/lib/iomgr/event_engine/resolved_address_internal.cc +6 -0
  172. data/src/core/lib/iomgr/event_engine/resolved_address_internal.h +2 -0
  173. data/src/core/lib/iomgr/event_engine/resolver.cc +66 -48
  174. data/src/core/lib/iomgr/event_engine/resolver.h +56 -0
  175. data/src/core/lib/iomgr/exec_ctx.cc +22 -9
  176. data/src/core/lib/iomgr/executor.cc +10 -1
  177. data/src/core/lib/iomgr/fork_posix.cc +3 -2
  178. data/src/core/lib/iomgr/iomgr_custom.cc +4 -1
  179. data/src/core/lib/iomgr/iomgr_posix.cc +2 -2
  180. data/src/core/lib/iomgr/iomgr_posix_cfstream.cc +2 -2
  181. data/src/core/lib/iomgr/iomgr_windows.cc +2 -2
  182. data/src/core/lib/iomgr/port.h +2 -2
  183. data/src/core/lib/iomgr/resolve_address.cc +5 -24
  184. data/src/core/lib/iomgr/resolve_address.h +47 -44
  185. data/src/core/lib/iomgr/resolve_address_custom.cc +131 -109
  186. data/src/core/lib/iomgr/resolve_address_custom.h +101 -19
  187. data/src/core/lib/iomgr/resolve_address_impl.h +59 -0
  188. data/src/core/lib/iomgr/resolve_address_posix.cc +82 -66
  189. data/src/core/lib/iomgr/resolve_address_posix.h +47 -0
  190. data/src/core/lib/iomgr/resolve_address_windows.cc +93 -74
  191. data/src/core/lib/iomgr/resolve_address_windows.h +47 -0
  192. data/src/core/lib/iomgr/resolved_address.h +39 -0
  193. data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +1 -0
  194. data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc +1 -0
  195. data/src/core/lib/iomgr/unix_sockets_posix.cc +22 -34
  196. data/src/core/lib/iomgr/unix_sockets_posix.h +4 -7
  197. data/src/core/lib/iomgr/unix_sockets_posix_noop.cc +6 -15
  198. data/src/core/lib/matchers/matchers.cc +1 -1
  199. data/src/core/lib/promise/activity.h +49 -20
  200. data/src/core/lib/promise/detail/status.h +5 -0
  201. data/src/core/{ext/filters/client_channel → lib/resolver}/resolver.cc +17 -25
  202. data/src/core/{ext/filters/client_channel → lib/resolver}/resolver.h +43 -44
  203. data/src/core/{ext/filters/client_channel → lib/resolver}/resolver_factory.h +10 -5
  204. data/src/core/{ext/filters/client_channel → lib/resolver}/resolver_registry.cc +3 -2
  205. data/src/core/{ext/filters/client_channel → lib/resolver}/resolver_registry.h +4 -5
  206. data/src/core/{ext/filters/client_channel → lib/resolver}/server_address.cc +1 -1
  207. data/src/core/{ext/filters/client_channel → lib/resolver}/server_address.h +4 -4
  208. data/src/core/lib/resource_quota/api.h +0 -1
  209. data/src/core/lib/{gprpp → resource_quota}/arena.cc +16 -13
  210. data/src/core/lib/{gprpp → resource_quota}/arena.h +24 -13
  211. data/src/core/lib/security/authorization/evaluate_args.cc +30 -15
  212. data/src/core/lib/security/authorization/evaluate_args.h +1 -0
  213. data/src/core/lib/security/authorization/grpc_authorization_engine.cc +60 -0
  214. data/src/core/lib/security/authorization/grpc_authorization_engine.h +62 -0
  215. data/src/core/lib/security/authorization/matchers.cc +227 -0
  216. data/src/core/lib/security/authorization/matchers.h +211 -0
  217. data/src/core/lib/security/authorization/rbac_policy.cc +442 -0
  218. data/src/core/lib/security/authorization/rbac_policy.h +170 -0
  219. data/src/core/lib/security/context/security_context.cc +4 -2
  220. data/src/core/lib/security/context/security_context.h +1 -1
  221. data/src/core/lib/security/credentials/composite/composite_credentials.cc +5 -5
  222. data/src/core/lib/security/credentials/composite/composite_credentials.h +4 -3
  223. data/src/core/lib/security/credentials/credentials.h +10 -20
  224. data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +6 -9
  225. data/src/core/lib/security/credentials/external/external_account_credentials.cc +7 -9
  226. data/src/core/lib/security/credentials/external/external_account_credentials.h +2 -7
  227. data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +2 -3
  228. data/src/core/lib/security/credentials/fake/fake_credentials.cc +5 -4
  229. data/src/core/lib/security/credentials/fake/fake_credentials.h +8 -7
  230. data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +2 -5
  231. data/src/core/lib/security/credentials/iam/iam_credentials.cc +16 -19
  232. data/src/core/lib/security/credentials/iam/iam_credentials.h +6 -5
  233. data/src/core/lib/security/credentials/jwt/json_token.cc +4 -6
  234. data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +16 -28
  235. data/src/core/lib/security/credentials/jwt/jwt_credentials.h +8 -8
  236. data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +6 -13
  237. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +44 -57
  238. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +13 -15
  239. data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +6 -7
  240. data/src/core/lib/security/credentials/plugin/plugin_credentials.h +5 -4
  241. data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +1 -10
  242. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +6 -0
  243. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +7 -0
  244. data/src/core/lib/security/credentials/xds/xds_credentials.h +1 -1
  245. data/src/core/lib/security/security_connector/security_connector.cc +0 -4
  246. data/src/core/lib/security/security_connector/security_connector.h +5 -1
  247. data/src/core/lib/security/security_connector/ssl_utils.cc +14 -24
  248. data/src/core/lib/security/security_connector/ssl_utils.h +5 -14
  249. data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +2 -3
  250. data/src/core/lib/security/transport/auth_filters.h +7 -0
  251. data/src/core/lib/security/transport/client_auth_filter.cc +53 -33
  252. data/src/core/lib/security/transport/server_auth_filter.cc +40 -35
  253. data/src/core/{ext → lib}/service_config/service_config.cc +2 -2
  254. data/src/core/{ext → lib}/service_config/service_config.h +4 -4
  255. data/src/core/{ext → lib}/service_config/service_config_call_data.h +5 -5
  256. data/src/core/{ext → lib}/service_config/service_config_parser.cc +1 -1
  257. data/src/core/{ext → lib}/service_config/service_config_parser.h +3 -3
  258. data/src/core/lib/slice/slice.cc +3 -1
  259. data/src/core/lib/slice/slice.h +43 -13
  260. data/src/core/lib/slice/slice_intern.cc +3 -101
  261. data/src/core/lib/slice/slice_internal.h +1 -2
  262. data/src/core/lib/slice/slice_refcount.h +4 -13
  263. data/src/core/lib/slice/slice_refcount_base.h +0 -16
  264. data/src/core/lib/surface/call.cc +140 -382
  265. data/src/core/lib/surface/call.h +4 -4
  266. data/src/core/lib/surface/channel.cc +42 -44
  267. data/src/core/lib/surface/channel.h +4 -4
  268. data/src/core/lib/surface/init.cc +0 -2
  269. data/src/core/lib/surface/lame_client.cc +0 -1
  270. data/src/core/lib/surface/server.cc +12 -29
  271. data/src/core/lib/surface/server.h +2 -2
  272. data/src/core/lib/surface/version.cc +2 -2
  273. data/src/core/lib/transport/error_utils.h +14 -0
  274. data/src/core/lib/transport/metadata_batch.h +799 -717
  275. data/src/core/lib/transport/parsed_metadata.cc +2 -0
  276. data/src/core/lib/transport/parsed_metadata.h +95 -92
  277. data/src/core/lib/transport/timeout_encoding.cc +200 -66
  278. data/src/core/lib/transport/timeout_encoding.h +40 -10
  279. data/src/core/lib/transport/transport.h +1 -1
  280. data/src/core/lib/transport/transport_op_string.cc +6 -39
  281. data/src/core/lib/uri/uri_parser.cc +223 -53
  282. data/src/core/lib/uri/uri_parser.h +36 -23
  283. data/src/core/plugin_registry/grpc_plugin_registry.cc +4 -3
  284. data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +1 -1
  285. data/src/core/tsi/ssl/session_cache/ssl_session.h +2 -4
  286. data/src/core/tsi/ssl/session_cache/ssl_session_cache.h +3 -5
  287. data/src/core/tsi/ssl_transport_security.cc +53 -13
  288. data/src/core/tsi/ssl_transport_security.h +18 -6
  289. data/src/ruby/ext/grpc/extconf.rb +10 -3
  290. data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +2 -0
  291. data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +3 -0
  292. data/src/ruby/lib/grpc/version.rb +1 -1
  293. data/src/ruby/pb/src/proto/grpc/testing/test_pb.rb +2 -1
  294. data/third_party/abseil-cpp/absl/base/internal/fast_type_id.h +48 -0
  295. data/third_party/abseil-cpp/absl/random/bernoulli_distribution.h +200 -0
  296. data/third_party/abseil-cpp/absl/random/beta_distribution.h +427 -0
  297. data/third_party/abseil-cpp/absl/random/discrete_distribution.cc +98 -0
  298. data/third_party/abseil-cpp/absl/random/discrete_distribution.h +247 -0
  299. data/third_party/abseil-cpp/absl/random/distributions.h +452 -0
  300. data/third_party/abseil-cpp/absl/random/exponential_distribution.h +165 -0
  301. data/third_party/abseil-cpp/absl/random/gaussian_distribution.cc +104 -0
  302. data/third_party/abseil-cpp/absl/random/gaussian_distribution.h +275 -0
  303. data/third_party/abseil-cpp/absl/random/internal/distribution_caller.h +92 -0
  304. data/third_party/abseil-cpp/absl/random/internal/fast_uniform_bits.h +268 -0
  305. data/third_party/abseil-cpp/absl/random/internal/fastmath.h +57 -0
  306. data/third_party/abseil-cpp/absl/random/internal/generate_real.h +144 -0
  307. data/third_party/abseil-cpp/absl/random/internal/iostream_state_saver.h +245 -0
  308. data/third_party/abseil-cpp/absl/random/internal/nonsecure_base.h +150 -0
  309. data/third_party/abseil-cpp/absl/random/internal/pcg_engine.h +308 -0
  310. data/third_party/abseil-cpp/absl/random/internal/platform.h +171 -0
  311. data/third_party/abseil-cpp/absl/random/internal/pool_urbg.cc +253 -0
  312. data/third_party/abseil-cpp/absl/random/internal/pool_urbg.h +131 -0
  313. data/third_party/abseil-cpp/absl/random/internal/randen.cc +91 -0
  314. data/third_party/abseil-cpp/absl/random/internal/randen.h +102 -0
  315. data/third_party/abseil-cpp/absl/random/internal/randen_detect.cc +221 -0
  316. data/third_party/abseil-cpp/absl/random/internal/randen_detect.h +33 -0
  317. data/third_party/abseil-cpp/absl/random/internal/randen_engine.h +239 -0
  318. data/third_party/abseil-cpp/absl/random/internal/randen_hwaes.cc +526 -0
  319. data/third_party/abseil-cpp/absl/random/internal/randen_hwaes.h +50 -0
  320. data/third_party/abseil-cpp/absl/random/internal/randen_round_keys.cc +462 -0
  321. data/third_party/abseil-cpp/absl/random/internal/randen_slow.cc +471 -0
  322. data/third_party/abseil-cpp/absl/random/internal/randen_slow.h +40 -0
  323. data/third_party/abseil-cpp/absl/random/internal/randen_traits.h +88 -0
  324. data/third_party/abseil-cpp/absl/random/internal/salted_seed_seq.h +167 -0
  325. data/third_party/abseil-cpp/absl/random/internal/seed_material.cc +267 -0
  326. data/third_party/abseil-cpp/absl/random/internal/seed_material.h +104 -0
  327. data/third_party/abseil-cpp/absl/random/internal/traits.h +101 -0
  328. data/third_party/abseil-cpp/absl/random/internal/uniform_helper.h +244 -0
  329. data/third_party/abseil-cpp/absl/random/internal/wide_multiply.h +111 -0
  330. data/third_party/abseil-cpp/absl/random/log_uniform_int_distribution.h +257 -0
  331. data/third_party/abseil-cpp/absl/random/poisson_distribution.h +258 -0
  332. data/third_party/abseil-cpp/absl/random/random.h +189 -0
  333. data/third_party/abseil-cpp/absl/random/seed_gen_exception.cc +46 -0
  334. data/third_party/abseil-cpp/absl/random/seed_gen_exception.h +55 -0
  335. data/third_party/abseil-cpp/absl/random/seed_sequences.cc +29 -0
  336. data/third_party/abseil-cpp/absl/random/seed_sequences.h +110 -0
  337. data/third_party/abseil-cpp/absl/random/uniform_int_distribution.h +275 -0
  338. data/third_party/abseil-cpp/absl/random/uniform_real_distribution.h +202 -0
  339. data/third_party/abseil-cpp/absl/random/zipf_distribution.h +271 -0
  340. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_enc.c +1 -0
  341. data/third_party/boringssl-with-bazel/src/crypto/base64/base64.c +13 -0
  342. data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.c +21 -0
  343. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/cipher.c +12 -0
  344. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.c +1 -2
  345. data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c +2 -2
  346. data/third_party/boringssl-with-bazel/src/crypto/mem.c +1 -1
  347. data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7.c +29 -0
  348. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h +0 -1
  349. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8.c +1 -1
  350. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.c +1 -1
  351. data/third_party/boringssl-with-bazel/src/include/openssl/base64.h +8 -0
  352. data/third_party/boringssl-with-bazel/src/include/openssl/cipher.h +13 -1
  353. data/third_party/boringssl-with-bazel/src/include/openssl/dsa.h +10 -0
  354. data/third_party/boringssl-with-bazel/src/include/openssl/hpke.h +1 -1
  355. data/third_party/boringssl-with-bazel/src/include/openssl/pkcs7.h +9 -4
  356. data/third_party/boringssl-with-bazel/src/include/openssl/pkcs8.h +6 -1
  357. data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +23 -2
  358. data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +4 -0
  359. data/third_party/xxhash/xxhash.h +607 -352
  360. metadata +149 -77
  361. data/src/core/ext/transport/chttp2/transport/hpack_encoder_index.h +0 -107
  362. data/src/core/ext/transport/chttp2/transport/hpack_utils.cc +0 -46
  363. data/src/core/ext/transport/chttp2/transport/popularity_count.h +0 -60
  364. data/src/core/lib/compression/algorithm_metadata.h +0 -62
  365. data/src/core/lib/compression/compression_args.cc +0 -140
  366. data/src/core/lib/compression/compression_args.h +0 -58
  367. data/src/core/lib/compression/stream_compression.cc +0 -81
  368. data/src/core/lib/compression/stream_compression.h +0 -117
  369. data/src/core/lib/compression/stream_compression_gzip.cc +0 -231
  370. data/src/core/lib/compression/stream_compression_gzip.h +0 -28
  371. data/src/core/lib/compression/stream_compression_identity.cc +0 -91
  372. data/src/core/lib/compression/stream_compression_identity.h +0 -29
  373. data/src/core/lib/security/credentials/credentials_metadata.cc +0 -61
  374. data/src/core/lib/slice/static_slice.cc +0 -377
  375. data/src/core/lib/slice/static_slice.h +0 -300
  376. data/src/core/lib/transport/metadata.cc +0 -714
  377. data/src/core/lib/transport/metadata.h +0 -449
  378. data/src/core/lib/transport/metadata_batch.cc +0 -99
  379. data/src/core/lib/transport/static_metadata.cc +0 -1032
  380. data/src/core/lib/transport/static_metadata.h +0 -322
  381. data/src/core/lib/transport/status_metadata.cc +0 -63
  382. data/src/core/lib/transport/status_metadata.h +0 -48
@@ -0,0 +1,245 @@
1
+ // Copyright 2017 The Abseil Authors.
2
+ //
3
+ // Licensed under the Apache License, Version 2.0 (the "License");
4
+ // you may not use this file except in compliance with the License.
5
+ // You may obtain a copy of the License at
6
+ //
7
+ // https://www.apache.org/licenses/LICENSE-2.0
8
+ //
9
+ // Unless required by applicable law or agreed to in writing, software
10
+ // distributed under the License is distributed on an "AS IS" BASIS,
11
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ // See the License for the specific language governing permissions and
13
+ // limitations under the License.
14
+
15
+ #ifndef ABSL_RANDOM_INTERNAL_IOSTREAM_STATE_SAVER_H_
16
+ #define ABSL_RANDOM_INTERNAL_IOSTREAM_STATE_SAVER_H_
17
+
18
+ #include <cmath>
19
+ #include <iostream>
20
+ #include <limits>
21
+ #include <type_traits>
22
+
23
+ #include "absl/meta/type_traits.h"
24
+ #include "absl/numeric/int128.h"
25
+
26
+ namespace absl {
27
+ ABSL_NAMESPACE_BEGIN
28
+ namespace random_internal {
29
+
30
+ // The null_state_saver does nothing.
31
+ template <typename T>
32
+ class null_state_saver {
33
+ public:
34
+ using stream_type = T;
35
+ using flags_type = std::ios_base::fmtflags;
36
+
37
+ null_state_saver(T&, flags_type) {}
38
+ ~null_state_saver() {}
39
+ };
40
+
41
+ // ostream_state_saver is a RAII object to save and restore the common
42
+ // basic_ostream flags used when implementing `operator <<()` on any of
43
+ // the absl random distributions.
44
+ template <typename OStream>
45
+ class ostream_state_saver {
46
+ public:
47
+ using ostream_type = OStream;
48
+ using flags_type = std::ios_base::fmtflags;
49
+ using fill_type = typename ostream_type::char_type;
50
+ using precision_type = std::streamsize;
51
+
52
+ ostream_state_saver(ostream_type& os, // NOLINT(runtime/references)
53
+ flags_type flags, fill_type fill)
54
+ : os_(os),
55
+ flags_(os.flags(flags)),
56
+ fill_(os.fill(fill)),
57
+ precision_(os.precision()) {
58
+ // Save state in initialized variables.
59
+ }
60
+
61
+ ~ostream_state_saver() {
62
+ // Restore saved state.
63
+ os_.precision(precision_);
64
+ os_.fill(fill_);
65
+ os_.flags(flags_);
66
+ }
67
+
68
+ private:
69
+ ostream_type& os_;
70
+ const flags_type flags_;
71
+ const fill_type fill_;
72
+ const precision_type precision_;
73
+ };
74
+
75
+ #if defined(__NDK_MAJOR__) && __NDK_MAJOR__ < 16
76
+ #define ABSL_RANDOM_INTERNAL_IOSTREAM_HEXFLOAT 1
77
+ #else
78
+ #define ABSL_RANDOM_INTERNAL_IOSTREAM_HEXFLOAT 0
79
+ #endif
80
+
81
+ template <typename CharT, typename Traits>
82
+ ostream_state_saver<std::basic_ostream<CharT, Traits>> make_ostream_state_saver(
83
+ std::basic_ostream<CharT, Traits>& os, // NOLINT(runtime/references)
84
+ std::ios_base::fmtflags flags = std::ios_base::dec | std::ios_base::left |
85
+ #if ABSL_RANDOM_INTERNAL_IOSTREAM_HEXFLOAT
86
+ std::ios_base::fixed |
87
+ #endif
88
+ std::ios_base::scientific) {
89
+ using result_type = ostream_state_saver<std::basic_ostream<CharT, Traits>>;
90
+ return result_type(os, flags, os.widen(' '));
91
+ }
92
+
93
+ template <typename T>
94
+ typename absl::enable_if_t<!std::is_base_of<std::ios_base, T>::value,
95
+ null_state_saver<T>>
96
+ make_ostream_state_saver(T& is, // NOLINT(runtime/references)
97
+ std::ios_base::fmtflags flags = std::ios_base::dec) {
98
+ std::cerr << "null_state_saver";
99
+ using result_type = null_state_saver<T>;
100
+ return result_type(is, flags);
101
+ }
102
+
103
+ // stream_precision_helper<type>::kPrecision returns the base 10 precision
104
+ // required to stream and reconstruct a real type exact binary value through
105
+ // a binary->decimal->binary transition.
106
+ template <typename T>
107
+ struct stream_precision_helper {
108
+ // max_digits10 may be 0 on MSVC; if so, use digits10 + 3.
109
+ static constexpr int kPrecision =
110
+ (std::numeric_limits<T>::max_digits10 > std::numeric_limits<T>::digits10)
111
+ ? std::numeric_limits<T>::max_digits10
112
+ : (std::numeric_limits<T>::digits10 + 3);
113
+ };
114
+
115
+ template <>
116
+ struct stream_precision_helper<float> {
117
+ static constexpr int kPrecision = 9;
118
+ };
119
+ template <>
120
+ struct stream_precision_helper<double> {
121
+ static constexpr int kPrecision = 17;
122
+ };
123
+ template <>
124
+ struct stream_precision_helper<long double> {
125
+ static constexpr int kPrecision = 36; // assuming fp128
126
+ };
127
+
128
+ // istream_state_saver is a RAII object to save and restore the common
129
+ // std::basic_istream<> flags used when implementing `operator >>()` on any of
130
+ // the absl random distributions.
131
+ template <typename IStream>
132
+ class istream_state_saver {
133
+ public:
134
+ using istream_type = IStream;
135
+ using flags_type = std::ios_base::fmtflags;
136
+
137
+ istream_state_saver(istream_type& is, // NOLINT(runtime/references)
138
+ flags_type flags)
139
+ : is_(is), flags_(is.flags(flags)) {}
140
+
141
+ ~istream_state_saver() { is_.flags(flags_); }
142
+
143
+ private:
144
+ istream_type& is_;
145
+ flags_type flags_;
146
+ };
147
+
148
+ template <typename CharT, typename Traits>
149
+ istream_state_saver<std::basic_istream<CharT, Traits>> make_istream_state_saver(
150
+ std::basic_istream<CharT, Traits>& is, // NOLINT(runtime/references)
151
+ std::ios_base::fmtflags flags = std::ios_base::dec |
152
+ std::ios_base::scientific |
153
+ std::ios_base::skipws) {
154
+ using result_type = istream_state_saver<std::basic_istream<CharT, Traits>>;
155
+ return result_type(is, flags);
156
+ }
157
+
158
+ template <typename T>
159
+ typename absl::enable_if_t<!std::is_base_of<std::ios_base, T>::value,
160
+ null_state_saver<T>>
161
+ make_istream_state_saver(T& is, // NOLINT(runtime/references)
162
+ std::ios_base::fmtflags flags = std::ios_base::dec) {
163
+ using result_type = null_state_saver<T>;
164
+ return result_type(is, flags);
165
+ }
166
+
167
+ // stream_format_type<T> is a helper struct to convert types which
168
+ // basic_iostream cannot output as decimal numbers into types which
169
+ // basic_iostream can output as decimal numbers. Specifically:
170
+ // * signed/unsigned char-width types are converted to int.
171
+ // * TODO(lar): __int128 => uint128, except there is no operator << yet.
172
+ //
173
+ template <typename T>
174
+ struct stream_format_type
175
+ : public std::conditional<(sizeof(T) == sizeof(char)), int, T> {};
176
+
177
+ // stream_u128_helper allows us to write out either absl::uint128 or
178
+ // __uint128_t types in the same way, which enables their use as internal
179
+ // state of PRNG engines.
180
+ template <typename T>
181
+ struct stream_u128_helper;
182
+
183
+ template <>
184
+ struct stream_u128_helper<absl::uint128> {
185
+ template <typename IStream>
186
+ inline absl::uint128 read(IStream& in) {
187
+ uint64_t h = 0;
188
+ uint64_t l = 0;
189
+ in >> h >> l;
190
+ return absl::MakeUint128(h, l);
191
+ }
192
+
193
+ template <typename OStream>
194
+ inline void write(absl::uint128 val, OStream& out) {
195
+ uint64_t h = absl::Uint128High64(val);
196
+ uint64_t l = absl::Uint128Low64(val);
197
+ out << h << out.fill() << l;
198
+ }
199
+ };
200
+
201
+ #ifdef ABSL_HAVE_INTRINSIC_INT128
202
+ template <>
203
+ struct stream_u128_helper<__uint128_t> {
204
+ template <typename IStream>
205
+ inline __uint128_t read(IStream& in) {
206
+ uint64_t h = 0;
207
+ uint64_t l = 0;
208
+ in >> h >> l;
209
+ return (static_cast<__uint128_t>(h) << 64) | l;
210
+ }
211
+
212
+ template <typename OStream>
213
+ inline void write(__uint128_t val, OStream& out) {
214
+ uint64_t h = static_cast<uint64_t>(val >> 64u);
215
+ uint64_t l = static_cast<uint64_t>(val);
216
+ out << h << out.fill() << l;
217
+ }
218
+ };
219
+ #endif
220
+
221
+ template <typename FloatType, typename IStream>
222
+ inline FloatType read_floating_point(IStream& is) {
223
+ static_assert(std::is_floating_point<FloatType>::value, "");
224
+ FloatType dest;
225
+ is >> dest;
226
+ // Parsing a double value may report a subnormal value as an error
227
+ // despite being able to represent it.
228
+ // See https://stackoverflow.com/q/52410931/3286653
229
+ // It may also report an underflow when parsing DOUBLE_MIN as an
230
+ // ERANGE error, as the parsed value may be smaller than DOUBLE_MIN
231
+ // and rounded up.
232
+ // See: https://stackoverflow.com/q/42005462
233
+ if (is.fail() &&
234
+ (std::fabs(dest) == (std::numeric_limits<FloatType>::min)() ||
235
+ std::fpclassify(dest) == FP_SUBNORMAL)) {
236
+ is.clear(is.rdstate() & (~std::ios_base::failbit));
237
+ }
238
+ return dest;
239
+ }
240
+
241
+ } // namespace random_internal
242
+ ABSL_NAMESPACE_END
243
+ } // namespace absl
244
+
245
+ #endif // ABSL_RANDOM_INTERNAL_IOSTREAM_STATE_SAVER_H_
@@ -0,0 +1,150 @@
1
+ // Copyright 2017 The Abseil Authors.
2
+ //
3
+ // Licensed under the Apache License, Version 2.0 (the "License");
4
+ // you may not use this file except in compliance with the License.
5
+ // You may obtain a copy of the License at
6
+ //
7
+ // https://www.apache.org/licenses/LICENSE-2.0
8
+ //
9
+ // Unless required by applicable law or agreed to in writing, software
10
+ // distributed under the License is distributed on an "AS IS" BASIS,
11
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ // See the License for the specific language governing permissions and
13
+ // limitations under the License.
14
+
15
+ #ifndef ABSL_RANDOM_INTERNAL_NONSECURE_BASE_H_
16
+ #define ABSL_RANDOM_INTERNAL_NONSECURE_BASE_H_
17
+
18
+ #include <algorithm>
19
+ #include <cstdint>
20
+ #include <iostream>
21
+ #include <iterator>
22
+ #include <random>
23
+ #include <string>
24
+ #include <type_traits>
25
+ #include <vector>
26
+
27
+ #include "absl/base/macros.h"
28
+ #include "absl/meta/type_traits.h"
29
+ #include "absl/random/internal/pool_urbg.h"
30
+ #include "absl/random/internal/salted_seed_seq.h"
31
+ #include "absl/random/internal/seed_material.h"
32
+ #include "absl/types/optional.h"
33
+ #include "absl/types/span.h"
34
+
35
+ namespace absl {
36
+ ABSL_NAMESPACE_BEGIN
37
+ namespace random_internal {
38
+
39
+ // Each instance of NonsecureURBGBase<URBG> will be seeded by variates produced
40
+ // by a thread-unique URBG-instance.
41
+ template <typename URBG>
42
+ class NonsecureURBGBase {
43
+ public:
44
+ using result_type = typename URBG::result_type;
45
+
46
+ // Default constructor
47
+ NonsecureURBGBase() : urbg_(ConstructURBG()) {}
48
+
49
+ // Copy disallowed, move allowed.
50
+ NonsecureURBGBase(const NonsecureURBGBase&) = delete;
51
+ NonsecureURBGBase& operator=(const NonsecureURBGBase&) = delete;
52
+ NonsecureURBGBase(NonsecureURBGBase&&) = default;
53
+ NonsecureURBGBase& operator=(NonsecureURBGBase&&) = default;
54
+
55
+ // Constructor using a seed
56
+ template <class SSeq, typename = typename absl::enable_if_t<
57
+ !std::is_same<SSeq, NonsecureURBGBase>::value>>
58
+ explicit NonsecureURBGBase(SSeq&& seq)
59
+ : urbg_(ConstructURBG(std::forward<SSeq>(seq))) {}
60
+
61
+ // Note: on MSVC, min() or max() can be interpreted as MIN() or MAX(), so we
62
+ // enclose min() or max() in parens as (min)() and (max)().
63
+ // Additionally, clang-format requires no space before this construction.
64
+
65
+ // NonsecureURBGBase::min()
66
+ static constexpr result_type(min)() { return (URBG::min)(); }
67
+
68
+ // NonsecureURBGBase::max()
69
+ static constexpr result_type(max)() { return (URBG::max)(); }
70
+
71
+ // NonsecureURBGBase::operator()()
72
+ result_type operator()() { return urbg_(); }
73
+
74
+ // NonsecureURBGBase::discard()
75
+ void discard(unsigned long long values) { // NOLINT(runtime/int)
76
+ urbg_.discard(values);
77
+ }
78
+
79
+ bool operator==(const NonsecureURBGBase& other) const {
80
+ return urbg_ == other.urbg_;
81
+ }
82
+
83
+ bool operator!=(const NonsecureURBGBase& other) const {
84
+ return !(urbg_ == other.urbg_);
85
+ }
86
+
87
+ private:
88
+ // Seeder is a custom seed sequence type where generate() fills the provided
89
+ // buffer via the RandenPool entropy source.
90
+ struct Seeder {
91
+ using result_type = uint32_t;
92
+
93
+ size_t size() { return 0; }
94
+
95
+ template <typename OutIterator>
96
+ void param(OutIterator) const {}
97
+
98
+ template <typename RandomAccessIterator>
99
+ void generate(RandomAccessIterator begin, RandomAccessIterator end) {
100
+ if (begin != end) {
101
+ // begin, end must be random access iterators assignable from uint32_t.
102
+ generate_impl(
103
+ std::integral_constant<bool, sizeof(*begin) == sizeof(uint32_t)>{},
104
+ begin, end);
105
+ }
106
+ }
107
+
108
+ // Commonly, generate is invoked with a pointer to a buffer which
109
+ // can be cast to a uint32_t.
110
+ template <typename RandomAccessIterator>
111
+ void generate_impl(std::integral_constant<bool, true>,
112
+ RandomAccessIterator begin, RandomAccessIterator end) {
113
+ auto buffer = absl::MakeSpan(begin, end);
114
+ auto target = absl::MakeSpan(reinterpret_cast<uint32_t*>(buffer.data()),
115
+ buffer.size());
116
+ RandenPool<uint32_t>::Fill(target);
117
+ }
118
+
119
+ // The non-uint32_t case should be uncommon, and involves an extra copy,
120
+ // filling the uint32_t buffer and then mixing into the output.
121
+ template <typename RandomAccessIterator>
122
+ void generate_impl(std::integral_constant<bool, false>,
123
+ RandomAccessIterator begin, RandomAccessIterator end) {
124
+ const size_t n = std::distance(begin, end);
125
+ absl::InlinedVector<uint32_t, 8> data(n, 0);
126
+ RandenPool<uint32_t>::Fill(absl::MakeSpan(data.begin(), data.end()));
127
+ std::copy(std::begin(data), std::end(data), begin);
128
+ }
129
+ };
130
+
131
+ static URBG ConstructURBG() {
132
+ Seeder seeder;
133
+ return URBG(seeder);
134
+ }
135
+
136
+ template <typename SSeq>
137
+ static URBG ConstructURBG(SSeq&& seq) { // NOLINT(runtime/references)
138
+ auto salted_seq =
139
+ random_internal::MakeSaltedSeedSeq(std::forward<SSeq>(seq));
140
+ return URBG(salted_seq);
141
+ }
142
+
143
+ URBG urbg_;
144
+ };
145
+
146
+ } // namespace random_internal
147
+ ABSL_NAMESPACE_END
148
+ } // namespace absl
149
+
150
+ #endif // ABSL_RANDOM_INTERNAL_NONSECURE_BASE_H_
@@ -0,0 +1,308 @@
1
+ // Copyright 2018 The Abseil Authors.
2
+ //
3
+ // Licensed under the Apache License, Version 2.0 (the "License");
4
+ // you may not use this file except in compliance with the License.
5
+ // You may obtain a copy of the License at
6
+ //
7
+ // https://www.apache.org/licenses/LICENSE-2.0
8
+ //
9
+ // Unless required by applicable law or agreed to in writing, software
10
+ // distributed under the License is distributed on an "AS IS" BASIS,
11
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ // See the License for the specific language governing permissions and
13
+ // limitations under the License.
14
+
15
+ #ifndef ABSL_RANDOM_INTERNAL_PCG_ENGINE_H_
16
+ #define ABSL_RANDOM_INTERNAL_PCG_ENGINE_H_
17
+
18
+ #include <type_traits>
19
+
20
+ #include "absl/base/config.h"
21
+ #include "absl/meta/type_traits.h"
22
+ #include "absl/numeric/bits.h"
23
+ #include "absl/numeric/int128.h"
24
+ #include "absl/random/internal/fastmath.h"
25
+ #include "absl/random/internal/iostream_state_saver.h"
26
+
27
+ namespace absl {
28
+ ABSL_NAMESPACE_BEGIN
29
+ namespace random_internal {
30
+
31
+ // pcg_engine is a simplified implementation of Melissa O'Neil's PCG engine in
32
+ // C++. PCG combines a linear congruential generator (LCG) with output state
33
+ // mixing functions to generate each random variate. pcg_engine supports only a
34
+ // single sequence (oneseq), and does not support streams.
35
+ //
36
+ // pcg_engine is parameterized by two types:
37
+ // Params, which provides the multiplier and increment values;
38
+ // Mix, which mixes the state into the result.
39
+ //
40
+ template <typename Params, typename Mix>
41
+ class pcg_engine {
42
+ static_assert(std::is_same<typename Params::state_type,
43
+ typename Mix::state_type>::value,
44
+ "Class-template absl::pcg_engine must be parameterized by "
45
+ "Params and Mix with identical state_type");
46
+
47
+ static_assert(std::is_unsigned<typename Mix::result_type>::value,
48
+ "Class-template absl::pcg_engine must be parameterized by "
49
+ "an unsigned Mix::result_type");
50
+
51
+ using params_type = Params;
52
+ using mix_type = Mix;
53
+ using state_type = typename Mix::state_type;
54
+
55
+ public:
56
+ // C++11 URBG interface:
57
+ using result_type = typename Mix::result_type;
58
+
59
+ static constexpr result_type(min)() {
60
+ return (std::numeric_limits<result_type>::min)();
61
+ }
62
+
63
+ static constexpr result_type(max)() {
64
+ return (std::numeric_limits<result_type>::max)();
65
+ }
66
+
67
+ explicit pcg_engine(uint64_t seed_value = 0) { seed(seed_value); }
68
+
69
+ template <class SeedSequence,
70
+ typename = typename absl::enable_if_t<
71
+ !std::is_same<SeedSequence, pcg_engine>::value>>
72
+ explicit pcg_engine(SeedSequence&& seq) {
73
+ seed(seq);
74
+ }
75
+
76
+ pcg_engine(const pcg_engine&) = default;
77
+ pcg_engine& operator=(const pcg_engine&) = default;
78
+ pcg_engine(pcg_engine&&) = default;
79
+ pcg_engine& operator=(pcg_engine&&) = default;
80
+
81
+ result_type operator()() {
82
+ // Advance the LCG state, always using the new value to generate the output.
83
+ state_ = lcg(state_);
84
+ return Mix{}(state_);
85
+ }
86
+
87
+ void seed(uint64_t seed_value = 0) {
88
+ state_type tmp = seed_value;
89
+ state_ = lcg(tmp + Params::increment());
90
+ }
91
+
92
+ template <class SeedSequence>
93
+ typename absl::enable_if_t<
94
+ !std::is_convertible<SeedSequence, uint64_t>::value, void>
95
+ seed(SeedSequence&& seq) {
96
+ reseed(seq);
97
+ }
98
+
99
+ void discard(uint64_t count) { state_ = advance(state_, count); }
100
+
101
+ bool operator==(const pcg_engine& other) const {
102
+ return state_ == other.state_;
103
+ }
104
+
105
+ bool operator!=(const pcg_engine& other) const { return !(*this == other); }
106
+
107
+ template <class CharT, class Traits>
108
+ friend typename absl::enable_if_t<(sizeof(state_type) == 16),
109
+ std::basic_ostream<CharT, Traits>&>
110
+ operator<<(
111
+ std::basic_ostream<CharT, Traits>& os, // NOLINT(runtime/references)
112
+ const pcg_engine& engine) {
113
+ auto saver = random_internal::make_ostream_state_saver(os);
114
+ random_internal::stream_u128_helper<state_type> helper;
115
+ helper.write(pcg_engine::params_type::multiplier(), os);
116
+ os << os.fill();
117
+ helper.write(pcg_engine::params_type::increment(), os);
118
+ os << os.fill();
119
+ helper.write(engine.state_, os);
120
+ return os;
121
+ }
122
+
123
+ template <class CharT, class Traits>
124
+ friend typename absl::enable_if_t<(sizeof(state_type) <= 8),
125
+ std::basic_ostream<CharT, Traits>&>
126
+ operator<<(
127
+ std::basic_ostream<CharT, Traits>& os, // NOLINT(runtime/references)
128
+ const pcg_engine& engine) {
129
+ auto saver = random_internal::make_ostream_state_saver(os);
130
+ os << pcg_engine::params_type::multiplier() << os.fill();
131
+ os << pcg_engine::params_type::increment() << os.fill();
132
+ os << engine.state_;
133
+ return os;
134
+ }
135
+
136
+ template <class CharT, class Traits>
137
+ friend typename absl::enable_if_t<(sizeof(state_type) == 16),
138
+ std::basic_istream<CharT, Traits>&>
139
+ operator>>(
140
+ std::basic_istream<CharT, Traits>& is, // NOLINT(runtime/references)
141
+ pcg_engine& engine) { // NOLINT(runtime/references)
142
+ random_internal::stream_u128_helper<state_type> helper;
143
+ auto mult = helper.read(is);
144
+ auto inc = helper.read(is);
145
+ auto tmp = helper.read(is);
146
+ if (mult != pcg_engine::params_type::multiplier() ||
147
+ inc != pcg_engine::params_type::increment()) {
148
+ // signal failure by setting the failbit.
149
+ is.setstate(is.rdstate() | std::ios_base::failbit);
150
+ }
151
+ if (!is.fail()) {
152
+ engine.state_ = tmp;
153
+ }
154
+ return is;
155
+ }
156
+
157
+ template <class CharT, class Traits>
158
+ friend typename absl::enable_if_t<(sizeof(state_type) <= 8),
159
+ std::basic_istream<CharT, Traits>&>
160
+ operator>>(
161
+ std::basic_istream<CharT, Traits>& is, // NOLINT(runtime/references)
162
+ pcg_engine& engine) { // NOLINT(runtime/references)
163
+ state_type mult{}, inc{}, tmp{};
164
+ is >> mult >> inc >> tmp;
165
+ if (mult != pcg_engine::params_type::multiplier() ||
166
+ inc != pcg_engine::params_type::increment()) {
167
+ // signal failure by setting the failbit.
168
+ is.setstate(is.rdstate() | std::ios_base::failbit);
169
+ }
170
+ if (!is.fail()) {
171
+ engine.state_ = tmp;
172
+ }
173
+ return is;
174
+ }
175
+
176
+ private:
177
+ state_type state_;
178
+
179
+ // Returns the linear-congruential generator next state.
180
+ static inline constexpr state_type lcg(state_type s) {
181
+ return s * Params::multiplier() + Params::increment();
182
+ }
183
+
184
+ // Returns the linear-congruential arbitrary seek state.
185
+ inline state_type advance(state_type s, uint64_t n) const {
186
+ state_type mult = Params::multiplier();
187
+ state_type inc = Params::increment();
188
+ state_type m = 1;
189
+ state_type i = 0;
190
+ while (n > 0) {
191
+ if (n & 1) {
192
+ m *= mult;
193
+ i = i * mult + inc;
194
+ }
195
+ inc = (mult + 1) * inc;
196
+ mult *= mult;
197
+ n >>= 1;
198
+ }
199
+ return m * s + i;
200
+ }
201
+
202
+ template <class SeedSequence>
203
+ void reseed(SeedSequence& seq) {
204
+ using sequence_result_type = typename SeedSequence::result_type;
205
+ constexpr size_t kBufferSize =
206
+ sizeof(state_type) / sizeof(sequence_result_type);
207
+ sequence_result_type buffer[kBufferSize];
208
+ seq.generate(std::begin(buffer), std::end(buffer));
209
+ // Convert the seed output to a single state value.
210
+ state_type tmp = buffer[0];
211
+ for (size_t i = 1; i < kBufferSize; i++) {
212
+ tmp <<= (sizeof(sequence_result_type) * 8);
213
+ tmp |= buffer[i];
214
+ }
215
+ state_ = lcg(tmp + params_type::increment());
216
+ }
217
+ };
218
+
219
+ // Parameterized implementation of the PCG 128-bit oneseq state.
220
+ // This provides state_type, multiplier, and increment for pcg_engine.
221
+ template <uint64_t kMultA, uint64_t kMultB, uint64_t kIncA, uint64_t kIncB>
222
+ class pcg128_params {
223
+ public:
224
+ #if ABSL_HAVE_INTRINSIC_INT128
225
+ using state_type = __uint128_t;
226
+ static inline constexpr state_type make_u128(uint64_t a, uint64_t b) {
227
+ return (static_cast<__uint128_t>(a) << 64) | b;
228
+ }
229
+ #else
230
+ using state_type = absl::uint128;
231
+ static inline constexpr state_type make_u128(uint64_t a, uint64_t b) {
232
+ return absl::MakeUint128(a, b);
233
+ }
234
+ #endif
235
+
236
+ static inline constexpr state_type multiplier() {
237
+ return make_u128(kMultA, kMultB);
238
+ }
239
+ static inline constexpr state_type increment() {
240
+ return make_u128(kIncA, kIncB);
241
+ }
242
+ };
243
+
244
+ // Implementation of the PCG xsl_rr_128_64 128-bit mixing function, which
245
+ // accepts an input of state_type and mixes it into an output of result_type.
246
+ struct pcg_xsl_rr_128_64 {
247
+ #if ABSL_HAVE_INTRINSIC_INT128
248
+ using state_type = __uint128_t;
249
+ #else
250
+ using state_type = absl::uint128;
251
+ #endif
252
+ using result_type = uint64_t;
253
+
254
+ inline uint64_t operator()(state_type state) {
255
+ // This is equivalent to the xsl_rr_128_64 mixing function.
256
+ #if ABSL_HAVE_INTRINSIC_INT128
257
+ uint64_t rotate = static_cast<uint64_t>(state >> 122u);
258
+ state ^= state >> 64;
259
+ uint64_t s = static_cast<uint64_t>(state);
260
+ #else
261
+ uint64_t h = Uint128High64(state);
262
+ uint64_t rotate = h >> 58u;
263
+ uint64_t s = Uint128Low64(state) ^ h;
264
+ #endif
265
+ return rotr(s, rotate);
266
+ }
267
+ };
268
+
269
+ // Parameterized implementation of the PCG 64-bit oneseq state.
270
+ // This provides state_type, multiplier, and increment for pcg_engine.
271
+ template <uint64_t kMult, uint64_t kInc>
272
+ class pcg64_params {
273
+ public:
274
+ using state_type = uint64_t;
275
+ static inline constexpr state_type multiplier() { return kMult; }
276
+ static inline constexpr state_type increment() { return kInc; }
277
+ };
278
+
279
+ // Implementation of the PCG xsh_rr_64_32 64-bit mixing function, which accepts
280
+ // an input of state_type and mixes it into an output of result_type.
281
+ struct pcg_xsh_rr_64_32 {
282
+ using state_type = uint64_t;
283
+ using result_type = uint32_t;
284
+ inline uint32_t operator()(uint64_t state) {
285
+ return rotr(static_cast<uint32_t>(((state >> 18) ^ state) >> 27),
286
+ state >> 59);
287
+ }
288
+ };
289
+
290
+ // Stable pcg_engine implementations:
291
+ // This is a 64-bit generator using 128-bits of state.
292
+ // The output sequence is equivalent to Melissa O'Neil's pcg64_oneseq.
293
+ using pcg64_2018_engine = pcg_engine<
294
+ random_internal::pcg128_params<0x2360ed051fc65da4ull, 0x4385df649fccf645ull,
295
+ 0x5851f42d4c957f2d, 0x14057b7ef767814f>,
296
+ random_internal::pcg_xsl_rr_128_64>;
297
+
298
+ // This is a 32-bit generator using 64-bits of state.
299
+ // This is equivalent to Melissa O'Neil's pcg32_oneseq.
300
+ using pcg32_2018_engine = pcg_engine<
301
+ random_internal::pcg64_params<0x5851f42d4c957f2dull, 0x14057b7ef767814full>,
302
+ random_internal::pcg_xsh_rr_64_32>;
303
+
304
+ } // namespace random_internal
305
+ ABSL_NAMESPACE_END
306
+ } // namespace absl
307
+
308
+ #endif // ABSL_RANDOM_INTERNAL_PCG_ENGINE_H_