// // // Copyright 2015 gRPC authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // // #include "src/core/ext/transport/chttp2/transport/frame_window_update.h" #include #include #include "absl/log/check.h" #include "absl/status/status.h" #include "absl/strings/str_cat.h" #include "absl/strings/str_format.h" #include "src/core/ext/transport/chttp2/transport/call_tracer_wrapper.h" #include "src/core/ext/transport/chttp2/transport/flow_control.h" #include "src/core/ext/transport/chttp2/transport/internal.h" #include "src/core/ext/transport/chttp2/transport/stream_lists.h" grpc_slice grpc_chttp2_window_update_create( uint32_t id, uint32_t window_delta, grpc_core::CallTracerInterface* call_tracer) { static const size_t frame_size = 13; grpc_slice slice = GRPC_SLICE_MALLOC(frame_size); if (call_tracer != nullptr) { call_tracer->RecordOutgoingBytes({frame_size, 0, 0}); } uint8_t* p = GRPC_SLICE_START_PTR(slice); CHECK(window_delta); *p++ = 0; *p++ = 0; *p++ = 4; *p++ = GRPC_CHTTP2_FRAME_WINDOW_UPDATE; *p++ = 0; *p++ = static_cast(id >> 24); *p++ = static_cast(id >> 16); *p++ = static_cast(id >> 8); *p++ = static_cast(id); *p++ = static_cast(window_delta >> 24); *p++ = static_cast(window_delta >> 16); *p++ = static_cast(window_delta >> 8); *p++ = static_cast(window_delta); return slice; } grpc_error_handle grpc_chttp2_window_update_parser_begin_frame( grpc_chttp2_window_update_parser* parser, uint32_t length, uint8_t flags) { if (flags || length != 4) { return GRPC_ERROR_CREATE(absl::StrFormat( "invalid window update: length=%d, flags=%02x", length, flags)); } parser->byte = 0; parser->amount = 0; return absl::OkStatus(); } grpc_error_handle grpc_chttp2_window_update_parser_parse( void* parser, grpc_chttp2_transport* t, grpc_chttp2_stream* s, const grpc_slice& slice, int is_last) { const uint8_t* const beg = GRPC_SLICE_START_PTR(slice); const uint8_t* const end = GRPC_SLICE_END_PTR(slice); const uint8_t* cur = beg; grpc_chttp2_window_update_parser* p = static_cast(parser); while (p->byte != 4 && cur != end) { p->amount |= (static_cast(*cur)) << (8 * (3 - p->byte)); cur++; p->byte++; } if (s != nullptr) { uint64_t framing_bytes = static_cast(end - cur); s->call_tracer_wrapper.RecordIncomingBytes({framing_bytes, 0, 0}); } if (p->byte == 4) { // top bit is reserved and must be ignored. uint32_t received_update = p->amount & 0x7fffffffu; if (received_update == 0) { return GRPC_ERROR_CREATE( absl::StrCat("invalid window update bytes: ", p->amount)); } CHECK(is_last); if (t->incoming_stream_id != 0) { if (s != nullptr) { grpc_core::chttp2::StreamFlowControl::OutgoingUpdateContext( &s->flow_control) .RecvUpdate(received_update); if (grpc_chttp2_list_remove_stalled_by_stream(t, s)) { grpc_chttp2_mark_stream_writable(t, s); grpc_chttp2_initiate_write( t, GRPC_CHTTP2_INITIATE_WRITE_FLOW_CONTROL_UNSTALLED_BY_UPDATE); } } } else { grpc_core::chttp2::TransportFlowControl::OutgoingUpdateContext upd( &t->flow_control); upd.RecvUpdate(received_update); if (upd.Finish() == grpc_core::chttp2::StallEdge::kUnstalled) { grpc_chttp2_initiate_write( t, GRPC_CHTTP2_INITIATE_WRITE_TRANSPORT_FLOW_CONTROL_UNSTALLED); } } } return absl::OkStatus(); }