sctp-server-dtls.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. /* sctp-server-dtls.c
  2. *
  3. * Copyright (C) 2006-2023 wolfSSL Inc.
  4. *
  5. * This file is part of wolfSSL.
  6. *
  7. * wolfSSL is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * wolfSSL is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
  20. */
  21. /* wolfssl */
  22. #ifndef WOLFSSL_USER_SETTINGS
  23. #include <wolfssl/options.h>
  24. #endif
  25. #include <wolfssl/wolfcrypt/settings.h>
  26. #include <wolfssl/ssl.h>
  27. #if defined(WOLFSSL_SCTP) && defined(WOLFSSL_DTLS) && !defined(WOLFSSL_NO_TLS12)
  28. /* sctp */
  29. #include <sys/socket.h>
  30. #include <sys/types.h>
  31. #include <netinet/in.h>
  32. /* std */
  33. #include <stdio.h>
  34. #include <stdlib.h>
  35. #include <string.h>
  36. #include <unistd.h>
  37. #define key "./certs/server-key.pem"
  38. #define cert "./certs/server-cert.pem"
  39. static int err_sys(const char* msg)
  40. {
  41. perror(msg);
  42. exit(EXIT_FAILURE);
  43. }
  44. #endif /* WOLFSSL_SCTP && WOLFSSL_DTLS && !WOLFSSL_NO_TLS12 */
  45. int main(int argc, char **argv)
  46. {
  47. (void)argc;
  48. (void)argv;
  49. #if defined(WOLFSSL_SCTP) && defined(WOLFSSL_DTLS) && !defined(WOLFSSL_NO_TLS12)
  50. int sd = socket(PF_INET, SOCK_STREAM, IPPROTO_SCTP);
  51. if (sd < 0)
  52. err_sys("sctp socket error");
  53. struct sockaddr_in sa;
  54. memset(&sa, 0, sizeof(sa));
  55. sa.sin_family = AF_INET;
  56. sa.sin_addr.s_addr = htonl(INADDR_ANY);
  57. sa.sin_port = htons(12345);
  58. int ret = bind(sd, (struct sockaddr*)&sa, sizeof(sa));
  59. if (ret < 0)
  60. err_sys("sctp bind error");
  61. listen(sd, 3);
  62. int client_sd = accept(sd, NULL, NULL);
  63. if (client_sd < 0)
  64. err_sys("sctp accept error");
  65. const char* response = "well hello to you";
  66. char buffer[80];
  67. WOLFSSL_CTX* ctx = wolfSSL_CTX_new(wolfDTLSv1_2_server_method());
  68. if (ctx == NULL)
  69. err_sys("ctx new dtls server failed");
  70. ret = wolfSSL_CTX_dtls_set_sctp(ctx);
  71. if (ret != WOLFSSL_SUCCESS)
  72. err_sys("set sctp mode failed");
  73. ret = wolfSSL_CTX_use_PrivateKey_file(ctx, key, WOLFSSL_FILETYPE_PEM);
  74. if (ret != WOLFSSL_SUCCESS)
  75. err_sys("use private key error");
  76. ret = wolfSSL_CTX_use_certificate_file(ctx, cert, WOLFSSL_FILETYPE_PEM);
  77. if (ret != WOLFSSL_SUCCESS)
  78. err_sys("use cert error");
  79. WOLFSSL* ssl = wolfSSL_new(ctx);
  80. if (ssl == NULL)
  81. err_sys("ssl new dtls server failed");
  82. wolfSSL_set_fd(ssl, client_sd);
  83. ret = wolfSSL_accept(ssl);
  84. if (ret != WOLFSSL_SUCCESS)
  85. err_sys("ssl accept failed");
  86. printf("TLS version is %s\n", wolfSSL_get_version(ssl));
  87. printf("Cipher Suite is %s\n",
  88. wolfSSL_CIPHER_get_name(wolfSSL_get_current_cipher(ssl)));
  89. int got = wolfSSL_read(ssl, buffer, sizeof(buffer));
  90. if (got > 0) {
  91. buffer[got] = 0;
  92. printf("client said: %s\n", buffer);
  93. }
  94. wolfSSL_write(ssl, response, (int)strlen(response));
  95. unsigned char bigBuf[4096];
  96. wolfSSL_read(ssl, bigBuf, sizeof(bigBuf));
  97. wolfSSL_write(ssl, bigBuf, sizeof(bigBuf));
  98. wolfSSL_shutdown(ssl);
  99. wolfSSL_free(ssl);
  100. wolfSSL_CTX_free(ctx);
  101. close(sd);
  102. #endif /* WOLFSSL_SCTP && WOLFSSL_DTLS && !WOLFSSL_NO_TLS12 */
  103. return 0;
  104. }