aboutsummaryrefslogtreecommitdiff
path: root/src/daemon/connection.c
blob: fdbc975cfb9e818046e17f38f2d9dc361aa52aad (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
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
/*
     This file is part of libmicrohttpd
     (C) 2007 Daniel Pittman and Christian Grothoff

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

     libmicrohttpd 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
     General Public License for more details.

     You should have received a copy of the GNU General Public License
     along with libmicrohttpd; see the file COPYING.  If not, write to the
     Free Software Foundation, Inc., 59 Temple Place - Suite 330,
     Boston, MA 02111-1307, USA.
*/

/**
 * @file connection.c
 * @brief  Methods for managing connections
 * @author Daniel Pittman
 * @author Christian Grothoff
 */

#include "internal.h"
#include "connection.h"
#include "memorypool.h"
#include "response.h"

/**
 * Message to transmit when http 1.1 request is received
 */
#define HTTP_100_CONTINUE "HTTP/1.1 100 Continue\r\n\r\n"

/**
 * Response used when the request (http header) is too big to
 * be processed.
 */
#define REQUEST_TOO_BIG ""

/**
 * Get all of the headers from the request.
 *
 * @param iterator callback to call on each header;
 *        maybe NULL (then just count headers)
 * @param iterator_cls extra argument to iterator
 * @return number of entries iterated over
 */
int
MHD_get_connection_values (struct MHD_Connection *connection,
                           enum MHD_ValueKind kind,
                           MHD_KeyValueIterator iterator, void *iterator_cls)
{
  int ret;
  struct MHD_HTTP_Header *pos;

  if (connection == NULL)
    return -1;
  ret = 0;
  pos = connection->headers_received;
  while (pos != NULL)
    {
      if (0 != (pos->kind & kind))
        {
          ret++;
          if ((iterator != NULL) &&
              (MHD_YES != iterator (iterator_cls,
                                    kind, pos->header, pos->value)))
            return ret;
        }
      pos = pos->next;
    }
  return ret;
}


/**
 * Get a particular header value.  If multiple
 * values match the kind, return any one of them.
 *
 * @param key the header to look for
 * @return NULL if no such item was found
 */
const char *
MHD_lookup_connection_value (struct MHD_Connection *connection,
                             enum MHD_ValueKind kind, const char *key)
{
  struct MHD_HTTP_Header *pos;

  if (connection == NULL)
    return NULL;
  pos = connection->headers_received;
  while (pos != NULL)
    {
      if ((0 != (pos->kind & kind)) && (0 == strcasecmp (key, pos->header)))
        return pos->value;
      pos = pos->next;
    }
  return NULL;
}

/**
 * Queue a response to be transmitted to the client (as soon as
 * possible).
 *
 * @param connection the connection identifying the client
 * @param status_code HTTP status code (i.e. 200 for OK)
 * @param response response to transmit
 * @return MHD_NO on error (i.e. reply already sent),
 *         MHD_YES on success or if message has been queued
 */
int
MHD_queue_response (struct MHD_Connection *connection,
                    unsigned int status_code, struct MHD_Response *response)
{
  if ((connection == NULL) ||
      (response == NULL) ||
      (connection->response != NULL) ||
      (connection->bodyReceived == 0) || (connection->headersReceived == 0))
    return MHD_NO;
  MHD_increment_response_rc (response);
  connection->response = response;
  connection->responseCode = status_code;
  if ((connection->method != NULL) &&
      (0 == strcasecmp (connection->method, MHD_HTTP_METHOD_HEAD)))
    {
      /* if this is a "HEAD" request, pretend that we
         have already sent the full message body */
      connection->messagePos = response->total_size;
    }
  return MHD_YES;
}

/**
 * Do we (still) need to send a 100 continue
 * message for this connection?
 */
static int
MHD_need_100_continue (struct MHD_Connection *connection)
{
  const char *expect;

  return ((connection->version != NULL) &&
          (0 == strcasecmp (connection->version,
                            MHD_HTTP_VERSION_1_1)) &&
          (connection->headersReceived == 1) &&
          (NULL != (expect = MHD_lookup_connection_value (connection,
                                                          MHD_HEADER_KIND,
                                                          MHD_HTTP_HEADER_EXPECT)))
          && (0 == strcasecmp (expect, "100-continue"))
          && (connection->continuePos < strlen (HTTP_100_CONTINUE)));
}

/**
 * Obtain the select sets for this connection
 *
 * @return MHD_YES on success
 */
int
MHD_connection_get_fdset (struct MHD_Connection *connection,
                          fd_set * read_fd_set,
                          fd_set * write_fd_set,
                          fd_set * except_fd_set, int *max_fd)
{
  int fd;
  void *buf;

  fd = connection->socket_fd;
  if (fd == -1)
    return MHD_YES;
  if ((connection->read_close == MHD_NO) &&
      ((connection->headersReceived == 0) ||
       (connection->readLoc < connection->read_buffer_size)))
    {
      FD_SET (fd, read_fd_set);
      if (fd > *max_fd)
        *max_fd = fd;
    }
  else
    {
      if ((connection->read_close == MHD_NO) &&
          ((connection->headersReceived == 1) &&
           (connection->post_processed == MHD_NO) &&
           (connection->readLoc == connection->read_buffer_size)))
        {
          /* try growing the read buffer, just in case */
          buf = MHD_pool_reallocate (connection->pool,
                                     connection->read_buffer,
                                     connection->read_buffer_size,
                                     connection->read_buffer_size * 2 +
                                     MHD_BUF_INC_SIZE);
          if (buf != NULL)
            {
              /* we can actually grow the buffer, do it! */
              connection->read_buffer = buf;
              connection->read_buffer_size =
                connection->read_buffer_size * 2 + MHD_BUF_INC_SIZE;
              FD_SET (fd, read_fd_set);
              if (fd > *max_fd)
                *max_fd = fd;
            }
        }
    }
  if ((connection->response != NULL) || MHD_need_100_continue (connection))
    {
      FD_SET (fd, write_fd_set);
      if (fd > *max_fd)
        *max_fd = fd;
    }
  return MHD_YES;
}

/**
 * We ran out of memory processing the
 * header.  Handle it properly by stopping to read data
 * and sending a HTTP 413 or HTTP 414 response.
 * 
 * @param status_code the response code to send (413 or 414)
 */
static void
MHD_excessive_data_handler (struct MHD_Connection *connection,
                            unsigned int status_code)
{
  struct MHD_Response *response;

  /* die, header far too long to be reasonable;
     FIXME: send proper response to client
     (stop reading, queue proper response) */
  connection->read_close = MHD_YES;
  connection->headersReceived = MHD_YES;
  connection->bodyReceived = MHD_YES;
  MHD_DLOG (connection->daemon,
            "Received excessively long header, closing connection.\n");
  response = MHD_create_response_from_data (strlen (REQUEST_TOO_BIG),
                                            REQUEST_TOO_BIG, MHD_NO, MHD_NO);
  MHD_queue_response (connection, status_code, response);
  MHD_destroy_response (response);
}

/**
 * Parse a single line of the HTTP header.  Advance
 * read_buffer (!) appropriately.  If the current line does not
 * fit, consider growing the buffer.  If the line is
 * far too long, close the connection.  If no line is
 * found (incomplete, buffer too small, line too long),
 * return NULL.  Otherwise return a pointer to the line.
 */
static char *
MHD_get_next_header_line (struct MHD_Connection *connection)
{
  char *rbuf;
  size_t pos;

  if (connection->readLoc == 0)
    return NULL;
  pos = 0;
  rbuf = connection->read_buffer;
  while ((pos < connection->readLoc - 1) &&
         (rbuf[pos] != '\r') && (rbuf[pos] != '\n'))
    pos++;
  if (pos == connection->readLoc - 1)
    {
      /* not found, consider growing... */
      if (connection->readLoc == connection->read_buffer_size)
        {
          rbuf = MHD_pool_reallocate (connection->pool,
                                      connection->read_buffer,
                                      connection->read_buffer_size,
                                      connection->read_buffer_size * 2 +
                                      MHD_BUF_INC_SIZE);
          if (rbuf == NULL)
            {
              MHD_excessive_data_handler (connection,
                                          (connection->url != NULL)
                                          ? MHD_HTTP_REQUEST_ENTITY_TOO_LARGE
                                          : MHD_HTTP_REQUEST_URI_TOO_LONG);
            }
          else
            {
              connection->read_buffer_size =
                connection->read_buffer_size * 2 + MHD_BUF_INC_SIZE;
              connection->read_buffer = rbuf;
            }
        }
      return NULL;
    }
  /* found, check if we have proper CRLF */
  if ((rbuf[pos] == '\r') && (rbuf[pos + 1] == '\n'))
    rbuf[pos++] = '\0';         /* skip both r and n */
  rbuf[pos++] = '\0';
  connection->read_buffer += pos;
  connection->read_buffer_size -= pos;
  connection->readLoc -= pos;
  return rbuf;
}

/**
 * @return MHD_NO on failure (out of memory), MHD_YES for success
 */
static int
MHD_connection_add_header (struct MHD_Connection *connection,
                           char *key, char *value, enum MHD_ValueKind kind)
{
  struct MHD_HTTP_Header *hdr;

  hdr = MHD_pool_allocate (connection->pool,
                           sizeof (struct MHD_HTTP_Header), MHD_YES);
  if (hdr == NULL)
    {
      MHD_DLOG (connection->daemon,
                "Not enough memory to allocate header record!\n");
      MHD_excessive_data_handler (connection,
                                  MHD_HTTP_REQUEST_ENTITY_TOO_LARGE);
      return MHD_NO;
    }
  hdr->next = connection->headers_received;
  hdr->header = key;
  hdr->value = value;
  hdr->kind = kind;
  connection->headers_received = hdr;
  return MHD_YES;
}

/**
 * Process escape sequences ('+'=space, %HH)
 */
static void
MHD_http_unescape (char *val)
{
  char *esc;
  unsigned int num;

  while (NULL != (esc = strstr (val, "+")))
    *esc = ' ';
  while (NULL != (esc = strstr (val, "%")))
    {
      if ((1 == sscanf (&esc[1],
                        "%2x", &num)) || (1 == sscanf (&esc[1], "%2X", &num)))
        {
          esc[0] = (unsigned char) num;
          memmove (&esc[1], &esc[3], strlen (&esc[3]));
        }
      val = esc + 1;
    }
}

/**
 * @return MHD_NO on failure (out of memory), MHD_YES for success
 */
static int
parse_arguments (enum MHD_ValueKind kind,
                 struct MHD_Connection *connection, char *args)
{
  char *equals;
  char *amper;

  while (args != NULL)
    {
      equals = strstr (args, "=");
      if (equals == NULL)
        return MHD_NO;          /* invalid, ignore */
      equals[0] = '\0';
      equals++;
      amper = strstr (equals, "&");
      if (amper != NULL)
        {
          amper[0] = '\0';
          amper++;
        }
      MHD_http_unescape (args);
      MHD_http_unescape (equals);
      if (MHD_NO == MHD_connection_add_header (connection,
                                               args, equals, kind))
        return MHD_NO;
      args = amper;
    }
  return MHD_YES;
}

/**
 * Parse the cookie header (see RFC 2109).
 * 
 * @return MHD_YES for success, MHD_NO for failure (malformed, out of memory)
 */
static int
MHD_parse_cookie_header (struct MHD_Connection *connection)
{
  const char *hdr;
  char *cpy;
  char *pos;
  char *semicolon;
  char *equals;
  int quotes;

  hdr = MHD_lookup_connection_value (connection, MHD_HEADER_KIND, "Cookie");
  if (hdr == NULL)
    return MHD_YES;
  cpy = MHD_pool_allocate (connection->pool, strlen (hdr) + 1, MHD_YES);
  if (cpy == NULL)
    {
      MHD_DLOG (connection->daemon, "Not enough memory to parse cookies!\n");
      MHD_excessive_data_handler (connection,
                                  MHD_HTTP_REQUEST_ENTITY_TOO_LARGE);
      return MHD_NO;
    }
  memcpy (cpy, hdr, strlen (hdr) + 1);
  pos = cpy;
  while (pos != NULL)
    {
      equals = strstr (pos, "=");
      if (equals == NULL)
        break;
      equals[0] = '\0';
      equals++;
      quotes = 0;
      semicolon = equals;
      while ((semicolon[0] != '\0') &&
             ((quotes != 0) ||
              ((semicolon[0] != ';') && (semicolon[0] != ','))))
        {
          if (semicolon[0] == '"')
            quotes = (quotes + 1) & 1;
          semicolon++;
        }
      if (semicolon[0] == '\0')
        semicolon = NULL;
      if (semicolon != NULL)
        {
          semicolon[0] = '\0';
          semicolon++;
        }
      /* remove quotes */
      if ((equals[0] == '"') && (equals[strlen (equals) - 1] == '"'))
        {
          equals[strlen (equals) - 1] = '\0';
          equals++;
        }
      if (MHD_NO == MHD_connection_add_header (connection,
                                               pos, equals, MHD_COOKIE_KIND))
        return MHD_NO;
      pos = semicolon;
    }
  return MHD_YES;
}

/**
 * Parse the first line of the HTTP HEADER.
 *
 * @param connection the connection (updated)
 * @param line the first line
 * @return MHD_YES if the line is ok, MHD_NO if it is malformed
 */
static int
parse_initial_message_line (struct MHD_Connection *connection, char *line)
{
  char *uri;
  char *httpVersion;
  char *args;

  uri = strstr (line, " ");
  if (uri == NULL)
    return MHD_NO;              /* serious error */
  uri[0] = '\0';
  connection->method = line;
  uri++;
  while (uri[0] == ' ')
    uri++;
  httpVersion = strstr (uri, " ");
  if (httpVersion != NULL)
    {
      httpVersion[0] = '\0';
      httpVersion++;
    }
  args = strstr (uri, "?");
  if (args != NULL)
    {
      args[0] = '\0';
      args++;
      parse_arguments (MHD_GET_ARGUMENT_KIND, connection, args);
    }
  connection->url = uri;
  if (httpVersion == NULL)
    connection->version = "";
  else
    connection->version = httpVersion;
  return MHD_YES;
}


/**
 * This function is designed to parse the input buffer of a given connection.
 *
 * Once the header is complete, it should have set the
 * headers_received, url and method values and set
 * headersReceived to 1.  If no body is expected, it should
 * also set "bodyReceived" to 1.  Otherwise, it should
 * set "uploadSize" to the expected size of the body.  If the
 * size of the body is unknown, it should be set to -1.
 */
static void
MHD_parse_connection_headers (struct MHD_Connection *connection)
{
  char *last;
  char *line;
  char *colon;
  char *tmp;
  const char *clen;
  const char *end;
  unsigned long long cval;

  if (connection->bodyReceived == 1)
    abort ();
  last = NULL;
  while (NULL != (line = MHD_get_next_header_line (connection)))
    {
      if (last != NULL)
        {
          if ((line[0] == ' ') || (line[0] == '\t'))
            {
              /* value was continued on the next line, see
                 http://www.jmarshall.com/easy/http/ */
              last = MHD_pool_reallocate (connection->pool,
                                          last,
                                          strlen (last) + 1,
                                          strlen (line) + strlen (last) + 1);
              if (last == NULL)
                {
                  MHD_excessive_data_handler (connection,
                                              MHD_HTTP_REQUEST_ENTITY_TOO_LARGE);
                  break;
                }
              tmp = line;
              while ((tmp[0] == ' ') || (tmp[0] == '\t'))
                tmp++;          /* skip whitespace at start of 2nd line */
              strcat (last, tmp);
              continue;         /* possibly more than 2 lines... */
            }
          else
            {
              if (MHD_NO == MHD_connection_add_header (connection,
                                                       last,
                                                       colon,
                                                       MHD_HEADER_KIND))
                return;
              last = NULL;
            }
        }
      if (connection->url == NULL)
        {
          /* line must be request line (first line of header) */
          if (MHD_NO == parse_initial_message_line (connection, line))
            goto DIE;
          continue;
        }
      /* check if this is the end of the header */
      if (strlen (line) == 0)
        {
          /* end of header */
          connection->headersReceived = 1;
          clen = MHD_lookup_connection_value (connection,
                                              MHD_HEADER_KIND,
                                              MHD_HTTP_HEADER_CONTENT_LENGTH);
          if (clen != NULL)
            {
              if (1 != sscanf (clen, "%llu", &cval))
                {
                  MHD_DLOG (connection->daemon,
                            "Failed to parse `%s' header `%s', closing connection.\n",
                            MHD_HTTP_HEADER_CONTENT_LENGTH, clen);
                  goto DIE;
                }
              connection->uploadSize = cval;
              connection->bodyReceived = cval == 0 ? 1 : 0;
            }
          else
            {
              if (NULL == MHD_lookup_connection_value (connection,
                                                       MHD_HEADER_KIND,
                                                       MHD_HTTP_HEADER_TRANSFER_ENCODING))
                {
                  /* this request does not have a body */
                  connection->uploadSize = 0;
                  connection->bodyReceived = 1;
                }
              else
                {
                  connection->uploadSize = -1;  /* unknown size */
                  connection->bodyReceived = 0;
                }
            }
          end = MHD_lookup_connection_value (connection,
                                             MHD_HEADER_KIND,
                                             MHD_HTTP_HEADER_CONNECTION);
          if ((end != NULL) && (0 == strcasecmp (end, "close")))
            {
              /* other side explicitly requested 
                 that we close the connection after
                 this request */
              connection->read_close = MHD_YES;
            }
          break;
        }
      /* line should be normal header line, find colon */
      colon = strstr (line, ":");
      if (colon == NULL)
        {
          /* error in header line, die hard */
          MHD_DLOG (connection->daemon,
                    "Received malformed line (no colon), closing connection.\n");
          goto DIE;
        }
      /* zero-terminate header */
      colon[0] = '\0';
      colon++;                  /* advance to value */
      while ((colon[0] != '\0') && ((colon[0] == ' ') || (colon[0] == '\t')))
        colon++;
      /* we do the actual adding of the connection
         header at the beginning of the while
         loop since we need to be able to inspect
         the *next* header line (in case it starts
         with a space...) */
      last = line;
    }
  if ((last != NULL) &&
      (MHD_NO == MHD_connection_add_header (connection,
                                            last, colon, MHD_HEADER_KIND)))
    return;                     /* error */
  MHD_parse_cookie_header (connection);
  return;
DIE:
  CLOSE (connection->socket_fd);
  connection->socket_fd = -1;
}


/**
 * Find the handler responsible for this request.
 */
static struct MHD_Access_Handler *
MHD_find_access_handler (struct MHD_Connection *connection)
{
  struct MHD_Access_Handler *pos;

  pos = connection->daemon->handlers;
  while (pos != NULL)
    {
      if (0 == strcmp (connection->url, pos->uri_prefix))
        return pos;
      pos = pos->next;
    }
  return &connection->daemon->default_handler;
}

/**
 * Test if we are able to process the POST data.
 * This depends on available memory (enough to load
 * all of the POST data into the pool) and the
 * content encoding of the POST data.  And of course,
 * this requires that the request is actually a
 * POST request.
 * 
 * @return MHD_YES if so
 */
static int
MHD_test_post_data (struct MHD_Connection *connection)
{
  const char *encoding;
  void *buf;

  if ((connection->method == NULL) ||
      (connection->response != NULL) ||
      (0 != strcasecmp (connection->method, MHD_HTTP_METHOD_POST)))
    return MHD_NO;
  encoding = MHD_lookup_connection_value (connection,
                                          MHD_HEADER_KIND,
                                          MHD_HTTP_HEADER_CONTENT_TYPE);
  if (encoding == NULL)
    return MHD_NO;
  if ((0 == strcasecmp (MHD_HTTP_POST_ENCODING_FORM_URLENCODED,
                        encoding)) && (connection->uploadSize != -1))
    {
      buf = MHD_pool_reallocate (connection->pool,
                                 connection->read_buffer,
                                 connection->read_buffer_size,
                                 connection->uploadSize + 1);
      if (buf == NULL)
        return MHD_NO;
      connection->read_buffer_size = connection->uploadSize + 1;
      connection->read_buffer = buf;
      return MHD_YES;
    }
  return MHD_NO;
}

/**
 * Process the POST data here (adding to headers).
 *
 * Needs to first check POST encoding and then do
 * the right thing (TM).  The POST data is in the
 * connection's post_data buffer between the postPos 
 * and postLoc offsets.  The POST message maybe
 * incomplete.  The existing buffer (allocated from
 * the pool) can be used and modified but must then
 * be properly removed from the struct.
 * 
 * @return MHD_YES on success, MHD_NO on error (i.e. out of
 *         memory).
 */
static int
MHD_parse_post_data (struct MHD_Connection *connection)
{
  const char *encoding;
  int ret;

  encoding = MHD_lookup_connection_value (connection,
                                          MHD_HEADER_KIND,
                                          MHD_HTTP_HEADER_CONTENT_TYPE);
  if (encoding == NULL)
    return MHD_NO;
  if (0 == strcasecmp (MHD_HTTP_POST_ENCODING_FORM_URLENCODED, encoding))
    {
      ret = parse_arguments (MHD_POSTDATA_KIND,
                             connection, connection->read_buffer);
      /* invalidate read buffer for other uses --
         in particular, do not give it to the
         client; if this were to be needed, we would
         have to make a copy, which would double memory 
         requirements */
      connection->read_buffer_size = 0;
      connection->readLoc = 0;
      connection->uploadSize = 0;
      connection->read_buffer = NULL;
      return ret;
    }
  if (0 == strcasecmp (MHD_HTTP_POST_ENCODING_MULTIPART_FORMDATA, encoding))
    {
      /* this code should never been reached right now,
         since the test_post_data function would already
         return MHD_NO; code is here only for future
         extensions... */
      /* see http://www.w3.org/TR/html4/interact/forms.html#h-17.13.4 */
      MHD_DLOG (connection->daemon,
                "Unsupported multipart encoding of POST data specified, not processing POST data.\n");
      return MHD_NO;
    }
  /* this should never be reached, just here for
     error checking */
  MHD_DLOG (connection->daemon,
            "Unknown encoding of POST data specified, not processing POST data.\n");
  return MHD_NO;
}

/**
 * Call the handler of the application for this
 * connection.
 */
void
MHD_call_connection_handler (struct MHD_Connection *connection)
{
  struct MHD_Access_Handler *ah;
  unsigned int processed;

  if (connection->response != NULL)
    return;                     /* already queued a response */
  if (connection->headersReceived == 0)
    abort ();                   /* bad timing... */
  ah = MHD_find_access_handler (connection);
  processed = connection->readLoc;
  if (MHD_NO == ah->dh (ah->dh_cls,
                        connection,
                        connection->url,
                        connection->method,
                        connection->version,
                        connection->read_buffer, &processed))
    {
      /* serios internal error, close connection */
      MHD_DLOG (connection->daemon,
                "Internal application error, closing connection.\n");
      CLOSE (connection->socket_fd);
      connection->socket_fd = -1;
      return;
    }
  /* dh left "processed" bytes in buffer for next time... */
  memmove (connection->read_buffer,
           &connection->read_buffer[connection->readLoc - processed],
           processed);
  if (connection->uploadSize != -1)
    connection->uploadSize -= (connection->readLoc - processed);
  connection->readLoc = processed;
  if ((connection->uploadSize == 0) ||
      ((connection->readLoc == 0) &&
       (connection->uploadSize == -1) && (connection->socket_fd == -1)))
    {
      connection->bodyReceived = 1;
      connection->readLoc = 0;
      connection->read_buffer_size = 0;
      connection->read_buffer = NULL;
    }
}


/**
 * This function handles a particular connection when it has been
 * determined that there is data to be read off a socket. All implementations
 * (multithreaded, external select, internal select) call this function
 * to handle reads.
 */
int
MHD_connection_handle_read (struct MHD_Connection *connection)
{
  int bytes_read;
  void *tmp;

  if (connection->pool == NULL)
    connection->pool = MHD_pool_create (connection->daemon->pool_size);
  if (connection->pool == NULL)
    {
      MHD_DLOG (connection->daemon, "Failed to create memory pool!\n");
      CLOSE (connection->socket_fd);
      connection->socket_fd = -1;
      return MHD_NO;
    }
  if ((connection->readLoc >= connection->read_buffer_size) &&
      (connection->headersReceived == 0))
    {
      /* need to grow read buffer */
      tmp = MHD_pool_reallocate (connection->pool,
                                 connection->read_buffer,
                                 connection->read_buffer_size,
                                 connection->read_buffer_size * 2 +
                                 MHD_BUF_INC_SIZE);
      if (tmp == NULL)
        {
          MHD_DLOG (connection->daemon,
                    "Not enough memory for reading headers!\n");
          MHD_excessive_data_handler (connection,
                                      MHD_HTTP_REQUEST_ENTITY_TOO_LARGE);
          return MHD_NO;
        }
      connection->read_buffer = tmp;
      connection->read_buffer_size =
        connection->read_buffer_size * 2 + MHD_BUF_INC_SIZE;
    }
  if (connection->readLoc >= connection->read_buffer_size)
    {
      MHD_DLOG (connection->daemon, "Unexpected call to %s.\n", __FUNCTION__);
      return MHD_NO;
    }
  bytes_read = RECV (connection->socket_fd,
                     &connection->read_buffer[connection->readLoc],
                     connection->read_buffer_size - connection->readLoc, 0);
  if (bytes_read < 0)
    {
      if (errno == EINTR)
        return MHD_NO;
      MHD_DLOG (connection->daemon,
                "Failed to receive data: %s\n", STRERROR (errno));
      CLOSE (connection->socket_fd);
      connection->socket_fd = -1;
      return MHD_YES;
    }
  if (bytes_read == 0)
    {
      /* other side closed connection */
      connection->read_close = MHD_YES;
      if (connection->readLoc > 0)
        MHD_call_connection_handler (connection);
      shutdown (connection->socket_fd, SHUT_RD);
      return MHD_YES;
    }
  connection->readLoc += bytes_read;
  if (connection->headersReceived == 0)
    {
      MHD_parse_connection_headers (connection);
      if (connection->headersReceived == 1)
        {
          connection->post_processed = MHD_test_post_data (connection);
        }
    }
  if (connection->headersReceived == 1)
    {
      if ((connection->post_processed == MHD_YES) &&
          (connection->uploadSize == connection->readLoc))
        if (MHD_NO == MHD_parse_post_data (connection))
          connection->post_processed = MHD_NO;
      if (((connection->post_processed == MHD_NO) ||
           (connection->read_buffer_size == connection->readLoc)) &&
          (connection->method != NULL))
        MHD_call_connection_handler (connection);
    }
  return MHD_YES;
}

/**
 * Check if we need to set some additional headers
 * for http-compiliance.
 */
static void
MHD_add_extra_headers (struct MHD_Connection *connection)
{
  const char *have;
  char buf[128];

  if (connection->response->total_size == -1)
    {
      have = MHD_get_response_header (connection->response,
                                      MHD_HTTP_HEADER_CONNECTION);
      if (have == NULL)
        MHD_add_response_header (connection->response,
                                 MHD_HTTP_HEADER_CONNECTION, "close");
    }
  else if (NULL == MHD_get_response_header (connection->response,
                                            MHD_HTTP_HEADER_CONTENT_LENGTH))
    {
      _REAL_SNPRINTF (buf,
                      128,
                      "%llu",
                      (unsigned long long) connection->response->total_size);
      MHD_add_response_header (connection->response,
                               MHD_HTTP_HEADER_CONTENT_LENGTH, buf);
    }
}

static void
get_date_string (char *date, unsigned int max)
{
  static const char *days[] =
    { "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" };
  static const char *mons[] =
    { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct",
"Nov", "Dec" };
  struct tm now;
  time_t t;

  time (&t);
  gmtime_r (&t, &now);
  snprintf (date,
            max - 1,
            "Date: %3s, %02u %3s %04u %02u:%02u:%02u GMT\r\n",
            days[now.tm_wday % 7],
            now.tm_mday,
            mons[now.tm_mon % 12],
            now.tm_year, now.tm_hour, now.tm_min, now.tm_sec);
}

/**
 * Allocate the connection's write buffer and
 * fill it with all of the headers from the
 * HTTPd's response.
 */
static int
MHD_build_header_response (struct MHD_Connection *connection)
{
  size_t size;
  size_t off;
  struct MHD_HTTP_Header *pos;
  char code[32];
  char date[128];
  char *data;

  MHD_add_extra_headers (connection);
  SPRINTF (code, "%s %u\r\n", MHD_HTTP_VERSION_1_1, connection->responseCode);
  off = strlen (code);
  /* estimate size */
  size = off + 2;               /* extra \r\n at the end */
  pos = connection->response->first_header;
  while (pos != NULL)
    {
      size += strlen (pos->header) + strlen (pos->value) + 4;   /* colon, space, linefeeds */
      pos = pos->next;
    }
  if (NULL == MHD_get_response_header (connection->response,
                                       MHD_HTTP_HEADER_DATE))
    get_date_string (date, sizeof (date));
  else
    date[0] = '\0';
  size += strlen (date);
  /* produce data */
  data = MHD_pool_allocate (connection->pool, size + 1, MHD_YES);
  if (data == NULL)
    {
      MHD_DLOG (connection->daemon, "Not enough memory for write!\n");
      return MHD_NO;
    }
  memcpy (data, code, off);
  pos = connection->response->first_header;
  while (pos != NULL)
    {
      SPRINTF (&data[off], "%s: %s\r\n", pos->header, pos->value);
      off += strlen (pos->header) + strlen (pos->value) + 4;
      pos = pos->next;
    }
  strcpy (&data[off], date);
  off += strlen (date);
  sprintf (&data[off], "\r\n");
  off += 2;
  if (off != size)
    abort ();
  connection->write_buffer = data;
  connection->writeLoc = size;
  connection->writePos = 0;
  connection->write_buffer_size = size + 1;
  return MHD_YES;
}

/**
 * This function was created to handle writes to sockets when it has
 * been determined that the socket can be written to. All
 * implementations (multithreaded, external select, internal select)
 * call this function
 */
int
MHD_connection_handle_write (struct MHD_Connection *connection)
{
  struct MHD_Response *response;
  int ret;

  if (MHD_need_100_continue (connection))
    {
      ret = SEND (connection->socket_fd,
                  &HTTP_100_CONTINUE[connection->continuePos],
                  strlen (HTTP_100_CONTINUE) - connection->continuePos, 0);
      if (ret < 0)
        {
          if (errno == EINTR)
            return MHD_YES;
          MHD_DLOG (connection->daemon,
                    "Failed to send data: %s\n", STRERROR (errno));
          CLOSE (connection->socket_fd);
          connection->socket_fd = -1;
          return MHD_YES;
        }
      connection->continuePos += ret;
      return MHD_YES;
    }
  response = connection->response;
  if (response == NULL)
    {
      MHD_DLOG (connection->daemon, "Unexpected call to %s.\n", __FUNCTION__);
      return MHD_NO;
    }
  if (!connection->headersSent)
    {
      if ((connection->write_buffer == NULL) &&
          (MHD_NO == MHD_build_header_response (connection)))
        {
          /* oops - close! */
          CLOSE (connection->socket_fd);
          connection->socket_fd = -1;
          return MHD_NO;
        }
      ret = SEND (connection->socket_fd,
                  &connection->write_buffer[connection->writePos],
                  connection->writeLoc - connection->writePos, 0);
      if (ret < 0)
        {
          if (errno == EINTR)
            return MHD_YES;
          MHD_DLOG (connection->daemon,
                    "Failed to send data: %s\n", STRERROR (errno));
          CLOSE (connection->socket_fd);
          connection->socket_fd = -1;
          return MHD_YES;
        }
      connection->writePos += ret;
      if (connection->writeLoc == connection->writePos)
        {
          connection->writeLoc = 0;
          connection->writePos = 0;
          connection->headersSent = 1;
          MHD_pool_reallocate (connection->pool,
                               connection->write_buffer,
                               connection->write_buffer_size, 0);
          connection->write_buffer = NULL;
          connection->write_buffer_size = 0;
        }
      return MHD_YES;
    }
  if (response->total_size < connection->messagePos)
    abort ();                   /* internal error */
  if (response->crc != NULL)
    pthread_mutex_lock (&response->mutex);

  /* prepare send buffer */
  if ((response->crc != NULL) &&
      ((response->data_start > connection->messagePos) ||
       (response->data_start + response->data_size <=
        connection->messagePos)))
    {
      ret = response->crc (response->crc_cls,
                           connection->messagePos,
                           response->data,
                           MIN (response->data_buffer_size,
                                response->total_size -
                                connection->messagePos));
      if (ret == -1)
        {
          /* end of message, signal other side by closing! */
          response->total_size = connection->messagePos;
          CLOSE (connection->socket_fd);
          connection->socket_fd = -1;
          if (response->crc != NULL)
            pthread_mutex_unlock (&response->mutex);
          return MHD_YES;
        }
      response->data_start = connection->messagePos;
      response->data_size = ret;
      if (ret == 0)
        {
          if (response->crc != NULL)
            pthread_mutex_unlock (&response->mutex);
          return MHD_YES;
        }
    }
  /* transmit */
  ret = SEND (connection->socket_fd,
              &response->data[connection->messagePos - response->data_start],
              response->data_size - (connection->messagePos -
                                     response->data_start), 0);
  if (response->crc != NULL)
    pthread_mutex_unlock (&response->mutex);
  if (ret < 0)
    {
      if (errno == EINTR)
        return MHD_YES;
      MHD_DLOG (connection->daemon,
                "Failed to send data: %s\n", STRERROR (errno));
      CLOSE (connection->socket_fd);
      connection->socket_fd = -1;
      return MHD_YES;
    }
  connection->messagePos += ret;
  if (connection->messagePos > response->total_size)
    abort ();                   /* internal error */
  if (connection->messagePos == response->total_size)
    {
      if ((connection->bodyReceived == 0) ||
          (connection->headersReceived == 0))
        abort ();               /* internal error */
      MHD_destroy_response (response);
      connection->continuePos = 0;
      connection->responseCode = 0;
      connection->response = NULL;
      connection->headers_received = NULL;
      connection->headersReceived = 0;
      connection->headersSent = 0;
      connection->bodyReceived = 0;
      connection->messagePos = 0;
      connection->method = NULL;
      connection->url = NULL;
      if ((connection->read_close == MHD_YES) ||
          (0 != strcasecmp (MHD_HTTP_VERSION_1_1, connection->version)))
        {
          /* closed for reading => close for good! */
          if (connection->socket_fd != -1)
            CLOSE (connection->socket_fd);
          connection->socket_fd = -1;
        }
      connection->version = NULL;
      connection->read_buffer = NULL;
      connection->write_buffer = NULL;
      connection->read_buffer_size = 0;
      connection->readLoc = 0;
      connection->write_buffer_size = 0;
      connection->writePos = 0;
      connection->writeLoc = 0;
      MHD_pool_destroy (connection->pool);
      connection->pool = NULL;
    }
  return MHD_YES;
}

/* end of connection.c */