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
|
#include "curlmanager.h"
#ifdef PLATFORM_LINUX
#include <netinet/in.h>
#endif
cURLManager g_cURLManager;
struct data_t {
data_t(cURLHandle *_handle, size_t _bytes, size_t _nmemb):
handle(_handle), buffer(NULL), bytes(_bytes), nmemb(_nmemb)
{
}
cURLHandle *handle;
char *buffer;
size_t bytes;
size_t nmemb;
size_t return_value;
};
#include <io.h>
/* Write Function */
static size_t curl_write_function_default(void *ptr, size_t bytes, size_t nmemb, void *stream)
{
FILE *file = (FILE *)stream;
#ifdef WIN32
//if(file->_file >= 3)
if ( _filelength(_fileno(file)) >= 3 )
#else
if(file->_fileno >= 3)
#endif
{
return fwrite(ptr, bytes, nmemb, file);
}
return (bytes * nmemb);
}
static size_t Call_Write_Function(cURLHandle *handle, const char *buffer, size_t bytes, size_t nmemb)
{
IPluginFunction *pFunc = handle->callback_Function[cURL_CallBack_WRITE_FUNCTION];
assert((pFunc != NULL));
cell_t result = bytes * nmemb;
if(pFunc != NULL)
{
pFunc->PushCell(handle->hndl);
pFunc->PushStringEx((char *)buffer, nmemb+1, SM_PARAM_STRING_COPY|SM_PARAM_STRING_BINARY, 0);
pFunc->PushCell(bytes);
pFunc->PushCell(nmemb);
pFunc->PushCell(handle->UserData[UserData_Type_Write_Func]);
pFunc->Execute(&result);
}
return result;
}
static void sm_write_function_FrameAction(void *data)
{
if(data == NULL)
return;
data_t *wdata = (data_t*)data;
wdata->return_value = Call_Write_Function(wdata->handle, wdata->buffer, wdata->bytes, wdata->nmemb);
wdata->handle->thread->EventSignal();
}
static size_t curl_write_function_SM(void *ptr, size_t bytes, size_t nmemb, void *stream)
{
cURLHandle *handle = (cURLHandle *)stream;
size_t ret;
if(handle->thread == NULL)
{
char *buffer = new char[nmemb+1];
memcpy(buffer,ptr, nmemb);
buffer[nmemb] = '\0';
ret = Call_Write_Function(handle, buffer, bytes, nmemb);
delete [] buffer;
} else {
if(g_cURL_SM.IsShutdown())
return (bytes * nmemb);
data_t *data = new data_t(handle, bytes, nmemb);
data->buffer = new char[nmemb+1];
memcpy(data->buffer,ptr, nmemb);
data->buffer[nmemb] = '\0';
smutils->AddFrameAction(sm_write_function_FrameAction, data);
handle->thread->EventWait();
ret = data->return_value;
delete [] data->buffer;
delete data;
if(g_cURL_SM.IsShutdown())
return (bytes * nmemb);
}
return ret;
}
/* Read Function */
static size_t Call_Read_Function(cURLHandle *handle, size_t bytes, size_t nmemb)
{
IPluginFunction *pFunc = handle->callback_Function[cURL_CallBack_READ_FUNCTION];
assert((pFunc != NULL));
cell_t result = bytes * nmemb;
if(pFunc != NULL)
{
pFunc->PushCell(handle->hndl);
pFunc->PushCell(bytes);
pFunc->PushCell(nmemb);
pFunc->PushCell(handle->UserData[UserData_Type_Read_Func]);
pFunc->Execute(&result);
}
return result;
}
static void sm_read_function_FrameAction(void *data)
{
if(data == NULL)
return;
data_t *rdata = (data_t*)data;
rdata->return_value = Call_Read_Function(rdata->handle, rdata->bytes, rdata->nmemb);
rdata->handle->thread->EventSignal();
}
static size_t curl_read_function_SM(char *ptr, size_t bytes, size_t nmemb, void *stream)
{
cURLHandle *handle = (cURLHandle *)stream;
size_t ret = 0;
if(handle->thread == NULL)
{
ret = Call_Read_Function(handle, bytes, nmemb);
} else {
if(g_cURL_SM.IsShutdown())
return 0;
data_t *data = new data_t(handle, bytes, nmemb);
smutils->AddFrameAction(sm_read_function_FrameAction, data);
handle->thread->EventWait();
ret = data->return_value;
delete data;
if(g_cURL_SM.IsShutdown())
return 0;
}
if(ret > 0)
{
memcpy(ptr,handle->send_buffer.data(), handle->send_buffer.size());
}
return ret;
}
static curl_socket_t curl_opensocket_function(void *clientp, curlsocktype purpose, struct curl_sockaddr *address)
{
cURLHandle *handle = (cURLHandle *)clientp;
if(handle->is_udp)
{
address->socktype = SOCK_DGRAM;
address->protocol = IPPROTO_UDP;
address->family = AF_INET;
}
return socket(address->family, address->socktype, address->protocol);
}
void cURLManager::SDK_OnLoad()
{
curlhandle_list_mutex = threader->MakeMutex();
shutdown_event = threader->MakeEventSignal();
closehelper_list_mutex = threader->MakeMutex();
waiting = false;
}
void cURLManager::SDK_OnUnload()
{
curlhandle_list_mutex->Lock();
if(g_cURLThread_List.size() > 0)
{
printf("[%s] Waiting %d cURL Threads Terminate...\n",SMEXT_CONF_LOGTAG,g_cURLThread_List.size());
SourceHook::List<cURLThread *>::iterator iter = g_cURLThread_List.begin();
cURLThread *pInfo;
while (iter != g_cURLThread_List.end())
{
pInfo = (*iter);
if(pInfo->waiting) {
pInfo->event->Signal();
}
iter++;
}
curlhandle_list_mutex->Unlock();
waiting = true;
shutdown_event->Wait();
printf("[%s] All cURL Thread Terminated !!!\n",SMEXT_CONF_LOGTAG);
} else {
curlhandle_list_mutex->Unlock();
}
shutdown_event->DestroyThis();
curlhandle_list_mutex->DestroyThis();
shutdown_event = NULL;
curlhandle_list_mutex = NULL;
g_cURLThread_List.clear();
g_CloseHelper_List.clear();
}
void cURLManager::CreatecURLThread(cURLThread *thread)
{
if(g_cURL_SM.IsShutdown())
{
delete thread;
return;
}
curlhandle_list_mutex->Lock();
g_cURLThread_List.push_back(thread);
curlhandle_list_mutex->Unlock();
threader->MakeThread(thread);
}
void cURLManager::RemovecURLThread(cURLThread *thread)
{
if(g_cURL_SM.IsShutdown())
{
RemovecURLHandle(thread->handle);
}
curlhandle_list_mutex->Lock();
g_cURLThread_List.remove(thread);
if(waiting)
{
if(g_cURLThread_List.size() == 0)
{
curlhandle_list_mutex->Unlock();
shutdown_event->Signal();
return;
}
}
curlhandle_list_mutex->Unlock();
}
void cURLManager::AddCloseHelperHandle(ICloseHelper *helper)
{
closehelper_list_mutex->Lock();
if(g_CloseHelper_List.find(helper) == g_CloseHelper_List.end())
{
g_CloseHelper_List.push_back(helper);
}
closehelper_list_mutex->Unlock();
}
void cURLManager::RemoveCloseHelperHandle(ICloseHelper *helper)
{
closehelper_list_mutex->Lock();
g_CloseHelper_List.remove(helper);
closehelper_list_mutex->Unlock();
}
void cURLManager::RemoveLinkedICloseHelper(cURLHandle *handle)
{
closehelper_list_mutex->Lock();
SourceHook::List<ICloseHelper *>::iterator iter;
ICloseHelper *pInfo;
for (iter=g_CloseHelper_List.begin(); iter!=g_CloseHelper_List.end(); iter++)
{
pInfo = (*iter);
if(pInfo->_handle == handle)
{
pInfo->_handle = NULL;
if(pInfo->_marked_delete)
{
pInfo->Delete();
iter = g_CloseHelper_List.erase(iter);
}
}
}
closehelper_list_mutex->Unlock();
}
void cURLManager::RemovecURLHandle(cURLHandle *handle)
{
if(!handle || handle->running)
return;
if(handle->thread != NULL)
{
handle->thread->handle = NULL;
}
curl_easy_cleanup(handle->curl);
handle->curl = NULL;
SourceHook::List<cURLOpt_string *>::iterator iter;
cURLOpt_string *pInfo;
for (iter=handle->opt_string_list.begin(); iter!=handle->opt_string_list.end(); iter++)
{
pInfo = (*iter);
delete [] pInfo->value;
delete pInfo;
}
handle->opt_string_list.clear();
SourceHook::List<cURLOpt_int *>::iterator iter2;
cURLOpt_int*pInfo2;
for (iter2=handle->opt_int_list.begin(); iter2!=handle->opt_int_list.end(); iter2++)
{
pInfo2 = (*iter2);
delete pInfo2;
}
handle->opt_int_list.clear();
SourceHook::List<cURLOpt_pointer *>::iterator iter3;
cURLOpt_pointer *pInfo3;
for(iter3=handle->opt_pointer_list.begin(); iter3!=handle->opt_pointer_list.end(); iter3++)
{
pInfo3 = (*iter3);
delete pInfo3;
}
handle->opt_pointer_list.clear();
SourceHook::List<cURLOpt_int64 *>::iterator iter4;
cURLOpt_int64 *pInfo4;
for(iter4=handle->opt_int64_list.begin(); iter4!=handle->opt_int64_list.end(); iter4++)
{
pInfo4 = (*iter4);
delete pInfo4;
}
handle->opt_int64_list.clear();
handle->send_buffer.clear();
RemoveLinkedICloseHelper(handle);
delete handle;
}
bool cURLManager::AddcURLOptionString(cURLHandle *handle, CURLoption opt, char *value)
{
if(!handle || handle->running || !value)
return false;
std::string value_str;
bool supported = false;
switch(opt)
{
case CURLOPT_URL:
{
char *lowercase_value = UTIL_ToLowerCase(value);
std::string value_str_lower(lowercase_value);
delete [] lowercase_value;
if(!value_str_lower.compare(0,6, "udp://"))
{
handle->is_udp = true;
value_str.assign(&value[6]);
} else {
value_str = value;
handle->is_udp = false;
}
supported = true;
break;
}
case CURLOPT_PROXY:
case CURLOPT_PROXYUSERPWD:
case CURLOPT_RANGE:
case CURLOPT_USERPWD:
case CURLOPT_KEYPASSWD:
case CURLOPT_POSTFIELDS:
case CURLOPT_REFERER:
case CURLOPT_FTPPORT:
case CURLOPT_USERAGENT:
case CURLOPT_COOKIE:
case CURLOPT_ENCODING:
case CURLOPT_CUSTOMREQUEST:
case CURLOPT_WRITEINFO:
case CURLOPT_INTERFACE:
case CURLOPT_KRBLEVEL:
case CURLOPT_SSL_CIPHER_LIST:
case CURLOPT_SSLCERTTYPE:
case CURLOPT_SSLKEYTYPE:
case CURLOPT_SSLENGINE:
case CURLOPT_FTP_ACCOUNT:
case CURLOPT_COOKIELIST:
case CURLOPT_FTP_ALTERNATIVE_TO_USER:
case CURLOPT_SSH_HOST_PUBLIC_KEY_MD5:
case CURLOPT_USERNAME:
case CURLOPT_PASSWORD:
case CURLOPT_PROXYUSERNAME:
case CURLOPT_PROXYPASSWORD:
case CURLOPT_NOPROXY:
case CURLOPT_SOCKS5_GSSAPI_SERVICE:
case CURLOPT_MAIL_FROM:
case CURLOPT_RTSP_SESSION_ID:
case CURLOPT_RTSP_STREAM_URI:
case CURLOPT_RTSP_TRANSPORT:
value_str.assign(value);
supported = true;
break;
case CURLOPT_COOKIEFILE:
case CURLOPT_COOKIEJAR:
case CURLOPT_RANDOM_FILE:
case CURLOPT_EGDSOCKET:
case CURLOPT_SSLCERT:
case CURLOPT_SSLKEY:
case CURLOPT_CAINFO:
case CURLOPT_CAPATH:
case CURLOPT_NETRC_FILE:
case CURLOPT_SSH_PUBLIC_KEYFILE:
case CURLOPT_SSH_PRIVATE_KEYFILE:
case CURLOPT_CRLFILE:
case CURLOPT_ISSUERCERT:
case CURLOPT_SSH_KNOWNHOSTS:
{
char realpath[PLATFORM_MAX_PATH];
g_pSM->BuildPath(Path_Game, realpath, sizeof(realpath), "%s", value);
value_str.assign(realpath);
supported = true;
break;
}
}
assert((supported != false));
if(!supported)
return false;
cURLOpt_string *stringopt = new cURLOpt_string();
stringopt->opt = opt;
stringopt->value = new char[value_str.size()+1];
memset(stringopt->value, 0, value_str.size()+1);
memcpy(stringopt->value,value_str.c_str(), value_str.size());
handle->opt_string_list.push_back(stringopt);
return true;
}
bool cURLManager::AddcURLOptionInt(cURLHandle *handle, CURLoption opt, int value)
{
if(!handle || handle->running)
return false;
bool supported = false;
switch(opt)
{
case CURLOPT_PORT:
case CURLOPT_NOPROGRESS:
case CURLOPT_VERBOSE:
case CURLOPT_PROXYTYPE:
case CURLOPT_HTTPPROXYTUNNEL:
case CURLOPT_TIMEOUT:
case CURLOPT_SSL_VERIFYPEER:
case CURLOPT_SSL_VERIFYHOST:
case CURLOPT_UPLOAD:
case CURLOPT_INFILESIZE:
case CURLOPT_LOW_SPEED_LIMIT:
case CURLOPT_LOW_SPEED_TIME:
case CURLOPT_RESUME_FROM:
case CURLOPT_CRLF:
case CURLOPT_SSLVERSION:
case CURLOPT_TIMECONDITION:
case CURLOPT_TIMEVALUE:
case CURLOPT_HEADER:
case CURLOPT_NOBODY:
case CURLOPT_FAILONERROR:
case CURLOPT_POST:
case CURLOPT_DIRLISTONLY:
case CURLOPT_APPEND:
case CURLOPT_NETRC:
case CURLOPT_FOLLOWLOCATION:
case CURLOPT_TRANSFERTEXT:
case CURLOPT_PUT:
case CURLOPT_AUTOREFERER:
case CURLOPT_PROXYPORT:
case CURLOPT_POSTFIELDSIZE:
case CURLOPT_MAXREDIRS:
case CURLOPT_FILETIME:
case CURLOPT_MAXCONNECTS:
case CURLOPT_CLOSEPOLICY:
case CURLOPT_FRESH_CONNECT:
case CURLOPT_FORBID_REUSE:
case CURLOPT_CONNECTTIMEOUT:
case CURLOPT_HTTPGET:
case CURLOPT_HTTP_VERSION:
case CURLOPT_FTP_USE_EPSV:
case CURLOPT_SSLENGINE_DEFAULT:
case CURLOPT_DNS_USE_GLOBAL_CACHE:
case CURLOPT_DNS_CACHE_TIMEOUT:
case CURLOPT_COOKIESESSION:
case CURLOPT_BUFFERSIZE:
case CURLOPT_NOSIGNAL:
case CURLOPT_UNRESTRICTED_AUTH:
case CURLOPT_FTP_USE_EPRT:
case CURLOPT_HTTPAUTH:
case CURLOPT_FTP_CREATE_MISSING_DIRS:
case CURLOPT_PROXYAUTH:
case CURLOPT_FTP_RESPONSE_TIMEOUT:
case CURLOPT_IPRESOLVE:
case CURLOPT_MAXFILESIZE:
case CURLOPT_USE_SSL:
case CURLOPT_TCP_NODELAY:
case CURLOPT_FTPSSLAUTH:
case CURLOPT_IGNORE_CONTENT_LENGTH:
case CURLOPT_FTP_SKIP_PASV_IP:
case CURLOPT_FTP_FILEMETHOD:
case CURLOPT_LOCALPORT:
case CURLOPT_LOCALPORTRANGE:
case CURLOPT_CONNECT_ONLY:
case CURLOPT_SSL_SESSIONID_CACHE:
case CURLOPT_SSH_AUTH_TYPES:
case CURLOPT_FTP_SSL_CCC:
case CURLOPT_TIMEOUT_MS:
case CURLOPT_CONNECTTIMEOUT_MS:
case CURLOPT_HTTP_TRANSFER_DECODING:
case CURLOPT_HTTP_CONTENT_DECODING:
case CURLOPT_NEW_FILE_PERMS:
case CURLOPT_NEW_DIRECTORY_PERMS:
case CURLOPT_POSTREDIR:
case CURLOPT_PROXY_TRANSFER_MODE:
case CURLOPT_ADDRESS_SCOPE:
case CURLOPT_CERTINFO:
case CURLOPT_TFTP_BLKSIZE:
case CURLOPT_PROTOCOLS:
case CURLOPT_REDIR_PROTOCOLS:
case CURLOPT_FTP_USE_PRET:
case CURLOPT_RTSP_REQUEST:
case CURLOPT_RTSP_CLIENT_CSEQ:
case CURLOPT_RTSP_SERVER_CSEQ:
case CURLOPT_WILDCARDMATCH:
case CURLOPT_TRANSFER_ENCODING:
case CURLOPT_GSSAPI_DELEGATION:
supported = true;
break;
}
assert((supported != false));
if(!supported)
return false;
cURLOpt_int *intopt = new cURLOpt_int();
intopt->opt = opt;
intopt->value = value;
handle->opt_int_list.push_back(intopt);
return true;
}
bool cURLManager::AddcURLOptionInt64(cURLHandle *handle, CURLoption opt, long long value)
{
if(!handle || handle->running)
return false;
bool supported = false;
switch(opt)
{
case CURLOPT_INFILESIZE_LARGE:
case CURLOPT_RESUME_FROM_LARGE:
case CURLOPT_MAXFILESIZE_LARGE:
case CURLOPT_POSTFIELDSIZE_LARGE:
case CURLOPT_MAX_SEND_SPEED_LARGE:
case CURLOPT_MAX_RECV_SPEED_LARGE:
supported = true;
break;
}
assert((supported != false));
if(!supported)
return false;
cURLOpt_int64 *int64opt = new cURLOpt_int64();
int64opt->opt = opt;
int64opt->value = (curl_off_t)value;
handle->opt_int64_list.push_back(int64opt);
return true;
}
bool cURLManager::AddcURLOptionFunction(IPluginContext *pContext, cURLHandle *handle, CURLoption opt, IPluginFunction *pFunction, int value)
{
if(!handle || handle->running)
return false;
cURL_CallBack index = cURL_CallBack_NOTHING;
switch(opt)
{
case CURLOPT_WRITEFUNCTION:
index = cURL_CallBack_WRITE_FUNCTION;
handle->UserData[UserData_Type_Write_Func] = value;
break;
case CURLOPT_READFUNCTION:
index = cURL_CallBack_READ_FUNCTION;
handle->UserData[UserData_Type_Read_Func] = value;
break;
}
if(index == cURL_CallBack_NOTHING)
return false;
handle->callback_Function[index] = pFunction;
return true;
}
bool cURLManager::AddcURLOptionHandle(IPluginContext *pContext, cURLHandle *handle, HandleSecurity *sec, CURLoption opt, Handle_t hndl)
{
if(!handle || handle->running)
return false;
void *pointer = NULL;
int err = SP_ERROR_NONE;
ICloseHelper *helper = NULL;
switch(opt)
{
case CURLOPT_WRITEDATA:
case CURLOPT_HEADERDATA:
case CURLOPT_READDATA:
case CURLOPT_STDERR:
case CURLOPT_INTERLEAVEDATA:
{
cURL_OpenFile *openfile = NULL;
err = handlesys->ReadHandle(hndl, g_cURLFile, sec, (void **)&openfile);
if(openfile != NULL)
{
pointer = openfile->pFile;
openfile->_handle = handle;
helper = openfile;
}
break;
}
case CURLOPT_HTTPPOST:
{
WebForm *webform = NULL;
err = handlesys->ReadHandle(hndl, g_WebForm, sec, (void **)&webform);
if(webform != NULL) {
pointer = webform->first;
webform->_handle = handle;
helper = webform;
SourceHook::List<cURL_slist_pack *>::iterator iter;
cURL_slist_pack *pInfo;
for(iter=webform->slist_record.begin(); iter!=webform->slist_record.end(); iter++)
{
pInfo = (*iter);
pInfo->_handle = handle;
AddCloseHelperHandle(pInfo);
}
}
break;
}
case CURLOPT_HTTPHEADER:
case CURLOPT_QUOTE:
case CURLOPT_POSTQUOTE:
case CURLOPT_TELNETOPTIONS:
case CURLOPT_PREQUOTE:
case CURLOPT_HTTP200ALIASES:
case CURLOPT_MAIL_RCPT:
case CURLOPT_RESOLVE:
{
cURL_slist_pack *slist = NULL;
err = handlesys->ReadHandle(hndl, g_cURLSlist, sec, (void **)&slist);
if(slist != NULL) {
pointer = slist->chunk;
slist->_handle = handle;
helper = slist;
}
break;
}
}
if(err != SP_ERROR_NONE)
{
pContext->ThrowNativeErrorEx(err, NULL);
return false;
}
assert((pointer != NULL));
if(pointer == NULL)
return false;
cURLOpt_pointer *pointeropt = new cURLOpt_pointer();
pointeropt->opt = opt;
pointeropt->value = pointer;
handle->opt_pointer_list.push_back(pointeropt);
AddCloseHelperHandle(helper);
return true;
}
void cURLManager::LoadcURLOption(cURLHandle *handle)
{
if(!handle || handle->opt_loaded)
return;
handle->opt_loaded = true;
static bool curlSetSSL = false;
if (!curlSetSSL)
{
// use the system ssl certs
CURLsslset sslset = curl_global_sslset(CURLSSLBACKEND_OPENSSL, NULL, NULL);
if (sslset != CURLSSLSET_OK)
{
printf("curl_global_sslset failed: %i\n", sslset);
return;
}
curlSetSSL = true;
}
curl_easy_setopt(handle->curl, CURLOPT_SSL_OPTIONS, CURLSSLOPT_NATIVE_CA);
curl_easy_setopt(handle->curl, CURLOPT_ACCEPT_ENCODING, "");
curl_easy_setopt(handle->curl, CURLOPT_ERRORBUFFER, handle->errorBuffer);
curl_easy_setopt(handle->curl, CURLOPT_OPENSOCKETFUNCTION, curl_opensocket_function);
curl_easy_setopt(handle->curl, CURLOPT_OPENSOCKETDATA, handle);
if(handle->callback_Function[cURL_CallBack_WRITE_FUNCTION] == NULL) {
curl_easy_setopt(handle->curl, CURLOPT_WRITEFUNCTION, curl_write_function_default);
} else {
curl_easy_setopt(handle->curl, CURLOPT_WRITEFUNCTION, curl_write_function_SM);
curl_easy_setopt(handle->curl, CURLOPT_WRITEDATA, handle);
}
if(handle->callback_Function[cURL_CallBack_READ_FUNCTION] != NULL) {
curl_easy_setopt(handle->curl, CURLOPT_READFUNCTION, curl_read_function_SM);
curl_easy_setopt(handle->curl, CURLOPT_READDATA, handle);
}
SourceHook::List<cURLOpt_string *>::iterator iter;
cURLOpt_string *pInfo;
for(iter=handle->opt_string_list.begin(); iter!=handle->opt_string_list.end(); iter++)
{
pInfo = (*iter);
if((handle->lasterror = curl_easy_setopt(handle->curl, pInfo->opt, pInfo->value)) != CURLE_OK)
return;
}
SourceHook::List<cURLOpt_int *>::iterator iter2;
cURLOpt_int *pInfo2;
for(iter2=handle->opt_int_list.begin(); iter2!=handle->opt_int_list.end(); iter2++)
{
pInfo2 = (*iter2);
if((handle->lasterror = curl_easy_setopt(handle->curl, pInfo2->opt, pInfo2->value)) != CURLE_OK)
return;
}
SourceHook::List<cURLOpt_pointer *>::iterator iter3;
cURLOpt_pointer *pInfo3;
for(iter3=handle->opt_pointer_list.begin(); iter3!=handle->opt_pointer_list.end(); iter3++)
{
pInfo3 = (*iter3);
//Not allow use CURLOPT_WRITEDATA, CURLOPT_READDATA, if write/read function set
if((handle->callback_Function[cURL_CallBack_WRITE_FUNCTION] != NULL && pInfo3->opt == CURLOPT_WRITEDATA)
|| (handle->callback_Function[cURL_CallBack_READ_FUNCTION] != NULL && pInfo3->opt == CURLOPT_READDATA))
{
continue;
}
if((handle->lasterror = curl_easy_setopt(handle->curl, pInfo3->opt, pInfo3->value)) != CURLE_OK)
return;
}
SourceHook::List<cURLOpt_int64 *>::iterator iter4;
cURLOpt_int64 *pInfo4;
for(iter4=handle->opt_int64_list.begin(); iter4!=handle->opt_int64_list.end(); iter4++)
{
pInfo4 = (*iter4);
if((handle->lasterror = curl_easy_setopt(handle->curl, pInfo4->opt, (curl_off_t)pInfo4->value)) != CURLE_OK)
return;
}
}
CURLFORMcode cURLManager::cURLFormAdd(IPluginContext *pContext, const cell_t *params, WebForm *handle)
{
assert((handle != NULL));
if(handle == NULL)
return CURL_FORMADD_INCOMPLETE;
unsigned int numparams = (unsigned)params[0];
unsigned int startparam = 2;
if(numparams <= 1 || numparams > 22)
return CURL_FORMADD_INCOMPLETE;
// there are only 10 available/supported CURLFORM_*
CURLformoption form_opts[11] = {CURLFORM_NOTHING};
char *form_data[10];
memset(form_data, 0, sizeof(form_data));
cell_t *addr;
int count = 0;
int err;
int value;
for(unsigned int i=startparam;i<=numparams;i++)
{
if((err=pContext->LocalToPhysAddr(params[i], &addr)) != SP_ERROR_NONE)
{
pContext->ThrowNativeErrorEx(err, NULL);
return CURL_FORMADD_INCOMPLETE;
}
CURLformoption form_code = (CURLformoption)*addr;
switch(form_code)
{
case CURLFORM_COPYNAME:
case CURLFORM_COPYCONTENTS:
case CURLFORM_FILECONTENT:
case CURLFORM_FILE:
case CURLFORM_CONTENTTYPE:
case CURLFORM_FILENAME:
if((err=pContext->LocalToString(params[i+1], &form_data[count])) != SP_ERROR_NONE)
{
pContext->ThrowNativeErrorEx(err, NULL);
return CURL_FORMADD_INCOMPLETE;
}
if(form_code == CURLFORM_FILE || form_code == CURLFORM_FILECONTENT) // absolute path
{
char realpath[PLATFORM_MAX_PATH];
g_pSM->BuildPath(Path_Game, realpath, sizeof(realpath), "%s", form_data[count]);
form_data[count] = realpath;
}
form_opts[count] = form_code;
count++;
i++;
break;
case CURLFORM_NAMELENGTH:
case CURLFORM_CONTENTSLENGTH:
if((err=pContext->LocalToPhysAddr(params[i+1], &addr)) != SP_ERROR_NONE)
{
pContext->ThrowNativeErrorEx(err, NULL);
return CURL_FORMADD_INCOMPLETE;
}
form_opts[count] = form_code;
value = *addr;
form_data[count] = (char *)value;
count++;
i++;
break;
case CURLFORM_CONTENTHEADER:
{
if((err=pContext->LocalToPhysAddr(params[i+1], &addr)) != SP_ERROR_NONE)
{
pContext->ThrowNativeErrorEx(err, NULL);
return CURL_FORMADD_INCOMPLETE;
}
cURL_slist_pack *slist;
HandleError hndl_err;
HandleSecurity sec(pContext->GetIdentity(), myself_Identity);
if((hndl_err = handlesys->ReadHandle(*addr, g_cURLSlist, &sec, (void **)&slist)) != HandleError_None)
{
pContext->ThrowNativeError("Invalid curl_slist Handle %x (error %d)", params[1], hndl_err);
return CURL_FORMADD_INCOMPLETE;
}
form_opts[count] = form_code;
form_data[count] = (char *)slist->chunk;
handle->slist_record.push_back(slist); // when webform add into curlhandle, will add slist handle to close helper
count++;
i++;
break;
}
case CURLFORM_END:
form_opts[count] = CURLFORM_END;
goto end;
}
}
end:
CURLFORMcode ret = curl_formadd(&handle->first, &handle->last,
form_opts[0],
form_data[0],
form_opts[1],
form_data[1],
form_opts[2],
form_data[2],
form_opts[3],
form_data[3],
form_opts[4],
form_data[4],
form_opts[5],
form_data[5],
form_opts[6],
form_data[6],
form_opts[7],
form_data[7],
form_opts[8],
form_data[8],
form_opts[9],
form_data[9],
form_opts[10]
);
return ret;
}
|