Blob


1 /*
2 * Copyright (c) 2020-2022 Tracey Emery <tracey@traceyemery.net>
3 * Copyright (c) 2013 David Gwynne <dlg@openbsd.org>
4 * Copyright (c) 2013 Florian Obser <florian@openbsd.org>
5 *
6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
9 *
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 */
19 #include <arpa/inet.h>
20 #include <sys/queue.h>
21 #include <sys/socket.h>
22 #include <sys/types.h>
24 #include <errno.h>
25 #include <event.h>
26 #include <stdlib.h>
27 #include <stdio.h>
28 #include <string.h>
29 #include <time.h>
30 #include <unistd.h>
32 #include "got_error.h"
34 #include "got_compat.h"
36 #include "proc.h"
37 #include "gotwebd.h"
39 size_t fcgi_parse_record(uint8_t *, size_t, struct request *);
40 void fcgi_parse_begin_request(uint8_t *, uint16_t, struct request *,
41 uint16_t);
42 void fcgi_parse_params(uint8_t *, uint16_t, struct request *, uint16_t);
43 void fcgi_send_response(struct request *, struct fcgi_response *);
45 void dump_fcgi_record_header(const char *, struct fcgi_record_header *);
46 void dump_fcgi_begin_request_body(const char *,
47 struct fcgi_begin_request_body *);
48 void dump_fcgi_end_request_body(const char *,
49 struct fcgi_end_request_body *);
51 extern int cgi_inflight;
52 extern volatile int client_cnt;
54 void
55 fcgi_request(int fd, short events, void *arg)
56 {
57 struct request *c = arg;
58 ssize_t n;
59 size_t parsed = 0;
61 n = read(fd, c->buf + c->buf_pos + c->buf_len,
62 FCGI_RECORD_SIZE - c->buf_pos-c->buf_len);
64 switch (n) {
65 case -1:
66 switch (errno) {
67 case EINTR:
68 case EAGAIN:
69 return;
70 default:
71 goto fail;
72 }
73 break;
75 case 0:
76 log_debug("closed connection");
77 goto fail;
78 default:
79 break;
80 }
82 c->buf_len += n;
84 /*
85 * Parse the records as they are received. Per the FastCGI
86 * specification, the server need only receive the FastCGI
87 * parameter records in full; it is free to begin execution
88 * at that point, which is what happens here.
89 */
90 do {
91 parsed = fcgi_parse_record(c->buf + c->buf_pos, c->buf_len, c);
92 if (parsed != 0) {
93 c->buf_pos += parsed;
94 c->buf_len -= parsed;
95 }
96 } while (parsed > 0 && c->buf_len > 0);
98 /* Make space for further reads */
99 if (parsed != 0)
100 if (c->buf_len > 0) {
101 bcopy(c->buf + c->buf_pos, c->buf, c->buf_len);
102 c->buf_pos = 0;
104 return;
105 fail:
106 fcgi_cleanup_request(c);
109 size_t
110 fcgi_parse_record(uint8_t *buf, size_t n, struct request *c)
112 struct fcgi_record_header *h;
114 if (n < sizeof(struct fcgi_record_header))
115 return 0;
117 h = (struct fcgi_record_header*) buf;
119 dump_fcgi_record("", h);
121 if (n < sizeof(struct fcgi_record_header) + ntohs(h->content_len)
122 + h->padding_len)
123 return 0;
125 if (h->version != 1)
126 log_warn("wrong version");
128 switch (h->type) {
129 case FCGI_BEGIN_REQUEST:
130 fcgi_parse_begin_request(buf +
131 sizeof(struct fcgi_record_header),
132 ntohs(h->content_len), c, ntohs(h->id));
133 break;
134 case FCGI_PARAMS:
135 fcgi_parse_params(buf + sizeof(struct fcgi_record_header),
136 ntohs(h->content_len), c, ntohs(h->id));
137 break;
138 case FCGI_STDIN:
139 case FCGI_ABORT_REQUEST:
140 fcgi_create_end_record(c);
141 fcgi_cleanup_request(c);
142 return 0;
143 default:
144 log_warn("unimplemented type %d", h->type);
145 break;
148 return (sizeof(struct fcgi_record_header) + ntohs(h->content_len)
149 + h->padding_len);
152 void
153 fcgi_parse_begin_request(uint8_t *buf, uint16_t n,
154 struct request *c, uint16_t id)
156 /* XXX -- FCGI_CANT_MPX_CONN */
157 if (c->request_started) {
158 log_warn("unexpected FCGI_BEGIN_REQUEST, ignoring");
159 return;
162 if (n != sizeof(struct fcgi_begin_request_body)) {
163 log_warn("wrong size %d != %lu", n,
164 sizeof(struct fcgi_begin_request_body));
165 return;
168 c->request_started = 1;
170 c->id = id;
171 SLIST_INIT(&c->env);
172 c->env_count = 0;
175 void
176 fcgi_parse_params(uint8_t *buf, uint16_t n, struct request *c, uint16_t id)
178 struct env_val *env_entry;
179 uint32_t name_len, val_len;
180 uint8_t *sd, *dr_buf;
182 if (!c->request_started) {
183 log_warn("FCGI_PARAMS without FCGI_BEGIN_REQUEST, ignoring");
184 return;
187 if (c->id != id) {
188 log_warn("unexpected id, ignoring");
189 return;
192 if (n == 0) {
193 gotweb_process_request(c);
194 return;
197 while (n > 0) {
198 if (buf[0] >> 7 == 0) {
199 name_len = buf[0];
200 n--;
201 buf++;
202 } else {
203 if (n > 3) {
204 name_len = ((buf[0] & 0x7f) << 24) +
205 (buf[1] << 16) + (buf[2] << 8) + buf[3];
206 n -= 4;
207 buf += 4;
208 } else
209 return;
212 if (n > 0) {
213 if (buf[0] >> 7 == 0) {
214 val_len = buf[0];
215 n--;
216 buf++;
217 } else {
218 if (n > 3) {
219 val_len = ((buf[0] & 0x7f) << 24) +
220 (buf[1] << 16) + (buf[2] << 8) +
221 buf[3];
222 n -= 4;
223 buf += 4;
224 } else
225 return;
227 } else
228 return;
230 if (n < name_len + val_len)
231 return;
233 if ((env_entry = malloc(sizeof(struct env_val))) == NULL) {
234 log_warn("cannot malloc env_entry");
235 return;
238 if ((env_entry->val = calloc(sizeof(char), name_len + val_len +
239 2)) == NULL) {
240 log_warn("cannot allocate env_entry->val");
241 free(env_entry);
242 return;
245 bcopy(buf, env_entry->val, name_len);
246 buf += name_len;
247 n -= name_len;
249 env_entry->val[name_len] = '\0';
250 if (val_len < MAX_QUERYSTRING && strcmp(env_entry->val,
251 "QUERY_STRING") == 0 && c->querystring[0] == '\0') {
252 bcopy(buf, c->querystring, val_len);
253 c->querystring[val_len] = '\0';
255 if (val_len < GOTWEBD_MAXTEXT && strcmp(env_entry->val,
256 "HTTP_HOST") == 0 && c->http_host[0] == '\0') {
258 /*
259 * lazily get subdomain
260 * will only get domain if no subdomain exists
261 * this can still work if gotweb server name is the same
262 */
263 sd = strchr(buf, '.');
264 if (sd)
265 *sd = '\0';
267 bcopy(buf, c->http_host, val_len);
268 c->http_host[val_len] = '\0';
270 if (val_len < MAX_DOCUMENT_ROOT && strcmp(env_entry->val,
271 "DOCUMENT_ROOT") == 0 && c->document_root[0] == '\0') {
273 /* drop first char, as it's always / */
274 dr_buf = &buf[1];
276 bcopy(dr_buf, c->document_root, val_len - 1);
277 c->document_root[val_len] = '\0';
279 if (val_len < MAX_SERVER_NAME && strcmp(env_entry->val,
280 "SERVER_NAME") == 0 && c->server_name[0] == '\0') {
281 /* drop first char, as it's always / */
283 bcopy(buf, c->server_name, val_len);
284 c->server_name[val_len] = '\0';
286 env_entry->val[name_len] = '=';
288 bcopy(buf, (env_entry->val) + name_len + 1, val_len);
289 buf += val_len;
290 n -= val_len;
292 SLIST_INSERT_HEAD(&c->env, env_entry, entry);
293 log_debug("env[%d], %s", c->env_count, env_entry->val);
294 c->env_count++;
298 void
299 fcgi_timeout(int fd, short events, void *arg)
301 fcgi_cleanup_request((struct request*) arg);
304 int
305 fcgi_gen_binary_response(struct request *c, const uint8_t *data, int len)
307 struct fcgi_response *resp;
308 struct fcgi_record_header *header;
309 ssize_t n = 0;
310 int i;
312 if (c->sock->client_status == CLIENT_DISCONNECT)
313 return -1;
315 if (data == NULL || len == 0)
316 return 0;
318 if ((resp = calloc(1, sizeof(struct fcgi_response))) == NULL) {
319 log_warn("%s: cannot calloc fcgi_response", __func__);
320 return -1;
323 header = (struct fcgi_record_header*) resp->data;
324 header->version = 1;
325 header->type = FCGI_STDOUT;
326 header->id = htons(c->id);
327 header->padding_len = 0;
328 header->reserved = 0;
330 for (i = 0; i < len; i++) {
331 resp->data[i+8] = data[i];
332 n++;
335 header->content_len = htons(n);
336 resp->data_pos = 0;
337 resp->data_len = n + sizeof(struct fcgi_record_header);
338 fcgi_send_response(c, resp);
340 return 0;
343 int
344 fcgi_gen_response(struct request *c, const char *data)
346 if (data == NULL || *data == '\0')
347 return 0;
348 return fcgi_gen_binary_response(c, data, strlen(data));
351 void
352 fcgi_send_response(struct request *c, struct fcgi_response *resp)
354 struct fcgi_record_header *header;
355 struct timespec ts;
356 size_t padded_len, off;
357 ssize_t nw;
358 int err = 0, th = 2000;
360 ts.tv_sec = 0;
361 ts.tv_nsec = 50;
363 header = (struct fcgi_record_header*)resp->data;
365 /* The FastCGI spec suggests to align the output buffer */
366 padded_len = FCGI_ALIGN(resp->data_len);
367 if (padded_len > resp->data_len) {
368 /* There should always be FCGI_PADDING_SIZE bytes left */
369 if (padded_len > FCGI_RECORD_SIZE)
370 log_warn("response too long");
371 header->padding_len = padded_len - resp->data_len;
372 resp->data_len = padded_len;
375 dump_fcgi_record("resp ", header);
377 /*
378 * XXX: add some simple write heuristics here
379 * On slower VMs, spotty connections, etc., we don't want to go right to
380 * disconnect. Let's at least try to write the data a few times before
381 * giving up.
382 */
383 for (off = 0; off < resp->data_len; off += nw) {
384 nw = write(c->fd, resp->data + off, resp->data_len - off);
385 if (nw == 0) {
386 c->sock->client_status = CLIENT_DISCONNECT;
387 break;
389 if (nw == -1) {
390 err++;
391 if (errno == EAGAIN && err < th) {
392 nw = 0;
393 nanosleep(&ts, NULL);
394 continue;
396 log_warn("%s: write failure", __func__);
397 c->sock->client_status = CLIENT_DISCONNECT;
398 break;
401 if (nw != resp->data_len - off)
402 log_debug("%s: partial write: %zu vs %zu", __func__, nw,
403 resp->data_len - off);
406 free(resp);
409 void
410 fcgi_create_end_record(struct request *c)
412 struct fcgi_response *resp;
413 struct fcgi_record_header *header;
414 struct fcgi_end_request_body *end_request;
416 if ((resp = calloc(1, sizeof(struct fcgi_response))) == NULL) {
417 log_warn("cannot calloc fcgi_response");
418 return;
420 header = (struct fcgi_record_header*) resp->data;
421 header->version = 1;
422 header->type = FCGI_END_REQUEST;
423 header->id = htons(c->id);
424 header->content_len = htons(sizeof(struct
425 fcgi_end_request_body));
426 header->padding_len = 0;
427 header->reserved = 0;
428 end_request = (struct fcgi_end_request_body *) (resp->data +
429 sizeof(struct fcgi_record_header));
430 end_request->app_status = htonl(0); /* script_status */
431 end_request->protocol_status = FCGI_REQUEST_COMPLETE;
432 end_request->reserved[0] = 0;
433 end_request->reserved[1] = 0;
434 end_request->reserved[2] = 0;
435 resp->data_pos = 0;
436 resp->data_len = sizeof(struct fcgi_end_request_body) +
437 sizeof(struct fcgi_record_header);
438 fcgi_send_response(c, resp);
441 void
442 fcgi_cleanup_request(struct request *c)
444 cgi_inflight--;
445 client_cnt--;
447 evtimer_del(&c->tmo);
448 if (event_initialized(&c->ev))
449 event_del(&c->ev);
451 close(c->fd);
452 gotweb_free_transport(c->t);
453 free(c);
456 void
457 dump_fcgi_record(const char *p, struct fcgi_record_header *h)
459 dump_fcgi_record_header(p, h);
461 if (h->type == FCGI_BEGIN_REQUEST)
462 dump_fcgi_begin_request_body(p,
463 (struct fcgi_begin_request_body *)(h + 1));
464 else if (h->type == FCGI_END_REQUEST)
465 dump_fcgi_end_request_body(p,
466 (struct fcgi_end_request_body *)(h + 1));
469 void
470 dump_fcgi_record_header(const char* p, struct fcgi_record_header *h)
472 log_debug("%sversion: %d", p, h->version);
473 log_debug("%stype: %d", p, h->type);
474 log_debug("%srequestId: %d", p, ntohs(h->id));
475 log_debug("%scontentLength: %d", p, ntohs(h->content_len));
476 log_debug("%spaddingLength: %d", p, h->padding_len);
477 log_debug("%sreserved: %d", p, h->reserved);
480 void
481 dump_fcgi_begin_request_body(const char *p, struct fcgi_begin_request_body *b)
483 log_debug("%srole %d", p, ntohs(b->role));
484 log_debug("%sflags %d", p, b->flags);
487 void
488 dump_fcgi_end_request_body(const char *p, struct fcgi_end_request_body *b)
490 log_debug("%sappStatus: %d", p, ntohl(b->app_status));
491 log_debug("%sprotocolStatus: %d", p, b->protocol_status);