blob: 02a351d7b10386dbadeeab5e03ab137575df231e [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>
39
Craig Tillera82950e2015-09-22 12:33:20 -070040typedef struct call_data {
Craig Tiller6902ad22015-04-16 08:01:49 -070041 gpr_uint8 got_initial_metadata;
42 gpr_uint8 seen_path;
43 gpr_uint8 seen_post;
Craig Tillerd2d0a112015-01-19 16:07:52 -080044 gpr_uint8 sent_status;
45 gpr_uint8 seen_scheme;
Craig Tillerd2d0a112015-01-19 16:07:52 -080046 gpr_uint8 seen_te_trailers;
Craig Tillerc4b56b62015-07-23 17:44:11 -070047 gpr_uint8 seen_authority;
Craig Tiller6902ad22015-04-16 08:01:49 -070048 grpc_linked_mdelem status;
Craig Tillercb014172015-09-08 16:40:26 -070049 grpc_linked_mdelem content_type;
Craig Tiller83f88d92015-04-21 16:02:05 -070050
51 grpc_stream_op_buffer *recv_ops;
Craig Tiller98bf7e62015-06-24 08:47:07 -070052 /** Closure to call when finished with the hs_on_recv hook */
Craig Tiller33825112015-09-18 07:44:19 -070053 grpc_closure *on_done_recv;
Craig Tiller98bf7e62015-06-24 08:47:07 -070054 /** Receive closures are chained: we inject this closure as the on_done_recv
55 up-call on transport_op, and remember to call our on_done_recv member
56 after handling it. */
Craig Tiller33825112015-09-18 07:44:19 -070057 grpc_closure hs_on_recv;
ctillerd74729d2015-01-12 13:31:36 -080058} call_data;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080059
Craig Tillera82950e2015-09-22 12:33:20 -070060typedef struct channel_data {
klempner1e273282014-12-10 13:55:41 -080061 grpc_mdelem *te_trailers;
Craig Tillerc923cd72015-01-19 16:14:31 -080062 grpc_mdelem *method_post;
ctillerd74729d2015-01-12 13:31:36 -080063 grpc_mdelem *http_scheme;
64 grpc_mdelem *https_scheme;
65 /* TODO(klempner): Remove this once we stop using it */
66 grpc_mdelem *grpc_scheme;
67 grpc_mdelem *content_type;
Craig Tillerfd7d3ec2015-01-21 13:37:09 -080068 grpc_mdelem *status_ok;
69 grpc_mdelem *status_not_found;
Craig Tillerd2d0a112015-01-19 16:07:52 -080070 grpc_mdstr *path_key;
Tatsuhiro Tsujikawa229000f2015-03-13 23:52:56 +090071 grpc_mdstr *authority_key;
72 grpc_mdstr *host_key;
73
74 grpc_mdctx *mdctx;
klempner1e273282014-12-10 13:55:41 -080075} channel_data;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080076
Craig Tillera82950e2015-09-22 12:33:20 -070077typedef struct {
Craig Tillerd1bec032015-09-18 17:29:00 -070078 grpc_call_element *elem;
Craig Tiller8af4c332015-09-22 12:32:31 -070079 grpc_exec_ctx *exec_ctx;
Craig Tillerd1bec032015-09-18 17:29:00 -070080} server_filter_args;
81
Craig Tillera82950e2015-09-22 12:33:20 -070082static grpc_mdelem *server_filter(void *user_data, grpc_mdelem *md) {
Craig Tillerd1bec032015-09-18 17:29:00 -070083 server_filter_args *a = user_data;
84 grpc_call_element *elem = a->elem;
Craig Tillerce6e3502015-01-19 18:04:42 -080085 channel_data *channeld = elem->channel_data;
Craig Tillerfd7d3ec2015-01-21 13:37:09 -080086 call_data *calld = elem->call_data;
Craig Tillerfd7d3ec2015-01-21 13:37:09 -080087
Craig Tiller6902ad22015-04-16 08:01:49 -070088 /* Check if it is one of the headers we care about. */
Craig Tillera82950e2015-09-22 12:33:20 -070089 if (md == channeld->te_trailers || md == channeld->method_post ||
90 md == channeld->http_scheme || md == channeld->https_scheme ||
91 md == channeld->grpc_scheme || md == channeld->content_type) {
92 /* swallow it */
93 if (md == channeld->method_post) {
94 calld->seen_post = 1;
95 } else if (md->key == channeld->http_scheme->key) {
96 calld->seen_scheme = 1;
97 } else if (md == channeld->te_trailers) {
98 calld->seen_te_trailers = 1;
99 }
100 /* TODO(klempner): Track that we've seen all the headers we should
101 require */
102 return NULL;
103 } else if (md->key == channeld->content_type->key) {
104 if (strncmp(grpc_mdstr_as_c_string(md->value), "application/grpc+", 17) ==
105 0) {
106 /* Although the C implementation doesn't (currently) generate them,
107 any custom +-suffix is explicitly valid. */
108 /* TODO(klempner): We should consider preallocating common values such
109 as +proto or +json, or at least stashing them if we see them. */
110 /* TODO(klempner): Should we be surfacing this to application code? */
111 } else {
112 /* TODO(klempner): We're currently allowing this, but we shouldn't
113 see it without a proxy so log for now. */
114 gpr_log(GPR_INFO, "Unexpected content-type %s",
115 channeld->content_type->key);
116 }
117 return NULL;
118 } else if (md->key == channeld->te_trailers->key ||
119 md->key == channeld->method_post->key ||
120 md->key == channeld->http_scheme->key) {
121 gpr_log(GPR_ERROR, "Invalid %s: header: '%s'",
122 grpc_mdstr_as_c_string(md->key), grpc_mdstr_as_c_string(md->value));
123 /* swallow it and error everything out. */
124 /* TODO(klempner): We ought to generate more descriptive error messages
125 on the wire here. */
126 grpc_call_element_send_cancel(a->exec_ctx, elem);
127 return NULL;
128 } else if (md->key == channeld->path_key) {
129 if (calld->seen_path) {
130 gpr_log(GPR_ERROR, "Received :path twice");
Craig Tiller6902ad22015-04-16 08:01:49 -0700131 return NULL;
132 }
Craig Tillera82950e2015-09-22 12:33:20 -0700133 calld->seen_path = 1;
134 return md;
135 } else if (md->key == channeld->authority_key) {
136 calld->seen_authority = 1;
137 return md;
138 } else if (md->key == channeld->host_key) {
139 /* translate host to :authority since :authority may be
140 omitted */
141 grpc_mdelem *authority = grpc_mdelem_from_metadata_strings(
142 channeld->mdctx, GRPC_MDSTR_REF(channeld->authority_key),
143 GRPC_MDSTR_REF(md->value));
144 GRPC_MDELEM_UNREF(md);
145 calld->seen_authority = 1;
146 return authority;
147 } else {
148 return md;
149 }
Craig Tillerce6e3502015-01-19 18:04:42 -0800150}
151
Craig Tillera82950e2015-09-22 12:33:20 -0700152static void hs_on_recv(grpc_exec_ctx *exec_ctx, void *user_data, int success) {
Craig Tiller83f88d92015-04-21 16:02:05 -0700153 grpc_call_element *elem = user_data;
154 call_data *calld = elem->call_data;
Craig Tillera82950e2015-09-22 12:33:20 -0700155 if (success) {
156 size_t i;
157 size_t nops = calld->recv_ops->nops;
158 grpc_stream_op *ops = calld->recv_ops->ops;
159 for (i = 0; i < nops; i++) {
160 grpc_stream_op *op = &ops[i];
161 server_filter_args a;
162 if (op->type != GRPC_OP_METADATA) continue;
163 calld->got_initial_metadata = 1;
164 a.elem = elem;
165 a.exec_ctx = exec_ctx;
166 grpc_metadata_batch_filter(&op->data.metadata, server_filter, &a);
167 /* Have we seen the required http2 transport headers?
168 (:method, :scheme, content-type, with :path and :authority covered
169 at the channel level right now) */
170 if (calld->seen_post && calld->seen_scheme && calld->seen_te_trailers &&
171 calld->seen_path && calld->seen_authority) {
172 /* do nothing */
173 } else {
174 if (!calld->seen_path) {
175 gpr_log(GPR_ERROR, "Missing :path header");
176 }
177 if (!calld->seen_authority) {
178 gpr_log(GPR_ERROR, "Missing :authority header");
179 }
180 if (!calld->seen_post) {
181 gpr_log(GPR_ERROR, "Missing :method header");
182 }
183 if (!calld->seen_scheme) {
184 gpr_log(GPR_ERROR, "Missing :scheme header");
185 }
186 if (!calld->seen_te_trailers) {
187 gpr_log(GPR_ERROR, "Missing te trailers header");
188 }
189 /* Error this call out */
190 success = 0;
191 grpc_call_element_send_cancel(exec_ctx, elem);
192 }
Craig Tiller83f88d92015-04-21 16:02:05 -0700193 }
Craig Tillera82950e2015-09-22 12:33:20 -0700194 }
195 calld->on_done_recv->cb(exec_ctx, calld->on_done_recv->cb_arg, success);
Craig Tiller83f88d92015-04-21 16:02:05 -0700196}
197
Craig Tillera82950e2015-09-22 12:33:20 -0700198static void hs_mutate_op(grpc_call_element *elem,
199 grpc_transport_stream_op *op) {
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800200 /* grab pointers to our data from the call element */
201 call_data *calld = elem->call_data;
202 channel_data *channeld = elem->channel_data;
Craig Tiller83f88d92015-04-21 16:02:05 -0700203 size_t i;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800204
Craig Tillera82950e2015-09-22 12:33:20 -0700205 if (op->send_ops && !calld->sent_status) {
206 size_t nops = op->send_ops->nops;
207 grpc_stream_op *ops = op->send_ops->ops;
208 for (i = 0; i < nops; i++) {
209 grpc_stream_op *op = &ops[i];
210 if (op->type != GRPC_OP_METADATA) continue;
211 calld->sent_status = 1;
212 grpc_metadata_batch_add_head(&op->data.metadata, &calld->status,
213 GRPC_MDELEM_REF(channeld->status_ok));
214 grpc_metadata_batch_add_tail(&op->data.metadata, &calld->content_type,
215 GRPC_MDELEM_REF(channeld->content_type));
216 break;
Craig Tiller83f88d92015-04-21 16:02:05 -0700217 }
Craig Tillera82950e2015-09-22 12:33:20 -0700218 }
Craig Tiller83f88d92015-04-21 16:02:05 -0700219
Craig Tillera82950e2015-09-22 12:33:20 -0700220 if (op->recv_ops && !calld->got_initial_metadata) {
221 /* substitute our callback for the higher callback */
222 calld->recv_ops = op->recv_ops;
223 calld->on_done_recv = op->on_done_recv;
224 op->on_done_recv = &calld->hs_on_recv;
225 }
Craig Tiller50d9db52015-04-23 10:52:14 -0700226}
Craig Tiller83f88d92015-04-21 16:02:05 -0700227
Craig Tillera82950e2015-09-22 12:33:20 -0700228static void hs_start_transport_op(grpc_exec_ctx *exec_ctx,
229 grpc_call_element *elem,
230 grpc_transport_stream_op *op) {
231 GRPC_CALL_LOG_OP(GPR_INFO, elem, op);
232 hs_mutate_op(elem, op);
233 grpc_call_next_op(exec_ctx, elem, op);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800234}
235
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800236/* Constructor for call_data */
Craig Tillera82950e2015-09-22 12:33:20 -0700237static void init_call_elem(grpc_exec_ctx *exec_ctx, grpc_call_element *elem,
238 const void *server_transport_data,
239 grpc_transport_stream_op *initial_op) {
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800240 /* grab pointers to our data from the call element */
241 call_data *calld = elem->call_data;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800242 /* initialize members */
Craig Tillera82950e2015-09-22 12:33:20 -0700243 memset(calld, 0, sizeof(*calld));
244 grpc_closure_init(&calld->hs_on_recv, hs_on_recv, elem);
245 if (initial_op) hs_mutate_op(elem, initial_op);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800246}
247
248/* Destructor for call_data */
Craig Tillera82950e2015-09-22 12:33:20 -0700249static void destroy_call_elem(grpc_exec_ctx *exec_ctx,
250 grpc_call_element *elem) {}
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800251
252/* Constructor for channel_data */
Craig Tillera82950e2015-09-22 12:33:20 -0700253static void init_channel_elem(grpc_exec_ctx *exec_ctx,
254 grpc_channel_element *elem, grpc_channel *master,
255 const grpc_channel_args *args, grpc_mdctx *mdctx,
256 int is_first, int is_last) {
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800257 /* grab pointers to our data from the channel element */
258 channel_data *channeld = elem->channel_data;
259
260 /* The first and the last filters tend to be implemented differently to
261 handle the case that there's no 'next' filter to call on the up or down
262 path */
Craig Tillera82950e2015-09-22 12:33:20 -0700263 GPR_ASSERT(!is_first);
264 GPR_ASSERT(!is_last);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800265
266 /* initialize members */
Craig Tillera82950e2015-09-22 12:33:20 -0700267 channeld->te_trailers = grpc_mdelem_from_strings(mdctx, "te", "trailers");
268 channeld->status_ok = grpc_mdelem_from_strings(mdctx, ":status", "200");
269 channeld->status_not_found =
270 grpc_mdelem_from_strings(mdctx, ":status", "404");
271 channeld->method_post = grpc_mdelem_from_strings(mdctx, ":method", "POST");
272 channeld->http_scheme = grpc_mdelem_from_strings(mdctx, ":scheme", "http");
273 channeld->https_scheme = grpc_mdelem_from_strings(mdctx, ":scheme", "https");
274 channeld->grpc_scheme = grpc_mdelem_from_strings(mdctx, ":scheme", "grpc");
275 channeld->path_key = grpc_mdstr_from_string(mdctx, ":path", 0);
276 channeld->authority_key = grpc_mdstr_from_string(mdctx, ":authority", 0);
277 channeld->host_key = grpc_mdstr_from_string(mdctx, "host", 0);
278 channeld->content_type =
279 grpc_mdelem_from_strings(mdctx, "content-type", "application/grpc");
Craig Tillerfd7d3ec2015-01-21 13:37:09 -0800280
Tatsuhiro Tsujikawa229000f2015-03-13 23:52:56 +0900281 channeld->mdctx = mdctx;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800282}
283
284/* Destructor for channel data */
Craig Tillera82950e2015-09-22 12:33:20 -0700285static void destroy_channel_elem(grpc_exec_ctx *exec_ctx,
286 grpc_channel_element *elem) {
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800287 /* grab pointers to our data from the channel element */
288 channel_data *channeld = elem->channel_data;
289
Craig Tillera82950e2015-09-22 12:33:20 -0700290 GRPC_MDELEM_UNREF(channeld->te_trailers);
291 GRPC_MDELEM_UNREF(channeld->status_ok);
292 GRPC_MDELEM_UNREF(channeld->status_not_found);
293 GRPC_MDELEM_UNREF(channeld->method_post);
294 GRPC_MDELEM_UNREF(channeld->http_scheme);
295 GRPC_MDELEM_UNREF(channeld->https_scheme);
296 GRPC_MDELEM_UNREF(channeld->grpc_scheme);
297 GRPC_MDELEM_UNREF(channeld->content_type);
298 GRPC_MDSTR_UNREF(channeld->path_key);
299 GRPC_MDSTR_UNREF(channeld->authority_key);
300 GRPC_MDSTR_UNREF(channeld->host_key);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800301}
302
303const grpc_channel_filter grpc_http_server_filter = {
Craig Tillera82950e2015-09-22 12:33:20 -0700304 hs_start_transport_op, grpc_channel_next_op, sizeof(call_data),
305 init_call_elem, destroy_call_elem, sizeof(channel_data),
306 init_channel_elem, destroy_channel_elem, grpc_call_next_get_peer,
307 "http-server"};