blob: 99e5066a4efe760a79fcaafe72125a333a98ca4a [file] [log] [blame]
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001/*
2 *
Craig Tiller06059952015-02-18 08:34:56 -08003 * Copyright 2015, Google Inc.
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met:
9 *
10 * * Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * * Redistributions in binary form must reproduce the above
13 * copyright notice, this list of conditions and the following disclaimer
14 * in the documentation and/or other materials provided with the
15 * distribution.
16 * * Neither the name of Google Inc. nor the names of its
17 * contributors may be used to endorse or promote products derived from
18 * this software without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 *
32 */
33
34#include "src/core/channel/http_server_filter.h"
ctillerd74729d2015-01-12 13:31:36 -080035
36#include <string.h>
Craig Tillerc50e3982015-01-20 16:30:54 -080037#include <grpc/support/alloc.h>
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080038#include <grpc/support/log.h>
Craig Tiller1f41b6b2015-10-09 15:07:02 -070039#include "src/core/profiling/timers.h"
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080040
Craig Tillera82950e2015-09-22 12:33:20 -070041typedef struct call_data {
Craig Tiller6902ad22015-04-16 08:01:49 -070042 gpr_uint8 got_initial_metadata;
43 gpr_uint8 seen_path;
44 gpr_uint8 seen_post;
Craig Tillerd2d0a112015-01-19 16:07:52 -080045 gpr_uint8 sent_status;
46 gpr_uint8 seen_scheme;
Craig Tillerd2d0a112015-01-19 16:07:52 -080047 gpr_uint8 seen_te_trailers;
Craig Tillerc4b56b62015-07-23 17:44:11 -070048 gpr_uint8 seen_authority;
Craig Tiller6902ad22015-04-16 08:01:49 -070049 grpc_linked_mdelem status;
Craig Tillercb014172015-09-08 16:40:26 -070050 grpc_linked_mdelem content_type;
Craig Tiller83f88d92015-04-21 16:02:05 -070051
52 grpc_stream_op_buffer *recv_ops;
Craig Tiller98bf7e62015-06-24 08:47:07 -070053 /** Closure to call when finished with the hs_on_recv hook */
Craig Tiller33825112015-09-18 07:44:19 -070054 grpc_closure *on_done_recv;
Craig Tiller98bf7e62015-06-24 08:47:07 -070055 /** Receive closures are chained: we inject this closure as the on_done_recv
56 up-call on transport_op, and remember to call our on_done_recv member
57 after handling it. */
Craig Tiller33825112015-09-18 07:44:19 -070058 grpc_closure hs_on_recv;
ctillerd74729d2015-01-12 13:31:36 -080059} call_data;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080060
Craig Tillera82950e2015-09-22 12:33:20 -070061typedef struct channel_data {
klempner1e273282014-12-10 13:55:41 -080062 grpc_mdelem *te_trailers;
Craig Tillerc923cd72015-01-19 16:14:31 -080063 grpc_mdelem *method_post;
ctillerd74729d2015-01-12 13:31:36 -080064 grpc_mdelem *http_scheme;
65 grpc_mdelem *https_scheme;
66 /* TODO(klempner): Remove this once we stop using it */
67 grpc_mdelem *grpc_scheme;
68 grpc_mdelem *content_type;
Craig Tillerfd7d3ec2015-01-21 13:37:09 -080069 grpc_mdelem *status_ok;
70 grpc_mdelem *status_not_found;
Craig Tillerd2d0a112015-01-19 16:07:52 -080071 grpc_mdstr *path_key;
Tatsuhiro Tsujikawa229000f2015-03-13 23:52:56 +090072 grpc_mdstr *authority_key;
73 grpc_mdstr *host_key;
74
75 grpc_mdctx *mdctx;
klempner1e273282014-12-10 13:55:41 -080076} channel_data;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080077
Craig Tillera82950e2015-09-22 12:33:20 -070078typedef struct {
Craig Tillerd1bec032015-09-18 17:29:00 -070079 grpc_call_element *elem;
Craig Tiller8af4c332015-09-22 12:32:31 -070080 grpc_exec_ctx *exec_ctx;
Craig Tillerd1bec032015-09-18 17:29:00 -070081} server_filter_args;
82
Craig Tillera82950e2015-09-22 12:33:20 -070083static grpc_mdelem *server_filter(void *user_data, grpc_mdelem *md) {
Craig Tillerd1bec032015-09-18 17:29:00 -070084 server_filter_args *a = user_data;
85 grpc_call_element *elem = a->elem;
Craig Tillerce6e3502015-01-19 18:04:42 -080086 channel_data *channeld = elem->channel_data;
Craig Tillerfd7d3ec2015-01-21 13:37:09 -080087 call_data *calld = elem->call_data;
Craig Tillerfd7d3ec2015-01-21 13:37:09 -080088
Craig Tiller6902ad22015-04-16 08:01:49 -070089 /* Check if it is one of the headers we care about. */
Craig Tillera82950e2015-09-22 12:33:20 -070090 if (md == channeld->te_trailers || md == channeld->method_post ||
91 md == channeld->http_scheme || md == channeld->https_scheme ||
92 md == channeld->grpc_scheme || md == channeld->content_type) {
93 /* swallow it */
94 if (md == channeld->method_post) {
95 calld->seen_post = 1;
96 } else if (md->key == channeld->http_scheme->key) {
97 calld->seen_scheme = 1;
98 } else if (md == channeld->te_trailers) {
99 calld->seen_te_trailers = 1;
100 }
101 /* TODO(klempner): Track that we've seen all the headers we should
102 require */
103 return NULL;
104 } else if (md->key == channeld->content_type->key) {
105 if (strncmp(grpc_mdstr_as_c_string(md->value), "application/grpc+", 17) ==
106 0) {
107 /* Although the C implementation doesn't (currently) generate them,
108 any custom +-suffix is explicitly valid. */
109 /* TODO(klempner): We should consider preallocating common values such
110 as +proto or +json, or at least stashing them if we see them. */
111 /* TODO(klempner): Should we be surfacing this to application code? */
112 } else {
113 /* TODO(klempner): We're currently allowing this, but we shouldn't
114 see it without a proxy so log for now. */
115 gpr_log(GPR_INFO, "Unexpected content-type %s",
116 channeld->content_type->key);
117 }
118 return NULL;
119 } else if (md->key == channeld->te_trailers->key ||
120 md->key == channeld->method_post->key ||
121 md->key == channeld->http_scheme->key) {
122 gpr_log(GPR_ERROR, "Invalid %s: header: '%s'",
123 grpc_mdstr_as_c_string(md->key), grpc_mdstr_as_c_string(md->value));
124 /* swallow it and error everything out. */
125 /* TODO(klempner): We ought to generate more descriptive error messages
126 on the wire here. */
127 grpc_call_element_send_cancel(a->exec_ctx, elem);
128 return NULL;
129 } else if (md->key == channeld->path_key) {
130 if (calld->seen_path) {
131 gpr_log(GPR_ERROR, "Received :path twice");
Craig Tiller6902ad22015-04-16 08:01:49 -0700132 return NULL;
133 }
Craig Tillera82950e2015-09-22 12:33:20 -0700134 calld->seen_path = 1;
135 return md;
136 } else if (md->key == channeld->authority_key) {
137 calld->seen_authority = 1;
138 return md;
139 } else if (md->key == channeld->host_key) {
140 /* translate host to :authority since :authority may be
141 omitted */
142 grpc_mdelem *authority = grpc_mdelem_from_metadata_strings(
143 channeld->mdctx, GRPC_MDSTR_REF(channeld->authority_key),
144 GRPC_MDSTR_REF(md->value));
145 GRPC_MDELEM_UNREF(md);
146 calld->seen_authority = 1;
147 return authority;
148 } else {
149 return md;
150 }
Craig Tillerce6e3502015-01-19 18:04:42 -0800151}
152
Craig Tillera82950e2015-09-22 12:33:20 -0700153static void hs_on_recv(grpc_exec_ctx *exec_ctx, void *user_data, int success) {
Craig Tiller83f88d92015-04-21 16:02:05 -0700154 grpc_call_element *elem = user_data;
155 call_data *calld = elem->call_data;
Craig Tillera82950e2015-09-22 12:33:20 -0700156 if (success) {
157 size_t i;
158 size_t nops = calld->recv_ops->nops;
159 grpc_stream_op *ops = calld->recv_ops->ops;
160 for (i = 0; i < nops; i++) {
161 grpc_stream_op *op = &ops[i];
162 server_filter_args a;
163 if (op->type != GRPC_OP_METADATA) continue;
164 calld->got_initial_metadata = 1;
165 a.elem = elem;
166 a.exec_ctx = exec_ctx;
167 grpc_metadata_batch_filter(&op->data.metadata, server_filter, &a);
168 /* Have we seen the required http2 transport headers?
169 (:method, :scheme, content-type, with :path and :authority covered
170 at the channel level right now) */
171 if (calld->seen_post && calld->seen_scheme && calld->seen_te_trailers &&
172 calld->seen_path && calld->seen_authority) {
173 /* do nothing */
174 } else {
175 if (!calld->seen_path) {
176 gpr_log(GPR_ERROR, "Missing :path header");
177 }
178 if (!calld->seen_authority) {
179 gpr_log(GPR_ERROR, "Missing :authority header");
180 }
181 if (!calld->seen_post) {
182 gpr_log(GPR_ERROR, "Missing :method header");
183 }
184 if (!calld->seen_scheme) {
185 gpr_log(GPR_ERROR, "Missing :scheme header");
186 }
187 if (!calld->seen_te_trailers) {
188 gpr_log(GPR_ERROR, "Missing te trailers header");
189 }
190 /* Error this call out */
191 success = 0;
192 grpc_call_element_send_cancel(exec_ctx, elem);
193 }
Craig Tiller83f88d92015-04-21 16:02:05 -0700194 }
Craig Tillera82950e2015-09-22 12:33:20 -0700195 }
196 calld->on_done_recv->cb(exec_ctx, calld->on_done_recv->cb_arg, success);
Craig Tiller83f88d92015-04-21 16:02:05 -0700197}
198
Craig Tillera82950e2015-09-22 12:33:20 -0700199static void hs_mutate_op(grpc_call_element *elem,
200 grpc_transport_stream_op *op) {
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800201 /* grab pointers to our data from the call element */
202 call_data *calld = elem->call_data;
203 channel_data *channeld = elem->channel_data;
Craig Tiller83f88d92015-04-21 16:02:05 -0700204 size_t i;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800205
Craig Tillera82950e2015-09-22 12:33:20 -0700206 if (op->send_ops && !calld->sent_status) {
207 size_t nops = op->send_ops->nops;
208 grpc_stream_op *ops = op->send_ops->ops;
209 for (i = 0; i < nops; i++) {
Craig Tillerb9d35962015-09-11 13:31:16 -0700210 grpc_stream_op *stream_op = &ops[i];
211 if (stream_op->type != GRPC_OP_METADATA) continue;
Craig Tillera82950e2015-09-22 12:33:20 -0700212 calld->sent_status = 1;
Craig Tillerb9d35962015-09-11 13:31:16 -0700213 grpc_metadata_batch_add_head(&stream_op->data.metadata, &calld->status,
Craig Tillera82950e2015-09-22 12:33:20 -0700214 GRPC_MDELEM_REF(channeld->status_ok));
Craig Tiller8dc09712015-09-24 13:58:16 -0700215 grpc_metadata_batch_add_tail(&stream_op->data.metadata,
216 &calld->content_type,
Craig Tillera82950e2015-09-22 12:33:20 -0700217 GRPC_MDELEM_REF(channeld->content_type));
218 break;
Craig Tiller83f88d92015-04-21 16:02:05 -0700219 }
Craig Tillera82950e2015-09-22 12:33:20 -0700220 }
Craig Tiller83f88d92015-04-21 16:02:05 -0700221
Craig Tillera82950e2015-09-22 12:33:20 -0700222 if (op->recv_ops && !calld->got_initial_metadata) {
223 /* substitute our callback for the higher callback */
224 calld->recv_ops = op->recv_ops;
225 calld->on_done_recv = op->on_done_recv;
226 op->on_done_recv = &calld->hs_on_recv;
227 }
Craig Tiller50d9db52015-04-23 10:52:14 -0700228}
Craig Tiller83f88d92015-04-21 16:02:05 -0700229
Craig Tillera82950e2015-09-22 12:33:20 -0700230static void hs_start_transport_op(grpc_exec_ctx *exec_ctx,
231 grpc_call_element *elem,
232 grpc_transport_stream_op *op) {
233 GRPC_CALL_LOG_OP(GPR_INFO, elem, op);
Craig Tiller0ba432d2015-10-09 16:57:11 -0700234 GPR_TIMER_BEGIN("hs_start_transport_op", 0);
Craig Tillera82950e2015-09-22 12:33:20 -0700235 hs_mutate_op(elem, op);
236 grpc_call_next_op(exec_ctx, elem, op);
Craig Tiller0ba432d2015-10-09 16:57:11 -0700237 GPR_TIMER_END("hs_start_transport_op", 0);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800238}
239
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800240/* Constructor for call_data */
Craig Tillera82950e2015-09-22 12:33:20 -0700241static void init_call_elem(grpc_exec_ctx *exec_ctx, grpc_call_element *elem,
242 const void *server_transport_data,
243 grpc_transport_stream_op *initial_op) {
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800244 /* grab pointers to our data from the call element */
245 call_data *calld = elem->call_data;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800246 /* initialize members */
Craig Tillera82950e2015-09-22 12:33:20 -0700247 memset(calld, 0, sizeof(*calld));
248 grpc_closure_init(&calld->hs_on_recv, hs_on_recv, elem);
249 if (initial_op) hs_mutate_op(elem, initial_op);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800250}
251
252/* Destructor for call_data */
Craig Tillera82950e2015-09-22 12:33:20 -0700253static void destroy_call_elem(grpc_exec_ctx *exec_ctx,
254 grpc_call_element *elem) {}
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800255
256/* Constructor for channel_data */
Craig Tillera82950e2015-09-22 12:33:20 -0700257static void init_channel_elem(grpc_exec_ctx *exec_ctx,
258 grpc_channel_element *elem, grpc_channel *master,
259 const grpc_channel_args *args, grpc_mdctx *mdctx,
260 int is_first, int is_last) {
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800261 /* grab pointers to our data from the channel element */
262 channel_data *channeld = elem->channel_data;
263
264 /* The first and the last filters tend to be implemented differently to
265 handle the case that there's no 'next' filter to call on the up or down
266 path */
Craig Tillera82950e2015-09-22 12:33:20 -0700267 GPR_ASSERT(!is_first);
268 GPR_ASSERT(!is_last);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800269
270 /* initialize members */
Craig Tillera82950e2015-09-22 12:33:20 -0700271 channeld->te_trailers = grpc_mdelem_from_strings(mdctx, "te", "trailers");
272 channeld->status_ok = grpc_mdelem_from_strings(mdctx, ":status", "200");
273 channeld->status_not_found =
274 grpc_mdelem_from_strings(mdctx, ":status", "404");
275 channeld->method_post = grpc_mdelem_from_strings(mdctx, ":method", "POST");
276 channeld->http_scheme = grpc_mdelem_from_strings(mdctx, ":scheme", "http");
277 channeld->https_scheme = grpc_mdelem_from_strings(mdctx, ":scheme", "https");
278 channeld->grpc_scheme = grpc_mdelem_from_strings(mdctx, ":scheme", "grpc");
Craig Tiller4dbdd6a2015-09-25 15:12:16 -0700279 channeld->path_key = grpc_mdstr_from_string(mdctx, ":path");
280 channeld->authority_key = grpc_mdstr_from_string(mdctx, ":authority");
281 channeld->host_key = grpc_mdstr_from_string(mdctx, "host");
Craig Tillera82950e2015-09-22 12:33:20 -0700282 channeld->content_type =
283 grpc_mdelem_from_strings(mdctx, "content-type", "application/grpc");
Craig Tillerfd7d3ec2015-01-21 13:37:09 -0800284
Tatsuhiro Tsujikawa229000f2015-03-13 23:52:56 +0900285 channeld->mdctx = mdctx;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800286}
287
288/* Destructor for channel data */
Craig Tillera82950e2015-09-22 12:33:20 -0700289static void destroy_channel_elem(grpc_exec_ctx *exec_ctx,
290 grpc_channel_element *elem) {
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800291 /* grab pointers to our data from the channel element */
292 channel_data *channeld = elem->channel_data;
293
Craig Tillera82950e2015-09-22 12:33:20 -0700294 GRPC_MDELEM_UNREF(channeld->te_trailers);
295 GRPC_MDELEM_UNREF(channeld->status_ok);
296 GRPC_MDELEM_UNREF(channeld->status_not_found);
297 GRPC_MDELEM_UNREF(channeld->method_post);
298 GRPC_MDELEM_UNREF(channeld->http_scheme);
299 GRPC_MDELEM_UNREF(channeld->https_scheme);
300 GRPC_MDELEM_UNREF(channeld->grpc_scheme);
301 GRPC_MDELEM_UNREF(channeld->content_type);
302 GRPC_MDSTR_UNREF(channeld->path_key);
303 GRPC_MDSTR_UNREF(channeld->authority_key);
304 GRPC_MDSTR_UNREF(channeld->host_key);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800305}
306
307const grpc_channel_filter grpc_http_server_filter = {
Craig Tillera82950e2015-09-22 12:33:20 -0700308 hs_start_transport_op, grpc_channel_next_op, sizeof(call_data),
309 init_call_elem, destroy_call_elem, sizeof(channel_data),
310 init_channel_elem, destroy_channel_elem, grpc_call_next_get_peer,
311 "http-server"};