blob: 3a2a479b79f48dedb5d85efc3df748a05a876040 [file] [log] [blame]
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001/*
Craig Tiller06059952015-02-18 08:34:56 -08002 * Copyright 2015, Google Inc.
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08003 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met:
8 *
9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * * Redistributions in binary form must reproduce the above
12 * copyright notice, this list of conditions and the following disclaimer
13 * in the documentation and/or other materials provided with the
14 * distribution.
15 * * Neither the name of Google Inc. nor the names of its
16 * contributors may be used to endorse or promote products derived from
17 * this software without specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 *
31 */
32
33#include "src/core/channel/http_client_filter.h"
David Klempnera1e86932015-01-13 18:13:59 -080034#include <string.h>
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080035#include <grpc/support/log.h>
36
Yang Gao5fd0d292015-01-26 00:19:48 -080037typedef struct call_data {
Craig Tiller6902ad22015-04-16 08:01:49 -070038 grpc_linked_mdelem method;
39 grpc_linked_mdelem scheme;
40 grpc_linked_mdelem te_trailers;
41 grpc_linked_mdelem content_type;
Craig Tiller83f88d92015-04-21 16:02:05 -070042 int sent_initial_metadata;
43
44 int got_initial_metadata;
45 grpc_stream_op_buffer *recv_ops;
Craig Tiller1e6facb2015-06-11 22:47:11 -070046
Craig Tiller98bf7e62015-06-24 08:47:07 -070047 /** Closure to call when finished with the hc_on_recv hook */
48 grpc_iomgr_closure *on_done_recv;
49 /** Receive closures are chained: we inject this closure as the on_done_recv
50 up-call on transport_op, and remember to call our on_done_recv member
51 after handling it. */
Craig Tiller1e6facb2015-06-11 22:47:11 -070052 grpc_iomgr_closure hc_on_recv;
Yang Gao5fd0d292015-01-26 00:19:48 -080053} call_data;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080054
klempnerc463f742014-12-19 13:03:35 -080055typedef struct channel_data {
56 grpc_mdelem *te_trailers;
57 grpc_mdelem *method;
58 grpc_mdelem *scheme;
59 grpc_mdelem *content_type;
Craig Tiller5b9efed2015-02-03 20:13:06 -080060 grpc_mdelem *status;
klempnerc463f742014-12-19 13:03:35 -080061} channel_data;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080062
63/* used to silence 'variable not used' warnings */
64static void ignore_unused(void *ignored) {}
65
Craig Tiller6902ad22015-04-16 08:01:49 -070066static grpc_mdelem *client_filter(void *user_data, grpc_mdelem *md) {
67 grpc_call_element *elem = user_data;
68 channel_data *channeld = elem->channel_data;
69 if (md == channeld->status) {
70 return NULL;
71 } else if (md->key == channeld->status->key) {
72 grpc_call_element_send_cancel(elem);
73 return NULL;
74 }
75 return md;
76}
77
Craig Tiller83f88d92015-04-21 16:02:05 -070078static void hc_on_recv(void *user_data, int success) {
79 grpc_call_element *elem = user_data;
80 call_data *calld = elem->call_data;
81 if (success) {
82 size_t i;
83 size_t nops = calld->recv_ops->nops;
84 grpc_stream_op *ops = calld->recv_ops->ops;
85 for (i = 0; i < nops; i++) {
86 grpc_stream_op *op = &ops[i];
87 if (op->type != GRPC_OP_METADATA) continue;
88 calld->got_initial_metadata = 1;
89 grpc_metadata_batch_filter(&op->data.metadata, client_filter, elem);
90 }
91 }
Craig Tiller1e6facb2015-06-11 22:47:11 -070092 calld->on_done_recv->cb(calld->on_done_recv->cb_arg, success);
Craig Tiller83f88d92015-04-21 16:02:05 -070093}
94
Craig Tillerd9ddc772015-07-10 13:00:05 -070095static grpc_mdelem *client_strip_filter(void *user_data, grpc_mdelem *md) {
96 grpc_call_element *elem = user_data;
97 channel_data *channeld = elem->channel_data;
98 /* eat the things we'd like to set ourselves */
99 if (md->key == channeld->method->key) return NULL;
100 if (md->key == channeld->scheme->key) return NULL;
101 if (md->key == channeld->te_trailers->key) return NULL;
102 if (md->key == channeld->content_type->key) return NULL;
103 if (md->key == channeld->user_agent->key) return NULL;
104 return md;
105}
106
Craig Tillerb7959a02015-06-25 08:50:54 -0700107static void hc_mutate_op(grpc_call_element *elem,
108 grpc_transport_stream_op *op) {
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800109 /* grab pointers to our data from the call element */
110 call_data *calld = elem->call_data;
111 channel_data *channeld = elem->channel_data;
Craig Tiller83f88d92015-04-21 16:02:05 -0700112 size_t i;
Craig Tiller83f88d92015-04-21 16:02:05 -0700113 if (op->send_ops && !calld->sent_initial_metadata) {
114 size_t nops = op->send_ops->nops;
115 grpc_stream_op *ops = op->send_ops->ops;
116 for (i = 0; i < nops; i++) {
117 grpc_stream_op *op = &ops[i];
118 if (op->type != GRPC_OP_METADATA) continue;
119 calld->sent_initial_metadata = 1;
Craig Tillerd9ddc772015-07-10 13:00:05 -0700120 grpc_metadata_batch_filter(&op->data.metadata, client_strip_filter, elem);
Craig Tiller6902ad22015-04-16 08:01:49 -0700121 /* Send : prefixed headers, which have to be before any application
Craig Tiller83f88d92015-04-21 16:02:05 -0700122 layer headers. */
Craig Tiller205aee12015-04-16 14:46:41 -0700123 grpc_metadata_batch_add_head(&op->data.metadata, &calld->method,
Craig Tiller1a65a232015-07-06 10:22:32 -0700124 GRPC_MDELEM_REF(channeld->method));
Craig Tiller205aee12015-04-16 14:46:41 -0700125 grpc_metadata_batch_add_head(&op->data.metadata, &calld->scheme,
Craig Tiller1a65a232015-07-06 10:22:32 -0700126 GRPC_MDELEM_REF(channeld->scheme));
Craig Tiller205aee12015-04-16 14:46:41 -0700127 grpc_metadata_batch_add_tail(&op->data.metadata, &calld->te_trailers,
Craig Tiller1a65a232015-07-06 10:22:32 -0700128 GRPC_MDELEM_REF(channeld->te_trailers));
Craig Tiller205aee12015-04-16 14:46:41 -0700129 grpc_metadata_batch_add_tail(&op->data.metadata, &calld->content_type,
Craig Tiller1a65a232015-07-06 10:22:32 -0700130 GRPC_MDELEM_REF(channeld->content_type));
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800131 break;
Craig Tiller83f88d92015-04-21 16:02:05 -0700132 }
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800133 }
Craig Tiller83f88d92015-04-21 16:02:05 -0700134
135 if (op->recv_ops && !calld->got_initial_metadata) {
136 /* substitute our callback for the higher callback */
137 calld->recv_ops = op->recv_ops;
138 calld->on_done_recv = op->on_done_recv;
Craig Tiller1e6facb2015-06-11 22:47:11 -0700139 op->on_done_recv = &calld->hc_on_recv;
Craig Tiller83f88d92015-04-21 16:02:05 -0700140 }
Craig Tiller50d9db52015-04-23 10:52:14 -0700141}
Craig Tiller83f88d92015-04-21 16:02:05 -0700142
Craig Tiller06aeea72015-04-23 10:54:45 -0700143static void hc_start_transport_op(grpc_call_element *elem,
Craig Tillerb7959a02015-06-25 08:50:54 -0700144 grpc_transport_stream_op *op) {
Craig Tiller50d9db52015-04-23 10:52:14 -0700145 GRPC_CALL_LOG_OP(GPR_INFO, elem, op);
146 hc_mutate_op(elem, op);
Craig Tiller83f88d92015-04-21 16:02:05 -0700147 grpc_call_next_op(elem, op);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800148}
149
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800150/* Constructor for call_data */
151static void init_call_elem(grpc_call_element *elem,
Craig Tiller50d9db52015-04-23 10:52:14 -0700152 const void *server_transport_data,
Craig Tillerb7959a02015-06-25 08:50:54 -0700153 grpc_transport_stream_op *initial_op) {
Craig Tiller83f88d92015-04-21 16:02:05 -0700154 call_data *calld = elem->call_data;
155 calld->sent_initial_metadata = 0;
156 calld->got_initial_metadata = 0;
Craig Tiller1e6facb2015-06-11 22:47:11 -0700157 calld->on_done_recv = NULL;
158 grpc_iomgr_closure_init(&calld->hc_on_recv, hc_on_recv, elem);
Craig Tiller50d9db52015-04-23 10:52:14 -0700159 if (initial_op) hc_mutate_op(elem, initial_op);
Craig Tiller83f88d92015-04-21 16:02:05 -0700160}
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800161
162/* Destructor for call_data */
163static void destroy_call_elem(grpc_call_element *elem) {
164 /* grab pointers to our data from the call element */
165 call_data *calld = elem->call_data;
166 channel_data *channeld = elem->channel_data;
167
168 ignore_unused(calld);
169 ignore_unused(channeld);
170}
171
David Klempnered0cbc82015-01-14 14:46:10 -0800172static const char *scheme_from_args(const grpc_channel_args *args) {
Nicolas "Pixel" Noble213ed912015-01-30 02:11:35 +0100173 unsigned i;
David Klempnera1e86932015-01-13 18:13:59 -0800174 if (args != NULL) {
175 for (i = 0; i < args->num_args; ++i) {
176 if (args->args[i].type == GRPC_ARG_STRING &&
David Klempnered0cbc82015-01-14 14:46:10 -0800177 strcmp(args->args[i].key, GRPC_ARG_HTTP2_SCHEME) == 0) {
David Klempnera1e86932015-01-13 18:13:59 -0800178 return args->args[i].value.string;
179 }
180 }
181 }
182 return "http";
183}
184
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800185/* Constructor for channel_data */
Craig Tiller079a11b2015-06-30 10:07:15 -0700186static void init_channel_elem(grpc_channel_element *elem, grpc_channel *master,
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800187 const grpc_channel_args *args, grpc_mdctx *mdctx,
188 int is_first, int is_last) {
189 /* grab pointers to our data from the channel element */
190 channel_data *channeld = elem->channel_data;
191
192 /* The first and the last filters tend to be implemented differently to
193 handle the case that there's no 'next' filter to call on the up or down
194 path */
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800195 GPR_ASSERT(!is_last);
196
197 /* initialize members */
198 channeld->te_trailers = grpc_mdelem_from_strings(mdctx, "te", "trailers");
klempnerc463f742014-12-19 13:03:35 -0800199 channeld->method = grpc_mdelem_from_strings(mdctx, ":method", "POST");
David Klempnera1e86932015-01-13 18:13:59 -0800200 channeld->scheme =
201 grpc_mdelem_from_strings(mdctx, ":scheme", scheme_from_args(args));
klempnerc463f742014-12-19 13:03:35 -0800202 channeld->content_type =
203 grpc_mdelem_from_strings(mdctx, "content-type", "application/grpc");
Craig Tiller5b9efed2015-02-03 20:13:06 -0800204 channeld->status = grpc_mdelem_from_strings(mdctx, ":status", "200");
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800205}
206
207/* Destructor for channel data */
208static void destroy_channel_elem(grpc_channel_element *elem) {
209 /* grab pointers to our data from the channel element */
210 channel_data *channeld = elem->channel_data;
211
Craig Tiller1a65a232015-07-06 10:22:32 -0700212 GRPC_MDELEM_UNREF(channeld->te_trailers);
213 GRPC_MDELEM_UNREF(channeld->method);
214 GRPC_MDELEM_UNREF(channeld->scheme);
215 GRPC_MDELEM_UNREF(channeld->content_type);
216 GRPC_MDELEM_UNREF(channeld->status);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800217}
218
219const grpc_channel_filter grpc_http_client_filter = {
Craig Tillere039f032015-06-25 12:54:23 -0700220 hc_start_transport_op, grpc_channel_next_op, sizeof(call_data),
221 init_call_elem, destroy_call_elem, sizeof(channel_data),
222 init_channel_elem, destroy_channel_elem, "http-client"};