curl tool: make curl.h first header included in tool_setup.h
[platform/upstream/curl.git] / src / tool_main.c
1 /***************************************************************************
2  *                                  _   _ ____  _
3  *  Project                     ___| | | |  _ \| |
4  *                             / __| | | | |_) | |
5  *                            | (__| |_| |  _ <| |___
6  *                             \___|\___/|_| \_\_____|
7  *
8  * Copyright (C) 1998 - 2012, 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_UNISTD_H
27 #  include <unistd.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_operate.h"
37 #include "tool_panykey.h"
38 #include "tool_vms.h"
39 #include "tool_main.h"
40
41 /*
42  * This is low-level hard-hacking memory leak tracking and similar. Using
43  * the library level code from this client-side is ugly, but we do this
44  * anyway for convenience.
45  */
46 #include "memdebug.h" /* keep this as LAST include */
47
48 #ifdef __VMS
49 static int vms_show = 0;
50 #endif
51
52 /*
53  * Ensure that file descriptors 0, 1 and 2 (stdin, stdout, stderr) are
54  * open before starting to run.  Otherwise, the first three network
55  * sockets opened by curl could be used for input sources, downloaded data
56  * or error logs as they will effectively be stdin, stdout and/or stderr.
57  */
58 static void main_checkfds(void)
59 {
60 #ifdef HAVE_PIPE
61   int fd[2] = { STDIN_FILENO, STDIN_FILENO };
62   while(fd[0] == STDIN_FILENO ||
63         fd[0] == STDOUT_FILENO ||
64         fd[0] == STDERR_FILENO ||
65         fd[1] == STDIN_FILENO ||
66         fd[1] == STDOUT_FILENO ||
67         fd[1] == STDERR_FILENO)
68     if(pipe(fd) < 0)
69       return;   /* Out of handles. This isn't really a big problem now, but
70                    will be when we try to create a socket later. */
71   close(fd[0]);
72   close(fd[1]);
73 #endif
74 }
75
76 /*
77 ** curl tool main function.
78 */
79 int main(int argc, char *argv[])
80 {
81   int res;
82   struct Configurable config;
83
84   memset(&config, 0, sizeof(struct Configurable));
85
86   config.errors = stderr; /* default errors to stderr */
87
88   main_checkfds();
89
90   res = operate(&config, argc, argv);
91
92 #ifdef __SYMBIAN32__
93   if(config.showerror)
94     tool_pressanykey();
95 #endif
96
97   free_config_fields(&config);
98
99 #ifdef __NOVELL_LIBC__
100   if(getenv("_IN_NETWARE_BASH_") == NULL)
101     tool_pressanykey();
102 #endif
103
104 #ifdef __VMS
105   vms_special_exit(res, vms_show);
106 #else
107   return res;
108 #endif
109 }
110