-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathClient.cpp
More file actions
1112 lines (1047 loc) · 34.8 KB
/
Copy pathClient.cpp
File metadata and controls
1112 lines (1047 loc) · 34.8 KB
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
#include "Client.hpp"
#include "Dns.hpp"
#include "Cache.hpp"
#include "Http.hpp"
#include "Common.hpp"
#include <unistd.h>
#include <iostream>
#include <string.h>
//#include <xxhash.h>
#include <fcntl.h>
#include <sys/stat.h>
#include "xxHash/xxh3.h"
//ETag -> If-None-Match
#ifdef DEBUGFASTCGI
#include <arpa/inet.h>
#endif
Client::Client(int cfd) :
fastcgiid(-1),
readCache(nullptr),
http(nullptr),
fullyParsed(false),
endTriggered(false),
status(Status_Idle),
https(false),
partial(false),
partialEndOfFileTrigged(false),
outputWrited(false)
{
this->kind=EpollObject::Kind::Kind_Client;
this->fd=cfd;
}
Client::~Client()
{
#ifdef DEBUGFASTCGI
std::cerr << __FILE__ << ":" << __LINE__ << std::endl;
#endif
if(readCache!=nullptr)
{
readCache->close();
delete readCache;
readCache=nullptr;
}
if(http)
http->removeClient(this);
}
void Client::parseEvent(const epoll_event &event)
{
if(event.events & EPOLLIN)
readyToRead();
if(event.events & EPOLLOUT)
readyToWrite();
}
void Client::disconnect()
{
#ifdef DEBUGFASTCGI
std::cerr << __FILE__ << ":" << __LINE__ << std::endl;
#endif
if(fd!=-1)
{
//std::cerr << fd << " disconnect()" << std::endl;
//std::cout << "disconnect()" << std::endl;
epoll_ctl(epollfd,EPOLL_CTL_DEL, fd, NULL);
::close(fd);
fd=-1;
}
if(http)
http->removeClient(this);
dataToWrite.clear();
if(status==Status_WaitDns)
Dns::dns->cancelClient(this,host,https);
fastcgiid=-1;
}
void Client::readyToRead()
{
#ifdef DEBUGFASTCGI
std::cerr << __FILE__ << ":" << __LINE__ << std::endl;
#endif
if(fullyParsed)
return;
#ifdef DEBUGFASTCGI
std::cerr << __FILE__ << ":" << __LINE__ << std::endl;
#endif
char buff[4096];
const int size=read(fd,buff,sizeof(buff));
if(size<=0)
return;
std::string ifNoneMatch;
https=false;
uri.clear();
host.clear();
//all is big endian
int pos=0;
uint8_t var8=0;
uint16_t var16=0;
/*{
std::cerr << fd << ") ";
for(int i=0;i<size;++i)
{
const unsigned char c = buff[i];
std::cerr << lut[c >> 4];
std::cerr << lut[c & 15];
}
std::cerr << std::endl;
}*/
do
{
if(!read8Bits(var8,buff,size,pos))
{
std::cerr << __FILE__ << ":" << __LINE__ << " FastCGI protocol error: " << Common::hexaToBinary(std::string(buff,size)) << " " << size << std::endl;
return;
}
if(var8!=1)
{
#ifdef DEBUGFASTCGI
std::cerr << __FILE__ << ":" << __LINE__ << std::endl;
#endif
disconnect();
return;
}
if(!read8Bits(var8,buff,size,pos))
{
std::cerr << __FILE__ << ":" << __LINE__ << " FastCGI protocol error: " << Common::hexaToBinary(std::string(buff,size)) << " " << size << std::endl;
return;
}
if(fastcgiid==-1)
{
if(var8!=1)
{
#ifdef DEBUGFASTCGI
std::cerr << __FILE__ << ":" << __LINE__ << std::endl;
#endif
disconnect();
return;
}
if(!read16Bits(var16,buff,size,pos))
{
std::cerr << __FILE__ << ":" << __LINE__ << " FastCGI protocol error: " << Common::hexaToBinary(std::string(buff,size)) << " " << size << std::endl;
return;
}
fastcgiid=var16;
}
else
{
if(var8!=4 && var8!=5)
{
#ifdef DEBUGFASTCGI
std::cerr << __FILE__ << ":" << __LINE__ << std::endl;
#endif
disconnect();
return;
}
if(!read16Bits(var16,buff,size,pos))
return;
if(fastcgiid!=var16)
{
#ifdef DEBUGFASTCGI
std::cerr << __FILE__ << ":" << __LINE__ << std::endl;
#endif
disconnect();
return;
}
}
uint16_t contentLenght=0;
uint8_t paddingLength=0;
if(!read16Bits(contentLenght,buff,size,pos))
{
std::cerr << __FILE__ << ":" << __LINE__ << " FastCGI protocol error: " << Common::hexaToBinary(std::string(buff,size)) << " " << size << std::endl;
return;
}
if(!read8Bits(paddingLength,buff,size,pos))
{
std::cerr << __FILE__ << ":" << __LINE__ << " FastCGI protocol error: " << Common::hexaToBinary(std::string(buff,size)) << " " << size << std::endl;
return;
}
if(!canAddToPos(1,size,pos))
{
std::cerr << __FILE__ << ":" << __LINE__ << " FastCGI protocol error: " << Common::hexaToBinary(std::string(buff,size)) << " " << size << std::endl;
return;
}
switch (var8) {
//FCGI_BEGIN_REQUEST
case 1:
//skip the content length + padding length
if(!canAddToPos(contentLenght+paddingLength,size,pos))
{
std::cerr << __FILE__ << ":" << __LINE__ << " FastCGI protocol error: " << Common::hexaToBinary(std::string(buff,size)) << " " << size << std::endl;
return;
}
break;
//FCGI_PARAMS
case 4:
{
int contentLenghtAbs=contentLenght+pos;
while(pos<contentLenghtAbs)
{
uint32_t varSize=0;
uint8_t varSize8=0;
if(!read8Bits(varSize8,buff,size,pos))
{
std::cerr << __FILE__ << ":" << __LINE__ << " FastCGI protocol error: " << Common::hexaToBinary(std::string(buff,size)) << " " << size << std::endl;
return;
}
if(varSize8>127)
{
if(!read24Bits(varSize,buff,size,pos))
{
std::cerr << __FILE__ << ":" << __LINE__ << " FastCGI protocol error: " << Common::hexaToBinary(std::string(buff,size)) << " " << size << std::endl;
return;
}
}
else
varSize=varSize8;
uint32_t valSize=0;
uint8_t valSize8=0;
if(!read8Bits(valSize8,buff,size,pos))
{
std::cerr << __FILE__ << ":" << __LINE__ << " FastCGI protocol error: " << Common::hexaToBinary(std::string(buff,size)) << " " << size << std::endl;
return;
}
if(valSize8>127)
{
if(!read24Bits(valSize,buff,size,pos))
{
std::cerr << __FILE__ << ":" << __LINE__ << " FastCGI protocol error: " << Common::hexaToBinary(std::string(buff,size)) << " " << size << std::endl;
return;
}
}
else
valSize=valSize8;
switch(varSize)
{
case 9:
if(memcmp(buff+pos,"HTTP_HOST",9)==0)
host=std::string(buff+pos+varSize,valSize);
break;
case 11:
if(memcmp(buff+pos,"REQUEST_URI",11)==0)
uri=std::string(buff+pos+varSize,valSize);
/*else if(memcmp(buff+pos,"SERVER_PORT",11)==0 && valSize==3)
if(memcmp(buff+pos+varSize,"443",3)==0)
https=true;*/
break;
case 14:
if(memcmp(buff+pos,"REQUEST_SCHEME",14)==0 && valSize==5)
if(memcmp(buff+pos+varSize,"https",5)==0)
https=true;
break;
case 18:
if(memcmp(buff+pos,"HTTP_IF_NONE_MATCH",18)==0 && valSize==8)
ifNoneMatch=std::string(buff+pos+varSize,8);
break;
default:
break;
}
//std::cout << std::string(buff+pos,varSize) << ": " << std::string(buff+pos+varSize,valSize) << std::endl;
if(!canAddToPos(varSize+valSize,size,pos))
{
std::cerr << __FILE__ << ":" << __LINE__ << " FastCGI protocol error: " << Common::hexaToBinary(std::string(buff,size)) << " " << size << std::endl;
return;
}
}
if(!canAddToPos(paddingLength,size,pos))
{
std::cerr << __FILE__ << ":" << __LINE__ << " FastCGI protocol error: " << Common::hexaToBinary(std::string(buff,size)) << " " << size << std::endl;
return;
}
}
break;
//FCGI_STDIN
case 5:
//skip the content length + padding length
if(!canAddToPos(contentLenght+paddingLength,size,pos))
{
std::cerr << __FILE__ << ":" << __LINE__ << " FastCGI protocol error: " << Common::hexaToBinary(std::string(buff,size)) << " " << size << std::endl;
return;
}
fullyParsed=true;
break;
default:
break;
}
} while(pos<size);
if(!fullyParsed)
return;
#ifdef DEBUGFASTCGI
std::cerr << __FILE__ << ":" << __LINE__ << std::endl;
#endif
//check if robots.txt
if(uri=="/robots.txt")
{
char text[]="X-Robots-Tag: noindex, nofollow\r\nContent-type: text/plain\r\n\r\nUser-agent: *\r\nDisallow: /";
writeOutput(text,sizeof(text)-1);
writeEnd();
return;
}
//check if robots.txt
if(uri=="/favicon.ico")
{
char text[]="X-Robots-Tag: noindex, nofollow\r\nContent-type: text/plain\r\n\r\nDropped for now";
writeOutput(text,sizeof(text)-1);
writeEnd();
return;
}
//resolv the host or from subdomain or from uri
{
//resolv final url (hex, https, ...)
const size_t &pos=host.rfind(".confiared.com");
const size_t &mark=(host.size()-14);
#ifdef DEBUGDNS
const size_t &posdebug=host.rfind(".bolivia-online.com");
const size_t &markdebug=(host.size()-19);
if(pos==mark || posdebug==markdebug)
{
std::string hostb;
if(pos==mark)
hostb=host.substr(0,mark);
else
hostb=host.substr(0,markdebug);
#else
if(pos==mark)
{
std::string hostb=host.substr(0,mark);
#endif
size_t posb=hostb.rfind("cdn");
size_t markb=(hostb.size()-3);
if(posb==markb)
{
if(markb>1)
host=Common::hexaToBinary(hostb.substr(0,markb-1));
else if(markb==0)
{
const size_t poss=uri.find("/",1);
if(poss!=std::string::npos)
{
if(poss>2)
{
host=uri.substr(1,poss-1);
uri=uri.substr(poss);
}
}
else
{
//std::cerr << "uri '/' not found " << uri << ", host: " << host << std::endl;
char text[]="X-Robots-Tag: noindex, nofollow\r\nContent-type: text/plain\r\n\r\nCDN bad usage: contact@confiared.com";
writeOutput(text,sizeof(text)-1);
writeEnd();
return;
}
}
}
else
{
markb=(hostb.size()-4);
posb=hostb.rfind("cdn1");
if(posb!=markb)
posb=hostb.rfind("cdn2");
if(posb!=markb)
posb=hostb.rfind("cdn3");
if(posb==markb)
{
if(markb>1)
host=Common::hexaToBinary(hostb.substr(0,markb-1));
else if(markb==0)
{
const size_t poss=uri.find("/",1);
if(poss!=std::string::npos)
{
if(poss>2)
{
host=uri.substr(1,poss-1);
uri=uri.substr(poss);
}
}
else
{
//std::cerr << "uri '/' not found " << uri << ", host: " << host << std::endl;
char text[]="X-Robots-Tag: noindex, nofollow\r\nContent-type: text/plain\r\n\r\nCDN bad usage: contact@confiared.com";
writeOutput(text,sizeof(text)-1);
writeEnd();
return;
}
}
}
}
}
else
{
const size_t poss=uri.find("/",1);
if(poss!=std::string::npos)
{
if(poss>2)
{
host=uri.substr(1,poss-1);
uri=uri.substr(poss);
}
}
else
{
//std::cerr << "uri '/' not found " << uri << ", host: " << host << std::endl;
char text[]="X-Robots-Tag: noindex, nofollow\r\nContent-type: text/plain\r\n\r\nCDN bad usage: contact@confiared.com";
writeOutput(text,sizeof(text)-1);
writeEnd();
return;
}
}
}
//if have request
/* if(https)
std::cout << "downloading: https://" << host << uri << std::endl;
else
std::cout << "downloading: http://" << host << uri << std::endl;*/
#ifdef DEBUGFASTCGI
std::cerr << __FILE__ << ":" << __LINE__ << std::endl;
#endif
if(host.empty())
{
char text[]="X-Robots-Tag: noindex, nofollow\r\nContent-type: text/plain\r\n\r\nCDN bad usage: contact@confiared.com";
writeOutput(text,sizeof(text)-1);
writeEnd();
return;
}
#ifdef DEBUGFASTCGI
std::cerr << __FILE__ << ":" << __LINE__ << std::endl;
#endif
status=Status_WaitTheContent;
partial=false;
std::string hostwithprotocol=host;
if(https)
hostwithprotocol+="s";
std::string path("cache/");
std::string folder;
if(Cache::hostsubfolder)
{
const uint32_t &hashhost=static_cast<uint32_t>(XXH3_64bits(hostwithprotocol.data(),hostwithprotocol.size()));
const XXH64_hash_t &hashuri=XXH3_64bits(uri.data(),uri.size());
//do the hash for host to define cache subfolder, hash for uri to file
//std::string folder;
folder = Common::binarytoHexa(reinterpret_cast<const char *>(&hashhost),sizeof(hashhost));
path+=folder+"/";
const std::string urifolder = Common::binarytoHexa(reinterpret_cast<const char *>(&hashuri),sizeof(hashuri));
path+=urifolder;
}
else
{
XXH3_state_t state;
XXH3_64bits_reset(&state);
XXH3_64bits_update(&state, hostwithprotocol.data(),hostwithprotocol.size());
XXH3_64bits_update(&state, uri.data(),uri.size());
const XXH64_hash_t &hashuri=XXH3_64bits_digest(&state);
const std::string urifolder = Common::binarytoHexa(reinterpret_cast<const char *>(&hashuri),sizeof(hashuri));
path+=urifolder;
}
if(Http::pathToHttp.find(path)!=Http::pathToHttp.cend())
{
#ifdef DEBUGFASTCGI
std::cerr << __FILE__ << ":" << __LINE__ << std::endl;
#endif
Http *http=Http::pathToHttp.at(path);
http->addClient(this);//into this call, start open cache and stream if partial have started
}
else
{
std::string url;
if(https)
url="https://";
else
url="http://";
url+=host;
url+=uri;
//try open cache
//std::cerr << "open((path).c_str() " << path << std::endl;
int cachefd = open(path.c_str(), O_RDWR | O_NOCTTY/* | O_NONBLOCK*/, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
//if failed open cache
if(cachefd==-1)
{
std::cerr << "can't open cache file " << path << " for " << url << " due to errno: " << errno << std::endl;
if(Cache::hostsubfolder)
::mkdir(("cache/"+folder).c_str(),S_IRWXU);
//get AAAA entry for host
if(!Dns::dns->get(this,host,https))
{
char text[]="Status: 500 Internal Server Error\r\nX-Robots-Tag: noindex, nofollow\r\nContent-type: text/plain\r\n\r\nOverloaded CDN Dns";
writeOutput(text,sizeof(text)-1);
writeEnd();
return;
}
status=Status_WaitDns;
}
else
{
#ifdef DEBUGFASTCGI
std::cerr << __FILE__ << ":" << __LINE__ << std::endl;
#endif
if(!ifNoneMatch.empty())
{
char bufferETag[6];
if(::pread(cachefd,bufferETag,sizeof(bufferETag),2*sizeof(uint64_t)+sizeof(uint16_t))==sizeof(bufferETag))
{
if(memcmp(ifNoneMatch.substr(1,6).data(),bufferETag,sizeof(bufferETag))==0)
{
//frontend 304
char text[]="Status: 304 Not Modified\r\n\r\n";
writeOutput(text,sizeof(text)-1);
writeEnd();
::close(cachefd);
#ifdef DEBUGFASTCGI
std::cerr << __FILE__ << ":" << __LINE__ << std::endl;
#endif
return;
}
}
}
#ifdef DEBUGFASTCGI
std::cerr << __FILE__ << ":" << __LINE__ << std::endl;
#endif
uint64_t lastModificationTimeCheck=0;
if(::pread(cachefd,&lastModificationTimeCheck,sizeof(lastModificationTimeCheck),1*sizeof(uint64_t))!=sizeof(lastModificationTimeCheck))
lastModificationTimeCheck=0;
uint16_t http_code=500;
if(::pread(cachefd,&http_code,sizeof(http_code),2*sizeof(uint64_t))!=sizeof(http_code))
http_code=500;
//last modification time check <24h or in future to prevent time drift
const uint64_t ¤tTime=time(NULL);
if(lastModificationTimeCheck>(currentTime-Cache::timeToCache(http_code)))
{
#ifdef DEBUGFASTCGI
std::cerr << __FILE__ << ":" << __LINE__ << std::endl;
#endif
if(readCache!=nullptr)
{
delete readCache;
readCache=nullptr;
}
readCache=new Cache(cachefd);
readCache->set_access_time(currentTime);
startRead();
return;
}
if(Cache::hostsubfolder)
::mkdir(("cache/"+folder).c_str(),S_IRWXU);
//get AAAA entry for host
if(!Dns::dns->get(this,host,https))
{
char text[]="Status: 500 Internal Server Error\r\nX-Robots-Tag: noindex, nofollow\r\nContent-type: text/plain\r\n\r\nOverloaded CDN Dns";
writeOutput(text,sizeof(text)-1);
writeEnd();
return;
}
status=Status_WaitDns;
}
}
}
bool Client::canAddToPos(const int &i, const int &size, int &pos)
{
if((pos+i)>size)
{
#ifdef DEBUGFASTCGI
std::cerr << __FILE__ << ":" << __LINE__ << std::endl;
#endif
disconnect();
return false;
}
pos+=i;
return true;
}
bool Client::read8Bits(uint8_t &var, const char * const data, const int &size, int &pos)
{
if((pos+(int)sizeof(var))>size)
{
#ifdef DEBUGFASTCGI
std::cerr << __FILE__ << ":" << __LINE__ << std::endl;
#endif
disconnect();
return false;
}
var=data[pos];
pos+=sizeof(var);
return true;
}
bool Client::read16Bits(uint16_t &var, const char * const data, const int &size, int &pos)
{
if((pos+(int)sizeof(var))>size)
{
#ifdef DEBUGFASTCGI
std::cerr << __FILE__ << ":" << __LINE__ << std::endl;
#endif
disconnect();
return false;
}
uint16_t t;
memcpy(&t,data+pos,sizeof(var));
var=be16toh(t);
pos+=sizeof(var);
return true;
}
bool Client::read24Bits(uint32_t &var, const char * const data, const int &size, int &pos)
{
if((pos+(int)sizeof(var)-1)>size)
{
#ifdef DEBUGFASTCGI
std::cerr << __FILE__ << ":" << __LINE__ << std::endl;
#endif
disconnect();
return false;
}
uint32_t t=0;
memcpy(reinterpret_cast<char *>(&t)+1,data+pos,sizeof(var)-1);
var=be32toh(t);
pos+=sizeof(var)-1;
return true;
}
void Client::dnsError()
{
#ifdef DEBUGFASTCGI
std::cerr << __FILE__ << ":" << __LINE__ << std::endl;
#endif
status=Status_Idle;
char text[]="Status: 500 Internal Server Error\r\nX-Robots-Tag: noindex, nofollow\r\nContent-type: text/plain\r\n\r\nDns Error";
writeOutput(text,sizeof(text)-1);
writeEnd();
}
void Client::dnsWrong()
{
#ifdef DEBUGFASTCGI
std::cerr << __FILE__ << ":" << __LINE__ << std::endl;
#endif
status=Status_Idle;
char text[]="Status: 403 Forbidden\r\nX-Robots-Tag: noindex, nofollow\r\nContent-type: text/plain\r\n\r\nThis site DNS (AAAA entry) is not into Confiared IPv6 range";
writeOutput(text,sizeof(text)-1);
writeEnd();
}
void Client::dnsRight(const sockaddr_in6 &sIPv6)
{
/*
* 2 list: oldest usage/size
*
* Try: Machine Learning Based Cache Algorithm
* */
#ifdef DEBUGFASTCGI
char astring[INET6_ADDRSTRLEN];
inet_ntop(AF_INET6, &(sIPv6.sin6_addr), astring, INET6_ADDRSTRLEN);
if(std::string(astring)=="::")
{
std::cerr << "Internal error, try connect on ::" << std::endl;
abort();
}
std::cerr << __FILE__ << ":" << __LINE__ << std::endl;
#endif
status=Status_WaitTheContent;
partial=false;
std::string hostwithprotocol=host;
if(https)
hostwithprotocol+="s";
std::string path("cache/");
std::string folder;
if(Cache::hostsubfolder)
{
const uint32_t &hashhost=static_cast<uint32_t>(XXH3_64bits(hostwithprotocol.data(),hostwithprotocol.size()));
const XXH64_hash_t &hashuri=XXH3_64bits(uri.data(),uri.size());
//do the hash for host to define cache subfolder, hash for uri to file
//std::string folder;
folder = Common::binarytoHexa(reinterpret_cast<const char *>(&hashhost),sizeof(hashhost));
path+=folder+"/";
const std::string urifolder = Common::binarytoHexa(reinterpret_cast<const char *>(&hashuri),sizeof(hashuri));
path+=urifolder;
}
else
{
XXH3_state_t state;
XXH3_64bits_reset(&state);
XXH3_64bits_update(&state, hostwithprotocol.data(),hostwithprotocol.size());
XXH3_64bits_update(&state, uri.data(),uri.size());
const XXH64_hash_t &hashuri=XXH3_64bits_digest(&state);
const std::string urifolder = Common::binarytoHexa(reinterpret_cast<const char *>(&hashuri),sizeof(hashuri));
path+=urifolder;
}
if(Http::pathToHttp.find(path)!=Http::pathToHttp.cend())
{
Http *http=Http::pathToHttp.at(path);
http->addClient(this);//into this call, start open cache and stream if partial have started
}
else
{
std::string url;
if(https)
url="https://";
else
url="http://";
url+=host;
url+=uri;
//try open cache
//std::cerr << "open((path).c_str() " << path << std::endl;
int cachefd = open(path.c_str(), O_RDWR | O_NOCTTY/* | O_NONBLOCK*/, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
//if failed open cache
if(cachefd==-1)
{
std::cerr << "can't open cache file " << path << " for " << url << " due to errno: " << errno << std::endl;
if(Cache::hostsubfolder)
::mkdir(("cache/"+folder).c_str(),S_IRWXU);
if(https)
{
abort();//todo
}
else
{
Http *http=new Http(0, //0 if no old cache file found
path);
if(http->tryConnect(sIPv6,host,uri))
{
Http::pathToHttp[path]=http;
http->addClient(this);//into this call, start open cache and stream if partial have started
}
else
{
status=Status_Idle;
char text[]="Status: 500 Internal Server Error\r\nX-Robots-Tag: noindex, nofollow\r\nContent-type: text/plain\r\n\r\nSocket Error (1)";
writeOutput(text,sizeof(text)-1);
writeEnd();
}
}
}
else
{
uint64_t lastModificationTimeCheck=0;
if(::pread(cachefd,&lastModificationTimeCheck,sizeof(lastModificationTimeCheck),1*sizeof(uint64_t))!=sizeof(lastModificationTimeCheck))
lastModificationTimeCheck=0;
uint16_t http_code=500;
if(::pread(cachefd,&http_code,sizeof(http_code),2*sizeof(uint64_t))!=sizeof(http_code))
http_code=500;
//last modification time check <24h or in future to prevent time drift
const uint64_t ¤tTime=time(NULL);
if(lastModificationTimeCheck>(currentTime-Cache::timeToCache(http_code)))
{
if(readCache!=nullptr)
{
delete readCache;
readCache=nullptr;
}
readCache=new Cache(cachefd);
readCache->set_access_time(currentTime);
startRead();
return;
}
if(Cache::hostsubfolder)
::mkdir(("cache/"+folder).c_str(),S_IRWXU);
std::string etag;
uint8_t etagBackendSize=0;
if(::pread(cachefd,&etagBackendSize,sizeof(etagBackendSize),3*sizeof(uint64_t))==sizeof(etagBackendSize))
{
char buffer[etagBackendSize];
if(::pread(cachefd,buffer,etagBackendSize,3*sizeof(uint64_t)+sizeof(uint8_t))==etagBackendSize)
etag=std::string(buffer,etagBackendSize);
}
if(https)
{
abort();//todo
}
else
{
Http *http=new Http(cachefd, //0 if no old cache file found
path);
if(http->tryConnect(sIPv6,host,uri,etag))
{
Http::pathToHttp[path]=http;
http->addClient(this);//into this call, start open cache and stream if partial have started
}
else
{
status=Status_Idle;
char text[]="Status: 500 Internal Server Error\r\nX-Robots-Tag: noindex, nofollow\r\nContent-type: text/plain\r\n\r\nSocket Error (2)";
writeOutput(text,sizeof(text)-1);
writeEnd();
}
}
}
}
}
void Client::startRead()
{
#ifdef DEBUGFASTCGI
std::cerr << __FILE__ << ":" << __LINE__ << std::endl;
#endif
if(!readCache->seekToContentPos())
{
status=Status_Idle;
char text[]="Status: 500 Internal Server Error\r\nX-Robots-Tag: noindex, nofollow\r\nContent-type: text/plain\r\n\r\nUnable to read cache (1)";
writeOutput(text,sizeof(text)-1);
writeEnd();
return;
}
readCache->setAsync();
readCache->seekToContentPos();
continueRead();
}
void Client::startRead(const std::string &path, const bool &partial)
{
#ifdef DEBUGFASTCGI
std::cerr << __FILE__ << ":" << __LINE__ << std::endl;
#endif
this->partial=partial;
int cachefd = open(path.c_str(), O_RDWR | O_NOCTTY, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
//if failed open cache
if(cachefd==-1)
{
status=Status_Idle;
char text[]="Status: 500 Internal Server Error\r\nX-Robots-Tag: noindex, nofollow\r\nContent-type: text/plain\r\n\r\nUnable to read cache (2)";
writeOutput(text,sizeof(text)-1);
writeEnd();
return;
}
const off_t &s=lseek(cachefd,1*sizeof(uint64_t),SEEK_SET);
if(s!=-1)
{
#ifdef DEBUGFASTCGI
std::cerr << __FILE__ << ":" << __LINE__ << std::endl;
#endif
const uint64_t ¤tTime=time(NULL);
if(readCache!=nullptr)
{
delete readCache;
readCache=nullptr;
}
readCache=new Cache(cachefd);
readCache->set_access_time(currentTime);
}
readCache->seekToContentPos();
startRead();
}
void Client::tryResumeReadAfterEndOfFile()
{
#ifdef DEBUGFASTCGI
std::cerr << __FILE__ << ":" << __LINE__ << std::endl;
#endif
if(partialEndOfFileTrigged)
continueRead();
}
void Client::continueRead()
{
#ifdef DEBUGFASTCGI
std::cerr << __FILE__ << ":" << __LINE__ << std::endl;
#endif
if(readCache==nullptr)
return;
if(!dataToWrite.empty())
return;
#ifdef DEBUGFASTCGI
std::cerr << __FILE__ << ":" << __LINE__ << std::endl;
#endif
char buffer[65536-1000];
do {
const ssize_t &s=readCache->read(buffer,sizeof(buffer));
if(s<1)
{
if(!partial)
writeEnd();
else
{
partialEndOfFileTrigged=true;
//std::cout << "End of file, wait more" << std::endl;
}
return;
}
partialEndOfFileTrigged=false;
writeOutput(buffer,s);
//if can't write all
if(!dataToWrite.empty())
return;
//if can write all, try again
} while(1);
}
void Client::cacheError()
{
#ifdef DEBUGFASTCGI
std::cerr << __FILE__ << ":" << __LINE__ << std::endl;
#endif
status=Status_Idle;
char text[]="Status: 500 Internal Server Error\r\nX-Robots-Tag: noindex, nofollow\r\nContent-type: text/plain\r\n\r\nCache file error";
writeOutput(text,sizeof(text)-1);
writeEnd();
}
void Client::readyToWrite()
{
#ifdef DEBUGFASTCGI
std::cerr << __FILE__ << ":" << __LINE__ << std::endl;
#endif
if(!dataToWrite.empty())
{
const ssize_t writedSize=::write(fd,dataToWrite.data(),dataToWrite.size());
if(errno!=0 && errno!=EAGAIN)
{
#ifdef DEBUGFASTCGI
std::cerr << __FILE__ << ":" << __LINE__ << std::endl;
#endif
disconnect();
return;
}
if(writedSize>=0)
if((size_t)writedSize==dataToWrite.size())
//event to continue to read file
return;
dataToWrite.erase(0,writedSize);
if(endTriggered==true)
{
#ifdef DEBUGFASTCGI
std::cerr << __FILE__ << ":" << __LINE__ << std::endl;
#endif
endTriggered=false;
disconnect();
}
return;
}
continueRead();
}
void Client::writeOutput(const char * const data,const int &size)
{
#ifdef DEBUGFASTCGI
std::cerr << __FILE__ << ":" << __LINE__ << ", outputWrited: " << outputWrited << " content: " << std::string(data,size) << std::endl;
#endif
outputWrited=true;
uint16_t padding=0;//size-size%16;
uint16_t paddingbe=htobe16(padding);
char header[1+1+2+2+2];
header[0]=1;
//FCGI_STDOUT
header[1]=6;
uint16_t idbe=htobe16(fastcgiid);
memcpy(header+1+1,&idbe,2);
uint16_t sizebe=htobe16(size);
memcpy(header+1+1+2,&sizebe,2);
memcpy(header+1+1+2+2,&paddingbe,2);
write(header,1+1+2+2+2);
write(data,size);
if(padding>0)
{
char t[padding];
write(t,padding);
}
}
void Client::write(const char * const data,const int &size)
{
if(fd==-1)