sconnect.c 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. /*
  2. * Copyright 1998-2020 The OpenSSL Project Authors. All Rights Reserved.
  3. *
  4. * Licensed under the Apache License 2.0 (the "License"). You may not use
  5. * this file except in compliance with the License. You can obtain a copy
  6. * in the file LICENSE in the source distribution or at
  7. * https://www.openssl.org/source/license.html
  8. */
  9. /*-
  10. * A minimal program to do SSL to a passed host and port.
  11. * It is actually using non-blocking IO but in a very simple manner
  12. * sconnect host:port - it does a 'GET / HTTP/1.0'
  13. *
  14. * cc -I../../include sconnect.c -L../.. -lssl -lcrypto
  15. */
  16. #include <stdio.h>
  17. #include <stdlib.h>
  18. #include <unistd.h>
  19. #include <string.h>
  20. #include <errno.h>
  21. #include <openssl/err.h>
  22. #include <openssl/ssl.h>
  23. #define HOSTPORT "localhost:4433"
  24. #define CAFILE "root.pem"
  25. int main(int argc, char *argv[])
  26. {
  27. const char *hostport = HOSTPORT;
  28. const char *CAfile = CAFILE;
  29. const char *hostname;
  30. char *cp;
  31. BIO *out = NULL;
  32. char buf[1024 * 10], *p;
  33. SSL_CTX *ssl_ctx = NULL;
  34. SSL *ssl;
  35. BIO *ssl_bio;
  36. int i, len, off, ret = EXIT_FAILURE;
  37. if (argc > 1)
  38. hostport = argv[1];
  39. if (argc > 2)
  40. CAfile = argv[2];
  41. #ifdef WATT32
  42. dbug_init();
  43. sock_init();
  44. #endif
  45. ssl_ctx = SSL_CTX_new(TLS_client_method());
  46. /* Enable trust chain verification */
  47. SSL_CTX_set_verify(ssl_ctx, SSL_VERIFY_PEER, NULL);
  48. SSL_CTX_load_verify_locations(ssl_ctx, CAfile, NULL);
  49. /* Lets make a SSL structure */
  50. ssl = SSL_new(ssl_ctx);
  51. SSL_set_connect_state(ssl);
  52. /* Use it inside an SSL BIO */
  53. ssl_bio = BIO_new(BIO_f_ssl());
  54. BIO_set_ssl(ssl_bio, ssl, BIO_CLOSE);
  55. /* Lets use a connect BIO under the SSL BIO */
  56. out = BIO_new(BIO_s_connect());
  57. BIO_set_conn_hostname(out, hostport);
  58. /* The BIO has parsed the host:port and even IPv6 literals in [] */
  59. hostname = BIO_get_conn_hostname(out);
  60. if (!hostname || SSL_set1_host(ssl, hostname) <= 0)
  61. goto err;
  62. BIO_set_nbio(out, 1);
  63. out = BIO_push(ssl_bio, out);
  64. p = "GET / HTTP/1.0\r\n\r\n";
  65. len = strlen(p);
  66. off = 0;
  67. for (;;) {
  68. i = BIO_write(out, &(p[off]), len);
  69. if (i <= 0) {
  70. if (BIO_should_retry(out)) {
  71. fprintf(stderr, "write DELAY\n");
  72. sleep(1);
  73. continue;
  74. } else {
  75. goto err;
  76. }
  77. }
  78. off += i;
  79. len -= i;
  80. if (len <= 0)
  81. break;
  82. }
  83. for (;;) {
  84. i = BIO_read(out, buf, sizeof(buf));
  85. if (i == 0)
  86. break;
  87. if (i < 0) {
  88. if (BIO_should_retry(out)) {
  89. fprintf(stderr, "read DELAY\n");
  90. sleep(1);
  91. continue;
  92. }
  93. goto err;
  94. }
  95. fwrite(buf, 1, i, stdout);
  96. }
  97. ret = EXIT_SUCCESS;
  98. goto done;
  99. err:
  100. if (ERR_peek_error() == 0) { /* system call error */
  101. fprintf(stderr, "errno=%d ", errno);
  102. perror("error");
  103. } else {
  104. ERR_print_errors_fp(stderr);
  105. }
  106. done:
  107. BIO_free_all(out);
  108. SSL_CTX_free(ssl_ctx);
  109. return ret;
  110. }