b82faecc9fab775b91fa9ee8e731148b2a4341c0
[platform/upstream/curl.git] / docs / libcurl / opts / CURLINFO_TLS_SSL_PTR.3
1 .\" **************************************************************************
2 .\" *                                  _   _ ____  _
3 .\" *  Project                     ___| | | |  _ \| |
4 .\" *                             / __| | | | |_) | |
5 .\" *                            | (__| |_| |  _ <| |___
6 .\" *                             \___|\___/|_| \_\_____|
7 .\" *
8 .\" * Copyright (C) 1998 - 2016, 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 https://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 .TH CURLINFO_TLS_SSL_PTR 3 "23 Feb 2016" "libcurl 7.48.0" "curl_easy_getinfo options"
24 .SH NAME
25 CURLINFO_TLS_SESSION, CURLINFO_TLS_SSL_PTR \- get TLS session info
26 .SH SYNOPSIS
27 .nf
28 #include <curl/curl.h>
29
30 CURLcode curl_easy_getinfo(CURL *handle, CURLINFO_TLS_SSL_PTR,
31                            struct curl_tlssessioninfo **session);
32
33 /* if you need compatibility with libcurl < 7.48.0 use
34    CURLINFO_TLS_SESSION instead: */
35
36 CURLcode curl_easy_getinfo(CURL *handle, CURLINFO_TLS_SESSION,
37                            struct curl_tlssessioninfo **session);
38 .SH DESCRIPTION
39 Pass a pointer to a 'struct curl_tlssessioninfo *'.  The pointer will be
40 initialized to refer to a 'struct curl_tlssessioninfo *' that will contain an
41 enum indicating the SSL library used for the handshake and a pointer to the
42 respective internal TLS session structure of this underlying SSL library.
43
44 This option may be useful for example to extract certificate information in a
45 format convenient for further processing, such as manual validation. Refer to
46 the \fBLIMITATIONS\fP section.
47
48 .nf
49 struct curl_tlssessioninfo {
50   curl_sslbackend backend;
51   void *internals;
52 };
53 .fi
54
55 The \fIbackend\fP struct member is one of the defines in the CURLSSLBACKEND_*
56 series: CURLSSLBACKEND_NONE (when built without TLS support),
57 CURLSSLBACKEND_AXTLS, CURLSSLBACKEND_CYASSL, CURLSSLBACKEND_DARWINSSL,
58 CURLSSLBACKEND_GNUTLS, CURLSSLBACKEND_GSKIT, CURLSSLBACKEND_MBEDTLS,
59 CURLSSLBACKEND_NSS, CURLSSLBACKEND_OPENSSL, CURLSSLBACKEND_POLARSSL or
60 CURLSSLBACKEND_SCHANNEL. (Note that the OpenSSL forks are all reported as just
61 OpenSSL here.)
62
63 The \fIinternals\fP struct member will point to a TLS library specific pointer
64 for the active ("in use") SSL connection, with the following underlying types:
65 .RS
66 .IP GnuTLS
67 gnutls_session_t
68 .IP gskit
69 gsk_handle
70 .IP NSS
71 PRFileDesc *
72 .IP OpenSSL
73 CURLINFO_TLS_SESSION: SSL_CTX *
74
75 CURLINFO_TLS_SSL_PTR: SSL *
76 .RE
77 Since 7.48.0 the \fIinternals\fP member can point to these other SSL backends
78 as well:
79 .RS
80 .IP axTLS
81 SSL *
82 .IP mbedTLS
83 mbedtls_ssl_session *
84 .IP PolarSSL
85 ssl_session *
86 .IP "Secure Channel (WinSSL)"
87 CtxtHandle *
88 .IP "Secure Transport (DarwinSSL)"
89 SSLContext *
90 .IP "WolfSSL (formerly CyaSSL)"
91 SSL *
92 .RE
93
94 If the \fIinternals\fP pointer is NULL then either the SSL backend is not
95 supported or an SSL session has not yet been established.
96 .SH LIMITATIONS
97 \fBThis option has some limitations that could make it unsafe when it comes to
98 the manual verification of certificates.\fP
99
100 This option only retrieves the first in-use SSL session pointer for your easy
101 handle, however your easy handle may have more than one in-use SSL session if
102 using FTP over SSL. That is because the FTP protocol has a control channel and
103 a data channel and one or both may be over SSL. \fBCurrently there is no way to
104 retrieve a second in-use SSL session associated with an easy handle.\fP
105
106 This option has not been thoroughly tested with plaintext protocols that can be
107 upgraded/downgraded to/from SSL: FTP, SMTP, POP3, IMAP when used with
108 \fICURLOPT_USE_SSL(3)\fP. Though you will be able to retrieve the SSL pointer,
109 it's possible that before you can do that \fBdata (including auth) may have
110 already been sent over a connection after it was upgraded.\fP
111
112 Renegotiation. If unsafe renegotiation or renegotiation in a way that the
113 certificate is allowed to change is allowed by your SSL library this may occur
114 and the certificate may change, and \fBdata may continue to be sent or received
115 after renegotiation but before you are able to get the (possibly) changed SSL
116 pointer,\fP with the (possibly) changed certificate information.
117
118 If you are using OpenSSL or wolfSSL then \fICURLOPT_SSL_CTX_FUNCTION(3)\fP can
119 be used to set a certificate verification callback in the CTX. That is safer
120 than using this option to poll for certificate changes and doesn't suffer from
121 any of the problems above. There is currently no way in libcurl to set a
122 verification callback for the other SSL backends.
123
124 How are you using this option? Are you affected by any of these limitations?
125 Please let us know by making a comment at
126 https://github.com/curl/curl/issues/685
127 .SH PROTOCOLS
128 All TLS-based
129 .SH EXAMPLE
130 TODO
131 .SH AVAILABILITY
132 Added in 7.48.0.
133
134 This option supersedes \fICURLINFO_TLS_SESSION(3)\fP which was added in 7.34.0.
135 This option is exactly the same as that option except in the case of OpenSSL.
136 .SH RETURN VALUE
137 Returns CURLE_OK if the option is supported, and CURLE_UNKNOWN_OPTION if not.
138 .SH "SEE ALSO"
139 .BR curl_easy_getinfo "(3), " curl_easy_setopt "(3), "
140 .BR CURLINFO_TLS_SESSION "(3), "