2002-09-03 07:52:59 -04:00
|
|
|
/***************************************************************************
|
2004-06-24 07:54:11 -04:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
1999-12-29 09:20:26 -05:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2010-01-21 08:58:30 -05:00
|
|
|
* Copyright (C) 1998 - 2010, Daniel Stenberg, <daniel@haxx.se>, et al.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2002-09-03 07:52:59 -04:00
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
|
|
|
* are also available at http://curl.haxx.se/docs/copyright.html.
|
2004-06-24 07:54:11 -04:00
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
* copies of the Software, and permit persons to whom the Software is
|
2002-09-03 07:52:59 -04:00
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2002-09-03 07:52:59 -04:00
|
|
|
***************************************************************************/
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2000-08-24 10:26:33 -04:00
|
|
|
#include "setup.h"
|
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
#include <string.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include <curl/curl.h>
|
|
|
|
#include "urldata.h"
|
2005-04-07 11:27:13 -04:00
|
|
|
#include "sslgen.h"
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2004-06-24 07:54:11 -04:00
|
|
|
#define _MPRINTF_REPLACE /* use the internal *printf() functions */
|
|
|
|
#include <curl/mprintf.h>
|
|
|
|
|
2004-02-02 11:24:41 -05:00
|
|
|
#ifdef USE_ARES
|
|
|
|
#include <ares_version.h>
|
|
|
|
#endif
|
|
|
|
|
2004-04-26 03:14:08 -04:00
|
|
|
#ifdef USE_LIBIDN
|
|
|
|
#include <stringprep.h>
|
|
|
|
#endif
|
|
|
|
|
2006-08-04 12:10:48 -04:00
|
|
|
#if defined(HAVE_ICONV) && defined(CURL_DOES_CONVERSIONS)
|
|
|
|
#include <iconv.h>
|
|
|
|
#endif
|
2002-09-25 11:38:48 -04:00
|
|
|
|
2010-05-15 16:13:17 -04:00
|
|
|
#ifdef USE_LIBRTMP
|
|
|
|
#include <librtmp/rtmp.h>
|
|
|
|
#endif
|
|
|
|
|
2006-11-02 16:56:40 -05:00
|
|
|
#ifdef USE_LIBSSH2
|
|
|
|
#include <libssh2.h>
|
|
|
|
#endif
|
|
|
|
|
2009-03-13 05:58:15 -04:00
|
|
|
#ifdef HAVE_LIBSSH2_VERSION
|
|
|
|
/* get it run-time if possible */
|
|
|
|
#define CURL_LIBSSH2_VERSION libssh2_version(0)
|
|
|
|
#else
|
|
|
|
/* use build-time if run-time not possible */
|
|
|
|
#define CURL_LIBSSH2_VERSION LIBSSH2_VERSION
|
|
|
|
#endif
|
2006-11-02 16:56:40 -05:00
|
|
|
|
2002-09-25 11:38:48 -04:00
|
|
|
char *curl_version(void)
|
|
|
|
{
|
|
|
|
static char version[200];
|
2004-05-06 03:32:30 -04:00
|
|
|
char *ptr=version;
|
2005-04-07 11:27:13 -04:00
|
|
|
size_t len;
|
2004-06-24 07:54:11 -04:00
|
|
|
size_t left = sizeof(version);
|
2004-05-06 03:32:30 -04:00
|
|
|
strcpy(ptr, LIBCURL_NAME "/" LIBCURL_VERSION );
|
2007-08-15 10:49:16 -04:00
|
|
|
len = strlen(ptr);
|
|
|
|
left -= len;
|
|
|
|
ptr += len;
|
2002-09-25 11:38:48 -04:00
|
|
|
|
2007-11-07 04:21:35 -05:00
|
|
|
if(left > 1) {
|
2007-08-24 05:06:17 -04:00
|
|
|
len = Curl_ssl_version(ptr + 1, left - 1);
|
|
|
|
|
2007-11-07 04:21:35 -05:00
|
|
|
if(len > 0) {
|
2007-08-24 05:06:17 -04:00
|
|
|
*ptr = ' ';
|
|
|
|
left -= ++len;
|
|
|
|
ptr += len;
|
|
|
|
}
|
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2002-09-02 17:59:31 -04:00
|
|
|
#ifdef HAVE_LIBZ
|
2004-06-24 07:54:11 -04:00
|
|
|
len = snprintf(ptr, left, " zlib/%s", zlibVersion());
|
|
|
|
left -= len;
|
|
|
|
ptr += len;
|
2003-06-26 07:22:48 -04:00
|
|
|
#endif
|
2004-02-02 11:24:41 -05:00
|
|
|
#ifdef USE_ARES
|
|
|
|
/* this function is only present in c-ares, not in the original ares */
|
2004-06-24 07:54:11 -04:00
|
|
|
len = snprintf(ptr, left, " c-ares/%s", ares_version(NULL));
|
|
|
|
left -= len;
|
|
|
|
ptr += len;
|
2004-02-02 11:24:41 -05:00
|
|
|
#endif
|
2004-04-26 03:14:08 -04:00
|
|
|
#ifdef USE_LIBIDN
|
2004-05-24 03:40:00 -04:00
|
|
|
if(stringprep_check_version(LIBIDN_REQUIRED_VERSION)) {
|
2004-06-24 07:54:11 -04:00
|
|
|
len = snprintf(ptr, left, " libidn/%s", stringprep_check_version(NULL));
|
|
|
|
left -= len;
|
|
|
|
ptr += len;
|
2004-05-24 03:40:00 -04:00
|
|
|
}
|
2004-04-26 03:14:08 -04:00
|
|
|
#endif
|
2006-08-04 12:10:48 -04:00
|
|
|
#if defined(HAVE_ICONV) && defined(CURL_DOES_CONVERSIONS)
|
2006-08-15 13:02:24 -04:00
|
|
|
#ifdef _LIBICONV_VERSION
|
2006-08-04 12:10:48 -04:00
|
|
|
len = snprintf(ptr, left, " iconv/%d.%d",
|
2006-08-15 13:02:24 -04:00
|
|
|
_LIBICONV_VERSION >> 8, _LIBICONV_VERSION & 255);
|
|
|
|
#else
|
|
|
|
/* version unknown */
|
|
|
|
len = snprintf(ptr, left, " iconv");
|
|
|
|
#endif /* _LIBICONV_VERSION */
|
2006-08-04 12:10:48 -04:00
|
|
|
left -= len;
|
|
|
|
ptr += len;
|
|
|
|
#endif
|
2006-11-02 16:56:40 -05:00
|
|
|
#ifdef USE_LIBSSH2
|
2009-03-13 05:58:15 -04:00
|
|
|
len = snprintf(ptr, left, " libssh2/%s", CURL_LIBSSH2_VERSION);
|
2006-11-02 16:56:40 -05:00
|
|
|
left -= len;
|
|
|
|
ptr += len;
|
2010-05-15 16:13:17 -04:00
|
|
|
#endif
|
|
|
|
#ifdef USE_LIBRTMP
|
|
|
|
{
|
|
|
|
char suff[2];
|
|
|
|
if (RTMP_LIB_VERSION & 0xff) {
|
|
|
|
suff[0] = (RTMP_LIB_VERSION & 0xff) + 'a' - 1;
|
|
|
|
suff[1] = '\0';
|
|
|
|
} else {
|
|
|
|
suff[0] = '\0';
|
|
|
|
}
|
|
|
|
len = snprintf(ptr, left, " librtmp/%d.%d%s",
|
|
|
|
RTMP_LIB_VERSION >> 16, (RTMP_LIB_VERSION >> 8) & 0xff, suff);
|
|
|
|
/*
|
|
|
|
If another lib version is added below this one, this code would
|
|
|
|
also have to do:
|
|
|
|
|
|
|
|
left -= len;
|
|
|
|
ptr += len;
|
2010-04-16 17:49:03 -04:00
|
|
|
*/
|
2010-05-15 16:13:17 -04:00
|
|
|
}
|
2006-11-02 16:56:40 -05:00
|
|
|
#endif
|
1999-12-29 09:20:26 -05:00
|
|
|
|
|
|
|
return version;
|
|
|
|
}
|
2001-09-07 00:01:32 -04:00
|
|
|
|
2010-01-22 08:06:50 -05:00
|
|
|
/* data for curl_version_info
|
|
|
|
|
|
|
|
Keep the list sorted alphabetically. It is also written so that each
|
|
|
|
protocol line has its own #if line to make things easier on the eye.
|
|
|
|
*/
|
2002-09-25 03:08:41 -04:00
|
|
|
|
2004-12-20 13:23:43 -05:00
|
|
|
static const char * const protocols[] = {
|
2002-09-25 03:08:41 -04:00
|
|
|
#ifndef CURL_DISABLE_DICT
|
2002-09-30 15:51:05 -04:00
|
|
|
"dict",
|
2002-09-25 03:08:41 -04:00
|
|
|
#endif
|
|
|
|
#ifndef CURL_DISABLE_FILE
|
2002-09-30 15:51:05 -04:00
|
|
|
"file",
|
2002-09-25 03:08:41 -04:00
|
|
|
#endif
|
|
|
|
#ifndef CURL_DISABLE_FTP
|
2010-01-22 08:06:50 -05:00
|
|
|
"ftp",
|
|
|
|
#endif
|
|
|
|
#if defined(USE_SSL) && !defined(CURL_DISABLE_FTP)
|
2002-09-30 15:51:05 -04:00
|
|
|
"ftps",
|
2002-09-25 03:08:41 -04:00
|
|
|
#endif
|
2010-08-12 10:55:48 -04:00
|
|
|
#ifndef CURL_DISABLE_GOPHER
|
|
|
|
"gopher",
|
|
|
|
#endif
|
2010-01-22 08:06:50 -05:00
|
|
|
#ifndef CURL_DISABLE_HTTP
|
|
|
|
"http",
|
2002-09-25 03:08:41 -04:00
|
|
|
#endif
|
2010-01-22 08:06:50 -05:00
|
|
|
#if defined(USE_SSL) && !defined(CURL_DISABLE_HTTP)
|
|
|
|
"https",
|
2006-11-02 16:56:40 -05:00
|
|
|
#endif
|
2009-12-12 16:54:01 -05:00
|
|
|
#ifndef CURL_DISABLE_IMAP
|
|
|
|
"imap",
|
2010-01-22 08:06:50 -05:00
|
|
|
#endif
|
|
|
|
#if defined(USE_SSL) && !defined(CURL_DISABLE_IMAP)
|
2009-12-12 16:54:01 -05:00
|
|
|
"imaps",
|
|
|
|
#endif
|
2010-06-01 11:25:03 -04:00
|
|
|
#ifndef CURL_DISABLE_LDAP
|
2010-01-22 08:06:50 -05:00
|
|
|
"ldap",
|
2010-06-01 11:25:03 -04:00
|
|
|
#if (defined(USE_OPENLDAP) && defined(USE_SSL)) || \
|
|
|
|
(!defined(USE_OPENLDAP) && defined(HAVE_LDAP_SSL))
|
2010-01-22 08:06:50 -05:00
|
|
|
"ldaps",
|
2009-12-12 16:54:01 -05:00
|
|
|
#endif
|
2010-05-24 18:44:42 -04:00
|
|
|
#endif
|
2009-12-12 16:54:01 -05:00
|
|
|
#ifndef CURL_DISABLE_POP3
|
|
|
|
"pop3",
|
2010-01-22 08:06:50 -05:00
|
|
|
#endif
|
|
|
|
#if defined(USE_SSL) && !defined(CURL_DISABLE_POP3)
|
2009-12-12 16:54:01 -05:00
|
|
|
"pop3s",
|
|
|
|
#endif
|
2010-05-15 16:13:17 -04:00
|
|
|
#ifdef USE_LIBRTMP
|
|
|
|
"rtmp",
|
|
|
|
#endif
|
2010-01-22 08:06:50 -05:00
|
|
|
#ifndef CURL_DISABLE_RTSP
|
|
|
|
"rtsp",
|
|
|
|
#endif
|
|
|
|
#ifdef USE_LIBSSH2
|
|
|
|
"scp",
|
|
|
|
#endif
|
|
|
|
#ifdef USE_LIBSSH2
|
|
|
|
"sftp",
|
2009-12-12 16:54:01 -05:00
|
|
|
#endif
|
|
|
|
#ifndef CURL_DISABLE_SMTP
|
|
|
|
"smtp",
|
2010-01-22 08:06:50 -05:00
|
|
|
#endif
|
|
|
|
#if defined(USE_SSL) && !defined(CURL_DISABLE_SMTP)
|
2009-12-12 16:54:01 -05:00
|
|
|
"smtps",
|
|
|
|
#endif
|
2010-01-22 08:06:50 -05:00
|
|
|
#ifndef CURL_DISABLE_TELNET
|
|
|
|
"telnet",
|
|
|
|
#endif
|
|
|
|
#ifndef CURL_DISABLE_TFTP
|
|
|
|
"tftp",
|
2009-12-12 16:54:01 -05:00
|
|
|
#endif
|
|
|
|
|
2002-09-30 15:51:05 -04:00
|
|
|
NULL
|
2002-09-25 03:08:41 -04:00
|
|
|
};
|
|
|
|
|
2002-09-25 11:38:48 -04:00
|
|
|
static curl_version_info_data version_info = {
|
2004-04-26 03:14:08 -04:00
|
|
|
CURLVERSION_NOW,
|
2002-09-25 03:08:41 -04:00
|
|
|
LIBCURL_VERSION,
|
|
|
|
LIBCURL_VERSION_NUM,
|
2002-09-26 09:03:22 -04:00
|
|
|
OS, /* as found by configure or set by hand at build-time */
|
2002-09-25 11:38:48 -04:00
|
|
|
0 /* features is 0 by default */
|
|
|
|
#ifdef ENABLE_IPV6
|
|
|
|
| CURL_VERSION_IPV6
|
|
|
|
#endif
|
2003-12-02 08:27:29 -05:00
|
|
|
#ifdef HAVE_KRB4
|
2002-09-25 11:38:48 -04:00
|
|
|
| CURL_VERSION_KERBEROS4
|
2002-09-26 09:03:22 -04:00
|
|
|
#endif
|
2005-04-07 11:27:13 -04:00
|
|
|
#ifdef USE_SSL
|
2002-09-26 09:03:22 -04:00
|
|
|
| CURL_VERSION_SSL
|
2005-03-10 18:15:29 -05:00
|
|
|
#endif
|
2005-04-07 11:27:13 -04:00
|
|
|
#ifdef USE_NTLM
|
2005-03-11 10:10:36 -05:00
|
|
|
| CURL_VERSION_NTLM
|
|
|
|
#endif
|
|
|
|
#ifdef USE_WINDOWS_SSPI
|
|
|
|
| CURL_VERSION_SSPI
|
2002-09-26 09:03:22 -04:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_LIBZ
|
|
|
|
| CURL_VERSION_LIBZ
|
2003-06-26 07:22:48 -04:00
|
|
|
#endif
|
2003-09-19 08:56:22 -04:00
|
|
|
#ifdef HAVE_GSSAPI
|
2003-06-26 07:22:48 -04:00
|
|
|
| CURL_VERSION_GSSNEGOTIATE
|
|
|
|
#endif
|
2009-06-09 22:49:42 -04:00
|
|
|
#ifdef DEBUGBUILD
|
2003-06-26 07:22:48 -04:00
|
|
|
| CURL_VERSION_DEBUG
|
2003-08-11 19:13:09 -04:00
|
|
|
#endif
|
2009-06-09 22:49:42 -04:00
|
|
|
#ifdef CURLDEBUG
|
|
|
|
| CURL_VERSION_CURLDEBUG
|
|
|
|
#endif
|
2010-01-23 08:53:33 -05:00
|
|
|
#ifdef CURLRES_ASYNCH
|
2003-08-11 19:13:09 -04:00
|
|
|
| CURL_VERSION_ASYNCHDNS
|
2003-09-19 08:56:22 -04:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_SPNEGO
|
|
|
|
| CURL_VERSION_SPNEGO
|
2004-03-01 11:24:04 -05:00
|
|
|
#endif
|
2008-08-25 21:40:19 -04:00
|
|
|
#if (CURL_SIZEOF_CURL_OFF_T > 4) && \
|
|
|
|
( (SIZEOF_OFF_T > 4) || defined(USE_WIN32_LARGE_FILES) )
|
2004-03-01 11:24:04 -05:00
|
|
|
| CURL_VERSION_LARGEFILE
|
2006-04-19 05:03:21 -04:00
|
|
|
#endif
|
|
|
|
#if defined(CURL_DOES_CONVERSIONS)
|
|
|
|
| CURL_VERSION_CONV
|
2002-09-25 11:38:48 -04:00
|
|
|
#endif
|
|
|
|
,
|
|
|
|
NULL, /* ssl_version */
|
2005-04-07 11:27:13 -04:00
|
|
|
0, /* ssl_version_num, this is kept at zero */
|
2002-09-25 11:38:48 -04:00
|
|
|
NULL, /* zlib_version */
|
2004-02-02 11:24:41 -05:00
|
|
|
protocols,
|
|
|
|
NULL, /* c-ares version */
|
2004-02-03 01:39:37 -05:00
|
|
|
0, /* c-ares version numerical */
|
2004-04-26 03:14:08 -04:00
|
|
|
NULL, /* libidn version */
|
2006-08-04 12:10:48 -04:00
|
|
|
0, /* iconv version */
|
2006-11-02 16:56:40 -05:00
|
|
|
NULL, /* ssh lib version */
|
2002-09-25 03:08:41 -04:00
|
|
|
};
|
|
|
|
|
2002-09-30 15:51:05 -04:00
|
|
|
curl_version_info_data *curl_version_info(CURLversion stamp)
|
2002-09-25 03:08:41 -04:00
|
|
|
{
|
2006-11-02 16:56:40 -05:00
|
|
|
#ifdef USE_LIBSSH2
|
|
|
|
static char ssh_buffer[80];
|
|
|
|
#endif
|
|
|
|
|
2005-04-07 11:27:13 -04:00
|
|
|
#ifdef USE_SSL
|
2002-09-25 11:38:48 -04:00
|
|
|
static char ssl_buffer[80];
|
2005-04-07 11:27:13 -04:00
|
|
|
Curl_ssl_version(ssl_buffer, sizeof(ssl_buffer));
|
2002-09-25 11:38:48 -04:00
|
|
|
version_info.ssl_version = ssl_buffer;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_LIBZ
|
|
|
|
version_info.libz_version = zlibVersion();
|
|
|
|
/* libz left NULL if non-existing */
|
2004-02-02 11:24:41 -05:00
|
|
|
#endif
|
|
|
|
#ifdef USE_ARES
|
|
|
|
{
|
|
|
|
int aresnum;
|
|
|
|
version_info.ares = ares_version(&aresnum);
|
|
|
|
version_info.ares_num = aresnum;
|
|
|
|
}
|
2004-05-24 03:40:00 -04:00
|
|
|
#endif
|
|
|
|
#ifdef USE_LIBIDN
|
|
|
|
/* This returns a version string if we use the given version or later,
|
|
|
|
otherwise it returns NULL */
|
|
|
|
version_info.libidn = stringprep_check_version(LIBIDN_REQUIRED_VERSION);
|
|
|
|
if(version_info.libidn)
|
|
|
|
version_info.features |= CURL_VERSION_IDN;
|
2002-09-25 11:38:48 -04:00
|
|
|
#endif
|
2006-08-04 12:10:48 -04:00
|
|
|
|
|
|
|
#if defined(HAVE_ICONV) && defined(CURL_DOES_CONVERSIONS)
|
2006-08-15 13:02:24 -04:00
|
|
|
#ifdef _LIBICONV_VERSION
|
|
|
|
version_info.iconv_ver_num = _LIBICONV_VERSION;
|
|
|
|
#else
|
|
|
|
/* version unknown */
|
|
|
|
version_info.iconv_ver_num = -1;
|
|
|
|
#endif /* _LIBICONV_VERSION */
|
2006-08-04 12:10:48 -04:00
|
|
|
#endif
|
|
|
|
|
2006-11-02 16:56:40 -05:00
|
|
|
#ifdef USE_LIBSSH2
|
|
|
|
snprintf(ssh_buffer, sizeof(ssh_buffer), "libssh2/%s", LIBSSH2_VERSION);
|
|
|
|
version_info.libssh_version = ssh_buffer;
|
|
|
|
#endif
|
|
|
|
|
2002-09-30 15:51:05 -04:00
|
|
|
(void)stamp; /* avoid compiler warnings, we don't use this */
|
2002-09-25 11:38:48 -04:00
|
|
|
|
2002-09-25 03:08:41 -04:00
|
|
|
return &version_info;
|
|
|
|
}
|