1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250
|
/*
* Copyright (C) 2021 Red Hat, Inc.
*
* Author: Alexander Sosedkin
*
* This file is part of GnuTLS.
*
* GnuTLS 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 3 of the License, or
* (at your option) any later version.
*
* GnuTLS 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 GnuTLS. If not, see <https://www.gnu.org/licenses/>.
*/
#include <errno.h>
#include <netinet/in.h>
#include <netinet/tcp.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <gnutls/gnutls.h>
#include <gnutls/x509.h>
#include "utils.h"
/*
* This is not a test by itself.
* This is a helper for the real test in protocol-set-allowlist.sh.
* It executes sequences of commands like:
* > protocol_set_disabled TLS1.2
* > protocol_set_enabled TLS1.1
* > connect
* > protocol_set_enabled TLS1.2
* > protocol_set_disabled TLS1.1
* > connect -> connection established
* where `connect` connects to $TEST_SERVER_PORT using $TEST_SERVER_CA,
* and gnutls_protocol_set_enabled simply call the underlying API.
* leaving the outer test to check return code and output:
* protocol_set_disabled TLS1.2 -> OK
* protocol_set_enabled TLS1.1 -> OK
* connect -> connection established: (TLS1.1)-(RSA)-(AES-128-CBC)-(SHA1)
* protocol_set_enabled TLS1.2 -> INVALID_REQUEST
* protocol_set_disabled TLS1.1 -> INVALID_REQUEST
* connect -> connection established: (TLS1.1)-(RSA)-(AES-128-CBC)-(SHA1)
*/
#define _assert(cond, format, ...) \
if (!(cond)) \
_fail("Assertion `" #cond "` failed: " format "\n", ##__VA_ARGS__)
#define _check(cond) \
if (!(cond)) \
_fail("Assertion `" #cond "` failed.")
unsigned parse_port(const char *port_str);
gnutls_protocol_t parse_protocol(const char *name);
void test_echo_server(gnutls_session_t session);
void cmd_connect(const char *ca_file, unsigned port);
void cmd_protocol_set_disabled(const char *name);
void cmd_protocol_set_enabled(const char *name);
void cmd_reinit(void);
const char *unprefix(const char *s, const char *prefix);
unsigned parse_port(const char *port_str)
{
unsigned port;
errno = 0;
port = strtoul(port_str, NULL, 10);
_assert(!errno, "Could not parse port value '%s'\n", port_str);
_assert(0 < port && port < (1UL << 16), "Invalid port %u\n", port);
return port;
}
gnutls_protocol_t parse_protocol(const char *name)
{
gnutls_protocol_t p;
p = gnutls_protocol_get_id(name);
_assert(p != GNUTLS_VERSION_UNKNOWN, "Unknown protocol `%s`", name);
return p;
}
void test_echo_server(gnutls_session_t session)
{
const char buf_out[] = "1234567\n";
char buf_in[sizeof(buf_out) - 1];
unsigned rd = 0, wr = 0;
unsigned LEN = sizeof(buf_out) - 1;
int r;
do {
r = gnutls_record_send(session, buf_out + wr, LEN - wr);
if (r == GNUTLS_E_AGAIN || r == GNUTLS_E_INTERRUPTED)
continue;
_assert(r > 0, "error in send: %s\n", gnutls_strerror(r));
wr += r;
} while (r > 0 && wr < LEN);
_assert(wr == LEN, "error sending all data (%u/%u)\n", wr, LEN);
do {
r = gnutls_record_recv(session, buf_in + rd, LEN - rd);
if (r == GNUTLS_E_AGAIN || r == GNUTLS_E_INTERRUPTED)
continue;
_assert(r > 0, "error in recv: %s\n", gnutls_strerror(r));
rd += r;
} while (r > 0 && rd < LEN);
_assert(rd == LEN, "error receiving all data (%u/%u)\n", rd, LEN);
_assert(!gnutls_record_check_pending(session), "data left unreceived");
_assert(!memcmp(buf_in, buf_out, LEN), "send/recv data mismatch\n");
}
void cmd_connect(const char *ca_file, unsigned port)
{
char *desc;
int sock, r;
gnutls_session_t session;
gnutls_certificate_credentials_t cred;
int sock_flags = 1;
_check(gnutls_init(&session, GNUTLS_CLIENT) >= 0);
r = gnutls_set_default_priority(session);
if (r < 0) {
printf("connect -> bad priority: %s\n", gnutls_strerror(r));
gnutls_deinit(session);
return;
}
_check(gnutls_server_name_set(session, GNUTLS_NAME_DNS, "example.com",
strlen("example.com")) >= 0);
gnutls_session_set_verify_cert(session, "example.com", 0);
_check(gnutls_certificate_allocate_credentials(&cred) >= 0);
_check(gnutls_certificate_set_x509_trust_file(
cred, ca_file, GNUTLS_X509_FMT_PEM) == 1);
_check(gnutls_credentials_set(session, GNUTLS_CRD_CERTIFICATE, cred) >=
0);
sock = tcp_connect("127.0.0.1", port);
_assert(sock != -1, "Connection to 127.0.0.1:%u has failed!", port);
_assert(setsockopt(sock, IPPROTO_TCP, TCP_NODELAY, &sock_flags,
sizeof(int)) == 0,
"setsockopt failed");
gnutls_transport_set_int(session, sock);
gnutls_handshake_set_timeout(session, GNUTLS_DEFAULT_HANDSHAKE_TIMEOUT);
do {
r = gnutls_handshake(session);
} while (r < 0 && !gnutls_error_is_fatal(r));
if (r >= 0) {
desc = gnutls_session_get_desc(session);
_check(desc);
printf("connect -> connection established: %s\n", desc);
gnutls_free(desc);
} else {
printf("connect -> handshake failed: %s\n", gnutls_strerror(r));
}
gnutls_bye(session, GNUTLS_SHUT_RDWR);
shutdown(sock, SHUT_RDWR);
close(sock);
gnutls_certificate_free_credentials(cred);
gnutls_deinit(session);
}
void cmd_protocol_set_disabled(const char *name)
{
int ret;
ret = gnutls_protocol_set_enabled(parse_protocol(name), 0);
printf("protocol_set_disabled %s -> %s\n", name,
ret == 0 ? "OK" :
ret == GNUTLS_E_INVALID_REQUEST ? "INVALID_REQUEST" :
gnutls_strerror(ret));
}
void cmd_protocol_set_enabled(const char *name)
{
int ret;
ret = gnutls_protocol_set_enabled(parse_protocol(name), 1);
printf("protocol_set_enabled %s -> %s\n", name,
ret == 0 ? "OK" :
ret == GNUTLS_E_INVALID_REQUEST ? "INVALID_REQUEST" :
gnutls_strerror(ret));
}
void cmd_reinit(void)
{
int ret;
gnutls_global_deinit();
ret = gnutls_global_init();
printf("reinit -> %s\n", ret == 0 ? "OK" : gnutls_strerror(ret));
}
// Returns 0 if `s` doesn't start with `prefix`, pointer past prefix otherwise.
const char *unprefix(const char *s, const char *prefix)
{
while (*s && *prefix && *s == *prefix)
s++, prefix++;
return *prefix ? NULL : s;
}
#define MAX_CMD_LEN 127
void doit(void)
{
unsigned port;
const char *port_str;
const char *ca_file;
const char *p;
char cmd_buf[MAX_CMD_LEN + 1];
char *e;
ca_file = getenv("TEST_SERVER_CA");
_assert(ca_file, "TEST_SERVER_CA is not set");
port_str = getenv("TEST_SERVER_PORT");
_assert(port_str, "TEST_SERVER_PORT is not set");
port = parse_port(port_str);
while (!feof(stdin)) {
memset(cmd_buf, '\0', MAX_CMD_LEN + 1);
fgets(cmd_buf, MAX_CMD_LEN, stdin);
e = strchr(cmd_buf, '\n');
if (e)
*e = '\0';
if (!*cmd_buf)
continue;
else if (!strcmp(cmd_buf, "> connect"))
cmd_connect(ca_file, port);
else if ((p = unprefix(cmd_buf, "> protocol_set_disabled ")))
cmd_protocol_set_disabled(p);
else if ((p = unprefix(cmd_buf, "> protocol_set_enabled ")))
cmd_protocol_set_enabled(p);
else if (!strcmp(cmd_buf, "> reinit"))
cmd_reinit();
else if ((p = unprefix(cmd_buf, "> ")))
_fail("Unknown command `%s`\n", p);
else
_fail("Invalid line `%s`, does not start with `> `\n",
cmd_buf);
}
exit(0);
}
|