2
0

sessioninfo.c 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. /***************************************************************************
  2. * _ _ ____ _
  3. * Project ___| | | | _ \| |
  4. * / __| | | | |_) | |
  5. * | (__| |_| | _ <| |___
  6. * \___|\___/|_| \_\_____|
  7. *
  8. * Copyright (C) 1998 - 2013, 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. /* Note that this example currently requires cURL to be linked against
  23. GnuTLS (and this program must also be linked against -lgnutls). */
  24. #include <stdio.h>
  25. #include <curl/curl.h>
  26. #include <gnutls/gnutls.h>
  27. static CURL *curl;
  28. static size_t wrfu(void *ptr, size_t size, size_t nmemb, void *stream)
  29. {
  30. const struct curl_tlssessioninfo *info;
  31. unsigned int cert_list_size;
  32. const gnutls_datum_t *chainp;
  33. CURLcode res;
  34. (void)stream;
  35. (void)ptr;
  36. res = curl_easy_getinfo(curl, CURLINFO_TLS_SESSION, &info);
  37. if(!res) {
  38. switch(info->backend) {
  39. case CURLSSLBACKEND_GNUTLS:
  40. /* info->internals is now the gnutls_session_t */
  41. chainp = gnutls_certificate_get_peers(info->internals, &cert_list_size);
  42. if((chainp) && (cert_list_size)) {
  43. unsigned int i;
  44. for(i = 0; i < cert_list_size; i++) {
  45. gnutls_x509_crt_t cert;
  46. gnutls_datum_t dn;
  47. if(GNUTLS_E_SUCCESS == gnutls_x509_crt_init(&cert)) {
  48. if(GNUTLS_E_SUCCESS ==
  49. gnutls_x509_crt_import(cert, &chainp[i], GNUTLS_X509_FMT_DER)) {
  50. if(GNUTLS_E_SUCCESS ==
  51. gnutls_x509_crt_print(cert, GNUTLS_CRT_PRINT_FULL, &dn)) {
  52. fprintf(stderr, "Certificate #%d: %.*s", i, dn.size, dn.data);
  53. gnutls_free(dn.data);
  54. }
  55. }
  56. gnutls_x509_crt_deinit(cert);
  57. }
  58. }
  59. }
  60. break;
  61. case CURLSSLBACKEND_NONE:
  62. default:
  63. break;
  64. }
  65. }
  66. return size * nmemb;
  67. }
  68. int main(void)
  69. {
  70. curl_global_init(CURL_GLOBAL_DEFAULT);
  71. curl = curl_easy_init();
  72. if(curl) {
  73. curl_easy_setopt(curl, CURLOPT_URL, "https://www.example.com/");
  74. curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, wrfu);
  75. curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0L);
  76. curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 0L);
  77. curl_easy_setopt(curl, CURLOPT_VERBOSE, 0L);
  78. (void) curl_easy_perform(curl);
  79. curl_easy_cleanup(curl);
  80. }
  81. curl_global_cleanup();
  82. return 0;
  83. }