Skip to content
Snippets Groups Projects
Commit ce0fd978 authored by Makarand Dharmapurikar's avatar Makarand Dharmapurikar
Browse files

fix a fuzzer detected corner case

parent 7b02dd6f
No related branches found
No related tags found
No related merge requests found
...@@ -209,26 +209,30 @@ static grpc_error *server_filter_incoming_metadata(grpc_exec_ctx *exec_ctx, ...@@ -209,26 +209,30 @@ static grpc_error *server_filter_incoming_metadata(grpc_exec_ctx *exec_ctx,
for (offset = 0; *path_ptr != k_query_separator[0] && offset < path_length; for (offset = 0; *path_ptr != k_query_separator[0] && offset < path_length;
path_ptr++, offset++) path_ptr++, offset++)
; ;
grpc_slice query_slice = if (offset < path_length) {
grpc_slice_sub(path_slice, offset + 1, path_length); grpc_slice query_slice =
grpc_slice_sub(path_slice, offset + 1, path_length);
/* substitute path metadata with just the path (not query) */
grpc_mdelem mdelem_path_without_query = grpc_mdelem_from_slices( /* substitute path metadata with just the path (not query) */
exec_ctx, GRPC_MDSTR_PATH, grpc_slice_sub(path_slice, 0, offset)); grpc_mdelem mdelem_path_without_query = grpc_mdelem_from_slices(
exec_ctx, GRPC_MDSTR_PATH, grpc_slice_sub(path_slice, 0, offset));
grpc_metadata_batch_substitute(exec_ctx, b, b->idx.named.path,
mdelem_path_without_query); grpc_metadata_batch_substitute(exec_ctx, b, b->idx.named.path,
mdelem_path_without_query);
/* decode payload from query and add to the slice buffer to be returned */
const int k_url_safe = 1; /* decode payload from query and add to the slice buffer to be returned */
grpc_slice_buffer_add( const int k_url_safe = 1;
&calld->read_slice_buffer, grpc_slice_buffer_add(
grpc_base64_decode(exec_ctx, &calld->read_slice_buffer,
(const char *)GRPC_SLICE_START_PTR(query_slice), grpc_base64_decode(exec_ctx,
k_url_safe)); (const char *)GRPC_SLICE_START_PTR(query_slice),
grpc_slice_buffer_stream_init(&calld->read_stream, k_url_safe));
&calld->read_slice_buffer, 0); grpc_slice_buffer_stream_init(&calld->read_stream,
calld->seen_path_with_query = true; &calld->read_slice_buffer, 0);
calld->seen_path_with_query = true;
} else {
gpr_log(GPR_ERROR, "GET request without QUERY");
}
} }
if (b->idx.named.host != NULL && b->idx.named.authority == NULL) { if (b->idx.named.host != NULL && b->idx.named.authority == NULL) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment