/* server-psk.c * A server ecample using a TCP connection with PSK security. * * Copyright (C) 2006-2015 wolfSSL Inc. * * This file is part of wolfSSL. (formerly known as CyaSSL) * * 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-1301, USA */ #include /* include wolfSSL security */ #include /* included for options sync */ #include #include #include #include #include #include #include #include #define MAXLINE 4096 #define LISTENQ 1024 #define SERV_PORT 11111 /* * Handles response to client. */ int respond(WOLFSSL* ssl) { int n; /* length of string read */ char buf[MAXLINE]; /* string read from client */ char response[] = "I hear ya for shizzle"; memset(buf, 0, MAXLINE); n = wolfSSL_read(ssl, buf, MAXLINE); if (n > 0) { printf("%s\n", buf); if (wolfSSL_write(ssl, response, strlen(response)) > strlen(response)) { printf("Fatal error : respond: write error\n"); return 1; } } if (n < 0) { printf("Fatal error :espond: read error\n"); return 1; } return 0; } /* * Identify which psk key to use. */ static unsigned int my_psk_server_cb(WOLFSSL* ssl, const char* identity, unsigned char* key, unsigned int key_max_len) { (void)ssl; (void)key_max_len; if (strncmp(identity, "Client_identity", 15) != 0) return 0; key[0] = 26; key[1] = 43; key[2] = 60; key[3] = 77; return 4; } int main() { int listenfd, connfd; int opt; struct sockaddr_in cliAddr, servAddr; char buff[MAXLINE]; socklen_t cliLen; WOLFSSL_CTX* ctx; wolfSSL_Init(); /* create ctx and configure certificates */ if ((ctx = wolfSSL_CTX_new(wolfSSLv23_server_method())) == NULL) { printf("Fatal error : wolfSSL_CTX_new error\n"); return 1; } /* use psk suite for security */ wolfSSL_CTX_set_psk_server_callback(ctx, my_psk_server_cb); wolfSSL_CTX_use_psk_identity_hint(ctx, "wolfssl server"); if (wolfSSL_CTX_set_cipher_list(ctx, "PSK-AES128-CBC-SHA256") != SSL_SUCCESS) { printf("Fatal error : server can't set cipher list\n"); return 1; } /* set up server address and port */ memset(&servAddr, 0, sizeof(servAddr)); servAddr.sin_family = AF_INET; servAddr.sin_addr.s_addr = htonl(INADDR_ANY); servAddr.sin_port = htons(SERV_PORT); /* find a socket */ listenfd = socket(AF_INET, SOCK_STREAM, 0); if (listenfd < 0) { printf("Fatal error : socket error\n"); return 1; } /* bind to a socket */ opt = 1; if (setsockopt(listenfd, SOL_SOCKET, SO_REUSEADDR, (const void *)&opt, sizeof(int)) != 0) { printf("Fatal error : setsockopt error\n"); return 1; } if (bind(listenfd, (struct sockaddr *) &servAddr, sizeof(servAddr)) < 0) { printf("Fatal error : bind error\n"); return 1; } /* listen to the socket */ if (listen(listenfd, LISTENQ) < 0) { printf("Fatal error : listen error\n"); return 1; } /* main loop for accepting and responding to clients */ for ( ; ; ) { WOLFSSL* ssl; cliLen = sizeof(cliAddr); connfd = accept(listenfd, (struct sockaddr *) &cliAddr, &cliLen); if (connfd < 0) { printf("Fatal error : accept error\n"); return 1; } else { printf("Connection from %s, port %d\n", inet_ntop(AF_INET, &cliAddr.sin_addr, buff, sizeof(buff)), ntohs(cliAddr.sin_port)); /* create WOLFSSL object and respond */ if ((ssl = wolfSSL_new(ctx)) == NULL) { printf("Fatal error : wolfSSL_new error\n"); return 1; } wolfSSL_set_fd(ssl, connfd); if (respond(ssl) != 0) return 1; /* closes the connections after responding */ wolfSSL_shutdown(ssl); wolfSSL_free(ssl); if (close(connfd) == -1) { printf("Fatal error : close error\n"); return 1; } } } /* free up memory used by wolfSSL */ wolfSSL_CTX_free(ctx); wolfSSL_Cleanup(); return 0; }