2011-05-23 14:07:29 +02:00
|
|
|
/*
|
|
|
|
* SSL client for SMTP servers
|
|
|
|
*
|
2020-08-07 13:07:28 +02:00
|
|
|
* Copyright The Mbed TLS Contributors
|
2015-09-04 14:21:07 +02:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2011-05-23 14:07:29 +02:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
* not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2011-05-23 14:07:29 +02:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2011-05-23 14:07:29 +02:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
2011-05-23 14:07:29 +02:00
|
|
|
*/
|
|
|
|
|
2018-06-25 13:10:00 +02:00
|
|
|
/* Enable definition of gethostname() even when compiling with -std=c99. Must
|
2021-05-28 09:42:25 +02:00
|
|
|
* be set before mbedtls_config.h, which pulls in glibc's features.h indirectly.
|
2017-12-05 13:08:15 +01:00
|
|
|
* Harmless on other platforms. */
|
2021-05-19 19:35:35 +02:00
|
|
|
|
2017-12-05 13:08:15 +01:00
|
|
|
#define _POSIX_C_SOURCE 200112L
|
2020-06-11 13:30:12 +02:00
|
|
|
#define _XOPEN_SOURCE 600
|
2017-12-05 13:08:15 +01:00
|
|
|
|
2021-05-27 11:25:03 +02:00
|
|
|
#include "mbedtls/build_info.h"
|
2011-05-23 14:07:29 +02:00
|
|
|
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/platform.h"
|
2015-01-19 15:26:37 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if !defined(MBEDTLS_BIGNUM_C) || !defined(MBEDTLS_ENTROPY_C) || \
|
|
|
|
!defined(MBEDTLS_SSL_TLS_C) || !defined(MBEDTLS_SSL_CLI_C) || \
|
|
|
|
!defined(MBEDTLS_NET_C) || !defined(MBEDTLS_RSA_C) || \
|
|
|
|
!defined(MBEDTLS_CTR_DRBG_C) || !defined(MBEDTLS_X509_CRT_PARSE_C) || \
|
|
|
|
!defined(MBEDTLS_FS_IO)
|
2023-01-11 14:50:10 +01:00
|
|
|
int main(void)
|
2015-03-27 11:24:27 +01:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf("MBEDTLS_BIGNUM_C and/or MBEDTLS_ENTROPY_C and/or "
|
2023-01-11 14:50:10 +01:00
|
|
|
"MBEDTLS_SSL_TLS_C and/or MBEDTLS_SSL_CLI_C and/or "
|
|
|
|
"MBEDTLS_NET_C and/or MBEDTLS_RSA_C and/or "
|
|
|
|
"MBEDTLS_CTR_DRBG_C and/or MBEDTLS_X509_CRT_PARSE_C "
|
|
|
|
"not defined.\n");
|
|
|
|
mbedtls_exit(0);
|
2015-03-27 11:24:27 +01:00
|
|
|
}
|
|
|
|
#else
|
|
|
|
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/base64.h"
|
|
|
|
#include "mbedtls/error.h"
|
2016-09-14 15:32:09 +02:00
|
|
|
#include "mbedtls/net_sockets.h"
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/ssl.h"
|
|
|
|
#include "mbedtls/entropy.h"
|
|
|
|
#include "mbedtls/ctr_drbg.h"
|
2021-02-08 15:34:42 +01:00
|
|
|
#include "test/certs.h"
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/x509.h"
|
2015-02-11 15:06:19 +01:00
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2013-11-30 15:15:31 +01:00
|
|
|
|
|
|
|
#if !defined(_MSC_VER) || defined(EFIX64) || defined(EFI32)
|
2011-05-23 14:07:29 +02:00
|
|
|
#include <unistd.h>
|
2013-11-30 15:15:31 +01:00
|
|
|
#else
|
|
|
|
#include <io.h>
|
|
|
|
#endif
|
2011-05-23 14:07:29 +02:00
|
|
|
|
2011-10-12 11:19:31 +02:00
|
|
|
#if defined(_WIN32) || defined(_WIN32_WCE)
|
|
|
|
#include <winsock2.h>
|
|
|
|
#include <windows.h>
|
|
|
|
|
2013-12-30 15:42:43 +01:00
|
|
|
#if defined(_MSC_VER)
|
2011-10-12 11:19:31 +02:00
|
|
|
#if defined(_WIN32_WCE)
|
|
|
|
#pragma comment( lib, "ws2.lib" )
|
|
|
|
#else
|
|
|
|
#pragma comment( lib, "ws2_32.lib" )
|
|
|
|
#endif
|
2013-12-30 15:42:43 +01:00
|
|
|
#endif /* _MSC_VER */
|
2011-10-12 11:19:31 +02:00
|
|
|
#endif
|
|
|
|
|
2011-05-23 14:07:29 +02:00
|
|
|
#define DFL_SERVER_NAME "localhost"
|
2015-06-23 12:30:57 +02:00
|
|
|
#define DFL_SERVER_PORT "465"
|
2011-05-23 14:07:29 +02:00
|
|
|
#define DFL_USER_NAME "user"
|
|
|
|
#define DFL_USER_PWD "password"
|
|
|
|
#define DFL_MAIL_FROM ""
|
|
|
|
#define DFL_MAIL_TO ""
|
|
|
|
#define DFL_DEBUG_LEVEL 0
|
2011-05-26 15:16:06 +02:00
|
|
|
#define DFL_CA_FILE ""
|
2011-05-23 14:07:29 +02:00
|
|
|
#define DFL_CRT_FILE ""
|
|
|
|
#define DFL_KEY_FILE ""
|
|
|
|
#define DFL_FORCE_CIPHER 0
|
|
|
|
#define DFL_MODE 0
|
|
|
|
#define DFL_AUTHENTICATION 0
|
|
|
|
|
|
|
|
#define MODE_SSL_TLS 0
|
|
|
|
#define MODE_STARTTLS 0
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_BASE64_C)
|
2015-02-12 12:37:29 +01:00
|
|
|
#define USAGE_AUTH \
|
2019-01-19 17:05:56 +01:00
|
|
|
" authentication=%%d default: 0 (disabled)\n" \
|
|
|
|
" user_name=%%s default: \"" DFL_USER_NAME "\"\n" \
|
2023-01-11 14:50:10 +01:00
|
|
|
" user_pwd=%%s default: \"" \
|
|
|
|
DFL_USER_PWD "\"\n"
|
2015-02-12 12:37:29 +01:00
|
|
|
#else
|
|
|
|
#define USAGE_AUTH \
|
2015-04-08 12:49:31 +02:00
|
|
|
" authentication options disabled. (Require MBEDTLS_BASE64_C)\n"
|
|
|
|
#endif /* MBEDTLS_BASE64_C */
|
2015-02-12 12:37:29 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_FS_IO)
|
2015-02-12 12:37:29 +01:00
|
|
|
#define USAGE_IO \
|
|
|
|
" ca_file=%%s default: \"\" (pre-loaded)\n" \
|
|
|
|
" crt_file=%%s default: \"\" (pre-loaded)\n" \
|
|
|
|
" key_file=%%s default: \"\" (pre-loaded)\n"
|
|
|
|
#else
|
|
|
|
#define USAGE_IO \
|
2015-04-08 12:49:31 +02:00
|
|
|
" No file operations available (MBEDTLS_FS_IO not defined)\n"
|
|
|
|
#endif /* MBEDTLS_FS_IO */
|
2015-02-12 12:37:29 +01:00
|
|
|
|
|
|
|
#define USAGE \
|
2019-01-19 17:05:56 +01:00
|
|
|
"\n usage: ssl_mail_client param=<>...\n" \
|
|
|
|
"\n acceptable parameters:\n" \
|
|
|
|
" server_name=%%s default: " DFL_SERVER_NAME "\n" \
|
2023-01-11 14:50:10 +01:00
|
|
|
" server_port=%%d default: " \
|
|
|
|
DFL_SERVER_PORT "\n" \
|
|
|
|
" debug_level=%%d default: 0 (disabled)\n" \
|
|
|
|
" mode=%%d default: 0 (SSL/TLS) (1 for STARTTLS)\n" \
|
2019-01-19 17:05:56 +01:00
|
|
|
USAGE_AUTH \
|
|
|
|
" mail_from=%%s default: \"\"\n" \
|
|
|
|
" mail_to=%%s default: \"\"\n" \
|
|
|
|
USAGE_IO \
|
|
|
|
" force_ciphersuite=<name> default: all enabled\n" \
|
2015-02-12 12:37:29 +01:00
|
|
|
" acceptable ciphersuite names:\n"
|
|
|
|
|
2018-12-06 18:43:31 +01:00
|
|
|
|
2011-05-23 14:07:29 +02:00
|
|
|
/*
|
|
|
|
* global options
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
struct options {
|
2013-06-24 13:01:08 +02:00
|
|
|
const char *server_name; /* hostname of the server (client only) */
|
2015-06-23 12:30:57 +02:00
|
|
|
const char *server_port; /* port on which the ssl service runs */
|
2011-05-23 14:07:29 +02:00
|
|
|
int debug_level; /* level of debugging */
|
|
|
|
int authentication; /* if authentication is required */
|
|
|
|
int mode; /* SSL/TLS (0) or STARTTLS (1) */
|
2013-06-24 13:01:08 +02:00
|
|
|
const char *user_name; /* username to use for authentication */
|
|
|
|
const char *user_pwd; /* password to use for authentication */
|
|
|
|
const char *mail_from; /* E-Mail address to use as sender */
|
|
|
|
const char *mail_to; /* E-Mail address to use as recipient */
|
|
|
|
const char *ca_file; /* the file with the CA certificate(s) */
|
|
|
|
const char *crt_file; /* the file with the client certificate */
|
|
|
|
const char *key_file; /* the file with the client key */
|
2011-05-23 14:07:29 +02:00
|
|
|
int force_ciphersuite[2]; /* protocol/ciphersuite to use, or all */
|
|
|
|
} opt;
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
static void my_debug(void *ctx, int level,
|
|
|
|
const char *file, int line,
|
|
|
|
const char *str)
|
2011-05-23 14:07:29 +02:00
|
|
|
{
|
2015-06-23 17:35:03 +02:00
|
|
|
((void) level);
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_fprintf((FILE *) ctx, "%s:%04d: %s", file, line, str);
|
|
|
|
fflush((FILE *) ctx);
|
2011-05-23 14:07:29 +02:00
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
static int do_handshake(mbedtls_ssl_context *ssl)
|
2011-05-23 14:07:29 +02:00
|
|
|
{
|
|
|
|
int ret;
|
2015-05-11 19:54:43 +02:00
|
|
|
uint32_t flags;
|
2011-05-23 14:07:29 +02:00
|
|
|
unsigned char buf[1024];
|
2011-05-26 15:16:06 +02:00
|
|
|
memset(buf, 0, 1024);
|
2011-05-23 14:07:29 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 4. Handshake
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_printf(" . Performing the SSL/TLS handshake...");
|
|
|
|
fflush(stdout);
|
2011-05-23 14:07:29 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
while ((ret = mbedtls_ssl_handshake(ssl)) != 0) {
|
|
|
|
if (ret != MBEDTLS_ERR_SSL_WANT_READ && ret != MBEDTLS_ERR_SSL_WANT_WRITE) {
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_ERROR_C)
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_strerror(ret, (char *) buf, 1024);
|
2011-05-26 15:16:06 +02:00
|
|
|
#endif
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_printf(" failed\n ! mbedtls_ssl_handshake returned %d: %s\n\n", ret, buf);
|
|
|
|
return -1;
|
2011-05-23 14:07:29 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_printf(" ok\n [ Ciphersuite is %s ]\n",
|
|
|
|
mbedtls_ssl_get_ciphersuite(ssl));
|
2011-05-23 14:07:29 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 5. Verify the server certificate
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_printf(" . Verifying peer X.509 certificate...");
|
2011-05-23 14:07:29 +02:00
|
|
|
|
2015-04-20 11:56:18 +02:00
|
|
|
/* In real life, we probably want to bail out when ret != 0 */
|
2023-01-11 14:50:10 +01:00
|
|
|
if ((flags = mbedtls_ssl_get_verify_result(ssl)) != 0) {
|
2020-10-09 10:19:39 +02:00
|
|
|
#if !defined(MBEDTLS_X509_REMOVE_INFO)
|
2015-04-20 11:56:18 +02:00
|
|
|
char vrfy_buf[512];
|
2018-12-11 20:55:56 +01:00
|
|
|
#endif
|
2011-05-23 14:07:29 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_printf(" failed\n");
|
2011-05-23 14:07:29 +02:00
|
|
|
|
2020-10-09 10:19:39 +02:00
|
|
|
#if !defined(MBEDTLS_X509_REMOVE_INFO)
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_x509_crt_verify_info(vrfy_buf, sizeof(vrfy_buf), " ! ", flags);
|
2011-05-23 14:07:29 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_printf("%s\n", vrfy_buf);
|
2018-12-11 20:55:56 +01:00
|
|
|
#endif
|
2023-01-11 14:50:10 +01:00
|
|
|
} else {
|
|
|
|
mbedtls_printf(" ok\n");
|
2011-05-23 14:07:29 +02:00
|
|
|
}
|
|
|
|
|
2020-10-09 10:19:39 +02:00
|
|
|
#if !defined(MBEDTLS_X509_REMOVE_INFO)
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_printf(" . Peer certificate information ...\n");
|
|
|
|
mbedtls_x509_crt_info((char *) buf, sizeof(buf) - 1, " ",
|
|
|
|
mbedtls_ssl_get_peer_cert(ssl));
|
|
|
|
mbedtls_printf("%s\n", buf);
|
2018-12-11 20:55:56 +01:00
|
|
|
#endif
|
2011-05-23 14:07:29 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
return 0;
|
2011-05-23 14:07:29 +02:00
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
static int write_ssl_data(mbedtls_ssl_context *ssl, unsigned char *buf, size_t len)
|
2011-05-23 14:07:29 +02:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf("\n%s", buf);
|
2023-01-11 14:50:10 +01:00
|
|
|
while (len && (ret = mbedtls_ssl_write(ssl, buf, len)) <= 0) {
|
|
|
|
if (ret != MBEDTLS_ERR_SSL_WANT_READ && ret != MBEDTLS_ERR_SSL_WANT_WRITE) {
|
|
|
|
mbedtls_printf(" failed\n ! mbedtls_ssl_write returned %d\n\n", ret);
|
2011-05-23 14:07:29 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
return 0;
|
2011-05-23 14:07:29 +02:00
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
static int write_ssl_and_get_response(mbedtls_ssl_context *ssl, unsigned char *buf, size_t len)
|
2011-05-23 14:07:29 +02:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
unsigned char data[128];
|
|
|
|
char code[4];
|
|
|
|
size_t i, idx = 0;
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf("\n%s", buf);
|
2023-01-11 14:50:10 +01:00
|
|
|
while (len && (ret = mbedtls_ssl_write(ssl, buf, len)) <= 0) {
|
|
|
|
if (ret != MBEDTLS_ERR_SSL_WANT_READ && ret != MBEDTLS_ERR_SSL_WANT_WRITE) {
|
|
|
|
mbedtls_printf(" failed\n ! mbedtls_ssl_write returned %d\n\n", ret);
|
2011-05-23 14:07:29 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
do {
|
|
|
|
len = sizeof(data) - 1;
|
|
|
|
memset(data, 0, sizeof(data));
|
|
|
|
ret = mbedtls_ssl_read(ssl, data, len);
|
2011-05-23 14:07:29 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if (ret == MBEDTLS_ERR_SSL_WANT_READ || ret == MBEDTLS_ERR_SSL_WANT_WRITE) {
|
2011-05-23 14:07:29 +02:00
|
|
|
continue;
|
2023-01-11 14:50:10 +01:00
|
|
|
}
|
2011-05-23 14:07:29 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if (ret == MBEDTLS_ERR_SSL_PEER_CLOSE_NOTIFY) {
|
2011-05-23 14:07:29 +02:00
|
|
|
return -1;
|
2023-01-11 14:50:10 +01:00
|
|
|
}
|
2011-05-23 14:07:29 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if (ret <= 0) {
|
|
|
|
mbedtls_printf("failed\n ! mbedtls_ssl_read returned %d\n\n", ret);
|
2011-05-23 14:07:29 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf("\n%s", data);
|
2011-05-23 14:07:29 +02:00
|
|
|
len = ret;
|
2023-01-11 14:50:10 +01:00
|
|
|
for (i = 0; i < len; i++) {
|
|
|
|
if (data[i] != '\n') {
|
|
|
|
if (idx < 4) {
|
|
|
|
code[idx++] = data[i];
|
|
|
|
}
|
2011-05-23 14:07:29 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if (idx == 4 && code[0] >= '0' && code[0] <= '9' && code[3] == ' ') {
|
2011-05-23 14:07:29 +02:00
|
|
|
code[3] = '\0';
|
2023-01-11 14:50:10 +01:00
|
|
|
return atoi(code);
|
2011-05-23 14:07:29 +02:00
|
|
|
}
|
2013-06-25 16:37:45 +02:00
|
|
|
|
2011-05-23 14:07:29 +02:00
|
|
|
idx = 0;
|
|
|
|
}
|
2023-01-11 14:50:10 +01:00
|
|
|
} while (1);
|
2011-05-23 14:07:29 +02:00
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
static int write_and_get_response(mbedtls_net_context *sock_fd, unsigned char *buf, size_t len)
|
2011-05-23 14:07:29 +02:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
unsigned char data[128];
|
|
|
|
char code[4];
|
|
|
|
size_t i, idx = 0;
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf("\n%s", buf);
|
2023-01-11 14:50:10 +01:00
|
|
|
if (len && (ret = mbedtls_net_send(sock_fd, buf, len)) <= 0) {
|
|
|
|
mbedtls_printf(" failed\n ! mbedtls_net_send returned %d\n\n", ret);
|
|
|
|
return -1;
|
2011-05-23 14:07:29 +02:00
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
do {
|
|
|
|
len = sizeof(data) - 1;
|
|
|
|
memset(data, 0, sizeof(data));
|
|
|
|
ret = mbedtls_net_recv(sock_fd, data, len);
|
2011-05-23 14:07:29 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if (ret <= 0) {
|
|
|
|
mbedtls_printf("failed\n ! mbedtls_net_recv returned %d\n\n", ret);
|
2011-05-23 14:07:29 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2014-04-17 16:03:48 +02:00
|
|
|
data[len] = '\0';
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf("\n%s", data);
|
2011-05-23 14:07:29 +02:00
|
|
|
len = ret;
|
2023-01-11 14:50:10 +01:00
|
|
|
for (i = 0; i < len; i++) {
|
|
|
|
if (data[i] != '\n') {
|
|
|
|
if (idx < 4) {
|
|
|
|
code[idx++] = data[i];
|
|
|
|
}
|
2011-05-23 14:07:29 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if (idx == 4 && code[0] >= '0' && code[0] <= '9' && code[3] == ' ') {
|
2011-05-23 14:07:29 +02:00
|
|
|
code[3] = '\0';
|
2023-01-11 14:50:10 +01:00
|
|
|
return atoi(code);
|
2011-05-23 14:07:29 +02:00
|
|
|
}
|
2015-02-13 15:12:07 +01:00
|
|
|
|
2011-05-23 14:07:29 +02:00
|
|
|
idx = 0;
|
|
|
|
}
|
2023-01-11 14:50:10 +01:00
|
|
|
} while (1);
|
2011-05-23 14:07:29 +02:00
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
int main(int argc, char *argv[])
|
2011-05-23 14:07:29 +02:00
|
|
|
{
|
2018-04-29 22:04:29 +02:00
|
|
|
int ret = 1, len;
|
|
|
|
int exit_code = MBEDTLS_EXIT_FAILURE;
|
2015-06-30 15:40:39 +02:00
|
|
|
mbedtls_net_context server_fd;
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_BASE64_C)
|
2011-05-23 14:07:29 +02:00
|
|
|
unsigned char base[1024];
|
2018-08-06 12:48:06 +02:00
|
|
|
/* buf is used as the destination buffer for printing base with the format:
|
|
|
|
* "%s\r\n". Hence, the size of buf should be at least the size of base
|
|
|
|
* plus 2 bytes for the \r and \n characters.
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
unsigned char buf[sizeof(base) + 2];
|
2018-08-06 12:48:06 +02:00
|
|
|
#else
|
|
|
|
unsigned char buf[1024];
|
2011-05-26 15:16:06 +02:00
|
|
|
#endif
|
2011-05-23 14:07:29 +02:00
|
|
|
char hostname[32];
|
2013-06-24 13:01:08 +02:00
|
|
|
const char *pers = "ssl_mail_client";
|
2011-12-04 18:09:26 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_entropy_context entropy;
|
|
|
|
mbedtls_ctr_drbg_context ctr_drbg;
|
|
|
|
mbedtls_ssl_context ssl;
|
2015-05-04 14:56:36 +02:00
|
|
|
mbedtls_ssl_config conf;
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_x509_crt cacert;
|
|
|
|
mbedtls_x509_crt clicert;
|
|
|
|
mbedtls_pk_context pkey;
|
2011-05-23 14:07:29 +02:00
|
|
|
int i;
|
2012-09-28 09:04:41 +02:00
|
|
|
size_t n;
|
2011-05-23 14:07:29 +02:00
|
|
|
char *p, *q;
|
|
|
|
const int *list;
|
|
|
|
|
|
|
|
/*
|
2013-09-20 13:10:13 +02:00
|
|
|
* Make sure memory references are valid in case we exit early.
|
2011-05-23 14:07:29 +02:00
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_net_init(&server_fd);
|
|
|
|
mbedtls_ssl_init(&ssl);
|
|
|
|
mbedtls_ssl_config_init(&conf);
|
|
|
|
memset(&buf, 0, sizeof(buf));
|
|
|
|
mbedtls_x509_crt_init(&cacert);
|
|
|
|
mbedtls_x509_crt_init(&clicert);
|
|
|
|
mbedtls_pk_init(&pkey);
|
|
|
|
mbedtls_ctr_drbg_init(&ctr_drbg);
|
|
|
|
|
2023-01-30 16:58:50 +01:00
|
|
|
if (argc < 2) {
|
2023-01-11 14:50:10 +01:00
|
|
|
usage:
|
|
|
|
mbedtls_printf(USAGE);
|
2011-05-23 14:07:29 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
list = mbedtls_ssl_list_ciphersuites();
|
2023-01-11 14:50:10 +01:00
|
|
|
while (*list) {
|
|
|
|
mbedtls_printf(" %s\n", mbedtls_ssl_get_ciphersuite_name(*list));
|
2011-05-23 14:07:29 +02:00
|
|
|
list++;
|
|
|
|
}
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf("\n");
|
2011-05-23 14:07:29 +02:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
opt.server_name = DFL_SERVER_NAME;
|
|
|
|
opt.server_port = DFL_SERVER_PORT;
|
|
|
|
opt.debug_level = DFL_DEBUG_LEVEL;
|
|
|
|
opt.authentication = DFL_AUTHENTICATION;
|
|
|
|
opt.mode = DFL_MODE;
|
|
|
|
opt.user_name = DFL_USER_NAME;
|
|
|
|
opt.user_pwd = DFL_USER_PWD;
|
|
|
|
opt.mail_from = DFL_MAIL_FROM;
|
|
|
|
opt.mail_to = DFL_MAIL_TO;
|
2011-05-26 15:16:06 +02:00
|
|
|
opt.ca_file = DFL_CA_FILE;
|
2011-05-23 14:07:29 +02:00
|
|
|
opt.crt_file = DFL_CRT_FILE;
|
|
|
|
opt.key_file = DFL_KEY_FILE;
|
2023-01-11 14:50:10 +01:00
|
|
|
opt.force_ciphersuite[0] = DFL_FORCE_CIPHER;
|
2011-05-23 14:07:29 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
for (i = 1; i < argc; i++) {
|
2011-05-23 14:07:29 +02:00
|
|
|
p = argv[i];
|
2023-01-11 14:50:10 +01:00
|
|
|
if ((q = strchr(p, '=')) == NULL) {
|
2011-05-23 14:07:29 +02:00
|
|
|
goto usage;
|
2023-01-11 14:50:10 +01:00
|
|
|
}
|
2011-05-23 14:07:29 +02:00
|
|
|
*q++ = '\0';
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if (strcmp(p, "server_name") == 0) {
|
2011-05-23 14:07:29 +02:00
|
|
|
opt.server_name = q;
|
2023-01-11 14:50:10 +01:00
|
|
|
} else if (strcmp(p, "server_port") == 0) {
|
2015-06-23 12:30:57 +02:00
|
|
|
opt.server_port = q;
|
2023-01-11 14:50:10 +01:00
|
|
|
} else if (strcmp(p, "debug_level") == 0) {
|
|
|
|
opt.debug_level = atoi(q);
|
|
|
|
if (opt.debug_level < 0 || opt.debug_level > 65535) {
|
2011-05-23 14:07:29 +02:00
|
|
|
goto usage;
|
2023-01-11 14:50:10 +01:00
|
|
|
}
|
|
|
|
} else if (strcmp(p, "authentication") == 0) {
|
|
|
|
opt.authentication = atoi(q);
|
|
|
|
if (opt.authentication < 0 || opt.authentication > 1) {
|
2011-05-23 14:07:29 +02:00
|
|
|
goto usage;
|
2023-01-11 14:50:10 +01:00
|
|
|
}
|
|
|
|
} else if (strcmp(p, "mode") == 0) {
|
|
|
|
opt.mode = atoi(q);
|
|
|
|
if (opt.mode < 0 || opt.mode > 1) {
|
2011-05-23 14:07:29 +02:00
|
|
|
goto usage;
|
2023-01-11 14:50:10 +01:00
|
|
|
}
|
|
|
|
} else if (strcmp(p, "user_name") == 0) {
|
2011-05-23 14:07:29 +02:00
|
|
|
opt.user_name = q;
|
2023-01-11 14:50:10 +01:00
|
|
|
} else if (strcmp(p, "user_pwd") == 0) {
|
2011-05-23 14:07:29 +02:00
|
|
|
opt.user_pwd = q;
|
2023-01-11 14:50:10 +01:00
|
|
|
} else if (strcmp(p, "mail_from") == 0) {
|
2011-05-23 14:07:29 +02:00
|
|
|
opt.mail_from = q;
|
2023-01-11 14:50:10 +01:00
|
|
|
} else if (strcmp(p, "mail_to") == 0) {
|
2011-05-23 14:07:29 +02:00
|
|
|
opt.mail_to = q;
|
2023-01-11 14:50:10 +01:00
|
|
|
} else if (strcmp(p, "ca_file") == 0) {
|
2011-05-26 15:16:06 +02:00
|
|
|
opt.ca_file = q;
|
2023-01-11 14:50:10 +01:00
|
|
|
} else if (strcmp(p, "crt_file") == 0) {
|
2011-05-23 14:07:29 +02:00
|
|
|
opt.crt_file = q;
|
2023-01-11 14:50:10 +01:00
|
|
|
} else if (strcmp(p, "key_file") == 0) {
|
2011-05-23 14:07:29 +02:00
|
|
|
opt.key_file = q;
|
2023-01-11 14:50:10 +01:00
|
|
|
} else if (strcmp(p, "force_ciphersuite") == 0) {
|
2011-05-23 14:07:29 +02:00
|
|
|
opt.force_ciphersuite[0] = -1;
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
opt.force_ciphersuite[0] = mbedtls_ssl_get_ciphersuite_id(q);
|
2011-05-23 14:07:29 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if (opt.force_ciphersuite[0] <= 0) {
|
2011-05-23 14:07:29 +02:00
|
|
|
goto usage;
|
2023-01-11 14:50:10 +01:00
|
|
|
}
|
2011-05-23 14:07:29 +02:00
|
|
|
|
|
|
|
opt.force_ciphersuite[1] = 0;
|
2023-01-11 14:50:10 +01:00
|
|
|
} else {
|
2011-05-23 14:07:29 +02:00
|
|
|
goto usage;
|
2023-01-11 14:50:10 +01:00
|
|
|
}
|
2011-05-23 14:07:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 0. Initialize the RNG and the session data
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_printf("\n . Seeding the random number generator...");
|
|
|
|
fflush(stdout);
|
|
|
|
|
|
|
|
mbedtls_entropy_init(&entropy);
|
|
|
|
if ((ret = mbedtls_ctr_drbg_seed(&ctr_drbg, mbedtls_entropy_func, &entropy,
|
|
|
|
(const unsigned char *) pers,
|
|
|
|
strlen(pers))) != 0) {
|
|
|
|
mbedtls_printf(" failed\n ! mbedtls_ctr_drbg_seed returned %d\n", ret);
|
2011-12-04 18:09:26 +01:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_printf(" ok\n");
|
2011-05-23 14:07:29 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 1.1. Load the trusted CA
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_printf(" . Loading the CA root certificate ...");
|
|
|
|
fflush(stdout);
|
2011-05-23 14:07:29 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_FS_IO)
|
2023-01-11 14:50:10 +01:00
|
|
|
if (strlen(opt.ca_file)) {
|
|
|
|
ret = mbedtls_x509_crt_parse_file(&cacert, opt.ca_file);
|
|
|
|
} else
|
2011-05-26 15:16:06 +02:00
|
|
|
#endif
|
2021-02-08 15:34:42 +01:00
|
|
|
#if defined(MBEDTLS_PEM_PARSE_C)
|
2023-01-11 14:50:10 +01:00
|
|
|
ret = mbedtls_x509_crt_parse(&cacert, (const unsigned char *) mbedtls_test_cas_pem,
|
|
|
|
mbedtls_test_cas_pem_len);
|
2011-05-26 15:16:06 +02:00
|
|
|
#else
|
|
|
|
{
|
2021-02-08 15:34:42 +01:00
|
|
|
mbedtls_printf("MBEDTLS_PEM_PARSE_C not defined.");
|
2018-04-29 22:04:29 +02:00
|
|
|
goto exit;
|
2011-05-26 15:16:06 +02:00
|
|
|
}
|
|
|
|
#endif
|
2023-01-11 14:50:10 +01:00
|
|
|
if (ret < 0) {
|
|
|
|
mbedtls_printf(" failed\n ! mbedtls_x509_crt_parse returned %d\n\n", ret);
|
2011-05-23 14:07:29 +02:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_printf(" ok (%d skipped)\n", ret);
|
2011-05-23 14:07:29 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 1.2. Load own certificate and private key
|
|
|
|
*
|
|
|
|
* (can be skipped if client authentication is not required)
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_printf(" . Loading the client cert. and key...");
|
|
|
|
fflush(stdout);
|
2011-05-23 14:07:29 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_FS_IO)
|
2023-01-11 14:50:10 +01:00
|
|
|
if (strlen(opt.crt_file)) {
|
|
|
|
ret = mbedtls_x509_crt_parse_file(&clicert, opt.crt_file);
|
|
|
|
} else
|
2011-05-26 15:16:06 +02:00
|
|
|
#endif
|
2023-01-11 14:50:10 +01:00
|
|
|
ret = mbedtls_x509_crt_parse(&clicert, (const unsigned char *) mbedtls_test_cli_crt,
|
|
|
|
mbedtls_test_cli_crt_len);
|
|
|
|
if (ret != 0) {
|
|
|
|
mbedtls_printf(" failed\n ! mbedtls_x509_crt_parse returned %d\n\n", ret);
|
2011-05-23 14:07:29 +02:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_FS_IO)
|
2023-01-11 14:50:10 +01:00
|
|
|
if (strlen(opt.key_file)) {
|
|
|
|
ret = mbedtls_pk_parse_keyfile(&pkey, opt.key_file, "",
|
|
|
|
mbedtls_ctr_drbg_random, &ctr_drbg);
|
|
|
|
} else
|
2011-05-26 15:16:06 +02:00
|
|
|
#endif
|
2021-02-08 15:34:42 +01:00
|
|
|
#if defined(MBEDTLS_PEM_PARSE_C)
|
2021-06-15 11:29:26 +02:00
|
|
|
{
|
2023-01-11 14:50:10 +01:00
|
|
|
ret = mbedtls_pk_parse_key(&pkey,
|
|
|
|
(const unsigned char *) mbedtls_test_cli_key,
|
|
|
|
mbedtls_test_cli_key_len,
|
|
|
|
NULL,
|
|
|
|
0,
|
|
|
|
mbedtls_ctr_drbg_random,
|
|
|
|
&ctr_drbg);
|
2021-06-15 11:29:26 +02:00
|
|
|
}
|
2011-05-26 15:16:06 +02:00
|
|
|
#else
|
|
|
|
{
|
2021-02-08 15:34:42 +01:00
|
|
|
mbedtls_printf("MBEDTLS_PEM_PARSE_C not defined.");
|
2018-04-29 22:04:29 +02:00
|
|
|
goto exit;
|
2011-05-26 15:16:06 +02:00
|
|
|
}
|
|
|
|
#endif
|
2023-01-11 14:50:10 +01:00
|
|
|
if (ret != 0) {
|
|
|
|
mbedtls_printf(" failed\n ! mbedtls_pk_parse_key returned %d\n\n", ret);
|
2011-05-23 14:07:29 +02:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_printf(" ok\n");
|
2011-05-23 14:07:29 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 2. Start the connection
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_printf(" . Connecting to tcp/%s/%s...", opt.server_name,
|
|
|
|
opt.server_port);
|
|
|
|
fflush(stdout);
|
2011-05-23 14:07:29 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if ((ret = mbedtls_net_connect(&server_fd, opt.server_name,
|
|
|
|
opt.server_port, MBEDTLS_NET_PROTO_TCP)) != 0) {
|
|
|
|
mbedtls_printf(" failed\n ! mbedtls_net_connect returned %d\n\n", ret);
|
2011-05-23 14:07:29 +02:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_printf(" ok\n");
|
2011-05-23 14:07:29 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 3. Setup stuff
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_printf(" . Setting up the SSL/TLS structure...");
|
|
|
|
fflush(stdout);
|
|
|
|
|
|
|
|
if ((ret = mbedtls_ssl_config_defaults(&conf,
|
|
|
|
MBEDTLS_SSL_IS_CLIENT,
|
|
|
|
MBEDTLS_SSL_TRANSPORT_STREAM,
|
|
|
|
MBEDTLS_SSL_PRESET_DEFAULT)) != 0) {
|
|
|
|
mbedtls_printf(" failed\n ! mbedtls_ssl_config_defaults returned %d\n\n", ret);
|
2015-05-04 14:56:36 +02:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2014-03-11 11:10:27 +01:00
|
|
|
/* OPTIONAL is not optimal for security,
|
|
|
|
* but makes interop easier in this simplified example */
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_ssl_conf_authmode(&conf, MBEDTLS_SSL_VERIFY_OPTIONAL);
|
2011-05-23 14:07:29 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_ssl_conf_rng(&conf, mbedtls_ctr_drbg_random, &ctr_drbg);
|
|
|
|
mbedtls_ssl_conf_dbg(&conf, my_debug, stdout);
|
2011-05-23 14:07:29 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if (opt.force_ciphersuite[0] != DFL_FORCE_CIPHER) {
|
|
|
|
mbedtls_ssl_conf_ciphersuites(&conf, opt.force_ciphersuite);
|
|
|
|
}
|
2011-05-23 14:07:29 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_ssl_conf_ca_chain(&conf, &cacert, NULL);
|
|
|
|
if ((ret = mbedtls_ssl_conf_own_cert(&conf, &clicert, &pkey)) != 0) {
|
|
|
|
mbedtls_printf(" failed\n ! mbedtls_ssl_conf_own_cert returned %d\n\n", ret);
|
2014-07-08 14:05:52 +02:00
|
|
|
goto exit;
|
|
|
|
}
|
2011-05-23 14:07:29 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if ((ret = mbedtls_ssl_setup(&ssl, &conf)) != 0) {
|
|
|
|
mbedtls_printf(" failed\n ! mbedtls_ssl_setup returned %d\n\n", ret);
|
2015-05-11 11:25:46 +02:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if ((ret = mbedtls_ssl_set_hostname(&ssl, opt.server_name)) != 0) {
|
|
|
|
mbedtls_printf(" failed\n ! mbedtls_ssl_set_hostname returned %d\n\n", ret);
|
2014-07-08 14:05:52 +02:00
|
|
|
goto exit;
|
|
|
|
}
|
2011-05-23 14:07:29 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_ssl_set_bio(&ssl, &server_fd, mbedtls_net_send, mbedtls_net_recv, NULL);
|
2015-05-11 11:25:46 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_printf(" ok\n");
|
2015-05-11 11:25:46 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if (opt.mode == MODE_SSL_TLS) {
|
|
|
|
if (do_handshake(&ssl) != 0) {
|
2011-05-23 14:07:29 +02:00
|
|
|
goto exit;
|
2023-01-11 14:50:10 +01:00
|
|
|
}
|
2011-05-23 14:07:29 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_printf(" > Get header from server:");
|
|
|
|
fflush(stdout);
|
2011-05-23 14:07:29 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
ret = write_ssl_and_get_response(&ssl, buf, 0);
|
|
|
|
if (ret < 200 || ret > 299) {
|
|
|
|
mbedtls_printf(" failed\n ! server responded with %d\n\n", ret);
|
2011-05-23 14:07:29 +02:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_printf(" ok\n");
|
2011-05-23 14:07:29 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_printf(" > Write EHLO to server:");
|
|
|
|
fflush(stdout);
|
2011-05-23 14:07:29 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
gethostname(hostname, 32);
|
|
|
|
len = sprintf((char *) buf, "EHLO %s\r\n", hostname);
|
|
|
|
ret = write_ssl_and_get_response(&ssl, buf, len);
|
|
|
|
if (ret < 200 || ret > 299) {
|
|
|
|
mbedtls_printf(" failed\n ! server responded with %d\n\n", ret);
|
2011-05-23 14:07:29 +02:00
|
|
|
goto exit;
|
|
|
|
}
|
2023-01-11 14:50:10 +01:00
|
|
|
} else {
|
|
|
|
mbedtls_printf(" > Get header from server:");
|
|
|
|
fflush(stdout);
|
2011-05-23 14:07:29 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
ret = write_and_get_response(&server_fd, buf, 0);
|
|
|
|
if (ret < 200 || ret > 299) {
|
|
|
|
mbedtls_printf(" failed\n ! server responded with %d\n\n", ret);
|
2011-05-23 14:07:29 +02:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_printf(" ok\n");
|
2011-05-23 14:07:29 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_printf(" > Write EHLO to server:");
|
|
|
|
fflush(stdout);
|
2011-05-23 14:07:29 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
gethostname(hostname, 32);
|
|
|
|
len = sprintf((char *) buf, "EHLO %s\r\n", hostname);
|
|
|
|
ret = write_and_get_response(&server_fd, buf, len);
|
|
|
|
if (ret < 200 || ret > 299) {
|
|
|
|
mbedtls_printf(" failed\n ! server responded with %d\n\n", ret);
|
2011-05-23 14:07:29 +02:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_printf(" ok\n");
|
2011-05-23 14:07:29 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_printf(" > Write STARTTLS to server:");
|
|
|
|
fflush(stdout);
|
2011-05-23 14:07:29 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
gethostname(hostname, 32);
|
|
|
|
len = sprintf((char *) buf, "STARTTLS\r\n");
|
|
|
|
ret = write_and_get_response(&server_fd, buf, len);
|
|
|
|
if (ret < 200 || ret > 299) {
|
|
|
|
mbedtls_printf(" failed\n ! server responded with %d\n\n", ret);
|
2011-05-23 14:07:29 +02:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_printf(" ok\n");
|
2011-05-23 14:07:29 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if (do_handshake(&ssl) != 0) {
|
2011-05-23 14:07:29 +02:00
|
|
|
goto exit;
|
2023-01-11 14:50:10 +01:00
|
|
|
}
|
2011-05-23 14:07:29 +02:00
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_BASE64_C)
|
2023-01-11 14:50:10 +01:00
|
|
|
if (opt.authentication) {
|
|
|
|
mbedtls_printf(" > Write AUTH LOGIN to server:");
|
|
|
|
fflush(stdout);
|
|
|
|
|
|
|
|
len = sprintf((char *) buf, "AUTH LOGIN\r\n");
|
|
|
|
ret = write_ssl_and_get_response(&ssl, buf, len);
|
|
|
|
if (ret < 200 || ret > 399) {
|
|
|
|
mbedtls_printf(" failed\n ! server responded with %d\n\n", ret);
|
2011-05-23 14:07:29 +02:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_printf(" ok\n");
|
2011-05-23 14:07:29 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_printf(" > Write username to server: %s", opt.user_name);
|
|
|
|
fflush(stdout);
|
2011-05-23 14:07:29 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
ret = mbedtls_base64_encode(base, sizeof(base), &n, (const unsigned char *) opt.user_name,
|
|
|
|
strlen(opt.user_name));
|
2014-07-14 22:11:13 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if (ret != 0) {
|
|
|
|
mbedtls_printf(" failed\n ! mbedtls_base64_encode returned %d\n\n", ret);
|
2014-07-14 22:11:13 +02:00
|
|
|
goto exit;
|
|
|
|
}
|
2023-01-11 14:50:10 +01:00
|
|
|
len = sprintf((char *) buf, "%s\r\n", base);
|
|
|
|
ret = write_ssl_and_get_response(&ssl, buf, len);
|
|
|
|
if (ret < 300 || ret > 399) {
|
|
|
|
mbedtls_printf(" failed\n ! server responded with %d\n\n", ret);
|
2011-05-23 14:07:29 +02:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_printf(" ok\n");
|
2011-05-23 14:07:29 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_printf(" > Write password to server: %s", opt.user_pwd);
|
|
|
|
fflush(stdout);
|
2011-05-23 14:07:29 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
ret = mbedtls_base64_encode(base, sizeof(base), &n, (const unsigned char *) opt.user_pwd,
|
|
|
|
strlen(opt.user_pwd));
|
2014-07-14 22:11:13 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if (ret != 0) {
|
|
|
|
mbedtls_printf(" failed\n ! mbedtls_base64_encode returned %d\n\n", ret);
|
2014-07-14 22:11:13 +02:00
|
|
|
goto exit;
|
|
|
|
}
|
2023-01-11 14:50:10 +01:00
|
|
|
len = sprintf((char *) buf, "%s\r\n", base);
|
|
|
|
ret = write_ssl_and_get_response(&ssl, buf, len);
|
|
|
|
if (ret < 200 || ret > 399) {
|
|
|
|
mbedtls_printf(" failed\n ! server responded with %d\n\n", ret);
|
2011-05-23 14:07:29 +02:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_printf(" ok\n");
|
2011-05-23 14:07:29 +02:00
|
|
|
}
|
2011-05-26 15:16:06 +02:00
|
|
|
#endif
|
2011-05-23 14:07:29 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_printf(" > Write MAIL FROM to server:");
|
|
|
|
fflush(stdout);
|
2011-05-23 14:07:29 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
len = sprintf((char *) buf, "MAIL FROM:<%s>\r\n", opt.mail_from);
|
|
|
|
ret = write_ssl_and_get_response(&ssl, buf, len);
|
|
|
|
if (ret < 200 || ret > 299) {
|
|
|
|
mbedtls_printf(" failed\n ! server responded with %d\n\n", ret);
|
2011-05-23 14:07:29 +02:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_printf(" ok\n");
|
2011-05-23 14:07:29 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_printf(" > Write RCPT TO to server:");
|
|
|
|
fflush(stdout);
|
2011-05-23 14:07:29 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
len = sprintf((char *) buf, "RCPT TO:<%s>\r\n", opt.mail_to);
|
|
|
|
ret = write_ssl_and_get_response(&ssl, buf, len);
|
|
|
|
if (ret < 200 || ret > 299) {
|
|
|
|
mbedtls_printf(" failed\n ! server responded with %d\n\n", ret);
|
2011-05-23 14:07:29 +02:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_printf(" ok\n");
|
2011-05-23 14:07:29 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_printf(" > Write DATA to server:");
|
|
|
|
fflush(stdout);
|
2011-05-23 14:07:29 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
len = sprintf((char *) buf, "DATA\r\n");
|
|
|
|
ret = write_ssl_and_get_response(&ssl, buf, len);
|
|
|
|
if (ret < 300 || ret > 399) {
|
|
|
|
mbedtls_printf(" failed\n ! server responded with %d\n\n", ret);
|
2011-05-23 14:07:29 +02:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_printf(" ok\n");
|
2011-05-23 14:07:29 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_printf(" > Write content to server:");
|
|
|
|
fflush(stdout);
|
2011-05-23 14:07:29 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
len = sprintf((char *) buf, "From: %s\r\nSubject: mbed TLS Test mail\r\n\r\n"
|
|
|
|
"This is a simple test mail from the "
|
|
|
|
"mbed TLS mail client example.\r\n"
|
|
|
|
"\r\n"
|
|
|
|
"Enjoy!", opt.mail_from);
|
|
|
|
ret = write_ssl_data(&ssl, buf, len);
|
2011-05-23 14:07:29 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
len = sprintf((char *) buf, "\r\n.\r\n");
|
|
|
|
ret = write_ssl_and_get_response(&ssl, buf, len);
|
|
|
|
if (ret < 200 || ret > 299) {
|
|
|
|
mbedtls_printf(" failed\n ! server responded with %d\n\n", ret);
|
2011-05-23 14:07:29 +02:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_printf(" ok\n");
|
2011-05-23 14:07:29 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_ssl_close_notify(&ssl);
|
2011-05-23 14:07:29 +02:00
|
|
|
|
2018-04-29 22:04:29 +02:00
|
|
|
exit_code = MBEDTLS_EXIT_SUCCESS;
|
|
|
|
|
2011-05-23 14:07:29 +02:00
|
|
|
exit:
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_net_free(&server_fd);
|
|
|
|
mbedtls_x509_crt_free(&clicert);
|
|
|
|
mbedtls_x509_crt_free(&cacert);
|
|
|
|
mbedtls_pk_free(&pkey);
|
|
|
|
mbedtls_ssl_free(&ssl);
|
|
|
|
mbedtls_ssl_config_free(&conf);
|
|
|
|
mbedtls_ctr_drbg_free(&ctr_drbg);
|
|
|
|
mbedtls_entropy_free(&entropy);
|
2011-05-23 14:07:29 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_exit(exit_code);
|
2011-05-23 14:07:29 +02:00
|
|
|
}
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_BIGNUM_C && MBEDTLS_ENTROPY_C && MBEDTLS_SSL_TLS_C &&
|
|
|
|
MBEDTLS_SSL_CLI_C && MBEDTLS_NET_C && MBEDTLS_RSA_C **
|
|
|
|
MBEDTLS_CTR_DRBG_C */
|