9683f3d91a58824aa84422b1c168a436de6e5f18
[platform/upstream/curl.git] / src / tool_operate.c
1 /***************************************************************************
2  *                                  _   _ ____  _
3  *  Project                     ___| | | |  _ \| |
4  *                             / __| | | | |_) | |
5  *                            | (__| |_| |  _ <| |___
6  *                             \___|\___/|_| \_\_____|
7  *
8  * Copyright (C) 1998 - 2014, Daniel Stenberg, <daniel@haxx.se>, et al.
9  *
10  * This software is licensed as described in the file COPYING, which
11  * you should have received as part of this distribution. The terms
12  * are also available at http://curl.haxx.se/docs/copyright.html.
13  *
14  * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15  * copies of the Software, and permit persons to whom the Software is
16  * furnished to do so, under the terms of the COPYING file.
17  *
18  * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19  * KIND, either express or implied.
20  *
21  ***************************************************************************/
22 #include "tool_setup.h"
23
24 #ifdef HAVE_FCNTL_H
25 #  include <fcntl.h>
26 #endif
27
28 #ifdef HAVE_UTIME_H
29 #  include <utime.h>
30 #elif defined(HAVE_SYS_UTIME_H)
31 #  include <sys/utime.h>
32 #endif
33
34 #ifdef HAVE_LOCALE_H
35 #  include <locale.h>
36 #endif
37
38 #ifdef HAVE_NETINET_TCP_H
39 #  include <netinet/tcp.h>
40 #endif
41
42 #ifdef __VMS
43 #  include <fabdef.h>
44 #endif
45
46 #include "rawstr.h"
47
48 #define ENABLE_CURLX_PRINTF
49 /* use our own printf() functions */
50 #include "curlx.h"
51
52 #include "tool_binmode.h"
53 #include "tool_cfgable.h"
54 #include "tool_cb_dbg.h"
55 #include "tool_cb_hdr.h"
56 #include "tool_cb_prg.h"
57 #include "tool_cb_rea.h"
58 #include "tool_cb_see.h"
59 #include "tool_cb_wrt.h"
60 #include "tool_dirhie.h"
61 #include "tool_doswin.h"
62 #include "tool_easysrc.h"
63 #include "tool_getparam.h"
64 #include "tool_helpers.h"
65 #include "tool_homedir.h"
66 #include "tool_libinfo.h"
67 #include "tool_main.h"
68 #include "tool_metalink.h"
69 #include "tool_msgs.h"
70 #include "tool_operate.h"
71 #include "tool_operhlp.h"
72 #include "tool_paramhlp.h"
73 #include "tool_parsecfg.h"
74 #include "tool_setopt.h"
75 #include "tool_sleep.h"
76 #include "tool_urlglob.h"
77 #include "tool_util.h"
78 #include "tool_writeenv.h"
79 #include "tool_writeout.h"
80 #include "tool_xattr.h"
81 #include "tool_vms.h"
82 #include "tool_help.h"
83 #include "tool_hugehelp.h"
84
85 #include "memdebug.h" /* keep this as LAST include */
86
87 #ifdef CURLDEBUG
88 /* libcurl's debug builds provide an extra function */
89 CURLcode curl_easy_perform_ev(CURL *easy);
90 #endif
91
92 #define CURLseparator  "--_curl_--"
93
94 #ifndef O_BINARY
95 /* since O_BINARY as used in bitmasks, setting it to zero makes it usable in
96    source code but yet it doesn't ruin anything */
97 #  define O_BINARY 0
98 #endif
99
100 #define CURL_CA_CERT_ERRORMSG1                                              \
101   "More details here: http://curl.haxx.se/docs/sslcerts.html\n\n"           \
102   "curl performs SSL certificate verification by default, "                 \
103   "using a \"bundle\"\n"                                                    \
104   " of Certificate Authority (CA) public keys (CA certs). If the default\n" \
105   " bundle file isn't adequate, you can specify an alternate file\n"        \
106   " using the --cacert option.\n"
107
108 #define CURL_CA_CERT_ERRORMSG2                                              \
109   "If this HTTPS server uses a certificate signed by a CA represented in\n" \
110   " the bundle, the certificate verification probably failed due to a\n"    \
111   " problem with the certificate (it might be expired, or the name might\n" \
112   " not match the domain name in the URL).\n"                               \
113   "If you'd like to turn off curl's verification of the certificate, use\n" \
114   " the -k (or --insecure) option.\n"
115
116 static bool is_fatal_error(CURLcode code)
117 {
118   switch(code) {
119   /* TODO: Should CURLE_SSL_CACERT be included as critical error ? */
120   case CURLE_FAILED_INIT:
121   case CURLE_OUT_OF_MEMORY:
122   case CURLE_UNKNOWN_OPTION:
123   case CURLE_FUNCTION_NOT_FOUND:
124   case CURLE_BAD_FUNCTION_ARGUMENT:
125     /* critical error */
126     return TRUE;
127   default:
128     break;
129   }
130
131   /* no error or not critical */
132   return FALSE;
133 }
134
135 #ifdef __VMS
136 /*
137  * get_vms_file_size does what it takes to get the real size of the file
138  *
139  * For fixed files, find out the size of the EOF block and adjust.
140  *
141  * For all others, have to read the entire file in, discarding the contents.
142  * Most posted text files will be small, and binary files like zlib archives
143  * and CD/DVD images should be either a STREAM_LF format or a fixed format.
144  *
145  */
146 static curl_off_t vms_realfilesize(const char * name,
147                                    const struct_stat * stat_buf)
148 {
149   char buffer[8192];
150   curl_off_t count;
151   int ret_stat;
152   FILE * file;
153
154   file = fopen(name, "r");
155   if(file == NULL) {
156     return 0;
157   }
158   count = 0;
159   ret_stat = 1;
160   while(ret_stat > 0) {
161     ret_stat = fread(buffer, 1, sizeof(buffer), file);
162     if(ret_stat != 0)
163       count += ret_stat;
164   }
165   fclose(file);
166
167   return count;
168 }
169
170 /*
171  *
172  *  VmsSpecialSize checks to see if the stat st_size can be trusted and
173  *  if not to call a routine to get the correct size.
174  *
175  */
176 static curl_off_t VmsSpecialSize(const char * name,
177                                  const struct_stat * stat_buf)
178 {
179   switch(stat_buf->st_fab_rfm) {
180   case FAB$C_VAR:
181   case FAB$C_VFC:
182     return vms_realfilesize(name, stat_buf);
183     break;
184   default:
185     return stat_buf->st_size;
186   }
187 }
188 #endif /* __VMS */
189
190 static CURLcode operate_do(struct GlobalConfig *global,
191                            struct OperationConfig *config)
192 {
193   char errorbuffer[CURL_ERROR_SIZE];
194   struct ProgressData progressbar;
195   struct getout *urlnode;
196
197   struct HdrCbData hdrcbdata;
198   struct OutStruct heads;
199
200   metalinkfile *mlfile_last = NULL;
201
202   CURL *curl = config->easy;
203   char *httpgetfields = NULL;
204
205   int res = 0;
206   unsigned long li;
207
208   bool orig_noprogress;
209   bool orig_isatty;
210
211   errorbuffer[0] = '\0';
212
213   /* default headers output stream is stdout */
214   memset(&hdrcbdata, 0, sizeof(struct HdrCbData));
215   memset(&heads, 0, sizeof(struct OutStruct));
216   heads.stream = stdout;
217   heads.config = config;
218
219   /*
220   ** Beyond this point no return'ing from this function allowed.
221   ** Jump to label 'quit_curl' in order to abandon this function
222   ** from outside of nested loops further down below.
223   */
224
225   /* Check we have a url */
226   if(!config->url_list || !config->url_list->url) {
227     helpf(global->errors, "no URL specified!\n");
228     res = CURLE_FAILED_INIT;
229     goto quit_curl;
230   }
231
232   /* On WIN32 we can't set the path to curl-ca-bundle.crt
233    * at compile time. So we look here for the file in two ways:
234    * 1: look at the environment variable CURL_CA_BUNDLE for a path
235    * 2: if #1 isn't found, use the windows API function SearchPath()
236    *    to find it along the app's path (includes app's dir and CWD)
237    *
238    * We support the environment variable thing for non-Windows platforms
239    * too. Just for the sake of it.
240    */
241   if(!config->cacert &&
242      !config->capath &&
243      !config->insecure_ok) {
244     char *env;
245     env = curlx_getenv("CURL_CA_BUNDLE");
246     if(env) {
247       config->cacert = strdup(env);
248       if(!config->cacert) {
249         curl_free(env);
250         helpf(global->errors, "out of memory\n");
251         res = CURLE_OUT_OF_MEMORY;
252         goto quit_curl;
253       }
254     }
255     else {
256       env = curlx_getenv("SSL_CERT_DIR");
257       if(env) {
258         config->capath = strdup(env);
259         if(!config->capath) {
260           curl_free(env);
261           helpf(global->errors, "out of memory\n");
262           res = CURLE_OUT_OF_MEMORY;
263           goto quit_curl;
264         }
265       }
266       else {
267         env = curlx_getenv("SSL_CERT_FILE");
268         if(env) {
269           config->cacert = strdup(env);
270           if(!config->cacert) {
271             curl_free(env);
272             helpf(global->errors, "out of memory\n");
273             res = CURLE_OUT_OF_MEMORY;
274             goto quit_curl;
275           }
276         }
277       }
278     }
279
280     if(env)
281       curl_free(env);
282 #ifdef WIN32
283     else {
284       res = FindWin32CACert(config, "curl-ca-bundle.crt");
285       if(res)
286         goto quit_curl;
287     }
288 #endif
289   }
290
291   if(config->postfields) {
292     if(config->use_httpget) {
293       /* Use the postfields data for a http get */
294       httpgetfields = strdup(config->postfields);
295       Curl_safefree(config->postfields);
296       if(!httpgetfields) {
297         helpf(global->errors, "out of memory\n");
298         res = CURLE_OUT_OF_MEMORY;
299         goto quit_curl;
300       }
301       if(SetHTTPrequest(config,
302                         (config->no_body?HTTPREQ_HEAD:HTTPREQ_GET),
303                         &config->httpreq)) {
304         res = CURLE_FAILED_INIT;
305         goto quit_curl;
306       }
307     }
308     else {
309       if(SetHTTPrequest(config, HTTPREQ_SIMPLEPOST, &config->httpreq)) {
310         res = CURLE_FAILED_INIT;
311         goto quit_curl;
312       }
313     }
314   }
315
316 #ifndef CURL_DISABLE_LIBCURL_OPTION
317   res = easysrc_init();
318   if(res) {
319     helpf(global->errors, "out of memory\n");
320     goto quit_curl;
321   }
322 #endif
323
324   /* Single header file for all URLs */
325   if(config->headerfile) {
326     /* open file for output: */
327     if(!curlx_strequal(config->headerfile, "-")) {
328       FILE *newfile = fopen(config->headerfile, "wb");
329       if(!newfile) {
330         warnf(config, "Failed to open %s\n", config->headerfile);
331         res = CURLE_WRITE_ERROR;
332         goto quit_curl;
333       }
334       else {
335         heads.filename = config->headerfile;
336         heads.s_isreg = TRUE;
337         heads.fopened = TRUE;
338         heads.stream = newfile;
339       }
340     }
341     else {
342       /* always use binary mode for protocol header output */
343       set_binmode(heads.stream);
344     }
345   }
346
347   /* save the values of noprogress and isatty to restore them later on */
348   orig_noprogress = config->noprogress;
349   orig_isatty = config->isatty;
350
351   /*
352   ** Nested loops start here.
353   */
354
355   /* loop through the list of given URLs */
356
357   for(urlnode = config->url_list; urlnode; urlnode = urlnode->next) {
358
359     unsigned long up; /* upload file counter within a single upload glob */
360     char *infiles; /* might be a glob pattern */
361     char *outfiles;
362     unsigned long infilenum;
363     URLGlob *inglob;
364
365     int metalink = 0; /* nonzero for metalink download. */
366     metalinkfile *mlfile;
367     metalink_resource *mlres;
368
369     outfiles = NULL;
370     infilenum = 1;
371     inglob = NULL;
372
373     if(urlnode->flags & GETOUT_METALINK) {
374       metalink = 1;
375       if(mlfile_last == NULL) {
376         mlfile_last = config->metalinkfile_list;
377       }
378       mlfile = mlfile_last;
379       mlfile_last = mlfile_last->next;
380       mlres = mlfile->resource;
381     }
382     else {
383       mlfile = NULL;
384       mlres = NULL;
385     }
386
387     /* urlnode->url is the full URL (it might be NULL) */
388
389     if(!urlnode->url) {
390       /* This node has no URL. Free node data without destroying the
391          node itself nor modifying next pointer and continue to next */
392       Curl_safefree(urlnode->outfile);
393       Curl_safefree(urlnode->infile);
394       urlnode->flags = 0;
395       continue; /* next URL please */
396     }
397
398     /* save outfile pattern before expansion */
399     if(urlnode->outfile) {
400       outfiles = strdup(urlnode->outfile);
401       if(!outfiles) {
402         helpf(global->errors, "out of memory\n");
403         res = CURLE_OUT_OF_MEMORY;
404         break;
405       }
406     }
407
408     infiles = urlnode->infile;
409
410     if(!config->globoff && infiles) {
411       /* Unless explicitly shut off */
412       res = glob_url(&inglob, infiles, &infilenum,
413                      global->showerror?global->errors:NULL);
414       if(res) {
415         Curl_safefree(outfiles);
416         break;
417       }
418     }
419
420     /* Here's the loop for uploading multiple files within the same
421        single globbed string. If no upload, we enter the loop once anyway. */
422     for(up = 0 ; up < infilenum; up++) {
423
424       char *uploadfile; /* a single file, never a glob */
425       int separator;
426       URLGlob *urls;
427       unsigned long urlnum;
428
429       uploadfile = NULL;
430       urls = NULL;
431       urlnum = 0;
432
433       if(!up && !infiles)
434         Curl_nop_stmt;
435       else {
436         if(inglob) {
437           res = glob_next_url(&uploadfile, inglob);
438           if(res == CURLE_OUT_OF_MEMORY)
439             helpf(global->errors, "out of memory\n");
440         }
441         else if(!up) {
442           uploadfile = strdup(infiles);
443           if(!uploadfile) {
444             helpf(global->errors, "out of memory\n");
445             res = CURLE_OUT_OF_MEMORY;
446           }
447         }
448         else
449           uploadfile = NULL;
450         if(!uploadfile)
451           break;
452       }
453
454       if(metalink) {
455         /* For Metalink download, we don't use glob. Instead we use
456            the number of resources as urlnum. */
457         urlnum = count_next_metalink_resource(mlfile);
458       }
459       else
460       if(!config->globoff) {
461         /* Unless explicitly shut off, we expand '{...}' and '[...]'
462            expressions and return total number of URLs in pattern set */
463         res = glob_url(&urls, urlnode->url, &urlnum,
464                        global->showerror?global->errors:NULL);
465         if(res) {
466           Curl_safefree(uploadfile);
467           break;
468         }
469       }
470       else
471         urlnum = 1; /* without globbing, this is a single URL */
472
473       /* if multiple files extracted to stdout, insert separators! */
474       separator= ((!outfiles || curlx_strequal(outfiles, "-")) && urlnum > 1);
475
476       /* Here's looping around each globbed URL */
477       for(li = 0 ; li < urlnum; li++) {
478
479         int infd;
480         bool infdopen;
481         char *outfile;
482         struct OutStruct outs;
483         struct InStruct input;
484         struct timeval retrystart;
485         curl_off_t uploadfilesize;
486         long retry_numretries;
487         long retry_sleep_default;
488         long retry_sleep;
489         char *this_url = NULL;
490         int metalink_next_res = 0;
491
492         outfile = NULL;
493         infdopen = FALSE;
494         infd = STDIN_FILENO;
495         uploadfilesize = -1; /* -1 means unknown */
496
497         /* default output stream is stdout */
498         memset(&outs, 0, sizeof(struct OutStruct));
499         outs.stream = stdout;
500         outs.config = config;
501
502         if(metalink) {
503           /* For Metalink download, use name in Metalink file as
504              filename. */
505           outfile = strdup(mlfile->filename);
506           if(!outfile) {
507             res = CURLE_OUT_OF_MEMORY;
508             goto show_error;
509           }
510           this_url = strdup(mlres->url);
511           if(!this_url) {
512             res = CURLE_OUT_OF_MEMORY;
513             goto show_error;
514           }
515         }
516         else {
517           if(urls) {
518             res = glob_next_url(&this_url, urls);
519             if(res)
520               goto show_error;
521           }
522           else if(!li) {
523             this_url = strdup(urlnode->url);
524             if(!this_url) {
525               res = CURLE_OUT_OF_MEMORY;
526               goto show_error;
527             }
528           }
529           else
530             this_url = NULL;
531           if(!this_url)
532             break;
533
534           if(outfiles) {
535             outfile = strdup(outfiles);
536             if(!outfile) {
537               res = CURLE_OUT_OF_MEMORY;
538               goto show_error;
539             }
540           }
541         }
542
543         if(((urlnode->flags&GETOUT_USEREMOTE) ||
544             (outfile && !curlx_strequal("-", outfile))) &&
545            (metalink || !config->use_metalink)) {
546
547           /*
548            * We have specified a file name to store the result in, or we have
549            * decided we want to use the remote file name.
550            */
551
552           if(!outfile) {
553             /* extract the file name from the URL */
554             res = get_url_file_name(&outfile, this_url);
555             if(res)
556               goto show_error;
557             if((!outfile || !*outfile) && !config->content_disposition) {
558               helpf(global->errors, "Remote file name has no length!\n");
559               res = CURLE_WRITE_ERROR;
560               goto quit_urls;
561             }
562 #if defined(MSDOS) || defined(WIN32)
563             /* For DOS and WIN32, we do some major replacing of
564                bad characters in the file name before using it */
565             outfile = sanitize_dos_name(outfile);
566             if(!outfile) {
567               res = CURLE_OUT_OF_MEMORY;
568               goto show_error;
569             }
570 #endif /* MSDOS || WIN32 */
571           }
572           else if(urls) {
573             /* fill '#1' ... '#9' terms from URL pattern */
574             char *storefile = outfile;
575             res = glob_match_url(&outfile, storefile, urls);
576             Curl_safefree(storefile);
577             if(res) {
578               /* bad globbing */
579               warnf(config, "bad output glob!\n");
580               goto quit_urls;
581             }
582           }
583
584           /* Create the directory hierarchy, if not pre-existent to a multiple
585              file output call */
586
587           if(config->create_dirs || metalink) {
588             res = create_dir_hierarchy(outfile, global->errors);
589             /* create_dir_hierarchy shows error upon CURLE_WRITE_ERROR */
590             if(res == CURLE_WRITE_ERROR)
591               goto quit_urls;
592             if(res) {
593               goto show_error;
594             }
595           }
596
597           if((urlnode->flags & GETOUT_USEREMOTE)
598              && config->content_disposition) {
599             /* Our header callback MIGHT set the filename */
600             DEBUGASSERT(!outs.filename);
601           }
602
603           if(config->resume_from_current) {
604             /* We're told to continue from where we are now. Get the size
605                of the file as it is now and open it for append instead */
606             struct_stat fileinfo;
607             /* VMS -- Danger, the filesize is only valid for stream files */
608             if(0 == stat(outfile, &fileinfo))
609               /* set offset to current file size: */
610               config->resume_from = fileinfo.st_size;
611             else
612               /* let offset be 0 */
613               config->resume_from = 0;
614           }
615
616           if(config->resume_from) {
617 #ifdef __VMS
618             /* open file for output, forcing VMS output format into stream
619                mode which is needed for stat() call above to always work. */
620             FILE *file = fopen(outfile, config->resume_from?"ab":"wb",
621                                "ctx=stm", "rfm=stmlf", "rat=cr", "mrs=0");
622 #else
623             /* open file for output: */
624             FILE *file = fopen(outfile, config->resume_from?"ab":"wb");
625 #endif
626             if(!file) {
627               helpf(global->errors, "Can't open '%s'!\n", outfile);
628               res = CURLE_WRITE_ERROR;
629               goto quit_urls;
630             }
631             outs.fopened = TRUE;
632             outs.stream = file;
633             outs.init = config->resume_from;
634           }
635           else {
636             outs.stream = NULL; /* open when needed */
637           }
638           outs.filename = outfile;
639           outs.s_isreg = TRUE;
640         }
641
642         if(uploadfile && !stdin_upload(uploadfile)) {
643           /*
644            * We have specified a file to upload and it isn't "-".
645            */
646           struct_stat fileinfo;
647
648           this_url = add_file_name_to_url(curl, this_url, uploadfile);
649           if(!this_url) {
650             res = CURLE_OUT_OF_MEMORY;
651             goto show_error;
652           }
653           /* VMS Note:
654            *
655            * Reading binary from files can be a problem...  Only FIXED, VAR
656            * etc WITHOUT implied CC will work Others need a \n appended to a
657            * line
658            *
659            * - Stat gives a size but this is UNRELIABLE in VMS As a f.e. a
660            * fixed file with implied CC needs to have a byte added for every
661            * record processed, this can by derived from Filesize & recordsize
662            * for VARiable record files the records need to be counted!  for
663            * every record add 1 for linefeed and subtract 2 for the record
664            * header for VARIABLE header files only the bare record data needs
665            * to be considered with one appended if implied CC
666            */
667 #ifdef __VMS
668           /* Calculate the real upload site for VMS */
669           infd = -1;
670           if(stat(uploadfile, &fileinfo) == 0) {
671             fileinfo.st_size = VmsSpecialSize(uploadfile, &fileinfo);
672             switch (fileinfo.st_fab_rfm) {
673             case FAB$C_VAR:
674             case FAB$C_VFC:
675             case FAB$C_STMCR:
676               infd = open(uploadfile, O_RDONLY | O_BINARY);
677               break;
678             default:
679               infd = open(uploadfile, O_RDONLY | O_BINARY,
680                           "rfm=stmlf", "ctx=stm");
681             }
682           }
683           if(infd == -1)
684 #else
685           infd = open(uploadfile, O_RDONLY | O_BINARY);
686           if((infd == -1) || fstat(infd, &fileinfo))
687 #endif
688           {
689             helpf(global->errors, "Can't open '%s'!\n", uploadfile);
690             if(infd != -1) {
691               close(infd);
692               infd = STDIN_FILENO;
693             }
694             res = CURLE_READ_ERROR;
695             goto quit_urls;
696           }
697           infdopen = TRUE;
698
699           /* we ignore file size for char/block devices, sockets, etc. */
700           if(S_ISREG(fileinfo.st_mode))
701             uploadfilesize = fileinfo.st_size;
702
703         }
704         else if(uploadfile && stdin_upload(uploadfile)) {
705           /* count to see if there are more than one auth bit set
706              in the authtype field */
707           int authbits = 0;
708           int bitcheck = 0;
709           while(bitcheck < 32) {
710             if(config->authtype & (1UL << bitcheck++)) {
711               authbits++;
712               if(authbits > 1) {
713                 /* more than one, we're done! */
714                 break;
715               }
716             }
717           }
718
719           /*
720            * If the user has also selected --anyauth or --proxy-anyauth
721            * we should warn him/her.
722            */
723           if(config->proxyanyauth || (authbits>1)) {
724             warnf(config,
725                   "Using --anyauth or --proxy-anyauth with upload from stdin"
726                   " involves a big risk of it not working. Use a temporary"
727                   " file or a fixed auth type instead!\n");
728           }
729
730           DEBUGASSERT(infdopen == FALSE);
731           DEBUGASSERT(infd == STDIN_FILENO);
732
733           set_binmode(stdin);
734           if(curlx_strequal(uploadfile, ".")) {
735             if(curlx_nonblock((curl_socket_t)infd, TRUE) < 0)
736               warnf(config,
737                     "fcntl failed on fd=%d: %s\n", infd, strerror(errno));
738           }
739         }
740
741         if(uploadfile && config->resume_from_current)
742           config->resume_from = -1; /* -1 will then force get-it-yourself */
743
744         if(output_expected(this_url, uploadfile)
745            && outs.stream && isatty(fileno(outs.stream)))
746           /* we send the output to a tty, therefore we switch off the progress
747              meter */
748           config->noprogress = config->isatty = TRUE;
749         else {
750           /* progress meter is per download, so restore config
751              values */
752           config->noprogress = orig_noprogress;
753           config->isatty = orig_isatty;
754         }
755
756         if(urlnum > 1 && !global->mute) {
757           fprintf(global->errors, "\n[%lu/%lu]: %s --> %s\n",
758                   li+1, urlnum, this_url, outfile ? outfile : "<stdout>");
759           if(separator)
760             printf("%s%s\n", CURLseparator, this_url);
761         }
762         if(httpgetfields) {
763           char *urlbuffer;
764           /* Find out whether the url contains a file name */
765           const char *pc = strstr(this_url, "://");
766           char sep = '?';
767           if(pc)
768             pc += 3;
769           else
770             pc = this_url;
771
772           pc = strrchr(pc, '/'); /* check for a slash */
773
774           if(pc) {
775             /* there is a slash present in the URL */
776
777             if(strchr(pc, '?'))
778               /* Ouch, there's already a question mark in the URL string, we
779                  then append the data with an ampersand separator instead! */
780               sep='&';
781           }
782           /*
783            * Then append ? followed by the get fields to the url.
784            */
785           if(pc)
786             urlbuffer = aprintf("%s%c%s", this_url, sep, httpgetfields);
787           else
788             /* Append  / before the ? to create a well-formed url
789                if the url contains a hostname only
790             */
791             urlbuffer = aprintf("%s/?%s", this_url, httpgetfields);
792
793           if(!urlbuffer) {
794             res = CURLE_OUT_OF_MEMORY;
795             goto show_error;
796           }
797
798           Curl_safefree(this_url); /* free previous URL */
799           this_url = urlbuffer; /* use our new URL instead! */
800         }
801
802         if(!global->errors)
803           global->errors = stderr;
804
805         if((!outfile || !strcmp(outfile, "-")) && !config->use_ascii) {
806           /* We get the output to stdout and we have not got the ASCII/text
807              flag, then set stdout to be binary */
808           set_binmode(stdout);
809         }
810
811         if(config->tcp_nodelay)
812           my_setopt(curl, CURLOPT_TCP_NODELAY, 1L);
813
814         /* where to store */
815         my_setopt(curl, CURLOPT_WRITEDATA, &outs);
816         if(metalink || !config->use_metalink)
817           /* what call to write */
818           my_setopt(curl, CURLOPT_WRITEFUNCTION, tool_write_cb);
819 #ifdef USE_METALINK
820         else
821           /* Set Metalink specific write callback function to parse
822              XML data progressively. */
823           my_setopt(curl, CURLOPT_WRITEFUNCTION, metalink_write_cb);
824 #endif /* USE_METALINK */
825
826         /* for uploads */
827         input.fd = infd;
828         input.config = config;
829         /* Note that if CURLOPT_READFUNCTION is fread (the default), then
830          * lib/telnet.c will Curl_poll() on the input file descriptor
831          * rather then calling the READFUNCTION at regular intervals.
832          * The circumstances in which it is preferable to enable this
833          * behaviour, by omitting to set the READFUNCTION & READDATA options,
834          * have not been determined.
835          */
836         my_setopt(curl, CURLOPT_READDATA, &input);
837         /* what call to read */
838         my_setopt(curl, CURLOPT_READFUNCTION, tool_read_cb);
839
840         /* in 7.18.0, the CURLOPT_SEEKFUNCTION/DATA pair is taking over what
841            CURLOPT_IOCTLFUNCTION/DATA pair previously provided for seeking */
842         my_setopt(curl, CURLOPT_SEEKDATA, &input);
843         my_setopt(curl, CURLOPT_SEEKFUNCTION, tool_seek_cb);
844
845         if(config->recvpersecond)
846           /* tell libcurl to use a smaller sized buffer as it allows us to
847              make better sleeps! 7.9.9 stuff! */
848           my_setopt(curl, CURLOPT_BUFFERSIZE, (long)config->recvpersecond);
849
850         /* size of uploaded file: */
851         if(uploadfilesize != -1)
852           my_setopt(curl, CURLOPT_INFILESIZE_LARGE, uploadfilesize);
853         my_setopt_str(curl, CURLOPT_URL, this_url);     /* what to fetch */
854         my_setopt(curl, CURLOPT_NOPROGRESS, config->noprogress?1L:0L);
855         if(config->no_body) {
856           my_setopt(curl, CURLOPT_NOBODY, 1L);
857           my_setopt(curl, CURLOPT_HEADER, 1L);
858         }
859         /* If --metalink is used, we ignore --include (headers in
860            output) option because mixing headers to the body will
861            confuse XML parser and/or hash check will fail. */
862         else if(!config->use_metalink)
863           my_setopt(curl, CURLOPT_HEADER, config->include_headers?1L:0L);
864
865         if(config->xoauth2_bearer)
866           my_setopt_str(curl, CURLOPT_XOAUTH2_BEARER, config->xoauth2_bearer);
867
868 #if !defined(CURL_DISABLE_PROXY)
869         {
870           /* TODO: Make this a run-time check instead of compile-time one. */
871
872           my_setopt_str(curl, CURLOPT_PROXY, config->proxy);
873           my_setopt_str(curl, CURLOPT_PROXYUSERPWD, config->proxyuserpwd);
874
875           /* new in libcurl 7.3 */
876           my_setopt(curl, CURLOPT_HTTPPROXYTUNNEL, config->proxytunnel?1L:0L);
877
878           /* new in libcurl 7.5 */
879           if(config->proxy)
880             my_setopt_enum(curl, CURLOPT_PROXYTYPE, (long)config->proxyver);
881
882           /* new in libcurl 7.10 */
883           if(config->socksproxy) {
884             my_setopt_str(curl, CURLOPT_PROXY, config->socksproxy);
885             my_setopt_enum(curl, CURLOPT_PROXYTYPE, (long)config->socksver);
886           }
887
888           /* new in libcurl 7.10.6 */
889           if(config->proxyanyauth)
890             my_setopt_bitmask(curl, CURLOPT_PROXYAUTH,
891                               (long)CURLAUTH_ANY);
892           else if(config->proxynegotiate)
893             my_setopt_bitmask(curl, CURLOPT_PROXYAUTH,
894                               (long)CURLAUTH_GSSNEGOTIATE);
895           else if(config->proxyntlm)
896             my_setopt_bitmask(curl, CURLOPT_PROXYAUTH,
897                               (long)CURLAUTH_NTLM);
898           else if(config->proxydigest)
899             my_setopt_bitmask(curl, CURLOPT_PROXYAUTH,
900                               (long)CURLAUTH_DIGEST);
901           else if(config->proxybasic)
902             my_setopt_bitmask(curl, CURLOPT_PROXYAUTH,
903                               (long)CURLAUTH_BASIC);
904
905           /* new in libcurl 7.19.4 */
906           my_setopt(curl, CURLOPT_NOPROXY, config->noproxy);
907         }
908 #endif
909
910         my_setopt(curl, CURLOPT_FAILONERROR, config->failonerror?1L:0L);
911         my_setopt(curl, CURLOPT_UPLOAD, uploadfile?1L:0L);
912         my_setopt(curl, CURLOPT_DIRLISTONLY, config->dirlistonly?1L:0L);
913         my_setopt(curl, CURLOPT_APPEND, config->ftp_append?1L:0L);
914
915         if(config->netrc_opt)
916           my_setopt_enum(curl, CURLOPT_NETRC, (long)CURL_NETRC_OPTIONAL);
917         else if(config->netrc || config->netrc_file)
918           my_setopt_enum(curl, CURLOPT_NETRC, (long)CURL_NETRC_REQUIRED);
919         else
920           my_setopt_enum(curl, CURLOPT_NETRC, (long)CURL_NETRC_IGNORED);
921
922         if(config->netrc_file)
923           my_setopt(curl, CURLOPT_NETRC_FILE, config->netrc_file);
924
925         my_setopt(curl, CURLOPT_TRANSFERTEXT, config->use_ascii?1L:0L);
926         if(config->login_options)
927           my_setopt_str(curl, CURLOPT_LOGIN_OPTIONS, config->login_options);
928         my_setopt_str(curl, CURLOPT_USERPWD, config->userpwd);
929         my_setopt_str(curl, CURLOPT_RANGE, config->range);
930         my_setopt(curl, CURLOPT_ERRORBUFFER, errorbuffer);
931         my_setopt(curl, CURLOPT_TIMEOUT_MS, (long)(config->timeout * 1000));
932
933         if(built_in_protos & CURLPROTO_HTTP) {
934
935           long postRedir = 0;
936
937           my_setopt(curl, CURLOPT_FOLLOWLOCATION,
938                     config->followlocation?1L:0L);
939           my_setopt(curl, CURLOPT_UNRESTRICTED_AUTH,
940                     config->unrestricted_auth?1L:0L);
941
942           switch(config->httpreq) {
943           case HTTPREQ_SIMPLEPOST:
944             my_setopt_str(curl, CURLOPT_POSTFIELDS,
945                           config->postfields);
946             my_setopt(curl, CURLOPT_POSTFIELDSIZE_LARGE,
947                       config->postfieldsize);
948             break;
949           case HTTPREQ_POST:
950             my_setopt_httppost(curl, CURLOPT_HTTPPOST, config->httppost);
951             break;
952           default:
953             break;
954           }
955
956           my_setopt_str(curl, CURLOPT_REFERER, config->referer);
957           my_setopt(curl, CURLOPT_AUTOREFERER, config->autoreferer?1L:0L);
958           my_setopt_str(curl, CURLOPT_USERAGENT, config->useragent);
959           my_setopt_slist(curl, CURLOPT_HTTPHEADER, config->headers);
960
961           /* new in libcurl 7.5 */
962           my_setopt(curl, CURLOPT_MAXREDIRS, config->maxredirs);
963
964           /* new in libcurl 7.9.1 */
965           if(config->httpversion)
966             my_setopt_enum(curl, CURLOPT_HTTP_VERSION, config->httpversion);
967
968           /* new in libcurl 7.10.6 (default is Basic) */
969           if(config->authtype)
970             my_setopt_bitmask(curl, CURLOPT_HTTPAUTH, (long)config->authtype);
971
972           /* curl 7.19.1 (the 301 version existed in 7.18.2),
973              303 was added in 7.26.0 */
974           if(config->post301)
975             postRedir |= CURL_REDIR_POST_301;
976           if(config->post302)
977             postRedir |= CURL_REDIR_POST_302;
978           if(config->post303)
979             postRedir |= CURL_REDIR_POST_303;
980           my_setopt(curl, CURLOPT_POSTREDIR, postRedir);
981
982           /* new in libcurl 7.21.6 */
983           if(config->encoding)
984             my_setopt_str(curl, CURLOPT_ACCEPT_ENCODING, "");
985
986           /* new in libcurl 7.21.6 */
987           if(config->tr_encoding)
988             my_setopt(curl, CURLOPT_TRANSFER_ENCODING, 1L);
989
990         } /* (built_in_protos & CURLPROTO_HTTP) */
991
992         my_setopt_str(curl, CURLOPT_FTPPORT, config->ftpport);
993         my_setopt(curl, CURLOPT_LOW_SPEED_LIMIT,
994                   config->low_speed_limit);
995         my_setopt(curl, CURLOPT_LOW_SPEED_TIME, config->low_speed_time);
996         my_setopt(curl, CURLOPT_MAX_SEND_SPEED_LARGE,
997                   config->sendpersecond);
998         my_setopt(curl, CURLOPT_MAX_RECV_SPEED_LARGE,
999                   config->recvpersecond);
1000
1001         if(config->use_resume)
1002           my_setopt(curl, CURLOPT_RESUME_FROM_LARGE, config->resume_from);
1003         else
1004           my_setopt(curl, CURLOPT_RESUME_FROM_LARGE, CURL_OFF_T_C(0));
1005
1006         my_setopt_str(curl, CURLOPT_SSLCERT, config->cert);
1007         my_setopt_str(curl, CURLOPT_SSLCERTTYPE, config->cert_type);
1008         my_setopt_str(curl, CURLOPT_SSLKEY, config->key);
1009         my_setopt_str(curl, CURLOPT_SSLKEYTYPE, config->key_type);
1010         my_setopt_str(curl, CURLOPT_KEYPASSWD, config->key_passwd);
1011
1012         if(built_in_protos & (CURLPROTO_SCP|CURLPROTO_SFTP)) {
1013
1014           /* SSH and SSL private key uses same command-line option */
1015           /* new in libcurl 7.16.1 */
1016           my_setopt_str(curl, CURLOPT_SSH_PRIVATE_KEYFILE, config->key);
1017           /* new in libcurl 7.16.1 */
1018           my_setopt_str(curl, CURLOPT_SSH_PUBLIC_KEYFILE, config->pubkey);
1019
1020           /* new in libcurl 7.17.1: SSH host key md5 checking allows us
1021              to fail if we are not talking to who we think we should */
1022           my_setopt_str(curl, CURLOPT_SSH_HOST_PUBLIC_KEY_MD5,
1023                         config->hostpubmd5);
1024         }
1025
1026         if(config->cacert)
1027           my_setopt_str(curl, CURLOPT_CAINFO, config->cacert);
1028         if(config->capath)
1029           my_setopt_str(curl, CURLOPT_CAPATH, config->capath);
1030         if(config->crlfile)
1031           my_setopt_str(curl, CURLOPT_CRLFILE, config->crlfile);
1032
1033         if(curlinfo->features & CURL_VERSION_SSL) {
1034           if(config->insecure_ok) {
1035             my_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0L);
1036             my_setopt(curl, CURLOPT_SSL_VERIFYHOST, 0L);
1037           }
1038           else {
1039             my_setopt(curl, CURLOPT_SSL_VERIFYPEER, 1L);
1040             /* libcurl default is strict verifyhost -> 2L   */
1041             /* my_setopt(curl, CURLOPT_SSL_VERIFYHOST, 2L); */
1042           }
1043         }
1044
1045         if(built_in_protos & (CURLPROTO_SCP|CURLPROTO_SFTP)) {
1046           if(!config->insecure_ok) {
1047             char *home;
1048             char *file;
1049             res = CURLE_OUT_OF_MEMORY;
1050             home = homedir();
1051             if(home) {
1052               file = aprintf("%s/%sssh/known_hosts", home, DOT_CHAR);
1053               if(file) {
1054                 /* new in curl 7.19.6 */
1055                 res = res_setopt_str(curl, CURLOPT_SSH_KNOWNHOSTS, file);
1056                 curl_free(file);
1057                 if(res == CURLE_UNKNOWN_OPTION)
1058                   /* libssh2 version older than 1.1.1 */
1059                   res = CURLE_OK;
1060               }
1061               Curl_safefree(home);
1062             }
1063             if(res)
1064               goto show_error;
1065           }
1066         }
1067
1068         if(config->no_body || config->remote_time) {
1069           /* no body or use remote time */
1070           my_setopt(curl, CURLOPT_FILETIME, 1L);
1071         }
1072
1073         my_setopt(curl, CURLOPT_CRLF, config->crlf?1L:0L);
1074         my_setopt_slist(curl, CURLOPT_QUOTE, config->quote);
1075         my_setopt_slist(curl, CURLOPT_POSTQUOTE, config->postquote);
1076         my_setopt_slist(curl, CURLOPT_PREQUOTE, config->prequote);
1077
1078 #if !defined(CURL_DISABLE_HTTP) && !defined(CURL_DISABLE_COOKIES)
1079         {
1080           /* TODO: Make this a run-time check instead of compile-time one. */
1081
1082           if(config->cookie)
1083             my_setopt_str(curl, CURLOPT_COOKIE, config->cookie);
1084
1085           if(config->cookiefile)
1086             my_setopt_str(curl, CURLOPT_COOKIEFILE, config->cookiefile);
1087
1088           /* new in libcurl 7.9 */
1089           if(config->cookiejar)
1090             my_setopt_str(curl, CURLOPT_COOKIEJAR, config->cookiejar);
1091
1092           /* new in libcurl 7.9.7 */
1093           my_setopt(curl, CURLOPT_COOKIESESSION, config->cookiesession?1L:0L);
1094         }
1095 #endif
1096
1097         my_setopt_enum(curl, CURLOPT_SSLVERSION, config->ssl_version);
1098         my_setopt_enum(curl, CURLOPT_TIMECONDITION, (long)config->timecond);
1099         my_setopt(curl, CURLOPT_TIMEVALUE, (long)config->condtime);
1100         my_setopt_str(curl, CURLOPT_CUSTOMREQUEST, config->customrequest);
1101         my_setopt(curl, CURLOPT_STDERR, global->errors);
1102
1103         /* three new ones in libcurl 7.3: */
1104         my_setopt_str(curl, CURLOPT_INTERFACE, config->iface);
1105         my_setopt_str(curl, CURLOPT_KRBLEVEL, config->krblevel);
1106
1107         progressbarinit(&progressbar, config);
1108         if((config->progressmode == CURL_PROGRESS_BAR) &&
1109            !config->noprogress && !global->mute) {
1110           /* we want the alternative style, then we have to implement it
1111              ourselves! */
1112           my_setopt(curl, CURLOPT_XFERINFOFUNCTION, tool_progress_cb);
1113           my_setopt(curl, CURLOPT_XFERINFODATA, &progressbar);
1114         }
1115
1116         /* new in libcurl 7.24.0: */
1117         if(config->dns_servers)
1118           my_setopt_str(curl, CURLOPT_DNS_SERVERS, config->dns_servers);
1119
1120         /* new in libcurl 7.33.0: */
1121         if(config->dns_interface)
1122           my_setopt_str(curl, CURLOPT_DNS_INTERFACE, config->dns_interface);
1123         if(config->dns_ipv4_addr)
1124           my_setopt_str(curl, CURLOPT_DNS_LOCAL_IP4, config->dns_ipv4_addr);
1125         if(config->dns_ipv6_addr)
1126         my_setopt_str(curl, CURLOPT_DNS_LOCAL_IP6, config->dns_ipv6_addr);
1127
1128         /* new in libcurl 7.6.2: */
1129         my_setopt_slist(curl, CURLOPT_TELNETOPTIONS, config->telnet_options);
1130
1131         /* new in libcurl 7.7: */
1132         my_setopt_str(curl, CURLOPT_RANDOM_FILE, config->random_file);
1133         my_setopt_str(curl, CURLOPT_EGDSOCKET, config->egd_file);
1134         my_setopt(curl, CURLOPT_CONNECTTIMEOUT_MS,
1135                   (long)(config->connecttimeout * 1000));
1136
1137         if(config->cipher_list)
1138           my_setopt_str(curl, CURLOPT_SSL_CIPHER_LIST, config->cipher_list);
1139
1140         /* new in libcurl 7.9.2: */
1141         if(config->disable_epsv)
1142           /* disable it */
1143           my_setopt(curl, CURLOPT_FTP_USE_EPSV, 0L);
1144
1145         /* new in libcurl 7.10.5 */
1146         if(config->disable_eprt)
1147           /* disable it */
1148           my_setopt(curl, CURLOPT_FTP_USE_EPRT, 0L);
1149
1150         if(global->tracetype != TRACE_NONE) {
1151           my_setopt(curl, CURLOPT_DEBUGFUNCTION, tool_debug_cb);
1152           my_setopt(curl, CURLOPT_DEBUGDATA, config);
1153           my_setopt(curl, CURLOPT_VERBOSE, 1L);
1154         }
1155
1156         /* new in curl 7.9.3 */
1157         if(config->engine) {
1158           res = res_setopt_str(curl, CURLOPT_SSLENGINE, config->engine);
1159           if(res)
1160             goto show_error;
1161           my_setopt(curl, CURLOPT_SSLENGINE_DEFAULT, 1L);
1162         }
1163
1164         /* new in curl 7.10.7, extended in 7.19.4 but this only sets 0 or 1 */
1165         my_setopt(curl, CURLOPT_FTP_CREATE_MISSING_DIRS,
1166                   config->ftp_create_dirs?1L:0L);
1167
1168         /* new in curl 7.10.8 */
1169         if(config->max_filesize)
1170           my_setopt(curl, CURLOPT_MAXFILESIZE_LARGE,
1171                     config->max_filesize);
1172
1173         if(4 == config->ip_version)
1174           my_setopt(curl, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4);
1175         else if(6 == config->ip_version)
1176           my_setopt(curl, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V6);
1177         else
1178           my_setopt(curl, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_WHATEVER);
1179
1180         /* new in curl 7.15.5 */
1181         if(config->ftp_ssl_reqd)
1182           my_setopt_enum(curl, CURLOPT_USE_SSL, (long)CURLUSESSL_ALL);
1183
1184         /* new in curl 7.11.0 */
1185         else if(config->ftp_ssl)
1186           my_setopt_enum(curl, CURLOPT_USE_SSL, (long)CURLUSESSL_TRY);
1187
1188         /* new in curl 7.16.0 */
1189         else if(config->ftp_ssl_control)
1190           my_setopt_enum(curl, CURLOPT_USE_SSL, (long)CURLUSESSL_CONTROL);
1191
1192         /* new in curl 7.16.1 */
1193         if(config->ftp_ssl_ccc)
1194           my_setopt_enum(curl, CURLOPT_FTP_SSL_CCC,
1195                          (long)config->ftp_ssl_ccc_mode);
1196
1197 #if defined(HAVE_GSSAPI) || defined(USE_WINDOWS_SSPI)
1198         {
1199           /* TODO: Make this a run-time check instead of compile-time one. */
1200
1201           /* new in curl 7.19.4 */
1202           if(config->socks5_gssapi_service)
1203             my_setopt_str(curl, CURLOPT_SOCKS5_GSSAPI_SERVICE,
1204                           config->socks5_gssapi_service);
1205
1206           /* new in curl 7.19.4 */
1207           if(config->socks5_gssapi_nec)
1208             my_setopt_str(curl, CURLOPT_SOCKS5_GSSAPI_NEC,
1209                           config->socks5_gssapi_nec);
1210         }
1211 #endif
1212         /* curl 7.13.0 */
1213         my_setopt_str(curl, CURLOPT_FTP_ACCOUNT, config->ftp_account);
1214
1215         my_setopt(curl, CURLOPT_IGNORE_CONTENT_LENGTH, config->ignorecl?1L:0L);
1216
1217         /* curl 7.14.2 */
1218         my_setopt(curl, CURLOPT_FTP_SKIP_PASV_IP, config->ftp_skip_ip?1L:0L);
1219
1220         /* curl 7.15.1 */
1221         my_setopt(curl, CURLOPT_FTP_FILEMETHOD, (long)config->ftp_filemethod);
1222
1223         /* curl 7.15.2 */
1224         if(config->localport) {
1225           my_setopt(curl, CURLOPT_LOCALPORT, (long)config->localport);
1226           my_setopt_str(curl, CURLOPT_LOCALPORTRANGE,
1227                         (long)config->localportrange);
1228         }
1229
1230         /* curl 7.15.5 */
1231         my_setopt_str(curl, CURLOPT_FTP_ALTERNATIVE_TO_USER,
1232                       config->ftp_alternative_to_user);
1233
1234         /* curl 7.16.0 */
1235         if(config->disable_sessionid)
1236           /* disable it */
1237           my_setopt(curl, CURLOPT_SSL_SESSIONID_CACHE, 0L);
1238
1239         /* curl 7.16.2 */
1240         if(config->raw) {
1241           my_setopt(curl, CURLOPT_HTTP_CONTENT_DECODING, 0L);
1242           my_setopt(curl, CURLOPT_HTTP_TRANSFER_DECODING, 0L);
1243         }
1244
1245         /* curl 7.17.1 */
1246         if(!config->nokeepalive) {
1247           my_setopt(curl, CURLOPT_TCP_KEEPALIVE, 1L);
1248           if(config->alivetime != 0) {
1249 #if !defined(TCP_KEEPIDLE) || !defined(TCP_KEEPINTVL)
1250             warnf(config, "Keep-alive functionality somewhat crippled due to "
1251                 "missing support in your operating system!\n");
1252 #endif
1253             my_setopt(curl, CURLOPT_TCP_KEEPIDLE, config->alivetime);
1254             my_setopt(curl, CURLOPT_TCP_KEEPINTVL, config->alivetime);
1255           }
1256         }
1257         else
1258           my_setopt(curl, CURLOPT_TCP_KEEPALIVE, 0L);
1259
1260         /* curl 7.20.0 */
1261         if(config->tftp_blksize)
1262           my_setopt(curl, CURLOPT_TFTP_BLKSIZE, config->tftp_blksize);
1263
1264         if(config->mail_from)
1265           my_setopt_str(curl, CURLOPT_MAIL_FROM, config->mail_from);
1266
1267         if(config->mail_rcpt)
1268           my_setopt_slist(curl, CURLOPT_MAIL_RCPT, config->mail_rcpt);
1269
1270         /* curl 7.20.x */
1271         if(config->ftp_pret)
1272           my_setopt(curl, CURLOPT_FTP_USE_PRET, 1L);
1273
1274         if(config->proto_present)
1275           my_setopt_flags(curl, CURLOPT_PROTOCOLS, config->proto);
1276         if(config->proto_redir_present)
1277           my_setopt_flags(curl, CURLOPT_REDIR_PROTOCOLS, config->proto_redir);
1278
1279         if(config->content_disposition
1280            && (urlnode->flags & GETOUT_USEREMOTE)
1281            && (checkprefix("http://", this_url) ||
1282                checkprefix("https://", this_url)))
1283           hdrcbdata.honor_cd_filename = TRUE;
1284         else
1285           hdrcbdata.honor_cd_filename = FALSE;
1286
1287         hdrcbdata.outs = &outs;
1288         hdrcbdata.heads = &heads;
1289
1290         my_setopt(curl, CURLOPT_HEADERFUNCTION, tool_header_cb);
1291         my_setopt(curl, CURLOPT_HEADERDATA, &hdrcbdata);
1292
1293         if(config->resolve)
1294           /* new in 7.21.3 */
1295           my_setopt_slist(curl, CURLOPT_RESOLVE, config->resolve);
1296
1297         /* new in 7.21.4 */
1298         if(curlinfo->features & CURL_VERSION_TLSAUTH_SRP) {
1299           if(config->tls_username)
1300             my_setopt_str(curl, CURLOPT_TLSAUTH_USERNAME,
1301                           config->tls_username);
1302           if(config->tls_password)
1303             my_setopt_str(curl, CURLOPT_TLSAUTH_PASSWORD,
1304                           config->tls_password);
1305           if(config->tls_authtype)
1306             my_setopt_str(curl, CURLOPT_TLSAUTH_TYPE,
1307                           config->tls_authtype);
1308         }
1309
1310         /* new in 7.22.0 */
1311         if(config->gssapi_delegation)
1312           my_setopt_str(curl, CURLOPT_GSSAPI_DELEGATION,
1313                         config->gssapi_delegation);
1314
1315         /* new in 7.25.0 */
1316         if(config->ssl_allow_beast)
1317           my_setopt(curl, CURLOPT_SSL_OPTIONS, (long)CURLSSLOPT_ALLOW_BEAST);
1318
1319         if(config->mail_auth)
1320           my_setopt_str(curl, CURLOPT_MAIL_AUTH, config->mail_auth);
1321
1322         /* new in 7.31.0 */
1323         if(config->sasl_ir)
1324           my_setopt(curl, CURLOPT_SASL_IR, 1L);
1325
1326         if(config->nonpn) {
1327           my_setopt(curl, CURLOPT_SSL_ENABLE_NPN, 0L);
1328         }
1329
1330         if(config->noalpn) {
1331           my_setopt(curl, CURLOPT_SSL_ENABLE_ALPN, 0L);
1332         }
1333
1334         /* initialize retry vars for loop below */
1335         retry_sleep_default = (config->retry_delay) ?
1336           config->retry_delay*1000L : RETRY_SLEEP_DEFAULT; /* ms */
1337
1338         retry_numretries = config->req_retry;
1339         retry_sleep = retry_sleep_default; /* ms */
1340         retrystart = tvnow();
1341
1342 #ifndef CURL_DISABLE_LIBCURL_OPTION
1343         res = easysrc_perform();
1344         if(res) {
1345           goto show_error;
1346         }
1347 #endif
1348
1349         for(;;) {
1350 #ifdef USE_METALINK
1351           if(!metalink && config->use_metalink) {
1352             /* If outs.metalink_parser is non-NULL, delete it first. */
1353             if(outs.metalink_parser)
1354               metalink_parser_context_delete(outs.metalink_parser);
1355             outs.metalink_parser = metalink_parser_context_new();
1356             if(outs.metalink_parser == NULL) {
1357               res = CURLE_OUT_OF_MEMORY;
1358               goto show_error;
1359             }
1360             fprintf(config->global->errors,
1361                     "Metalink: parsing (%s) metalink/XML...\n", this_url);
1362           }
1363           else if(metalink)
1364             fprintf(config->global->errors,
1365                     "Metalink: fetching (%s) from (%s)...\n",
1366                     mlfile->filename, this_url);
1367 #endif /* USE_METALINK */
1368
1369 #ifdef CURLDEBUG
1370           if(config->test_event_based)
1371             res = curl_easy_perform_ev(curl);
1372           else
1373 #endif
1374           res = curl_easy_perform(curl);
1375
1376           if(outs.is_cd_filename && outs.stream && !global->mute &&
1377              outs.filename)
1378             printf("curl: Saved to filename '%s'\n", outs.filename);
1379
1380           /* if retry-max-time is non-zero, make sure we haven't exceeded the
1381              time */
1382           if(retry_numretries &&
1383              (!config->retry_maxtime ||
1384               (tvdiff(tvnow(), retrystart) <
1385                config->retry_maxtime*1000L)) ) {
1386             enum {
1387               RETRY_NO,
1388               RETRY_TIMEOUT,
1389               RETRY_HTTP,
1390               RETRY_FTP,
1391               RETRY_LAST /* not used */
1392             } retry = RETRY_NO;
1393             long response;
1394             if((CURLE_OPERATION_TIMEDOUT == res) ||
1395                (CURLE_COULDNT_RESOLVE_HOST == res) ||
1396                (CURLE_COULDNT_RESOLVE_PROXY == res) ||
1397                (CURLE_FTP_ACCEPT_TIMEOUT == res))
1398               /* retry timeout always */
1399               retry = RETRY_TIMEOUT;
1400             else if((CURLE_OK == res) ||
1401                     (config->failonerror &&
1402                      (CURLE_HTTP_RETURNED_ERROR == res))) {
1403               /* If it returned OK. _or_ failonerror was enabled and it
1404                  returned due to such an error, check for HTTP transient
1405                  errors to retry on. */
1406               char *effective_url = NULL;
1407               curl_easy_getinfo(curl, CURLINFO_EFFECTIVE_URL, &effective_url);
1408               if(effective_url &&
1409                  checkprefix("http", effective_url)) {
1410                 /* This was HTTP(S) */
1411                 curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &response);
1412
1413                 switch(response) {
1414                 case 500: /* Internal Server Error */
1415                 case 502: /* Bad Gateway */
1416                 case 503: /* Service Unavailable */
1417                 case 504: /* Gateway Timeout */
1418                   retry = RETRY_HTTP;
1419                   /*
1420                    * At this point, we have already written data to the output
1421                    * file (or terminal). If we write to a file, we must rewind
1422                    * or close/re-open the file so that the next attempt starts
1423                    * over from the beginning.
1424                    *
1425                    * TODO: similar action for the upload case. We might need
1426                    * to start over reading from a previous point if we have
1427                    * uploaded something when this was returned.
1428                    */
1429                   break;
1430                 }
1431               }
1432             } /* if CURLE_OK */
1433             else if(res) {
1434               curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &response);
1435
1436               if(response/100 == 4)
1437                 /*
1438                  * This is typically when the FTP server only allows a certain
1439                  * amount of users and we are not one of them.  All 4xx codes
1440                  * are transient.
1441                  */
1442                 retry = RETRY_FTP;
1443             }
1444
1445             if(retry) {
1446               static const char * const m[]={
1447                 NULL, "timeout", "HTTP error", "FTP error"
1448               };
1449               warnf(config, "Transient problem: %s "
1450                     "Will retry in %ld seconds. "
1451                     "%ld retries left.\n",
1452                     m[retry], retry_sleep/1000L, retry_numretries);
1453
1454               tool_go_sleep(retry_sleep);
1455               retry_numretries--;
1456               if(!config->retry_delay) {
1457                 retry_sleep *= 2;
1458                 if(retry_sleep > RETRY_SLEEP_MAX)
1459                   retry_sleep = RETRY_SLEEP_MAX;
1460               }
1461               if(outs.bytes && outs.filename) {
1462                 /* We have written data to a output file, we truncate file
1463                  */
1464                 if(!global->mute)
1465                   fprintf(global->errors, "Throwing away %"
1466                           CURL_FORMAT_CURL_OFF_T " bytes\n",
1467                           outs.bytes);
1468                 fflush(outs.stream);
1469                 /* truncate file at the position where we started appending */
1470 #ifdef HAVE_FTRUNCATE
1471                 if(ftruncate( fileno(outs.stream), outs.init)) {
1472                   /* when truncate fails, we can't just append as then we'll
1473                      create something strange, bail out */
1474                   if(!global->mute)
1475                     fprintf(global->errors,
1476                             "failed to truncate, exiting\n");
1477                   res = CURLE_WRITE_ERROR;
1478                   goto quit_urls;
1479                 }
1480                 /* now seek to the end of the file, the position where we
1481                    just truncated the file in a large file-safe way */
1482                 fseek(outs.stream, 0, SEEK_END);
1483 #else
1484                 /* ftruncate is not available, so just reposition the file
1485                    to the location we would have truncated it. This won't
1486                    work properly with large files on 32-bit systems, but
1487                    most of those will have ftruncate. */
1488                 fseek(outs.stream, (long)outs.init, SEEK_SET);
1489 #endif
1490                 outs.bytes = 0; /* clear for next round */
1491               }
1492               continue; /* curl_easy_perform loop */
1493             }
1494           } /* if retry_numretries */
1495           else if(metalink) {
1496             /* Metalink: Decide to try the next resource or
1497                not. Basically, we want to try the next resource if
1498                download was not successful. */
1499             long response;
1500             if(CURLE_OK == res) {
1501               /* TODO We want to try next resource when download was
1502                  not successful. How to know that? */
1503               char *effective_url = NULL;
1504               curl_easy_getinfo(curl, CURLINFO_EFFECTIVE_URL, &effective_url);
1505               if(effective_url &&
1506                  curlx_strnequal(effective_url, "http", 4)) {
1507                 /* This was HTTP(S) */
1508                 curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &response);
1509                 if(response != 200 && response != 206) {
1510                   metalink_next_res = 1;
1511                   fprintf(global->errors,
1512                           "Metalink: fetching (%s) from (%s) FAILED "
1513                           "(HTTP status code %d)\n",
1514                           mlfile->filename, this_url, response);
1515                 }
1516               }
1517             }
1518             else {
1519               metalink_next_res = 1;
1520               fprintf(global->errors,
1521                       "Metalink: fetching (%s) from (%s) FAILED (%s)\n",
1522                       mlfile->filename, this_url,
1523                       (errorbuffer[0]) ?
1524                       errorbuffer : curl_easy_strerror((CURLcode)res));
1525             }
1526           }
1527           if(metalink && !metalink_next_res)
1528             fprintf(global->errors, "Metalink: fetching (%s) from (%s) OK\n",
1529                     mlfile->filename, this_url);
1530
1531           /* In all ordinary cases, just break out of loop here */
1532           break; /* curl_easy_perform loop */
1533
1534         }
1535
1536         if((config->progressmode == CURL_PROGRESS_BAR) &&
1537            progressbar.calls)
1538           /* if the custom progress bar has been displayed, we output a
1539              newline here */
1540           fputs("\n", progressbar.out);
1541
1542         if(config->writeout)
1543           ourWriteOut(curl, &outs, config->writeout);
1544
1545         if(config->writeenv)
1546           ourWriteEnv(curl);
1547
1548         /*
1549         ** Code within this loop may jump directly here to label 'show_error'
1550         ** in order to display an error message for CURLcode stored in 'res'
1551         ** variable and exit loop once that necessary writing and cleanup
1552         ** in label 'quit_urls' has been done.
1553         */
1554
1555         show_error:
1556
1557 #ifdef __VMS
1558         if(is_vms_shell()) {
1559           /* VMS DCL shell behavior */
1560           if(!global->showerror)
1561             vms_show = VMSSTS_HIDE;
1562         }
1563         else
1564 #endif
1565         if(res && global->showerror) {
1566           fprintf(global->errors, "curl: (%d) %s\n", res, (errorbuffer[0]) ?
1567                   errorbuffer : curl_easy_strerror((CURLcode)res));
1568           if(res == CURLE_SSL_CACERT)
1569             fprintf(global->errors, "%s%s",
1570                     CURL_CA_CERT_ERRORMSG1, CURL_CA_CERT_ERRORMSG2);
1571         }
1572
1573         /* Fall through comment to 'quit_urls' label */
1574
1575         /*
1576         ** Upon error condition and always that a message has already been
1577         ** displayed, code within this loop may jump directly here to label
1578         ** 'quit_urls' otherwise it should jump to 'show_error' label above.
1579         **
1580         ** When 'res' variable is _not_ CURLE_OK loop will exit once that
1581         ** all code following 'quit_urls' has been executed. Otherwise it
1582         ** will loop to the beginning from where it may exit if there are
1583         ** no more urls left.
1584         */
1585
1586         quit_urls:
1587
1588         /* Set file extended attributes */
1589         if(!res && config->xattr && outs.fopened && outs.stream) {
1590           int rc = fwrite_xattr(curl, fileno(outs.stream));
1591           if(rc)
1592             warnf(config, "Error setting extended attributes: %s\n",
1593                   strerror(errno));
1594         }
1595
1596         /* Close the file */
1597         if(outs.fopened && outs.stream) {
1598           int rc = fclose(outs.stream);
1599           if(!res && rc) {
1600             /* something went wrong in the writing process */
1601             res = CURLE_WRITE_ERROR;
1602             fprintf(global->errors, "(%d) Failed writing body\n", res);
1603           }
1604         }
1605         else if(!outs.s_isreg && outs.stream) {
1606           /* Dump standard stream buffered data */
1607           int rc = fflush(outs.stream);
1608           if(!res && rc) {
1609             /* something went wrong in the writing process */
1610             res = CURLE_WRITE_ERROR;
1611             fprintf(global->errors, "(%d) Failed writing body\n", res);
1612           }
1613         }
1614
1615 #ifdef __AMIGA__
1616         if(!res && outs.s_isreg && outs.filename) {
1617           /* Set the url (up to 80 chars) as comment for the file */
1618           if(strlen(url) > 78)
1619             url[79] = '\0';
1620           SetComment(outs.filename, url);
1621         }
1622 #endif
1623
1624 #ifdef HAVE_UTIME
1625         /* File time can only be set _after_ the file has been closed */
1626         if(!res && config->remote_time && outs.s_isreg && outs.filename) {
1627           /* Ask libcurl if we got a remote file time */
1628           long filetime = -1;
1629           curl_easy_getinfo(curl, CURLINFO_FILETIME, &filetime);
1630           if(filetime >= 0) {
1631             struct utimbuf times;
1632             times.actime = (time_t)filetime;
1633             times.modtime = (time_t)filetime;
1634             utime(outs.filename, &times); /* set the time we got */
1635           }
1636         }
1637 #endif
1638
1639 #ifdef USE_METALINK
1640         if(!metalink && config->use_metalink && res == CURLE_OK) {
1641           int rv = parse_metalink(config, &outs, this_url);
1642           if(rv == 0)
1643             fprintf(config->global->errors, "Metalink: parsing (%s) OK\n",
1644                     this_url);
1645           else if(rv == -1)
1646             fprintf(config->global->errors, "Metalink: parsing (%s) FAILED\n",
1647                     this_url);
1648         }
1649         else if(metalink && res == CURLE_OK && !metalink_next_res) {
1650           int rv = metalink_check_hash(global, mlfile, outs.filename);
1651           if(rv == 0) {
1652             metalink_next_res = 1;
1653           }
1654         }
1655 #endif /* USE_METALINK */
1656
1657         /* No more business with this output struct */
1658         if(outs.alloc_filename)
1659           Curl_safefree(outs.filename);
1660 #ifdef USE_METALINK
1661         if(outs.metalink_parser)
1662           metalink_parser_context_delete(outs.metalink_parser);
1663 #endif /* USE_METALINK */
1664         memset(&outs, 0, sizeof(struct OutStruct));
1665         hdrcbdata.outs = NULL;
1666
1667         /* Free loop-local allocated memory and close loop-local opened fd */
1668
1669         Curl_safefree(outfile);
1670         Curl_safefree(this_url);
1671
1672         if(infdopen)
1673           close(infd);
1674
1675         if(metalink) {
1676           /* Should exit if error is fatal. */
1677           if(is_fatal_error(res)) {
1678             break;
1679           }
1680           if(!metalink_next_res)
1681             break;
1682           mlres = mlres->next;
1683           if(mlres == NULL)
1684             /* TODO If metalink_next_res is 1 and mlres is NULL,
1685              * set res to error code
1686              */
1687             break;
1688         }
1689         else
1690         if(urlnum > 1) {
1691           /* when url globbing, exit loop upon critical error */
1692           if(is_fatal_error(res))
1693             break;
1694         }
1695         else if(res)
1696           /* when not url globbing, exit loop upon any error */
1697           break;
1698
1699       } /* loop to the next URL */
1700
1701       /* Free loop-local allocated memory */
1702
1703       Curl_safefree(uploadfile);
1704
1705       if(urls) {
1706         /* Free list of remaining URLs */
1707         glob_cleanup(urls);
1708         urls = NULL;
1709       }
1710
1711       if(infilenum > 1) {
1712         /* when file globbing, exit loop upon critical error */
1713         if(is_fatal_error(res))
1714           break;
1715       }
1716       else if(res)
1717         /* when not file globbing, exit loop upon any error */
1718         break;
1719
1720     } /* loop to the next globbed upload file */
1721
1722     /* Free loop-local allocated memory */
1723
1724     Curl_safefree(outfiles);
1725
1726     if(inglob) {
1727       /* Free list of globbed upload files */
1728       glob_cleanup(inglob);
1729       inglob = NULL;
1730     }
1731
1732     /* Free this URL node data without destroying the
1733        the node itself nor modifying next pointer. */
1734     Curl_safefree(urlnode->url);
1735     Curl_safefree(urlnode->outfile);
1736     Curl_safefree(urlnode->infile);
1737     urlnode->flags = 0;
1738
1739     /*
1740     ** Bail out upon critical errors
1741     */
1742     if(is_fatal_error(res))
1743       goto quit_curl;
1744
1745   } /* for-loop through all URLs */
1746
1747   /*
1748   ** Nested loops end here.
1749   */
1750
1751   quit_curl:
1752
1753   /* Free function-local referenced allocated memory */
1754   Curl_safefree(httpgetfields);
1755
1756   /* Free list of given URLs */
1757   clean_getout(config);
1758
1759 #ifndef CURL_DISABLE_LIBCURL_OPTION
1760   easysrc_cleanup();
1761 #endif
1762
1763   hdrcbdata.heads = NULL;
1764
1765   /* Close function-local opened file descriptors */
1766
1767   if(heads.fopened && heads.stream)
1768     fclose(heads.stream);
1769   if(heads.alloc_filename)
1770     Curl_safefree(heads.filename);
1771
1772 #ifndef CURL_DISABLE_LIBCURL_OPTION
1773   /* Dump the libcurl code if previously enabled.
1774      NOTE: that this function relies on config->errors amongst other things
1775      so not everything can be closed and cleaned before this is called */
1776   dumpeasysrc(config);
1777 #endif
1778
1779   /* Release metalink related resources here */
1780   clean_metalink(config);
1781
1782   return (CURLcode)res;
1783 }
1784
1785 CURLcode operate(struct GlobalConfig *config, int argc, argv_item_t argv[])
1786 {
1787   CURLcode result = CURLE_OK;
1788
1789   /* Setup proper locale from environment */
1790 #ifdef HAVE_SETLOCALE
1791   setlocale(LC_ALL, "");
1792 #endif
1793
1794   /* Parse .curlrc if necessary */
1795   if((argc == 1) || (!curlx_strequal(argv[1], "-q"))) {
1796     parseconfig(NULL, config); /* ignore possible failure */
1797
1798     /* If we had no arguments then make sure a url was specified in .curlrc */
1799     if((argc < 2) && (!config->first->url_list)) {
1800       helpf(config->errors, NULL);
1801       result = CURLE_FAILED_INIT;
1802     }
1803   }
1804
1805   if(!result) {
1806     /* Parse the command line arguments */
1807     ParameterError res = parse_args(config, argc, argv);
1808     if(res) {
1809       result = CURLE_OK;
1810
1811       /* Check if we were asked for the help */
1812       if(res == PARAM_HELP_REQUESTED)
1813         tool_help();
1814       /* Check if we were asked for the manual */
1815       else if(res == PARAM_MANUAL_REQUESTED)
1816         hugehelp();
1817       /* Check if we were asked for the version information */
1818       else if(res == PARAM_VERSION_INFO_REQUESTED)
1819         tool_version_info();
1820       /* Check if we were asked to list the SSL engines */
1821       else if(res == PARAM_ENGINES_REQUESTED)
1822         tool_list_engines(config->easy);
1823       else
1824         result = CURLE_FAILED_INIT;
1825     }
1826     /* Perform the main operations */
1827     else {
1828       size_t count = 0;
1829       struct OperationConfig *operation = config->first;
1830
1831       /* Get the required aguments for each operation */
1832       while(!result && operation) {
1833         result = get_args(operation, count++);
1834
1835         operation = operation->next;
1836       }
1837
1838       /* Set the current operation pointer */
1839       config->current = config->first;
1840
1841       /* Perform each operation */
1842       while(!result && config->current) {
1843         result = operate_do(config, config->current);
1844
1845         config->current = config->current->next;
1846       }
1847     }
1848   }
1849
1850   return result;
1851 }