remove the CVSish $Id$ lines
[platform/upstream/curl.git] / lib / version.c
1 /***************************************************************************
2  *                                  _   _ ____  _
3  *  Project                     ___| | | |  _ \| |
4  *                             / __| | | | |_) | |
5  *                            | (__| |_| |  _ <| |___
6  *                             \___|\___/|_| \_\_____|
7  *
8  * Copyright (C) 1998 - 2010, 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
23 #include "setup.h"
24
25 #include <string.h>
26 #include <stdio.h>
27
28 #include <curl/curl.h>
29 #include "urldata.h"
30 #include "sslgen.h"
31
32 #define _MPRINTF_REPLACE /* use the internal *printf() functions */
33 #include <curl/mprintf.h>
34
35 #ifdef USE_ARES
36 #include <ares_version.h>
37 #endif
38
39 #ifdef USE_LIBIDN
40 #include <stringprep.h>
41 #endif
42
43 #if defined(HAVE_ICONV) && defined(CURL_DOES_CONVERSIONS)
44 #include <iconv.h>
45 #endif
46
47 #ifdef USE_LIBSSH2
48 #include <libssh2.h>
49 #endif
50
51 #ifdef HAVE_LIBSSH2_VERSION
52 /* get it run-time if possible */
53 #define CURL_LIBSSH2_VERSION libssh2_version(0)
54 #else
55 /* use build-time if run-time not possible */
56 #define CURL_LIBSSH2_VERSION LIBSSH2_VERSION
57 #endif
58
59 char *curl_version(void)
60 {
61   static char version[200];
62   char *ptr=version;
63   size_t len;
64   size_t left = sizeof(version);
65   strcpy(ptr, LIBCURL_NAME "/" LIBCURL_VERSION );
66   len = strlen(ptr);
67   left -= len;
68   ptr += len;
69
70   if(left > 1) {
71     len = Curl_ssl_version(ptr + 1, left - 1);
72
73     if(len > 0) {
74       *ptr = ' ';
75       left -= ++len;
76       ptr += len;
77     }
78   }
79
80 #ifdef HAVE_LIBZ
81   len = snprintf(ptr, left, " zlib/%s", zlibVersion());
82   left -= len;
83   ptr += len;
84 #endif
85 #ifdef USE_ARES
86   /* this function is only present in c-ares, not in the original ares */
87   len = snprintf(ptr, left, " c-ares/%s", ares_version(NULL));
88   left -= len;
89   ptr += len;
90 #endif
91 #ifdef USE_LIBIDN
92   if(stringprep_check_version(LIBIDN_REQUIRED_VERSION)) {
93     len = snprintf(ptr, left, " libidn/%s", stringprep_check_version(NULL));
94     left -= len;
95     ptr += len;
96   }
97 #endif
98 #if defined(HAVE_ICONV) && defined(CURL_DOES_CONVERSIONS)
99 #ifdef _LIBICONV_VERSION
100   len = snprintf(ptr, left, " iconv/%d.%d",
101                  _LIBICONV_VERSION >> 8, _LIBICONV_VERSION & 255);
102 #else
103   /* version unknown */
104   len = snprintf(ptr, left, " iconv");
105 #endif /* _LIBICONV_VERSION */
106   left -= len;
107   ptr += len;
108 #endif
109 #ifdef USE_LIBSSH2
110   len = snprintf(ptr, left, " libssh2/%s", CURL_LIBSSH2_VERSION);
111   left -= len;
112   ptr += len;
113 #endif
114
115   return version;
116 }
117
118 /* data for curl_version_info
119
120    Keep the list sorted alphabetically. It is also written so that each
121    protocol line has its own #if line to make things easier on the eye.
122  */
123
124 static const char * const protocols[] = {
125 #ifndef CURL_DISABLE_DICT
126   "dict",
127 #endif
128 #ifndef CURL_DISABLE_FILE
129   "file",
130 #endif
131 #ifndef CURL_DISABLE_FTP
132   "ftp",
133 #endif
134 #if defined(USE_SSL) && !defined(CURL_DISABLE_FTP)
135   "ftps",
136 #endif
137 #ifndef CURL_DISABLE_HTTP
138   "http",
139 #endif
140 #if defined(USE_SSL) && !defined(CURL_DISABLE_HTTP)
141   "https",
142 #endif
143 #ifndef CURL_DISABLE_IMAP
144   "imap",
145 #endif
146 #if defined(USE_SSL) && !defined(CURL_DISABLE_IMAP)
147   "imaps",
148 #endif
149 #ifndef CURL_DISABLE_LDAP
150   "ldap",
151 #endif
152 #if defined(HAVE_LDAP_SSL) && !defined(CURL_DISABLE_LDAP)
153   "ldaps",
154 #endif
155 #ifndef CURL_DISABLE_POP3
156   "pop3",
157 #endif
158 #if defined(USE_SSL) && !defined(CURL_DISABLE_POP3)
159   "pop3s",
160 #endif
161 #ifndef CURL_DISABLE_RTSP
162   "rtsp",
163 #endif
164 #ifdef USE_LIBSSH2
165   "scp",
166 #endif
167 #ifdef USE_LIBSSH2
168   "sftp",
169 #endif
170 #ifndef CURL_DISABLE_SMTP
171   "smtp",
172 #endif
173 #if defined(USE_SSL) && !defined(CURL_DISABLE_SMTP)
174   "smtps",
175 #endif
176 #ifndef CURL_DISABLE_TELNET
177   "telnet",
178 #endif
179 #ifndef CURL_DISABLE_TFTP
180   "tftp",
181 #endif
182
183   NULL
184 };
185
186 static curl_version_info_data version_info = {
187   CURLVERSION_NOW,
188   LIBCURL_VERSION,
189   LIBCURL_VERSION_NUM,
190   OS, /* as found by configure or set by hand at build-time */
191   0 /* features is 0 by default */
192 #ifdef ENABLE_IPV6
193   | CURL_VERSION_IPV6
194 #endif
195 #ifdef HAVE_KRB4
196   | CURL_VERSION_KERBEROS4
197 #endif
198 #ifdef USE_SSL
199   | CURL_VERSION_SSL
200 #endif
201 #ifdef USE_NTLM
202   | CURL_VERSION_NTLM
203 #endif
204 #ifdef USE_WINDOWS_SSPI
205   | CURL_VERSION_SSPI
206 #endif
207 #ifdef HAVE_LIBZ
208   | CURL_VERSION_LIBZ
209 #endif
210 #ifdef HAVE_GSSAPI
211   | CURL_VERSION_GSSNEGOTIATE
212 #endif
213 #ifdef DEBUGBUILD
214   | CURL_VERSION_DEBUG
215 #endif
216 #ifdef CURLDEBUG
217   | CURL_VERSION_CURLDEBUG
218 #endif
219 #ifdef CURLRES_ASYNCH
220   | CURL_VERSION_ASYNCHDNS
221 #endif
222 #ifdef HAVE_SPNEGO
223   | CURL_VERSION_SPNEGO
224 #endif
225 #if (CURL_SIZEOF_CURL_OFF_T > 4) && \
226     ( (SIZEOF_OFF_T > 4) || defined(USE_WIN32_LARGE_FILES) )
227   | CURL_VERSION_LARGEFILE
228 #endif
229 #if defined(CURL_DOES_CONVERSIONS)
230   | CURL_VERSION_CONV
231 #endif
232   ,
233   NULL, /* ssl_version */
234   0,    /* ssl_version_num, this is kept at zero */
235   NULL, /* zlib_version */
236   protocols,
237   NULL, /* c-ares version */
238   0,    /* c-ares version numerical */
239   NULL, /* libidn version */
240   0,    /* iconv version */
241   NULL, /* ssh lib version */
242 };
243
244 curl_version_info_data *curl_version_info(CURLversion stamp)
245 {
246 #ifdef USE_LIBSSH2
247   static char ssh_buffer[80];
248 #endif
249
250 #ifdef USE_SSL
251   static char ssl_buffer[80];
252   Curl_ssl_version(ssl_buffer, sizeof(ssl_buffer));
253   version_info.ssl_version = ssl_buffer;
254 #endif
255
256 #ifdef HAVE_LIBZ
257   version_info.libz_version = zlibVersion();
258   /* libz left NULL if non-existing */
259 #endif
260 #ifdef USE_ARES
261   {
262     int aresnum;
263     version_info.ares = ares_version(&aresnum);
264     version_info.ares_num = aresnum;
265   }
266 #endif
267 #ifdef USE_LIBIDN
268   /* This returns a version string if we use the given version or later,
269      otherwise it returns NULL */
270   version_info.libidn = stringprep_check_version(LIBIDN_REQUIRED_VERSION);
271   if(version_info.libidn)
272     version_info.features |= CURL_VERSION_IDN;
273 #endif
274
275 #if defined(HAVE_ICONV) && defined(CURL_DOES_CONVERSIONS)
276 #ifdef _LIBICONV_VERSION
277   version_info.iconv_ver_num = _LIBICONV_VERSION;
278 #else
279   /* version unknown */
280   version_info.iconv_ver_num = -1;
281 #endif /* _LIBICONV_VERSION */
282 #endif
283
284 #ifdef USE_LIBSSH2
285   snprintf(ssh_buffer, sizeof(ssh_buffer), "libssh2/%s", LIBSSH2_VERSION);
286   version_info.libssh_version = ssh_buffer;
287 #endif
288
289   (void)stamp; /* avoid compiler warnings, we don't use this */
290
291   return &version_info;
292 }