forked from samtools/htslib
-
Notifications
You must be signed in to change notification settings - Fork 2
/
hfile_libcurl.c
1393 lines (1180 loc) · 42.1 KB
/
hfile_libcurl.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
/* hfile_libcurl.c -- libcurl backend for low-level file streams.
Copyright (C) 2015-2017 Genome Research Ltd.
Author: John Marshall <jm18@sanger.ac.uk>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE. */
#include <config.h>
#include <stdarg.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <pthread.h>
#ifndef _WIN32
# include <sys/select.h>
#endif
#include <assert.h>
#include "hfile_internal.h"
#ifdef ENABLE_PLUGINS
#include "version.h"
#endif
#include "htslib/hts.h" // for hts_version() and hts_verbose
#include "htslib/kstring.h"
#include "htslib/khash.h"
#include <curl/curl.h>
// Number of seconds to take off auth_token expiry, to allow for clock skew
// and slow servers
#define AUTH_REFRESH_EARLY_SECS 60
// Minimum number of bytes to skip when seeking forward. Seeks less than
// this will just read the data and throw it away. The optimal value
// depends on how long it takes to make a new connection compared
// to how fast the data arrives.
#define MIN_SEEK_FORWARD 1000000
typedef struct {
char *path;
char *token;
time_t expiry;
int failed;
pthread_mutex_t lock;
} auth_token;
// For the authorization header cache
KHASH_MAP_INIT_STR(auth_map, auth_token *)
// Curl-compatible header linked list
typedef struct {
struct curl_slist *list;
unsigned int num;
unsigned int size;
} hdrlist;
typedef struct {
hdrlist fixed; // List of headers supplied at hopen()
hdrlist extra; // List of headers from callback
hts_httphdr_callback callback; // Callback to get more headers
void *callback_data; // Data to pass to callback
auth_token *auth; // Authentication token
int auth_hdr_num; // Location of auth_token in hdrlist extra
// If -1, Authorization header is in fixed
// -2, it came from the callback
// -3, "auth_token_enabled", "false"
// passed to hopen()
} http_headers;
typedef struct {
hFILE base;
CURL *easy;
CURLM *multi;
off_t file_size;
struct {
union { char *rd; const char *wr; } ptr;
size_t len;
} buffer;
CURLcode final_result; // easy result code for finished transfers
// Flags for communicating with libcurl callbacks:
unsigned paused : 1; // callback tells us that it has paused transfer
unsigned closing : 1; // informs callback that hclose() has been invoked
unsigned finished : 1; // wait_perform() tells us transfer is complete
unsigned perform_again : 1;
unsigned is_read : 1; // Opened in read mode
unsigned can_seek : 1; // Can (attempt to) seek on this handle
unsigned is_recursive:1; // Opened by hfile_libcurl itself
unsigned tried_seek : 1; // At least one seek has been attempted
int nrunning;
http_headers headers;
off_t delayed_seek; // Location to seek to before reading
off_t last_offset; // Location we're seeking from
} hFILE_libcurl;
static off_t libcurl_seek(hFILE *fpv, off_t offset, int whence);
static int restart_from_position(hFILE_libcurl *fp, off_t pos);
static int http_status_errno(int status)
{
if (status >= 500)
switch (status) {
case 501: return ENOSYS;
case 503: return EBUSY;
case 504: return ETIMEDOUT;
default: return EIO;
}
else if (status >= 400)
switch (status) {
case 401: return EPERM;
case 403: return EACCES;
case 404: return ENOENT;
case 405: return EROFS;
case 407: return EPERM;
case 408: return ETIMEDOUT;
case 410: return ENOENT;
default: return EINVAL;
}
else return 0;
}
static int easy_errno(CURL *easy, CURLcode err)
{
long lval;
switch (err) {
case CURLE_OK:
return 0;
case CURLE_UNSUPPORTED_PROTOCOL:
case CURLE_URL_MALFORMAT:
return EINVAL;
#if LIBCURL_VERSION_NUM >= 0x071505
case CURLE_NOT_BUILT_IN:
return ENOSYS;
#endif
case CURLE_COULDNT_RESOLVE_PROXY:
case CURLE_COULDNT_RESOLVE_HOST:
case CURLE_FTP_CANT_GET_HOST:
return EDESTADDRREQ; // Lookup failure
case CURLE_COULDNT_CONNECT:
case CURLE_SEND_ERROR:
case CURLE_RECV_ERROR:
if (curl_easy_getinfo(easy, CURLINFO_OS_ERRNO, &lval) == CURLE_OK)
return lval;
else
return ECONNABORTED;
case CURLE_REMOTE_ACCESS_DENIED:
case CURLE_LOGIN_DENIED:
case CURLE_TFTP_PERM:
return EACCES;
case CURLE_PARTIAL_FILE:
return EPIPE;
case CURLE_HTTP_RETURNED_ERROR:
if (curl_easy_getinfo(easy, CURLINFO_RESPONSE_CODE, &lval) == CURLE_OK)
return http_status_errno(lval);
else
return EIO;
case CURLE_OUT_OF_MEMORY:
return ENOMEM;
case CURLE_OPERATION_TIMEDOUT:
return ETIMEDOUT;
case CURLE_RANGE_ERROR:
return ESPIPE;
case CURLE_SSL_CONNECT_ERROR:
// TODO return SSL error buffer messages
return ECONNABORTED;
case CURLE_FILE_COULDNT_READ_FILE:
case CURLE_TFTP_NOTFOUND:
return ENOENT;
case CURLE_TOO_MANY_REDIRECTS:
return ELOOP;
case CURLE_FILESIZE_EXCEEDED:
return EFBIG;
case CURLE_REMOTE_DISK_FULL:
return ENOSPC;
case CURLE_REMOTE_FILE_EXISTS:
return EEXIST;
default:
return EIO;
}
}
static int multi_errno(CURLMcode errm)
{
switch (errm) {
case CURLM_CALL_MULTI_PERFORM:
case CURLM_OK:
return 0;
case CURLM_BAD_HANDLE:
case CURLM_BAD_EASY_HANDLE:
case CURLM_BAD_SOCKET:
return EBADF;
case CURLM_OUT_OF_MEMORY:
return ENOMEM;
default:
return EIO;
}
}
static struct {
kstring_t useragent;
CURLSH *share;
char *auth_path;
khash_t(auth_map) *auth_map;
int allow_unencrypted_auth_header;
pthread_mutex_t auth_lock;
pthread_mutex_t share_lock;
} curl = { { 0, 0, NULL }, NULL, NULL, NULL, 0, PTHREAD_MUTEX_INITIALIZER,
PTHREAD_MUTEX_INITIALIZER };
static void share_lock(CURL *handle, curl_lock_data data,
curl_lock_access access, void *userptr) {
pthread_mutex_lock(&curl.share_lock);
}
static void share_unlock(CURL *handle, curl_lock_data data, void *userptr) {
pthread_mutex_unlock(&curl.share_lock);
}
static void free_auth(auth_token *tok) {
if (!tok) return;
if (pthread_mutex_destroy(&tok->lock)) abort();
free(tok->path);
free(tok->token);
free(tok);
}
static void libcurl_exit()
{
if (curl_share_cleanup(curl.share) == CURLSHE_OK)
curl.share = NULL;
free(curl.useragent.s);
curl.useragent.l = curl.useragent.m = 0; curl.useragent.s = NULL;
free(curl.auth_path);
curl.auth_path = NULL;
if (curl.auth_map) {
khiter_t i;
for (i = kh_begin(curl.auth_map); i != kh_end(curl.auth_map); ++i) {
if (kh_exist(curl.auth_map, i)) {
free_auth(kh_value(curl.auth_map, i));
kh_key(curl.auth_map, i) = NULL;
kh_value(curl.auth_map, i) = NULL;
}
}
kh_destroy(auth_map, curl.auth_map);
curl.auth_map = NULL;
}
curl_global_cleanup();
}
static int append_header(hdrlist *hdrs, const char *data, int dup) {
if (hdrs->num == hdrs->size) {
unsigned int new_sz = hdrs->size ? hdrs->size * 2 : 4, i;
struct curl_slist *new_list = realloc(hdrs->list,
new_sz * sizeof(*new_list));
if (!new_list) return -1;
hdrs->size = new_sz;
hdrs->list = new_list;
for (i = 1; i < hdrs->num; i++) hdrs->list[i-1].next = &hdrs->list[i];
}
// Annoyingly, libcurl doesn't declare the char * as const...
hdrs->list[hdrs->num].data = dup ? strdup(data) : (char *) data;
if (!hdrs->list[hdrs->num].data) return -1;
if (hdrs->num > 0) hdrs->list[hdrs->num - 1].next = &hdrs->list[hdrs->num];
hdrs->list[hdrs->num].next = NULL;
hdrs->num++;
return 0;
}
static void free_headers(hdrlist *hdrs, int completely) {
unsigned int i;
for (i = 0; i < hdrs->num; i++) {
free(hdrs->list[i].data);
hdrs->list[i].data = NULL;
hdrs->list[i].next = NULL;
}
hdrs->num = 0;
if (completely) {
free(hdrs->list);
hdrs->size = 0;
hdrs->list = NULL;
}
}
static struct curl_slist * get_header_list(hFILE_libcurl *fp) {
if (fp->headers.fixed.num > 0)
return &fp->headers.fixed.list[0];
if (fp->headers.extra.num > 0)
return &fp->headers.extra.list[0];
return 0;
}
static inline int is_authorization(const char *hdr) {
return (strncasecmp("authorization:", hdr, 14) == 0);
}
static int add_callback_headers(hFILE_libcurl *fp) {
char **hdrs = NULL, **hdr;
if (!fp->headers.callback)
return 0;
// Get the headers from the callback
if (fp->headers.callback(fp->headers.callback_data, &hdrs) != 0) {
return -1;
}
if (!hdrs) // No change
return 0;
// Remove any old callback headers
if (fp->headers.fixed.num > 0) {
// Unlink lists
fp->headers.fixed.list[fp->headers.fixed.num - 1].next = NULL;
}
free_headers(&fp->headers.extra, 0);
if (fp->headers.auth_hdr_num > 0 || fp->headers.auth_hdr_num == -2)
fp->headers.auth_hdr_num = 0; // Just removed it...
// Convert to libcurl-suitable form
for (hdr = hdrs; *hdr; hdr++) {
if (append_header(&fp->headers.extra, *hdr, 0) < 0) {
goto cleanup;
}
if (is_authorization(*hdr) && !fp->headers.auth_hdr_num)
fp->headers.auth_hdr_num = -2;
}
for (hdr = hdrs; *hdr; hdr++) *hdr = NULL;
if (fp->headers.fixed.num > 0 && fp->headers.extra.num > 0) {
// Relink lists
fp->headers.fixed.list[fp->headers.fixed.num - 1].next
= &fp->headers.extra.list[0];
}
return 0;
cleanup:
while (hdr && *hdr) {
free(*hdr);
*hdr = NULL;
}
return -1;
}
/*
* Read an OAUTH2-style Bearer access token (see
* https://tools.ietf.org/html/rfc6750#section-4).
* Returns 'v' for valid; 'i' for invalid (token missing or wrong sort);
* '?' for a JSON parse error; 'm' if it runs out of memory.
*/
static int read_auth_json(auth_token *tok, hFILE *auth_fp) {
hts_json_token *t = hts_json_alloc_token();
kstring_t str = {0, 0, NULL};
char *token = NULL, *type = NULL, *expiry = NULL;
int ret = 'i';
if (!t) goto error;
if ((ret = hts_json_fnext(auth_fp, t, &str)) != '{') goto error;
while (hts_json_fnext(auth_fp, t, &str) != '}') {
char *key;
if (hts_json_token_type(t) != 's') {
ret = '?';
goto error;
}
key = hts_json_token_str(t);
if (!key) goto error;
if (strcmp(key, "access_token") == 0) {
if ((ret = hts_json_fnext(auth_fp, t, &str)) != 's') goto error;
token = ks_release(&str);
} else if (strcmp(key, "token_type") == 0) {
if ((ret = hts_json_fnext(auth_fp, t, &str)) != 's') goto error;
type = ks_release(&str);
} else if (strcmp(key, "expires_in") == 0) {
if ((ret = hts_json_fnext(auth_fp, t, &str)) != 'n') goto error;
expiry = ks_release(&str);
} else if (hts_json_fskip_value(auth_fp, '\0') != 'v') {
ret = '?';
goto error;
}
}
if (!token || (type && strcmp(type, "Bearer") != 0)) {
ret = 'i';
goto error;
}
ret = 'm';
str.l = 0;
if (kputs("Authorization: Bearer ", &str) < 0) goto error;
if (kputs(token, &str) < 0) goto error;
free(tok->token);
tok->token = ks_release(&str);
if (expiry) {
long exp = strtol(expiry, NULL, 10);
if (exp < 0) exp = 0;
tok->expiry = time(NULL) + exp;
} else {
tok->expiry = 0;
}
ret = 'v';
error:
free(token);
free(type);
free(expiry);
free(str.s);
hts_json_free_token(t);
return ret;
}
static int read_auth_plain(auth_token *tok, hFILE *auth_fp) {
kstring_t line = {0, 0, NULL};
kstring_t token = {0, 0, NULL};
const char *start, *end;
if (kgetline(&line, (char * (*)(char *, int, void *)) hgets, auth_fp) < 0) goto error;
if (kputc('\0', &line) < 0) goto error;
for (start = line.s; *start && isspace_c(*start); start++) {}
for (end = start; *end && !isspace_c(*end); end++) {}
if (end > start) {
if (kputs("Authorization: Bearer ", &token) < 0) goto error;
if (kputsn(start, end - start, &token) < 0) goto error;
}
free(tok->token);
tok->token = ks_release(&token);
tok->expiry = 0;
free(line.s);
return 0;
error:
free(line.s);
free(token.s);
return -1;
}
static int renew_auth_token(auth_token *tok, int *changed) {
hFILE *auth_fp = NULL;
char buffer[16];
ssize_t len;
*changed = 0;
if (tok->expiry == 0 || time(NULL) + AUTH_REFRESH_EARLY_SECS < tok->expiry)
return 0; // Still valid
if (tok->failed)
return -1;
*changed = 1;
auth_fp = hopen(tok->path, "rR");
if (!auth_fp) {
// Not worried about missing files; other errors are bad.
if (errno != ENOENT)
goto fail;
tok->expiry = 0; // Prevent retry
free(tok->token); // Just in case it was set
return 0;
}
len = hpeek(auth_fp, buffer, sizeof(buffer));
if (len < 0)
goto fail;
if (memchr(buffer, '{', len) != NULL) {
if (read_auth_json(tok, auth_fp) != 'v')
goto fail;
} else {
if (read_auth_plain(tok, auth_fp) < 0)
goto fail;
}
return hclose(auth_fp) < 0 ? -1 : 0;
fail:
tok->failed = 1;
if (auth_fp) hclose_abruptly(auth_fp);
return -1;
}
static int add_auth_header(hFILE_libcurl *fp) {
int changed = 0;
if (fp->headers.auth_hdr_num < 0)
return 0; // Have an Authorization header from open or header callback
if (!fp->headers.auth)
return 0; // Nothing to add
pthread_mutex_lock(&fp->headers.auth->lock);
if (renew_auth_token(fp->headers.auth, &changed) < 0)
goto unlock_fail;
if (!changed && fp->headers.auth_hdr_num > 0) {
pthread_mutex_unlock(&fp->headers.auth->lock);
return 0;
}
if (fp->headers.auth_hdr_num > 0) {
// Had a previous header, so swap in the new one
char *header = fp->headers.auth->token;
char *header_copy = header ? strdup(header) : NULL;
int idx = fp->headers.auth_hdr_num - 1;
if (header && !header_copy)
goto unlock_fail;
if (header_copy) {
free(fp->headers.extra.list[idx].data);
fp->headers.extra.list[idx].data = header_copy;
} else {
unsigned int j;
// More complicated case - need to get rid of the old header
// and tidy up linked lists
free(fp->headers.extra.list[idx].data);
for (j = idx + 1; j < fp->headers.extra.num; j++) {
fp->headers.extra.list[j - 1] = fp->headers.extra.list[j];
fp->headers.extra.list[j - 1].next = &fp->headers.extra.list[j];
}
fp->headers.extra.num--;
if (fp->headers.extra.num > 0) {
fp->headers.extra.list[fp->headers.extra.num-1].next = NULL;
} else if (fp->headers.fixed.num > 0) {
fp->headers.fixed.list[fp->headers.fixed.num - 1].next = NULL;
}
fp->headers.auth_hdr_num = 0;
}
} else if (fp->headers.auth->token) {
// Add new header and remember where it is
if (append_header(&fp->headers.extra,
fp->headers.auth->token, 1) < 0) {
goto unlock_fail;
}
fp->headers.auth_hdr_num = fp->headers.extra.num;
}
pthread_mutex_unlock(&fp->headers.auth->lock);
return 0;
unlock_fail:
pthread_mutex_unlock(&fp->headers.auth->lock);
return -1;
}
static int get_auth_token(hFILE_libcurl *fp, const char *url) {
const char *host = NULL, *p, *q;
kstring_t name = {0, 0, NULL};
size_t host_len = 0;
khiter_t idx;
auth_token *tok = NULL;
// Nothing to do if:
// curl.auth_path has not been set
// fp was made by hfile_libcurl (e.g. auth_path is a http:// url)
// we already have an Authorization header
if (!curl.auth_path || fp->is_recursive || fp->headers.auth_hdr_num != 0)
return 0;
// Insist on having a secure connection unless the user insists harder
if (!curl.allow_unencrypted_auth_header && strncmp(url, "https://", 8) != 0)
return 0;
host = strstr(url, "://");
if (host) {
host += 3;
host_len = strcspn(host, "/");
}
p = curl.auth_path;
while ((q = strstr(p, "%h")) != NULL) {
if (q - p > INT_MAX || host_len > INT_MAX) goto error;
if (kputsn_(p, q - p, &name) < 0) goto error;
if (kputsn_(host, host_len, &name) < 0) goto error;
p = q + 2;
}
if (kputs(p, &name) < 0) goto error;
pthread_mutex_lock(&curl.auth_lock);
idx = kh_get(auth_map, curl.auth_map, name.s);
if (idx < kh_end(curl.auth_map)) {
tok = kh_value(curl.auth_map, idx);
} else {
tok = calloc(1, sizeof(*tok));
if (tok && pthread_mutex_init(&tok->lock, NULL) != 0) {
free(tok);
tok = NULL;
}
if (tok) {
int ret = -1;
tok->path = ks_release(&name);
tok->token = NULL;
tok->expiry = 1; // Force refresh
idx = kh_put(auth_map, curl.auth_map, tok->path, &ret);
if (ret < 0) {
free_auth(tok);
tok = NULL;
}
kh_value(curl.auth_map, idx) = tok;
}
}
pthread_mutex_unlock(&curl.auth_lock);
fp->headers.auth = tok;
free(name.s);
return add_auth_header(fp);
error:
free(name.s);
return -1;
}
static void process_messages(hFILE_libcurl *fp)
{
CURLMsg *msg;
int remaining;
while ((msg = curl_multi_info_read(fp->multi, &remaining)) != NULL) {
switch (msg->msg) {
case CURLMSG_DONE:
fp->finished = 1;
fp->final_result = msg->data.result;
break;
default:
break;
}
}
}
static int wait_perform(hFILE_libcurl *fp)
{
fd_set rd, wr, ex;
int maxfd, nrunning;
long timeout;
CURLMcode errm;
if (!fp->perform_again) {
FD_ZERO(&rd);
FD_ZERO(&wr);
FD_ZERO(&ex);
if (curl_multi_fdset(fp->multi, &rd, &wr, &ex, &maxfd) != CURLM_OK)
maxfd = -1, timeout = 1000;
else {
if (curl_multi_timeout(fp->multi, &timeout) != CURLM_OK)
timeout = 1000;
else if (timeout < 0) {
timeout = 10000; // as recommended by curl_multi_timeout(3)
}
}
if (maxfd < 0 && timeout > 100)
timeout = 100; // as recommended by curl_multi_fdset(3)
if (timeout > 0) {
struct timeval tval;
tval.tv_sec = (timeout / 1000);
tval.tv_usec = (timeout % 1000) * 1000;
if (select(maxfd + 1, &rd, &wr, &ex, &tval) < 0) return -1;
}
}
errm = curl_multi_perform(fp->multi, &nrunning);
fp->perform_again = 0;
if (errm == CURLM_CALL_MULTI_PERFORM) fp->perform_again = 1;
else if (errm != CURLM_OK) { errno = multi_errno(errm); return -1; }
if (nrunning < fp->nrunning) process_messages(fp);
return 0;
}
static size_t recv_callback(char *ptr, size_t size, size_t nmemb, void *fpv)
{
hFILE_libcurl *fp = (hFILE_libcurl *) fpv;
size_t n = size * nmemb;
if (n > fp->buffer.len) { fp->paused = 1; return CURL_WRITEFUNC_PAUSE; }
else if (n == 0) return 0;
memcpy(fp->buffer.ptr.rd, ptr, n);
fp->buffer.ptr.rd += n;
fp->buffer.len -= n;
return n;
}
static ssize_t libcurl_read(hFILE *fpv, void *bufferv, size_t nbytes)
{
hFILE_libcurl *fp = (hFILE_libcurl *) fpv;
char *buffer = (char *) bufferv;
off_t to_skip = -1;
ssize_t got = 0;
CURLcode err;
if (fp->delayed_seek >= 0) {
assert(fp->base.offset == fp->delayed_seek
&& fp->base.begin == fp->base.buffer
&& fp->base.end == fp->base.buffer);
if (fp->last_offset >= 0
&& fp->delayed_seek > fp->last_offset
&& fp->delayed_seek - fp->last_offset < MIN_SEEK_FORWARD) {
// If not seeking far, just read the data and throw it away. This
// is likely to be quicker than opening a new stream
to_skip = fp->delayed_seek - fp->last_offset;
} else {
if (restart_from_position(fp, fp->delayed_seek) < 0) {
return -1;
}
}
fp->delayed_seek = -1;
fp->last_offset = -1;
}
do {
fp->buffer.ptr.rd = buffer;
fp->buffer.len = nbytes;
fp->paused = 0;
err = curl_easy_pause(fp->easy, CURLPAUSE_CONT);
if (err != CURLE_OK) { errno = easy_errno(fp->easy, err); return -1; }
while (! fp->paused && ! fp->finished)
if (wait_perform(fp) < 0) return -1;
got = fp->buffer.ptr.rd - buffer;
if (to_skip >= 0) { // Skipping over a small seek
if (got < to_skip) { // Need to skip more data
to_skip -= got;
} else {
got -= to_skip;
if (got > 0) { // If enough was skipped, return the rest
memmove(buffer, buffer + to_skip, got);
to_skip = -1;
}
}
}
} while (to_skip >= 0 && ! fp->finished);
fp->buffer.ptr.rd = NULL;
fp->buffer.len = 0;
if (fp->finished && fp->final_result != CURLE_OK) {
errno = easy_errno(fp->easy, fp->final_result);
return -1;
}
return got;
}
static size_t send_callback(char *ptr, size_t size, size_t nmemb, void *fpv)
{
hFILE_libcurl *fp = (hFILE_libcurl *) fpv;
size_t n = size * nmemb;
if (fp->buffer.len == 0) {
// Send buffer is empty; normally pause, or signal EOF if we're closing
if (fp->closing) return 0;
else { fp->paused = 1; return CURL_READFUNC_PAUSE; }
}
if (n > fp->buffer.len) n = fp->buffer.len;
memcpy(ptr, fp->buffer.ptr.wr, n);
fp->buffer.ptr.wr += n;
fp->buffer.len -= n;
return n;
}
static ssize_t libcurl_write(hFILE *fpv, const void *bufferv, size_t nbytes)
{
hFILE_libcurl *fp = (hFILE_libcurl *) fpv;
const char *buffer = (const char *) bufferv;
CURLcode err;
fp->buffer.ptr.wr = buffer;
fp->buffer.len = nbytes;
fp->paused = 0;
err = curl_easy_pause(fp->easy, CURLPAUSE_CONT);
if (err != CURLE_OK) { errno = easy_errno(fp->easy, err); return -1; }
while (! fp->paused && ! fp->finished)
if (wait_perform(fp) < 0) return -1;
nbytes = fp->buffer.ptr.wr - buffer;
fp->buffer.ptr.wr = NULL;
fp->buffer.len = 0;
if (fp->finished && fp->final_result != CURLE_OK) {
errno = easy_errno(fp->easy, fp->final_result);
return -1;
}
return nbytes;
}
static off_t libcurl_seek(hFILE *fpv, off_t offset, int whence)
{
hFILE_libcurl *fp = (hFILE_libcurl *) fpv;
off_t origin, pos;
if (!fp->is_read || !fp->can_seek) {
// Cowardly refuse to seek when writing or a previous seek failed.
errno = ESPIPE;
return -1;
}
switch (whence) {
case SEEK_SET:
origin = 0;
break;
case SEEK_CUR:
errno = ENOSYS;
return -1;
case SEEK_END:
if (fp->file_size < 0) { errno = ESPIPE; return -1; }
origin = fp->file_size;
break;
default:
errno = EINVAL;
return -1;
}
// Check 0 <= origin+offset < fp->file_size carefully, avoiding overflow
if ((offset < 0)? origin + offset < 0
: (fp->file_size >= 0 && offset > fp->file_size - origin)) {
errno = EINVAL;
return -1;
}
pos = origin + offset;
if (fp->tried_seek) {
/* Seeking has worked at least once, so now we can delay doing
the actual work until the next read. This avoids lots of pointless
http or ftp reconnections if the caller does lots of seeks
without any intervening reads. */
if (fp->delayed_seek < 0) {
fp->last_offset = fp->base.offset + (fp->base.end - fp->base.buffer);
}
fp->delayed_seek = pos;
return pos;
}
if (restart_from_position(fp, pos) < 0) {
/* This value for errno may not be entirely true, but the caller may be
able to carry on with the existing handle. */
errno = ESPIPE;
return -1;
}
fp->tried_seek = 1;
return pos;
}
static int restart_from_position(hFILE_libcurl *fp, off_t pos) {
hFILE_libcurl temp_fp;
CURLcode err;
CURLMcode errm;
int update_headers = 0;
int save_errno = 0;
// TODO If we seem to be doing random access, use CURLOPT_RANGE to do
// limited reads (e.g. about a BAM block!) so seeking can reuse the
// existing connection more often.
// Get new headers from the callback (if defined). This changes the
// headers in fp before it gets duplicated, but they should be have been
// sent by now.
if (fp->headers.callback) {
if (add_callback_headers(fp) != 0)
return -1;
update_headers = 1;
}
if (fp->headers.auth_hdr_num > 0 && fp->headers.auth) {
if (add_auth_header(fp) != 0)
return -1;
update_headers = 1;
}
if (update_headers) {
struct curl_slist *list = get_header_list(fp);
if (list) {
err = curl_easy_setopt(fp->easy, CURLOPT_HTTPHEADER, list);
if (err != CURLE_OK) {
errno = easy_errno(fp->easy,err);
return -1;
}
}
}
/*
Duplicate the easy handle, and use CURLOPT_RESUME_FROM_LARGE to open
a new request to the server, reading from the location that we want
to seek to. If the new request works and returns the correct data,
the original easy handle in *fp is closed and replaced with the new
one. If not, we close the new handle and leave *fp unchanged.
*/
memcpy(&temp_fp, fp, sizeof(temp_fp));
temp_fp.buffer.len = 0;
temp_fp.buffer.ptr.rd = NULL;
temp_fp.easy = curl_easy_duphandle(fp->easy);
if (!temp_fp.easy)
goto early_error;
err = curl_easy_setopt(temp_fp.easy, CURLOPT_RESUME_FROM_LARGE,(curl_off_t)pos);
err |= curl_easy_setopt(temp_fp.easy, CURLOPT_PRIVATE, &temp_fp);
err |= curl_easy_setopt(temp_fp.easy, CURLOPT_WRITEDATA, &temp_fp);
if (err != CURLE_OK) {
save_errno = easy_errno(temp_fp.easy, err);
goto error;
}
temp_fp.buffer.len = 0; // Ensures we only read the response headers
temp_fp.paused = temp_fp.finished = 0;
// fp->multi and temp_fp.multi are the same.
errm = curl_multi_add_handle(fp->multi, temp_fp.easy);
if (errm != CURLM_OK) {
save_errno = multi_errno(errm);
goto error;
}
temp_fp.nrunning = ++fp->nrunning;
err = curl_easy_pause(temp_fp.easy, CURLPAUSE_CONT);
if (err != CURLE_OK) {
save_errno = easy_errno(temp_fp.easy, err);
goto error_remove;
}
while (! temp_fp.paused && ! temp_fp.finished)
if (wait_perform(&temp_fp) < 0) {
save_errno = errno;
goto error_remove;
}
if (temp_fp.finished && temp_fp.final_result != CURLE_OK) {
save_errno = easy_errno(temp_fp.easy, temp_fp.final_result);
goto error_remove;
}
// We've got a good response, close the original connection and
// replace it with the new one.
errm = curl_multi_remove_handle(fp->multi, fp->easy);
if (errm != CURLM_OK) {
// Clean up as much as possible
curl_easy_reset(temp_fp.easy);
if (curl_multi_remove_handle(fp->multi, temp_fp.easy) == CURLM_OK) {
fp->nrunning--;
curl_easy_cleanup(temp_fp.easy);
}
save_errno = multi_errno(errm);
goto early_error;
}
fp->nrunning--;