diff options
author | Yang Gao <yangg@google.com> | 2015-07-22 21:29:02 -0700 |
---|---|---|
committer | Yang Gao <yangg@google.com> | 2015-07-22 21:29:02 -0700 |
commit | 8b89bdeee74dbf7bf7f9e1074c392730f0cd6453 (patch) | |
tree | b23fa74eaca65f007e513b7e441c4f60aa688319 /src/core/channel | |
parent | be7d16daf2067d9a41e3c6a98c2c350bff484bd5 (diff) | |
parent | d9ddc77ff0fb5b9e6a5062e73484ca5650d82afa (diff) |
Merge pull request #2622 from ctiller/look-at-the-trees
Prevent applications from sending reserved metadata
Diffstat (limited to 'src/core/channel')
-rw-r--r-- | src/core/channel/http_client_filter.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/core/channel/http_client_filter.c b/src/core/channel/http_client_filter.c index bc821b16fa..6e93103a6a 100644 --- a/src/core/channel/http_client_filter.c +++ b/src/core/channel/http_client_filter.c @@ -98,6 +98,18 @@ static void hc_on_recv(void *user_data, int success) { calld->on_done_recv->cb(calld->on_done_recv->cb_arg, success); } +static grpc_mdelem *client_strip_filter(void *user_data, grpc_mdelem *md) { + grpc_call_element *elem = user_data; + channel_data *channeld = elem->channel_data; + /* eat the things we'd like to set ourselves */ + if (md->key == channeld->method->key) return NULL; + if (md->key == channeld->scheme->key) return NULL; + if (md->key == channeld->te_trailers->key) return NULL; + if (md->key == channeld->content_type->key) return NULL; + if (md->key == channeld->user_agent->key) return NULL; + return md; +} + static void hc_mutate_op(grpc_call_element *elem, grpc_transport_stream_op *op) { /* grab pointers to our data from the call element */ @@ -111,6 +123,7 @@ static void hc_mutate_op(grpc_call_element *elem, grpc_stream_op *op = &ops[i]; if (op->type != GRPC_OP_METADATA) continue; calld->sent_initial_metadata = 1; + grpc_metadata_batch_filter(&op->data.metadata, client_strip_filter, elem); /* Send : prefixed headers, which have to be before any application layer headers. */ grpc_metadata_batch_add_head(&op->data.metadata, &calld->method, |