123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617 |
- /***************************************************************************
- * _ _ ____ _
- * Project ___| | | | _ \| |
- * / __| | | | |_) | |
- * | (__| |_| | _ <| |___
- * \___|\___/|_| \_\_____|
- *
- * Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
- *
- * This software is licensed as described in the file COPYING, which
- * you should have received as part of this distribution. The terms
- * are also available at https://curl.se/docs/copyright.html.
- *
- * You may opt to use, copy, modify, merge, publish, distribute and/or sell
- * copies of the Software, and permit persons to whom the Software is
- * furnished to do so, under the terms of the COPYING file.
- *
- * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
- * KIND, either express or implied.
- *
- * SPDX-License-Identifier: curl
- *
- ***************************************************************************/
- /* <DESC>
- * HTTP upload tests and tweaks
- * </DESC>
- */
- /* curl stuff */
- #include <curl/curl.h>
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #ifndef _MSC_VER
- /* somewhat Unix-specific */
- #include <unistd.h> /* getopt() */
- #endif
- #ifndef CURLPIPE_MULTIPLEX
- #error "too old libcurl"
- #endif
- #ifndef _MSC_VER
- static int verbose = 1;
- static void log_line_start(FILE *log, const char *idsbuf, curl_infotype type)
- {
- /*
- * This is the trace look that is similar to what libcurl makes on its
- * own.
- */
- static const char * const s_infotype[] = {
- "* ", "< ", "> ", "{ ", "} ", "{ ", "} "
- };
- if(idsbuf && *idsbuf)
- fprintf(log, "%s%s", idsbuf, s_infotype[type]);
- else
- fputs(s_infotype[type], log);
- }
- #define TRC_IDS_FORMAT_IDS_1 "[%" CURL_FORMAT_CURL_OFF_T "-x] "
- #define TRC_IDS_FORMAT_IDS_2 "[%" CURL_FORMAT_CURL_OFF_T "-%" \
- CURL_FORMAT_CURL_OFF_T "] "
- /*
- ** callback for CURLOPT_DEBUGFUNCTION
- */
- static int debug_cb(CURL *handle, curl_infotype type,
- char *data, size_t size,
- void *userdata)
- {
- FILE *output = stderr;
- static int newl = 0;
- static int traced_data = 0;
- char idsbuf[60];
- curl_off_t xfer_id, conn_id;
- (void)handle; /* not used */
- (void)userdata;
- if(!curl_easy_getinfo(handle, CURLINFO_XFER_ID, &xfer_id) && xfer_id >= 0) {
- if(!curl_easy_getinfo(handle, CURLINFO_CONN_ID, &conn_id) &&
- conn_id >= 0) {
- curl_msnprintf(idsbuf, sizeof(idsbuf), TRC_IDS_FORMAT_IDS_2, xfer_id,
- conn_id);
- }
- else {
- curl_msnprintf(idsbuf, sizeof(idsbuf), TRC_IDS_FORMAT_IDS_1, xfer_id);
- }
- }
- else
- idsbuf[0] = 0;
- switch(type) {
- case CURLINFO_HEADER_OUT:
- if(size > 0) {
- size_t st = 0;
- size_t i;
- for(i = 0; i < size - 1; i++) {
- if(data[i] == '\n') { /* LF */
- if(!newl) {
- log_line_start(output, idsbuf, type);
- }
- (void)fwrite(data + st, i - st + 1, 1, output);
- st = i + 1;
- newl = 0;
- }
- }
- if(!newl)
- log_line_start(output, idsbuf, type);
- (void)fwrite(data + st, i - st + 1, 1, output);
- }
- newl = (size && (data[size - 1] != '\n')) ? 1 : 0;
- traced_data = 0;
- break;
- case CURLINFO_TEXT:
- case CURLINFO_HEADER_IN:
- if(!newl)
- log_line_start(output, idsbuf, type);
- (void)fwrite(data, size, 1, output);
- newl = (size && (data[size - 1] != '\n')) ? 1 : 0;
- traced_data = 0;
- break;
- case CURLINFO_DATA_OUT:
- case CURLINFO_DATA_IN:
- case CURLINFO_SSL_DATA_IN:
- case CURLINFO_SSL_DATA_OUT:
- if(!traced_data) {
- if(!newl)
- log_line_start(output, idsbuf, type);
- fprintf(output, "[%ld bytes data]\n", (long)size);
- newl = 0;
- traced_data = 1;
- }
- break;
- default: /* nada */
- newl = 0;
- traced_data = 1;
- break;
- }
- return 0;
- }
- struct transfer {
- int idx;
- CURL *easy;
- const char *method;
- char filename[128];
- FILE *out;
- curl_off_t send_total;
- curl_off_t recv_size;
- curl_off_t send_size;
- curl_off_t fail_at;
- curl_off_t pause_at;
- curl_off_t abort_at;
- int started;
- int paused;
- int resumed;
- int done;
- };
- static size_t transfer_count = 1;
- static struct transfer *transfers;
- static int forbid_reuse = 0;
- static struct transfer *get_transfer_for_easy(CURL *easy)
- {
- size_t i;
- for(i = 0; i < transfer_count; ++i) {
- if(easy == transfers[i].easy)
- return &transfers[i];
- }
- return NULL;
- }
- static size_t my_write_cb(char *buf, size_t nitems, size_t buflen,
- void *userdata)
- {
- struct transfer *t = userdata;
- size_t blen = (nitems * buflen);
- size_t nwritten;
- fprintf(stderr, "[t-%d] RECV %ld bytes, total=%ld, pause_at=%ld\n",
- t->idx, (long)blen, (long)t->recv_size, (long)t->pause_at);
- if(!t->out) {
- curl_msnprintf(t->filename, sizeof(t->filename)-1, "download_%u.data",
- t->idx);
- t->out = fopen(t->filename, "wb");
- if(!t->out)
- return 0;
- }
- nwritten = fwrite(buf, nitems, buflen, t->out);
- if(nwritten < blen) {
- fprintf(stderr, "[t-%d] write failure\n", t->idx);
- return 0;
- }
- t->recv_size += (curl_off_t)nwritten;
- return (size_t)nwritten;
- }
- static size_t my_read_cb(char *buf, size_t nitems, size_t buflen,
- void *userdata)
- {
- struct transfer *t = userdata;
- size_t blen = (nitems * buflen);
- size_t nread;
- if(t->send_total <= t->send_size)
- nread = 0;
- else if((t->send_total - t->send_size) < (curl_off_t)blen)
- nread = (size_t)(t->send_total - t->send_size);
- else
- nread = blen;
- fprintf(stderr, "[t-%d] SEND %ld bytes, total=%ld, pause_at=%ld\n",
- t->idx, (long)nread, (long)t->send_total, (long)t->pause_at);
- if(!t->resumed &&
- t->send_size < t->pause_at &&
- ((t->send_size + (curl_off_t)blen) >= t->pause_at)) {
- fprintf(stderr, "[t-%d] PAUSE\n", t->idx);
- t->paused = 1;
- return CURL_READFUNC_PAUSE;
- }
- memset(buf, 'x', nread);
- t->send_size += (curl_off_t)nread;
- if(t->fail_at > 0 && t->send_size >= t->fail_at) {
- fprintf(stderr, "[t-%d] ABORT by read callback at %ld bytes\n",
- t->idx, (long)t->send_size);
- return CURL_READFUNC_ABORT;
- }
- return (size_t)nread;
- }
- static int my_progress_cb(void *userdata,
- curl_off_t dltotal, curl_off_t dlnow,
- curl_off_t ultotal, curl_off_t ulnow)
- {
- struct transfer *t = userdata;
- (void)ultotal;
- (void)dlnow;
- (void)dltotal;
- if(t->abort_at > 0 && ulnow >= t->abort_at) {
- fprintf(stderr, "[t-%d] ABORT by progress_cb at %ld bytes sent\n",
- t->idx, (long)ulnow);
- return 1;
- }
- return 0;
- }
- static int setup(CURL *hnd, const char *url, struct transfer *t,
- int http_version, struct curl_slist *host,
- CURLSH *share, int use_earlydata, int announce_length)
- {
- curl_easy_setopt(hnd, CURLOPT_SHARE, share);
- curl_easy_setopt(hnd, CURLOPT_URL, url);
- curl_easy_setopt(hnd, CURLOPT_HTTP_VERSION, http_version);
- curl_easy_setopt(hnd, CURLOPT_SSL_VERIFYPEER, 0L);
- curl_easy_setopt(hnd, CURLOPT_SSL_VERIFYHOST, 0L);
- curl_easy_setopt(hnd, CURLOPT_BUFFERSIZE, (long)(128 * 1024));
- curl_easy_setopt(hnd, CURLOPT_WRITEFUNCTION, my_write_cb);
- curl_easy_setopt(hnd, CURLOPT_WRITEDATA, t);
- if(use_earlydata)
- curl_easy_setopt(hnd, CURLOPT_SSL_OPTIONS, (long)CURLSSLOPT_EARLYDATA);
- if(!t->method || !strcmp("PUT", t->method))
- curl_easy_setopt(hnd, CURLOPT_UPLOAD, 1L);
- else if(!strcmp("POST", t->method))
- curl_easy_setopt(hnd, CURLOPT_POST, 1L);
- else {
- fprintf(stderr, "unsupported method '%s'\n", t->method);
- return 1;
- }
- curl_easy_setopt(hnd, CURLOPT_READFUNCTION, my_read_cb);
- curl_easy_setopt(hnd, CURLOPT_READDATA, t);
- if(announce_length)
- curl_easy_setopt(hnd, CURLOPT_INFILESIZE_LARGE, t->send_total);
- curl_easy_setopt(hnd, CURLOPT_NOPROGRESS, 0L);
- curl_easy_setopt(hnd, CURLOPT_XFERINFOFUNCTION, my_progress_cb);
- curl_easy_setopt(hnd, CURLOPT_XFERINFODATA, t);
- if(forbid_reuse)
- curl_easy_setopt(hnd, CURLOPT_FORBID_REUSE, 1L);
- if(host)
- curl_easy_setopt(hnd, CURLOPT_RESOLVE, host);
- /* please be verbose */
- if(verbose) {
- curl_easy_setopt(hnd, CURLOPT_VERBOSE, 1L);
- curl_easy_setopt(hnd, CURLOPT_DEBUGFUNCTION, debug_cb);
- }
- #if (CURLPIPE_MULTIPLEX > 0)
- /* wait for pipe connection to confirm */
- curl_easy_setopt(hnd, CURLOPT_PIPEWAIT, 1L);
- #endif
- return 0; /* all is good */
- }
- static void usage(const char *msg)
- {
- if(msg)
- fprintf(stderr, "%s\n", msg);
- fprintf(stderr,
- "usage: [options] url\n"
- " upload to a url with following options:\n"
- " -a abort paused transfer\n"
- " -e use TLS earlydata\n"
- " -m number max parallel uploads\n"
- " -n number total uploads\n"
- " -A number abort transfer after `number` request body bytes\n"
- " -F number fail reading request body after `number` of bytes\n"
- " -P number pause transfer after `number` request body bytes\n"
- " -r <host>:<port>:<addr> resolve information\n"
- " -S number size to upload\n"
- " -V http_version (http/1.1, h2, h3) http version to use\n"
- );
- }
- #endif /* !_MSC_VER */
- /*
- * Download a file over HTTP/2, take care of server push.
- */
- int main(int argc, char *argv[])
- {
- #ifndef _MSC_VER
- CURLM *multi_handle;
- struct CURLMsg *m;
- CURLSH *share;
- const char *url;
- const char *method = "PUT";
- size_t i, n, max_parallel = 1;
- size_t active_transfers;
- size_t pause_offset = 0;
- size_t abort_offset = 0;
- size_t fail_offset = 0;
- size_t send_total = (128 * 1024);
- int abort_paused = 0;
- int reuse_easy = 0;
- int use_earlydata = 0;
- int announce_length = 0;
- struct transfer *t;
- int http_version = CURL_HTTP_VERSION_2_0;
- struct curl_slist *host = NULL;
- const char *resolve = NULL;
- int ch;
- while((ch = getopt(argc, argv, "aefhlm:n:A:F:M:P:r:RS:V:")) != -1) {
- switch(ch) {
- case 'h':
- usage(NULL);
- return 2;
- case 'a':
- abort_paused = 1;
- break;
- case 'e':
- use_earlydata = 1;
- break;
- case 'f':
- forbid_reuse = 1;
- break;
- case 'l':
- announce_length = 1;
- break;
- case 'm':
- max_parallel = (size_t)strtol(optarg, NULL, 10);
- break;
- case 'n':
- transfer_count = (size_t)strtol(optarg, NULL, 10);
- break;
- case 'A':
- abort_offset = (size_t)strtol(optarg, NULL, 10);
- break;
- case 'F':
- fail_offset = (size_t)strtol(optarg, NULL, 10);
- break;
- case 'M':
- method = optarg;
- break;
- case 'P':
- pause_offset = (size_t)strtol(optarg, NULL, 10);
- break;
- case 'r':
- resolve = optarg;
- break;
- case 'R':
- reuse_easy = 1;
- break;
- case 'S':
- send_total = (size_t)strtol(optarg, NULL, 10);
- break;
- case 'V': {
- if(!strcmp("http/1.1", optarg))
- http_version = CURL_HTTP_VERSION_1_1;
- else if(!strcmp("h2", optarg))
- http_version = CURL_HTTP_VERSION_2_0;
- else if(!strcmp("h3", optarg))
- http_version = CURL_HTTP_VERSION_3ONLY;
- else {
- usage("invalid http version");
- return 1;
- }
- break;
- }
- default:
- usage("invalid option");
- return 1;
- }
- }
- argc -= optind;
- argv += optind;
- if(max_parallel > 1 && reuse_easy) {
- usage("cannot mix -R and -P");
- return 2;
- }
- curl_global_init(CURL_GLOBAL_DEFAULT);
- curl_global_trace("ids,time,http/2,http/3");
- if(argc != 1) {
- usage("not enough arguments");
- return 2;
- }
- url = argv[0];
- if(resolve)
- host = curl_slist_append(NULL, resolve);
- share = curl_share_init();
- if(!share) {
- fprintf(stderr, "error allocating share\n");
- return 1;
- }
- curl_share_setopt(share, CURLSHOPT_SHARE, CURL_LOCK_DATA_COOKIE);
- curl_share_setopt(share, CURLSHOPT_SHARE, CURL_LOCK_DATA_DNS);
- curl_share_setopt(share, CURLSHOPT_SHARE, CURL_LOCK_DATA_SSL_SESSION);
- curl_share_setopt(share, CURLSHOPT_SHARE, CURL_LOCK_DATA_CONNECT);
- curl_share_setopt(share, CURLSHOPT_SHARE, CURL_LOCK_DATA_PSL);
- curl_share_setopt(share, CURLSHOPT_SHARE, CURL_LOCK_DATA_HSTS);
- transfers = calloc(transfer_count, sizeof(*transfers));
- if(!transfers) {
- fprintf(stderr, "error allocating transfer structs\n");
- return 1;
- }
- active_transfers = 0;
- for(i = 0; i < transfer_count; ++i) {
- t = &transfers[i];
- t->idx = (int)i;
- t->method = method;
- t->send_total = (curl_off_t)send_total;
- t->abort_at = (curl_off_t)abort_offset;
- t->fail_at = (curl_off_t)fail_offset;
- t->pause_at = (curl_off_t)pause_offset;
- }
- if(reuse_easy) {
- CURL *easy = curl_easy_init();
- CURLcode rc = CURLE_OK;
- if(!easy) {
- fprintf(stderr, "failed to init easy handle\n");
- return 1;
- }
- for(i = 0; i < transfer_count; ++i) {
- t = &transfers[i];
- t->easy = easy;
- if(setup(t->easy, url, t, http_version, host, share, use_earlydata,
- announce_length)) {
- fprintf(stderr, "[t-%d] FAILED setup\n", (int)i);
- return 1;
- }
- fprintf(stderr, "[t-%d] STARTING\n", t->idx);
- rc = curl_easy_perform(easy);
- fprintf(stderr, "[t-%d] DONE -> %d\n", t->idx, rc);
- t->easy = NULL;
- curl_easy_reset(easy);
- }
- curl_easy_cleanup(easy);
- }
- else {
- multi_handle = curl_multi_init();
- curl_multi_setopt(multi_handle, CURLMOPT_PIPELINING, CURLPIPE_MULTIPLEX);
- n = (max_parallel < transfer_count) ? max_parallel : transfer_count;
- for(i = 0; i < n; ++i) {
- t = &transfers[i];
- t->easy = curl_easy_init();
- if(!t->easy || setup(t->easy, url, t, http_version, host, share,
- use_earlydata, announce_length)) {
- fprintf(stderr, "[t-%d] FAILED setup\n", (int)i);
- return 1;
- }
- curl_multi_add_handle(multi_handle, t->easy);
- t->started = 1;
- ++active_transfers;
- fprintf(stderr, "[t-%d] STARTED\n", t->idx);
- }
- do {
- int still_running; /* keep number of running handles */
- CURLMcode mc = curl_multi_perform(multi_handle, &still_running);
- if(still_running) {
- /* wait for activity, timeout or "nothing" */
- mc = curl_multi_poll(multi_handle, NULL, 0, 1000, NULL);
- }
- if(mc)
- break;
- do {
- int msgq = 0;
- m = curl_multi_info_read(multi_handle, &msgq);
- if(m && (m->msg == CURLMSG_DONE)) {
- CURL *e = m->easy_handle;
- --active_transfers;
- curl_multi_remove_handle(multi_handle, e);
- t = get_transfer_for_easy(e);
- if(t) {
- t->done = 1;
- fprintf(stderr, "[t-%d] FINISHED\n", t->idx);
- if(use_earlydata) {
- curl_off_t sent;
- curl_easy_getinfo(e, CURLINFO_EARLYDATA_SENT_T, &sent);
- fprintf(stderr, "[t-%d] EarlyData: %ld\n", t->idx, (long)sent);
- }
- }
- else {
- curl_easy_cleanup(e);
- fprintf(stderr, "unknown FINISHED???\n");
- }
- }
- /* nothing happening, maintenance */
- if(abort_paused) {
- /* abort paused transfers */
- for(i = 0; i < transfer_count; ++i) {
- t = &transfers[i];
- if(!t->done && t->paused && t->easy) {
- curl_multi_remove_handle(multi_handle, t->easy);
- t->done = 1;
- active_transfers--;
- fprintf(stderr, "[t-%d] ABORTED\n", t->idx);
- }
- }
- }
- else {
- /* resume one paused transfer */
- for(i = 0; i < transfer_count; ++i) {
- t = &transfers[i];
- if(!t->done && t->paused) {
- t->resumed = 1;
- t->paused = 0;
- curl_easy_pause(t->easy, CURLPAUSE_CONT);
- fprintf(stderr, "[t-%d] RESUMED\n", t->idx);
- break;
- }
- }
- }
- while(active_transfers < max_parallel) {
- for(i = 0; i < transfer_count; ++i) {
- t = &transfers[i];
- if(!t->started) {
- t->easy = curl_easy_init();
- if(!t->easy || setup(t->easy, url, t, http_version, host,
- share, use_earlydata, announce_length)) {
- fprintf(stderr, "[t-%d] FAILED setup\n", (int)i);
- return 1;
- }
- curl_multi_add_handle(multi_handle, t->easy);
- t->started = 1;
- ++active_transfers;
- fprintf(stderr, "[t-%d] STARTED\n", t->idx);
- break;
- }
- }
- /* all started */
- if(i == transfer_count)
- break;
- }
- } while(m);
- } while(active_transfers); /* as long as we have transfers going */
- curl_multi_cleanup(multi_handle);
- }
- for(i = 0; i < transfer_count; ++i) {
- t = &transfers[i];
- if(t->out) {
- fclose(t->out);
- t->out = NULL;
- }
- if(t->easy) {
- curl_easy_cleanup(t->easy);
- t->easy = NULL;
- }
- }
- free(transfers);
- curl_share_cleanup(share);
- return 0;
- #else
- (void)argc;
- (void)argv;
- fprintf(stderr, "Not supported with this compiler.\n");
- return 1;
- #endif /* !_MSC_VER */
- }
|