Added version info for iconv.
[platform/upstream/curl.git] / lib / version.c
1 /***************************************************************************
2  *                                  _   _ ____  _
3  *  Project                     ___| | | |  _ \| |
4  *                             / __| | | | |_) | |
5  *                            | (__| |_| |  _ <| |___
6  *                             \___|\___/|_| \_\_____|
7  *
8  * Copyright (C) 1998 - 2006, 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  * $Id$
22  ***************************************************************************/
23
24 #include "setup.h"
25
26 #include <string.h>
27 #include <stdio.h>
28
29 #include <curl/curl.h>
30 #include "urldata.h"
31 #include "sslgen.h"
32
33 #define _MPRINTF_REPLACE /* use the internal *printf() functions */
34 #include <curl/mprintf.h>
35
36 #ifdef USE_ARES
37 #include <ares_version.h>
38 #endif
39
40 #ifdef USE_LIBIDN
41 #include <stringprep.h>
42 #endif
43
44 #if defined(HAVE_ICONV) && defined(CURL_DOES_CONVERSIONS)
45 #include <iconv.h>
46 #endif
47
48 char *curl_version(void)
49 {
50   static char version[200];
51   char *ptr=version;
52   size_t len;
53   size_t left = sizeof(version);
54   strcpy(ptr, LIBCURL_NAME "/" LIBCURL_VERSION );
55   ptr=strchr(ptr, '\0');
56   left -= strlen(ptr);
57
58   len = Curl_ssl_version(ptr, left);
59   left -= len;
60   ptr += len;
61
62 #ifdef HAVE_LIBZ
63   len = snprintf(ptr, left, " zlib/%s", zlibVersion());
64   left -= len;
65   ptr += len;
66 #endif
67 #ifdef USE_ARES
68   /* this function is only present in c-ares, not in the original ares */
69   len = snprintf(ptr, left, " c-ares/%s", ares_version(NULL));
70   left -= len;
71   ptr += len;
72 #endif
73 #ifdef USE_LIBIDN
74   if(stringprep_check_version(LIBIDN_REQUIRED_VERSION)) {
75     len = snprintf(ptr, left, " libidn/%s", stringprep_check_version(NULL));
76     left -= len;
77     ptr += len;
78   }
79 #endif
80 #if defined(HAVE_ICONV) && defined(CURL_DOES_CONVERSIONS)
81   len = snprintf(ptr, left, " iconv/%d.%d",
82                  _libiconv_version >> 8, _libiconv_version & 255);
83   left -= len;
84   ptr += len;
85 #endif
86
87   return version;
88 }
89
90 /* data for curl_version_info */
91
92 static const char * const protocols[] = {
93 #ifndef CURL_DISABLE_TFTP
94   "tftp",
95 #endif
96 #ifndef CURL_DISABLE_FTP
97   "ftp",
98 #endif
99 #ifndef CURL_DISABLE_TELNET
100   "telnet",
101 #endif
102 #ifndef CURL_DISABLE_DICT
103   "dict",
104 #endif
105 #ifndef CURL_DISABLE_LDAP
106   "ldap",
107 #endif
108 #ifndef CURL_DISABLE_HTTP
109   "http",
110 #endif
111 #ifndef CURL_DISABLE_FILE
112   "file",
113 #endif
114
115 #ifdef USE_SSL
116 #ifndef CURL_DISABLE_HTTP
117   "https",
118 #endif
119 #ifndef CURL_DISABLE_FTP
120   "ftps",
121 #endif
122 #endif
123   NULL
124 };
125
126 static curl_version_info_data version_info = {
127   CURLVERSION_NOW,
128   LIBCURL_VERSION,
129   LIBCURL_VERSION_NUM,
130   OS, /* as found by configure or set by hand at build-time */
131   0 /* features is 0 by default */
132 #ifdef ENABLE_IPV6
133   | CURL_VERSION_IPV6
134 #endif
135 #ifdef HAVE_KRB4
136   | CURL_VERSION_KERBEROS4
137 #endif
138 #ifdef USE_SSL
139   | CURL_VERSION_SSL
140 #endif
141 #ifdef USE_NTLM
142   | CURL_VERSION_NTLM
143 #endif
144 #ifdef USE_WINDOWS_SSPI
145   | CURL_VERSION_SSPI
146 #endif
147 #ifdef HAVE_LIBZ
148   | CURL_VERSION_LIBZ
149 #endif
150 #ifdef HAVE_GSSAPI
151   | CURL_VERSION_GSSNEGOTIATE
152 #endif
153 #ifdef CURLDEBUG
154   | CURL_VERSION_DEBUG
155 #endif
156 #ifdef USE_ARES
157   | CURL_VERSION_ASYNCHDNS
158 #endif
159 #ifdef HAVE_SPNEGO
160   | CURL_VERSION_SPNEGO
161 #endif
162 #if defined(ENABLE_64BIT) && (SIZEOF_CURL_OFF_T > 4)
163   | CURL_VERSION_LARGEFILE
164 #endif
165 #if defined(CURL_DOES_CONVERSIONS)
166   | CURL_VERSION_CONV
167 #endif
168   ,
169   NULL, /* ssl_version */
170   0,    /* ssl_version_num, this is kept at zero */
171   NULL, /* zlib_version */
172   protocols,
173   NULL, /* c-ares version */
174   0,    /* c-ares version numerical */
175   NULL, /* libidn version */
176   0,    /* iconv version */
177 };
178
179 curl_version_info_data *curl_version_info(CURLversion stamp)
180 {
181 #ifdef USE_SSL
182   static char ssl_buffer[80];
183   Curl_ssl_version(ssl_buffer, sizeof(ssl_buffer));
184   version_info.ssl_version = ssl_buffer;
185 #endif
186
187 #ifdef HAVE_LIBZ
188   version_info.libz_version = zlibVersion();
189   /* libz left NULL if non-existing */
190 #endif
191 #ifdef USE_ARES
192   {
193     int aresnum;
194     version_info.ares = ares_version(&aresnum);
195     version_info.ares_num = aresnum;
196   }
197 #endif
198 #ifdef USE_LIBIDN
199   /* This returns a version string if we use the given version or later,
200      otherwise it returns NULL */
201   version_info.libidn = stringprep_check_version(LIBIDN_REQUIRED_VERSION);
202   if(version_info.libidn)
203     version_info.features |= CURL_VERSION_IDN;
204 #endif
205
206 #if defined(HAVE_ICONV) && defined(CURL_DOES_CONVERSIONS)
207   version_info.iconv_ver_num = _libiconv_version;
208 #endif
209
210   (void)stamp; /* avoid compiler warnings, we don't use this */
211
212   return &version_info;
213 }