tool_getparam: Added support for parsing of specific URL options
[platform/upstream/curl.git] / src / tool_main.c
1 /***************************************************************************
2  *                                  _   _ ____  _
3  *  Project                     ___| | | |  _ \| |
4  *                             / __| | | | |_) | |
5  *                            | (__| |_| |  _ <| |___
6  *                             \___|\___/|_| \_\_____|
7  *
8  * Copyright (C) 1998 - 2014, Daniel Stenberg, <daniel@haxx.se>, et al.
9  *
10  * This software is licensed as described in the file COPYING, which
11  * you should have received as part of this distribution. The terms
12  * are also available at http://curl.haxx.se/docs/copyright.html.
13  *
14  * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15  * copies of the Software, and permit persons to whom the Software is
16  * furnished to do so, under the terms of the COPYING file.
17  *
18  * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19  * KIND, either express or implied.
20  *
21  ***************************************************************************/
22 #include "tool_setup.h"
23
24 #include <sys/stat.h>
25
26 #ifdef HAVE_SIGNAL_H
27 #include <signal.h>
28 #endif
29
30 #define ENABLE_CURLX_PRINTF
31 /* use our own printf() functions */
32 #include "curlx.h"
33
34 #include "tool_cfgable.h"
35 #include "tool_convert.h"
36 #include "tool_msgs.h"
37 #include "tool_operate.h"
38 #include "tool_panykey.h"
39 #include "tool_vms.h"
40 #include "tool_main.h"
41 #include "tool_libinfo.h"
42
43 /*
44  * This is low-level hard-hacking memory leak tracking and similar. Using
45  * the library level code from this client-side is ugly, but we do this
46  * anyway for convenience.
47  */
48 #include "memdebug.h" /* keep this as LAST include */
49
50 #ifdef __VMS
51 /*
52  * vms_show is a global variable, used in main() as parameter for
53  * function vms_special_exit() to allow proper curl tool exiting.
54  * Its value may be set in other tool_*.c source files thanks to
55  * forward declaration present in tool_vms.h
56  */
57 int vms_show = 0;
58 #endif
59
60 /* if we build a static library for unit tests, there is no main() function */
61 #ifndef UNITTESTS
62
63 /*
64  * Ensure that file descriptors 0, 1 and 2 (stdin, stdout, stderr) are
65  * open before starting to run.  Otherwise, the first three network
66  * sockets opened by curl could be used for input sources, downloaded data
67  * or error logs as they will effectively be stdin, stdout and/or stderr.
68  */
69 static void main_checkfds(void)
70 {
71 #ifdef HAVE_PIPE
72   int fd[2] = { STDIN_FILENO, STDIN_FILENO };
73   while(fd[0] == STDIN_FILENO ||
74         fd[0] == STDOUT_FILENO ||
75         fd[0] == STDERR_FILENO ||
76         fd[1] == STDIN_FILENO ||
77         fd[1] == STDOUT_FILENO ||
78         fd[1] == STDERR_FILENO)
79     if(pipe(fd) < 0)
80       return;   /* Out of handles. This isn't really a big problem now, but
81                    will be when we try to create a socket later. */
82   close(fd[0]);
83   close(fd[1]);
84 #endif
85 }
86
87 #ifdef CURLDEBUG
88 static void memory_tracking_init(void)
89 {
90   char *env;
91   /* if CURL_MEMDEBUG is set, this starts memory tracking message logging */
92   env = curlx_getenv("CURL_MEMDEBUG");
93   if(env) {
94     /* use the value as file name */
95     char fname[CURL_MT_LOGFNAME_BUFSIZE];
96     if(strlen(env) >= CURL_MT_LOGFNAME_BUFSIZE)
97       env[CURL_MT_LOGFNAME_BUFSIZE-1] = '\0';
98     strcpy(fname, env);
99     curl_free(env);
100     curl_memdebug(fname);
101     /* this weird stuff here is to make curl_free() get called
102        before curl_memdebug() as otherwise memory tracking will
103        log a free() without an alloc! */
104   }
105   /* if CURL_MEMLIMIT is set, this enables fail-on-alloc-number-N feature */
106   env = curlx_getenv("CURL_MEMLIMIT");
107   if(env) {
108     char *endptr;
109     long num = strtol(env, &endptr, 10);
110     if((endptr != env) && (endptr == env + strlen(env)) && (num > 0))
111       curl_memlimit(num);
112     curl_free(env);
113   }
114 }
115 #else
116 #  define memory_tracking_init() Curl_nop_stmt
117 #endif
118
119 /*
120  * This is the main global constructor for the app. Call this before
121  * _any_ libcurl usage. If this fails, *NO* libcurl functions may be
122  * used, or havoc may be the result.
123  */
124 static CURLcode main_init(struct Configurable *config)
125 {
126   CURLcode result = CURLE_OK;
127
128 #if defined(__DJGPP__) || defined(__GO32__)
129   /* stop stat() wasting time */
130   _djstat_flags |= _STAT_INODE | _STAT_EXEC_MAGIC | _STAT_DIRSIZE;
131 #endif
132
133   /* Perform the libcurl initialization */
134   result = curl_global_init(CURL_GLOBAL_DEFAULT);
135   if(!result) {
136     /* Get information about libcurl */
137     result = get_libcurl_info();
138
139     if(result)
140       helpf(config->errors, "error retrieving curl library information\n");
141   }
142   else
143     helpf(config->errors, "error initializing curl library\n");
144
145   return result;
146 }
147
148 /*
149  * This is the main global destructor for the app. Call this after
150  * _all_ libcurl usage is done.
151  */
152 static void main_free(void)
153 {
154   curl_global_cleanup();
155   convert_cleanup();
156   metalink_cleanup();
157 }
158
159 /*
160 ** curl tool main function.
161 */
162 int main(int argc, char *argv[])
163 {
164   int res;
165   struct Configurable *config;
166
167   main_checkfds();
168
169 #if defined(HAVE_SIGNAL) && defined(SIGPIPE)
170   (void)signal(SIGPIPE, SIG_IGN);
171 #endif
172
173   /* Initialize memory tracking */
174   memory_tracking_init();
175
176   /* Allocate the initial config */
177   config = malloc(sizeof(struct Configurable));
178
179   if(config) {
180     /* Initialise the config */
181     config_init(config);
182
183     /* Initialize the curl library - do not call any libcurl functions before
184        this point */
185     res = main_init(config);
186     if(!res) {
187       /* Start our curl operation */
188       res = operate(config, argc, argv);
189
190       /* Perform the main cleanup */
191       main_free();
192     }
193
194 #ifdef __SYMBIAN32__
195     if(config->showerror)
196       tool_pressanykey();
197 #endif
198
199     /* Free the config structures */
200     config_free(config);
201     config = NULL;
202   }
203   else {
204     helpf(stderr, "error initializing curl\n");
205     res = CURLE_FAILED_INIT;
206   }
207
208 #ifdef __NOVELL_LIBC__
209   if(getenv("_IN_NETWARE_BASH_") == NULL)
210     tool_pressanykey();
211 #endif
212
213 #ifdef __VMS
214   vms_special_exit(res, vms_show);
215 #else
216   return res;
217 #endif
218 }
219
220 #endif /* ndef UNITTESTS */