aboutsummaryrefslogtreecommitdiff
path: root/src/daemon/internal.h
blob: 1084de084b5e112283953e36dc7970badfd57b44 (plain) (blame)
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
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
/*
 This file is part of libmicrohttpd
 (C) 2007 Daniel Pittman and Christian Grothoff

 This library is free software; you can redistribute it and/or
 modify it under the terms of the GNU Lesser General Public
 License as published by the Free Software Foundation; either
 version 2.1 of the License, or (at your option) any later version.

 This library is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 Lesser General Public License for more details.

 You should have received a copy of the GNU Lesser General Public
 License along with this library; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 */

/**
 * @file internal.h
 * @brief  internal shared structures
 * @author Daniel Pittman
 * @author Christian Grothoff
 */

#ifndef INTERNAL_H
#define INTERNAL_H

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <stdarg.h>
#include <errno.h>
#include <fcntl.h>
#include <signal.h>
#include <gnutls/gnutls.h>

#include "config.h"
#include "plibc.h"
#include "microhttpd.h"

#ifndef MINGW
#include <sys/mman.h>
#include <netdb.h>
#include <netinet/in.h>
#endif

#include <pthread.h>

#define MAX(a,b) ((a)<(b)) ? (b) : (a)
#define MIN(a,b) ((a)<(b)) ? (a) : (b)

/**
 * Size by which MHD usually tries to increment read/write buffers.
 * TODO: we should probably get rid of this magic constant and
 * put in code to automatically determine a good value.
 */
#define MHD_BUF_INC_SIZE 2048

/* TLS Diffie-Hellman parameter */
#define DH_BITS 1024

#if HAVE_MESSAGES
/**
 * fprintf-like helper function for logging debug
 * messages.
 */
void MHD_DLOG (const struct MHD_Daemon *daemon, const char *format, ...);
#endif

/**
 * Process escape sequences ('+'=space, %HH).
 * Updates val in place.
 */
void MHD_http_unescape (char *val);

/**
 * Header or cookie in HTTP request or response.
 */
struct MHD_HTTP_Header
{
  struct MHD_HTTP_Header *next;

  char *header;

  char *value;

  enum MHD_ValueKind kind;

};

/**
 * Representation of a response.
 */
struct MHD_Response
{

    /**
     * Headers to send for the response.  Initially
     * the linked list is created in inverse order;
     * the order should be inverted before sending!
     */
  struct MHD_HTTP_Header *first_header;

    /**
     * Buffer pointing to data that we are supposed
     * to send as a response.
     */
  char *data;

    /**
     * Closure to give to the content reader
     * free callback.
     */
  void *crc_cls;

    /**
     * How do we get more data?  NULL if we are
     * given all of the data up front.
     */
  MHD_ContentReaderCallback crc;

    /**
     * NULL if data must not be freed, otherwise
     * either user-specified callback or "&free".
     */
  MHD_ContentReaderFreeCallback crfc;

    /**
     * Mutex to synchronize access to data/size and
     * reference counts.
     */
  pthread_mutex_t mutex;

    /**
     * Reference count for this response.  Free
     * once the counter hits zero.
     */
  unsigned int reference_count;

    /**
     * Set to -1 if size is not known.
     */
  size_t total_size;

    /**
     * Size of data.
     */
  size_t data_size;

    /**
     * Size of the data buffer.
     */
  size_t data_buffer_size;

    /**
     * At what offset in the stream is the
     * beginning of data located?
     */
  size_t data_start;

};

/**
 * States in a state machine for a connection.
 *
 * Transitions are any-state to CLOSED, any state to state+1,
 * FOOTERS_SENT to INIT.  CLOSED is the terminal state and
 * INIT the initial state.
 *
 * Note that transitions for *reading* happen only after
 * the input has been processed; transitions for
 * *writing* happen after the respective data has been
 * put into the write buffer (the write does not have
 * to be completed yet).  A transition to CLOSED or INIT
 * requires the write to be complete.
 */
enum MHD_CONNECTION_STATE
{
    /**
     * Connection just started (no headers received).
     * Waiting for the line with the request type, URL and version.
     */
  MHD_CONNECTION_INIT = 0,

    /**
     * 1: We got the URL (and request type and version).  Wait for a header line.
     */
  MHD_CONNECTION_URL_RECEIVED = MHD_CONNECTION_INIT + 1,

    /**
     * 2: We got part of a multi-line request header.  Wait for the rest.
     */
  MHD_CONNECTION_HEADER_PART_RECEIVED = MHD_CONNECTION_URL_RECEIVED + 1,

    /**
     * 3: We got the request headers.  Process them.
     */
  MHD_CONNECTION_HEADERS_RECEIVED = MHD_CONNECTION_HEADER_PART_RECEIVED + 1,

    /**
     * 4: We have processed the request headers.  Send 100 continue.
     */
  MHD_CONNECTION_HEADERS_PROCESSED = MHD_CONNECTION_HEADERS_RECEIVED + 1,

    /**
     * 5: We have processed the headers and need to send 100 CONTINUE.
     */
  MHD_CONNECTION_CONTINUE_SENDING = MHD_CONNECTION_HEADERS_PROCESSED + 1,

    /**
     * 6: We have sent 100 CONTINUE (or do not need to).  Read the message body.
     */
  MHD_CONNECTION_CONTINUE_SENT = MHD_CONNECTION_CONTINUE_SENDING + 1,

    /**
     * 7: We got the request body.  Wait for a line of the footer.
     */
  MHD_CONNECTION_BODY_RECEIVED = MHD_CONNECTION_CONTINUE_SENT + 1,

    /**
     * 8: We got part of a line of the footer.  Wait for the
     * rest.
     */
  MHD_CONNECTION_FOOTER_PART_RECEIVED = MHD_CONNECTION_BODY_RECEIVED + 1,

    /**
     * 9: We received the entire footer.  Wait for a response to be queued
     * and prepare the response headers.
     */
  MHD_CONNECTION_FOOTERS_RECEIVED = MHD_CONNECTION_FOOTER_PART_RECEIVED + 1,

    /**
     * 10: We have prepared the response headers in the writ buffer.
     * Send the response headers.
     */
  MHD_CONNECTION_HEADERS_SENDING = MHD_CONNECTION_FOOTERS_RECEIVED + 1,

    /**
     * 11: We have sent the response headers.  Get ready to send the body.
     */
  MHD_CONNECTION_HEADERS_SENT = MHD_CONNECTION_HEADERS_SENDING + 1,

    /**
     * 12: We are ready to send a part of a non-chunked body.  Send it.
     */
  MHD_CONNECTION_NORMAL_BODY_READY = MHD_CONNECTION_HEADERS_SENT + 1,

    /**
     * 13: We are waiting for the client to provide more
     * data of a non-chunked body.
     */
  MHD_CONNECTION_NORMAL_BODY_UNREADY = MHD_CONNECTION_NORMAL_BODY_READY + 1,

    /**
     * 14: We are ready to send a chunk.
     */
  MHD_CONNECTION_CHUNKED_BODY_READY = MHD_CONNECTION_NORMAL_BODY_UNREADY + 1,

    /**
     * 15: We are waiting for the client to provide a chunk of the body.
     */
  MHD_CONNECTION_CHUNKED_BODY_UNREADY = MHD_CONNECTION_CHUNKED_BODY_READY + 1,

    /**
     * 16: We have sent the response body. Prepare the footers.
     */
  MHD_CONNECTION_BODY_SENT = MHD_CONNECTION_CHUNKED_BODY_UNREADY + 1,

    /**
     * 17: We have prepared the response footer.  Send it.
     */
  MHD_CONNECTION_FOOTERS_SENDING = MHD_CONNECTION_BODY_SENT + 1,

    /**
     * 18: We have sent the response footer.  Shutdown or restart.
     */
  MHD_CONNECTION_FOOTERS_SENT = MHD_CONNECTION_FOOTERS_SENDING + 1,

    /**
     * 19: This connection is closed (no more activity
     * allowed).
     */
  MHD_CONNECTION_CLOSED = MHD_CONNECTION_FOOTERS_SENT + 1,

};

enum MHDS_CONNECTION_STATE
{
  MHDS_CONNECTION_INIT = 0,

    /**
     * 1: We got the URL (and request type and version).  Wait for a header line.
     */
  MHDS_HANDSHAKE_COMPLETE = MHDS_CONNECTION_INIT + 1,

  MHDS_CONNECTION_CONTINUE_SENDING = MHDS_HANDSHAKE_COMPLETE + 1,

  MHDS_CONNECTION_CLOSED = MHDS_CONNECTION_CONTINUE_SENDING + 1
};

struct MHD_Connection
{

    /**
     * This is a linked list.
     */
  struct MHD_Connection *next;

    /**
     * Reference to the MHD_Daemon struct.
     */
  struct MHD_Daemon *daemon;

    /**
     * Linked list of parsed headers.
     */
  struct MHD_HTTP_Header *headers_received;

    /**
     * Response to transmit (initially NULL).
     */
  struct MHD_Response *response;

    /**
     * The memory pool is created whenever we first read
     * from the TCP stream and destroyed at the end of
     * each request (and re-created for the next request).
     * In the meantime, this pointer is NULL.  The
     * pool is used for all connection-related data
     * except for the response (which maybe shared between
     * connections) and the IP address (which persists
     * across individual requests).
     */
  struct MemoryPool *pool;

    /**
     * We allow the main application to associate some
     * pointer with the connection.  Here is where we
     * store it.  (MHD does not know or care what it
     * is).
     */
  void *client_context;

    /**
     * Request method.  Should be GET/POST/etc.  Allocated
     * in pool.
     */
  char *method;

    /**
     * Requested URL (everything after "GET" only).  Allocated
     * in pool.
     */
  char *url;

    /**
     * HTTP version string (i.e. http/1.1).  Allocated
     * in pool.
     */
  char *version;

    /**
     * Buffer for reading requests.   Allocated
     * in pool.  Actually one byte larger than
     * read_buffer_size (if non-NULL) to allow for
     * 0-termination.
     */
  char *read_buffer;

    /**
     * Buffer for writing response (headers only).  Allocated
     * in pool.
     */
  char *write_buffer;

    /**
     * Last incomplete header line during parsing of headers.
     * Allocated in pool.  Only valid if state is
     * either HEADER_PART_RECEIVED or FOOTER_PART_RECEIVED.
     */
  char *last;

    /**
     * Position after the colon on the last incomplete header
     * line during parsing of headers.
     * Allocated in pool.  Only valid if state is
     * either HEADER_PART_RECEIVED or FOOTER_PART_RECEIVED.
     */
  char *colon;

    /**
     * Foreign address (of length addr_len).  MALLOCED (not
     * in pool!).
     */
  struct sockaddr_in *addr;

    /**
     * Thread for this connection (if we are using
     * one thread per connection).
     */
  pthread_t pid;

    /**
     * Size of read_buffer (in bytes).  This value indicates
     * how many bytes we're willing to read into the buffer;
     * the real buffer is one byte longer to allow for
     * adding zero-termination (when needed).
     */
  size_t read_buffer_size;

    /**
     * Position where we currently append data in
     * read_buffer (last valid position).
     */
  size_t read_buffer_offset;

    /**
     * Size of write_buffer (in bytes).
     */
  size_t write_buffer_size;

    /**
     * Offset where we are with sending from write_buffer.
     */
  size_t write_buffer_send_offset;

    /**
     * Last valid location in write_buffer (where do we
     * append and up to where is it safe to send?)
     */
  size_t write_buffer_append_offset;

    /**
     * How many more bytes of the body do we expect
     * to read? "-1" for unknown.
     */
  size_t remaining_upload_size;

    /**
     * Current write position in the actual response
     * (excluding headers, content only; should be 0
     * while sending headers).
     */
  size_t response_write_position;

    /**
     * Position in the 100 CONTINUE message that
     * we need to send when receiving http 1.1 requests.
     */
  size_t continue_message_write_offset;

    /**
     * Length of the foreign address.
     */
  socklen_t addr_len;

    /**
     * Last time this connection had any activity
     * (reading or writing).
     */
  time_t last_activity;

    /**
     * Socket for this connection.  Set to -1 if
     * this connection has died (daemon should clean
     * up in that case).
     */
  int socket_fd;

    /**
     * Has this socket been closed for reading (i.e.
     * other side closed the connection)?  If so,
     * we must completely close the connection once
     * we are done sending our response (and stop
     * trying to read from this socket).
     */
  int read_closed;

    /**
     * State in the FSM for this connection.
     */
  enum MHD_CONNECTION_STATE state;

    /**
     * HTTP response code.  Only valid if response object
     * is already set.
     */
  unsigned int responseCode;

    /**
     * Set to MHD_YES if the response's content reader
     * callback failed to provide data the last time
     * we tried to read from it.  In that case, the
     * write socket should be marked as unready until
     * the CRC call succeeds.
     */
  int response_unready;

    /**
     * Are we sending with chunked encoding?
     */
  int have_chunked_response;

    /**
     * Are we receiving with chunked encoding?  This will be set to
     * MHD_YES after we parse the headers and are processing the body
     * with chunks.  After we are done with the body and we are
     * processing the footers; once the footers are also done, this will
     * be set to MHD_NO again (before the final call to the handler).
     */
  int have_chunked_upload;

    /**
     * If we are receiving with chunked encoding, where are we right
     * now?  Set to 0 if we are waiting to receive the chunk size;
     * otherwise, this is the size of the current chunk.  A value of
     * zero is also used when we're at the end of the chunks.
     */
  unsigned int current_chunk_size;

    /**
     * If we are receiving with chunked encoding, where are we currently
     * with respect to the current chunk (at what offset / position)?
     */
  unsigned int current_chunk_offset;

};

typedef struct MHD_Connection MHD_Connection_t;

struct MHD_Daemon
{

    /**
     * Callback function for all requests.
     */
  MHD_AccessHandlerCallback default_handler;

    /**
     * Closure argument to default_handler.
     */
  void *default_handler_cls;

    /**
     * Linked list of our current connections.
     */
  struct MHD_Connection *connections;

    /**
     * Linked list of our current connections.
     */
  // TODO switch to a dedicated tls connection struct 
  struct MHD_Connection *tls_connections;

  MHD_AcceptPolicyCallback apc;

  void *apc_cls;

  MHD_RequestCompletedCallback notify_completed;

  void *notify_completed_cls;

    /**
     * PID of the select thread (if we have internal select)
     */
  pthread_t pid;

    /**
     * Listen socket.
     */
  int socket_fd;

    /**
     * Are we shutting down?
     */
  int shutdown;

    /**
     * Size of the per-connection memory pools.
     */
  unsigned int pool_size;

    /**
     * Limit on the number of parallel connections.
     */
  unsigned int max_connections;

    /**
     * After how many seconds of inactivity should
     * connections time out?  Zero for no timeout.
     */
  unsigned int connection_timeout;

    /**
     * Maximum number of connections per IP, or 0 for
     * unlimited.
     */
  unsigned int per_ip_connection_limit;

    /**
     * Daemon's options.
     */
  enum MHD_OPTION options;

    /**
     * Listen port.
     */
  unsigned short port;

  /* server credintials */
  gnutls_certificate_credentials_t x509_cret;

  /* cipher priority cache */
  gnutls_priority_t priority_cache;

  /* Diffie-Hellman parameters */
  gnutls_dh_params_t dh_params;

  // TODO consider switching to variadic length paths
  /* server root path used while serving http pages */
  char doc_root[255];

  char https_key_path[255];

  char https_cert_path[255];
};

#endif