grpc 1.3.4 → 1.4.0
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.
- checksums.yaml +4 -4
- data/Makefile +581 -450
- data/include/grpc/census.h +49 -49
- data/include/grpc/grpc.h +16 -70
- data/include/grpc/grpc_security.h +59 -59
- data/include/grpc/grpc_security_constants.h +9 -9
- data/include/grpc/impl/codegen/atm.h +1 -1
- data/include/grpc/impl/codegen/atm_windows.h +4 -4
- data/include/grpc/impl/codegen/byte_buffer_reader.h +2 -2
- data/include/grpc/impl/codegen/compression_types.h +4 -5
- data/include/grpc/impl/codegen/gpr_slice.h +5 -5
- data/include/grpc/impl/codegen/gpr_types.h +6 -7
- data/include/grpc/impl/codegen/grpc_types.h +128 -59
- data/include/grpc/impl/codegen/port_platform.h +6 -0
- data/include/grpc/impl/codegen/propagation_bits.h +2 -2
- data/include/grpc/impl/codegen/slice.h +13 -12
- data/include/grpc/impl/codegen/status.h +23 -18
- data/include/grpc/impl/codegen/sync.h +1 -1
- data/include/grpc/load_reporting.h +6 -6
- data/include/grpc/slice.h +47 -25
- data/include/grpc/slice_buffer.h +18 -14
- data/include/grpc/support/alloc.h +7 -7
- data/include/grpc/support/cmdline.h +10 -10
- data/include/grpc/support/cpu.h +3 -3
- data/include/grpc/support/histogram.h +1 -1
- data/include/grpc/support/host_port.h +2 -2
- data/include/grpc/support/log.h +9 -9
- data/include/grpc/support/log_windows.h +1 -1
- data/include/grpc/support/string_util.h +3 -3
- data/include/grpc/support/subprocess.h +3 -3
- data/include/grpc/support/sync.h +31 -31
- data/include/grpc/support/thd.h +11 -11
- data/include/grpc/support/time.h +12 -12
- data/include/grpc/support/tls.h +1 -1
- data/include/grpc/support/tls_gcc.h +2 -2
- data/include/grpc/support/tls_msvc.h +1 -1
- data/include/grpc/support/tls_pthread.h +1 -1
- data/include/grpc/support/useful.h +2 -2
- data/include/grpc/support/workaround_list.h +46 -0
- data/src/core/ext/census/context.c +1 -1
- data/src/core/ext/census/intrusive_hash_map.c +319 -0
- data/src/core/ext/census/intrusive_hash_map.h +167 -0
- data/src/core/ext/census/intrusive_hash_map_internal.h +63 -0
- data/src/core/ext/census/resource.c +3 -1
- data/src/core/ext/filters/client_channel/channel_connectivity.c +1 -1
- data/src/core/ext/filters/client_channel/client_channel.c +173 -103
- data/src/core/ext/filters/client_channel/client_channel_plugin.c +3 -2
- data/src/core/ext/filters/client_channel/lb_policy.c +2 -1
- data/src/core/ext/filters/client_channel/lb_policy.h +8 -7
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.c +153 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.h +42 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.c +405 -102
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.c +133 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h +65 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.c +90 -51
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h +7 -1
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c +19 -8
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h +63 -34
- data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.c +2 -1
- data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.c +188 -294
- data/src/core/ext/filters/client_channel/lb_policy_factory.c +28 -5
- data/src/core/ext/filters/client_channel/lb_policy_factory.h +18 -4
- data/src/core/ext/filters/client_channel/parse_address.c +90 -59
- data/src/core/ext/filters/client_channel/parse_address.h +17 -8
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.c +11 -7
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.c +59 -14
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +6 -0
- data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.c +3 -3
- data/src/core/ext/filters/client_channel/subchannel.c +20 -17
- data/src/core/ext/filters/client_channel/subchannel.h +1 -0
- data/src/core/ext/filters/client_channel/subchannel_index.c +11 -1
- data/src/core/ext/filters/client_channel/uri_parser.c +36 -22
- data/src/core/ext/filters/client_channel/uri_parser.h +1 -1
- data/src/core/{lib/channel → ext/filters/deadline}/deadline_filter.c +42 -17
- data/src/core/{lib/channel → ext/filters/deadline}/deadline_filter.h +8 -9
- data/src/core/{lib/channel → ext/filters/http/client}/http_client_filter.c +19 -11
- data/src/core/{lib/channel → ext/filters/http/client}/http_client_filter.h +3 -6
- data/src/core/ext/filters/http/http_filters_plugin.c +104 -0
- data/src/core/{lib/channel/compress_filter.c → ext/filters/http/message_compress/message_compress_filter.c} +124 -23
- data/src/core/{lib/channel/compress_filter.h → ext/filters/http/message_compress/message_compress_filter.h} +5 -6
- data/src/core/{lib/channel → ext/filters/http/server}/http_server_filter.c +4 -6
- data/src/core/{lib/channel → ext/filters/http/server}/http_server_filter.h +3 -3
- data/src/core/ext/filters/load_reporting/load_reporting.c +2 -25
- data/src/core/ext/filters/load_reporting/load_reporting_filter.c +26 -1
- data/src/core/ext/filters/max_age/max_age_filter.c +14 -14
- data/src/core/{lib/channel → ext/filters/message_size}/message_size_filter.c +91 -47
- data/src/core/{lib/channel → ext/filters/message_size}/message_size_filter.h +3 -3
- data/src/core/ext/filters/workarounds/workaround_cronet_compression_filter.c +223 -0
- data/src/core/ext/filters/workarounds/workaround_cronet_compression_filter.h +40 -0
- data/src/core/ext/filters/workarounds/workaround_utils.c +65 -0
- data/src/core/ext/filters/workarounds/workaround_utils.h +52 -0
- data/src/core/ext/transport/chttp2/client/insecure/channel_create.c +1 -1
- data/src/core/ext/transport/chttp2/server/chttp2_server.c +3 -2
- data/src/core/ext/transport/chttp2/transport/bin_decoder.c +2 -2
- data/src/core/ext/transport/chttp2/transport/bin_encoder.c +3 -3
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.c +319 -175
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +3 -2
- data/src/core/ext/transport/chttp2/transport/frame_data.c +203 -164
- data/src/core/ext/transport/chttp2/transport/frame_data.h +8 -14
- data/src/core/ext/transport/chttp2/transport/frame_goaway.c +1 -1
- data/src/core/ext/transport/chttp2/transport/frame_ping.c +1 -1
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.c +1 -1
- data/src/core/ext/transport/chttp2/transport/frame_settings.c +5 -5
- data/src/core/ext/transport/chttp2/transport/frame_window_update.c +1 -1
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.c +4 -4
- data/src/core/ext/transport/chttp2/transport/hpack_parser.c +2 -4
- data/src/core/ext/transport/chttp2/transport/hpack_table.c +4 -3
- data/src/core/ext/transport/chttp2/transport/internal.h +50 -33
- data/src/core/ext/transport/chttp2/transport/parsing.c +10 -11
- data/src/core/ext/transport/chttp2/transport/writing.c +32 -13
- data/src/core/lib/channel/channel_args.c +30 -9
- data/src/core/lib/channel/channel_args.h +5 -1
- data/src/core/lib/channel/channel_stack.c +1 -1
- data/src/core/lib/channel/channel_stack.h +2 -2
- data/src/core/lib/channel/channel_stack_builder.c +13 -1
- data/src/core/lib/channel/channel_stack_builder.h +5 -1
- data/src/core/lib/channel/connected_channel.c +3 -1
- data/src/core/lib/channel/context.h +2 -2
- data/src/core/lib/compression/message_compress.c +2 -2
- data/src/core/lib/debug/trace.c +13 -6
- data/src/core/lib/debug/trace.h +27 -1
- data/src/core/lib/http/httpcli.c +1 -1
- data/src/core/lib/http/httpcli_security_connector.c +9 -11
- data/src/core/lib/http/parser.c +2 -2
- data/src/core/lib/http/parser.h +2 -1
- data/src/core/lib/iomgr/combiner.c +6 -6
- data/src/core/lib/iomgr/combiner.h +2 -1
- data/src/core/lib/iomgr/error.c +12 -5
- data/src/core/lib/iomgr/error.h +13 -13
- data/src/core/lib/iomgr/ev_epoll1_linux.c +984 -0
- data/src/core/lib/iomgr/ev_epoll1_linux.h +44 -0
- data/src/core/lib/iomgr/ev_epoll_limited_pollers_linux.c +2146 -0
- data/src/core/lib/iomgr/ev_epoll_limited_pollers_linux.h +43 -0
- data/src/core/lib/iomgr/ev_epoll_thread_pool_linux.c +1337 -0
- data/src/core/lib/iomgr/ev_epoll_thread_pool_linux.h +43 -0
- data/src/core/lib/iomgr/ev_epollex_linux.c +1511 -0
- data/src/core/lib/iomgr/ev_epollex_linux.h +43 -0
- data/src/core/lib/iomgr/{ev_epoll_linux.c → ev_epollsig_linux.c} +41 -33
- data/src/core/lib/iomgr/{ev_epoll_linux.h → ev_epollsig_linux.h} +4 -4
- data/src/core/lib/iomgr/ev_poll_posix.c +12 -27
- data/src/core/lib/iomgr/ev_poll_posix.h +2 -2
- data/src/core/lib/iomgr/ev_posix.c +22 -8
- data/src/core/lib/iomgr/ev_posix.h +4 -3
- data/src/core/lib/iomgr/ev_windows.c +43 -0
- data/src/core/lib/iomgr/exec_ctx.c +5 -0
- data/src/core/lib/iomgr/exec_ctx.h +2 -0
- data/src/core/lib/iomgr/iomgr.c +4 -0
- data/src/core/lib/iomgr/iomgr.h +3 -0
- data/src/core/lib/iomgr/is_epollexclusive_available.c +116 -0
- data/src/core/lib/iomgr/is_epollexclusive_available.h +41 -0
- data/src/core/lib/iomgr/lockfree_event.c +16 -0
- data/src/core/lib/iomgr/pollset.h +2 -5
- data/src/core/lib/iomgr/pollset_uv.c +1 -1
- data/src/core/lib/iomgr/pollset_windows.c +3 -3
- data/src/core/lib/iomgr/resource_quota.c +9 -8
- data/src/core/lib/iomgr/resource_quota.h +2 -1
- data/src/core/lib/iomgr/sockaddr_utils.h +1 -1
- data/src/core/lib/iomgr/socket_mutator.h +2 -0
- data/src/core/lib/iomgr/sys_epoll_wrapper.h +43 -0
- data/src/core/lib/iomgr/tcp_client_posix.c +6 -6
- data/src/core/lib/iomgr/tcp_client_uv.c +3 -3
- data/src/core/lib/iomgr/tcp_posix.c +7 -7
- data/src/core/lib/iomgr/tcp_posix.h +2 -1
- data/src/core/lib/iomgr/tcp_server_posix.c +1 -1
- data/src/core/lib/iomgr/tcp_uv.c +6 -6
- data/src/core/lib/iomgr/tcp_uv.h +2 -1
- data/src/core/lib/iomgr/tcp_windows.c +1 -1
- data/src/core/lib/iomgr/timer_generic.c +24 -25
- data/src/core/lib/iomgr/timer_manager.c +276 -0
- data/src/core/lib/iomgr/timer_manager.h +52 -0
- data/src/core/lib/iomgr/timer_uv.c +6 -0
- data/src/core/lib/iomgr/udp_server.c +42 -9
- data/src/core/lib/iomgr/udp_server.h +3 -1
- data/src/core/lib/security/credentials/credentials.c +0 -1
- data/src/core/lib/security/credentials/fake/fake_credentials.c +23 -0
- data/src/core/lib/security/credentials/fake/fake_credentials.h +12 -9
- data/src/core/lib/security/credentials/google_default/google_default_credentials.c +1 -1
- data/src/core/lib/security/credentials/jwt/jwt_credentials.c +1 -1
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.c +1 -1
- data/src/core/lib/security/credentials/ssl/ssl_credentials.c +24 -53
- data/src/core/lib/security/transport/client_auth_filter.c +9 -3
- data/src/core/lib/security/transport/secure_endpoint.c +7 -7
- data/src/core/lib/security/transport/secure_endpoint.h +1 -1
- data/src/core/lib/security/transport/security_connector.c +45 -57
- data/src/core/lib/security/transport/security_connector.h +10 -14
- data/src/core/lib/security/transport/security_handshaker.c +123 -97
- data/src/core/lib/slice/b64.c +1 -1
- data/src/core/lib/slice/percent_encoding.c +3 -3
- data/src/core/lib/slice/slice.c +66 -33
- data/src/core/lib/slice/slice_buffer.c +25 -6
- data/src/core/lib/slice/slice_hash_table.c +33 -35
- data/src/core/lib/slice/slice_hash_table.h +7 -12
- data/src/core/lib/support/atomic.h +45 -0
- data/src/core/lib/support/atomic_with_atm.h +70 -0
- data/src/core/lib/support/atomic_with_std.h +48 -0
- data/src/core/lib/support/avl.c +14 -14
- data/src/core/lib/support/cmdline.c +3 -3
- data/src/core/lib/support/histogram.c +2 -2
- data/src/core/lib/support/host_port.c +1 -1
- data/src/core/lib/support/memory.h +74 -0
- data/src/core/lib/support/mpscq.c +36 -2
- data/src/core/lib/support/mpscq.h +28 -1
- data/src/core/lib/support/stack_lockfree.c +3 -36
- data/src/core/lib/support/string.c +12 -12
- data/src/core/lib/support/string_posix.c +1 -1
- data/src/core/lib/support/subprocess_posix.c +2 -2
- data/src/core/lib/support/thd_posix.c +1 -1
- data/src/core/lib/support/time_posix.c +8 -0
- data/src/core/lib/support/tmpfile_posix.c +10 -10
- data/src/core/lib/surface/alarm.c +3 -1
- data/src/core/lib/surface/api_trace.c +2 -1
- data/src/core/lib/surface/api_trace.h +2 -2
- data/src/core/lib/surface/byte_buffer_reader.c +1 -1
- data/src/core/lib/surface/call.c +65 -22
- data/src/core/lib/surface/call.h +4 -2
- data/src/core/lib/surface/channel_init.c +2 -19
- data/src/core/lib/surface/channel_stack_type.c +18 -0
- data/src/core/lib/surface/channel_stack_type.h +2 -0
- data/src/core/lib/surface/completion_queue.c +694 -247
- data/src/core/lib/surface/completion_queue.h +30 -13
- data/src/core/lib/surface/completion_queue_factory.c +24 -9
- data/src/core/lib/surface/init.c +1 -52
- data/src/core/lib/surface/{lame_client.c → lame_client.cc} +37 -26
- data/src/core/lib/surface/server.c +79 -110
- data/src/core/lib/surface/server.h +2 -1
- data/src/core/lib/surface/version.c +2 -2
- data/src/core/lib/transport/bdp_estimator.c +25 -9
- data/src/core/lib/transport/bdp_estimator.h +7 -1
- data/src/core/lib/transport/byte_stream.c +23 -9
- data/src/core/lib/transport/byte_stream.h +15 -6
- data/src/core/lib/transport/connectivity_state.c +6 -6
- data/src/core/lib/transport/connectivity_state.h +2 -1
- data/src/core/lib/transport/service_config.c +6 -13
- data/src/core/lib/transport/service_config.h +2 -2
- data/src/core/lib/transport/static_metadata.c +403 -389
- data/src/core/lib/transport/static_metadata.h +127 -114
- data/src/core/plugin_registry/grpc_plugin_registry.c +16 -0
- data/src/core/tsi/fake_transport_security.c +5 -4
- data/src/core/tsi/ssl_transport_security.c +71 -82
- data/src/core/tsi/ssl_transport_security.h +39 -61
- data/src/core/tsi/transport_security.c +83 -2
- data/src/core/tsi/transport_security.h +27 -2
- data/src/core/tsi/transport_security_adapter.c +236 -0
- data/src/core/tsi/transport_security_adapter.h +62 -0
- data/src/core/tsi/transport_security_interface.h +179 -66
- data/src/ruby/ext/grpc/extconf.rb +2 -1
- data/src/ruby/ext/grpc/rb_byte_buffer.c +8 -6
- data/src/ruby/ext/grpc/rb_call.c +56 -48
- data/src/ruby/ext/grpc/rb_call.h +3 -4
- data/src/ruby/ext/grpc/rb_call_credentials.c +23 -22
- data/src/ruby/ext/grpc/rb_channel.c +2 -3
- data/src/ruby/ext/grpc/rb_channel_args.c +11 -9
- data/src/ruby/ext/grpc/rb_channel_credentials.c +16 -12
- data/src/ruby/ext/grpc/rb_completion_queue.c +7 -9
- data/src/ruby/ext/grpc/rb_compression_options.c +7 -6
- data/src/ruby/ext/grpc/rb_event_thread.c +10 -12
- data/src/ruby/ext/grpc/rb_event_thread.h +1 -2
- data/src/ruby/ext/grpc/rb_grpc.c +11 -15
- data/src/ruby/ext/grpc/rb_grpc.h +2 -2
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +16 -6
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +25 -10
- data/src/ruby/ext/grpc/rb_server.c +26 -28
- data/src/ruby/lib/grpc/grpc.rb +1 -1
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/third_party/cares/config_linux/ares_config.h +36 -2
- data/third_party/zlib/adler32.c +14 -7
- data/third_party/zlib/compress.c +24 -18
- data/third_party/zlib/crc32.c +29 -12
- data/third_party/zlib/deflate.c +499 -303
- data/third_party/zlib/deflate.h +19 -16
- data/third_party/zlib/gzguts.h +16 -7
- data/third_party/zlib/gzlib.c +17 -14
- data/third_party/zlib/gzread.c +108 -48
- data/third_party/zlib/gzwrite.c +210 -122
- data/third_party/zlib/infback.c +2 -2
- data/third_party/zlib/inffast.c +34 -51
- data/third_party/zlib/inflate.c +86 -37
- data/third_party/zlib/inflate.h +7 -4
- data/third_party/zlib/inftrees.c +12 -14
- data/third_party/zlib/trees.c +38 -61
- data/third_party/zlib/uncompr.c +66 -32
- data/third_party/zlib/zconf.h +32 -9
- data/third_party/zlib/zlib.h +298 -154
- data/third_party/zlib/zutil.c +25 -24
- data/third_party/zlib/zutil.h +35 -17
- metadata +63 -30
@@ -34,11 +34,12 @@
|
|
34
34
|
#ifndef GRPC_CORE_EXT_TRANSPORT_CHTTP2_TRANSPORT_CHTTP2_TRANSPORT_H
|
35
35
|
#define GRPC_CORE_EXT_TRANSPORT_CHTTP2_TRANSPORT_CHTTP2_TRANSPORT_H
|
36
36
|
|
37
|
+
#include "src/core/lib/debug/trace.h"
|
37
38
|
#include "src/core/lib/iomgr/endpoint.h"
|
38
39
|
#include "src/core/lib/transport/transport.h"
|
39
40
|
|
40
|
-
extern
|
41
|
-
extern
|
41
|
+
extern grpc_tracer_flag grpc_http_trace;
|
42
|
+
extern grpc_tracer_flag grpc_flowctl_trace;
|
42
43
|
|
43
44
|
grpc_transport *grpc_create_chttp2_transport(
|
44
45
|
grpc_exec_ctx *exec_ctx, const grpc_channel_args *channel_args,
|
@@ -40,6 +40,7 @@
|
|
40
40
|
#include <grpc/support/string_util.h>
|
41
41
|
#include <grpc/support/useful.h>
|
42
42
|
#include "src/core/ext/transport/chttp2/transport/internal.h"
|
43
|
+
#include "src/core/lib/slice/slice_internal.h"
|
43
44
|
#include "src/core/lib/slice/slice_string_helpers.h"
|
44
45
|
#include "src/core/lib/support/string.h"
|
45
46
|
#include "src/core/lib/transport/transport.h"
|
@@ -53,16 +54,17 @@ grpc_error *grpc_chttp2_data_parser_init(grpc_chttp2_data_parser *parser) {
|
|
53
54
|
void grpc_chttp2_data_parser_destroy(grpc_exec_ctx *exec_ctx,
|
54
55
|
grpc_chttp2_data_parser *parser) {
|
55
56
|
if (parser->parsing_frame != NULL) {
|
56
|
-
grpc_chttp2_incoming_byte_stream_finished(
|
57
|
+
GRPC_ERROR_UNREF(grpc_chttp2_incoming_byte_stream_finished(
|
57
58
|
exec_ctx, parser->parsing_frame,
|
58
|
-
GRPC_ERROR_CREATE_FROM_STATIC_STRING("Parser destroyed"));
|
59
|
+
GRPC_ERROR_CREATE_FROM_STATIC_STRING("Parser destroyed"), false));
|
59
60
|
}
|
60
61
|
GRPC_ERROR_UNREF(parser->error);
|
61
62
|
}
|
62
63
|
|
63
64
|
grpc_error *grpc_chttp2_data_parser_begin_frame(grpc_chttp2_data_parser *parser,
|
64
65
|
uint8_t flags,
|
65
|
-
uint32_t stream_id
|
66
|
+
uint32_t stream_id,
|
67
|
+
grpc_chttp2_stream *s) {
|
66
68
|
if (flags & ~GRPC_CHTTP2_DATA_FLAG_END_STREAM) {
|
67
69
|
char *msg;
|
68
70
|
gpr_asprintf(&msg, "unsupported data flags: 0x%02x", flags);
|
@@ -74,47 +76,14 @@ grpc_error *grpc_chttp2_data_parser_begin_frame(grpc_chttp2_data_parser *parser,
|
|
74
76
|
}
|
75
77
|
|
76
78
|
if (flags & GRPC_CHTTP2_DATA_FLAG_END_STREAM) {
|
77
|
-
|
79
|
+
s->received_last_frame = true;
|
78
80
|
} else {
|
79
|
-
|
81
|
+
s->received_last_frame = false;
|
80
82
|
}
|
81
83
|
|
82
84
|
return GRPC_ERROR_NONE;
|
83
85
|
}
|
84
86
|
|
85
|
-
void grpc_chttp2_incoming_frame_queue_merge(
|
86
|
-
grpc_chttp2_incoming_frame_queue *head_dst,
|
87
|
-
grpc_chttp2_incoming_frame_queue *tail_src) {
|
88
|
-
if (tail_src->head == NULL) {
|
89
|
-
return;
|
90
|
-
}
|
91
|
-
|
92
|
-
if (head_dst->head == NULL) {
|
93
|
-
*head_dst = *tail_src;
|
94
|
-
memset(tail_src, 0, sizeof(*tail_src));
|
95
|
-
return;
|
96
|
-
}
|
97
|
-
|
98
|
-
head_dst->tail->next_message = tail_src->head;
|
99
|
-
head_dst->tail = tail_src->tail;
|
100
|
-
memset(tail_src, 0, sizeof(*tail_src));
|
101
|
-
}
|
102
|
-
|
103
|
-
grpc_byte_stream *grpc_chttp2_incoming_frame_queue_pop(
|
104
|
-
grpc_chttp2_incoming_frame_queue *q) {
|
105
|
-
grpc_byte_stream *out;
|
106
|
-
if (q->head == NULL) {
|
107
|
-
return NULL;
|
108
|
-
}
|
109
|
-
out = &q->head->base;
|
110
|
-
if (q->head == q->tail) {
|
111
|
-
memset(q, 0, sizeof(*q));
|
112
|
-
} else {
|
113
|
-
q->head = q->head->next_message;
|
114
|
-
}
|
115
|
-
return out;
|
116
|
-
}
|
117
|
-
|
118
87
|
void grpc_chttp2_encode_data(uint32_t id, grpc_slice_buffer *inbuf,
|
119
88
|
uint32_t write_bytes, int is_eof,
|
120
89
|
grpc_transport_one_way_stats *stats,
|
@@ -123,7 +92,7 @@ void grpc_chttp2_encode_data(uint32_t id, grpc_slice_buffer *inbuf,
|
|
123
92
|
uint8_t *p;
|
124
93
|
static const size_t header_size = 9;
|
125
94
|
|
126
|
-
hdr =
|
95
|
+
hdr = GRPC_SLICE_MALLOC(header_size);
|
127
96
|
p = GRPC_SLICE_START_PTR(hdr);
|
128
97
|
GPR_ASSERT(write_bytes < (1 << 24));
|
129
98
|
*p++ = (uint8_t)(write_bytes >> 16);
|
@@ -137,151 +106,221 @@ void grpc_chttp2_encode_data(uint32_t id, grpc_slice_buffer *inbuf,
|
|
137
106
|
*p++ = (uint8_t)(id);
|
138
107
|
grpc_slice_buffer_add(outbuf, hdr);
|
139
108
|
|
140
|
-
|
109
|
+
grpc_slice_buffer_move_first_no_ref(inbuf, write_bytes, outbuf);
|
141
110
|
|
142
111
|
stats->framing_bytes += header_size;
|
143
112
|
stats->data_bytes += write_bytes;
|
144
113
|
}
|
145
114
|
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
uint8_t *cur = beg;
|
153
|
-
uint32_t message_flags;
|
154
|
-
grpc_chttp2_incoming_byte_stream *incoming_byte_stream;
|
155
|
-
char *msg;
|
115
|
+
grpc_error *grpc_deframe_unprocessed_incoming_frames(
|
116
|
+
grpc_exec_ctx *exec_ctx, grpc_chttp2_data_parser *p, grpc_chttp2_stream *s,
|
117
|
+
grpc_slice_buffer *slices, grpc_slice *slice_out,
|
118
|
+
grpc_byte_stream **stream_out) {
|
119
|
+
grpc_error *error = GRPC_ERROR_NONE;
|
120
|
+
grpc_chttp2_transport *t = s->t;
|
156
121
|
|
157
|
-
|
158
|
-
|
159
|
-
|
122
|
+
while (slices->count > 0) {
|
123
|
+
uint8_t *beg = NULL;
|
124
|
+
uint8_t *end = NULL;
|
125
|
+
uint8_t *cur = NULL;
|
160
126
|
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
grpc_chttp2_incoming_byte_stream_push(
|
262
|
-
exec_ctx, p->parsing_frame,
|
263
|
-
grpc_slice_sub(slice, (size_t)(cur - beg), (size_t)(end - beg)));
|
264
|
-
p->frame_size -= remaining;
|
265
|
-
s->stats.incoming.data_bytes += remaining;
|
127
|
+
grpc_slice slice = grpc_slice_buffer_take_first(slices);
|
128
|
+
|
129
|
+
beg = GRPC_SLICE_START_PTR(slice);
|
130
|
+
end = GRPC_SLICE_END_PTR(slice);
|
131
|
+
cur = beg;
|
132
|
+
uint32_t message_flags;
|
133
|
+
char *msg;
|
134
|
+
|
135
|
+
if (cur == end) {
|
136
|
+
grpc_slice_unref_internal(exec_ctx, slice);
|
137
|
+
continue;
|
138
|
+
}
|
139
|
+
|
140
|
+
switch (p->state) {
|
141
|
+
case GRPC_CHTTP2_DATA_ERROR:
|
142
|
+
p->state = GRPC_CHTTP2_DATA_ERROR;
|
143
|
+
grpc_slice_unref_internal(exec_ctx, slice);
|
144
|
+
return GRPC_ERROR_REF(p->error);
|
145
|
+
case GRPC_CHTTP2_DATA_FH_0:
|
146
|
+
p->frame_type = *cur;
|
147
|
+
switch (p->frame_type) {
|
148
|
+
case 0:
|
149
|
+
p->is_frame_compressed = false; /* GPR_FALSE */
|
150
|
+
break;
|
151
|
+
case 1:
|
152
|
+
p->is_frame_compressed = true; /* GPR_TRUE */
|
153
|
+
break;
|
154
|
+
default:
|
155
|
+
gpr_asprintf(&msg, "Bad GRPC frame type 0x%02x", p->frame_type);
|
156
|
+
p->error = GRPC_ERROR_CREATE_FROM_COPIED_STRING(msg);
|
157
|
+
p->error = grpc_error_set_int(p->error, GRPC_ERROR_INT_STREAM_ID,
|
158
|
+
(intptr_t)s->id);
|
159
|
+
gpr_free(msg);
|
160
|
+
msg = grpc_dump_slice(slice, GPR_DUMP_HEX | GPR_DUMP_ASCII);
|
161
|
+
p->error = grpc_error_set_str(p->error, GRPC_ERROR_STR_RAW_BYTES,
|
162
|
+
grpc_slice_from_copied_string(msg));
|
163
|
+
gpr_free(msg);
|
164
|
+
p->error =
|
165
|
+
grpc_error_set_int(p->error, GRPC_ERROR_INT_OFFSET, cur - beg);
|
166
|
+
p->state = GRPC_CHTTP2_DATA_ERROR;
|
167
|
+
grpc_slice_unref_internal(exec_ctx, slice);
|
168
|
+
return GRPC_ERROR_REF(p->error);
|
169
|
+
}
|
170
|
+
if (++cur == end) {
|
171
|
+
p->state = GRPC_CHTTP2_DATA_FH_1;
|
172
|
+
grpc_slice_unref_internal(exec_ctx, slice);
|
173
|
+
continue;
|
174
|
+
}
|
175
|
+
/* fallthrough */
|
176
|
+
case GRPC_CHTTP2_DATA_FH_1:
|
177
|
+
p->frame_size = ((uint32_t)*cur) << 24;
|
178
|
+
if (++cur == end) {
|
179
|
+
p->state = GRPC_CHTTP2_DATA_FH_2;
|
180
|
+
grpc_slice_unref_internal(exec_ctx, slice);
|
181
|
+
continue;
|
182
|
+
}
|
183
|
+
/* fallthrough */
|
184
|
+
case GRPC_CHTTP2_DATA_FH_2:
|
185
|
+
p->frame_size |= ((uint32_t)*cur) << 16;
|
186
|
+
if (++cur == end) {
|
187
|
+
p->state = GRPC_CHTTP2_DATA_FH_3;
|
188
|
+
grpc_slice_unref_internal(exec_ctx, slice);
|
189
|
+
continue;
|
190
|
+
}
|
191
|
+
/* fallthrough */
|
192
|
+
case GRPC_CHTTP2_DATA_FH_3:
|
193
|
+
p->frame_size |= ((uint32_t)*cur) << 8;
|
194
|
+
if (++cur == end) {
|
195
|
+
p->state = GRPC_CHTTP2_DATA_FH_4;
|
196
|
+
grpc_slice_unref_internal(exec_ctx, slice);
|
197
|
+
continue;
|
198
|
+
}
|
199
|
+
/* fallthrough */
|
200
|
+
case GRPC_CHTTP2_DATA_FH_4:
|
201
|
+
GPR_ASSERT(stream_out != NULL);
|
202
|
+
GPR_ASSERT(p->parsing_frame == NULL);
|
203
|
+
p->frame_size |= ((uint32_t)*cur);
|
204
|
+
p->state = GRPC_CHTTP2_DATA_FRAME;
|
205
|
+
++cur;
|
206
|
+
message_flags = 0;
|
207
|
+
if (p->is_frame_compressed) {
|
208
|
+
message_flags |= GRPC_WRITE_INTERNAL_COMPRESS;
|
209
|
+
}
|
210
|
+
p->parsing_frame = grpc_chttp2_incoming_byte_stream_create(
|
211
|
+
exec_ctx, t, s, p->frame_size, message_flags);
|
212
|
+
*stream_out = &p->parsing_frame->base;
|
213
|
+
if (p->parsing_frame->remaining_bytes == 0) {
|
214
|
+
GRPC_ERROR_UNREF(grpc_chttp2_incoming_byte_stream_finished(
|
215
|
+
exec_ctx, p->parsing_frame, GRPC_ERROR_NONE, true));
|
216
|
+
p->parsing_frame = NULL;
|
217
|
+
p->state = GRPC_CHTTP2_DATA_FH_0;
|
218
|
+
}
|
219
|
+
s->pending_byte_stream = true;
|
220
|
+
|
221
|
+
if (cur != end) {
|
222
|
+
grpc_slice_buffer_undo_take_first(
|
223
|
+
&s->unprocessed_incoming_frames_buffer,
|
224
|
+
grpc_slice_sub(slice, (size_t)(cur - beg), (size_t)(end - beg)));
|
225
|
+
}
|
226
|
+
grpc_slice_unref_internal(exec_ctx, slice);
|
266
227
|
return GRPC_ERROR_NONE;
|
228
|
+
case GRPC_CHTTP2_DATA_FRAME: {
|
229
|
+
GPR_ASSERT(p->parsing_frame != NULL);
|
230
|
+
GPR_ASSERT(slice_out != NULL);
|
231
|
+
if (cur == end) {
|
232
|
+
grpc_slice_unref_internal(exec_ctx, slice);
|
233
|
+
continue;
|
234
|
+
}
|
235
|
+
uint32_t remaining = (uint32_t)(end - cur);
|
236
|
+
if (remaining == p->frame_size) {
|
237
|
+
if (GRPC_ERROR_NONE != (error = grpc_chttp2_incoming_byte_stream_push(
|
238
|
+
exec_ctx, p->parsing_frame,
|
239
|
+
grpc_slice_sub(slice, (size_t)(cur - beg),
|
240
|
+
(size_t)(end - beg)),
|
241
|
+
slice_out))) {
|
242
|
+
grpc_slice_unref_internal(exec_ctx, slice);
|
243
|
+
return error;
|
244
|
+
}
|
245
|
+
if (GRPC_ERROR_NONE !=
|
246
|
+
(error = grpc_chttp2_incoming_byte_stream_finished(
|
247
|
+
exec_ctx, p->parsing_frame, GRPC_ERROR_NONE, true))) {
|
248
|
+
grpc_slice_unref_internal(exec_ctx, slice);
|
249
|
+
return error;
|
250
|
+
}
|
251
|
+
p->parsing_frame = NULL;
|
252
|
+
p->state = GRPC_CHTTP2_DATA_FH_0;
|
253
|
+
grpc_slice_unref_internal(exec_ctx, slice);
|
254
|
+
return GRPC_ERROR_NONE;
|
255
|
+
} else if (remaining < p->frame_size) {
|
256
|
+
if (GRPC_ERROR_NONE != (error = grpc_chttp2_incoming_byte_stream_push(
|
257
|
+
exec_ctx, p->parsing_frame,
|
258
|
+
grpc_slice_sub(slice, (size_t)(cur - beg),
|
259
|
+
(size_t)(end - beg)),
|
260
|
+
slice_out))) {
|
261
|
+
return error;
|
262
|
+
}
|
263
|
+
p->frame_size -= remaining;
|
264
|
+
grpc_slice_unref_internal(exec_ctx, slice);
|
265
|
+
return GRPC_ERROR_NONE;
|
266
|
+
} else {
|
267
|
+
GPR_ASSERT(remaining > p->frame_size);
|
268
|
+
if (GRPC_ERROR_NONE !=
|
269
|
+
(grpc_chttp2_incoming_byte_stream_push(
|
270
|
+
exec_ctx, p->parsing_frame,
|
271
|
+
grpc_slice_sub(slice, (size_t)(cur - beg),
|
272
|
+
(size_t)(cur + p->frame_size - beg)),
|
273
|
+
slice_out))) {
|
274
|
+
grpc_slice_unref_internal(exec_ctx, slice);
|
275
|
+
return error;
|
276
|
+
}
|
277
|
+
if (GRPC_ERROR_NONE !=
|
278
|
+
(error = grpc_chttp2_incoming_byte_stream_finished(
|
279
|
+
exec_ctx, p->parsing_frame, GRPC_ERROR_NONE, true))) {
|
280
|
+
grpc_slice_unref_internal(exec_ctx, slice);
|
281
|
+
return error;
|
282
|
+
}
|
283
|
+
p->parsing_frame = NULL;
|
284
|
+
p->state = GRPC_CHTTP2_DATA_FH_0;
|
285
|
+
cur += p->frame_size;
|
286
|
+
grpc_slice_buffer_undo_take_first(
|
287
|
+
&s->unprocessed_incoming_frames_buffer,
|
288
|
+
grpc_slice_sub(slice, (size_t)(cur - beg), (size_t)(end - beg)));
|
289
|
+
grpc_slice_unref_internal(exec_ctx, slice);
|
290
|
+
return GRPC_ERROR_NONE;
|
291
|
+
}
|
267
292
|
}
|
293
|
+
}
|
268
294
|
}
|
269
295
|
|
270
|
-
|
271
|
-
return GRPC_ERROR_CREATE_FROM_STATIC_STRING("Should never reach here"));
|
296
|
+
return GRPC_ERROR_NONE;
|
272
297
|
}
|
273
298
|
|
274
299
|
grpc_error *grpc_chttp2_data_parser_parse(grpc_exec_ctx *exec_ctx, void *parser,
|
275
300
|
grpc_chttp2_transport *t,
|
276
301
|
grpc_chttp2_stream *s,
|
277
302
|
grpc_slice slice, int is_last) {
|
278
|
-
|
279
|
-
|
303
|
+
/* grpc_error *error = parse_inner_buffer(exec_ctx, p, t, s, slice); */
|
304
|
+
s->stats.incoming.framing_bytes += GRPC_SLICE_LENGTH(slice);
|
305
|
+
if (!s->pending_byte_stream) {
|
306
|
+
grpc_slice_ref_internal(slice);
|
307
|
+
grpc_slice_buffer_add(&s->frame_storage, slice);
|
308
|
+
grpc_chttp2_maybe_complete_recv_message(exec_ctx, t, s);
|
309
|
+
} else if (s->on_next) {
|
310
|
+
GPR_ASSERT(s->frame_storage.length == 0);
|
311
|
+
grpc_slice_ref_internal(slice);
|
312
|
+
grpc_slice_buffer_add(&s->unprocessed_incoming_frames_buffer, slice);
|
313
|
+
grpc_closure_sched(exec_ctx, s->on_next, GRPC_ERROR_NONE);
|
314
|
+
s->on_next = NULL;
|
315
|
+
} else {
|
316
|
+
grpc_slice_ref_internal(slice);
|
317
|
+
grpc_slice_buffer_add(&s->frame_storage, slice);
|
318
|
+
}
|
280
319
|
|
281
|
-
if (is_last &&
|
320
|
+
if (is_last && s->received_last_frame) {
|
282
321
|
grpc_chttp2_mark_stream_closed(exec_ctx, t, s, true, false,
|
283
322
|
GRPC_ERROR_NONE);
|
284
323
|
}
|
285
324
|
|
286
|
-
return
|
325
|
+
return GRPC_ERROR_NONE;
|
287
326
|
}
|
@@ -56,28 +56,16 @@ typedef enum {
|
|
56
56
|
typedef struct grpc_chttp2_incoming_byte_stream
|
57
57
|
grpc_chttp2_incoming_byte_stream;
|
58
58
|
|
59
|
-
typedef struct grpc_chttp2_incoming_frame_queue {
|
60
|
-
grpc_chttp2_incoming_byte_stream *head;
|
61
|
-
grpc_chttp2_incoming_byte_stream *tail;
|
62
|
-
} grpc_chttp2_incoming_frame_queue;
|
63
|
-
|
64
59
|
typedef struct {
|
65
60
|
grpc_chttp2_stream_state state;
|
66
|
-
uint8_t is_last_frame;
|
67
61
|
uint8_t frame_type;
|
68
62
|
uint32_t frame_size;
|
69
63
|
grpc_error *error;
|
70
64
|
|
71
|
-
|
65
|
+
bool is_frame_compressed;
|
72
66
|
grpc_chttp2_incoming_byte_stream *parsing_frame;
|
73
67
|
} grpc_chttp2_data_parser;
|
74
68
|
|
75
|
-
void grpc_chttp2_incoming_frame_queue_merge(
|
76
|
-
grpc_chttp2_incoming_frame_queue *head_dst,
|
77
|
-
grpc_chttp2_incoming_frame_queue *tail_src);
|
78
|
-
grpc_byte_stream *grpc_chttp2_incoming_frame_queue_pop(
|
79
|
-
grpc_chttp2_incoming_frame_queue *q);
|
80
|
-
|
81
69
|
/* initialize per-stream state for data frame parsing */
|
82
70
|
grpc_error *grpc_chttp2_data_parser_init(grpc_chttp2_data_parser *parser);
|
83
71
|
|
@@ -87,7 +75,8 @@ void grpc_chttp2_data_parser_destroy(grpc_exec_ctx *exec_ctx,
|
|
87
75
|
/* start processing a new data frame */
|
88
76
|
grpc_error *grpc_chttp2_data_parser_begin_frame(grpc_chttp2_data_parser *parser,
|
89
77
|
uint8_t flags,
|
90
|
-
uint32_t stream_id
|
78
|
+
uint32_t stream_id,
|
79
|
+
grpc_chttp2_stream *s);
|
91
80
|
|
92
81
|
/* handle a slice of a data frame - is_last indicates the last slice of a
|
93
82
|
frame */
|
@@ -101,4 +90,9 @@ void grpc_chttp2_encode_data(uint32_t id, grpc_slice_buffer *inbuf,
|
|
101
90
|
grpc_transport_one_way_stats *stats,
|
102
91
|
grpc_slice_buffer *outbuf);
|
103
92
|
|
93
|
+
grpc_error *grpc_deframe_unprocessed_incoming_frames(
|
94
|
+
grpc_exec_ctx *exec_ctx, grpc_chttp2_data_parser *p, grpc_chttp2_stream *s,
|
95
|
+
grpc_slice_buffer *slices, grpc_slice *slice_out,
|
96
|
+
grpc_byte_stream **stream_out);
|
97
|
+
|
104
98
|
#endif /* GRPC_CORE_EXT_TRANSPORT_CHTTP2_TRANSPORT_FRAME_DATA_H */
|