123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- /* wolfssl_server.ino
- *
- * Copyright (C) 2006-2023 wolfSSL Inc.
- *
- * This file is part of wolfSSL.
- *
- * wolfSSL is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * wolfSSL is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
- */
- #include <wolfssl.h>
- #include <wolfssl/ssl.h>
- #include <Ethernet.h>
- #define USE_CERT_BUFFERS_256
- #include <wolfssl/certs_test.h>
- #ifdef NO_WOLFSSL_SERVER
- #error Please undefine NO_WOLFSSL_SERVER for this example
- #endif
- const int port = 11111; /* port to listen on */
- int EthernetSend(WOLFSSL* ssl, char* msg, int sz, void* ctx);
- int EthernetReceive(WOLFSSL* ssl, char* reply, int sz, void* ctx);
- EthernetServer server(port);
- EthernetClient client;
- WOLFSSL_CTX* ctx = NULL;
- WOLFSSL* ssl = NULL;
- void setup() {
- int err;
- WOLFSSL_METHOD* method;
- Serial.begin(9600);
- method = wolfTLSv1_2_server_method();
- if (method == NULL) {
- Serial.println("unable to get method");
- return;
- }
- ctx = wolfSSL_CTX_new(method);
- if (ctx == NULL) {
- Serial.println("unable to get ctx");
- return;
- }
- /* initialize wolfSSL using callback functions */
- wolfSSL_CTX_set_verify(ctx, SSL_VERIFY_NONE, 0);
- wolfSSL_SetIOSend(ctx, EthernetSend);
- wolfSSL_SetIORecv(ctx, EthernetReceive);
- /* setup the private key and certificate */
- err = wolfSSL_CTX_use_PrivateKey_buffer(ctx, ecc_key_der_256,
- sizeof_ecc_key_der_256, WOLFSSL_FILETYPE_ASN1);
- if (err != WOLFSSL_SUCCESS) {
- Serial.println("error setting key");
- return;
- }
- err = wolfSSL_CTX_use_certificate_buffer(ctx, serv_ecc_der_256,
- sizeof_serv_ecc_der_256, WOLFSSL_FILETYPE_ASN1);
- if (err != WOLFSSL_SUCCESS) {
- Serial.println("error setting certificate");
- return;
- }
- /* Start the server */
- server.begin();
-
- return;
- }
- int EthernetSend(WOLFSSL* ssl, char* msg, int sz, void* ctx) {
- int sent = 0;
- sent = client.write((byte*)msg, sz);
- return sent;
- }
- int EthernetReceive(WOLFSSL* ssl, char* reply, int sz, void* ctx) {
- int ret = 0;
- while (client.available() > 0 && ret < sz) {
- reply[ret++] = client.read();
- }
- return ret;
- }
- void loop() {
- int err = 0;
- int input = 0;
- char errBuf[80];
- char reply[80];
- int replySz = 0;
- const char* cipherName;
- /* Listen for incoming client requests. */
- client = server.available();
- if (!client) {
- return;
- }
- if (client.connected()) {
- Serial.println("Client connected");
- ssl = wolfSSL_new(ctx);
- if (ssl == NULL) {
- Serial.println("Unable to allocate SSL object");
- return;
- }
- err = wolfSSL_accept(ssl);
- if (err != WOLFSSL_SUCCESS) {
- err = wolfSSL_get_error(ssl, 0);
- wolfSSL_ERR_error_string(err, errBuf);
- Serial.print("TLS Accept Error: ");
- Serial.println(errBuf);
- }
- Serial.print("SSL version is ");
- Serial.println(wolfSSL_get_version(ssl));
-
- cipherName = wolfSSL_get_cipher(ssl);
- Serial.print("SSL cipher suite is ");
- Serial.println(cipherName);
- Serial.print("Server Read: ");
- /* wait for data */
- while (!client.available()) {}
- /* read data */
- while (wolfSSL_pending(ssl)) {
- input = wolfSSL_read(ssl, reply, sizeof(reply) - 1);
- if (input < 0) {
- err = wolfSSL_get_error(ssl, 0);
- wolfSSL_ERR_error_string(err, errBuf);
- Serial.print("TLS Read Error: ");
- Serial.println(errBuf);
- break;
- } else if (input > 0) {
- replySz = input;
- reply[input] = '\0';
- Serial.print(reply);
- } else {
- Serial.println();
- }
- }
- /* echo data */
- if ((wolfSSL_write(ssl, reply, replySz)) != replySz) {
- err = wolfSSL_get_error(ssl, 0);
- wolfSSL_ERR_error_string(err, errBuf);
- Serial.print("TLS Write Error: ");
- Serial.println(errBuf);
- }
-
- wolfSSL_shutdown(ssl);
- wolfSSL_free(ssl);
- }
- client.stop();
- Serial.println("Connection complete");
- }
|