Imported Upstream version 7.48.0
[platform/upstream/curl.git] / docs / libcurl / opts / CURLOPT_SSL_CTX_FUNCTION.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 CURLOPT_SSL_CTX_FUNCTION 3 "19 Jun 2014" "libcurl 7.37.0" "curl_easy_setopt options"
24 .SH NAME
25 CURLOPT_SSL_CTX_FUNCTION \- SSL context callback for OpenSSL or wolfSSL/CyaSSL
26 .SH SYNOPSIS
27 .nf
28 #include <curl/curl.h>
29
30 CURLcode ssl_ctx_callback(CURL *curl, void *ssl_ctx, void *userptr);
31
32 CURLcode curl_easy_setopt(CURL *handle, CURLOPT_SSL_CTX_FUNCTION,
33                           ssl_ctx_callback);
34 .SH DESCRIPTION
35 This option only works for libcurl powered by OpenSSL or wolfSSL/CyaSSL. If
36 libcurl was built against another SSL library this functionality is absent.
37
38 Pass a pointer to your callback function, which should match the prototype
39 shown above.
40
41 This callback function gets called by libcurl just before the initialization
42 of an SSL connection after having processed all other SSL related options to
43 give a last chance to an application to modify the behaviour of the SSL
44 initialization. The \fIssl_ctx\fP parameter is actually a pointer to the SSL
45 library's \fISSL_CTX\fP. If an error is returned from the callback no attempt
46 to establish a connection is made and the perform operation will return the
47 callback's error code. Set the \fIuserptr\fP argument with the
48 \fICURLOPT_SSL_CTX_DATA(3)\fP option.
49
50 This function will get called on all new connections made to a server, during
51 the SSL negotiation. The SSL_CTX pointer will be a new one every time.
52
53 To use this properly, a non-trivial amount of knowledge of your SSL library is
54 necessary. For example, you can use this function to call library-specific
55 callbacks to add additional validation code for certificates, and even to
56 change the actual URI of a HTTPS request.
57 .SH DEFAULT
58 NULL
59 .SH PROTOCOLS
60 All TLS based protocols: HTTPS, FTPS, IMAPS, POP3S, SMTPS etc.
61 .SH EXAMPLE
62 .nf
63 /* OpenSSL specific */
64
65 #include <openssl/ssl.h>
66 #include <curl/curl.h>
67 #include <stdio.h>
68
69 static CURLcode sslctx_function(CURL *curl, void *sslctx, void *parm)
70 {
71   X509_STORE *store;
72   X509 *cert=NULL;
73   BIO *bio;
74   char *mypem = /* example CA cert PEM - shortened */
75     "-----BEGIN CERTIFICATE-----\n"
76     "MIIHPTCCBSWgAwIBAgIBADANBgkqhkiG9w0BAQQFADB5MRAwDgYDVQQKEwdSb290\n"
77     "IENBMR4wHAYDVQQLExVodHRwOi8vd3d3LmNhY2VydC5vcmcxIjAgBgNVBAMTGUNB\n"
78     "IENlcnQgU2lnbmluZyBBdXRob3JpdHkxITAfBgkqhkiG9w0BCQEWEnN1cHBvcnRA\n"
79     "Y2FjZXJ0Lm9yZzAeFw0wMzAzMzAxMjI5NDlaFw0zMzAzMjkxMjI5NDlaMHkxEDAO\n"
80     "GCSNe9FINSkYQKyTYOGWhlC0elnYjyELn8+CkcY7v2vcB5G5l1YjqrZslMZIBjzk\n"
81     "zk6q5PYvCdxTby78dOs6Y5nCpqyJvKeyRKANihDjbPIky/qbn3BHLt4Ui9SyIAmW\n"
82     "omTxJBzcoTWcFbLUvFUufQb1nA5V9FrWk9p2rSVzTMVD\n"\
83     "-----END CERTIFICATE-----\n";
84   /* get a BIO */
85   bio=BIO_new_mem_buf(mypem, -1);
86   /* use it to read the PEM formatted certificate from memory into an X509
87    * structure that SSL can use
88    */
89   PEM_read_bio_X509(bio, &cert, 0, NULL);
90   if(cert == NULL)
91     printf("PEM_read_bio_X509 failed...\n");
92
93   /* get a pointer to the X509 certificate store (which may be empty!) */
94   store=SSL_CTX_get_cert_store((SSL_CTX *)sslctx);
95
96   /* add our certificate to this store */
97   if(X509_STORE_add_cert(store, cert)==0)
98     printf("error adding certificate\n");
99
100   /* decrease reference counts */
101   X509_free(cert);
102   BIO_free(bio);
103
104   /* all set to go */
105   return CURLE_OK;
106 }
107
108 int main(void)
109 {
110   CURL * ch;
111   CURLcode rv;
112
113   rv=curl_global_init(CURL_GLOBAL_ALL);
114   ch=curl_easy_init();
115   rv=curl_easy_setopt(ch, CURLOPT_SSLCERTTYPE, "PEM");
116   rv=curl_easy_setopt(ch, CURLOPT_SSL_VERIFYPEER, 1L);
117   rv=curl_easy_setopt(ch, CURLOPT_URL, "https://www.example.com/");
118
119   /* Retrieve page using cacerts' certificate -> will succeed
120    * load the certificate by installing a function doing the nescessary
121    * "modifications" to the SSL CONTEXT just before link init
122    */
123   rv=curl_easy_setopt(ch, CURLOPT_SSL_CTX_FUNCTION, *sslctx_function);
124   rv=curl_easy_perform(ch);
125   if(rv==CURLE_OK)
126     printf("*** transfer succeeded ***\n");
127   else
128     printf("*** transfer failed ***\n");
129
130   curl_easy_cleanup(ch);
131   curl_global_cleanup();
132   return rv;
133 }
134 .fi
135 .SH AVAILABILITY
136 Added in 7.11.0 for OpenSSL. Added in 7.42.0 for wolfSSL/CyaSSL. Other SSL
137 backends not supported.
138 .SH RETURN VALUE
139 Returns CURLE_OK if the option is supported, and CURLE_UNKNOWN_OPTION if not.
140 .SH "SEE ALSO"
141 .BR CURLOPT_SSL_CTX_DATA "(3), " CURLOPT_SSL_VERIFYPEER "(3), "