forked from swoole/swoole-src
-
Notifications
You must be signed in to change notification settings - Fork 0
/
swoole_http_server.c
2812 lines (2505 loc) · 80.8 KB
/
swoole_http_server.c
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
/*
+----------------------------------------------------------------------+
| Swoole |
+----------------------------------------------------------------------+
| This source file is subject to version 2.0 of the Apache license, |
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| http://www.apache.org/licenses/LICENSE-2.0.html |
| If you did not receive a copy of the Apache2.0 license and are unable|
| to obtain it through the world-wide-web, please send a note to |
| [email protected] so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Author: Tianfeng Han <[email protected]> |
+----------------------------------------------------------------------+
*/
#include "php_swoole.h"
#include "swoole_http.h"
#ifdef SW_COROUTINE
#include "swoole_coroutine.h"
#endif
#include <ext/standard/url.h>
#include <ext/standard/sha1.h>
#include <ext/standard/php_var.h>
#include <ext/standard/php_string.h>
#include <ext/standard/php_math.h>
#include <ext/standard/php_array.h>
#include <ext/date/php_date.h>
#include <ext/standard/md5.h>
#include <main/rfc1867.h>
#include <main/php_variables.h>
#include "websocket.h"
#include "Connection.h"
#include "base64.h"
#ifdef SW_HAVE_ZLIB
#include <zlib.h>
#endif
#ifdef SW_USE_HTTP2
#include "http2.h"
#endif
#ifdef SW_USE_PICOHTTPPARSER
#include "thirdparty/picohttpparser/picohttpparser.h"
#endif
static swArray *http_client_array;
swString *swoole_http_buffer;
#ifdef SW_HAVE_ZLIB
swString *swoole_zlib_buffer;
#endif
swString *swoole_http_form_data_buffer;
enum http_global_flag
{
HTTP_GLOBAL_GET = 1u << 1,
HTTP_GLOBAL_POST = 1u << 2,
HTTP_GLOBAL_COOKIE = 1u << 3,
HTTP_GLOBAL_REQUEST = 1u << 4,
HTTP_GLOBAL_SERVER = 1u << 5,
HTTP_GLOBAL_FILES = 1u << 6,
};
enum http_upload_errno
{
HTTP_UPLOAD_ERR_OK = 0,
HTTP_UPLOAD_ERR_INI_SIZE,
HTTP_UPLOAD_ERR_FORM_SIZE,
HTTP_UPLOAD_ERR_PARTIAL,
HTTP_UPLOAD_ERR_NO_FILE,
HTTP_UPLOAD_ERR_NO_TMP_DIR = 6,
HTTP_UPLOAD_ERR_CANT_WRITE,
};
zend_class_entry swoole_http_server_ce;
zend_class_entry *swoole_http_server_class_entry_ptr;
zend_class_entry swoole_http_response_ce;
zend_class_entry *swoole_http_response_class_entry_ptr;
zend_class_entry swoole_http_request_ce;
zend_class_entry *swoole_http_request_class_entry_ptr;
static int http_onReceive(swServer *serv, swEventData *req);
static void http_onClose(swServer *serv, swDataHead *ev);
static int http_request_on_path(php_http_parser *parser, const char *at, size_t length);
static int http_request_on_query_string(php_http_parser *parser, const char *at, size_t length);
static int http_request_on_body(php_http_parser *parser, const char *at, size_t length);
static int http_request_on_header_field(php_http_parser *parser, const char *at, size_t length);
static int http_request_on_header_value(php_http_parser *parser, const char *at, size_t length);
static int http_request_on_headers_complete(php_http_parser *parser);
static int http_request_message_complete(php_http_parser *parser);
static int multipart_body_on_header_field(multipart_parser* p, const char *at, size_t length);
static int multipart_body_on_header_value(multipart_parser* p, const char *at, size_t length);
static int multipart_body_on_data(multipart_parser* p, const char *at, size_t length);
static int multipart_body_on_header_complete(multipart_parser* p);
static int multipart_body_on_data_end(multipart_parser* p);
static http_context* http_get_context(zval *object, int check_end TSRMLS_DC);
static void http_parse_cookie(zval *array, const char *at, size_t length);
static void http_build_header(http_context *, zval *object, swString *response, int body_length TSRMLS_DC);
static inline void http_header_key_format(char *key, int length)
{
int i, state = 0;
for (i = 0; i < length; i++)
{
if (state == 0)
{
if (key[i] >= 97 && key[i] <= 122)
{
key[i] -= 32;
}
state = 1;
}
else if (key[i] == '-')
{
state = 0;
}
else
{
if (key[i] >= 65 && key[i] <= 90)
{
key[i] += 32;
}
}
}
}
static inline char* http_trim_double_quote(char *ptr, int *len)
{
int i;
char *tmp = ptr;
//ltrim('"')
for (i = 0; i < *len; i++)
{
if (tmp[i] == '"')
{
(*len)--;
tmp++;
continue;
}
else
{
break;
}
}
//rtrim('"')
for (i = (*len) - 1; i >= 0; i--)
{
if (tmp[i] == '"')
{
tmp[i] = 0;
(*len)--;
continue;
}
else
{
break;
}
}
return tmp;
}
#ifdef SW_USE_PICOHTTPPARSER
enum flags
{
F_CONNECTION_KEEP_ALIVE = 1 << 1,
F_CONNECTION_CLOSE = 1 << 2,
};
static inline long http_fast_parse(php_http_parser *parser, char *data, size_t length)
{
http_context *ctx = parser->data;
const char *method;
size_t method_len;
int minor_version;
struct phr_header headers[64];
size_t num_headers = sizeof(headers) / sizeof(headers[0]);
const char *path;
size_t path_len;
int n = phr_parse_request(data, length, &method, &method_len, &path, &path_len, &minor_version, headers, &num_headers, 0);
if (n < 0)
{
return SW_ERR;
}
char *p = memchr(path, '?', path_len);
if (p)
{
http_request_on_path(parser, path, p - path);
http_request_on_query_string(parser, p + 1, path + path_len - p - 1);
}
else
{
http_request_on_path(parser, path, path_len);
}
int i;
for (i = 0; i < num_headers; i++)
{
if (strncasecmp(headers[i].name, "Connection", headers[i].name_len) == 0
&& strncasecmp(headers[i].value, "keep-alive", headers[i].value_len) == 0)
{
parser->flags |= F_CONNECTION_KEEP_ALIVE;
}
else
{
parser->flags |= F_CONNECTION_CLOSE;
}
if (http_request_on_header_field(parser, headers[i].name, headers[i].name_len) < 0)
{
return SW_ERR;
}
if (http_request_on_header_value(parser, headers[i].value, headers[i].value_len) < 0)
{
return SW_ERR;
}
}
parser->method = swHttp_get_method(method, method_len) - 1;
parser->http_major = 1;
parser->http_minor = minor_version;
ctx->request.version = 100 + minor_version;
if (n < length)
{
http_request_on_body(parser, data + n, length - n);
}
http_request_on_headers_complete(parser);
return SW_OK;
}
#endif
#ifdef SW_HAVE_ZLIB
static int http_response_compress(swString *body, int level);
voidpf php_zlib_alloc(voidpf opaque, uInt items, uInt size);
void php_zlib_free(voidpf opaque, voidpf address);
#endif
static PHP_METHOD(swoole_http_server, on);
static PHP_METHOD(swoole_http_server, start);
static PHP_METHOD(swoole_http_request, getData);
static PHP_METHOD(swoole_http_request, rawcontent);
static PHP_METHOD(swoole_http_request, __destruct);
static PHP_METHOD(swoole_http_response, write);
static PHP_METHOD(swoole_http_response, end);
static PHP_METHOD(swoole_http_response, sendfile);
static PHP_METHOD(swoole_http_response, redirect);
static PHP_METHOD(swoole_http_response, cookie);
static PHP_METHOD(swoole_http_response, rawcookie);
static PHP_METHOD(swoole_http_response, header);
static PHP_METHOD(swoole_http_response, initHeader);
static PHP_METHOD(swoole_http_response, detach);
static PHP_METHOD(swoole_http_response, create);
#ifdef SW_HAVE_ZLIB
static PHP_METHOD(swoole_http_response, gzip);
#endif
#ifdef SW_USE_HTTP2
static PHP_METHOD(swoole_http_response, trailer);
#endif
static PHP_METHOD(swoole_http_response, status);
static PHP_METHOD(swoole_http_response, __destruct);
static sw_inline char* http_get_method_name(int method)
{
switch (method)
{
case PHP_HTTP_GET:
return "GET";
case PHP_HTTP_POST:
return "POST";
case PHP_HTTP_HEAD:
return "HEAD";
case PHP_HTTP_PUT:
return "PUT";
case PHP_HTTP_DELETE:
return "DELETE";
case PHP_HTTP_PATCH:
return "PATCH";
case PHP_HTTP_CONNECT:
return "CONNECT";
case PHP_HTTP_OPTIONS:
return "OPTIONS";
case PHP_HTTP_TRACE:
return "TRACE";
case PHP_HTTP_COPY:
return "COPY";
case PHP_HTTP_LOCK:
return "LOCK";
case PHP_HTTP_MKCOL:
return "MKCOL";
case PHP_HTTP_MOVE:
return "MOVE";
case PHP_HTTP_PROPFIND:
return "PROPFIND";
case PHP_HTTP_PROPPATCH:
return "PROPPATCH";
case PHP_HTTP_UNLOCK:
return "UNLOCK";
/* subversion */
case PHP_HTTP_REPORT:
return "REPORT";
case PHP_HTTP_MKACTIVITY:
return "MKACTIVITY";
case PHP_HTTP_CHECKOUT:
return "CHECKOUT";
case PHP_HTTP_MERGE:
return "MERGE";
/* upnp */
case PHP_HTTP_MSEARCH:
return "MSEARCH";
case PHP_HTTP_NOTIFY:
return "NOTIFY";
case PHP_HTTP_SUBSCRIBE:
return "SUBSCRIBE";
case PHP_HTTP_UNSUBSCRIBE:
return "UNSUBSCRIBE";
case PHP_HTTP_NOT_IMPLEMENTED:
return "IMPLEMENTED";
default:
return NULL;
}
}
ZEND_BEGIN_ARG_INFO_EX(arginfo_swoole_http_void, 0, 0, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_swoole_http_server_on, 0, 0, 2)
ZEND_ARG_INFO(0, event_name)
ZEND_ARG_INFO(0, callback)
ZEND_END_ARG_INFO()
#ifdef SW_HAVE_ZLIB
ZEND_BEGIN_ARG_INFO_EX(arginfo_swoole_http_response_gzip, 0, 0, 0)
ZEND_ARG_INFO(0, compress_level)
ZEND_END_ARG_INFO()
#endif
ZEND_BEGIN_ARG_INFO_EX(arginfo_swoole_http_response_status, 0, 0, 1)
ZEND_ARG_INFO(0, http_code)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_swoole_http_response_header, 0, 0, 2)
ZEND_ARG_INFO(0, key)
ZEND_ARG_INFO(0, value)
ZEND_ARG_INFO(0, ucwords)
ZEND_END_ARG_INFO()
#ifdef SW_USE_HTTP2
ZEND_BEGIN_ARG_INFO_EX(arginfo_swoole_http_response_trailer, 0, 0, 2)
ZEND_ARG_INFO(0, key)
ZEND_ARG_INFO(0, value)
ZEND_ARG_INFO(0, ucwords)
ZEND_END_ARG_INFO()
#endif
ZEND_BEGIN_ARG_INFO_EX(arginfo_swoole_http_response_cookie, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_ARG_INFO(0, value)
ZEND_ARG_INFO(0, expires)
ZEND_ARG_INFO(0, path)
ZEND_ARG_INFO(0, domain)
ZEND_ARG_INFO(0, secure)
ZEND_ARG_INFO(0, httponly)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_swoole_http_response_write, 0, 0, 1)
ZEND_ARG_INFO(0, content)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_swoole_http_response_end, 0, 0, 0)
ZEND_ARG_INFO(0, content)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_swoole_http_response_sendfile, 0, 0, 1)
ZEND_ARG_INFO(0, filename)
ZEND_ARG_INFO(0, offset)
ZEND_ARG_INFO(0, length)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_swoole_http_response_redirect, 0, 0, 1)
ZEND_ARG_INFO(0, location)
ZEND_ARG_INFO(0, http_code)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_swoole_http_response_create, 0, 0, 1)
ZEND_ARG_INFO(0, fd)
ZEND_END_ARG_INFO()
static const php_http_parser_settings http_parser_settings =
{
NULL,
http_request_on_path,
http_request_on_query_string,
NULL,
NULL,
http_request_on_header_field,
http_request_on_header_value,
http_request_on_headers_complete,
http_request_on_body,
http_request_message_complete
};
static const multipart_parser_settings mt_parser_settings =
{
multipart_body_on_header_field,
multipart_body_on_header_value,
multipart_body_on_data,
NULL,
multipart_body_on_header_complete,
multipart_body_on_data_end,
NULL,
};
const zend_function_entry swoole_http_server_methods[] =
{
PHP_ME(swoole_http_server, on, arginfo_swoole_http_server_on, ZEND_ACC_PUBLIC)
PHP_ME(swoole_http_server, start, arginfo_swoole_http_void, ZEND_ACC_PUBLIC)
PHP_FALIAS(__sleep, swoole_unsupport_serialize, NULL)
PHP_FALIAS(__wakeup, swoole_unsupport_serialize, NULL)
PHP_FE_END
};
const zend_function_entry swoole_http_request_methods[] =
{
PHP_ME(swoole_http_request, rawcontent, arginfo_swoole_http_void, ZEND_ACC_PUBLIC)
PHP_ME(swoole_http_request, getData, arginfo_swoole_http_void, ZEND_ACC_PUBLIC)
PHP_FALIAS(__sleep, swoole_unsupport_serialize, NULL)
PHP_FALIAS(__wakeup, swoole_unsupport_serialize, NULL)
PHP_ME(swoole_http_request, __destruct, arginfo_swoole_http_void, ZEND_ACC_PUBLIC | ZEND_ACC_DTOR)
PHP_FE_END
};
const zend_function_entry swoole_http_response_methods[] =
{
PHP_ME(swoole_http_response, initHeader, arginfo_swoole_http_void, ZEND_ACC_PUBLIC)
PHP_ME(swoole_http_response, cookie, arginfo_swoole_http_response_cookie, ZEND_ACC_PUBLIC)
PHP_ME(swoole_http_response, rawcookie, arginfo_swoole_http_response_cookie, ZEND_ACC_PUBLIC)
PHP_ME(swoole_http_response, status, arginfo_swoole_http_response_status, ZEND_ACC_PUBLIC)
#ifdef SW_HAVE_ZLIB
PHP_ME(swoole_http_response, gzip, arginfo_swoole_http_response_gzip, ZEND_ACC_PUBLIC)
#endif
PHP_ME(swoole_http_response, header, arginfo_swoole_http_response_header, ZEND_ACC_PUBLIC)
#ifdef SW_USE_HTTP2
PHP_ME(swoole_http_response, trailer, arginfo_swoole_http_response_trailer, ZEND_ACC_PUBLIC)
#endif
PHP_ME(swoole_http_response, write, arginfo_swoole_http_response_write, ZEND_ACC_PUBLIC)
PHP_ME(swoole_http_response, end, arginfo_swoole_http_response_end, ZEND_ACC_PUBLIC)
PHP_ME(swoole_http_response, sendfile, arginfo_swoole_http_response_sendfile, ZEND_ACC_PUBLIC)
PHP_ME(swoole_http_response, redirect, arginfo_swoole_http_response_redirect, ZEND_ACC_PUBLIC)
PHP_ME(swoole_http_response, detach, arginfo_swoole_http_void, ZEND_ACC_PUBLIC)
PHP_ME(swoole_http_response, create, arginfo_swoole_http_response_create, ZEND_ACC_PUBLIC | ZEND_ACC_STATIC)
PHP_FALIAS(__sleep, swoole_unsupport_serialize, NULL)
PHP_FALIAS(__wakeup, swoole_unsupport_serialize, NULL)
PHP_ME(swoole_http_response, __destruct, arginfo_swoole_http_void, ZEND_ACC_PUBLIC | ZEND_ACC_DTOR)
PHP_FE_END
};
static int http_request_on_path(php_http_parser *parser, const char *at, size_t length)
{
http_context *ctx = parser->data;
ctx->request.path = estrndup(at, length);
ctx->request.path_len = length;
return 0;
}
static int http_request_on_query_string(php_http_parser *parser, const char *at, size_t length)
{
#if PHP_MAJOR_VERSION < 7
TSRMLS_FETCH_FROM_CTX(sw_thread_ctx ? sw_thread_ctx : NULL);
#endif
http_context *ctx = parser->data;
//no need free, will free by treat_data
char *query = estrndup(at, length);
sw_add_assoc_stringl_ex(ctx->request.zserver, ZEND_STRS("query_string"), query, length, 1);
zval *zrequest_object = ctx->request.zobject;
zval *zget;
swoole_http_server_array_init(get, request);
//parse url params
sapi_module.treat_data(PARSE_STRING, query, zget TSRMLS_CC);
return 0;
}
static int http_request_on_header_field(php_http_parser *parser, const char *at, size_t length)
{
http_context *ctx = parser->data;
if (ctx->current_header_name_allocated)
{
efree(ctx->current_header_name);
ctx->current_header_name_allocated = 0;
}
ctx->current_header_name = (char *) at;
ctx->current_header_name_len = length;
return 0;
}
int swoole_http_parse_form_data(http_context *ctx, const char *boundary_str, int boundary_len TSRMLS_DC)
{
multipart_parser *mt_parser = multipart_parser_init(boundary_str, boundary_len, &mt_parser_settings);
if (!mt_parser)
{
swoole_php_fatal_error(E_WARNING, "multipart_parser_init() failed.");
return SW_ERR;
}
ctx->mt_parser = mt_parser;
mt_parser->data = ctx;
return SW_OK;
}
static void http_parse_cookie(zval *array, const char *at, size_t length)
{
char keybuf[SW_HTTP_COOKIE_KEYLEN];
char valbuf[SW_HTTP_COOKIE_VALLEN];
char *_c = (char *) at;
char *_value;
int klen = 0;
int vlen = 0;
int state = -1;
int i = 0, j = 0;
while (_c < at + length)
{
if (state <= 0 && *_c == '=')
{
klen = i - j + 1;
if (klen >= SW_HTTP_COOKIE_KEYLEN)
{
swWarn("cookie key is too large.");
return;
}
memcpy(keybuf, at + j, klen - 1);
keybuf[klen - 1] = 0;
j = i + 1;
state = 1;
}
else if (state == 1 && *_c == ';')
{
vlen = i - j;
if (vlen >= SW_HTTP_COOKIE_VALLEN)
{
swWarn("cookie value is too large.");
return;
}
memcpy(valbuf, (char *) at + j, vlen);
valbuf[vlen] = 0;
_value = http_trim_double_quote(valbuf, &vlen);
vlen = php_url_decode(_value, vlen);
if (klen > 1)
{
sw_add_assoc_stringl_ex(array, keybuf, klen, _value, vlen, 1);
}
j = i + 1;
state = -1;
}
else if (state < 0)
{
if (isspace(*_c))
{
//Remove leading spaces from cookie names
++j;
}
else
{
state = 0;
}
}
_c++;
i++;
}
if (j < length)
{
vlen = i - j;
if (klen >= SW_HTTP_COOKIE_KEYLEN)
{
swWarn("cookie key is too large.");
return;
}
keybuf[klen - 1] = 0;
if (vlen >= SW_HTTP_COOKIE_VALLEN)
{
swWarn("cookie value is too large.");
return;
}
memcpy(valbuf, (char *) at + j, vlen);
valbuf[vlen] = 0;
_value = http_trim_double_quote(valbuf, &vlen);
vlen = php_url_decode(_value, vlen);
if (klen > 1)
{
sw_add_assoc_stringl_ex(array, keybuf, klen, _value, vlen, 1);
}
}
}
static int http_request_on_header_value(php_http_parser *parser, const char *at, size_t length)
{
#if PHP_MAJOR_VERSION < 7
TSRMLS_FETCH_FROM_CTX(sw_thread_ctx ? sw_thread_ctx : NULL);
#endif
size_t offset = 0;
http_context *ctx = parser->data;
zval *zrequest_object = ctx->request.zobject;
size_t header_len = ctx->current_header_name_len;
char *header_name = zend_str_tolower_dup(ctx->current_header_name, header_len);
if (strncmp(header_name, "cookie", header_len) == 0)
{
zval *zcookie;
if (length >= SW_HTTP_COOKIE_VALLEN)
{
swWarn("cookie is too large.");
}
else
{
swoole_http_server_array_init(cookie, request);
http_parse_cookie(zcookie, at, length);
}
goto free_memory;
}
else if (SwooleG.serv->listen_list->open_websocket_protocol && strncmp(header_name, "upgrade", header_len) == 0 && strncasecmp(at, "websocket", length) == 0)
{
swConnection *conn = swWorker_get_connection(SwooleG.serv, ctx->fd);
if (!conn)
{
swWarn("connection[%d] is closed.", ctx->fd);
return SW_ERR;
}
conn->websocket_status = WEBSOCKET_STATUS_CONNECTION;
}
else if (parser->method == PHP_HTTP_POST || parser->method == PHP_HTTP_PUT || parser->method == PHP_HTTP_DELETE || parser->method == PHP_HTTP_PATCH)
{
if (strncmp(header_name, "content-type", header_len) == 0)
{
if (http_strncasecmp("application/x-www-form-urlencoded", at, length))
{
ctx->request.post_form_urlencoded = 1;
}
else if (http_strncasecmp("multipart/form-data", at, length))
{
offset = sizeof("multipart/form-data;") - 1;
while (at[offset] == ' ')
{
offset += 1;
}
offset += sizeof("boundary=") - 1;
int boundary_len = length - offset;
char *boundary_str = (char *) at + length - boundary_len;
if (boundary_len <= 0)
{
swWarn("invalid multipart/form-data body.", ctx->fd);
return 0;
}
if (boundary_len >= 2 && boundary_str[0] == '"' && *(boundary_str + boundary_len - 1) == '"')
{
boundary_str++;
boundary_len -= 2;
}
swoole_http_parse_form_data(ctx, boundary_str, boundary_len TSRMLS_CC);
}
}
}
zval *header = ctx->request.zheader;
sw_add_assoc_stringl_ex(header, header_name, ctx->current_header_name_len + 1, (char *) at, length, 1);
free_memory:
if (ctx->current_header_name_allocated)
{
efree(ctx->current_header_name);
ctx->current_header_name_allocated = 0;
}
efree(header_name);
return 0;
}
static int http_request_on_headers_complete(php_http_parser *parser)
{
http_context *ctx = parser->data;
if (ctx->current_header_name_allocated)
{
efree(ctx->current_header_name);
ctx->current_header_name_allocated = 0;
}
ctx->current_header_name = NULL;
return 0;
}
static int multipart_body_on_header_field(multipart_parser* p, const char *at, size_t length)
{
http_context *ctx = p->data;
return http_request_on_header_field(&ctx->parser, at, length);
}
static int multipart_body_on_header_value(multipart_parser* p, const char *at, size_t length)
{
#if PHP_MAJOR_VERSION < 7
TSRMLS_FETCH_FROM_CTX(sw_thread_ctx ? sw_thread_ctx : NULL);
#endif
char value_buf[SW_HTTP_COOKIE_KEYLEN];
int value_len;
http_context *ctx = p->data;
/**
* Hash collision attack
*/
if (ctx->input_var_num > PG(max_input_vars))
{
swoole_php_error(E_WARNING, "Input variables exceeded %ld. "
"To increase the limit change max_input_vars in php.ini.", PG(max_input_vars));
return SW_OK;
}
else
{
ctx->input_var_num++;
}
size_t header_len = ctx->current_header_name_len;
char *headername = zend_str_tolower_dup(ctx->current_header_name, header_len);
if (strncasecmp(headername, "content-disposition", header_len) == 0)
{
//not form data
if (swoole_strnpos((char *) at, length, ZEND_STRL("form-data;")) < 0)
{
return SW_OK;
}
zval *tmp_array;
SW_MAKE_STD_ZVAL(tmp_array);
array_init(tmp_array);
http_parse_cookie(tmp_array, (char *) at + sizeof("form-data;"), length - sizeof("form-data;"));
zval *form_name;
if (sw_zend_hash_find(Z_ARRVAL_P(tmp_array), ZEND_STRS("name"), (void **) &form_name) == FAILURE)
{
return SW_OK;
}
if (Z_STRLEN_P(form_name) >= SW_HTTP_COOKIE_KEYLEN)
{
swWarn("form_name[%s] is too large.", Z_STRVAL_P(form_name));
return SW_OK;
}
strncpy(value_buf, Z_STRVAL_P(form_name), Z_STRLEN_P(form_name));
value_len = Z_STRLEN_P(form_name);
char *tmp = http_trim_double_quote(value_buf, &value_len);
zval *filename;
//POST form data
if (sw_zend_hash_find(Z_ARRVAL_P(tmp_array), ZEND_STRS("filename"), (void **) &filename) == FAILURE)
{
ctx->current_form_data_name = estrndup(tmp, value_len);
ctx->current_form_data_name_len = value_len;
}
//upload file
else
{
ctx->current_input_name = estrndup(tmp, value_len);
zval *multipart_header = NULL;
SW_ALLOC_INIT_ZVAL(multipart_header);
array_init(multipart_header);
sw_add_assoc_string(multipart_header, "name", "", 1);
sw_add_assoc_string(multipart_header, "type", "", 1);
sw_add_assoc_string(multipart_header, "tmp_name", "", 1);
add_assoc_long(multipart_header, "error", HTTP_UPLOAD_ERR_OK);
add_assoc_long(multipart_header, "size", 0);
strncpy(value_buf, Z_STRVAL_P(filename), Z_STRLEN_P(filename));
value_len = Z_STRLEN_P(filename);
tmp = http_trim_double_quote(value_buf, &value_len);
sw_add_assoc_stringl(multipart_header, "name", tmp, value_len, 1);
ctx->current_multipart_header = multipart_header;
}
sw_zval_ptr_dtor(&tmp_array);
}
if (strncasecmp(headername, "content-type", header_len) == 0 && ctx->current_multipart_header)
{
sw_add_assoc_stringl(ctx->current_multipart_header, "type", (char * ) at, length, 1);
}
if (ctx->current_header_name_allocated)
{
efree(ctx->current_header_name);
ctx->current_header_name_allocated = 0;
}
efree(headername);
return 0;
}
static int multipart_body_on_data(multipart_parser* p, const char *at, size_t length)
{
http_context *ctx = p->data;
if (ctx->current_form_data_name)
{
swString_append_ptr(swoole_http_form_data_buffer, (char*) at, length);
return 0;
}
if (p->fp == NULL)
{
return 0;
}
int n = fwrite(at, sizeof(char), length, (FILE *) p->fp);
if (n != length)
{
zval *multipart_header = ctx->current_multipart_header;
add_assoc_long(multipart_header, "error", HTTP_UPLOAD_ERR_CANT_WRITE);
fclose((FILE *) p->fp);
p->fp = NULL;
swWarn("write upload file failed. Error %s[%d]", strerror(errno), errno);
}
return 0;
}
#if 0
static void get_random_file_name(char *des, const char *src)
{
unsigned char digest[16] = {0};
char buf[19] = {0};
int n = sprintf(buf, "%s%d", src, swoole_system_random(0, 9999));
PHP_MD5_CTX ctx;
PHP_MD5Init(&ctx);
PHP_MD5Update(&ctx, buf, n);
PHP_MD5Final(digest, &ctx);
make_digest_ex(des, digest, 16);
}
#endif
static int multipart_body_on_header_complete(multipart_parser* p)
{
#if PHP_MAJOR_VERSION < 7
TSRMLS_FETCH_FROM_CTX(sw_thread_ctx ? sw_thread_ctx : NULL);
#endif
http_context *ctx = p->data;
if (!ctx->current_input_name)
{
return 0;
}
zval *multipart_header = ctx->current_multipart_header;
zval *zrequest_object = ctx->request.zobject;
zval *zerr = NULL;
if (sw_zend_hash_find(Z_ARRVAL_P(multipart_header), ZEND_STRS("error"), (void **) &zerr) == FAILURE)
{
return 0;
}
if (Z_TYPE_P(zerr) == IS_LONG && Z_LVAL_P(zerr) != HTTP_UPLOAD_ERR_OK)
{
return 0;
}
char file_path[SW_HTTP_UPLOAD_TMPDIR_SIZE];
snprintf(file_path, SW_HTTP_UPLOAD_TMPDIR_SIZE, "%s/swoole.upfile.XXXXXX", SwooleG.serv->upload_tmp_dir);
int tmpfile = swoole_tmpfile(file_path);
if (tmpfile < 0)
{
return 0;
}
FILE *fp = fdopen(tmpfile, "wb+");
if (fp == NULL)
{
add_assoc_long(multipart_header, "error", HTTP_UPLOAD_ERR_NO_TMP_DIR);
swWarn("fopen(%s) failed. Error %s[%d]", file_path, strerror(errno), errno);
return 0;
}
p->fp = fp;
sw_add_assoc_string(multipart_header, "tmp_name", file_path, 1);
zval *ztmpfiles = sw_zend_read_property(swoole_http_request_class_entry_ptr, zrequest_object, ZEND_STRL("tmpfiles"), 1 TSRMLS_CC);
if (ztmpfiles == NULL || ZVAL_IS_NULL(ztmpfiles))
{
swoole_http_server_array_init(tmpfiles, request);
}
int file_path_len = strlen(file_path);
sw_add_next_index_stringl(ztmpfiles, file_path, file_path_len, 1);
char *temp_filename = file_path;
sw_zend_hash_add(SG(rfc1867_uploaded_files), temp_filename, file_path_len + 1, &temp_filename, sizeof(char *), NULL);
return 0;
}
static int multipart_body_on_data_end(multipart_parser* p)
{
#if PHP_MAJOR_VERSION < 7
TSRMLS_FETCH_FROM_CTX(sw_thread_ctx ? sw_thread_ctx : NULL);
#endif
http_context *ctx = p->data;
zval *zrequest_object = ctx->request.zobject;
if (ctx->current_form_data_name)
{
zval *zpost = sw_zend_read_property(swoole_http_request_class_entry_ptr, zrequest_object, ZEND_STRL("post"), 1 TSRMLS_CC);
if (ZVAL_IS_NULL(zpost))
{
swoole_http_server_array_init(post, request);
}
php_register_variable_safe(ctx->current_form_data_name, swoole_http_form_data_buffer->str,
swoole_http_form_data_buffer->length, zpost TSRMLS_CC);
efree(ctx->current_form_data_name);
ctx->current_form_data_name = NULL;
ctx->current_form_data_name_len = 0;
swString_clear(swoole_http_form_data_buffer);
return 0;
}
if (!ctx->current_input_name)
{
return 0;
}
zval *multipart_header = ctx->current_multipart_header;
if (p->fp != NULL)
{
long size = swoole_file_get_size((FILE*) p->fp);
add_assoc_long(multipart_header, "size", size);
fclose((FILE *) p->fp);
p->fp = NULL;
}
zval *zfiles = ctx->request.zfiles;
if (!zfiles)
{
swoole_http_server_array_init(files, request);
}
php_register_variable_ex(ctx->current_input_name, multipart_header, zfiles TSRMLS_CC);
efree(ctx->current_input_name);
ctx->current_input_name = NULL;
efree(ctx->current_multipart_header);
ctx->current_multipart_header = NULL;
return 0;
}
static int http_request_on_body(php_http_parser *parser, const char *at, size_t length)
{
#if PHP_MAJOR_VERSION < 7
TSRMLS_FETCH_FROM_CTX(sw_thread_ctx ? sw_thread_ctx : NULL);
#endif
http_context *ctx = parser->data;
zval *zrequest_object = ctx->request.zobject;
char *body;
ctx->request.post_length = length;
if (SwooleG.serv->http_parse_post && ctx->request.post_form_urlencoded)
{
zval *zpost;
swoole_http_server_array_init(post, request);
body = estrndup(at, length);
sapi_module.treat_data(PARSE_STRING, body, zpost TSRMLS_CC);
}
else if (ctx->mt_parser != NULL)
{