2002-09-03 07:52:59 -04:00
|
|
|
/***************************************************************************
|
2004-05-24 09:31:28 -04:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
1999-12-29 09:20:26 -05:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2004-01-07 04:19:33 -05:00
|
|
|
* Copyright (C) 1998 - 2004, Daniel Stenberg, <daniel@haxx.se>, et al.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2002-09-03 07:52:59 -04:00
|
|
|
* 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 http://curl.haxx.se/docs/copyright.html.
|
2004-05-24 09:31:28 -04:00
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* 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
|
2002-09-03 07:52:59 -04:00
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* $Id$
|
2002-09-03 07:52:59 -04:00
|
|
|
***************************************************************************/
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2001-04-18 10:06:47 -04:00
|
|
|
/* This is now designed to have its own local setup.h */
|
|
|
|
#include "setup.h"
|
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdarg.h>
|
2001-04-18 10:06:47 -04:00
|
|
|
#include <sys/types.h>
|
1999-12-29 09:20:26 -05:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <ctype.h>
|
2002-12-05 14:39:17 -05:00
|
|
|
#include <errno.h>
|
1999-12-29 09:20:26 -05:00
|
|
|
|
|
|
|
#include <curl/curl.h>
|
2000-10-09 17:35:40 -04:00
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
#include "urlglob.h"
|
2000-11-21 04:38:41 -05:00
|
|
|
#include "writeout.h"
|
2003-10-16 10:09:39 -04:00
|
|
|
#include "getpass.h"
|
2003-11-07 12:17:15 -05:00
|
|
|
#include "homedir.h"
|
2004-02-12 09:46:12 -05:00
|
|
|
#ifdef USE_MANUAL
|
2004-01-29 08:48:36 -05:00
|
|
|
#include "hugehelp.h"
|
2004-02-12 09:46:12 -05:00
|
|
|
#endif
|
2002-04-08 18:48:25 -04:00
|
|
|
#ifdef USE_ENVIRONMENT
|
|
|
|
#include "writeenv.h"
|
|
|
|
#endif
|
2000-11-21 04:38:41 -05:00
|
|
|
|
2004-10-06 03:50:18 -04:00
|
|
|
#define CURLseparator "--_curl_--"
|
2000-05-09 18:42:53 -04:00
|
|
|
|
2001-01-24 09:44:05 -05:00
|
|
|
#if defined(WIN32)&&!defined(__CYGWIN32__)
|
2004-02-26 11:23:28 -05:00
|
|
|
#include <winsock2.h>
|
2000-05-22 13:20:29 -04:00
|
|
|
#endif
|
|
|
|
|
2004-03-17 07:46:42 -05:00
|
|
|
#ifdef __NOVELL_LIBC__
|
|
|
|
#include <screen.h>
|
|
|
|
#endif
|
|
|
|
|
2003-06-03 04:07:06 -04:00
|
|
|
#ifdef TIME_WITH_SYS_TIME
|
|
|
|
/* We can include both fine */
|
2003-05-27 18:56:01 -04:00
|
|
|
#include <sys/time.h>
|
2003-06-03 04:07:06 -04:00
|
|
|
#include <time.h>
|
|
|
|
#else
|
|
|
|
#ifdef HAVE_SYS_TIME_H
|
|
|
|
# include <sys/time.h>
|
|
|
|
#else
|
|
|
|
# include <time.h>
|
|
|
|
#endif
|
2003-05-27 18:56:01 -04:00
|
|
|
#endif
|
|
|
|
|
2003-06-03 04:07:06 -04:00
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
#include "version.h"
|
|
|
|
|
|
|
|
#ifdef HAVE_IO_H /* typical win32 habit */
|
|
|
|
#include <io.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
|
|
|
|
2000-06-14 08:52:21 -04:00
|
|
|
#ifdef HAVE_FCNTL_H
|
|
|
|
#include <fcntl.h>
|
|
|
|
#endif
|
|
|
|
|
2001-09-03 08:00:08 -04:00
|
|
|
#ifdef HAVE_UTIME_H
|
2001-10-22 18:15:50 -04:00
|
|
|
#include <utime.h>
|
2001-09-07 05:53:21 -04:00
|
|
|
#else
|
2001-10-22 18:15:50 -04:00
|
|
|
#ifdef HAVE_SYS_UTIME_H
|
|
|
|
#include <sys/utime.h>
|
|
|
|
#endif
|
2002-06-15 17:02:11 -04:00
|
|
|
|
2004-10-18 09:37:18 -04:00
|
|
|
#endif /* HAVE_UTIME_H */
|
2002-06-15 17:02:11 -04:00
|
|
|
|
2004-01-14 02:42:10 -05:00
|
|
|
#ifdef HAVE_LIMITS_H
|
|
|
|
#include <limits.h>
|
|
|
|
#endif
|
|
|
|
|
2002-06-15 17:02:11 -04:00
|
|
|
#ifdef HAVE_SYS_POLL_H
|
|
|
|
#include <sys/poll.h>
|
2001-09-03 08:00:08 -04:00
|
|
|
#endif
|
|
|
|
|
2004-10-18 09:37:18 -04:00
|
|
|
#ifdef HAVE_LOCALE_H
|
|
|
|
#include <locale.h> /* for setlocale() */
|
|
|
|
#endif
|
|
|
|
|
2004-04-30 04:23:50 -04:00
|
|
|
#define ENABLE_CURLX_PRINTF
|
|
|
|
/* make the curlx header define all printf() functions to use the curlx_*
|
|
|
|
versions instead */
|
|
|
|
#include <curlx.h> /* header from the libcurl directory */
|
2004-02-19 03:13:20 -05:00
|
|
|
|
2000-10-09 07:13:17 -04:00
|
|
|
/* The last #include file should be: */
|
2003-06-26 07:33:29 -04:00
|
|
|
#ifdef CURLDEBUG
|
2004-05-12 04:22:04 -04:00
|
|
|
#ifndef CURLTOOLDEBUG
|
|
|
|
#define MEMDEBUG_NODEFINES
|
|
|
|
#endif
|
2003-06-26 07:33:29 -04:00
|
|
|
/* This is low-level hard-hacking memory leak tracking and similar. Using
|
|
|
|
the library level code from this client-side is ugly, but we do this
|
|
|
|
anyway for convenience. */
|
2004-02-19 03:13:20 -05:00
|
|
|
#include "memdebug.h"
|
2000-10-09 07:13:17 -04:00
|
|
|
#endif
|
|
|
|
|
2000-11-28 04:10:43 -05:00
|
|
|
#define DEFAULT_MAXREDIRS 50L
|
2000-11-17 05:08:39 -05:00
|
|
|
|
2003-07-15 19:47:25 -04:00
|
|
|
#ifdef __DJGPP__
|
2004-03-29 07:29:25 -05:00
|
|
|
#include <dos.h>
|
|
|
|
|
2003-07-15 19:47:25 -04:00
|
|
|
char *msdosify(char *);
|
|
|
|
char *rename_if_dos_device_name(char *);
|
2004-03-29 07:29:25 -05:00
|
|
|
|
|
|
|
/* we want to glob our own argv[] */
|
|
|
|
char **__crt0_glob_function (char *arg)
|
|
|
|
{
|
|
|
|
(void)arg;
|
|
|
|
return (char**)0;
|
|
|
|
}
|
2003-07-15 19:47:25 -04:00
|
|
|
#endif /* __DJGPP__ */
|
|
|
|
|
2004-03-17 02:22:04 -05:00
|
|
|
#ifndef __cplusplus
|
2001-12-17 18:01:39 -05:00
|
|
|
#ifndef typedef_bool
|
2000-10-09 17:35:40 -04:00
|
|
|
typedef char bool;
|
2001-12-17 18:01:39 -05:00
|
|
|
#endif
|
2004-03-17 02:22:04 -05:00
|
|
|
#endif
|
2000-10-09 17:35:40 -04:00
|
|
|
|
2000-11-28 04:10:43 -05:00
|
|
|
#define CURL_PROGRESS_STATS 0 /* default progress display */
|
|
|
|
#define CURL_PROGRESS_BAR 1
|
|
|
|
|
2004-02-21 10:08:21 -05:00
|
|
|
/**
|
|
|
|
* @def MIN
|
|
|
|
* standard MIN macro
|
|
|
|
*/
|
|
|
|
#ifndef MIN
|
2004-10-06 03:50:18 -04:00
|
|
|
#define MIN(X,Y) (((X) < (Y)) ? (X) : (Y))
|
2004-02-21 10:08:21 -05:00
|
|
|
#endif
|
|
|
|
|
2000-07-25 03:34:04 -04:00
|
|
|
typedef enum {
|
|
|
|
HTTPREQ_UNSPEC,
|
|
|
|
HTTPREQ_GET,
|
|
|
|
HTTPREQ_HEAD,
|
|
|
|
HTTPREQ_POST,
|
|
|
|
HTTPREQ_SIMPLEPOST,
|
|
|
|
HTTPREQ_CUSTOM,
|
|
|
|
HTTPREQ_LAST
|
|
|
|
} HttpReq;
|
|
|
|
|
2000-05-22 10:12:12 -04:00
|
|
|
/* Just a set of bits */
|
|
|
|
#define CONF_DEFAULT 0
|
2000-06-20 05:28:09 -04:00
|
|
|
|
|
|
|
#define CONF_AUTO_REFERER (1<<4) /* the automatic referer-system please! */
|
2000-05-22 10:12:12 -04:00
|
|
|
#define CONF_VERBOSE (1<<5) /* talk a lot */
|
|
|
|
#define CONF_HEADER (1<<8) /* throw the header out too */
|
|
|
|
#define CONF_NOPROGRESS (1<<10) /* shut off the progress meter */
|
|
|
|
#define CONF_NOBODY (1<<11) /* use HEAD to get http document */
|
|
|
|
#define CONF_FAILONERROR (1<<12) /* no output on http error codes >= 300 */
|
|
|
|
#define CONF_FTPLISTONLY (1<<16) /* Use NLST when listing ftp dir */
|
|
|
|
#define CONF_FTPAPPEND (1<<20) /* Append instead of overwrite on upload! */
|
|
|
|
#define CONF_NETRC (1<<22) /* read user+password from .netrc */
|
|
|
|
#define CONF_FOLLOWLOCATION (1<<23) /* use Location: Luke! */
|
2000-06-14 08:50:38 -04:00
|
|
|
#define CONF_GETTEXT (1<<24) /* use ASCII/text for transfer */
|
2000-05-22 10:12:12 -04:00
|
|
|
#define CONF_HTTPPOST (1<<25) /* multipart/form-data HTTP POST */
|
|
|
|
#define CONF_MUTE (1<<28) /* force NOPROGRESS */
|
|
|
|
|
2002-05-21 18:18:34 -04:00
|
|
|
#define CONF_NETRC_OPT (1<<29) /* read user+password from either
|
|
|
|
* .netrc or URL*/
|
2003-03-30 23:42:20 -05:00
|
|
|
#define CONF_UNRESTRICTED_AUTH (1<<30)
|
|
|
|
/* Send authentication (user+password) when following
|
|
|
|
* locations, even when hostname changed */
|
2002-05-21 18:18:34 -04:00
|
|
|
|
2000-03-02 18:06:34 -05:00
|
|
|
#ifndef HAVE_STRDUP
|
|
|
|
/* Ultrix doesn't have strdup(), so make a quick clone: */
|
|
|
|
char *strdup(char *str)
|
|
|
|
{
|
|
|
|
int len;
|
|
|
|
char *newstr;
|
|
|
|
|
|
|
|
len = strlen(str);
|
|
|
|
newstr = (char *) malloc((len+1)*sizeof(char));
|
|
|
|
if (!newstr)
|
|
|
|
return (char *)NULL;
|
|
|
|
|
|
|
|
strcpy(newstr,str);
|
|
|
|
|
|
|
|
return newstr;
|
|
|
|
|
|
|
|
}
|
2004-05-24 09:31:28 -04:00
|
|
|
#endif
|
2000-03-02 18:06:34 -05:00
|
|
|
|
2003-01-08 10:04:42 -05:00
|
|
|
#ifdef WIN32
|
|
|
|
#include <direct.h>
|
|
|
|
#define F_OK 0
|
|
|
|
#define mkdir(x,y) (mkdir)(x)
|
|
|
|
#endif
|
|
|
|
|
2004-10-06 03:50:18 -04:00
|
|
|
#ifdef VMS
|
2003-12-03 03:40:39 -05:00
|
|
|
#include "curlmsg_vms.h"
|
2001-08-06 09:19:43 -04:00
|
|
|
#endif
|
|
|
|
|
2000-05-17 17:21:10 -04:00
|
|
|
/*
|
|
|
|
* This is the main global constructor for the app. Call this before
|
|
|
|
* _any_ libcurl usage. If this fails, *NO* libcurl functions may be
|
|
|
|
* used, or havoc may be the result.
|
|
|
|
*/
|
2004-01-29 08:48:36 -05:00
|
|
|
static CURLcode main_init(void)
|
2000-05-17 17:21:10 -04:00
|
|
|
{
|
2001-07-11 21:57:28 -04:00
|
|
|
return curl_global_init(CURL_GLOBAL_DEFAULT);
|
2000-05-17 17:21:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This is the main global destructor for the app. Call this after
|
|
|
|
* _all_ libcurl usage is done.
|
|
|
|
*/
|
2004-01-29 08:48:36 -05:00
|
|
|
static void main_free(void)
|
2000-05-17 17:21:10 -04:00
|
|
|
{
|
2001-05-28 11:06:46 -04:00
|
|
|
curl_global_cleanup();
|
2000-05-17 17:21:10 -04:00
|
|
|
}
|
|
|
|
|
2004-01-29 08:48:36 -05:00
|
|
|
static int SetHTTPrequest(HttpReq req, HttpReq *store)
|
2000-07-25 03:34:04 -04:00
|
|
|
{
|
|
|
|
if((*store == HTTPREQ_UNSPEC) ||
|
|
|
|
(*store == req)) {
|
|
|
|
*store = req;
|
2000-11-17 04:47:18 -05:00
|
|
|
return 0;
|
2000-07-25 03:34:04 -04:00
|
|
|
}
|
|
|
|
fprintf(stderr, "You can only select one HTTP request!\n");
|
2000-11-17 04:47:18 -05:00
|
|
|
return 1;
|
2000-07-25 03:34:04 -04:00
|
|
|
}
|
2000-05-17 17:21:10 -04:00
|
|
|
|
2001-08-14 05:16:46 -04:00
|
|
|
static void helpf(const char *fmt, ...)
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
if(fmt) {
|
|
|
|
va_start(ap, fmt);
|
|
|
|
fputs("curl: ", stderr); /* prefix it */
|
|
|
|
vfprintf(stderr, fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
}
|
2004-02-17 08:46:00 -05:00
|
|
|
fprintf(stderr, "curl: try 'curl --help' "
|
|
|
|
#ifdef USE_MANUAL
|
|
|
|
"or 'curl --manual' "
|
|
|
|
#endif
|
|
|
|
"for more information\n");
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
|
2001-01-08 02:37:44 -05:00
|
|
|
/*
|
|
|
|
* A chain of these nodes contain URL to get and where to put the URL's
|
|
|
|
* contents.
|
|
|
|
*/
|
|
|
|
struct getout {
|
2003-08-19 19:42:24 -04:00
|
|
|
struct getout *next; /* next one */
|
|
|
|
char *url; /* the URL we deal with */
|
|
|
|
char *outfile; /* where to store the output */
|
|
|
|
char *infile; /* file to upload, if GETOUT_UPLOAD is set */
|
|
|
|
int flags; /* options */
|
2001-01-08 02:37:44 -05:00
|
|
|
};
|
2003-08-19 19:42:24 -04:00
|
|
|
#define GETOUT_OUTFILE (1<<0) /* set when outfile is deemed done */
|
|
|
|
#define GETOUT_URL (1<<1) /* set when URL is deemed done */
|
2001-01-08 02:37:44 -05:00
|
|
|
#define GETOUT_USEREMOTE (1<<2) /* use remote file name locally */
|
2003-08-19 19:42:24 -04:00
|
|
|
#define GETOUT_UPLOAD (1<<3) /* if set, -T has been used */
|
|
|
|
#define GETOUT_NOUPLOAD (1<<4) /* if set, -T "" has been used */
|
|
|
|
|
2001-01-08 02:37:44 -05:00
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
static void help(void)
|
|
|
|
{
|
2003-08-11 08:04:46 -04:00
|
|
|
int i;
|
2004-01-29 08:48:36 -05:00
|
|
|
static const char *helptext[]={
|
2003-08-11 08:04:46 -04:00
|
|
|
"Usage: curl [options...] <url>",
|
|
|
|
"Options: (H) means HTTP/HTTPS only, (F) means FTP only",
|
|
|
|
" -a/--append Append to target file when uploading (F)",
|
|
|
|
" -A/--user-agent <string> User-Agent to send to server (H)",
|
|
|
|
" --anyauth Tell curl to choose authentication method (H)",
|
|
|
|
" -b/--cookie <name=string/file> Cookie string or file to read cookies from (H)",
|
|
|
|
" --basic Enable HTTP Basic Authentication (H)",
|
|
|
|
" -B/--use-ascii Use ASCII/text transfer",
|
2003-10-29 11:11:36 -05:00
|
|
|
" -c/--cookie-jar <file> Write cookies to this file after operation (H)",
|
|
|
|
" -C/--continue-at <offset> Resumed transfer offset",
|
2003-08-11 08:04:46 -04:00
|
|
|
" -d/--data <data> HTTP POST data (H)",
|
|
|
|
" --data-ascii <data> HTTP POST ASCII data (H)",
|
|
|
|
" --data-binary <data> HTTP POST binary data (H)",
|
2003-10-29 11:11:36 -05:00
|
|
|
" --negotiate Enable HTTP Negotiate Authentication (H)",
|
2003-08-11 08:04:46 -04:00
|
|
|
" --digest Enable HTTP Digest Authentication (H)",
|
2003-10-29 11:11:36 -05:00
|
|
|
" --disable-eprt Prevent curl from using EPRT or LPRT (F)",
|
|
|
|
" --disable-epsv Prevent curl from using EPSV (F)",
|
2003-08-11 08:04:46 -04:00
|
|
|
" -D/--dump-header <file> Write the headers to this file",
|
|
|
|
" --egd-file <file> EGD socket path for random data (SSL)",
|
2004-03-25 08:37:18 -05:00
|
|
|
" --tcp-nodelay Set the TCP_NODELAY option",
|
2002-04-08 18:48:25 -04:00
|
|
|
#ifdef USE_ENVIRONMENT
|
2003-08-11 08:04:46 -04:00
|
|
|
" --environment Write result codes to environment variables (RISC OS)",
|
2002-04-08 18:48:25 -04:00
|
|
|
#endif
|
2003-10-29 11:11:36 -05:00
|
|
|
" -e/--referer Referer URL (H)",
|
|
|
|
" -E/--cert <cert[:passwd]> Client certificate file and password (SSL)",
|
|
|
|
" --cert-type <type> Certificate file type (DER/PEM/ENG) (SSL)",
|
|
|
|
" --key <key> Private key file name (SSL)",
|
|
|
|
" --key-type <type> Private key file type (DER/PEM/ENG) (SSL)",
|
|
|
|
" --pass <pass> Pass phrase for the private key (SSL)",
|
|
|
|
" --engine <eng> Crypto engine to use (SSL)",
|
2003-08-11 08:04:46 -04:00
|
|
|
" --cacert <file> CA certificate to verify peer against (SSL)",
|
|
|
|
" --capath <directory> CA directory (made using c_rehash) to verify",
|
|
|
|
" peer against (SSL)",
|
2003-10-29 11:11:36 -05:00
|
|
|
" --ciphers <list> SSL ciphers to use (SSL)",
|
2003-10-30 04:15:47 -05:00
|
|
|
" --compressed Request compressed response (using deflate or gzip)",
|
2003-08-11 08:04:46 -04:00
|
|
|
" --connect-timeout <seconds> Maximum time allowed for connection",
|
2003-10-29 11:11:36 -05:00
|
|
|
" --create-dirs Create necessary local directory hierarchy",
|
2003-10-30 04:15:47 -05:00
|
|
|
" --crlf Convert LF to CRLF in upload",
|
2003-08-11 08:04:46 -04:00
|
|
|
" -f/--fail Fail silently (no output at all) on errors (H)",
|
|
|
|
" --ftp-create-dirs Create the remote dirs if not present (F)",
|
2003-12-02 13:01:08 -05:00
|
|
|
" --ftp-pasv Use PASV instead of PORT (F)",
|
2003-11-24 06:59:15 -05:00
|
|
|
" --ftp-ssl Enable SSL/TLS for the ftp transfer (F)",
|
2003-10-29 11:11:36 -05:00
|
|
|
" -F/--form <name=content> Specify HTTP multipart POST data (H)",
|
2003-08-11 08:04:46 -04:00
|
|
|
" -g/--globoff Disable URL sequences and ranges using {} and []",
|
|
|
|
" -G/--get Send the -d data with a HTTP GET (H)",
|
|
|
|
" -h/--help This help text",
|
2003-10-30 04:15:47 -05:00
|
|
|
" -H/--header <line> Custom header to pass to server (H)",
|
2003-10-29 11:11:36 -05:00
|
|
|
" -i/--include Include protocol headers in the output (H/F)",
|
2003-10-30 04:15:47 -05:00
|
|
|
" -I/--head Show document info only",
|
2003-08-11 08:04:46 -04:00
|
|
|
" -j/--junk-session-cookies Ignore session cookies read from file (H)",
|
2003-10-29 11:11:36 -05:00
|
|
|
" --interface <interface> Specify network interface to use",
|
2003-08-11 08:04:46 -04:00
|
|
|
" --krb4 <level> Enable krb4 with specified security level (F)",
|
|
|
|
" -k/--insecure Allow curl to connect to SSL sites without certs (H)",
|
|
|
|
" -K/--config Specify which config file to read",
|
|
|
|
" -l/--list-only List only names of an FTP directory (F)",
|
2003-10-29 11:11:36 -05:00
|
|
|
" --limit-rate <rate> Limit transfer speed to this rate",
|
2003-08-11 08:04:46 -04:00
|
|
|
" -L/--location Follow Location: hints (H)",
|
2003-10-29 11:11:36 -05:00
|
|
|
" --location-trusted Follow Location: and send authentication even ",
|
|
|
|
" to other hostnames (H)",
|
2003-08-11 08:04:46 -04:00
|
|
|
" -m/--max-time <seconds> Maximum time allowed for the transfer",
|
2003-10-29 11:11:36 -05:00
|
|
|
" --max-redirs <num> Maximum number of redirects allowed (H)",
|
|
|
|
" --max-filesize <bytes> Maximum file size to download (H/F)",
|
|
|
|
" -M/--manual Display the full manual",
|
2003-08-11 08:04:46 -04:00
|
|
|
" -n/--netrc Must read .netrc for user name and password",
|
2003-10-29 11:11:36 -05:00
|
|
|
" --netrc-optional Use either .netrc or URL; overrides -n",
|
2003-08-11 08:04:46 -04:00
|
|
|
" --ntlm Enable HTTP NTLM authentication (H)",
|
2003-10-29 11:11:36 -05:00
|
|
|
" -N/--no-buffer Disable buffering of the output stream",
|
2003-08-11 08:04:46 -04:00
|
|
|
" -o/--output <file> Write output to <file> instead of stdout",
|
|
|
|
" -O/--remote-name Write output to a file named as the remote file",
|
2003-10-29 11:11:36 -05:00
|
|
|
" -p/--proxytunnel Operate through a HTTP proxy tunnel (using CONNECT)",
|
2004-05-25 10:44:25 -04:00
|
|
|
" --proxy-basic Enable Basic authentication on the proxy (H)",
|
2004-05-03 07:56:18 -04:00
|
|
|
" --proxy-digest Enable Digest authentication on the proxy (H)",
|
2003-10-29 11:11:36 -05:00
|
|
|
" --proxy-ntlm Enable NTLM authentication on the proxy (H)",
|
2003-12-02 13:01:08 -05:00
|
|
|
" -P/--ftp-port <address> Use PORT with address instead of PASV (F)",
|
2003-10-29 11:11:36 -05:00
|
|
|
" -q If used as the first parameter disables .curlrc",
|
|
|
|
" -Q/--quote <cmd> Send command(s) to server before file transfer (F)",
|
2003-08-11 08:04:46 -04:00
|
|
|
" -r/--range <range> Retrieve a byte range from a HTTP/1.1 or FTP server",
|
2003-10-29 11:11:36 -05:00
|
|
|
" --random-file <file> File for reading random data from (SSL)",
|
2003-08-11 08:04:46 -04:00
|
|
|
" -R/--remote-time Set the remote file's time on the local output",
|
|
|
|
" -s/--silent Silent mode. Don't output anything",
|
|
|
|
" -S/--show-error Show error. With -s, make curl show errors when they occur",
|
2004-01-30 03:51:24 -05:00
|
|
|
" --socks <host[:port]> Use SOCKS5 proxy on given host + port",
|
2003-10-30 04:15:47 -05:00
|
|
|
" --stderr <file> Where to redirect stderr. - means stdout",
|
2003-08-11 08:04:46 -04:00
|
|
|
" -t/--telnet-option <OPT=val> Set telnet option",
|
|
|
|
" --trace <file> Dump a network/debug trace to the given file",
|
2003-10-29 11:11:36 -05:00
|
|
|
" --trace-ascii <file> Like --trace but without the hex output",
|
2003-08-11 08:04:46 -04:00
|
|
|
" -T/--upload-file <file> Transfer/upload <file> to remote site",
|
|
|
|
" --url <URL> Another way to specify URL to work with",
|
|
|
|
" -u/--user <user[:password]> Specify user and password to use",
|
|
|
|
" Overrides -n and --netrc-optional",
|
|
|
|
" -U/--proxy-user <user[:password]> Specify Proxy authentication",
|
2003-10-29 11:11:36 -05:00
|
|
|
" -v/--verbose Make the operation more talkative",
|
|
|
|
" -V/--version Show version number and quit",
|
2003-07-05 09:13:49 -04:00
|
|
|
#ifdef __DJGPP__
|
2004-03-29 07:29:25 -05:00
|
|
|
" --wdebug Turn on Watt-32 debugging under DJGPP",
|
2003-07-05 09:13:49 -04:00
|
|
|
#endif
|
2003-08-11 08:04:46 -04:00
|
|
|
" -w/--write-out [format] What to output after completion",
|
2003-10-30 04:15:47 -05:00
|
|
|
" -x/--proxy <host[:port]> Use HTTP proxy on given port",
|
2003-10-29 11:11:36 -05:00
|
|
|
" -X/--request <command> Specify request command to use",
|
2003-08-11 08:04:46 -04:00
|
|
|
" -y/--speed-time Time needed to trig speed-limit abort. Defaults to 30",
|
|
|
|
" -Y/--speed-limit Stop transfer if below speed-limit for 'speed-time' secs",
|
2003-10-29 11:11:36 -05:00
|
|
|
" -z/--time-cond <time> Transfer based on a time condition",
|
|
|
|
" -0/--http1.0 Use HTTP 1.0 (H)",
|
2003-10-30 04:15:47 -05:00
|
|
|
" -1/--tlsv1 Use TLSv1 (SSL)",
|
|
|
|
" -2/--sslv2 Use SSLv2 (SSL)",
|
|
|
|
" -3/--sslv3 Use SSLv3 (SSL)",
|
2003-09-22 18:29:11 -04:00
|
|
|
" -4/--ipv4 Resolve name to IPv4 address",
|
|
|
|
" -6/--ipv6 Resolve name to IPv6 address",
|
2003-08-11 08:04:46 -04:00
|
|
|
" -#/--progress-bar Display transfer progress as a progress bar",
|
|
|
|
NULL
|
|
|
|
};
|
2004-03-17 07:46:42 -05:00
|
|
|
for(i=0; helptext[i]; i++) {
|
2004-01-29 08:48:36 -05:00
|
|
|
puts(helptext[i]);
|
2004-03-17 07:46:42 -05:00
|
|
|
#ifdef __NOVELL_LIBC__
|
|
|
|
if (i && ((i % 23) == 0))
|
|
|
|
pressanykey();
|
|
|
|
#endif
|
|
|
|
}
|
2002-12-03 07:41:10 -05:00
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
|
|
|
|
struct LongShort {
|
2001-08-14 05:16:46 -04:00
|
|
|
const char *letter;
|
|
|
|
const char *lname;
|
1999-12-29 09:20:26 -05:00
|
|
|
bool extraparam;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Configurable {
|
2001-09-03 08:00:08 -04:00
|
|
|
bool remote_time;
|
2001-03-12 11:02:29 -05:00
|
|
|
char *random_file;
|
|
|
|
char *egd_file;
|
1999-12-29 09:20:26 -05:00
|
|
|
char *useragent;
|
2001-08-29 05:32:35 -04:00
|
|
|
char *cookie; /* single line with specified cookies */
|
|
|
|
char *cookiejar; /* write to this file */
|
|
|
|
char *cookiefile; /* read from this file */
|
2002-05-07 05:58:13 -04:00
|
|
|
bool cookiesession; /* new session? */
|
2002-09-02 18:31:18 -04:00
|
|
|
bool encoding; /* Accept-Encoding please */
|
2004-05-24 09:31:28 -04:00
|
|
|
long authtype; /* auth bitmask */
|
1999-12-29 09:20:26 -05:00
|
|
|
bool use_resume;
|
2001-06-25 08:56:06 -04:00
|
|
|
bool resume_from_current;
|
2001-11-29 14:42:51 -05:00
|
|
|
bool disable_epsv;
|
2003-05-09 03:39:50 -04:00
|
|
|
bool disable_eprt;
|
2004-01-22 07:46:07 -05:00
|
|
|
curl_off_t resume_from;
|
1999-12-29 09:20:26 -05:00
|
|
|
char *postfields;
|
2000-08-24 13:56:20 -04:00
|
|
|
long postfieldsize;
|
1999-12-29 09:20:26 -05:00
|
|
|
char *referer;
|
|
|
|
long timeout;
|
2001-03-15 09:38:03 -05:00
|
|
|
long connecttimeout;
|
2000-11-28 04:10:43 -05:00
|
|
|
long maxredirs;
|
2004-01-22 07:46:07 -05:00
|
|
|
curl_off_t max_filesize;
|
1999-12-29 09:20:26 -05:00
|
|
|
char *headerfile;
|
|
|
|
char *ftpport;
|
2000-09-21 04:52:08 -04:00
|
|
|
char *iface;
|
1999-12-29 09:20:26 -05:00
|
|
|
unsigned short porttouse;
|
|
|
|
char *range;
|
2003-10-31 04:49:10 -05:00
|
|
|
long low_speed_limit;
|
|
|
|
long low_speed_time;
|
1999-12-29 09:20:26 -05:00
|
|
|
bool showerror;
|
|
|
|
char *userpwd;
|
|
|
|
char *proxyuserpwd;
|
|
|
|
char *proxy;
|
2000-09-15 02:11:46 -04:00
|
|
|
bool proxytunnel;
|
1999-12-29 09:20:26 -05:00
|
|
|
long conf;
|
2001-01-08 02:37:44 -05:00
|
|
|
|
|
|
|
struct getout *url_list; /* point to the first node */
|
|
|
|
struct getout *url_last; /* point to the last/current node */
|
|
|
|
|
|
|
|
struct getout *url_get; /* point to the node to fill in URL */
|
|
|
|
struct getout *url_out; /* point to the node to fill in outfile */
|
|
|
|
|
2001-09-11 18:36:03 -04:00
|
|
|
char *cipher_list;
|
1999-12-29 09:20:26 -05:00
|
|
|
char *cert;
|
2001-12-17 18:01:39 -05:00
|
|
|
char *cert_type;
|
2000-11-22 08:51:11 -05:00
|
|
|
char *cacert;
|
2002-05-28 05:21:29 -04:00
|
|
|
char *capath;
|
2001-12-17 18:01:39 -05:00
|
|
|
char *key;
|
|
|
|
char *key_type;
|
|
|
|
char *key_passwd;
|
|
|
|
char *engine;
|
1999-12-29 09:20:26 -05:00
|
|
|
bool crlf;
|
|
|
|
char *customrequest;
|
2000-09-21 04:52:08 -04:00
|
|
|
char *krb4level;
|
2002-05-03 08:14:09 -04:00
|
|
|
char *trace_dump; /* file to dump the network trace to, or NULL */
|
|
|
|
FILE *trace_stream;
|
2002-05-07 05:58:13 -04:00
|
|
|
bool trace_fopened;
|
2002-05-07 09:13:17 -04:00
|
|
|
bool trace_ascii;
|
2002-05-07 05:58:13 -04:00
|
|
|
|
2001-10-09 02:53:11 -04:00
|
|
|
long httpversion;
|
1999-12-29 09:20:26 -05:00
|
|
|
bool progressmode;
|
2000-03-02 18:06:34 -05:00
|
|
|
bool nobuffer;
|
2001-01-11 03:01:24 -05:00
|
|
|
bool globoff;
|
2001-08-15 03:22:32 -04:00
|
|
|
bool use_httpget;
|
2002-08-26 19:13:25 -04:00
|
|
|
bool insecure_ok; /* set TRUE to allow insecure SSL connects */
|
2002-12-03 03:07:52 -05:00
|
|
|
bool create_dirs;
|
2003-08-08 06:24:13 -04:00
|
|
|
bool ftp_create_dirs;
|
2003-08-11 08:23:55 -04:00
|
|
|
bool proxyntlm;
|
2004-05-03 07:56:18 -04:00
|
|
|
bool proxydigest;
|
2004-05-25 10:44:25 -04:00
|
|
|
bool proxybasic;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2000-02-15 19:05:26 -05:00
|
|
|
char *writeout; /* %-styled format string to output */
|
2002-04-08 18:48:25 -04:00
|
|
|
bool writeenv; /* write results to environment, if available */
|
2000-02-15 19:05:26 -05:00
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
FILE *errors; /* if stderr redirect is requested */
|
2002-03-08 10:18:03 -05:00
|
|
|
bool errors_fopened;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
|
|
|
struct curl_slist *quote;
|
2000-01-10 18:36:14 -05:00
|
|
|
struct curl_slist *postquote;
|
2002-02-28 18:31:23 -05:00
|
|
|
struct curl_slist *prequote;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
|
|
|
long ssl_version;
|
2003-09-22 18:29:11 -04:00
|
|
|
long ip_version;
|
2001-10-09 02:53:11 -04:00
|
|
|
curl_TimeCond timecond;
|
1999-12-29 09:20:26 -05:00
|
|
|
time_t condtime;
|
|
|
|
|
2000-06-05 04:26:13 -04:00
|
|
|
struct curl_slist *headers;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2002-03-11 10:20:56 -05:00
|
|
|
struct curl_httppost *httppost;
|
|
|
|
struct curl_httppost *last_post;
|
2000-07-25 03:34:04 -04:00
|
|
|
|
2001-02-20 12:35:51 -05:00
|
|
|
struct curl_slist *telnet_options;
|
2004-05-24 09:31:28 -04:00
|
|
|
|
2000-07-25 03:34:04 -04:00
|
|
|
HttpReq httpreq;
|
2002-06-15 17:02:11 -04:00
|
|
|
|
|
|
|
/* for bandwidth limiting features: */
|
2004-04-07 03:23:52 -04:00
|
|
|
curl_off_t sendpersecond; /* send to peer */
|
|
|
|
curl_off_t recvpersecond; /* receive from peer */
|
2004-04-06 08:06:05 -04:00
|
|
|
struct timeval lastsendtime;
|
2002-06-15 17:02:11 -04:00
|
|
|
size_t lastsendsize;
|
2004-04-06 08:06:05 -04:00
|
|
|
struct timeval lastrecvtime;
|
2002-06-15 17:02:11 -04:00
|
|
|
size_t lastrecvsize;
|
2003-11-24 06:59:15 -05:00
|
|
|
|
|
|
|
bool ftp_ssl;
|
2004-01-30 03:51:24 -05:00
|
|
|
char *socks5proxy;
|
2004-03-25 08:37:18 -05:00
|
|
|
bool tcp_nodelay;
|
1999-12-29 09:20:26 -05:00
|
|
|
};
|
|
|
|
|
2003-06-26 07:33:29 -04:00
|
|
|
/* global variable to hold info about libcurl */
|
|
|
|
static curl_version_info_data *curlinfo;
|
|
|
|
|
2004-02-12 09:46:12 -05:00
|
|
|
static void parseconfig(const char *filename,
|
|
|
|
struct Configurable *config);
|
2000-02-10 18:03:08 -05:00
|
|
|
static char *my_get_line(FILE *fp);
|
2002-12-03 03:07:52 -05:00
|
|
|
static int create_dir_hierarchy(char *outfile);
|
1999-12-29 09:20:26 -05:00
|
|
|
|
|
|
|
static void GetStr(char **string,
|
2004-10-06 03:50:18 -04:00
|
|
|
char *value)
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
|
|
|
if(*string)
|
|
|
|
free(*string);
|
2002-08-05 07:15:57 -04:00
|
|
|
if(value)
|
2000-05-22 10:12:12 -04:00
|
|
|
*string = strdup(value);
|
|
|
|
else
|
|
|
|
*string = NULL;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static char *file2string(FILE *file)
|
|
|
|
{
|
|
|
|
char buffer[256];
|
|
|
|
char *ptr;
|
|
|
|
char *string=NULL;
|
2004-03-08 07:48:09 -05:00
|
|
|
size_t len=0;
|
|
|
|
size_t stringlen;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
|
|
|
if(file) {
|
|
|
|
while(fgets(buffer, sizeof(buffer), file)) {
|
|
|
|
ptr= strchr(buffer, '\r');
|
|
|
|
if(ptr)
|
|
|
|
*ptr=0;
|
|
|
|
ptr= strchr(buffer, '\n');
|
|
|
|
if(ptr)
|
|
|
|
*ptr=0;
|
|
|
|
stringlen=strlen(buffer);
|
|
|
|
if(string)
|
|
|
|
string = realloc(string, len+stringlen+1);
|
|
|
|
else
|
|
|
|
string = malloc(stringlen+1);
|
|
|
|
|
|
|
|
strcpy(string+len, buffer);
|
|
|
|
|
|
|
|
len+=stringlen;
|
|
|
|
}
|
|
|
|
return string;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return NULL; /* no string */
|
|
|
|
}
|
|
|
|
|
2000-08-24 13:56:20 -04:00
|
|
|
static char *file2memory(FILE *file, long *size)
|
|
|
|
{
|
|
|
|
char buffer[1024];
|
|
|
|
char *string=NULL;
|
|
|
|
char *newstring=NULL;
|
2004-03-08 07:56:18 -05:00
|
|
|
size_t len=0;
|
2000-08-24 13:56:20 -04:00
|
|
|
long stringlen=0;
|
|
|
|
|
|
|
|
if(file) {
|
2000-11-21 04:38:41 -05:00
|
|
|
while((len = fread(buffer, 1, sizeof(buffer), file))) {
|
2000-08-24 13:56:20 -04:00
|
|
|
if(string) {
|
|
|
|
newstring = realloc(string, len+stringlen);
|
|
|
|
if(newstring)
|
|
|
|
string = newstring;
|
|
|
|
else
|
|
|
|
break; /* no more strings attached! :-) */
|
|
|
|
}
|
|
|
|
else
|
|
|
|
string = malloc(len);
|
|
|
|
memcpy(&string[stringlen], buffer, len);
|
|
|
|
stringlen+=len;
|
|
|
|
}
|
|
|
|
*size = stringlen;
|
|
|
|
return string;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return NULL; /* no string */
|
|
|
|
}
|
|
|
|
|
2004-01-29 08:48:36 -05:00
|
|
|
static void clean_getout(struct Configurable *config)
|
2001-01-08 10:02:58 -05:00
|
|
|
{
|
|
|
|
struct getout *node=config->url_list;
|
|
|
|
struct getout *next;
|
|
|
|
|
|
|
|
while(node) {
|
|
|
|
next = node->next;
|
|
|
|
if(node->url)
|
|
|
|
free(node->url);
|
|
|
|
if(node->outfile)
|
|
|
|
free(node->outfile);
|
2003-08-19 19:42:24 -04:00
|
|
|
if(node->infile)
|
|
|
|
free(node->infile);
|
2001-01-08 10:02:58 -05:00
|
|
|
free(node);
|
|
|
|
|
|
|
|
node = next; /* GOTO next */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-01-29 08:48:36 -05:00
|
|
|
static struct getout *new_getout(struct Configurable *config)
|
2001-01-08 02:37:44 -05:00
|
|
|
{
|
|
|
|
struct getout *node =malloc(sizeof(struct getout));
|
|
|
|
struct getout *last= config->url_last;
|
|
|
|
if(node) {
|
|
|
|
/* clear the struct */
|
|
|
|
memset(node, 0, sizeof(struct getout));
|
2004-05-24 09:31:28 -04:00
|
|
|
|
2001-01-08 02:37:44 -05:00
|
|
|
/* append this new node last in the list */
|
|
|
|
if(last)
|
|
|
|
last->next = node;
|
|
|
|
else
|
|
|
|
config->url_list = node; /* first node */
|
2004-05-24 09:31:28 -04:00
|
|
|
|
2001-01-08 02:37:44 -05:00
|
|
|
/* move the last pointer */
|
|
|
|
config->url_last = node;
|
|
|
|
}
|
|
|
|
return node;
|
|
|
|
}
|
|
|
|
|
2001-10-03 04:00:12 -04:00
|
|
|
/* Structure for storing the information needed to build a multiple files
|
|
|
|
* section
|
|
|
|
*/
|
|
|
|
struct multi_files {
|
|
|
|
struct curl_forms form;
|
|
|
|
struct multi_files *next;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Add a new list entry possibly with a type_name
|
|
|
|
*/
|
2002-03-11 10:20:56 -05:00
|
|
|
static struct multi_files *
|
|
|
|
AddMultiFiles (const char *file_name,
|
|
|
|
const char *type_name,
|
|
|
|
const char *show_filename,
|
|
|
|
struct multi_files **multi_start,
|
|
|
|
struct multi_files **multi_current)
|
2001-10-03 04:00:12 -04:00
|
|
|
{
|
|
|
|
struct multi_files *multi;
|
|
|
|
struct multi_files *multi_type = NULL;
|
2002-03-11 10:20:56 -05:00
|
|
|
struct multi_files *multi_name = NULL;
|
2001-10-03 04:00:12 -04:00
|
|
|
multi = (struct multi_files *)malloc(sizeof(struct multi_files));
|
|
|
|
if (multi) {
|
|
|
|
memset(multi, 0, sizeof(struct multi_files));
|
|
|
|
multi->form.option = CURLFORM_FILE;
|
|
|
|
multi->form.value = file_name;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return NULL;
|
2002-03-11 10:20:56 -05:00
|
|
|
|
|
|
|
if (!*multi_start)
|
|
|
|
*multi_start = multi;
|
|
|
|
|
2001-10-03 04:00:12 -04:00
|
|
|
if (type_name) {
|
|
|
|
multi_type = (struct multi_files *)malloc(sizeof(struct multi_files));
|
|
|
|
if (multi_type) {
|
|
|
|
memset(multi_type, 0, sizeof(struct multi_files));
|
|
|
|
multi_type->form.option = CURLFORM_CONTENTTYPE;
|
|
|
|
multi_type->form.value = type_name;
|
|
|
|
multi->next = multi_type;
|
2002-03-11 10:20:56 -05:00
|
|
|
|
|
|
|
multi = multi_type;
|
2001-10-03 04:00:12 -04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
free (multi);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
2002-03-11 10:20:56 -05:00
|
|
|
if (show_filename) {
|
|
|
|
multi_name = (struct multi_files *)malloc(sizeof(struct multi_files));
|
|
|
|
if (multi_name) {
|
|
|
|
memset(multi_name, 0, sizeof(struct multi_files));
|
|
|
|
multi_name->form.option = CURLFORM_FILENAME;
|
|
|
|
multi_name->form.value = show_filename;
|
|
|
|
multi->next = multi_name;
|
|
|
|
|
|
|
|
multi = multi_name;
|
2001-10-03 04:00:12 -04:00
|
|
|
}
|
|
|
|
else {
|
2002-03-11 10:20:56 -05:00
|
|
|
free (multi);
|
|
|
|
return NULL;
|
2001-10-03 04:00:12 -04:00
|
|
|
}
|
|
|
|
}
|
2002-03-11 10:20:56 -05:00
|
|
|
|
|
|
|
if (*multi_current)
|
|
|
|
(*multi_current)->next = multi;
|
|
|
|
|
|
|
|
*multi_current = multi;
|
|
|
|
|
2001-10-03 04:00:12 -04:00
|
|
|
return *multi_current;
|
|
|
|
}
|
2001-01-08 02:37:44 -05:00
|
|
|
|
2001-10-03 04:00:12 -04:00
|
|
|
/* Free the items of the list.
|
|
|
|
*/
|
2002-03-11 10:20:56 -05:00
|
|
|
static void FreeMultiInfo (struct multi_files *multi_start)
|
2001-10-03 04:00:12 -04:00
|
|
|
{
|
|
|
|
struct multi_files *multi;
|
2002-03-11 10:20:56 -05:00
|
|
|
while (multi_start) {
|
|
|
|
multi = multi_start;
|
|
|
|
multi_start = multi_start->next;
|
2001-10-03 04:00:12 -04:00
|
|
|
free (multi);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/***************************************************************************
|
|
|
|
*
|
|
|
|
* formparse()
|
2004-05-24 09:31:28 -04:00
|
|
|
*
|
2001-10-03 04:00:12 -04:00
|
|
|
* Reads a 'name=value' paramter and builds the appropriate linked list.
|
|
|
|
*
|
|
|
|
* Specify files to upload with 'name=@filename'. Supports specified
|
|
|
|
* given Content-Type of the files. Such as ';type=<content-type>'.
|
|
|
|
*
|
|
|
|
* You may specify more than one file for a single name (field). Specify
|
|
|
|
* multiple files by writing it like:
|
|
|
|
*
|
|
|
|
* 'name=@filename,filename2,filename3'
|
|
|
|
*
|
|
|
|
* If you want content-types specified for each too, write them like:
|
|
|
|
*
|
|
|
|
* 'name=@filename;type=image/gif,filename2,filename3'
|
|
|
|
*
|
2002-03-11 10:20:56 -05:00
|
|
|
* If you want custom headers added for a single part, write them in a separate
|
|
|
|
* file and do like this:
|
|
|
|
*
|
|
|
|
* 'name=foo;headers=@headerfile' or why not
|
|
|
|
* 'name=@filemame;headers=@headerfile'
|
|
|
|
*
|
|
|
|
* To upload a file, but to fake the file name that will be included in the
|
|
|
|
* formpost, do like this:
|
|
|
|
*
|
|
|
|
* 'name=@filename;filename=/dev/null'
|
|
|
|
*
|
|
|
|
* This function uses curl_formadd to fulfill it's job. Is heavily based on
|
|
|
|
* the old curl_formparse code.
|
2001-10-03 04:00:12 -04:00
|
|
|
*
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#define FORM_FILE_SEPARATOR ','
|
|
|
|
#define FORM_TYPE_SEPARATOR ';'
|
|
|
|
|
|
|
|
static int formparse(char *input,
|
2002-03-11 10:20:56 -05:00
|
|
|
struct curl_httppost **httppost,
|
|
|
|
struct curl_httppost **last_post)
|
2001-10-03 04:00:12 -04:00
|
|
|
{
|
|
|
|
/* nextarg MUST be a string in the format 'name=contents' and we'll
|
|
|
|
build a linked list with the info */
|
|
|
|
char name[256];
|
|
|
|
char *contents;
|
|
|
|
char major[128];
|
|
|
|
char minor[128];
|
|
|
|
char *contp;
|
|
|
|
const char *type = NULL;
|
|
|
|
char *sep;
|
|
|
|
char *sep2;
|
|
|
|
|
2004-04-30 02:45:53 -04:00
|
|
|
if((1 == sscanf(input, "%255[^=]=", name)) &&
|
|
|
|
(contp = strchr(input, '='))) {
|
2001-10-03 04:00:12 -04:00
|
|
|
/* the input was using the correct format */
|
2004-05-24 09:31:28 -04:00
|
|
|
|
2004-04-30 02:45:53 -04:00
|
|
|
/* Allocate the contents */
|
|
|
|
contents = strdup(contp+1);
|
2004-05-10 10:45:11 -04:00
|
|
|
if(!contents) {
|
|
|
|
fprintf(stderr, "out of memory\n");
|
|
|
|
return 1;
|
|
|
|
}
|
2001-10-03 04:00:12 -04:00
|
|
|
contp = contents;
|
|
|
|
|
|
|
|
if('@' == contp[0]) {
|
|
|
|
struct multi_files *multi_start = NULL, *multi_current = NULL;
|
|
|
|
/* we use the @-letter to indicate file name(s) */
|
|
|
|
contp++;
|
|
|
|
|
|
|
|
multi_start = multi_current=NULL;
|
|
|
|
|
|
|
|
do {
|
2004-10-06 03:50:18 -04:00
|
|
|
/* since this was a file, it may have a content-type specifier
|
|
|
|
at the end too, or a filename. Or both. */
|
2002-03-11 10:20:56 -05:00
|
|
|
char *ptr;
|
|
|
|
char *filename=NULL;
|
2001-10-03 04:00:12 -04:00
|
|
|
|
2004-10-06 03:50:18 -04:00
|
|
|
sep=strchr(contp, FORM_TYPE_SEPARATOR);
|
|
|
|
sep2=strchr(contp, FORM_FILE_SEPARATOR);
|
2001-10-03 04:00:12 -04:00
|
|
|
|
2004-10-06 03:50:18 -04:00
|
|
|
/* pick the closest */
|
|
|
|
if(sep2 && (sep2 < sep)) {
|
|
|
|
sep = sep2;
|
2001-10-03 04:00:12 -04:00
|
|
|
|
2004-10-06 03:50:18 -04:00
|
|
|
/* no type was specified! */
|
|
|
|
}
|
2002-03-11 10:20:56 -05:00
|
|
|
|
|
|
|
type = NULL;
|
|
|
|
|
2004-10-06 03:50:18 -04:00
|
|
|
if(sep) {
|
2001-10-03 04:00:12 -04:00
|
|
|
|
2004-10-06 03:50:18 -04:00
|
|
|
/* if we got here on a comma, don't do much */
|
|
|
|
if(FORM_FILE_SEPARATOR == *sep)
|
|
|
|
ptr = NULL;
|
|
|
|
else
|
2002-03-11 10:20:56 -05:00
|
|
|
ptr = sep+1;
|
2001-10-03 04:00:12 -04:00
|
|
|
|
2004-10-06 03:50:18 -04:00
|
|
|
*sep=0; /* terminate file name at separator */
|
2001-10-03 04:00:12 -04:00
|
|
|
|
2004-10-06 03:50:18 -04:00
|
|
|
while(ptr && (FORM_FILE_SEPARATOR!= *ptr)) {
|
2002-03-11 10:20:56 -05:00
|
|
|
|
|
|
|
/* pass all white spaces */
|
|
|
|
while(isspace((int)*ptr))
|
|
|
|
ptr++;
|
|
|
|
|
2004-04-30 04:23:50 -04:00
|
|
|
if(curlx_strnequal("type=", ptr, 5)) {
|
2002-03-11 10:20:56 -05:00
|
|
|
|
|
|
|
/* set type pointer */
|
|
|
|
type = &ptr[5];
|
2004-05-24 09:31:28 -04:00
|
|
|
|
2002-03-11 10:20:56 -05:00
|
|
|
/* verify that this is a fine type specifier */
|
|
|
|
if(2 != sscanf(type, "%127[^/]/%127[^;,\n]",
|
|
|
|
major, minor)) {
|
|
|
|
fprintf(stderr, "Illegally formatted content-type field!\n");
|
|
|
|
free(contents);
|
|
|
|
FreeMultiInfo (multi_start);
|
|
|
|
return 2; /* illegal content-type syntax! */
|
|
|
|
}
|
|
|
|
/* now point beyond the content-type specifier */
|
|
|
|
sep = (char *)type + strlen(major)+strlen(minor)+1;
|
|
|
|
|
|
|
|
*sep=0; /* zero terminate type string */
|
|
|
|
|
|
|
|
ptr=sep+1;
|
|
|
|
}
|
2004-04-30 04:23:50 -04:00
|
|
|
else if(curlx_strnequal("filename=", ptr, 9)) {
|
2002-03-11 10:20:56 -05:00
|
|
|
filename = &ptr[9];
|
|
|
|
ptr=strchr(filename, FORM_TYPE_SEPARATOR);
|
|
|
|
if(!ptr) {
|
|
|
|
ptr=strchr(filename, FORM_FILE_SEPARATOR);
|
|
|
|
}
|
|
|
|
if(ptr) {
|
|
|
|
*ptr=0; /* zero terminate */
|
|
|
|
ptr++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
/* confusion, bail out of loop */
|
|
|
|
break;
|
2004-10-06 03:50:18 -04:00
|
|
|
}
|
2002-03-11 10:20:56 -05:00
|
|
|
/* find the following comma */
|
|
|
|
if(ptr)
|
|
|
|
sep=strchr(ptr, FORM_FILE_SEPARATOR);
|
|
|
|
else
|
|
|
|
sep=NULL;
|
2004-10-06 03:50:18 -04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
sep=strchr(contp, FORM_FILE_SEPARATOR);
|
|
|
|
}
|
|
|
|
if(sep) {
|
|
|
|
/* the next file name starts here */
|
|
|
|
*sep =0;
|
|
|
|
sep++;
|
|
|
|
}
|
2001-10-03 04:00:12 -04:00
|
|
|
/* if type == NULL curl_formadd takes care of the problem */
|
|
|
|
|
2002-03-11 10:20:56 -05:00
|
|
|
if (!AddMultiFiles (contp, type, filename, &multi_start,
|
|
|
|
&multi_current)) {
|
2001-10-03 04:00:12 -04:00
|
|
|
fprintf(stderr, "Error building form post!\n");
|
|
|
|
free(contents);
|
2002-03-11 10:20:56 -05:00
|
|
|
FreeMultiInfo (multi_start);
|
2001-10-03 04:00:12 -04:00
|
|
|
return 3;
|
|
|
|
}
|
2004-10-06 03:50:18 -04:00
|
|
|
contp = sep; /* move the contents pointer to after the separator */
|
2002-03-11 10:20:56 -05:00
|
|
|
|
2001-10-03 04:00:12 -04:00
|
|
|
} while(sep && *sep); /* loop if there's another file name */
|
2002-03-11 10:20:56 -05:00
|
|
|
|
2001-10-03 04:00:12 -04:00
|
|
|
/* now we add the multiple files section */
|
|
|
|
if (multi_start) {
|
|
|
|
struct curl_forms *forms = NULL;
|
|
|
|
struct multi_files *ptr = multi_start;
|
|
|
|
unsigned int i, count = 0;
|
|
|
|
while (ptr) {
|
|
|
|
ptr = ptr->next;
|
|
|
|
++count;
|
|
|
|
}
|
|
|
|
forms =
|
|
|
|
(struct curl_forms *)malloc((count+1)*sizeof(struct curl_forms));
|
|
|
|
if (!forms)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "Error building form post!\n");
|
|
|
|
free(contents);
|
2002-03-11 10:20:56 -05:00
|
|
|
FreeMultiInfo (multi_start);
|
2001-10-03 04:00:12 -04:00
|
|
|
return 4;
|
|
|
|
}
|
|
|
|
for (i = 0, ptr = multi_start; i < count; ++i, ptr = ptr->next)
|
|
|
|
{
|
|
|
|
forms[i].option = ptr->form.option;
|
|
|
|
forms[i].value = ptr->form.value;
|
|
|
|
}
|
|
|
|
forms[count].option = CURLFORM_END;
|
2002-03-11 10:20:56 -05:00
|
|
|
FreeMultiInfo (multi_start);
|
2004-04-30 04:23:50 -04:00
|
|
|
if (curl_formadd(httppost, last_post,
|
|
|
|
CURLFORM_COPYNAME, name,
|
|
|
|
CURLFORM_ARRAY, forms, CURLFORM_END) != 0) {
|
2001-10-03 04:00:12 -04:00
|
|
|
fprintf(stderr, "curl_formadd failed!\n");
|
|
|
|
free(forms);
|
|
|
|
free(contents);
|
|
|
|
return 5;
|
|
|
|
}
|
|
|
|
free(forms);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2004-09-10 17:47:52 -04:00
|
|
|
struct curl_forms info[4];
|
|
|
|
int i = 0;
|
|
|
|
char *ct = strstr(contp, ";type=");
|
|
|
|
|
|
|
|
info[i].option = CURLFORM_COPYNAME;
|
|
|
|
info[i].value = name;
|
|
|
|
i++;
|
|
|
|
|
|
|
|
if(ct) {
|
|
|
|
info[i].option = CURLFORM_CONTENTTYPE;
|
|
|
|
info[i].value = &ct[6];
|
|
|
|
i++;
|
|
|
|
ct[0]=0; /* zero terminate here */
|
|
|
|
}
|
|
|
|
|
2001-10-03 04:00:12 -04:00
|
|
|
if( contp[0]=='<' ) {
|
2004-09-10 17:47:52 -04:00
|
|
|
info[i].option = CURLFORM_FILECONTENT;
|
|
|
|
info[i].value = contp+1;
|
|
|
|
i++;
|
|
|
|
info[i].option = CURLFORM_END;
|
|
|
|
|
2004-04-30 04:23:50 -04:00
|
|
|
if (curl_formadd(httppost, last_post,
|
2004-09-10 17:47:52 -04:00
|
|
|
CURLFORM_ARRAY, info, CURLFORM_END ) != 0) {
|
|
|
|
fprintf(stderr, "curl_formadd failed, possibly the file %s is bad!\n",
|
|
|
|
contp+1);
|
2001-10-03 04:00:12 -04:00
|
|
|
free(contents);
|
|
|
|
return 6;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2004-09-10 17:47:52 -04:00
|
|
|
info[i].option = CURLFORM_COPYCONTENTS;
|
|
|
|
info[i].value = contp;
|
|
|
|
i++;
|
|
|
|
info[i].option = CURLFORM_END;
|
2004-04-30 04:23:50 -04:00
|
|
|
if (curl_formadd(httppost, last_post,
|
2004-09-10 17:47:52 -04:00
|
|
|
CURLFORM_ARRAY, info, CURLFORM_END) != 0) {
|
2001-10-03 04:00:12 -04:00
|
|
|
fprintf(stderr, "curl_formadd failed!\n");
|
|
|
|
free(contents);
|
|
|
|
return 7;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
fprintf(stderr, "Illegally formatted input field!\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
free(contents);
|
|
|
|
return 0;
|
|
|
|
}
|
2001-01-08 02:37:44 -05:00
|
|
|
|
|
|
|
|
2000-11-17 04:47:18 -05:00
|
|
|
typedef enum {
|
|
|
|
PARAM_OK,
|
|
|
|
PARAM_OPTION_AMBIGUOUS,
|
|
|
|
PARAM_OPTION_UNKNOWN,
|
2004-05-24 09:31:28 -04:00
|
|
|
PARAM_REQUIRES_PARAMETER,
|
2000-11-17 04:47:18 -05:00
|
|
|
PARAM_BAD_USE,
|
|
|
|
PARAM_HELP_REQUESTED,
|
|
|
|
PARAM_GOT_EXTRA_PARAMETER,
|
2003-10-31 04:22:25 -05:00
|
|
|
PARAM_BAD_NUMERIC,
|
2003-11-06 09:16:16 -05:00
|
|
|
PARAM_LIBCURL_DOESNT_SUPPORT,
|
2004-05-10 10:04:35 -04:00
|
|
|
PARAM_NO_MEM,
|
2000-11-17 04:47:18 -05:00
|
|
|
PARAM_LAST
|
|
|
|
} ParameterError;
|
|
|
|
|
2004-02-09 03:31:52 -05:00
|
|
|
static const char *param2text(int res)
|
2003-11-06 09:16:16 -05:00
|
|
|
{
|
2004-02-09 03:31:52 -05:00
|
|
|
ParameterError error = (ParameterError)res;
|
2003-11-06 09:16:16 -05:00
|
|
|
switch(error) {
|
|
|
|
case PARAM_GOT_EXTRA_PARAMETER:
|
|
|
|
return "had unsupported trailing garbage";
|
|
|
|
case PARAM_OPTION_UNKNOWN:
|
|
|
|
return "is unknown";
|
|
|
|
case PARAM_OPTION_AMBIGUOUS:
|
|
|
|
return "is ambiguous";
|
|
|
|
case PARAM_REQUIRES_PARAMETER:
|
|
|
|
return "requires parameter";
|
|
|
|
case PARAM_BAD_USE:
|
|
|
|
return "is badly used here";
|
|
|
|
case PARAM_BAD_NUMERIC:
|
|
|
|
return "expected a proper numerical parameter";
|
|
|
|
case PARAM_LIBCURL_DOESNT_SUPPORT:
|
|
|
|
return "the installed libcurl version doesn't support this";
|
2004-05-10 10:04:35 -04:00
|
|
|
case PARAM_NO_MEM:
|
|
|
|
return "out of memory";
|
2003-11-06 09:16:16 -05:00
|
|
|
default:
|
|
|
|
return "unknown error";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-01-29 08:16:03 -05:00
|
|
|
static void cleanarg(char *str)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_WRITABLE_ARGV
|
|
|
|
/* now that GetStr has copied the contents of nextarg, wipe the next
|
|
|
|
* argument out so that the username:password isn't displayed in the
|
|
|
|
* system process list */
|
|
|
|
if (str) {
|
|
|
|
size_t len = strlen(str);
|
|
|
|
memset(str, ' ', len);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
(void)str;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2003-10-31 04:22:25 -05:00
|
|
|
/*
|
|
|
|
* Parse the string and write the integer in the given address. Return
|
|
|
|
* non-zero on failure, zero on success.
|
|
|
|
*
|
|
|
|
* The string must start with a digit to be valid.
|
|
|
|
*/
|
|
|
|
|
2003-10-31 04:49:10 -05:00
|
|
|
static int str2num(long *val, char *str)
|
2003-10-31 04:22:25 -05:00
|
|
|
{
|
|
|
|
int retcode = 0;
|
|
|
|
if(isdigit((int)*str))
|
|
|
|
*val = atoi(str);
|
|
|
|
else
|
|
|
|
retcode = 1; /* badness */
|
2004-05-24 09:31:28 -04:00
|
|
|
return retcode;
|
2003-10-31 04:22:25 -05:00
|
|
|
}
|
|
|
|
|
2004-01-05 17:29:29 -05:00
|
|
|
/**
|
|
|
|
* Parses the given string looking for an offset (which may be
|
|
|
|
* a larger-than-integer value).
|
|
|
|
*
|
|
|
|
* @param val the offset to populate
|
|
|
|
* @param str the buffer containing the offset
|
|
|
|
* @return zero if successful, non-zero if failure.
|
|
|
|
*/
|
2004-01-22 07:46:07 -05:00
|
|
|
static int str2offset(curl_off_t *val, char *str)
|
2004-01-05 17:29:29 -05:00
|
|
|
{
|
2004-01-22 07:46:07 -05:00
|
|
|
#if SIZEOF_CURL_OFF_T > 4
|
2004-01-15 02:09:23 -05:00
|
|
|
/* Ugly, but without going through a bunch of rigmarole, we don't have the
|
|
|
|
* definitions for LLONG_{MIN,MAX} or LONG_LONG_{MIN,MAX}.
|
2004-01-05 17:29:29 -05:00
|
|
|
*/
|
|
|
|
#ifndef LLONG_MAX
|
2004-02-26 11:23:28 -05:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#define LLONG_MAX (curl_off_t)0x7FFFFFFFFFFFFFFFi64
|
|
|
|
#define LLONG_MIN (curl_off_t)0x8000000000000000i64
|
|
|
|
#else
|
2004-01-22 07:46:07 -05:00
|
|
|
#define LLONG_MAX (curl_off_t)0x7FFFFFFFFFFFFFFFLL
|
|
|
|
#define LLONG_MIN (curl_off_t)0x8000000000000000LL
|
2004-02-26 11:23:28 -05:00
|
|
|
#endif
|
2004-01-05 17:29:29 -05:00
|
|
|
#endif
|
|
|
|
|
2004-01-23 07:50:53 -05:00
|
|
|
/* this is a duplicate of the function that is also used in libcurl */
|
2004-04-07 03:30:40 -04:00
|
|
|
*val = curlx_strtoofft(str, NULL, 0);
|
2004-01-05 17:29:29 -05:00
|
|
|
|
|
|
|
if ((*val == LLONG_MAX || *val == LLONG_MIN) && errno == ERANGE)
|
|
|
|
return 1;
|
|
|
|
#else
|
|
|
|
*val = strtol(str, NULL, 0);
|
|
|
|
if ((*val == LONG_MIN || *val == LONG_MAX) && errno == ERANGE)
|
|
|
|
return 1;
|
|
|
|
#endif
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-10-17 03:04:56 -04:00
|
|
|
static void checkpasswd(const char *kind, /* for what purpose */
|
|
|
|
char **userpwd) /* pointer to allocated string */
|
2003-10-16 10:09:39 -04:00
|
|
|
{
|
2004-05-10 05:16:21 -04:00
|
|
|
char *ptr;
|
|
|
|
if(!*userpwd)
|
|
|
|
return;
|
|
|
|
|
|
|
|
ptr = strchr(*userpwd, ':');
|
2003-10-16 10:09:39 -04:00
|
|
|
if(!ptr) {
|
|
|
|
/* no password present, prompt for one */
|
|
|
|
char passwd[256]="";
|
2003-10-17 03:04:56 -04:00
|
|
|
char prompt[256];
|
2004-03-08 07:48:09 -05:00
|
|
|
size_t passwdlen;
|
|
|
|
size_t userlen = strlen(*userpwd);
|
2004-01-29 08:48:36 -05:00
|
|
|
char *passptr;
|
2003-10-16 10:09:39 -04:00
|
|
|
|
2003-10-17 03:04:56 -04:00
|
|
|
/* build a nice-looking prompt */
|
2004-04-30 04:23:50 -04:00
|
|
|
curlx_msnprintf(prompt, sizeof(prompt),
|
2003-10-17 03:04:56 -04:00
|
|
|
"Enter %s password for user '%s':",
|
|
|
|
kind, *userpwd);
|
|
|
|
|
|
|
|
/* get password */
|
2003-10-16 10:09:39 -04:00
|
|
|
getpass_r(prompt, passwd, sizeof(passwd));
|
|
|
|
passwdlen = strlen(passwd);
|
|
|
|
|
2004-01-29 08:48:36 -05:00
|
|
|
/* extend the allocated memory area to fit the password too */
|
|
|
|
passptr = realloc(*userpwd,
|
|
|
|
passwdlen + 1 + /* an extra for the colon */
|
|
|
|
userlen + 1); /* an extra for the zero */
|
2003-10-16 10:09:39 -04:00
|
|
|
|
2004-01-29 08:48:36 -05:00
|
|
|
if(passptr) {
|
2003-10-17 03:04:56 -04:00
|
|
|
/* append the password separated with a colon */
|
2004-01-29 08:48:36 -05:00
|
|
|
passptr[userlen]=':';
|
|
|
|
memcpy(&passptr[userlen+1], passwd, passwdlen+1);
|
|
|
|
*userpwd = passptr;
|
2003-10-16 10:09:39 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-05-10 10:04:35 -04:00
|
|
|
static ParameterError add2list(struct curl_slist **list,
|
|
|
|
char *ptr)
|
|
|
|
{
|
|
|
|
struct curl_slist *newlist = curl_slist_append(*list, ptr);
|
|
|
|
if(newlist)
|
|
|
|
*list = newlist;
|
|
|
|
else
|
|
|
|
return PARAM_NO_MEM;
|
|
|
|
|
|
|
|
return PARAM_OK;
|
|
|
|
}
|
|
|
|
|
2000-11-17 04:47:18 -05:00
|
|
|
static ParameterError getparameter(char *flag, /* f or -long-flag */
|
|
|
|
char *nextarg, /* NULL if unset */
|
|
|
|
bool *usedarg, /* set to TRUE if the arg
|
|
|
|
has been used */
|
|
|
|
struct Configurable *config)
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
|
|
|
char letter;
|
2000-08-24 13:56:20 -04:00
|
|
|
char subletter=0; /* subletters can only occur on long options */
|
|
|
|
|
2001-08-14 05:16:46 -04:00
|
|
|
const char *parse=NULL;
|
|
|
|
unsigned int j;
|
1999-12-29 09:20:26 -05:00
|
|
|
time_t now;
|
|
|
|
int hit=-1;
|
2000-08-24 13:56:20 -04:00
|
|
|
bool longopt=FALSE;
|
2001-01-10 18:42:03 -05:00
|
|
|
bool singleopt=FALSE; /* when true means '-o foo' used '-ofoo' */
|
2004-05-10 10:04:35 -04:00
|
|
|
ParameterError err;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
|
|
|
/* single-letter,
|
|
|
|
long-name,
|
|
|
|
boolean whether it takes an additional argument
|
|
|
|
*/
|
|
|
|
struct LongShort aliases[]= {
|
2003-11-24 06:59:15 -05:00
|
|
|
/* all these ones, starting with "*" or "$" as a short-option have *no*
|
|
|
|
short option to mention. */
|
2003-09-22 18:29:11 -04:00
|
|
|
{"*", "url", TRUE},
|
|
|
|
{"*a", "random-file", TRUE},
|
|
|
|
{"*b", "egd-file", TRUE},
|
|
|
|
{"*c", "connect-timeout", TRUE},
|
|
|
|
{"*d", "ciphers", TRUE},
|
|
|
|
{"*e", "disable-epsv", FALSE},
|
2002-04-08 18:48:25 -04:00
|
|
|
#ifdef USE_ENVIRONMENT
|
2003-09-22 18:29:11 -04:00
|
|
|
{"*f", "environment", FALSE},
|
2002-04-08 18:48:25 -04:00
|
|
|
#endif
|
2003-09-22 18:29:11 -04:00
|
|
|
{"*g", "trace", TRUE},
|
|
|
|
{"*h", "trace-ascii", TRUE},
|
|
|
|
{"*i", "limit-rate", TRUE},
|
|
|
|
{"*j", "compressed", FALSE}, /* might take an arg someday */
|
|
|
|
{"*k", "digest", FALSE},
|
|
|
|
{"*l", "negotiate", FALSE},
|
|
|
|
{"*m", "ntlm", FALSE},
|
|
|
|
{"*n", "basic", FALSE},
|
|
|
|
{"*o", "anyauth", FALSE},
|
2003-07-05 09:13:49 -04:00
|
|
|
#ifdef __DJGPP__
|
2003-09-22 18:29:11 -04:00
|
|
|
{"*p", "wdebug", FALSE},
|
2003-07-05 09:13:49 -04:00
|
|
|
#endif
|
2003-11-24 06:59:15 -05:00
|
|
|
{"*q", "ftp-create-dirs", FALSE},
|
2003-09-22 18:29:11 -04:00
|
|
|
{"*r", "create-dirs", FALSE},
|
|
|
|
{"*s", "max-redirs", TRUE},
|
|
|
|
{"*t", "proxy-ntlm", FALSE},
|
|
|
|
{"*u", "crlf", FALSE},
|
|
|
|
{"*v", "stderr", TRUE},
|
|
|
|
{"*w", "interface", TRUE},
|
|
|
|
{"*x", "krb4", TRUE},
|
2003-10-17 09:11:00 -04:00
|
|
|
{"*y", "max-filesize", TRUE},
|
2003-10-22 07:56:08 -04:00
|
|
|
{"*z", "disable-eprt", FALSE},
|
2003-11-24 06:59:15 -05:00
|
|
|
{"$a", "ftp-ssl", FALSE},
|
2003-12-02 13:01:08 -05:00
|
|
|
{"$b", "ftp-pasv", FALSE},
|
2004-01-30 03:51:24 -05:00
|
|
|
{"$c", "socks5", TRUE},
|
2004-03-25 08:37:18 -05:00
|
|
|
{"$d", "tcp-nodelay",FALSE},
|
2004-05-25 10:44:25 -04:00
|
|
|
{"$e", "proxy-digest", FALSE},
|
|
|
|
{"$f", "proxy-basic", FALSE},
|
2001-10-09 02:53:11 -04:00
|
|
|
{"0", "http1.0", FALSE},
|
2001-11-05 09:08:27 -05:00
|
|
|
{"1", "tlsv1", FALSE},
|
1999-12-29 09:20:26 -05:00
|
|
|
{"2", "sslv2", FALSE},
|
|
|
|
{"3", "sslv3", FALSE},
|
2003-09-22 18:29:11 -04:00
|
|
|
{"4", "ipv4", FALSE},
|
|
|
|
{"6", "ipv6", FALSE},
|
1999-12-29 09:20:26 -05:00
|
|
|
{"a", "append", FALSE},
|
|
|
|
{"A", "user-agent", TRUE},
|
|
|
|
{"b", "cookie", TRUE},
|
2000-06-14 08:50:38 -04:00
|
|
|
{"B", "use-ascii", FALSE},
|
2001-08-29 05:32:35 -04:00
|
|
|
{"c", "cookie-jar", TRUE},
|
1999-12-29 09:20:26 -05:00
|
|
|
{"C", "continue-at", TRUE},
|
|
|
|
{"d", "data", TRUE},
|
2000-08-24 13:56:20 -04:00
|
|
|
{"da", "data-ascii", TRUE},
|
|
|
|
{"db", "data-binary", TRUE},
|
1999-12-29 09:20:26 -05:00
|
|
|
{"D", "dump-header", TRUE},
|
|
|
|
{"e", "referer", TRUE},
|
|
|
|
{"E", "cert", TRUE},
|
2000-11-22 08:51:11 -05:00
|
|
|
{"Ea", "cacert", TRUE},
|
2001-12-17 18:01:39 -05:00
|
|
|
{"Eb","cert-type", TRUE},
|
|
|
|
{"Ec","key", TRUE},
|
|
|
|
{"Ed","key-type", TRUE},
|
|
|
|
{"Ee","pass", TRUE},
|
|
|
|
{"Ef","engine", TRUE},
|
2002-05-28 05:21:29 -04:00
|
|
|
{"Eg","capath ", TRUE},
|
1999-12-29 09:20:26 -05:00
|
|
|
{"f", "fail", FALSE},
|
|
|
|
{"F", "form", TRUE},
|
2001-01-11 03:01:24 -05:00
|
|
|
{"g", "globoff", FALSE},
|
2001-08-15 03:22:32 -04:00
|
|
|
{"G", "get", FALSE},
|
1999-12-29 09:20:26 -05:00
|
|
|
{"h", "help", FALSE},
|
|
|
|
{"H", "header", TRUE},
|
|
|
|
{"i", "include", FALSE},
|
|
|
|
{"I", "head", FALSE},
|
2002-05-07 05:58:13 -04:00
|
|
|
{"j", "junk-session-cookies", FALSE},
|
2002-08-26 19:13:25 -04:00
|
|
|
{"k", "insecure", FALSE},
|
1999-12-29 09:20:26 -05:00
|
|
|
{"K", "config", TRUE},
|
|
|
|
{"l", "list-only", FALSE},
|
|
|
|
{"L", "location", FALSE},
|
2003-03-30 23:42:20 -05:00
|
|
|
{"Lt", "location-trusted", FALSE},
|
1999-12-29 09:20:26 -05:00
|
|
|
{"m", "max-time", TRUE},
|
|
|
|
{"M", "manual", FALSE},
|
|
|
|
{"n", "netrc", FALSE},
|
2002-05-21 18:18:34 -04:00
|
|
|
{"no", "netrc-optional", FALSE},
|
2000-03-02 18:06:34 -05:00
|
|
|
{"N", "no-buffer", FALSE},
|
1999-12-29 09:20:26 -05:00
|
|
|
{"o", "output", TRUE},
|
|
|
|
{"O", "remote-name", FALSE},
|
2000-09-15 02:11:46 -04:00
|
|
|
{"p", "proxytunnel", FALSE},
|
2003-12-02 13:01:08 -05:00
|
|
|
{"P", "ftpport", TRUE}, /* older version */
|
|
|
|
{"P", "ftp-port", TRUE},
|
1999-12-29 09:20:26 -05:00
|
|
|
{"q", "disable", FALSE},
|
|
|
|
{"Q", "quote", TRUE},
|
|
|
|
{"r", "range", TRUE},
|
2001-09-03 08:00:08 -04:00
|
|
|
{"R", "remote-time", FALSE},
|
1999-12-29 09:20:26 -05:00
|
|
|
{"s", "silent", FALSE},
|
|
|
|
{"S", "show-error", FALSE},
|
2001-02-20 12:35:51 -05:00
|
|
|
{"t", "telnet-options", TRUE},
|
1999-12-29 09:20:26 -05:00
|
|
|
{"T", "upload-file", TRUE},
|
|
|
|
{"u", "user", TRUE},
|
|
|
|
{"U", "proxy-user", TRUE},
|
|
|
|
{"v", "verbose", FALSE},
|
|
|
|
{"V", "version", FALSE},
|
2000-02-15 19:05:26 -05:00
|
|
|
{"w", "write-out", TRUE},
|
1999-12-29 09:20:26 -05:00
|
|
|
{"x", "proxy", TRUE},
|
|
|
|
{"X", "request", TRUE},
|
|
|
|
{"X", "http-request", TRUE}, /* OBSOLETE VERSION */
|
2000-01-31 17:21:10 -05:00
|
|
|
{"Y", "speed-limit", TRUE},
|
|
|
|
{"y", "speed-time", TRUE},
|
1999-12-29 09:20:26 -05:00
|
|
|
{"z", "time-cond", TRUE},
|
|
|
|
{"#", "progress-bar",FALSE},
|
|
|
|
};
|
|
|
|
|
2000-11-17 04:47:18 -05:00
|
|
|
if(('-' != flag[0]) ||
|
|
|
|
(('-' == flag[0]) && ('-' == flag[1]))) {
|
|
|
|
/* this should be a long name */
|
|
|
|
char *word=('-' == flag[0])?flag+2:flag;
|
2004-03-08 07:48:09 -05:00
|
|
|
size_t fnam=strlen(word);
|
2000-10-06 08:45:05 -04:00
|
|
|
int numhits=0;
|
1999-12-29 09:20:26 -05:00
|
|
|
for(j=0; j< sizeof(aliases)/sizeof(aliases[0]); j++) {
|
2004-04-30 04:23:50 -04:00
|
|
|
if(curlx_strnequal(aliases[j].lname, word, fnam)) {
|
2000-08-24 13:56:20 -04:00
|
|
|
longopt = TRUE;
|
2000-10-06 08:45:05 -04:00
|
|
|
numhits++;
|
2004-04-30 04:23:50 -04:00
|
|
|
if(curlx_strequal(aliases[j].lname, word)) {
|
1999-12-29 09:20:26 -05:00
|
|
|
parse = aliases[j].letter;
|
|
|
|
hit = j;
|
2000-10-06 08:45:05 -04:00
|
|
|
numhits = 1; /* a single unique hit */
|
1999-12-29 09:20:26 -05:00
|
|
|
break;
|
|
|
|
}
|
2004-10-06 03:50:18 -04:00
|
|
|
parse = aliases[j].letter;
|
|
|
|
hit = j;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
}
|
2000-10-06 08:45:05 -04:00
|
|
|
if(numhits>1) {
|
|
|
|
/* this is at least the second match! */
|
2000-11-17 04:47:18 -05:00
|
|
|
return PARAM_OPTION_AMBIGUOUS;
|
2000-10-06 08:45:05 -04:00
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
if(hit < 0) {
|
2000-11-17 04:47:18 -05:00
|
|
|
return PARAM_OPTION_UNKNOWN;
|
2004-05-24 09:31:28 -04:00
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
else {
|
2000-11-17 04:47:18 -05:00
|
|
|
flag++; /* prefixed with one dash, pass it */
|
1999-12-29 09:20:26 -05:00
|
|
|
hit=-1;
|
|
|
|
parse = flag;
|
|
|
|
}
|
|
|
|
|
|
|
|
do {
|
|
|
|
/* we can loop here if we have multiple single-letters */
|
|
|
|
|
2000-08-24 13:56:20 -04:00
|
|
|
if(!longopt)
|
2004-03-08 07:48:09 -05:00
|
|
|
letter = parse?(char)*parse:'\0';
|
2000-08-24 13:56:20 -04:00
|
|
|
else {
|
|
|
|
letter = parse[0];
|
|
|
|
subletter = parse[1];
|
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
*usedarg = FALSE; /* default is that we don't use the arg */
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
fprintf(stderr, "OPTION: %c %s\n", letter, nextarg?nextarg:"<null>");
|
|
|
|
#endif
|
|
|
|
if(hit < 0) {
|
|
|
|
for(j=0; j< sizeof(aliases)/sizeof(aliases[0]); j++) {
|
2004-10-06 03:50:18 -04:00
|
|
|
if(letter == aliases[j].letter[0]) {
|
|
|
|
hit = j;
|
|
|
|
break;
|
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
if(hit < 0) {
|
2004-10-06 03:50:18 -04:00
|
|
|
return PARAM_OPTION_UNKNOWN;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if(hit < 0) {
|
2000-11-17 04:47:18 -05:00
|
|
|
return PARAM_OPTION_UNKNOWN;
|
2004-05-24 09:31:28 -04:00
|
|
|
}
|
2001-01-11 03:01:24 -05:00
|
|
|
if(!longopt && aliases[hit].extraparam && parse[1]) {
|
2001-08-14 05:16:46 -04:00
|
|
|
nextarg=(char *)&parse[1]; /* this is the actual extra parameter */
|
2001-01-10 18:42:03 -05:00
|
|
|
singleopt=TRUE; /* don't loop anymore after this */
|
|
|
|
}
|
2002-08-05 07:15:57 -04:00
|
|
|
else if(!nextarg && aliases[hit].extraparam) {
|
2000-11-17 04:47:18 -05:00
|
|
|
return PARAM_REQUIRES_PARAMETER;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
else if(nextarg && aliases[hit].extraparam)
|
|
|
|
*usedarg = TRUE; /* mark it as used */
|
|
|
|
|
|
|
|
switch(letter) {
|
2003-09-22 18:29:11 -04:00
|
|
|
case '*': /* options without a short option */
|
2001-03-12 11:02:29 -05:00
|
|
|
switch(subletter) {
|
|
|
|
case 'a': /* random-file */
|
|
|
|
GetStr(&config->random_file, nextarg);
|
|
|
|
break;
|
|
|
|
case 'b': /* egd-file */
|
|
|
|
GetStr(&config->egd_file, nextarg);
|
|
|
|
break;
|
2001-03-15 09:38:03 -05:00
|
|
|
case 'c': /* connect-timeout */
|
2003-10-31 04:22:25 -05:00
|
|
|
if(str2num(&config->connecttimeout, nextarg))
|
|
|
|
return PARAM_BAD_NUMERIC;
|
2001-03-15 09:38:03 -05:00
|
|
|
break;
|
2001-09-11 18:36:03 -04:00
|
|
|
case 'd': /* ciphers */
|
|
|
|
GetStr(&config->cipher_list, nextarg);
|
|
|
|
break;
|
2001-11-29 14:42:51 -05:00
|
|
|
case 'e': /* --disable-epsv */
|
|
|
|
config->disable_epsv ^= TRUE;
|
|
|
|
break;
|
2002-04-08 18:48:25 -04:00
|
|
|
#ifdef USE_ENVIRONMENT
|
|
|
|
case 'f':
|
|
|
|
config->writeenv ^= TRUE;
|
|
|
|
break;
|
|
|
|
#endif
|
2002-05-03 08:14:09 -04:00
|
|
|
case 'g': /* --trace */
|
|
|
|
GetStr(&config->trace_dump, nextarg);
|
2002-05-07 09:13:17 -04:00
|
|
|
break;
|
|
|
|
case 'h': /* --trace-ascii */
|
|
|
|
GetStr(&config->trace_dump, nextarg);
|
|
|
|
config->trace_ascii = TRUE;
|
2002-05-03 08:14:09 -04:00
|
|
|
break;
|
2002-06-15 17:02:11 -04:00
|
|
|
case 'i': /* --limit-rate */
|
|
|
|
{
|
|
|
|
/* We support G, M, K too */
|
|
|
|
char *unit;
|
2004-04-07 03:30:40 -04:00
|
|
|
curl_off_t value = curlx_strtoofft(nextarg, &unit, 0);
|
2002-06-15 17:02:11 -04:00
|
|
|
switch(nextarg[strlen(nextarg)-1]) {
|
|
|
|
case 'G':
|
|
|
|
case 'g':
|
|
|
|
value *= 1024*1024*1024;
|
|
|
|
break;
|
|
|
|
case 'M':
|
|
|
|
case 'm':
|
|
|
|
value *= 1024*1024;
|
|
|
|
break;
|
|
|
|
case 'K':
|
|
|
|
case 'k':
|
|
|
|
value *= 1024;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
config->recvpersecond = value;
|
|
|
|
config->sendpersecond = value;
|
|
|
|
}
|
|
|
|
break;
|
2002-09-02 18:31:18 -04:00
|
|
|
|
|
|
|
case 'j': /* --compressed */
|
2004-10-06 03:50:18 -04:00
|
|
|
config->encoding ^= TRUE;
|
|
|
|
break;
|
2002-09-02 18:31:18 -04:00
|
|
|
|
2003-05-22 18:40:01 -04:00
|
|
|
case 'k': /* --digest */
|
2004-10-06 03:50:18 -04:00
|
|
|
config->authtype = CURLAUTH_DIGEST;
|
|
|
|
break;
|
2003-05-22 18:40:01 -04:00
|
|
|
|
2003-06-10 08:22:19 -04:00
|
|
|
case 'l': /* --negotiate */
|
2003-11-06 09:16:16 -05:00
|
|
|
if(curlinfo->features & CURL_VERSION_GSSNEGOTIATE)
|
|
|
|
config->authtype = CURLAUTH_GSSNEGOTIATE;
|
|
|
|
else
|
|
|
|
return PARAM_LIBCURL_DOESNT_SUPPORT;
|
2004-10-06 03:50:18 -04:00
|
|
|
break;
|
2003-06-10 08:22:19 -04:00
|
|
|
|
2003-06-11 09:42:53 -04:00
|
|
|
case 'm': /* --ntlm */
|
2003-11-06 09:16:16 -05:00
|
|
|
if(curlinfo->features & CURL_VERSION_NTLM)
|
|
|
|
config->authtype = CURLAUTH_NTLM;
|
|
|
|
else
|
|
|
|
return PARAM_LIBCURL_DOESNT_SUPPORT;
|
2004-10-06 03:50:18 -04:00
|
|
|
break;
|
2003-06-26 07:33:29 -04:00
|
|
|
|
|
|
|
case 'n': /* --basic for completeness */
|
2004-10-06 03:50:18 -04:00
|
|
|
config->authtype = CURLAUTH_BASIC;
|
|
|
|
break;
|
2003-06-26 07:33:29 -04:00
|
|
|
|
|
|
|
case 'o': /* --anyauth, let libcurl pick it */
|
2004-10-06 03:50:18 -04:00
|
|
|
config->authtype = CURLAUTH_ANY;
|
|
|
|
break;
|
2003-06-11 09:42:53 -04:00
|
|
|
|
2003-07-05 09:13:49 -04:00
|
|
|
#ifdef __DJGPP__
|
|
|
|
case 'p': /* --wdebug */
|
|
|
|
dbug_init();
|
|
|
|
break;
|
|
|
|
#endif
|
2003-08-11 06:34:25 -04:00
|
|
|
case 'q': /* --ftp-create-dirs */
|
2003-08-08 06:24:13 -04:00
|
|
|
config->ftp_create_dirs ^= TRUE;
|
|
|
|
break;
|
2003-07-05 09:13:49 -04:00
|
|
|
|
2003-08-11 06:34:25 -04:00
|
|
|
case 'r': /* --create-dirs */
|
|
|
|
config->create_dirs = TRUE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 's': /* --max-redirs */
|
|
|
|
/* specified max no of redirects (http(s)) */
|
2003-10-31 04:22:25 -05:00
|
|
|
if(str2num(&config->maxredirs, nextarg))
|
|
|
|
return PARAM_BAD_NUMERIC;
|
2003-08-11 06:34:25 -04:00
|
|
|
break;
|
|
|
|
|
2003-08-11 08:23:55 -04:00
|
|
|
case 't': /* --proxy-ntlm */
|
2004-04-23 04:44:27 -04:00
|
|
|
if(curlinfo->features & CURL_VERSION_NTLM)
|
|
|
|
config->proxyntlm ^= TRUE;
|
|
|
|
else
|
2004-05-24 09:31:28 -04:00
|
|
|
return PARAM_LIBCURL_DOESNT_SUPPORT;
|
2003-08-11 08:23:55 -04:00
|
|
|
break;
|
|
|
|
|
2003-09-22 18:29:11 -04:00
|
|
|
case 'u': /* --crlf */
|
|
|
|
/* LF -> CRLF conversinon? */
|
|
|
|
config->crlf = TRUE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'v': /* --stderr */
|
|
|
|
if(strcmp(nextarg, "-")) {
|
|
|
|
config->errors = fopen(nextarg, "wt");
|
|
|
|
config->errors_fopened = TRUE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
config->errors = stdout;
|
|
|
|
break;
|
|
|
|
case 'w': /* --interface */
|
|
|
|
/* interface */
|
|
|
|
GetStr(&config->iface, nextarg);
|
|
|
|
break;
|
|
|
|
case 'x': /* --krb4 */
|
|
|
|
/* krb4 level string */
|
2003-11-06 09:16:16 -05:00
|
|
|
if(curlinfo->features & CURL_VERSION_KERBEROS4)
|
|
|
|
GetStr(&config->krb4level, nextarg);
|
|
|
|
else
|
|
|
|
return PARAM_LIBCURL_DOESNT_SUPPORT;
|
2003-09-22 18:29:11 -04:00
|
|
|
break;
|
2003-10-17 09:11:00 -04:00
|
|
|
case 'y': /* --max-filesize */
|
2004-01-05 17:29:29 -05:00
|
|
|
if(str2offset(&config->max_filesize, nextarg))
|
2003-10-31 04:22:25 -05:00
|
|
|
return PARAM_BAD_NUMERIC;
|
2003-10-17 09:11:00 -04:00
|
|
|
break;
|
2003-10-22 07:56:08 -04:00
|
|
|
case 'z': /* --disable-eprt */
|
|
|
|
config->disable_eprt ^= TRUE;
|
|
|
|
break;
|
2003-09-22 18:29:11 -04:00
|
|
|
|
2001-03-12 11:02:29 -05:00
|
|
|
default: /* the URL! */
|
|
|
|
{
|
|
|
|
struct getout *url;
|
|
|
|
if(config->url_get || (config->url_get=config->url_list)) {
|
|
|
|
/* there's a node here, if it already is filled-in continue to find
|
|
|
|
an "empty" node */
|
|
|
|
while(config->url_get && (config->url_get->flags&GETOUT_URL))
|
|
|
|
config->url_get = config->url_get->next;
|
|
|
|
}
|
2001-01-08 02:37:44 -05:00
|
|
|
|
2001-03-12 11:02:29 -05:00
|
|
|
/* now there might or might not be an available node to fill in! */
|
2001-01-08 02:37:44 -05:00
|
|
|
|
2001-03-12 11:02:29 -05:00
|
|
|
if(config->url_get)
|
|
|
|
/* existing node */
|
|
|
|
url = config->url_get;
|
|
|
|
else
|
|
|
|
/* there was no free node, create one! */
|
|
|
|
url=new_getout(config);
|
2004-05-24 09:31:28 -04:00
|
|
|
|
2001-03-12 11:02:29 -05:00
|
|
|
if(url) {
|
|
|
|
/* fill in the URL */
|
|
|
|
GetStr(&url->url, nextarg);
|
|
|
|
url->flags |= GETOUT_URL;
|
|
|
|
}
|
2001-01-08 02:37:44 -05:00
|
|
|
}
|
|
|
|
}
|
2000-11-17 04:47:18 -05:00
|
|
|
break;
|
2003-11-24 06:59:15 -05:00
|
|
|
case '$': /* more options without a short option */
|
|
|
|
switch(subletter) {
|
|
|
|
case 'a': /* --ftp-ssl */
|
|
|
|
config->ftp_ssl ^= TRUE;
|
|
|
|
break;
|
2003-12-02 13:01:08 -05:00
|
|
|
case 'b': /* --ftp-pasv */
|
|
|
|
if(config->ftpport)
|
|
|
|
free(config->ftpport);
|
|
|
|
config->ftpport = NULL;
|
|
|
|
break;
|
2004-01-30 03:51:24 -05:00
|
|
|
case 'c': /* --socks specifies a socks5 proxy to use */
|
|
|
|
GetStr(&config->socks5proxy, nextarg);
|
|
|
|
break;
|
2004-03-25 08:37:18 -05:00
|
|
|
case 'd': /* --tcp-nodelay option */
|
2004-10-06 03:50:18 -04:00
|
|
|
config->tcp_nodelay ^= TRUE;
|
|
|
|
break;
|
2004-05-03 07:56:18 -04:00
|
|
|
case 'e': /* --proxy-digest */
|
|
|
|
config->proxydigest ^= TRUE;
|
|
|
|
break;
|
2004-05-25 10:44:25 -04:00
|
|
|
case 'f': /* --proxy-basic */
|
|
|
|
config->proxybasic ^= TRUE;
|
|
|
|
break;
|
2003-11-24 06:59:15 -05:00
|
|
|
}
|
|
|
|
break;
|
1999-12-29 09:20:26 -05:00
|
|
|
case '#': /* added 19990617 larsa */
|
|
|
|
config->progressmode ^= CURL_PROGRESS_BAR;
|
|
|
|
break;
|
2004-05-24 09:31:28 -04:00
|
|
|
case '0':
|
2001-10-09 02:53:11 -04:00
|
|
|
/* HTTP version 1.0 */
|
|
|
|
config->httpversion = CURL_HTTP_VERSION_1_0;
|
|
|
|
break;
|
2001-11-05 09:08:27 -05:00
|
|
|
case '1':
|
|
|
|
/* TLS version 1 */
|
|
|
|
config->ssl_version = CURL_SSLVERSION_TLSv1;
|
|
|
|
break;
|
2004-05-24 09:31:28 -04:00
|
|
|
case '2':
|
1999-12-29 09:20:26 -05:00
|
|
|
/* SSL version 2 */
|
2001-11-05 09:08:27 -05:00
|
|
|
config->ssl_version = CURL_SSLVERSION_SSLv2;
|
1999-12-29 09:20:26 -05:00
|
|
|
break;
|
2004-05-24 09:31:28 -04:00
|
|
|
case '3':
|
2001-11-05 09:08:27 -05:00
|
|
|
/* SSL version 3 */
|
|
|
|
config->ssl_version = CURL_SSLVERSION_SSLv3;
|
1999-12-29 09:20:26 -05:00
|
|
|
break;
|
2004-05-24 09:31:28 -04:00
|
|
|
case '4':
|
2003-09-22 18:29:11 -04:00
|
|
|
/* IPv4 */
|
|
|
|
config->ip_version = 4;
|
|
|
|
break;
|
2004-05-24 09:31:28 -04:00
|
|
|
case '6':
|
2003-09-22 18:29:11 -04:00
|
|
|
/* IPv6 */
|
|
|
|
config->ip_version = 6;
|
|
|
|
break;
|
1999-12-29 09:20:26 -05:00
|
|
|
case 'a':
|
|
|
|
/* This makes the FTP sessions use APPE instead of STOR */
|
|
|
|
config->conf ^= CONF_FTPAPPEND;
|
|
|
|
break;
|
|
|
|
case 'A':
|
|
|
|
/* This specifies the User-Agent name */
|
|
|
|
GetStr(&config->useragent, nextarg);
|
|
|
|
break;
|
|
|
|
case 'b': /* cookie string coming up: */
|
2000-02-14 18:17:59 -05:00
|
|
|
if(nextarg[0] == '@') {
|
|
|
|
nextarg++;
|
|
|
|
}
|
|
|
|
else if(strchr(nextarg, '=')) {
|
1999-12-29 09:20:26 -05:00
|
|
|
/* A cookie string must have a =-letter */
|
|
|
|
GetStr(&config->cookie, nextarg);
|
2000-02-14 18:17:59 -05:00
|
|
|
break;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
2000-02-14 18:17:59 -05:00
|
|
|
/* We have a cookie file to read from! */
|
|
|
|
GetStr(&config->cookiefile, nextarg);
|
1999-12-29 09:20:26 -05:00
|
|
|
break;
|
|
|
|
case 'B':
|
2000-06-14 08:50:38 -04:00
|
|
|
/* use ASCII/text when transfering */
|
|
|
|
config->conf ^= CONF_GETTEXT;
|
1999-12-29 09:20:26 -05:00
|
|
|
break;
|
|
|
|
case 'c':
|
2001-08-29 05:32:35 -04:00
|
|
|
/* get the file name to dump all cookies in */
|
|
|
|
GetStr(&config->cookiejar, nextarg);
|
1999-12-29 09:20:26 -05:00
|
|
|
break;
|
|
|
|
case 'C':
|
|
|
|
/* This makes us continue an ftp transfer at given position */
|
2004-04-30 04:23:50 -04:00
|
|
|
if(!curlx_strequal(nextarg, "-")) {
|
2004-01-05 17:29:29 -05:00
|
|
|
if(str2offset(&config->resume_from, nextarg))
|
2003-10-31 04:22:25 -05:00
|
|
|
return PARAM_BAD_NUMERIC;
|
2001-06-25 08:56:06 -04:00
|
|
|
config->resume_from_current = FALSE;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
config->resume_from_current = TRUE;
|
|
|
|
config->resume_from = 0;
|
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
config->use_resume=TRUE;
|
|
|
|
break;
|
|
|
|
case 'd':
|
|
|
|
/* postfield data */
|
2000-10-26 03:06:52 -04:00
|
|
|
{
|
|
|
|
char *postdata=NULL;
|
|
|
|
|
|
|
|
if('@' == *nextarg) {
|
|
|
|
/* the data begins with a '@' letter, it means that a file name
|
|
|
|
or - (stdin) follows */
|
|
|
|
FILE *file;
|
|
|
|
|
|
|
|
nextarg++; /* pass the @ */
|
|
|
|
|
2004-04-30 04:23:50 -04:00
|
|
|
if(curlx_strequal("-", nextarg))
|
2000-10-26 03:06:52 -04:00
|
|
|
file = stdin;
|
2004-05-24 09:31:28 -04:00
|
|
|
else
|
2002-03-27 17:53:06 -05:00
|
|
|
file = fopen(nextarg, "rb");
|
2000-10-26 03:06:52 -04:00
|
|
|
|
|
|
|
if(subletter == 'b') /* forced binary */
|
|
|
|
postdata = file2memory(file, &config->postfieldsize);
|
|
|
|
else
|
|
|
|
postdata = file2string(file);
|
|
|
|
if(file && (file != stdin))
|
2002-08-26 07:58:18 -04:00
|
|
|
fclose(file);
|
2000-10-26 03:06:52 -04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
GetStr(&postdata, nextarg);
|
|
|
|
}
|
2000-08-24 13:56:20 -04:00
|
|
|
|
2002-08-05 07:15:57 -04:00
|
|
|
if(config->postfields) {
|
2000-10-26 03:06:52 -04:00
|
|
|
/* we already have a string, we append this one
|
|
|
|
with a separating &-letter */
|
|
|
|
char *oldpost=config->postfields;
|
2001-01-05 05:11:41 -05:00
|
|
|
config->postfields=aprintf("%s&%s", oldpost, postdata);
|
2000-10-26 03:06:52 -04:00
|
|
|
free(oldpost);
|
|
|
|
free(postdata);
|
|
|
|
}
|
2000-08-24 13:56:20 -04:00
|
|
|
else
|
2000-10-26 03:06:52 -04:00
|
|
|
config->postfields=postdata;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
2002-03-18 17:21:16 -05:00
|
|
|
/*
|
|
|
|
We can't set the request type here, as this data might be used in
|
|
|
|
a simple GET if -G is used. Already or soon.
|
2001-02-20 12:35:51 -05:00
|
|
|
|
2002-03-18 17:21:16 -05:00
|
|
|
if(SetHTTPrequest(HTTPREQ_SIMPLEPOST, &config->httpreq))
|
|
|
|
return PARAM_BAD_USE;
|
|
|
|
*/
|
1999-12-29 09:20:26 -05:00
|
|
|
break;
|
|
|
|
case 'D':
|
|
|
|
/* dump-header to given file name */
|
|
|
|
GetStr(&config->headerfile, nextarg);
|
|
|
|
break;
|
|
|
|
case 'e':
|
2000-06-20 05:28:09 -04:00
|
|
|
{
|
|
|
|
char *ptr = strstr(nextarg, ";auto");
|
|
|
|
if(ptr) {
|
|
|
|
/* Automatic referer requested, this may be combined with a
|
|
|
|
set initial one */
|
|
|
|
config->conf |= CONF_AUTO_REFERER;
|
|
|
|
*ptr = 0; /* zero terminate here */
|
|
|
|
}
|
|
|
|
GetStr(&config->referer, nextarg);
|
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
break;
|
|
|
|
case 'E':
|
2001-12-17 18:01:39 -05:00
|
|
|
switch(subletter) {
|
|
|
|
case 'a': /* CA info PEM file */
|
2000-11-22 08:51:11 -05:00
|
|
|
/* CA info PEM file */
|
|
|
|
GetStr(&config->cacert, nextarg);
|
2001-12-17 18:01:39 -05:00
|
|
|
break;
|
|
|
|
case 'b': /* cert file type */
|
|
|
|
GetStr(&config->cert_type, nextarg);
|
|
|
|
break;
|
|
|
|
case 'c': /* private key file */
|
|
|
|
GetStr(&config->key, nextarg);
|
|
|
|
break;
|
|
|
|
case 'd': /* private key file type */
|
|
|
|
GetStr(&config->key_type, nextarg);
|
|
|
|
break;
|
|
|
|
case 'e': /* private key passphrase */
|
|
|
|
GetStr(&config->key_passwd, nextarg);
|
2003-01-29 08:16:03 -05:00
|
|
|
cleanarg(nextarg);
|
2001-12-17 18:01:39 -05:00
|
|
|
break;
|
|
|
|
case 'f': /* crypto engine */
|
|
|
|
GetStr(&config->engine, nextarg);
|
|
|
|
break;
|
2002-05-28 05:21:29 -04:00
|
|
|
case 'g': /* CA info PEM file */
|
|
|
|
/* CA cert directory */
|
|
|
|
GetStr(&config->capath, nextarg);
|
|
|
|
break;
|
2001-12-17 18:01:39 -05:00
|
|
|
default: /* certificate file */
|
|
|
|
{
|
|
|
|
char *ptr = strchr(nextarg, ':');
|
|
|
|
/* Since we live in a world of weirdness and confusion, the win32
|
|
|
|
dudes can use : when using drive letters and thus
|
|
|
|
c:\file:password needs to work. In order not to break
|
|
|
|
compatibility, we still use : as separator, but we try to detect
|
|
|
|
when it is used for a file name! On windows. */
|
2001-08-08 03:35:57 -04:00
|
|
|
#ifdef WIN32
|
2001-12-17 18:01:39 -05:00
|
|
|
if(ptr &&
|
|
|
|
(ptr == &nextarg[1]) &&
|
|
|
|
(nextarg[2] == '\\') &&
|
|
|
|
(isalpha((int)nextarg[0])) )
|
|
|
|
/* colon in the second column, followed by a backslash, and the
|
|
|
|
first character is an alphabetic letter:
|
|
|
|
|
|
|
|
this is a drive letter colon */
|
|
|
|
ptr = strchr(&nextarg[3], ':'); /* find the next one instead */
|
2001-08-08 03:35:57 -04:00
|
|
|
#endif
|
2001-12-17 18:01:39 -05:00
|
|
|
if(ptr) {
|
|
|
|
/* we have a password too */
|
|
|
|
*ptr=0;
|
|
|
|
ptr++;
|
|
|
|
GetStr(&config->key_passwd, ptr);
|
|
|
|
}
|
|
|
|
GetStr(&config->cert, nextarg);
|
2003-01-29 08:16:03 -05:00
|
|
|
cleanarg(nextarg);
|
2001-12-17 18:01:39 -05:00
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'f':
|
|
|
|
/* fail hard on errors */
|
|
|
|
config->conf ^= CONF_FAILONERROR;
|
|
|
|
break;
|
|
|
|
case 'F':
|
|
|
|
/* "form data" simulation, this is a little advanced so lets do our best
|
2004-10-06 03:50:18 -04:00
|
|
|
to sort this out slowly and carefully */
|
2001-10-03 04:00:12 -04:00
|
|
|
if(formparse(nextarg,
|
|
|
|
&config->httppost,
|
|
|
|
&config->last_post))
|
2004-10-06 03:50:18 -04:00
|
|
|
return PARAM_BAD_USE;
|
2000-07-25 03:34:04 -04:00
|
|
|
if(SetHTTPrequest(HTTPREQ_POST, &config->httpreq))
|
2000-11-17 04:47:18 -05:00
|
|
|
return PARAM_BAD_USE;
|
1999-12-29 09:20:26 -05:00
|
|
|
break;
|
|
|
|
|
2001-01-11 03:01:24 -05:00
|
|
|
case 'g': /* g disables URLglobbing */
|
|
|
|
config->globoff ^= TRUE;
|
|
|
|
break;
|
|
|
|
|
2001-08-15 03:22:32 -04:00
|
|
|
case 'G': /* HTTP GET */
|
|
|
|
config->use_httpget = TRUE;
|
|
|
|
break;
|
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
case 'h': /* h for help */
|
|
|
|
help();
|
2000-11-17 04:47:18 -05:00
|
|
|
return PARAM_HELP_REQUESTED;
|
1999-12-29 09:20:26 -05:00
|
|
|
case 'H':
|
2000-06-05 04:26:13 -04:00
|
|
|
/* A custom header to append to a list */
|
2004-05-10 10:04:35 -04:00
|
|
|
err = add2list(&config->headers, nextarg);
|
|
|
|
if(err)
|
|
|
|
return err;
|
1999-12-29 09:20:26 -05:00
|
|
|
break;
|
|
|
|
case 'i':
|
|
|
|
config->conf ^= CONF_HEADER; /* include the HTTP header as well */
|
|
|
|
break;
|
2002-05-07 05:58:13 -04:00
|
|
|
case 'j':
|
|
|
|
config->cookiesession ^= TRUE;
|
|
|
|
break;
|
1999-12-29 09:20:26 -05:00
|
|
|
case 'I':
|
2002-01-03 03:07:29 -05:00
|
|
|
/*
|
|
|
|
* This is a bit tricky. We either SET both bits, or we clear both
|
|
|
|
* bits. Let's not make any other outcomes from this.
|
|
|
|
*/
|
|
|
|
if((CONF_HEADER|CONF_NOBODY) !=
|
|
|
|
(config->conf&(CONF_HEADER|CONF_NOBODY)) ) {
|
|
|
|
/* one of them weren't set, set both */
|
|
|
|
config->conf |= (CONF_HEADER|CONF_NOBODY);
|
|
|
|
if(SetHTTPrequest(HTTPREQ_HEAD, &config->httpreq))
|
|
|
|
return PARAM_BAD_USE;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* both were set, clear both */
|
|
|
|
config->conf &= ~(CONF_HEADER|CONF_NOBODY);
|
|
|
|
if(SetHTTPrequest(HTTPREQ_GET, &config->httpreq))
|
|
|
|
return PARAM_BAD_USE;
|
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
break;
|
2002-08-26 19:13:25 -04:00
|
|
|
case 'k': /* allow insecure SSL connects */
|
|
|
|
config->insecure_ok ^= TRUE;
|
|
|
|
break;
|
|
|
|
case 'K': /* parse config file */
|
2004-02-12 09:46:12 -05:00
|
|
|
parseconfig(nextarg, config);
|
1999-12-29 09:20:26 -05:00
|
|
|
break;
|
|
|
|
case 'l':
|
|
|
|
config->conf ^= CONF_FTPLISTONLY; /* only list the names of the FTP dir */
|
|
|
|
break;
|
|
|
|
case 'L':
|
|
|
|
config->conf ^= CONF_FOLLOWLOCATION; /* Follow Location: HTTP headers */
|
2003-03-30 23:42:20 -05:00
|
|
|
switch (subletter) {
|
|
|
|
case 't':
|
|
|
|
/* Continue to send authentication (user+password) when following
|
|
|
|
* locations, even when hostname changed */
|
|
|
|
config->conf ^= CONF_UNRESTRICTED_AUTH;
|
|
|
|
break;
|
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
break;
|
|
|
|
case 'm':
|
|
|
|
/* specified max time */
|
2003-10-31 04:22:25 -05:00
|
|
|
if(str2num(&config->timeout, nextarg))
|
|
|
|
return PARAM_BAD_NUMERIC;
|
1999-12-29 09:20:26 -05:00
|
|
|
break;
|
|
|
|
case 'M': /* M for manual, huge help */
|
2004-02-12 09:46:12 -05:00
|
|
|
#ifdef USE_MANUAL
|
1999-12-29 09:20:26 -05:00
|
|
|
hugehelp();
|
2000-11-17 04:47:18 -05:00
|
|
|
return PARAM_HELP_REQUESTED;
|
2004-02-12 09:46:12 -05:00
|
|
|
#else
|
2004-02-17 08:46:00 -05:00
|
|
|
fprintf(stderr,
|
|
|
|
"curl: built-in manual was disabled at build-time!\n");
|
2004-02-12 09:46:12 -05:00
|
|
|
return PARAM_OPTION_UNKNOWN;
|
|
|
|
#endif
|
1999-12-29 09:20:26 -05:00
|
|
|
case 'n':
|
2002-05-21 18:18:34 -04:00
|
|
|
switch(subletter) {
|
|
|
|
case 'o': /* CA info PEM file */
|
|
|
|
/* use .netrc or URL */
|
|
|
|
config->conf ^= CONF_NETRC_OPT;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
/* pick info from .netrc, if this is used for http, curl will
|
|
|
|
automatically enfore user+password with the request */
|
|
|
|
config->conf ^= CONF_NETRC;
|
|
|
|
break;
|
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
break;
|
2000-03-02 18:06:34 -05:00
|
|
|
case 'N':
|
|
|
|
/* disable the output I/O buffering */
|
|
|
|
config->nobuffer ^= 1;
|
|
|
|
break;
|
1999-12-29 09:20:26 -05:00
|
|
|
case 'o':
|
|
|
|
case 'O':
|
|
|
|
/* output file */
|
2001-01-08 02:37:44 -05:00
|
|
|
{
|
|
|
|
struct getout *url;
|
|
|
|
if(config->url_out || (config->url_out=config->url_list)) {
|
|
|
|
/* there's a node here, if it already is filled-in continue to find
|
|
|
|
an "empty" node */
|
|
|
|
while(config->url_out && (config->url_out->flags&GETOUT_OUTFILE))
|
|
|
|
config->url_out = config->url_out->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* now there might or might not be an available node to fill in! */
|
|
|
|
|
|
|
|
if(config->url_out)
|
|
|
|
/* existing node */
|
|
|
|
url = config->url_out;
|
|
|
|
else
|
|
|
|
/* there was no free node, create one! */
|
|
|
|
url=new_getout(config);
|
|
|
|
|
|
|
|
if(url) {
|
|
|
|
/* fill in the outfile */
|
|
|
|
if('o' == letter)
|
|
|
|
GetStr(&url->outfile, nextarg);
|
|
|
|
else {
|
|
|
|
url->outfile=NULL; /* leave it */
|
|
|
|
url->flags |= GETOUT_USEREMOTE;
|
|
|
|
}
|
|
|
|
url->flags |= GETOUT_OUTFILE;
|
|
|
|
}
|
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
break;
|
|
|
|
case 'P':
|
|
|
|
/* This makes the FTP sessions use PORT instead of PASV */
|
|
|
|
/* use <eth0> or <192.168.10.10> style addresses. Anything except
|
2004-10-06 03:50:18 -04:00
|
|
|
this will make us try to get the "default" address.
|
|
|
|
NOTE: this is a changed behaviour since the released 4.1!
|
|
|
|
*/
|
1999-12-29 09:20:26 -05:00
|
|
|
GetStr(&config->ftpport, nextarg);
|
|
|
|
break;
|
|
|
|
case 'p':
|
2000-09-15 02:11:46 -04:00
|
|
|
/* proxy tunnel for non-http protocols */
|
|
|
|
config->proxytunnel ^= TRUE;
|
1999-12-29 09:20:26 -05:00
|
|
|
break;
|
2000-09-15 02:11:46 -04:00
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
case 'q': /* if used first, already taken care of, we do it like
|
2004-10-06 03:50:18 -04:00
|
|
|
this so we don't cause an error! */
|
1999-12-29 09:20:26 -05:00
|
|
|
break;
|
|
|
|
case 'Q':
|
|
|
|
/* QUOTE command to send to FTP server */
|
2004-05-10 10:04:35 -04:00
|
|
|
err = PARAM_OK;
|
2002-02-28 18:31:23 -05:00
|
|
|
switch(nextarg[0]) {
|
|
|
|
case '-':
|
2000-01-10 18:36:14 -05:00
|
|
|
/* prefixed with a dash makes it a POST TRANSFER one */
|
|
|
|
nextarg++;
|
2004-05-10 10:04:35 -04:00
|
|
|
err = add2list(&config->postquote, nextarg);
|
2002-02-28 18:31:23 -05:00
|
|
|
break;
|
|
|
|
case '+':
|
|
|
|
/* prefixed with a plus makes it a just-before-transfer one */
|
|
|
|
nextarg++;
|
2004-05-10 10:04:35 -04:00
|
|
|
err = add2list(&config->prequote, nextarg);
|
2002-02-28 18:31:23 -05:00
|
|
|
break;
|
|
|
|
default:
|
2004-05-10 10:04:35 -04:00
|
|
|
err = add2list(&config->quote, nextarg);
|
|
|
|
break;
|
2000-01-10 18:36:14 -05:00
|
|
|
}
|
2004-05-10 10:04:35 -04:00
|
|
|
if(err)
|
|
|
|
return err;
|
1999-12-29 09:20:26 -05:00
|
|
|
break;
|
|
|
|
case 'r':
|
|
|
|
/* byte range requested */
|
|
|
|
GetStr(&config->range, nextarg);
|
|
|
|
break;
|
2001-09-03 08:00:08 -04:00
|
|
|
case 'R':
|
|
|
|
/* use remote file's time */
|
|
|
|
config->remote_time ^= TRUE;
|
|
|
|
break;
|
1999-12-29 09:20:26 -05:00
|
|
|
case 's':
|
|
|
|
/* don't show progress meter, don't show errors : */
|
|
|
|
config->conf |= (CONF_MUTE|CONF_NOPROGRESS);
|
|
|
|
config->showerror ^= TRUE; /* toggle off */
|
|
|
|
break;
|
|
|
|
case 'S':
|
|
|
|
/* show errors */
|
|
|
|
config->showerror ^= TRUE; /* toggle on if used with -s */
|
|
|
|
break;
|
|
|
|
case 't':
|
2001-02-20 12:35:51 -05:00
|
|
|
/* Telnet options */
|
2004-05-10 10:04:35 -04:00
|
|
|
err = add2list(&config->telnet_options, nextarg);
|
|
|
|
if(err)
|
|
|
|
return err;
|
1999-12-29 09:20:26 -05:00
|
|
|
break;
|
|
|
|
case 'T':
|
|
|
|
/* we are uploading */
|
2003-08-19 19:42:24 -04:00
|
|
|
{
|
|
|
|
struct getout *url;
|
|
|
|
if(config->url_out || (config->url_out=config->url_list)) {
|
|
|
|
/* there's a node here, if it already is filled-in continue to find
|
|
|
|
an "empty" node */
|
|
|
|
while(config->url_out && (config->url_out->flags&GETOUT_UPLOAD))
|
|
|
|
config->url_out = config->url_out->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* now there might or might not be an available node to fill in! */
|
|
|
|
|
|
|
|
if(config->url_out)
|
|
|
|
/* existing node */
|
|
|
|
url = config->url_out;
|
|
|
|
else
|
|
|
|
/* there was no free node, create one! */
|
|
|
|
url=new_getout(config);
|
|
|
|
|
|
|
|
if(url) {
|
|
|
|
url->flags |= GETOUT_UPLOAD; /* mark -T used */
|
|
|
|
if(!*nextarg)
|
|
|
|
url->flags |= GETOUT_NOUPLOAD;
|
|
|
|
else {
|
|
|
|
/* "-" equals stdin, but keep the string around for now */
|
|
|
|
GetStr(&url->infile, nextarg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
break;
|
|
|
|
case 'u':
|
|
|
|
/* user:password */
|
|
|
|
GetStr(&config->userpwd, nextarg);
|
2003-01-29 08:16:03 -05:00
|
|
|
cleanarg(nextarg);
|
2003-10-17 03:04:56 -04:00
|
|
|
checkpasswd("host", &config->userpwd);
|
1999-12-29 09:20:26 -05:00
|
|
|
break;
|
|
|
|
case 'U':
|
|
|
|
/* Proxy user:password */
|
|
|
|
GetStr(&config->proxyuserpwd, nextarg);
|
2003-01-29 08:16:03 -05:00
|
|
|
cleanarg(nextarg);
|
2003-10-17 03:04:56 -04:00
|
|
|
checkpasswd("proxy", &config->proxyuserpwd);
|
1999-12-29 09:20:26 -05:00
|
|
|
break;
|
|
|
|
case 'v':
|
|
|
|
config->conf ^= CONF_VERBOSE; /* talk a lot */
|
|
|
|
break;
|
|
|
|
case 'V':
|
2003-06-12 19:02:36 -04:00
|
|
|
{
|
|
|
|
const char **proto;
|
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
printf(CURL_ID "%s\n", curl_version());
|
2003-06-26 07:33:29 -04:00
|
|
|
if (curlinfo->protocols) {
|
|
|
|
printf("Protocols: ");
|
|
|
|
for (proto=curlinfo->protocols; *proto; ++proto) {
|
2003-06-12 19:02:36 -04:00
|
|
|
printf("%s ", *proto);
|
|
|
|
}
|
2003-06-26 07:33:29 -04:00
|
|
|
puts(""); /* newline */
|
|
|
|
}
|
|
|
|
if(curlinfo->features) {
|
|
|
|
unsigned int i;
|
|
|
|
struct feat {
|
|
|
|
const char *name;
|
|
|
|
int bitmask;
|
|
|
|
};
|
|
|
|
struct feat feats[] = {
|
2004-04-26 03:14:47 -04:00
|
|
|
{"AsynchDNS", CURL_VERSION_ASYNCHDNS},
|
|
|
|
{"Debug", CURL_VERSION_DEBUG},
|
|
|
|
{"GSS-Negotiate", CURL_VERSION_GSSNEGOTIATE},
|
|
|
|
{"IDN", CURL_VERSION_IDN},
|
2003-06-26 07:33:29 -04:00
|
|
|
{"IPv6", CURL_VERSION_IPV6},
|
2004-04-26 03:14:47 -04:00
|
|
|
{"Largefile", CURL_VERSION_LARGEFILE},
|
2003-06-26 07:33:29 -04:00
|
|
|
{"NTLM", CURL_VERSION_NTLM},
|
2004-03-01 11:24:26 -05:00
|
|
|
{"SPNEGO", CURL_VERSION_SPNEGO},
|
2004-04-26 03:14:47 -04:00
|
|
|
{"SSL", CURL_VERSION_SSL},
|
|
|
|
{"krb4", CURL_VERSION_KERBEROS4},
|
|
|
|
{"libz", CURL_VERSION_LIBZ}
|
2003-06-26 07:33:29 -04:00
|
|
|
};
|
|
|
|
printf("Features: ");
|
|
|
|
for(i=0; i<sizeof(feats)/sizeof(feats[0]); i++) {
|
|
|
|
if(curlinfo->features & feats[i].bitmask)
|
|
|
|
printf("%s ", feats[i].name);
|
|
|
|
}
|
|
|
|
puts(""); /* newline */
|
2003-06-12 19:02:36 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return PARAM_HELP_REQUESTED;
|
2000-02-15 19:05:26 -05:00
|
|
|
case 'w':
|
|
|
|
/* get the output string */
|
2000-03-01 17:44:46 -05:00
|
|
|
if('@' == *nextarg) {
|
|
|
|
/* the data begins with a '@' letter, it means that a file name
|
|
|
|
or - (stdin) follows */
|
|
|
|
FILE *file;
|
|
|
|
nextarg++; /* pass the @ */
|
2004-04-30 04:23:50 -04:00
|
|
|
if(curlx_strequal("-", nextarg))
|
2000-03-01 17:44:46 -05:00
|
|
|
file = stdin;
|
2004-05-24 09:31:28 -04:00
|
|
|
else
|
2000-03-01 17:44:46 -05:00
|
|
|
file = fopen(nextarg, "r");
|
|
|
|
config->writeout = file2string(file);
|
|
|
|
if(file && (file != stdin))
|
2002-08-26 07:58:18 -04:00
|
|
|
fclose(file);
|
2000-03-01 17:44:46 -05:00
|
|
|
}
|
2004-05-24 09:31:28 -04:00
|
|
|
else
|
2000-03-01 17:44:46 -05:00
|
|
|
GetStr(&config->writeout, nextarg);
|
2000-02-15 19:05:26 -05:00
|
|
|
break;
|
1999-12-29 09:20:26 -05:00
|
|
|
case 'x':
|
|
|
|
/* proxy */
|
2000-05-22 10:12:12 -04:00
|
|
|
GetStr(&config->proxy, nextarg);
|
1999-12-29 09:20:26 -05:00
|
|
|
break;
|
|
|
|
case 'X':
|
2002-01-28 14:22:40 -05:00
|
|
|
/* set custom request */
|
1999-12-29 09:20:26 -05:00
|
|
|
GetStr(&config->customrequest, nextarg);
|
|
|
|
break;
|
2000-01-31 17:21:10 -05:00
|
|
|
case 'y':
|
1999-12-29 09:20:26 -05:00
|
|
|
/* low speed time */
|
2003-10-31 04:22:25 -05:00
|
|
|
if(str2num(&config->low_speed_time, nextarg))
|
|
|
|
return PARAM_BAD_NUMERIC;
|
1999-12-29 09:20:26 -05:00
|
|
|
if(!config->low_speed_limit)
|
2004-10-06 03:50:18 -04:00
|
|
|
config->low_speed_limit = 1;
|
1999-12-29 09:20:26 -05:00
|
|
|
break;
|
2000-01-31 17:21:10 -05:00
|
|
|
case 'Y':
|
1999-12-29 09:20:26 -05:00
|
|
|
/* low speed limit */
|
2003-10-31 04:22:25 -05:00
|
|
|
if(str2num(&config->low_speed_limit, nextarg))
|
|
|
|
return PARAM_BAD_NUMERIC;
|
1999-12-29 09:20:26 -05:00
|
|
|
if(!config->low_speed_time)
|
2004-10-06 03:50:18 -04:00
|
|
|
config->low_speed_time=30;
|
1999-12-29 09:20:26 -05:00
|
|
|
break;
|
2000-11-28 04:10:43 -05:00
|
|
|
case 'z': /* time condition coming up */
|
|
|
|
switch(*nextarg) {
|
|
|
|
case '+':
|
|
|
|
nextarg++;
|
|
|
|
default:
|
|
|
|
/* If-Modified-Since: (section 14.28 in RFC2068) */
|
2002-04-22 20:05:21 -04:00
|
|
|
config->timecond = CURL_TIMECOND_IFMODSINCE;
|
2000-11-28 04:10:43 -05:00
|
|
|
break;
|
|
|
|
case '-':
|
|
|
|
/* If-Unmodified-Since: (section 14.24 in RFC2068) */
|
2002-04-22 20:05:21 -04:00
|
|
|
config->timecond = CURL_TIMECOND_IFUNMODSINCE;
|
2000-11-28 04:10:43 -05:00
|
|
|
nextarg++;
|
|
|
|
break;
|
|
|
|
case '=':
|
|
|
|
/* Last-Modified: (section 14.29 in RFC2068) */
|
2002-04-22 20:05:21 -04:00
|
|
|
config->timecond = CURL_TIMECOND_LASTMOD;
|
2000-11-28 04:10:43 -05:00
|
|
|
nextarg++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
now=time(NULL);
|
|
|
|
config->condtime=curl_getdate(nextarg, &now);
|
2001-08-14 05:16:46 -04:00
|
|
|
if(-1 == (int)config->condtime) {
|
2000-11-28 04:10:43 -05:00
|
|
|
/* now let's see if it is a file name to get the time from instead! */
|
|
|
|
struct stat statbuf;
|
|
|
|
if(-1 == stat(nextarg, &statbuf)) {
|
|
|
|
/* failed, remove time condition */
|
2002-04-22 20:05:21 -04:00
|
|
|
config->timecond = CURL_TIMECOND_NONE;
|
2000-11-28 04:10:43 -05:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* pull the time out from the file */
|
|
|
|
config->condtime = statbuf.st_mtime;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
1999-12-29 09:20:26 -05:00
|
|
|
default: /* unknown flag */
|
2000-11-17 04:47:18 -05:00
|
|
|
return PARAM_OPTION_UNKNOWN;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
hit = -1;
|
|
|
|
|
2001-11-30 04:26:06 -05:00
|
|
|
} while(!longopt && !singleopt && *++parse && !*usedarg);
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2000-11-17 04:47:18 -05:00
|
|
|
return PARAM_OK;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-02-12 09:46:12 -05:00
|
|
|
static void parseconfig(const char *filename,
|
|
|
|
struct Configurable *config)
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
|
|
|
int res;
|
|
|
|
FILE *file;
|
2002-04-05 10:04:04 -05:00
|
|
|
char filebuffer[512];
|
1999-12-29 09:20:26 -05:00
|
|
|
bool usedarg;
|
2002-04-05 10:04:04 -05:00
|
|
|
char *home;
|
2004-05-24 09:31:28 -04:00
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
if(!filename || !*filename) {
|
|
|
|
/* NULL or no file name attempts to load .curlrc from the homedir! */
|
|
|
|
|
|
|
|
#define CURLRC DOT_CHAR "curlrc"
|
|
|
|
|
2004-01-13 03:35:57 -05:00
|
|
|
#ifndef AMIGA
|
2003-11-07 12:17:15 -05:00
|
|
|
filename = CURLRC; /* sensible default */
|
|
|
|
home = homedir(); /* portable homedir finder */
|
2002-04-05 10:04:04 -05:00
|
|
|
if(home) {
|
|
|
|
if(strlen(home)<(sizeof(filebuffer)-strlen(CURLRC))) {
|
|
|
|
snprintf(filebuffer, sizeof(filebuffer),
|
|
|
|
"%s%s%s", home, DIR_CHAR, CURLRC);
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2002-04-05 10:04:04 -05:00
|
|
|
filename = filebuffer;
|
|
|
|
}
|
2003-11-07 12:19:57 -05:00
|
|
|
free(home); /* we've used it, now free it */
|
2002-04-05 10:04:04 -05:00
|
|
|
}
|
2004-05-24 09:31:28 -04:00
|
|
|
|
2004-01-13 03:35:57 -05:00
|
|
|
# else /* AmigaOS */
|
|
|
|
/* On AmigaOS all the config files are into env:
|
|
|
|
*/
|
|
|
|
filename = "ENV:" CURLRC;
|
|
|
|
|
|
|
|
#endif
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if(strcmp(filename,"-"))
|
|
|
|
file = fopen(filename, "r");
|
|
|
|
else
|
|
|
|
file = stdin;
|
2004-05-24 09:31:28 -04:00
|
|
|
|
2000-10-26 04:15:13 -04:00
|
|
|
if(file) {
|
2000-02-10 18:03:08 -05:00
|
|
|
char *line;
|
2000-11-17 04:47:18 -05:00
|
|
|
char *aline;
|
|
|
|
char *option;
|
|
|
|
char *param;
|
|
|
|
int lineno=0;
|
|
|
|
bool alloced_param;
|
|
|
|
|
|
|
|
#define isseparator(x) (((x)=='=') || ((x) == ':'))
|
|
|
|
|
|
|
|
while (NULL != (aline = my_get_line(file))) {
|
|
|
|
lineno++;
|
|
|
|
line = aline;
|
|
|
|
alloced_param=FALSE;
|
|
|
|
|
2000-02-10 18:03:08 -05:00
|
|
|
/* lines with # in the fist column is a comment! */
|
2004-01-27 07:39:34 -05:00
|
|
|
while(*line && isspace((int)*line))
|
2000-11-17 04:47:18 -05:00
|
|
|
line++;
|
|
|
|
|
|
|
|
switch(*line) {
|
|
|
|
case '#':
|
|
|
|
case '/':
|
|
|
|
case '\r':
|
|
|
|
case '\n':
|
|
|
|
case '*':
|
|
|
|
case '\0':
|
2002-10-11 13:44:36 -04:00
|
|
|
free(aline);
|
2000-02-10 18:03:08 -05:00
|
|
|
continue;
|
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2000-11-17 04:47:18 -05:00
|
|
|
/* the option keywords starts here */
|
|
|
|
option = line;
|
2000-11-21 04:38:41 -05:00
|
|
|
while(*line && !isspace((int)*line) && !isseparator(*line))
|
2000-11-17 04:47:18 -05:00
|
|
|
line++;
|
|
|
|
/* ... and has ended here */
|
|
|
|
|
2004-01-27 07:39:34 -05:00
|
|
|
if(*line)
|
|
|
|
*line++=0; /* zero terminate, we have a local copy of the data */
|
2000-11-17 04:47:18 -05:00
|
|
|
|
|
|
|
#ifdef DEBUG_CONFIG
|
|
|
|
fprintf(stderr, "GOT: %s\n", option);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* pass spaces and separator(s) */
|
2004-01-23 07:50:53 -05:00
|
|
|
while(*line && (isspace((int)*line) || isseparator(*line)))
|
2000-11-17 04:47:18 -05:00
|
|
|
line++;
|
2004-05-24 09:31:28 -04:00
|
|
|
|
2000-11-17 04:47:18 -05:00
|
|
|
/* the parameter starts here (unless quoted) */
|
|
|
|
if(*line == '\"') {
|
|
|
|
char *ptr;
|
|
|
|
/* quoted parameter, do the qoute dance */
|
|
|
|
line++;
|
|
|
|
param=strdup(line); /* parameter */
|
|
|
|
alloced_param=TRUE;
|
|
|
|
|
|
|
|
ptr=param;
|
|
|
|
while(*line && (*line != '\"')) {
|
|
|
|
if(*line == '\\') {
|
2000-11-17 05:08:39 -05:00
|
|
|
char out;
|
2000-11-17 04:47:18 -05:00
|
|
|
line++;
|
2000-11-17 05:08:39 -05:00
|
|
|
|
|
|
|
/* default is to output the letter after the backslah */
|
|
|
|
switch(out = *line) {
|
|
|
|
case '\0':
|
|
|
|
continue; /* this'll break out of the loop */
|
|
|
|
case 't':
|
|
|
|
out='\t';
|
|
|
|
break;
|
|
|
|
case 'n':
|
|
|
|
out='\n';
|
|
|
|
break;
|
|
|
|
case 'r':
|
|
|
|
out='\r';
|
|
|
|
break;
|
|
|
|
case 'v':
|
|
|
|
out='\v';
|
2000-11-17 04:47:18 -05:00
|
|
|
break;
|
|
|
|
}
|
2000-11-17 05:08:39 -05:00
|
|
|
*ptr++=out;
|
|
|
|
line++;
|
2000-11-17 04:47:18 -05:00
|
|
|
}
|
2000-11-17 05:08:39 -05:00
|
|
|
else
|
|
|
|
*ptr++=*line++;
|
2000-11-17 04:47:18 -05:00
|
|
|
}
|
|
|
|
*ptr=0; /* always zero terminate */
|
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
2000-11-17 04:47:18 -05:00
|
|
|
else {
|
|
|
|
param=line; /* parameter starts here */
|
2000-11-21 04:38:41 -05:00
|
|
|
while(*line && !isspace((int)*line))
|
2000-11-17 04:47:18 -05:00
|
|
|
line++;
|
|
|
|
*line=0; /* zero terminate */
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
2004-01-19 17:15:59 -05:00
|
|
|
|
|
|
|
if (param && !*param) {
|
|
|
|
/* do this so getparameter can check for required parameters.
|
|
|
|
Otherwise it always thinks there's a parameter. */
|
|
|
|
if (alloced_param)
|
|
|
|
free(param);
|
|
|
|
param = NULL;
|
|
|
|
}
|
|
|
|
|
2000-11-17 04:47:18 -05:00
|
|
|
#ifdef DEBUG_CONFIG
|
2004-01-19 17:15:59 -05:00
|
|
|
fprintf(stderr, "PARAM: \"%s\"\n",(param ? param : "(null)"));
|
2000-11-17 04:47:18 -05:00
|
|
|
#endif
|
|
|
|
res = getparameter(option, param, &usedarg, config);
|
2000-02-10 18:03:08 -05:00
|
|
|
|
2004-01-19 17:15:59 -05:00
|
|
|
if (param && *param && !usedarg)
|
2000-11-17 04:47:18 -05:00
|
|
|
/* we passed in a parameter that wasn't used! */
|
|
|
|
res = PARAM_GOT_EXTRA_PARAMETER;
|
2000-02-10 18:03:08 -05:00
|
|
|
|
2000-11-17 04:47:18 -05:00
|
|
|
if(res != PARAM_OK) {
|
|
|
|
/* the help request isn't really an error */
|
|
|
|
if(!strcmp(filename, "-")) {
|
2001-08-14 05:16:46 -04:00
|
|
|
filename=(char *)"<stdin>";
|
2000-11-17 04:47:18 -05:00
|
|
|
}
|
|
|
|
if(PARAM_HELP_REQUESTED != res) {
|
2003-11-06 09:16:16 -05:00
|
|
|
const char *reason = param2text(res);
|
2000-11-17 04:47:18 -05:00
|
|
|
fprintf(stderr, "%s:%d: warning: '%s' %s\n",
|
|
|
|
filename, lineno, option, reason);
|
2000-10-26 04:15:13 -04:00
|
|
|
}
|
2000-02-10 18:03:08 -05:00
|
|
|
}
|
|
|
|
|
2000-11-17 04:47:18 -05:00
|
|
|
if(alloced_param)
|
2004-01-19 17:15:59 -05:00
|
|
|
{
|
2000-11-17 04:47:18 -05:00
|
|
|
free(param);
|
2004-10-06 03:50:18 -04:00
|
|
|
param = NULL;
|
2004-01-19 17:15:59 -05:00
|
|
|
}
|
2000-11-17 04:47:18 -05:00
|
|
|
|
|
|
|
free(aline);
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
if(file != stdin)
|
|
|
|
fclose(file);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-06-15 17:02:11 -04:00
|
|
|
static void go_sleep(long ms)
|
|
|
|
{
|
2004-06-27 17:51:54 -04:00
|
|
|
#ifdef HAVE_POLL_FINE
|
2002-06-15 17:02:11 -04:00
|
|
|
/* portable subsecond "sleep" */
|
2004-07-02 08:29:15 -04:00
|
|
|
poll((void *)0, 0, (int)ms);
|
2002-08-13 08:12:08 -04:00
|
|
|
#else
|
|
|
|
/* systems without poll() need other solutions */
|
|
|
|
|
|
|
|
#ifdef WIN32
|
|
|
|
/* Windows offers a millisecond sleep */
|
|
|
|
Sleep(ms);
|
2004-03-29 07:29:25 -05:00
|
|
|
#elif defined(__MSDOS__)
|
|
|
|
delay(ms);
|
2002-08-13 08:12:08 -04:00
|
|
|
#else
|
|
|
|
/* Other systems must use select() for this */
|
|
|
|
struct timeval timeout;
|
|
|
|
|
2004-04-06 08:06:05 -04:00
|
|
|
timeout.tv_sec = ms/1000;
|
2004-06-27 17:51:54 -04:00
|
|
|
ms = ms%1000;
|
2002-08-13 08:12:08 -04:00
|
|
|
timeout.tv_usec = ms * 1000;
|
|
|
|
|
|
|
|
select(0, NULL, NULL, NULL, &timeout);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
2002-06-15 17:02:11 -04:00
|
|
|
}
|
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
struct OutStruct {
|
|
|
|
char *filename;
|
|
|
|
FILE *stream;
|
2000-11-21 10:37:54 -05:00
|
|
|
struct Configurable *config;
|
1999-12-29 09:20:26 -05:00
|
|
|
};
|
|
|
|
|
2004-04-06 08:06:05 -04:00
|
|
|
static int my_fwrite(void *buffer, size_t sz, size_t nmemb, void *stream)
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
2003-07-04 13:16:34 -04:00
|
|
|
int rc;
|
1999-12-29 09:20:26 -05:00
|
|
|
struct OutStruct *out=(struct OutStruct *)stream;
|
2002-06-15 17:02:11 -04:00
|
|
|
struct Configurable *config = out->config;
|
2004-08-10 02:41:13 -04:00
|
|
|
curl_off_t size = (curl_off_t)(sz * nmemb); /* typecast to prevent
|
|
|
|
warnings when converting from
|
|
|
|
unsigned to signed */
|
1999-12-29 09:20:26 -05:00
|
|
|
if(out && !out->stream) {
|
|
|
|
/* open file for writing */
|
|
|
|
out->stream=fopen(out->filename, "wb");
|
|
|
|
if(!out->stream)
|
|
|
|
return -1; /* failure */
|
|
|
|
}
|
2002-06-15 17:02:11 -04:00
|
|
|
|
|
|
|
if(config->recvpersecond) {
|
|
|
|
/*
|
|
|
|
* We know when we received data the previous time. We know how much data
|
|
|
|
* we get now. Make sure that this is not faster than we are told to run.
|
|
|
|
* If we're faster, sleep a while *before* doing the fwrite() here.
|
|
|
|
*/
|
|
|
|
|
2004-04-06 08:06:05 -04:00
|
|
|
struct timeval now;
|
|
|
|
long timediff;
|
|
|
|
long sleep_time;
|
2002-06-15 17:02:11 -04:00
|
|
|
|
2004-04-06 08:06:05 -04:00
|
|
|
static curl_off_t addit = 0;
|
2004-02-21 10:08:21 -05:00
|
|
|
|
2004-04-06 08:06:05 -04:00
|
|
|
now = curlx_tvnow();
|
|
|
|
timediff = curlx_tvdiff(now, config->lastrecvtime); /* milliseconds */
|
2004-02-21 10:08:21 -05:00
|
|
|
|
2004-04-06 08:06:05 -04:00
|
|
|
if((config->recvpersecond > CURL_MAX_WRITE_SIZE) && (timediff < 100) ) {
|
|
|
|
/* If we allow a rather speedy transfer, add this amount for later
|
|
|
|
* checking. Also, do not modify the lastrecvtime as we will use a
|
|
|
|
* longer scope due to this addition. We wait for at least 100 ms to
|
|
|
|
* pass to get better values to do better math for the sleep. */
|
|
|
|
addit += size;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
size += addit; /* add up the possibly added bonus rounds from the
|
|
|
|
zero timediff calls */
|
|
|
|
addit = 0; /* clear the addition pool */
|
|
|
|
|
|
|
|
if( size*1000 > config->recvpersecond*timediff) {
|
|
|
|
/* figure out how many milliseconds to rest */
|
2004-05-05 03:30:52 -04:00
|
|
|
sleep_time = (long)(size*1000/config->recvpersecond - timediff);
|
2004-04-06 08:06:05 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Make sure we don't sleep for so long that we trigger the speed
|
|
|
|
* limit. This won't limit the bandwidth quite the way we've been
|
|
|
|
* asked to, but at least the transfer has a chance.
|
|
|
|
*/
|
|
|
|
if (config->low_speed_time > 0)
|
|
|
|
sleep_time = MIN(sleep_time,(config->low_speed_time * 1000) / 2);
|
2004-05-24 09:31:28 -04:00
|
|
|
|
2004-04-06 08:06:05 -04:00
|
|
|
if(sleep_time > 0) {
|
|
|
|
go_sleep(sleep_time);
|
|
|
|
now = curlx_tvnow();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
config->lastrecvtime = now;
|
2002-06-15 17:02:11 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-04-06 08:06:05 -04:00
|
|
|
rc = fwrite(buffer, sz, nmemb, out->stream);
|
2004-05-24 09:31:28 -04:00
|
|
|
|
2003-07-04 13:16:34 -04:00
|
|
|
if(config->nobuffer)
|
|
|
|
/* disable output buffering */
|
|
|
|
fflush(out->stream);
|
2004-05-24 09:31:28 -04:00
|
|
|
|
2003-07-04 13:16:34 -04:00
|
|
|
return rc;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
|
2002-06-15 17:02:11 -04:00
|
|
|
struct InStruct {
|
|
|
|
FILE *stream;
|
|
|
|
struct Configurable *config;
|
|
|
|
};
|
|
|
|
|
2004-04-06 08:06:05 -04:00
|
|
|
static int my_fread(void *buffer, size_t sz, size_t nmemb, void *userp)
|
2002-06-15 17:02:11 -04:00
|
|
|
{
|
|
|
|
struct InStruct *in=(struct InStruct *)userp;
|
|
|
|
struct Configurable *config = in->config;
|
2004-08-10 02:41:13 -04:00
|
|
|
curl_off_t size = (curl_off_t)(sz * nmemb); /* typecast to prevent warnings
|
|
|
|
when converting from
|
|
|
|
unsigned to signed */
|
2002-06-15 17:02:11 -04:00
|
|
|
|
|
|
|
if(config->sendpersecond) {
|
|
|
|
/*
|
|
|
|
* We know when we sent data the previous time. We know how much data
|
|
|
|
* we sent. Make sure that this was not faster than we are told to run.
|
|
|
|
* If we're faster, sleep a while *before* doing the fread() here.
|
|
|
|
* Also, make no larger fread() than should be sent this second!
|
|
|
|
*/
|
|
|
|
|
2004-04-06 08:06:05 -04:00
|
|
|
struct timeval now;
|
|
|
|
long timediff;
|
|
|
|
long sleep_time;
|
2002-06-15 17:02:11 -04:00
|
|
|
|
2004-04-06 08:06:05 -04:00
|
|
|
static curl_off_t addit = 0;
|
|
|
|
|
|
|
|
now = curlx_tvnow();
|
|
|
|
timediff = curlx_tvdiff(now, config->lastsendtime); /* milliseconds */
|
2002-06-15 17:02:11 -04:00
|
|
|
|
2004-04-06 08:06:05 -04:00
|
|
|
if((config->sendpersecond > CURL_MAX_WRITE_SIZE) &&
|
|
|
|
(timediff < 100)) {
|
|
|
|
/*
|
|
|
|
* We allow very fast transfers, then allow at least 100 ms between
|
|
|
|
* each sleeping mile-stone to create more accurate long-term rates.
|
|
|
|
*/
|
|
|
|
addit += size;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* If 'addit' is non-zero, it contains the total amount of bytes
|
|
|
|
uploaded during the last 'timediff' milliseconds. If it is zero,
|
|
|
|
we use the stored previous size. */
|
2004-04-07 03:23:52 -04:00
|
|
|
curl_off_t xfered = addit?addit:(curl_off_t)config->lastsendsize;
|
2004-04-06 08:06:05 -04:00
|
|
|
addit = 0; /* clear it for the next round */
|
|
|
|
|
|
|
|
if( xfered*1000 > config->sendpersecond*timediff) {
|
|
|
|
/* figure out how many milliseconds to rest */
|
2004-05-05 03:30:52 -04:00
|
|
|
sleep_time = (long)(xfered*1000/config->sendpersecond - timediff);
|
2004-04-06 08:06:05 -04:00
|
|
|
if(sleep_time > 0) {
|
|
|
|
go_sleep (sleep_time);
|
|
|
|
now = curlx_tvnow();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
config->lastsendtime = now;
|
2004-05-24 09:31:28 -04:00
|
|
|
|
2004-04-06 08:06:05 -04:00
|
|
|
if(size > config->sendpersecond) {
|
|
|
|
/* lower the size to actually read */
|
2004-05-05 03:30:52 -04:00
|
|
|
nmemb = (size_t)config->sendpersecond;
|
2004-04-06 08:06:05 -04:00
|
|
|
sz = 1;
|
|
|
|
}
|
2002-06-15 17:02:11 -04:00
|
|
|
}
|
|
|
|
|
2004-04-06 08:06:05 -04:00
|
|
|
config->lastsendsize = sz*nmemb;
|
|
|
|
}
|
2002-06-15 17:02:11 -04:00
|
|
|
|
2004-04-06 08:06:05 -04:00
|
|
|
return fread(buffer, sz, nmemb, in->stream);
|
2002-06-15 17:02:11 -04:00
|
|
|
}
|
|
|
|
|
2000-06-16 09:18:49 -04:00
|
|
|
struct ProgressData {
|
2002-03-08 07:05:57 -05:00
|
|
|
int calls;
|
2004-07-02 08:48:53 -04:00
|
|
|
curl_off_t prev;
|
2000-06-16 09:18:49 -04:00
|
|
|
int width;
|
2001-05-29 14:30:47 -04:00
|
|
|
FILE *out; /* where to write everything to */
|
2004-01-22 07:46:07 -05:00
|
|
|
curl_off_t initial_size;
|
2000-06-16 09:18:49 -04:00
|
|
|
};
|
|
|
|
|
2004-01-29 08:48:36 -05:00
|
|
|
static int myprogress (void *clientp,
|
|
|
|
double dltotal,
|
|
|
|
double dlnow,
|
|
|
|
double ultotal,
|
|
|
|
double ulnow)
|
2000-06-16 09:18:49 -04:00
|
|
|
{
|
|
|
|
/* The original progress-bar source code was written for curl by Lars Aas,
|
2004-01-29 08:48:36 -05:00
|
|
|
and this new edition inherits some of his concepts. */
|
2004-05-24 09:31:28 -04:00
|
|
|
|
2000-06-16 09:18:49 -04:00
|
|
|
char line[256];
|
|
|
|
char outline[256];
|
|
|
|
char format[40];
|
2002-08-26 13:20:29 -04:00
|
|
|
double frac;
|
|
|
|
double percent;
|
2000-06-16 09:18:49 -04:00
|
|
|
int barwidth;
|
|
|
|
int num;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
struct ProgressData *bar = (struct ProgressData *)clientp;
|
2004-07-02 08:48:53 -04:00
|
|
|
curl_off_t total = (curl_off_t)dltotal + (curl_off_t)ultotal +
|
|
|
|
bar->initial_size; /* expected transfer size */
|
|
|
|
curl_off_t point = (curl_off_t)dlnow + (curl_off_t)ulnow +
|
|
|
|
bar->initial_size; /* we've come this far */
|
2000-06-16 09:18:49 -04:00
|
|
|
|
2002-03-08 07:05:57 -05:00
|
|
|
bar->calls++; /* simply count invokes */
|
|
|
|
|
2004-01-29 08:48:36 -05:00
|
|
|
if(total < 1) {
|
2004-07-02 08:48:53 -04:00
|
|
|
curl_off_t prevblock = bar->prev / 1024;
|
|
|
|
curl_off_t thisblock = point / 1024;
|
2000-06-16 09:18:49 -04:00
|
|
|
while ( thisblock > prevblock ) {
|
2001-05-29 14:30:47 -04:00
|
|
|
fprintf( bar->out, "#" );
|
2000-06-16 09:18:49 -04:00
|
|
|
prevblock++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2004-07-02 08:48:53 -04:00
|
|
|
frac = (double)point / (double)total;
|
2000-06-16 09:18:49 -04:00
|
|
|
percent = frac * 100.0f;
|
|
|
|
barwidth = bar->width - 7;
|
2002-08-26 13:20:29 -04:00
|
|
|
num = (int) (((double)barwidth) * frac);
|
2000-06-16 09:18:49 -04:00
|
|
|
i = 0;
|
|
|
|
for ( i = 0; i < num; i++ ) {
|
|
|
|
line[i] = '#';
|
|
|
|
}
|
|
|
|
line[i] = '\0';
|
2004-07-02 08:48:53 -04:00
|
|
|
snprintf( format, sizeof(format), "%%-%ds %%5.1f%%%%", barwidth );
|
|
|
|
snprintf( outline, sizeof(outline), format, line, percent );
|
2001-05-29 14:30:47 -04:00
|
|
|
fprintf( bar->out, "\r%s", outline );
|
2000-06-16 09:18:49 -04:00
|
|
|
}
|
2003-11-13 02:14:23 -05:00
|
|
|
fflush(bar->out);
|
2003-06-02 09:42:42 -04:00
|
|
|
bar->prev = point;
|
2000-06-16 09:18:49 -04:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2001-05-29 14:30:47 -04:00
|
|
|
static
|
|
|
|
void progressbarinit(struct ProgressData *bar,
|
|
|
|
struct Configurable *config)
|
2000-06-16 09:18:49 -04:00
|
|
|
{
|
|
|
|
#ifdef __EMX__
|
|
|
|
/* 20000318 mgs */
|
|
|
|
int scr_size [2];
|
|
|
|
#endif
|
|
|
|
char *colp;
|
|
|
|
|
|
|
|
memset(bar, 0, sizeof(struct ProgressData));
|
|
|
|
|
2003-06-02 09:42:42 -04:00
|
|
|
/* pass this through to progress function so
|
|
|
|
* it can display progress towards total file
|
|
|
|
* not just the part that's left. (21-may-03, dbyron) */
|
|
|
|
if (config->use_resume)
|
|
|
|
bar->initial_size = config->resume_from;
|
|
|
|
|
2000-06-16 09:18:49 -04:00
|
|
|
/* TODO: get terminal width through ansi escapes or something similar.
|
|
|
|
try to update width when xterm is resized... - 19990617 larsa */
|
|
|
|
#ifndef __EMX__
|
|
|
|
/* 20000318 mgs
|
|
|
|
* OS/2 users most likely won't have this env var set, and besides that
|
|
|
|
* we're using our own way to determine screen width */
|
2004-04-30 04:23:50 -04:00
|
|
|
colp = curlx_getenv("COLUMNS");
|
2000-06-16 09:18:49 -04:00
|
|
|
if (colp != NULL) {
|
|
|
|
bar->width = atoi(colp);
|
2003-06-26 07:33:29 -04:00
|
|
|
curl_free(colp);
|
2000-06-16 09:18:49 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
bar->width = 79;
|
|
|
|
#else
|
|
|
|
/* 20000318 mgs
|
|
|
|
* We use this emx library call to get the screen width, and subtract
|
|
|
|
* one from what we got in order to avoid a problem with the cursor
|
|
|
|
* advancing to the next line if we print a string that is as long as
|
|
|
|
* the screen is wide. */
|
2004-05-24 09:31:28 -04:00
|
|
|
|
2000-06-16 09:18:49 -04:00
|
|
|
_scrsize(scr_size);
|
|
|
|
bar->width = scr_size[0] - 1;
|
|
|
|
#endif
|
|
|
|
|
2001-05-29 14:30:47 -04:00
|
|
|
bar->out = config->errors;
|
2000-06-16 09:18:49 -04:00
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2002-05-03 08:14:09 -04:00
|
|
|
static
|
|
|
|
void dump(const char *text,
|
2002-05-07 09:13:17 -04:00
|
|
|
FILE *stream, unsigned char *ptr, size_t size,
|
|
|
|
bool nohex)
|
2002-05-03 08:14:09 -04:00
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
size_t c;
|
|
|
|
|
2002-05-07 09:13:17 -04:00
|
|
|
unsigned int width=0x10;
|
|
|
|
|
|
|
|
if(nohex)
|
|
|
|
/* without the hex output, we can fit more on screen */
|
|
|
|
width = 0x40;
|
2002-05-03 08:14:09 -04:00
|
|
|
|
2004-03-01 07:45:12 -05:00
|
|
|
fprintf(stream, "%s, %zd bytes (0x%zx)\n", text, size, size);
|
2002-05-03 08:14:09 -04:00
|
|
|
|
2002-05-07 09:13:17 -04:00
|
|
|
for(i=0; i<size; i+= width) {
|
2002-05-03 08:14:09 -04:00
|
|
|
|
2004-03-01 07:45:12 -05:00
|
|
|
fprintf(stream, "%04zx: ", i);
|
2002-05-03 08:14:09 -04:00
|
|
|
|
2002-05-07 09:13:17 -04:00
|
|
|
if(!nohex) {
|
|
|
|
/* hex not disabled, show it */
|
|
|
|
for(c = 0; c < width; c++)
|
|
|
|
if(i+c < size)
|
|
|
|
fprintf(stream, "%02x ", ptr[i+c]);
|
|
|
|
else
|
|
|
|
fputs(" ", stream);
|
|
|
|
}
|
2002-05-10 11:59:42 -04:00
|
|
|
|
|
|
|
for(c = 0; (c < width) && (i+c < size); c++) {
|
|
|
|
/* check for 0D0A; if found, skip past and start a new line of output */
|
|
|
|
if (nohex && (i+c+1 < size) && ptr[i+c]==0x0D && ptr[i+c+1]==0x0A) {
|
|
|
|
i+=(c+2-width);
|
|
|
|
break;
|
|
|
|
}
|
2002-05-03 08:14:09 -04:00
|
|
|
fprintf(stream, "%c",
|
|
|
|
(ptr[i+c]>=0x20) && (ptr[i+c]<0x80)?ptr[i+c]:'.');
|
2002-05-10 11:59:42 -04:00
|
|
|
/* check again for 0D0A, to avoid an extra \n if it's at width */
|
|
|
|
if (nohex && (i+c+2 < size) && ptr[i+c+1]==0x0D && ptr[i+c+2]==0x0A) {
|
|
|
|
i+=(c+3-width);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2002-05-03 08:14:09 -04:00
|
|
|
fputc('\n', stream); /* newline */
|
|
|
|
}
|
2002-11-15 09:15:28 -05:00
|
|
|
fflush(stream);
|
2002-05-03 08:14:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
int my_trace(CURL *handle, curl_infotype type,
|
|
|
|
unsigned char *data, size_t size,
|
|
|
|
void *userp)
|
|
|
|
{
|
|
|
|
struct Configurable *config = (struct Configurable *)userp;
|
|
|
|
FILE *output=config->errors;
|
2002-05-07 09:13:17 -04:00
|
|
|
const char *text;
|
2002-05-03 08:14:09 -04:00
|
|
|
(void)handle; /* prevent compiler warning */
|
|
|
|
|
2002-05-07 05:58:13 -04:00
|
|
|
if(!config->trace_stream) {
|
2002-05-03 08:14:09 -04:00
|
|
|
/* open for append */
|
2004-04-30 04:23:50 -04:00
|
|
|
if(curlx_strequal("-", config->trace_dump))
|
2002-05-07 05:58:13 -04:00
|
|
|
config->trace_stream = stdout;
|
|
|
|
else {
|
|
|
|
config->trace_stream = fopen(config->trace_dump, "w");
|
|
|
|
config->trace_fopened = TRUE;
|
|
|
|
}
|
|
|
|
}
|
2002-05-03 08:14:09 -04:00
|
|
|
|
|
|
|
if(config->trace_stream)
|
|
|
|
output = config->trace_stream;
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case CURLINFO_TEXT:
|
|
|
|
fprintf(output, "== Info: %s", data);
|
2002-05-07 09:13:17 -04:00
|
|
|
default: /* in case a new one is introduced to shock us */
|
|
|
|
return 0;
|
|
|
|
|
2002-05-03 08:14:09 -04:00
|
|
|
case CURLINFO_HEADER_OUT:
|
2002-05-07 09:13:17 -04:00
|
|
|
text = "=> Send header";
|
2002-05-03 08:14:09 -04:00
|
|
|
break;
|
|
|
|
case CURLINFO_DATA_OUT:
|
2002-11-26 12:13:30 -05:00
|
|
|
text = "=> Send data";
|
2002-05-03 08:14:09 -04:00
|
|
|
break;
|
|
|
|
case CURLINFO_HEADER_IN:
|
2002-05-07 09:13:17 -04:00
|
|
|
text = "<= Recv header";
|
2002-05-03 08:14:09 -04:00
|
|
|
break;
|
|
|
|
case CURLINFO_DATA_IN:
|
2002-05-07 09:13:17 -04:00
|
|
|
text = "<= Recv data";
|
2002-05-03 08:14:09 -04:00
|
|
|
break;
|
2004-06-18 02:20:43 -04:00
|
|
|
case CURLINFO_SSL_DATA_IN:
|
|
|
|
text = "<= Recv SSL data";
|
|
|
|
break;
|
|
|
|
case CURLINFO_SSL_DATA_OUT:
|
|
|
|
text = "<= Send SSL data";
|
|
|
|
break;
|
2002-05-03 08:14:09 -04:00
|
|
|
}
|
2002-05-07 09:13:17 -04:00
|
|
|
|
|
|
|
dump(text, output, data, size, config->trace_ascii);
|
2002-05-03 08:14:09 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-01-29 08:48:36 -05:00
|
|
|
static void free_config_fields(struct Configurable *config)
|
2000-11-20 02:54:57 -05:00
|
|
|
{
|
2001-03-12 11:02:29 -05:00
|
|
|
if(config->random_file)
|
|
|
|
free(config->random_file);
|
|
|
|
if(config->egd_file)
|
|
|
|
free(config->egd_file);
|
2004-06-24 10:40:16 -04:00
|
|
|
if(config->trace_dump)
|
|
|
|
free(config->trace_dump);
|
|
|
|
if(config->cipher_list)
|
|
|
|
free(config->cipher_list);
|
2000-11-22 08:51:11 -05:00
|
|
|
if(config->userpwd)
|
|
|
|
free(config->userpwd);
|
|
|
|
if(config->postfields)
|
|
|
|
free(config->postfields);
|
|
|
|
if(config->proxy)
|
|
|
|
free(config->proxy);
|
|
|
|
if(config->proxyuserpwd)
|
|
|
|
free(config->proxyuserpwd);
|
|
|
|
if(config->cookie)
|
|
|
|
free(config->cookie);
|
|
|
|
if(config->cookiefile)
|
|
|
|
free(config->cookiefile);
|
|
|
|
if(config->krb4level)
|
|
|
|
free(config->krb4level);
|
|
|
|
if(config->headerfile)
|
|
|
|
free(config->headerfile);
|
|
|
|
if(config->ftpport)
|
|
|
|
free(config->ftpport);
|
|
|
|
if(config->range)
|
|
|
|
free(config->range);
|
|
|
|
if(config->customrequest)
|
|
|
|
free(config->customrequest);
|
|
|
|
if(config->writeout)
|
|
|
|
free(config->writeout);
|
|
|
|
if(config->httppost)
|
|
|
|
curl_formfree(config->httppost);
|
|
|
|
if(config->cacert)
|
|
|
|
free(config->cacert);
|
2002-05-28 05:21:29 -04:00
|
|
|
if(config->capath)
|
|
|
|
free(config->capath);
|
2001-09-26 03:12:07 -04:00
|
|
|
if(config->cookiejar)
|
|
|
|
free(config->cookiejar);
|
2000-11-22 08:51:11 -05:00
|
|
|
|
|
|
|
curl_slist_free_all(config->quote); /* checks for config->quote == NULL */
|
|
|
|
curl_slist_free_all(config->postquote); /* */
|
|
|
|
curl_slist_free_all(config->headers); /* */
|
2000-11-20 02:54:57 -05:00
|
|
|
}
|
|
|
|
|
2002-10-28 14:49:58 -05:00
|
|
|
#if defined(WIN32) && !defined(__CYGWIN32__)
|
|
|
|
|
|
|
|
/* Function to find CACert bundle on a Win32 platform using SearchPath.
|
|
|
|
* (SearchPath is defined in windows.h, which is #included into libcurl)
|
|
|
|
* (Use the ASCII version instead of the unicode one!)
|
|
|
|
* The order of the directories it searches is:
|
|
|
|
* 1. application's directory
|
|
|
|
* 2. current working directory
|
|
|
|
* 3. Windows System directory (e.g. C:\windows\system32)
|
|
|
|
* 4. Windows Directory (e.g. C:\windows)
|
|
|
|
* 5. all directories along %PATH%
|
|
|
|
*/
|
2004-05-24 09:31:28 -04:00
|
|
|
static void FindWin32CACert(struct Configurable *config,
|
2002-10-28 14:49:58 -05:00
|
|
|
const char *bundle_file)
|
|
|
|
{
|
|
|
|
/* only check for cert file if "we" support SSL */
|
2003-06-26 07:33:29 -04:00
|
|
|
if(curlinfo->features & CURL_VERSION_SSL) {
|
2002-10-28 14:49:58 -05:00
|
|
|
DWORD buflen;
|
|
|
|
char *ptr = NULL;
|
|
|
|
char *retval = (char *) malloc(sizeof (TCHAR) * (MAX_PATH + 1));
|
|
|
|
if (!retval)
|
|
|
|
return;
|
|
|
|
retval[0] = '\0';
|
|
|
|
buflen = SearchPathA(NULL, bundle_file, NULL, MAX_PATH+2, retval, &ptr);
|
|
|
|
if (buflen > 0) {
|
|
|
|
GetStr(&config->cacert, retval);
|
|
|
|
}
|
|
|
|
free(retval);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
2000-11-20 02:54:57 -05:00
|
|
|
|
2004-05-24 09:31:28 -04:00
|
|
|
static int
|
2000-11-21 10:37:54 -05:00
|
|
|
operate(struct Configurable *config, int argc, char *argv[])
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
2000-05-26 09:58:10 -04:00
|
|
|
char errorbuffer[CURL_ERROR_SIZE];
|
2000-10-09 07:13:17 -04:00
|
|
|
char useragent[128]; /* buah, we don't want a larger default user agent */
|
2000-06-16 09:18:49 -04:00
|
|
|
struct ProgressData progressbar;
|
2001-01-08 02:37:44 -05:00
|
|
|
struct getout *urlnode;
|
|
|
|
struct getout *nextnode;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
|
|
|
struct OutStruct outs;
|
2000-03-16 06:43:10 -05:00
|
|
|
struct OutStruct heads;
|
2002-06-15 17:02:11 -04:00
|
|
|
struct InStruct input;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
|
|
|
char *url = NULL;
|
2000-05-09 18:42:53 -04:00
|
|
|
|
2001-01-11 03:01:24 -05:00
|
|
|
URLGlob *urls=NULL;
|
2003-08-19 19:42:24 -04:00
|
|
|
URLGlob *inglob=NULL;
|
1999-12-29 09:20:26 -05:00
|
|
|
int urlnum;
|
2003-08-19 19:42:24 -04:00
|
|
|
int infilenum;
|
2000-06-14 10:26:53 -04:00
|
|
|
char *outfiles;
|
2003-08-19 19:42:24 -04:00
|
|
|
char *infiles; /* might a glob pattern */
|
|
|
|
char *uploadfile=NULL; /* a single file, never a glob */
|
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
int separator = 0;
|
2004-05-24 09:31:28 -04:00
|
|
|
|
2004-01-16 04:17:04 -05:00
|
|
|
FILE *infd = stdin;
|
2003-08-19 19:42:24 -04:00
|
|
|
bool infdfopen;
|
1999-12-29 09:20:26 -05:00
|
|
|
FILE *headerfilep = NULL;
|
|
|
|
char *urlbuffer=NULL;
|
2004-01-22 07:46:07 -05:00
|
|
|
curl_off_t uploadfilesize; /* -1 means unknown */
|
1999-12-29 09:20:26 -05:00
|
|
|
bool stillflags=TRUE;
|
|
|
|
|
2000-11-17 09:03:58 -05:00
|
|
|
bool allocuseragent=FALSE;
|
|
|
|
|
2001-08-15 03:22:32 -04:00
|
|
|
char *httpgetfields=NULL;
|
|
|
|
|
2000-05-22 10:12:12 -04:00
|
|
|
CURL *curl;
|
2001-10-03 04:00:12 -04:00
|
|
|
int res = 0;
|
1999-12-29 09:20:26 -05:00
|
|
|
int i;
|
2003-08-19 19:42:24 -04:00
|
|
|
int up; /* upload file counter within a single upload glob */
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2002-10-28 14:49:58 -05:00
|
|
|
char *env;
|
2003-06-26 07:33:29 -04:00
|
|
|
#ifdef CURLDEBUG
|
2000-10-09 07:13:17 -04:00
|
|
|
/* this sends all memory debug messages to a logfile named memdump */
|
2004-04-30 04:23:50 -04:00
|
|
|
env = curlx_getenv("CURL_MEMDEBUG");
|
2002-02-28 07:35:09 -05:00
|
|
|
if(env) {
|
2003-06-26 07:33:29 -04:00
|
|
|
curl_free(env);
|
2002-02-28 07:35:09 -05:00
|
|
|
curl_memdebug("memdump");
|
|
|
|
}
|
2004-04-30 04:23:50 -04:00
|
|
|
env = curlx_getenv("CURL_MEMLIMIT");
|
2003-08-14 11:01:52 -04:00
|
|
|
if(env) {
|
|
|
|
curl_memlimit(atoi(env));
|
|
|
|
curl_free(env);
|
|
|
|
}
|
2000-10-09 07:13:17 -04:00
|
|
|
#endif
|
|
|
|
|
2004-03-12 03:03:31 -05:00
|
|
|
memset(&outs,0,sizeof(outs));
|
|
|
|
|
2003-06-26 07:33:29 -04:00
|
|
|
/* we get libcurl info right away */
|
|
|
|
curlinfo = curl_version_info(CURLVERSION_NOW);
|
|
|
|
|
2002-02-28 07:35:09 -05:00
|
|
|
errorbuffer[0]=0; /* prevent junk from being output */
|
|
|
|
|
2004-10-18 09:37:18 -04:00
|
|
|
/* setup proper locale from environment */
|
|
|
|
#ifdef HAVE_SETLOCALE
|
|
|
|
setlocale(LC_ALL, "");
|
|
|
|
#endif
|
|
|
|
|
2004-03-03 08:32:56 -05:00
|
|
|
/* inits */
|
|
|
|
if (main_init() != CURLE_OK) {
|
|
|
|
helpf("error initializing curl library\n");
|
|
|
|
return CURLE_FAILED_INIT;
|
|
|
|
}
|
2000-11-21 10:37:54 -05:00
|
|
|
config->showerror=TRUE;
|
|
|
|
config->conf=CONF_DEFAULT;
|
2001-08-15 03:22:32 -04:00
|
|
|
config->use_httpget=FALSE;
|
2002-12-03 03:07:52 -05:00
|
|
|
config->create_dirs=FALSE;
|
2004-04-06 08:06:05 -04:00
|
|
|
config->lastrecvtime = curlx_tvnow();
|
|
|
|
config->lastsendtime = curlx_tvnow();
|
1999-12-29 09:20:26 -05:00
|
|
|
|
|
|
|
if(argc>1 &&
|
2004-04-30 04:23:50 -04:00
|
|
|
(!curlx_strnequal("--", argv[1], 2) && (argv[1][0] == '-')) &&
|
1999-12-29 09:20:26 -05:00
|
|
|
strchr(argv[1], 'q')) {
|
|
|
|
/*
|
|
|
|
* The first flag, that is not a verbose name, but a shortname
|
|
|
|
* and it includes the 'q' flag!
|
|
|
|
*/
|
|
|
|
;
|
|
|
|
}
|
|
|
|
else {
|
2004-02-12 09:46:12 -05:00
|
|
|
parseconfig(NULL, config);
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
|
2001-01-08 02:37:44 -05:00
|
|
|
if ((argc < 2) && !config->url_list) {
|
1999-12-29 09:20:26 -05:00
|
|
|
helpf(NULL);
|
2000-05-22 10:12:12 -04:00
|
|
|
return CURLE_FAILED_INIT;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Parse options */
|
|
|
|
for (i = 1; i < argc; i++) {
|
|
|
|
if(stillflags &&
|
|
|
|
('-' == argv[i][0])) {
|
|
|
|
char *nextarg;
|
|
|
|
bool passarg;
|
2000-11-17 04:47:18 -05:00
|
|
|
char *origopt=argv[i];
|
2004-05-24 09:31:28 -04:00
|
|
|
|
2000-11-17 04:47:18 -05:00
|
|
|
char *flag = argv[i];
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2004-04-30 04:23:50 -04:00
|
|
|
if(curlx_strequal("--", argv[i]))
|
2004-10-06 03:50:18 -04:00
|
|
|
/* this indicates the end of the flags and thus enables the
|
|
|
|
following (URL) argument to start with -. */
|
|
|
|
stillflags=FALSE;
|
1999-12-29 09:20:26 -05:00
|
|
|
else {
|
2004-10-06 03:50:18 -04:00
|
|
|
nextarg= (i < argc - 1)? argv[i+1]: NULL;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2004-10-06 03:50:18 -04:00
|
|
|
res = getparameter(flag, nextarg, &passarg, config);
|
|
|
|
if(res) {
|
2003-11-06 09:16:16 -05:00
|
|
|
const char *reason = param2text(res);
|
|
|
|
if(res != PARAM_HELP_REQUESTED)
|
|
|
|
helpf("option %s: %s\n", origopt, reason);
|
2001-01-08 10:02:58 -05:00
|
|
|
clean_getout(config);
|
2004-10-06 03:50:18 -04:00
|
|
|
return CURLE_FAILED_INIT;
|
2000-11-17 04:47:18 -05:00
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2004-10-06 03:50:18 -04:00
|
|
|
if(passarg) /* we're supposed to skip this */
|
|
|
|
i++;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2001-01-08 02:37:44 -05:00
|
|
|
bool used;
|
|
|
|
/* just add the URL please */
|
2001-08-14 05:16:46 -04:00
|
|
|
res = getparameter((char *)"--url", argv[i], &used, config);
|
2001-01-08 02:37:44 -05:00
|
|
|
if(res)
|
|
|
|
return res;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-03-29 06:03:30 -05:00
|
|
|
if(!config->url_list || !config->url_list->url) {
|
2003-10-24 08:56:27 -04:00
|
|
|
clean_getout(config);
|
1999-12-29 09:20:26 -05:00
|
|
|
helpf("no URL specified!\n");
|
2000-05-22 10:12:12 -04:00
|
|
|
return CURLE_FAILED_INIT;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
2000-11-21 10:37:54 -05:00
|
|
|
if(NULL == config->useragent) {
|
2000-10-09 07:13:17 -04:00
|
|
|
/* set non-zero default values: */
|
|
|
|
snprintf(useragent, sizeof(useragent),
|
|
|
|
CURL_NAME "/" CURL_VERSION " (" OS ") " "%s", curl_version());
|
2000-11-21 10:37:54 -05:00
|
|
|
config->useragent= useragent;
|
2000-10-09 07:13:17 -04:00
|
|
|
}
|
2000-11-17 09:03:58 -05:00
|
|
|
else
|
|
|
|
allocuseragent = TRUE;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2002-10-28 14:49:58 -05:00
|
|
|
/* On WIN32 (non-cygwin), we can't set the path to curl-ca-bundle.crt
|
|
|
|
* at compile time. So we look here for the file in two ways:
|
|
|
|
* 1: look at the environment variable CURL_CA_BUNDLE for a path
|
|
|
|
* 2: if #1 isn't found, use the windows API function SearchPath()
|
|
|
|
* to find it along the app's path (includes app's dir and CWD)
|
|
|
|
*
|
|
|
|
* We support the environment variable thing for non-Windows platforms
|
|
|
|
* too. Just for the sake of it.
|
|
|
|
*/
|
2003-01-30 09:48:07 -05:00
|
|
|
if (!config->cacert &&
|
|
|
|
!config->capath &&
|
|
|
|
!config->insecure_ok) {
|
2004-04-30 04:23:50 -04:00
|
|
|
env = curlx_getenv("CURL_CA_BUNDLE");
|
2002-10-28 14:49:58 -05:00
|
|
|
if(env) {
|
|
|
|
GetStr(&config->cacert, env);
|
2003-06-26 07:33:29 -04:00
|
|
|
curl_free(env);
|
2002-10-28 14:49:58 -05:00
|
|
|
}
|
|
|
|
#if defined(WIN32) && !defined(__CYGWIN32__)
|
2003-01-30 09:48:07 -05:00
|
|
|
else
|
|
|
|
FindWin32CACert(config, "curl-ca-bundle.crt");
|
2002-10-28 14:49:58 -05:00
|
|
|
#endif
|
2003-01-30 09:48:07 -05:00
|
|
|
}
|
2002-10-28 14:49:58 -05:00
|
|
|
|
2001-08-15 03:22:32 -04:00
|
|
|
if (config->postfields) {
|
|
|
|
if (config->use_httpget) {
|
|
|
|
/* Use the postfields data for a http get */
|
|
|
|
httpgetfields = strdup(config->postfields);
|
|
|
|
free(config->postfields);
|
|
|
|
config->postfields = NULL;
|
2001-08-24 03:01:09 -04:00
|
|
|
if(SetHTTPrequest((config->conf&CONF_NOBODY?HTTPREQ_HEAD:HTTPREQ_GET),
|
|
|
|
&config->httpreq)) {
|
2001-08-15 03:22:32 -04:00
|
|
|
free(httpgetfields);
|
|
|
|
return PARAM_BAD_USE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if(SetHTTPrequest(HTTPREQ_SIMPLEPOST, &config->httpreq))
|
|
|
|
return PARAM_BAD_USE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-03-12 08:57:02 -05:00
|
|
|
/*
|
|
|
|
* Get a curl handle to use for all forthcoming curl transfers. Cleanup
|
2003-08-06 19:48:08 -04:00
|
|
|
* when all transfers are done.
|
2001-03-12 08:57:02 -05:00
|
|
|
*/
|
|
|
|
curl = curl_easy_init();
|
2003-10-24 08:56:27 -04:00
|
|
|
if(!curl) {
|
|
|
|
clean_getout(config);
|
2001-03-12 08:57:02 -05:00
|
|
|
return CURLE_FAILED_INIT;
|
2003-10-24 08:56:27 -04:00
|
|
|
}
|
2001-03-12 08:57:02 -05:00
|
|
|
|
2003-08-06 19:48:08 -04:00
|
|
|
/* After this point, we should call curl_easy_cleanup() if we decide to bail
|
|
|
|
* out from this function! */
|
|
|
|
|
2001-01-08 02:37:44 -05:00
|
|
|
urlnode = config->url_list;
|
2000-05-09 08:29:28 -04:00
|
|
|
|
2002-05-03 05:47:25 -04:00
|
|
|
if(config->headerfile) {
|
|
|
|
/* open file for output: */
|
|
|
|
if(strcmp(config->headerfile,"-")) {
|
|
|
|
heads.filename = config->headerfile;
|
|
|
|
headerfilep=NULL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
headerfilep=stdout;
|
|
|
|
heads.stream = headerfilep;
|
|
|
|
heads.config = config;
|
|
|
|
}
|
|
|
|
|
2001-01-08 02:37:44 -05:00
|
|
|
/* loop through the list of given URLs */
|
2004-06-08 17:56:30 -04:00
|
|
|
while(urlnode) {
|
2003-08-19 19:42:24 -04:00
|
|
|
char *dourl;
|
2000-11-17 09:03:58 -05:00
|
|
|
|
2001-01-09 07:25:14 -05:00
|
|
|
/* get the full URL (it might be NULL) */
|
2003-08-19 19:42:24 -04:00
|
|
|
dourl=urlnode->url;
|
|
|
|
|
|
|
|
url = dourl;
|
2001-01-08 02:37:44 -05:00
|
|
|
|
2001-01-09 07:25:14 -05:00
|
|
|
if(NULL == url) {
|
|
|
|
/* This node had no URL, skip it and continue to the next */
|
|
|
|
if(urlnode->outfile)
|
|
|
|
free(urlnode->outfile);
|
2004-05-24 09:31:28 -04:00
|
|
|
|
2001-01-09 07:25:14 -05:00
|
|
|
/* move on to the next URL */
|
|
|
|
nextnode=urlnode->next;
|
|
|
|
free(urlnode); /* free the node */
|
|
|
|
urlnode = nextnode;
|
|
|
|
continue; /* next please */
|
|
|
|
}
|
|
|
|
|
2001-01-08 02:37:44 -05:00
|
|
|
/* default output stream is stdout */
|
|
|
|
outs.stream = stdout;
|
|
|
|
outs.config = config;
|
2001-01-11 03:01:24 -05:00
|
|
|
|
2003-08-19 19:42:24 -04:00
|
|
|
/* save outfile pattern before expansion */
|
|
|
|
outfiles = urlnode->outfile?strdup(urlnode->outfile):NULL;
|
|
|
|
|
|
|
|
infiles = urlnode->infile;
|
|
|
|
|
|
|
|
if(!config->globoff && infiles) {
|
|
|
|
/* Unless explicitly shut off */
|
|
|
|
res = glob_url(&inglob, infiles, &infilenum,
|
2003-06-10 05:42:22 -04:00
|
|
|
config->showerror?
|
|
|
|
(config->errors?config->errors:stderr):NULL);
|
2003-08-06 19:48:08 -04:00
|
|
|
if(res != CURLE_OK) {
|
|
|
|
clean_getout(config);
|
2004-05-10 10:45:11 -04:00
|
|
|
if(outfiles)
|
|
|
|
free(outfiles);
|
2003-08-06 19:48:08 -04:00
|
|
|
break;
|
|
|
|
}
|
2001-01-11 03:01:24 -05:00
|
|
|
}
|
|
|
|
|
2003-08-19 19:42:24 -04:00
|
|
|
/* Here's the loop for uploading multiple files within the same
|
|
|
|
single globbed string. If no upload, we enter the loop once anyway. */
|
|
|
|
for(up = 0;
|
|
|
|
(!up && !infiles) ||
|
|
|
|
(uploadfile = inglob?
|
|
|
|
glob_next_url(inglob):
|
|
|
|
(!up?strdup(infiles):NULL));
|
|
|
|
up++) {
|
|
|
|
uploadfilesize=-1;
|
|
|
|
|
|
|
|
if(!config->globoff) {
|
|
|
|
/* Unless explicitly shut off, we expand '{...}' and '[...]'
|
|
|
|
expressions and return total number of URLs in pattern set */
|
|
|
|
res = glob_url(&urls, dourl, &urlnum,
|
|
|
|
config->showerror?
|
|
|
|
(config->errors?config->errors:stderr):NULL);
|
|
|
|
if(res != CURLE_OK) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2003-10-28 04:28:11 -05:00
|
|
|
else
|
|
|
|
urlnum = 1; /* without globbing, this is a single URL */
|
2001-01-08 02:37:44 -05:00
|
|
|
|
2003-08-19 19:42:24 -04:00
|
|
|
/* if multiple files extracted to stdout, insert separators! */
|
2004-04-30 04:23:50 -04:00
|
|
|
separator= ((!outfiles || curlx_strequal(outfiles, "-")) && urlnum > 1);
|
2001-01-08 02:37:44 -05:00
|
|
|
|
2003-08-19 19:42:24 -04:00
|
|
|
/* Here's looping around each globbed URL */
|
|
|
|
for(i = 0;
|
|
|
|
(url = urls?glob_next_url(urls):(i?NULL:strdup(url)));
|
|
|
|
i++) {
|
|
|
|
char *outfile;
|
|
|
|
outfile = outfiles?strdup(outfiles):NULL;
|
2004-05-24 09:31:28 -04:00
|
|
|
|
2003-08-19 19:42:24 -04:00
|
|
|
if((urlnode->flags&GETOUT_USEREMOTE) ||
|
2004-04-30 04:23:50 -04:00
|
|
|
(outfile && !curlx_strequal("-", outfile)) ) {
|
2004-05-24 09:31:28 -04:00
|
|
|
|
|
|
|
/*
|
2003-08-19 19:42:24 -04:00
|
|
|
* We have specified a file name to store the result in, or we have
|
|
|
|
* decided we want to use the remote file name.
|
|
|
|
*/
|
2004-05-24 09:31:28 -04:00
|
|
|
|
2003-08-19 19:42:24 -04:00
|
|
|
if(!outfile) {
|
|
|
|
/* Find and get the remote file name */
|
|
|
|
char * pc =strstr(url, "://");
|
|
|
|
if(pc)
|
|
|
|
pc+=3;
|
|
|
|
else
|
|
|
|
pc=url;
|
|
|
|
pc = strrchr(pc, '/');
|
2003-08-06 19:48:08 -04:00
|
|
|
|
2003-08-19 19:42:24 -04:00
|
|
|
if(pc) {
|
|
|
|
/* duplicate the string beyond the slash */
|
|
|
|
pc++;
|
|
|
|
outfile = *pc ? strdup(pc): NULL;
|
|
|
|
}
|
|
|
|
if(!outfile || !*outfile) {
|
|
|
|
helpf("Remote file name has no length!\n");
|
|
|
|
res = CURLE_WRITE_ERROR;
|
|
|
|
free(url);
|
|
|
|
break;
|
|
|
|
}
|
2003-07-15 19:47:25 -04:00
|
|
|
#if defined(__DJGPP__)
|
2003-08-19 19:42:24 -04:00
|
|
|
{
|
2004-05-24 09:31:28 -04:00
|
|
|
/* This is for DOS, and then we do some major replacing of
|
2003-08-19 19:42:24 -04:00
|
|
|
bad characters in the file name before using it */
|
2004-03-29 07:29:25 -05:00
|
|
|
char file1 [PATH_MAX];
|
|
|
|
|
2003-08-19 19:42:24 -04:00
|
|
|
strcpy(file1, msdosify(outfile));
|
2004-03-29 07:29:25 -05:00
|
|
|
free (outfile);
|
|
|
|
outfile = strdup (rename_if_dos_device_name(file1));
|
2003-08-19 19:42:24 -04:00
|
|
|
}
|
2003-07-15 19:47:25 -04:00
|
|
|
#endif /* __DJGPP__ */
|
2003-08-14 07:53:53 -04:00
|
|
|
}
|
2003-08-19 19:42:24 -04:00
|
|
|
else if(urls) {
|
|
|
|
/* fill '#1' ... '#9' terms from URL pattern */
|
|
|
|
char *storefile = outfile;
|
|
|
|
outfile = glob_match_url(storefile, urls);
|
|
|
|
free(storefile);
|
|
|
|
if(!outfile) {
|
|
|
|
/* bad globbing */
|
|
|
|
fprintf(stderr, "bad output glob!\n");
|
|
|
|
free(url);
|
|
|
|
res = CURLE_FAILED_INIT;
|
|
|
|
break;
|
|
|
|
}
|
2003-08-06 19:48:08 -04:00
|
|
|
}
|
2004-05-24 09:31:28 -04:00
|
|
|
|
2003-08-19 19:42:24 -04:00
|
|
|
/* Create the directory hierarchy, if not pre-existant to a multiple
|
|
|
|
file output call */
|
2004-05-24 09:31:28 -04:00
|
|
|
|
2004-05-10 10:45:11 -04:00
|
|
|
if(config->create_dirs &&
|
|
|
|
(-1 == create_dir_hierarchy(outfile)))
|
|
|
|
return CURLE_WRITE_ERROR;
|
2004-05-24 09:31:28 -04:00
|
|
|
|
2003-08-19 19:42:24 -04:00
|
|
|
if(config->resume_from_current) {
|
|
|
|
/* We're told to continue from where we are now. Get the
|
|
|
|
size of the file as it is now and open it for append instead */
|
2004-05-24 09:31:28 -04:00
|
|
|
|
2003-08-19 19:42:24 -04:00
|
|
|
struct stat fileinfo;
|
2001-01-08 02:37:44 -05:00
|
|
|
|
2004-04-06 08:06:05 -04:00
|
|
|
/* VMS -- Danger, the filesize is only valid for stream files */
|
2003-08-19 19:42:24 -04:00
|
|
|
if(0 == stat(outfile, &fileinfo))
|
|
|
|
/* set offset to current file size: */
|
|
|
|
config->resume_from = fileinfo.st_size;
|
|
|
|
else
|
|
|
|
/* let offset be 0 */
|
|
|
|
config->resume_from = 0;
|
|
|
|
}
|
2004-05-24 09:31:28 -04:00
|
|
|
|
2004-10-06 03:50:18 -04:00
|
|
|
outs.filename = outfile;
|
2004-03-12 03:03:31 -05:00
|
|
|
|
2003-08-19 19:42:24 -04:00
|
|
|
if(config->resume_from) {
|
|
|
|
/* open file for output: */
|
|
|
|
outs.stream=(FILE *) fopen(outfile, config->resume_from?"ab":"wb");
|
|
|
|
if (!outs.stream) {
|
|
|
|
helpf("Can't open '%s'!\n", outfile);
|
|
|
|
return CURLE_WRITE_ERROR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
outs.stream = NULL; /* open when needed */
|
2001-01-08 02:37:44 -05:00
|
|
|
}
|
2000-11-17 09:03:58 -05:00
|
|
|
}
|
2003-08-19 19:42:24 -04:00
|
|
|
infdfopen=FALSE;
|
2004-04-30 04:23:50 -04:00
|
|
|
if(uploadfile && !curlx_strequal(uploadfile, "-")) {
|
2003-08-19 19:42:24 -04:00
|
|
|
/*
|
|
|
|
* We have specified a file to upload and it isn't "-".
|
|
|
|
*/
|
|
|
|
struct stat fileinfo;
|
|
|
|
|
|
|
|
/* If no file name part is given in the URL, we add this file name */
|
|
|
|
char *ptr=strstr(url, "://");
|
|
|
|
if(ptr)
|
|
|
|
ptr+=3;
|
2001-12-10 19:48:55 -05:00
|
|
|
else
|
2003-08-19 19:42:24 -04:00
|
|
|
ptr=url;
|
|
|
|
ptr = strrchr(ptr, '/');
|
|
|
|
if(!ptr || !strlen(++ptr)) {
|
|
|
|
/* The URL has no file name part, add the local file name. In order
|
|
|
|
to be able to do so, we have to create a new URL in another
|
|
|
|
buffer.*/
|
|
|
|
|
|
|
|
/* We only want the part of the local path that is on the right
|
|
|
|
side of the rightmost slash and backslash. */
|
|
|
|
char *filep = strrchr(uploadfile, '/');
|
|
|
|
char *file2 = strrchr(filep?filep:uploadfile, '\\');
|
|
|
|
|
|
|
|
if(file2)
|
|
|
|
filep = file2+1;
|
|
|
|
else if(filep)
|
|
|
|
filep++;
|
|
|
|
else
|
|
|
|
filep = uploadfile;
|
2001-12-10 19:48:55 -05:00
|
|
|
|
2003-08-19 19:42:24 -04:00
|
|
|
/* URL encode the file name */
|
|
|
|
filep = curl_escape(filep, 0 /* use strlen */);
|
2003-03-12 09:20:16 -05:00
|
|
|
|
2003-08-19 19:42:24 -04:00
|
|
|
if(filep) {
|
2003-03-12 09:20:16 -05:00
|
|
|
|
2003-08-19 19:42:24 -04:00
|
|
|
urlbuffer=(char *)malloc(strlen(url) + strlen(filep) + 3);
|
|
|
|
if(!urlbuffer) {
|
|
|
|
helpf("out of memory\n");
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
if(ptr)
|
|
|
|
/* there is a trailing slash on the URL */
|
|
|
|
sprintf(urlbuffer, "%s%s", url, filep);
|
|
|
|
else
|
|
|
|
/* thers is no trailing slash on the URL */
|
|
|
|
sprintf(urlbuffer, "%s/%s", url, filep);
|
2004-05-24 09:31:28 -04:00
|
|
|
|
2003-08-19 19:42:24 -04:00
|
|
|
curl_free(filep);
|
2003-03-12 09:20:16 -05:00
|
|
|
|
2003-08-19 19:42:24 -04:00
|
|
|
free(url);
|
|
|
|
url = urlbuffer; /* use our new URL instead! */
|
|
|
|
}
|
2001-01-08 02:37:44 -05:00
|
|
|
}
|
2004-04-06 08:06:05 -04:00
|
|
|
/* VMS Note:
|
2004-05-24 09:31:28 -04:00
|
|
|
*
|
2004-04-06 08:06:05 -04:00
|
|
|
* Reading binary from files can be a problem... Only FIXED, VAR
|
|
|
|
* etc WITHOUT implied CC will work Others need a \n appended to a
|
|
|
|
* line
|
|
|
|
*
|
|
|
|
* - Stat gives a size but this is UNRELIABLE in VMS As a f.e. a
|
|
|
|
* fixed file with implied CC needs to have a byte added for every
|
|
|
|
* record processed, this can by derived from Filesize & recordsize
|
|
|
|
* for VARiable record files the records need to be counted! for
|
|
|
|
* every record add 1 for linefeed and subtract 2 for the record
|
|
|
|
* header for VARIABLE header files only the bare record data needs
|
|
|
|
* to be considered with one appended if implied CC
|
|
|
|
*/
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2003-08-19 19:42:24 -04:00
|
|
|
infd=(FILE *) fopen(uploadfile, "rb");
|
|
|
|
if (!infd || stat(uploadfile, &fileinfo)) {
|
|
|
|
helpf("Can't open '%s'!\n", uploadfile);
|
|
|
|
return CURLE_READ_ERROR;
|
|
|
|
}
|
|
|
|
infdfopen=TRUE;
|
|
|
|
uploadfilesize=fileinfo.st_size;
|
2004-05-24 09:31:28 -04:00
|
|
|
|
2003-08-19 19:42:24 -04:00
|
|
|
}
|
2004-04-30 04:23:50 -04:00
|
|
|
else if(uploadfile && curlx_strequal(uploadfile, "-")) {
|
2003-08-19 19:42:24 -04:00
|
|
|
infd = stdin;
|
|
|
|
}
|
2001-08-19 13:09:06 -04:00
|
|
|
|
2003-08-19 19:42:24 -04:00
|
|
|
if(uploadfile && config->resume_from_current)
|
|
|
|
config->resume_from = -1; /* -1 will then force get-it-yourself */
|
2001-08-24 03:01:09 -04:00
|
|
|
|
2003-08-19 19:42:24 -04:00
|
|
|
if(outs.stream && isatty(fileno(outs.stream)))
|
|
|
|
/* we send the output to a tty, therefore we switch off the progress
|
|
|
|
meter */
|
|
|
|
config->conf |= CONF_NOPROGRESS;
|
2001-08-24 03:01:09 -04:00
|
|
|
|
2003-08-19 19:42:24 -04:00
|
|
|
if (urlnum > 1 && !(config->conf&CONF_MUTE)) {
|
|
|
|
fprintf(stderr, "\n[%d/%d]: %s --> %s\n",
|
|
|
|
i+1, urlnum, url, outfile ? outfile : "<stdout>");
|
|
|
|
if (separator)
|
|
|
|
printf("%s%s\n", CURLseparator, url);
|
2001-08-15 03:22:32 -04:00
|
|
|
}
|
2003-08-19 19:42:24 -04:00
|
|
|
if (httpgetfields) {
|
|
|
|
/* Find out whether the url contains a file name */
|
2004-01-29 08:48:36 -05:00
|
|
|
const char *pc =strstr(url, "://");
|
|
|
|
char sep='?';
|
2003-08-19 19:42:24 -04:00
|
|
|
if(pc)
|
|
|
|
pc+=3;
|
|
|
|
else
|
|
|
|
pc=url;
|
|
|
|
|
|
|
|
pc = strrchr(pc, '/'); /* check for a slash */
|
|
|
|
|
|
|
|
if(pc) {
|
|
|
|
/* there is a slash present in the URL */
|
|
|
|
|
|
|
|
if(strchr(pc, '?'))
|
|
|
|
/* Ouch, there's already a question mark in the URL string, we
|
2004-01-29 08:48:36 -05:00
|
|
|
then append the data with an ampersand separator instead! */
|
|
|
|
sep='&';
|
2003-08-19 19:42:24 -04:00
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Then append ? followed by the get fields to the url.
|
|
|
|
*/
|
|
|
|
urlbuffer=(char *)malloc(strlen(url) + strlen(httpgetfields) + 2);
|
|
|
|
if(!urlbuffer) {
|
|
|
|
helpf("out of memory\n");
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
if (pc)
|
2004-01-29 08:48:36 -05:00
|
|
|
sprintf(urlbuffer, "%s%c%s", url, sep, httpgetfields);
|
2003-08-19 19:42:24 -04:00
|
|
|
else
|
|
|
|
/* Append / before the ? to create a well-formed url
|
|
|
|
if the url contains a hostname only
|
|
|
|
*/
|
|
|
|
sprintf(urlbuffer, "%s/?%s", url, httpgetfields);
|
2004-05-24 09:31:28 -04:00
|
|
|
|
2003-08-19 19:42:24 -04:00
|
|
|
free(url); /* free previous URL */
|
|
|
|
url = urlbuffer; /* use our new URL instead! */
|
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2003-08-19 19:42:24 -04:00
|
|
|
if(!config->errors)
|
|
|
|
config->errors = stderr;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2003-07-15 19:47:25 -04:00
|
|
|
#ifdef O_BINARY
|
2003-08-19 19:42:24 -04:00
|
|
|
if(!outfile && !(config->conf & CONF_GETTEXT)) {
|
|
|
|
/* We get the output to stdout and we have not got the ASCII/text flag,
|
|
|
|
then set stdout to be binary */
|
|
|
|
setmode( fileno(stdout), O_BINARY );
|
|
|
|
}
|
2000-11-17 09:03:58 -05:00
|
|
|
#endif
|
2000-06-16 09:18:49 -04:00
|
|
|
|
2004-10-06 03:50:18 -04:00
|
|
|
if(1 == config->tcp_nodelay)
|
|
|
|
curl_easy_setopt(curl, CURLOPT_TCP_NODELAY, 1);
|
2004-03-25 08:37:18 -05:00
|
|
|
|
2003-08-19 19:42:24 -04:00
|
|
|
curl_easy_setopt(curl, CURLOPT_SSLENGINE, config->engine);
|
|
|
|
curl_easy_setopt(curl, CURLOPT_SSLENGINE_DEFAULT, 1);
|
|
|
|
|
|
|
|
/* where to store */
|
|
|
|
curl_easy_setopt(curl, CURLOPT_WRITEDATA, (FILE *)&outs);
|
|
|
|
/* what call to write */
|
|
|
|
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, my_fwrite);
|
|
|
|
|
|
|
|
/* for uploads */
|
|
|
|
input.stream = infd;
|
|
|
|
input.config = config;
|
|
|
|
curl_easy_setopt(curl, CURLOPT_READDATA, &input);
|
|
|
|
/* what call to read */
|
|
|
|
curl_easy_setopt(curl, CURLOPT_READFUNCTION, my_fread);
|
|
|
|
|
|
|
|
if(config->recvpersecond) {
|
|
|
|
/* tell libcurl to use a smaller sized buffer as it allows us to
|
|
|
|
make better sleeps! 7.9.9 stuff! */
|
|
|
|
curl_easy_setopt(curl, CURLOPT_BUFFERSIZE, config->recvpersecond);
|
|
|
|
}
|
2002-06-15 17:02:11 -04:00
|
|
|
|
2003-08-19 19:42:24 -04:00
|
|
|
/* size of uploaded file: */
|
2004-01-05 17:29:29 -05:00
|
|
|
curl_easy_setopt(curl, CURLOPT_INFILESIZE_LARGE, uploadfilesize);
|
2003-08-19 19:42:24 -04:00
|
|
|
curl_easy_setopt(curl, CURLOPT_URL, url); /* what to fetch */
|
|
|
|
curl_easy_setopt(curl, CURLOPT_PROXY, config->proxy); /* proxy to use */
|
|
|
|
curl_easy_setopt(curl, CURLOPT_HEADER, config->conf&CONF_HEADER);
|
|
|
|
curl_easy_setopt(curl, CURLOPT_NOPROGRESS, config->conf&CONF_NOPROGRESS);
|
|
|
|
curl_easy_setopt(curl, CURLOPT_NOBODY, config->conf&CONF_NOBODY);
|
|
|
|
curl_easy_setopt(curl, CURLOPT_FAILONERROR,
|
|
|
|
config->conf&CONF_FAILONERROR);
|
|
|
|
curl_easy_setopt(curl, CURLOPT_UPLOAD, uploadfile?TRUE:FALSE);
|
|
|
|
curl_easy_setopt(curl, CURLOPT_FTPLISTONLY,
|
|
|
|
config->conf&CONF_FTPLISTONLY);
|
|
|
|
curl_easy_setopt(curl, CURLOPT_FTPAPPEND, config->conf&CONF_FTPAPPEND);
|
|
|
|
|
|
|
|
if (config->conf&CONF_NETRC_OPT)
|
|
|
|
curl_easy_setopt(curl, CURLOPT_NETRC, CURL_NETRC_OPTIONAL);
|
|
|
|
else if (config->conf&CONF_NETRC)
|
|
|
|
curl_easy_setopt(curl, CURLOPT_NETRC, CURL_NETRC_REQUIRED);
|
|
|
|
else
|
|
|
|
curl_easy_setopt(curl, CURLOPT_NETRC, CURL_NETRC_IGNORED);
|
|
|
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION,
|
|
|
|
config->conf&CONF_FOLLOWLOCATION);
|
|
|
|
curl_easy_setopt(curl, CURLOPT_UNRESTRICTED_AUTH,
|
|
|
|
config->conf&CONF_UNRESTRICTED_AUTH);
|
|
|
|
curl_easy_setopt(curl, CURLOPT_TRANSFERTEXT, config->conf&CONF_GETTEXT);
|
|
|
|
curl_easy_setopt(curl, CURLOPT_USERPWD, config->userpwd);
|
|
|
|
curl_easy_setopt(curl, CURLOPT_PROXYUSERPWD, config->proxyuserpwd);
|
|
|
|
curl_easy_setopt(curl, CURLOPT_RANGE, config->range);
|
|
|
|
curl_easy_setopt(curl, CURLOPT_ERRORBUFFER, errorbuffer);
|
|
|
|
curl_easy_setopt(curl, CURLOPT_TIMEOUT, config->timeout);
|
|
|
|
curl_easy_setopt(curl, CURLOPT_POSTFIELDS, config->postfields);
|
|
|
|
|
|
|
|
/* new in libcurl 7.2: */
|
|
|
|
curl_easy_setopt(curl, CURLOPT_POSTFIELDSIZE, config->postfieldsize);
|
2004-05-24 09:31:28 -04:00
|
|
|
|
2003-08-19 19:42:24 -04:00
|
|
|
curl_easy_setopt(curl, CURLOPT_REFERER, config->referer);
|
|
|
|
curl_easy_setopt(curl, CURLOPT_AUTOREFERER,
|
|
|
|
config->conf&CONF_AUTO_REFERER);
|
|
|
|
curl_easy_setopt(curl, CURLOPT_USERAGENT, config->useragent);
|
|
|
|
curl_easy_setopt(curl, CURLOPT_FTPPORT, config->ftpport);
|
|
|
|
curl_easy_setopt(curl, CURLOPT_LOW_SPEED_LIMIT, config->low_speed_limit);
|
|
|
|
curl_easy_setopt(curl, CURLOPT_LOW_SPEED_TIME, config->low_speed_time);
|
2004-01-05 17:29:29 -05:00
|
|
|
curl_easy_setopt(curl, CURLOPT_RESUME_FROM_LARGE,
|
2003-08-19 19:42:24 -04:00
|
|
|
config->use_resume?config->resume_from:0);
|
|
|
|
curl_easy_setopt(curl, CURLOPT_COOKIE, config->cookie);
|
|
|
|
curl_easy_setopt(curl, CURLOPT_HTTPHEADER, config->headers);
|
|
|
|
curl_easy_setopt(curl, CURLOPT_HTTPPOST, config->httppost);
|
|
|
|
curl_easy_setopt(curl, CURLOPT_SSLCERT, config->cert);
|
|
|
|
curl_easy_setopt(curl, CURLOPT_SSLCERTTYPE, config->cert_type);
|
|
|
|
curl_easy_setopt(curl, CURLOPT_SSLKEY, config->key);
|
|
|
|
curl_easy_setopt(curl, CURLOPT_SSLKEYTYPE, config->key_type);
|
|
|
|
curl_easy_setopt(curl, CURLOPT_SSLKEYPASSWD, config->key_passwd);
|
|
|
|
|
|
|
|
/* default to strict verifyhost */
|
|
|
|
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 2);
|
|
|
|
if(config->cacert || config->capath) {
|
|
|
|
if (config->cacert)
|
|
|
|
curl_easy_setopt(curl, CURLOPT_CAINFO, config->cacert);
|
|
|
|
|
|
|
|
if (config->capath)
|
|
|
|
curl_easy_setopt(curl, CURLOPT_CAPATH, config->capath);
|
|
|
|
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, TRUE);
|
2003-01-30 00:15:57 -05:00
|
|
|
}
|
2003-10-23 03:46:22 -04:00
|
|
|
if(config->insecure_ok) {
|
|
|
|
/* new stuff needed for libcurl 7.10 */
|
|
|
|
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, FALSE);
|
|
|
|
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 1);
|
|
|
|
}
|
2004-05-24 09:31:28 -04:00
|
|
|
|
2003-08-19 19:42:24 -04:00
|
|
|
if((config->conf&CONF_NOBODY) ||
|
|
|
|
config->remote_time) {
|
|
|
|
/* no body or use remote time */
|
|
|
|
curl_easy_setopt(curl, CURLOPT_FILETIME, TRUE);
|
|
|
|
}
|
2004-05-24 09:31:28 -04:00
|
|
|
|
|
|
|
if (config->maxredirs)
|
|
|
|
curl_easy_setopt(curl, CURLOPT_MAXREDIRS, config->maxredirs);
|
|
|
|
else
|
|
|
|
curl_easy_setopt(curl, CURLOPT_MAXREDIRS, DEFAULT_MAXREDIRS);
|
|
|
|
|
2003-08-19 19:42:24 -04:00
|
|
|
curl_easy_setopt(curl, CURLOPT_CRLF, config->crlf);
|
|
|
|
curl_easy_setopt(curl, CURLOPT_QUOTE, config->quote);
|
|
|
|
curl_easy_setopt(curl, CURLOPT_POSTQUOTE, config->postquote);
|
|
|
|
curl_easy_setopt(curl, CURLOPT_WRITEHEADER,
|
|
|
|
config->headerfile?&heads:NULL);
|
|
|
|
curl_easy_setopt(curl, CURLOPT_COOKIEFILE, config->cookiefile);
|
|
|
|
/* cookie jar was added in 7.9 */
|
|
|
|
if(config->cookiejar)
|
|
|
|
curl_easy_setopt(curl, CURLOPT_COOKIEJAR, config->cookiejar);
|
|
|
|
/* cookie session added in 7.9.7 */
|
|
|
|
curl_easy_setopt(curl, CURLOPT_COOKIESESSION, config->cookiesession);
|
|
|
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_SSLVERSION, config->ssl_version);
|
|
|
|
curl_easy_setopt(curl, CURLOPT_TIMECONDITION, config->timecond);
|
|
|
|
curl_easy_setopt(curl, CURLOPT_TIMEVALUE, config->condtime);
|
|
|
|
curl_easy_setopt(curl, CURLOPT_CUSTOMREQUEST, config->customrequest);
|
|
|
|
curl_easy_setopt(curl, CURLOPT_STDERR, config->errors);
|
2004-05-24 09:31:28 -04:00
|
|
|
|
2003-08-19 19:42:24 -04:00
|
|
|
/* three new ones in libcurl 7.3: */
|
|
|
|
curl_easy_setopt(curl, CURLOPT_HTTPPROXYTUNNEL, config->proxytunnel);
|
|
|
|
curl_easy_setopt(curl, CURLOPT_INTERFACE, config->iface);
|
|
|
|
curl_easy_setopt(curl, CURLOPT_KRB4LEVEL, config->krb4level);
|
2004-05-24 09:31:28 -04:00
|
|
|
|
2003-11-19 10:59:23 -05:00
|
|
|
progressbarinit(&progressbar, config);
|
2003-08-19 19:42:24 -04:00
|
|
|
if((config->progressmode == CURL_PROGRESS_BAR) &&
|
|
|
|
!(config->conf&(CONF_NOPROGRESS|CONF_MUTE))) {
|
|
|
|
/* we want the alternative style, then we have to implement it
|
|
|
|
ourselves! */
|
|
|
|
curl_easy_setopt(curl, CURLOPT_PROGRESSFUNCTION, myprogress);
|
|
|
|
curl_easy_setopt(curl, CURLOPT_PROGRESSDATA, &progressbar);
|
|
|
|
}
|
2004-05-24 09:31:28 -04:00
|
|
|
|
2003-08-19 19:42:24 -04:00
|
|
|
/* new in libcurl 7.6.2: */
|
|
|
|
curl_easy_setopt(curl, CURLOPT_TELNETOPTIONS, config->telnet_options);
|
2001-03-12 11:02:29 -05:00
|
|
|
|
2003-08-19 19:42:24 -04:00
|
|
|
/* new in libcurl 7.7: */
|
|
|
|
curl_easy_setopt(curl, CURLOPT_RANDOM_FILE, config->random_file);
|
|
|
|
curl_easy_setopt(curl, CURLOPT_EGDSOCKET, config->egd_file);
|
|
|
|
curl_easy_setopt(curl, CURLOPT_CONNECTTIMEOUT, config->connecttimeout);
|
2001-09-11 18:36:03 -04:00
|
|
|
|
2003-08-19 19:42:24 -04:00
|
|
|
if(config->cipher_list)
|
|
|
|
curl_easy_setopt(curl, CURLOPT_SSL_CIPHER_LIST, config->cipher_list);
|
2001-10-09 02:53:11 -04:00
|
|
|
|
2003-08-19 19:42:24 -04:00
|
|
|
if(config->httpversion)
|
|
|
|
curl_easy_setopt(curl, CURLOPT_HTTP_VERSION, config->httpversion);
|
2001-11-29 14:42:51 -05:00
|
|
|
|
2003-08-19 19:42:24 -04:00
|
|
|
/* new in libcurl 7.9.2: */
|
|
|
|
if(config->disable_epsv)
|
|
|
|
/* disable it */
|
|
|
|
curl_easy_setopt(curl, CURLOPT_FTP_USE_EPSV, FALSE);
|
2002-05-03 08:14:09 -04:00
|
|
|
|
2003-08-19 19:42:24 -04:00
|
|
|
/* new in libcurl 7.10.5 */
|
|
|
|
if(config->disable_eprt)
|
|
|
|
/* disable it */
|
|
|
|
curl_easy_setopt(curl, CURLOPT_FTP_USE_EPRT, FALSE);
|
2003-05-22 18:40:01 -04:00
|
|
|
|
2003-08-19 19:42:24 -04:00
|
|
|
/* new in libcurl 7.10.6 (default is Basic) */
|
|
|
|
if(config->authtype)
|
|
|
|
curl_easy_setopt(curl, CURLOPT_HTTPAUTH, config->authtype);
|
2004-05-24 09:31:28 -04:00
|
|
|
|
2003-08-19 19:42:24 -04:00
|
|
|
/* new in curl 7.9.7 */
|
|
|
|
if(config->trace_dump) {
|
|
|
|
curl_easy_setopt(curl, CURLOPT_DEBUGFUNCTION, my_trace);
|
|
|
|
curl_easy_setopt(curl, CURLOPT_DEBUGDATA, config);
|
|
|
|
config->conf |= CONF_VERBOSE; /* force verbose */
|
|
|
|
}
|
|
|
|
curl_easy_setopt(curl, CURLOPT_VERBOSE, config->conf&CONF_VERBOSE);
|
2002-08-26 19:13:25 -04:00
|
|
|
|
2003-08-19 19:42:24 -04:00
|
|
|
/* new in curl 7.10 */
|
2004-05-24 09:31:28 -04:00
|
|
|
curl_easy_setopt(curl, CURLOPT_ENCODING,
|
2003-08-19 19:42:24 -04:00
|
|
|
(config->encoding) ? "" : NULL);
|
2002-09-02 18:31:18 -04:00
|
|
|
|
2003-08-19 19:42:24 -04:00
|
|
|
/* new in curl 7.10.7 */
|
|
|
|
curl_easy_setopt(curl, CURLOPT_FTP_CREATE_MISSING_DIRS,
|
|
|
|
config->ftp_create_dirs);
|
|
|
|
if(config->proxyntlm)
|
|
|
|
curl_easy_setopt(curl, CURLOPT_PROXYAUTH, CURLAUTH_NTLM);
|
2004-05-03 07:56:18 -04:00
|
|
|
else if(config->proxydigest)
|
|
|
|
curl_easy_setopt(curl, CURLOPT_PROXYAUTH, CURLAUTH_DIGEST);
|
2004-05-25 10:44:25 -04:00
|
|
|
else if(config->proxybasic)
|
|
|
|
curl_easy_setopt(curl, CURLOPT_PROXYAUTH, CURLAUTH_BASIC);
|
2003-08-08 06:24:13 -04:00
|
|
|
|
2003-10-17 09:11:00 -04:00
|
|
|
/* new in curl 7.10.8 */
|
2003-11-24 06:59:15 -05:00
|
|
|
if(config->max_filesize)
|
2004-01-05 17:29:29 -05:00
|
|
|
curl_easy_setopt(curl, CURLOPT_MAXFILESIZE_LARGE,
|
|
|
|
config->max_filesize);
|
2003-10-17 09:11:00 -04:00
|
|
|
|
2004-04-14 08:00:53 -04:00
|
|
|
if(4 == config->ip_version)
|
|
|
|
curl_easy_setopt(curl, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4);
|
|
|
|
else if(6 == config->ip_version)
|
|
|
|
curl_easy_setopt(curl, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V6);
|
|
|
|
else
|
|
|
|
curl_easy_setopt(curl, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_WHATEVER);
|
|
|
|
|
2004-01-30 03:51:24 -05:00
|
|
|
/* new in curl 7.11.0 */
|
2003-11-24 06:59:15 -05:00
|
|
|
if(config->ftp_ssl)
|
|
|
|
curl_easy_setopt(curl, CURLOPT_FTP_SSL, CURLFTPSSL_TRY);
|
|
|
|
|
2004-01-30 03:51:24 -05:00
|
|
|
/* new in curl 7.11.1 */
|
|
|
|
if(config->socks5proxy) {
|
|
|
|
curl_easy_setopt(curl, CURLOPT_PROXY, config->socks5proxy);
|
|
|
|
curl_easy_setopt(curl, CURLOPT_PROXYTYPE, CURLPROXY_SOCKS5);
|
|
|
|
}
|
|
|
|
|
2003-08-19 19:42:24 -04:00
|
|
|
res = curl_easy_perform(curl);
|
2004-05-24 09:31:28 -04:00
|
|
|
|
2003-08-19 19:42:24 -04:00
|
|
|
if((config->progressmode == CURL_PROGRESS_BAR) &&
|
|
|
|
progressbar.calls) {
|
|
|
|
/* if the custom progress bar has been displayed, we output a
|
|
|
|
newline here */
|
|
|
|
fputs("\n", progressbar.out);
|
|
|
|
}
|
2002-03-08 07:05:57 -05:00
|
|
|
|
2003-08-19 19:42:24 -04:00
|
|
|
if(config->writeout) {
|
|
|
|
ourWriteOut(curl, config->writeout);
|
|
|
|
}
|
2002-04-08 18:48:25 -04:00
|
|
|
#ifdef USE_ENVIRONMENT
|
2003-08-19 19:42:24 -04:00
|
|
|
if (config->writeenv)
|
|
|
|
ourWriteEnv(curl);
|
2002-04-08 18:48:25 -04:00
|
|
|
#endif
|
2001-09-03 08:00:08 -04:00
|
|
|
|
2004-10-06 03:50:18 -04:00
|
|
|
#ifdef VMS
|
2003-08-19 19:42:24 -04:00
|
|
|
if (!config->showerror) {
|
|
|
|
vms_show = VMSSTS_HIDE;
|
|
|
|
}
|
2001-08-06 09:19:43 -04:00
|
|
|
#else
|
2003-08-19 19:42:24 -04:00
|
|
|
if((res!=CURLE_OK) && config->showerror) {
|
2004-05-25 03:51:06 -04:00
|
|
|
fprintf(config->errors, "curl: (%d) %s\n", (int)res,
|
2004-07-01 10:06:44 -04:00
|
|
|
errorbuffer[0]? errorbuffer:
|
|
|
|
curl_easy_strerror((CURLcode)res));
|
2003-08-19 19:42:24 -04:00
|
|
|
if(CURLE_SSL_CACERT == res) {
|
2003-04-14 10:54:18 -04:00
|
|
|
#define CURL_CA_CERT_ERRORMSG1 \
|
2003-04-14 09:09:09 -04:00
|
|
|
"More details here: http://curl.haxx.se/docs/sslcerts.html\n\n" \
|
2003-04-14 10:54:18 -04:00
|
|
|
"curl performs SSL certificate verification by default, using a \"bundle\"\n" \
|
|
|
|
" of Certificate Authority (CA) public keys (CA certs). The default\n" \
|
|
|
|
" bundle is named curl-ca-bundle.crt; you can specify an alternate file\n" \
|
|
|
|
" using the --cacert option.\n"
|
|
|
|
|
|
|
|
#define CURL_CA_CERT_ERRORMSG2 \
|
|
|
|
"If this HTTPS server uses a certificate signed by a CA represented in\n" \
|
|
|
|
" the bundle, the certificate verification probably failed due to a\n" \
|
|
|
|
" problem with the certificate (it might be expired, or the name might\n" \
|
|
|
|
" not match the domain name in the URL).\n" \
|
|
|
|
"If you'd like to turn off curl's verification of the certificate, use\n" \
|
|
|
|
" the -k (or --insecure) option.\n"
|
|
|
|
|
2003-08-19 19:42:24 -04:00
|
|
|
fprintf(config->errors, "%s%s",
|
|
|
|
CURL_CA_CERT_ERRORMSG1,
|
|
|
|
CURL_CA_CERT_ERRORMSG2 );
|
|
|
|
}
|
2003-04-14 09:09:09 -04:00
|
|
|
}
|
2001-08-06 09:19:43 -04:00
|
|
|
#endif
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2004-04-30 04:23:50 -04:00
|
|
|
if (outfile && !curlx_strequal(outfile, "-") && outs.stream)
|
2003-08-19 19:42:24 -04:00
|
|
|
fclose(outs.stream);
|
2001-09-03 08:00:08 -04:00
|
|
|
|
|
|
|
#ifdef HAVE_UTIME
|
2004-05-24 09:31:28 -04:00
|
|
|
/* Important that we set the time _after_ the file has been
|
2003-08-19 19:42:24 -04:00
|
|
|
closed, as is done above here */
|
|
|
|
if(config->remote_time && outs.filename) {
|
|
|
|
/* as libcurl if we got a time. Pretty please */
|
|
|
|
long filetime;
|
|
|
|
curl_easy_getinfo(curl, CURLINFO_FILETIME, &filetime);
|
|
|
|
if(filetime >= 0) {
|
|
|
|
struct utimbuf times;
|
2004-07-02 08:29:15 -04:00
|
|
|
times.actime = (time_t)filetime;
|
|
|
|
times.modtime = (time_t)filetime;
|
2003-08-19 19:42:24 -04:00
|
|
|
utime(outs.filename, ×); /* set the time we got */
|
|
|
|
}
|
2001-09-03 08:00:08 -04:00
|
|
|
}
|
|
|
|
#endif
|
2004-01-13 03:35:57 -05:00
|
|
|
#ifdef AMIGA
|
|
|
|
/* Set the url as comment for the file. (up to 80 chars are allowed)
|
|
|
|
*/
|
|
|
|
if( strlen(url) > 78 )
|
|
|
|
url[79] = '\0';
|
2004-05-24 09:31:28 -04:00
|
|
|
|
2004-01-13 03:35:57 -05:00
|
|
|
SetComment( outs.filename, url);
|
|
|
|
#endif
|
2001-09-03 08:00:08 -04:00
|
|
|
|
2003-08-19 19:42:24 -04:00
|
|
|
if(headerfilep)
|
|
|
|
fclose(headerfilep);
|
2004-05-24 09:31:28 -04:00
|
|
|
|
2003-08-19 19:42:24 -04:00
|
|
|
if (httpgetfields)
|
|
|
|
free(httpgetfields);
|
2001-08-15 03:22:32 -04:00
|
|
|
|
2003-08-19 19:42:24 -04:00
|
|
|
if(url)
|
|
|
|
free(url);
|
|
|
|
|
|
|
|
if(outfile)
|
|
|
|
free(outfile);
|
|
|
|
|
|
|
|
if(infdfopen)
|
|
|
|
fclose(infd);
|
|
|
|
|
|
|
|
} /* loop to the next URL */
|
|
|
|
|
|
|
|
if(urls)
|
|
|
|
/* cleanup memory used for URL globbing patterns */
|
|
|
|
glob_cleanup(urls);
|
2004-05-24 09:31:28 -04:00
|
|
|
|
2003-08-19 19:42:24 -04:00
|
|
|
if(uploadfile)
|
|
|
|
free(uploadfile);
|
2004-05-24 09:31:28 -04:00
|
|
|
|
2003-08-19 19:42:24 -04:00
|
|
|
} /* loop to the next globbed upload file */
|
|
|
|
|
|
|
|
if(inglob)
|
|
|
|
glob_cleanup(inglob);
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2001-01-08 02:37:44 -05:00
|
|
|
if(outfiles)
|
|
|
|
free(outfiles);
|
2000-03-16 06:43:10 -05:00
|
|
|
|
2001-01-08 02:37:44 -05:00
|
|
|
/* empty this urlnode struct */
|
|
|
|
if(urlnode->url)
|
|
|
|
free(urlnode->url);
|
|
|
|
if(urlnode->outfile)
|
|
|
|
free(urlnode->outfile);
|
2003-08-19 19:42:24 -04:00
|
|
|
if(urlnode->infile)
|
|
|
|
free(urlnode->infile);
|
2004-05-24 09:31:28 -04:00
|
|
|
|
2001-01-08 02:37:44 -05:00
|
|
|
/* move on to the next URL */
|
|
|
|
nextnode=urlnode->next;
|
|
|
|
free(urlnode); /* free the node */
|
|
|
|
urlnode = nextnode;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2001-01-08 02:37:44 -05:00
|
|
|
} /* while-loop through all URLs */
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2002-05-03 05:47:25 -04:00
|
|
|
if(config->headerfile && !headerfilep && heads.stream)
|
|
|
|
fclose(heads.stream);
|
|
|
|
|
2000-11-17 09:03:58 -05:00
|
|
|
if(allocuseragent)
|
2000-11-21 10:37:54 -05:00
|
|
|
free(config->useragent);
|
2000-11-17 09:03:58 -05:00
|
|
|
|
2001-03-12 08:57:02 -05:00
|
|
|
/* cleanup the curl handle! */
|
|
|
|
curl_easy_cleanup(curl);
|
|
|
|
|
2004-07-01 02:19:19 -04:00
|
|
|
if(config->trace_fopened && config->trace_stream)
|
|
|
|
fclose(config->trace_stream);
|
|
|
|
|
2002-03-08 10:18:03 -05:00
|
|
|
if(config->errors_fopened)
|
2001-08-09 05:47:53 -04:00
|
|
|
fclose(config->errors);
|
|
|
|
|
2001-05-28 11:06:46 -04:00
|
|
|
main_free(); /* cleanup */
|
2001-03-12 08:57:02 -05:00
|
|
|
|
2000-11-20 02:54:57 -05:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
int res;
|
2000-11-21 10:37:54 -05:00
|
|
|
struct Configurable config;
|
2000-11-20 02:54:57 -05:00
|
|
|
memset(&config, 0, sizeof(struct Configurable));
|
2003-06-26 07:33:29 -04:00
|
|
|
|
2000-11-21 10:37:54 -05:00
|
|
|
res = operate(&config, argc, argv);
|
2000-11-20 02:54:57 -05:00
|
|
|
free_config_fields(&config);
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2004-03-17 07:46:42 -05:00
|
|
|
#ifdef __NOVELL_LIBC__
|
|
|
|
pressanykey();
|
|
|
|
#endif
|
2004-10-06 03:50:18 -04:00
|
|
|
#ifdef VMS
|
|
|
|
if (res > CURL_LAST) res = CURL_LAST; /* If CURL_LAST exceeded then */
|
2003-12-03 03:40:39 -05:00
|
|
|
return (vms_cond[res]|vms_show); /* curlmsg.h is out of sync. */
|
2001-08-06 09:19:43 -04:00
|
|
|
#else
|
2000-11-17 09:03:58 -05:00
|
|
|
return res;
|
2001-08-06 09:19:43 -04:00
|
|
|
#endif
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
2000-02-10 18:03:08 -05:00
|
|
|
|
|
|
|
static char *my_get_line(FILE *fp)
|
|
|
|
{
|
|
|
|
char buf[4096];
|
|
|
|
char *nl = NULL;
|
|
|
|
char *retval = NULL;
|
|
|
|
|
2003-08-06 19:48:08 -04:00
|
|
|
do {
|
|
|
|
if (NULL == fgets(buf, sizeof(buf), fp))
|
|
|
|
break;
|
|
|
|
if (NULL == retval)
|
|
|
|
retval = strdup(buf);
|
|
|
|
else {
|
|
|
|
if (NULL == (retval = realloc(retval,
|
|
|
|
strlen(retval) + strlen(buf) + 1)))
|
2000-02-10 18:03:08 -05:00
|
|
|
break;
|
2003-08-06 19:48:08 -04:00
|
|
|
strcat(retval, buf);
|
|
|
|
}
|
2000-02-10 18:03:08 -05:00
|
|
|
}
|
|
|
|
while (NULL == (nl = strchr(retval, '\n')));
|
|
|
|
|
|
|
|
if (NULL != nl)
|
|
|
|
*nl = '\0';
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
2002-12-02 09:37:59 -05:00
|
|
|
|
|
|
|
|
|
|
|
/* Create the needed directory hierarchy recursively in order to save
|
|
|
|
multi-GETs in file output, ie:
|
|
|
|
curl "http://my.site/dir[1-5]/file[1-5].txt" -o "dir#1/file#2.txt"
|
|
|
|
should create all the dir* automagically
|
|
|
|
*/
|
|
|
|
static int create_dir_hierarchy(char *outfile)
|
|
|
|
{
|
|
|
|
char *tempdir;
|
|
|
|
char *tempdir2;
|
|
|
|
char *outdup;
|
|
|
|
char *dirbuildup;
|
|
|
|
int result=0;
|
2004-05-24 09:31:28 -04:00
|
|
|
|
2002-12-02 09:37:59 -05:00
|
|
|
outdup = strdup(outfile);
|
|
|
|
dirbuildup = malloc(sizeof(char) * strlen(outfile));
|
2003-01-07 04:35:57 -05:00
|
|
|
if(!dirbuildup)
|
|
|
|
return -1;
|
|
|
|
dirbuildup[0] = '\0';
|
2002-12-02 09:37:59 -05:00
|
|
|
|
|
|
|
tempdir = strtok(outdup, DIR_CHAR);
|
|
|
|
|
|
|
|
while (tempdir != NULL) {
|
|
|
|
tempdir2 = strtok(NULL, DIR_CHAR);
|
|
|
|
/* since strtok returns a token for the last word even
|
|
|
|
if not ending with DIR_CHAR, we need to prune it */
|
|
|
|
if (tempdir2 != NULL) {
|
|
|
|
if (strlen(dirbuildup) > 0)
|
|
|
|
sprintf(dirbuildup,"%s%s%s",dirbuildup, DIR_CHAR, tempdir);
|
|
|
|
else {
|
2002-12-03 03:07:52 -05:00
|
|
|
if (0 != strncmp(outdup, DIR_CHAR, 1))
|
2002-12-02 09:37:59 -05:00
|
|
|
sprintf(dirbuildup,"%s",tempdir);
|
|
|
|
else
|
|
|
|
sprintf(dirbuildup,"%s%s", DIR_CHAR, tempdir);
|
|
|
|
}
|
2003-01-08 10:04:42 -05:00
|
|
|
if (access(dirbuildup, F_OK) == -1) {
|
2002-12-02 09:37:59 -05:00
|
|
|
result = mkdir(dirbuildup,(mode_t)0000750);
|
|
|
|
if (-1 == result) {
|
|
|
|
switch (errno) {
|
|
|
|
#ifdef EACCES
|
|
|
|
case EACCES:
|
|
|
|
fprintf(stderr,"You don't have permission to create %s.\n",
|
|
|
|
dirbuildup);
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
#ifdef ENAMETOOLONG
|
|
|
|
case ENAMETOOLONG:
|
|
|
|
fprintf(stderr,"The directory name %s is too long.\n",
|
|
|
|
dirbuildup);
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
#ifdef EROFS
|
|
|
|
case EROFS:
|
|
|
|
fprintf(stderr,"%s resides on a read-only file system.\n",
|
|
|
|
dirbuildup);
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
#ifdef ENOSPC
|
|
|
|
case ENOSPC:
|
|
|
|
fprintf(stderr,"No space left on the file system that will "
|
|
|
|
"contain the directory %s.\n", dirbuildup);
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
#ifdef EDQUOT
|
|
|
|
case EDQUOT:
|
|
|
|
fprintf(stderr,"Cannot create directory %s because you "
|
|
|
|
"exceeded your quota.\n", dirbuildup);
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
default :
|
|
|
|
fprintf(stderr,"Error creating directory %s.\n", dirbuildup);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break; /* get out of loop */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
tempdir = tempdir2;
|
|
|
|
}
|
|
|
|
free(dirbuildup);
|
|
|
|
free(outdup);
|
|
|
|
|
|
|
|
return result; /* 0 is fine, -1 is badness */
|
|
|
|
}
|
|
|
|
|
2003-07-15 19:47:25 -04:00
|
|
|
#ifdef __DJGPP__
|
|
|
|
/* The following functions are taken with modification from the DJGPP
|
|
|
|
* port of tar 1.12. They use algorithms originally from DJTAR. */
|
|
|
|
|
|
|
|
char *
|
|
|
|
msdosify (char *file_name)
|
|
|
|
{
|
|
|
|
static char dos_name[PATH_MAX];
|
|
|
|
static char illegal_chars_dos[] = ".+, ;=[]|<>\\\":?*";
|
|
|
|
static char *illegal_chars_w95 = &illegal_chars_dos[8];
|
|
|
|
int idx, dot_idx;
|
|
|
|
char *s = file_name, *d = dos_name;
|
|
|
|
char *illegal_aliens = illegal_chars_dos;
|
|
|
|
size_t len = sizeof (illegal_chars_dos) - 1;
|
|
|
|
int lfn = 0;
|
|
|
|
|
|
|
|
/* Support for Windows 9X VFAT systems, when available. */
|
|
|
|
if (_use_lfn (file_name))
|
|
|
|
lfn = 1;
|
|
|
|
if (lfn) {
|
|
|
|
illegal_aliens = illegal_chars_w95;
|
|
|
|
len -= (illegal_chars_w95 - illegal_chars_dos);
|
|
|
|
}
|
2004-05-24 09:31:28 -04:00
|
|
|
|
2003-07-15 19:47:25 -04:00
|
|
|
/* Get past the drive letter, if any. */
|
|
|
|
if (s[0] >= 'A' && s[0] <= 'z' && s[1] == ':') {
|
|
|
|
*d++ = *s++;
|
|
|
|
*d++ = *s++;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (idx = 0, dot_idx = -1; *s; s++, d++) {
|
|
|
|
if (memchr (illegal_aliens, *s, len)) {
|
|
|
|
/* Dots are special: DOS doesn't allow them as the leading character,
|
|
|
|
and a file name cannot have more than a single dot. We leave the
|
|
|
|
first non-leading dot alone, unless it comes too close to the
|
|
|
|
beginning of the name: we want sh.lex.c to become sh_lex.c, not
|
|
|
|
sh.lex-c. */
|
|
|
|
if (*s == '.') {
|
|
|
|
if (idx == 0 && (s[1] == '/' || (s[1] == '.' && s[2] == '/'))) {
|
|
|
|
/* Copy "./" and "../" verbatim. */
|
|
|
|
*d++ = *s++;
|
|
|
|
if (*s == '.')
|
|
|
|
*d++ = *s++;
|
|
|
|
*d = *s;
|
|
|
|
}
|
|
|
|
else if (idx == 0)
|
|
|
|
*d = '_';
|
|
|
|
else if (dot_idx >= 0) {
|
|
|
|
if (dot_idx < 5) { /* 5 is a heuristic ad-hoc'ery */
|
|
|
|
d[dot_idx - idx] = '_'; /* replace previous dot */
|
|
|
|
*d = '.';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
*d = '-';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
*d = '.';
|
|
|
|
|
|
|
|
if (*s == '.')
|
|
|
|
dot_idx = idx;
|
|
|
|
}
|
|
|
|
else if (*s == '+' && s[1] == '+') {
|
|
|
|
if (idx - 2 == dot_idx) { /* .c++, .h++ etc. */
|
|
|
|
*d++ = 'x';
|
|
|
|
*d = 'x';
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* libg++ etc. */
|
|
|
|
memcpy (d, "plus", 4);
|
|
|
|
d += 3;
|
|
|
|
}
|
|
|
|
s++;
|
|
|
|
idx++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
*d = '_';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
*d = *s;
|
|
|
|
if (*s == '/') {
|
|
|
|
idx = 0;
|
|
|
|
dot_idx = -1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
idx++;
|
|
|
|
}
|
|
|
|
|
|
|
|
*d = '\0';
|
|
|
|
return dos_name;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *
|
|
|
|
rename_if_dos_device_name (char *file_name)
|
|
|
|
{
|
|
|
|
/* We could have a file whose name is a device on MS-DOS. Trying to
|
|
|
|
* retrieve such a file would fail at best and wedge us at worst. We need
|
|
|
|
* to rename such files. */
|
|
|
|
char *base;
|
|
|
|
struct stat st_buf;
|
|
|
|
char fname[PATH_MAX];
|
|
|
|
|
|
|
|
strcpy (fname, file_name);
|
|
|
|
base = basename (fname);
|
|
|
|
if (((stat(base, &st_buf)) == 0) && (S_ISCHR(st_buf.st_mode))) {
|
|
|
|
size_t blen = strlen (base);
|
|
|
|
|
|
|
|
/* Prepend a '_'. */
|
|
|
|
memmove (base + 1, base, blen + 1);
|
|
|
|
base[0] = '_';
|
|
|
|
strcpy (file_name, fname);
|
|
|
|
}
|
|
|
|
return file_name;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* __DJGPP__ */
|