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