summaryrefslogtreecommitdiff
path: root/source/kit/http1.h
blob: f4e5fc6943a6a54e20b7f5c2b4228ed2656ed536 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
//  TODO
//  - Error handling
//  - HTTPS support

#ifndef KIT_HTTP1_H
#define KIT_HTTP1_H

#include "types.h"
#include "string_builder.h"
#include "sockets.h"

#include <stdio.h>
#include <assert.h>

#ifdef __cplusplus
extern "C" {
#endif

#define KIT_HTTP1_CONTENT_TYPE \
  "Content-Type: text/plain; version=0.0.4; charset=utf-8";
#define KIT_HTTP1_NEWLINE "\r\n"
#define KIT_HTTP1_SPACE " "
#define KIT_HTTP1_HEADER_SEPARATOR ": "
#define KIT_HTTP1_BUFFER_SIZE 8192

enum {
  KIT_HTTP1_OPTIONS,
  KIT_HTTP1_GET,
  KIT_HTTP1_HEAD,
  KIT_HTTP1_POST,
  KIT_HTTP1_PUT,
  KIT_HTTP1_DELETE,
  KIT_HTTP1_TRACE,
  KIT_HTTP1_CONNECT,
};

typedef struct {
  kit_str_t key;
  kit_str_t value;
} kit_http1_str_pair_t;

typedef KIT_DA(kit_http1_str_pair_t) kit_http1_str_map_t;

typedef struct {
  kit_str_t str;
  i64       position;
} kit_http1_tok_t;

typedef struct {
  kit_str_t           protocol;
  kit_str_t           host;
  kit_str_t           port;
  kit_str_t           address;
  kit_str_t           query_string;
  kit_str_t           hash;
  kit_http1_str_map_t parameters;
} kit_http1_uri_t;

typedef struct {
  i8                  success;
  kit_str_builder_t   protocol;
  kit_str_builder_t   response;
  kit_str_builder_t   response_str;
  kit_http1_str_map_t header;
  kit_str_builder_t   body;
} kit_http1_response_t;

#ifdef __GNUC__
#  pragma GCC diagnostic push
#  pragma GCC diagnostic ignored "-Wunused-function"
#  pragma GCC diagnostic ignored "-Wunknown-pragmas"
#endif

static kit_str_t kit_http1_tok_tail(kit_http1_tok_t *tok) {
  assert(tok != NULL);

  if (tok == NULL)
    return (kit_str_t) { .size = 0, .values = NULL };

  i64 previous_position = tok->position;
  tok->position         = tok->str.size;

  return (kit_str_t) { .size   = tok->position - previous_position,
                       .values = tok->str.values +
                                 previous_position };
}

static kit_str_t kit_http1_tok_next(kit_http1_tok_t *tok,
                                    kit_str_t        search,
                                    i8               return_tail) {
  assert(tok != NULL);
  if (tok == NULL)
    return (kit_str_t) { .size = 0, .values = NULL };

  i64 hit = tok->position;

  while (hit + search.size <= tok->str.size) {
    kit_str_t s = { .size   = search.size,
                    .values = tok->str.values + hit };
    if (KIT_AR_EQUAL(s, search))
      break;
  }

  if (hit + search.size > tok->str.size) {
    if (return_tail)
      return kit_http1_tok_tail(tok);
    else
      return (kit_str_t) { .size = 0, .values = NULL };
  }

  i64 previous_position = tok->position;
  tok->position         = hit + search.size;

  return (kit_str_t) { .size   = hit - previous_position,
                       .values = tok->str.values +
                                 previous_position };
}

//  TODO
//  - Return error status
static void kit_http1_uri_init(kit_http1_uri_t *uri, kit_str_t input,
                               kit_allocator_t *alloc) {
  static const char port_80[] = "80";

  assert(uri != NULL);
  if (uri == NULL)
    return;

  memset(uri, 0, sizeof *uri);

  kit_http1_tok_t input_tok = { .str = input, .position = 0 };

  uri->protocol = kit_http1_tok_next(&input_tok, SZ("://"), 0);
  kit_str_t host_port_str = kit_http1_tok_next(&input_tok, SZ("/"),
                                               0);

  //  FIXME
  //  Handle invalid host port error
  assert(host_port_str.size > 0);
  if (host_port_str.size == 0)
    return;

  kit_http1_tok_t host_port_tok = { .str      = host_port_str,
                                    .position = 0 };

  uri->host = kit_http1_tok_next(
      &host_port_tok,
      host_port_str.values[0] == '[' ? SZ("]:") : SZ(":"), 1);

  if (uri->host.values[0] == '[')
    uri->host = (kit_str_t) { .size   = uri->host.size - 1,
                              .values = uri->host.values + 1 };

  //  TODO
  //  - HTTPS default port 443
  uri->port = kit_http1_tok_tail(&host_port_tok);
  if (uri->port.size == 0)
    uri->port = SZ(port_80);

  uri->address      = kit_http1_tok_next(&input_tok, SZ("?"), 1);
  uri->query_string = kit_http1_tok_next(&input_tok, SZ("#"), 1);

  uri->hash = kit_http1_tok_tail(&input_tok);

  KIT_DA_INIT(uri->parameters, 0, alloc);

  kit_http1_tok_t query_tok = {
    .str      = { .size   = uri->query_string.size,
                  .values = uri->query_string.values },
    .position = 0
  };

  for (;;) {
    kit_str_t key = kit_http1_tok_next(&query_tok, SZ("="), 0);
    if (key.size == 0)
      break;
    kit_str_t value = kit_http1_tok_next(&query_tok, SZ("&"), 1);

    i64 index = uri->parameters.size;

    KIT_DA_RESIZE(uri->parameters, index + 1);

    assert(uri->parameters.size == index + 1);
    if (uri->parameters.size != index + 1)
      //  FIXME
      //  Handle bad alloc error
      break;

    uri->parameters.values[index] = (kit_http1_str_pair_t) {
      .key = key, .value = value
    };
  }
}

static void kit_http1_uri_destroy(kit_http1_uri_t *uri) {
  //  TODO
}

static kit_str_t kit_http1_method_to_str(i32 method) {
  static kit_str_t methods[] = { { .size = 7, .values = "OPTIONS" },
                                 { .size = 3, .values = "GET" },
                                 { .size = 4, .values = "HEAD" },
                                 { .size = 4, .values = "POST" },
                                 { .size = 3, .values = "PUT" },
                                 { .size = 6, .values = "DELETE" },
                                 { .size = 5, .values = "TRACE" },
                                 { .size = 7, .values = "CONNECT" } };

  assert(method >= 0 && method < sizeof methods / sizeof *methods);
  if (method < 0 || method >= sizeof methods / sizeof *methods)
    return (kit_str_t) { .size = 0, .values = NULL };

  return methods[method];
}

//  TODO
//  - Return error status
static socket_t kit_http1_connect_to_uri(kit_http1_uri_t *uri) {
  assert(uri != NULL);
  if (uri == NULL)
    return INVALID_SOCKET;

  struct addrinfo hints, *result, *rp;

  memset(&hints, 0, sizeof hints);

  hints.ai_family   = AF_UNSPEC;
  hints.ai_socktype = SOCK_STREAM;

  char host_str[128];
  char port_str[128];

  assert(uri->host.size < sizeof host_str);
  memcpy(host_str, uri->host.values, uri->host.size);
  host_str[uri->host.size] = '\0';

  assert(uri->port.size < sizeof port_str);
  memcpy(port_str, uri->port.values, uri->port.size);
  port_str[uri->port.size] = '\0';

  i32 getaddrinfo_result = getaddrinfo(host_str, port_str, &hints,
                                       &result);

  if (getaddrinfo_result != 0)
    return INVALID_SOCKET;

  socket_t fd = INVALID_SOCKET;

  for (rp = result; rp != NULL; rp = rp->ai_next) {
    fd = socket(rp->ai_family, rp->ai_socktype, rp->ai_protocol);

    if (fd == INVALID_SOCKET)
      continue;

    i32 connect_result = connect(fd, rp->ai_addr,
                                 (socklen_t) rp->ai_addrlen);

    if (connect_result == -1) {
      closesocket(fd);
      fd = INVALID_SOCKET;
      continue;
    }

    break;
  }

  freeaddrinfo(result);

  return fd;
}

//  TODO
//  - Return error status
static kit_str_builder_t kit_http1_buffered_read(
    socket_t fd, kit_allocator_t *alloc) {
  kit_str_builder_t buf;
  KIT_DA_INIT(buf, KIT_HTTP1_BUFFER_SIZE, alloc);

  //  FIXME
  //  Handle bad alloc error
  assert(buf.size == KIT_HTTP1_BUFFER_SIZE);
  if (buf.size != KIT_HTTP1_BUFFER_SIZE)
    return buf;

  i64 offset = 0;

  for (;;) {
    i64 chunk = buf.size - offset;
    i64 n     = recv(fd, buf.values + offset, (socklen_t) chunk, 0);
    if (n < chunk)
      break;
    offset += n;
    KIT_DA_RESIZE(buf, offset + KIT_HTTP1_BUFFER_SIZE);

    //  FIXME
    //  Handle bad alloc error
    assert(buf.size == offset + KIT_HTTP1_BUFFER_SIZE);
    if (buf.size != offset + KIT_HTTP1_BUFFER_SIZE)
      break;
  }

  return buf;
}

//  TODO
//  - Return error status
static kit_http1_response_t kit_http1_request(
    i32 method, kit_http1_uri_t *uri, kit_str_t body,
    kit_allocator_t *alloc) {

  socket_t fd = kit_http1_connect_to_uri(uri);

  assert(fd != INVALID_SOCKET);
  if (fd == INVALID_SOCKET) {
    kit_http1_response_t res;
    memset(&res, 0, sizeof res);
    res.success = 0;
    return res;
  }

  kit_str_builder_t req;

  //  reserve
  KIT_DA_INIT(req, 512, alloc);

  assert(req.size == 512);
  if (req.size != 512) {
    //  bad alloc
    //

    closesocket(fd);

    kit_http1_response_t res;
    memset(&res, 0, sizeof res);
    res.success = 0;
    return res;
  }

  req.size = 0;

  //  FIXME
  //  Handle errors
  //

  kit_str_append(&req, kit_http1_method_to_str(method));
  kit_str_append(&req, SZ(" /"));
  kit_str_append(&req, uri->address);
  kit_str_append(&req,
                 uri->query_string.size == 0 ? SZ("") : SZ("?"));
  kit_str_append(&req, uri->query_string);
  kit_str_append(&req, SZ(" HTTP/1.1"));
  kit_str_append(&req, SZ(KIT_HTTP1_NEWLINE));

  kit_str_append(&req, SZ("Host: "));
  kit_str_append(&req, uri->host);
  kit_str_append(&req, SZ(":"));
  kit_str_append(&req, uri->port);
  kit_str_append(&req, SZ(KIT_HTTP1_NEWLINE));

  kit_str_append(&req, SZ("Accept: */*"));
  kit_str_append(&req, SZ(KIT_HTTP1_NEWLINE));

  kit_str_append(
      &req,
      SZ("Content-Type: text/plain; version=0.0.4; charset=utf-8"));
  kit_str_append(&req, SZ(KIT_HTTP1_NEWLINE));

  //  FIXME
  //  Use our own print instead
  char content_length_str[11];
  sprintf(content_length_str, "%lld", body.size);

  kit_str_append(&req, SZ("Content-Length: "));
  kit_str_append(&req,
                 (kit_str_t) { .size   = strlen(content_length_str),
                               .values = content_length_str });
  kit_str_append(&req, SZ(KIT_HTTP1_NEWLINE));

  kit_str_append(&req, SZ(KIT_HTTP1_NEWLINE));
  kit_str_append(&req, body);

  //  Append '\0' at the end
  //
  {
    i64 n = req.size;
    KIT_DA_RESIZE(req, n + 1);

    assert(req.size == n + 1);
    if (req.size != n + 1) {
      KIT_DA_DESTROY(req);
      closesocket(fd);

      kit_http1_response_t res;
      memset(&res, 0, sizeof res);
      res.success = 0;
      return res;
    }

    req.size      = n;
    req.values[n] = '\0';
  }

  i64 req_size = req.size;
  i64 n        = send(fd, req.values, (socklen_t) req.size, 0);

  KIT_DA_DESTROY(req);

  if (n != req_size) {
    //  send failed
    //

    closesocket(fd);

    kit_http1_response_t res;
    memset(&res, 0, sizeof res);
    res.success = 0;
    return res;
  }

  kit_str_builder_t buffer = kit_http1_buffered_read(fd, alloc);

  closesocket(fd);

  kit_http1_response_t res;
  memset(&res, 0, sizeof res);
  res.success = 1;

  kit_http1_tok_t buf_tok = { .str      = { .size   = buffer.size,
                                            .values = buffer.values },
                              .position = 0 };

  res.protocol = kit_str_build(
      kit_http1_tok_next(&buf_tok, SZ(KIT_HTTP1_SPACE), 0), alloc);
  res.response = kit_str_build(
      kit_http1_tok_next(&buf_tok, SZ(KIT_HTTP1_SPACE), 0), alloc);
  res.response_str = kit_str_build(
      kit_http1_tok_next(&buf_tok, SZ(KIT_HTTP1_NEWLINE), 0), alloc);

  kit_str_builder_t header = kit_str_build(
      kit_http1_tok_next(&buf_tok,
                         SZ(KIT_HTTP1_NEWLINE KIT_HTTP1_NEWLINE), 0),
      alloc);

  res.body = kit_str_build(kit_http1_tok_tail(&buf_tok), alloc);

  kit_http1_tok_t header_tok = {
    .str      = (kit_str_t) { .size   = header.size,
                              .values = header.values },
    .position = 0
  };

  KIT_DA_INIT(res.header, 0, alloc);

  for (;;) {
    kit_str_t key = kit_http1_tok_next(
        &header_tok, SZ(KIT_HTTP1_HEADER_SEPARATOR), 0);
    if (key.size == 0)
      break;
    kit_str_t value = kit_http1_tok_next(&header_tok,
                                         SZ(KIT_HTTP1_NEWLINE), 1);

    i64 index = res.header.size;

    KIT_DA_RESIZE(res.header, index + 1);

    assert(res.header.size == index + 1);
    if (res.header.size != index + 1) {
      //  FIXME
      //  Handle bad alloc error
      res.success = 0;
      break;
    }

    res.header.values[index] = (kit_http1_str_pair_t) {
      .key = key, .value = value
    };
  }

  return res;
}

static void kit_http1_response_destroy(
    kit_http1_response_t *response) {
  //  TODO
  //
}

#ifdef __GNUC__
#  pragma GCC diagnostic pop
#endif

#ifdef __cplusplus
}
#endif

#endif