2019-05-17 18:04:57 +02:00
|
|
|
/*
|
|
|
|
* This file is part of the SSH Library
|
|
|
|
*
|
|
|
|
* Copyright (c) 2019 by Red Hat, Inc.
|
|
|
|
*
|
|
|
|
* Author: Anderson Toshiyuki Sasaki <ansasaki@redhat.com>
|
|
|
|
*
|
|
|
|
* The SSH Library is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2.1 of the License, or (at your
|
|
|
|
* option) any later version.
|
|
|
|
*
|
|
|
|
* The SSH Library 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 Lesser General Public
|
|
|
|
* License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* along with the SSH Library; see the file COPYING. If not, write to
|
|
|
|
* the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
|
|
|
|
* MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#define LIBSSH_STATIC
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <pwd.h>
|
|
|
|
|
|
|
|
#include "torture.h"
|
|
|
|
#include "torture_key.h"
|
|
|
|
#include "libssh/libssh.h"
|
|
|
|
#include "libssh/priv.h"
|
|
|
|
#include "libssh/session.h"
|
|
|
|
#include "libssh/token.h"
|
|
|
|
|
|
|
|
#include "test_server.h"
|
|
|
|
#include "default_cb.h"
|
|
|
|
|
|
|
|
const char template[] = "temp_dir_XXXXXX";
|
|
|
|
|
|
|
|
struct test_server_st {
|
|
|
|
struct torture_state *state;
|
|
|
|
char *cwd;
|
|
|
|
char *temp_dir;
|
|
|
|
char ed25519_hostkey[1024];
|
|
|
|
char rsa_hostkey[1024];
|
|
|
|
char ecdsa_521_hostkey[1024];
|
|
|
|
char ecdsa_384_hostkey[1024];
|
|
|
|
char ecdsa_256_hostkey[1024];
|
|
|
|
#ifdef HAVE_DSA
|
|
|
|
char dsa_hostkey[1024];
|
|
|
|
#endif /* HAVE_DSA */
|
|
|
|
};
|
|
|
|
|
|
|
|
static int setup_files(void **state)
|
|
|
|
{
|
|
|
|
struct test_server_st *tss;
|
|
|
|
struct torture_state *s;
|
|
|
|
char sshd_path[1024];
|
|
|
|
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
tss = (struct test_server_st*)calloc(1, sizeof(struct test_server_st));
|
|
|
|
assert_non_null(tss);
|
|
|
|
|
|
|
|
torture_setup_socket_dir((void **)&s);
|
|
|
|
assert_non_null(s->socket_dir);
|
|
|
|
|
|
|
|
/* Set the default interface for the server */
|
|
|
|
setenv("SOCKET_WRAPPER_DEFAULT_IFACE", "10", 1);
|
|
|
|
setenv("PAM_WRAPPER", "1", 1);
|
|
|
|
|
|
|
|
snprintf(sshd_path,
|
|
|
|
sizeof(sshd_path),
|
|
|
|
"%s/sshd",
|
|
|
|
s->socket_dir);
|
|
|
|
|
|
|
|
rc = mkdir(sshd_path, 0755);
|
|
|
|
assert_return_code(rc, errno);
|
|
|
|
|
|
|
|
snprintf(tss->rsa_hostkey,
|
|
|
|
sizeof(tss->rsa_hostkey),
|
|
|
|
"%s/sshd/ssh_host_rsa_key",
|
|
|
|
s->socket_dir);
|
|
|
|
torture_write_file(tss->rsa_hostkey, torture_get_testkey(SSH_KEYTYPE_RSA, 0));
|
|
|
|
|
|
|
|
snprintf(tss->ecdsa_521_hostkey,
|
|
|
|
sizeof(tss->ecdsa_521_hostkey),
|
|
|
|
"%s/sshd/ssh_host_ecdsa_521_key",
|
|
|
|
s->socket_dir);
|
|
|
|
torture_write_file(tss->ecdsa_521_hostkey,
|
|
|
|
torture_get_testkey(SSH_KEYTYPE_ECDSA_P521, 0));
|
|
|
|
|
|
|
|
snprintf(tss->ecdsa_384_hostkey,
|
|
|
|
sizeof(tss->ecdsa_384_hostkey),
|
|
|
|
"%s/sshd/ssh_host_ecdsa_384_key",
|
|
|
|
s->socket_dir);
|
|
|
|
torture_write_file(tss->ecdsa_384_hostkey,
|
|
|
|
torture_get_testkey(SSH_KEYTYPE_ECDSA_P384, 0));
|
|
|
|
|
|
|
|
snprintf(tss->ecdsa_256_hostkey,
|
|
|
|
sizeof(tss->ecdsa_256_hostkey),
|
|
|
|
"%s/sshd/ssh_host_ecdsa_256_key",
|
|
|
|
s->socket_dir);
|
|
|
|
torture_write_file(tss->ecdsa_256_hostkey,
|
|
|
|
torture_get_testkey(SSH_KEYTYPE_ECDSA_P256, 0));
|
|
|
|
|
2019-06-08 12:15:38 +02:00
|
|
|
if (!ssh_fips_mode()) {
|
|
|
|
snprintf(tss->ed25519_hostkey,
|
|
|
|
sizeof(tss->ed25519_hostkey),
|
|
|
|
"%s/sshd/ssh_host_ed25519_key",
|
|
|
|
s->socket_dir);
|
|
|
|
torture_write_file(tss->ed25519_hostkey,
|
|
|
|
torture_get_openssh_testkey(SSH_KEYTYPE_ED25519, 0));
|
|
|
|
|
2019-05-17 18:04:57 +02:00
|
|
|
#ifdef HAVE_DSA
|
2019-06-08 12:15:38 +02:00
|
|
|
snprintf(tss->dsa_hostkey,
|
|
|
|
sizeof(tss->dsa_hostkey),
|
|
|
|
"%s/sshd/ssh_host_dsa_key",
|
|
|
|
s->socket_dir);
|
|
|
|
torture_write_file(tss->dsa_hostkey,
|
|
|
|
torture_get_testkey(SSH_KEYTYPE_DSS, 0));
|
2019-05-17 18:04:57 +02:00
|
|
|
#endif /* HAVE_DSA */
|
2019-06-08 12:15:38 +02:00
|
|
|
}
|
2019-05-17 18:04:57 +02:00
|
|
|
|
|
|
|
tss->state = s;
|
|
|
|
*state = tss;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int teardown_files(void **state)
|
|
|
|
{
|
|
|
|
struct torture_state *s;
|
|
|
|
struct test_server_st *tss;
|
|
|
|
|
|
|
|
tss = *state;
|
|
|
|
assert_non_null(tss);
|
|
|
|
|
|
|
|
s = tss->state;
|
|
|
|
assert_non_null(s);
|
|
|
|
|
|
|
|
torture_teardown_socket_dir((void **)&s);
|
|
|
|
SAFE_FREE(tss);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int setup_temp_dir(void **state)
|
|
|
|
{
|
|
|
|
struct test_server_st *tss = *state;
|
|
|
|
struct torture_state *s;
|
|
|
|
|
|
|
|
char *cwd = NULL;
|
|
|
|
char *tmp_dir = NULL;
|
|
|
|
|
|
|
|
assert_non_null(tss);
|
|
|
|
|
|
|
|
s = tss->state;
|
|
|
|
assert_non_null(s);
|
|
|
|
|
|
|
|
cwd = torture_get_current_working_dir();
|
|
|
|
assert_non_null(cwd);
|
|
|
|
|
|
|
|
tmp_dir = torture_make_temp_dir(template);
|
|
|
|
assert_non_null(tmp_dir);
|
|
|
|
|
|
|
|
tss->cwd = cwd;
|
|
|
|
tss->temp_dir = tmp_dir;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int teardown_temp_dir(void **state)
|
|
|
|
{
|
|
|
|
struct test_server_st *tss = *state;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
assert_non_null(tss);
|
|
|
|
|
|
|
|
rc = torture_change_dir(tss->cwd);
|
|
|
|
assert_int_equal(rc, 0);
|
|
|
|
|
|
|
|
rc = torture_rmdirs(tss->temp_dir);
|
|
|
|
assert_int_equal(rc, 0);
|
|
|
|
|
|
|
|
SAFE_FREE(tss->temp_dir);
|
|
|
|
SAFE_FREE(tss->cwd);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int start_server(void **state)
|
|
|
|
{
|
|
|
|
struct test_server_st *tss = *state;
|
|
|
|
struct torture_state *s;
|
|
|
|
|
|
|
|
assert_non_null(tss);
|
|
|
|
|
|
|
|
s = tss->state;
|
|
|
|
assert_non_null(s);
|
|
|
|
|
|
|
|
/* Start the server using the default values */
|
2019-08-19 14:20:55 +02:00
|
|
|
torture_setup_libssh_server((void **)&s, "./test_server/test_server");
|
|
|
|
assert_non_null(s);
|
2019-05-17 18:04:57 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int stop_server(void **state)
|
|
|
|
{
|
|
|
|
struct torture_state *s;
|
|
|
|
struct test_server_st *tss;
|
|
|
|
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
tss = *state;
|
|
|
|
assert_non_null(tss);
|
|
|
|
|
|
|
|
s = tss->state;
|
|
|
|
assert_non_null(s);
|
|
|
|
|
|
|
|
rc = torture_terminate_process(s->srv_pidfile);
|
2020-01-30 18:57:09 +01:00
|
|
|
assert_return_code(rc, errno);
|
2019-05-17 18:04:57 +02:00
|
|
|
|
|
|
|
unlink(s->srv_pidfile);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int session_setup(void **state)
|
|
|
|
{
|
|
|
|
struct test_server_st *tss = *state;
|
|
|
|
struct torture_state *s;
|
|
|
|
int verbosity = torture_libssh_verbosity();
|
2020-04-14 14:41:50 +02:00
|
|
|
const char *compat_hostkeys = ssh_kex_get_supported_method(SSH_HOSTKEYS);
|
2019-05-17 18:04:57 +02:00
|
|
|
struct passwd *pwd;
|
|
|
|
bool b = false;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
assert_non_null(tss);
|
|
|
|
|
|
|
|
/* Make sure we do not test the agent */
|
|
|
|
unsetenv("SSH_AUTH_SOCK");
|
|
|
|
|
|
|
|
s = tss->state;
|
|
|
|
assert_non_null(s);
|
|
|
|
|
|
|
|
pwd = getpwnam("bob");
|
|
|
|
assert_non_null(pwd);
|
|
|
|
|
|
|
|
rc = setuid(pwd->pw_uid);
|
|
|
|
assert_return_code(rc, errno);
|
|
|
|
|
|
|
|
s->ssh.session = ssh_new();
|
|
|
|
assert_non_null(s->ssh.session);
|
|
|
|
|
|
|
|
rc = ssh_options_set(s->ssh.session, SSH_OPTIONS_LOG_VERBOSITY, &verbosity);
|
2020-01-23 09:11:22 +01:00
|
|
|
assert_ssh_return_code(s->ssh.session, rc);
|
2019-05-17 18:04:57 +02:00
|
|
|
rc = ssh_options_set(s->ssh.session, SSH_OPTIONS_HOST, TORTURE_SSH_SERVER);
|
2020-01-23 09:11:22 +01:00
|
|
|
assert_ssh_return_code(s->ssh.session, rc);
|
2019-05-17 18:04:57 +02:00
|
|
|
/* Make sure no other configuration options from system will get used */
|
|
|
|
rc = ssh_options_set(s->ssh.session, SSH_OPTIONS_PROCESS_CONFIG, &b);
|
|
|
|
assert_ssh_return_code(s->ssh.session, rc);
|
2020-04-14 14:41:50 +02:00
|
|
|
rc = ssh_options_set(s->ssh.session, SSH_OPTIONS_HOSTKEYS, compat_hostkeys);
|
|
|
|
assert_ssh_return_code(s->ssh.session, rc);
|
2019-05-17 18:04:57 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int session_teardown(void **state)
|
|
|
|
{
|
|
|
|
struct test_server_st *tss = *state;
|
|
|
|
struct torture_state *s;
|
|
|
|
|
|
|
|
assert_non_null(tss);
|
|
|
|
|
|
|
|
s = tss->state;
|
|
|
|
assert_non_null(s);
|
|
|
|
|
|
|
|
ssh_disconnect(s->ssh.session);
|
|
|
|
ssh_free(s->ssh.session);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int try_config_content(void **state, const char *config_content,
|
|
|
|
bool parse_global)
|
|
|
|
{
|
|
|
|
struct test_server_st *tss = *state;
|
|
|
|
struct torture_state *s;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
ssh_session session;
|
|
|
|
|
|
|
|
assert_non_null(tss);
|
|
|
|
|
|
|
|
s = tss->state;
|
|
|
|
assert_non_null(s);
|
|
|
|
|
2019-08-19 14:20:55 +02:00
|
|
|
assert_non_null(s->srv_config);
|
2019-05-17 18:04:57 +02:00
|
|
|
|
|
|
|
if (parse_global) {
|
2019-05-29 20:04:24 +02:00
|
|
|
fprintf(stderr, "Using system-wide configuration\n");
|
2019-08-19 14:20:55 +02:00
|
|
|
} else {
|
|
|
|
/* The string is duplicated to not break the cleanup on error */
|
|
|
|
s->srv_additional_config = strdup("-g");
|
2019-05-17 18:04:57 +02:00
|
|
|
}
|
|
|
|
|
2019-08-19 14:20:55 +02:00
|
|
|
torture_write_file(s->srv_config, config_content);
|
2019-05-17 18:04:57 +02:00
|
|
|
|
2019-08-19 14:20:55 +02:00
|
|
|
fprintf(stderr, "Config file %s content: \n\n%s\n", s->srv_config,
|
|
|
|
config_content);
|
2019-05-17 18:04:57 +02:00
|
|
|
|
|
|
|
rc = start_server(state);
|
|
|
|
assert_int_equal(rc, 0);
|
|
|
|
|
|
|
|
rc = session_setup(state);
|
|
|
|
assert_int_equal(rc, 0);
|
|
|
|
|
|
|
|
session = s->ssh.session;
|
|
|
|
assert_non_null(session);
|
|
|
|
|
|
|
|
/* Authenticate as alice with bob */
|
|
|
|
rc = ssh_options_set(session, SSH_OPTIONS_USER, TORTURE_SSH_USER_ALICE);
|
2019-05-29 20:06:39 +02:00
|
|
|
assert_ssh_return_code(session, rc);
|
2019-05-17 18:04:57 +02:00
|
|
|
|
|
|
|
rc = ssh_connect(session);
|
2019-05-29 20:06:39 +02:00
|
|
|
assert_ssh_return_code(session, rc);
|
2019-05-17 18:04:57 +02:00
|
|
|
|
|
|
|
rc = ssh_userauth_none(session,NULL);
|
|
|
|
/* This request should return a SSH_REQUEST_DENIED error */
|
|
|
|
if (rc == SSH_ERROR) {
|
|
|
|
assert_int_equal(ssh_get_error_code(session), SSH_REQUEST_DENIED);
|
|
|
|
}
|
|
|
|
rc = ssh_userauth_list(session, NULL);
|
|
|
|
assert_true(rc & SSH_AUTH_METHOD_PUBLICKEY);
|
|
|
|
|
|
|
|
rc = ssh_userauth_publickey_auto(session, NULL, NULL);
|
|
|
|
assert_int_equal(rc, SSH_AUTH_SUCCESS);
|
|
|
|
|
|
|
|
rc = session_teardown(state);
|
|
|
|
assert_int_equal(rc, 0);
|
|
|
|
|
|
|
|
rc = stop_server(state);
|
|
|
|
assert_int_equal(rc, 0);
|
|
|
|
|
2019-08-19 14:20:55 +02:00
|
|
|
SAFE_FREE(s->srv_additional_config);
|
2019-05-17 18:04:57 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-05-29 20:08:34 +02:00
|
|
|
static char *hostkey_files[6] = {0};
|
2019-05-17 18:04:57 +02:00
|
|
|
|
2019-05-29 20:08:34 +02:00
|
|
|
static size_t setup_hostkey_files(struct test_server_st *tss)
|
|
|
|
{
|
2019-06-08 12:15:38 +02:00
|
|
|
size_t num_hostkey_files = 1;
|
|
|
|
|
|
|
|
hostkey_files[0] = tss->rsa_hostkey;
|
2019-05-17 18:04:57 +02:00
|
|
|
|
2019-07-08 16:59:44 +02:00
|
|
|
#ifdef TEST_ALL_CRYPTO_COMBINATIONS
|
2019-06-08 12:15:38 +02:00
|
|
|
hostkey_files[1] = tss->ecdsa_256_hostkey;
|
|
|
|
hostkey_files[2] = tss->ecdsa_384_hostkey;
|
|
|
|
hostkey_files[3] = tss->ecdsa_521_hostkey;
|
|
|
|
|
|
|
|
num_hostkey_files = 4;
|
|
|
|
|
|
|
|
if (!ssh_fips_mode()) {
|
|
|
|
hostkey_files[4] = tss->ed25519_hostkey;
|
|
|
|
num_hostkey_files++;
|
2019-05-17 18:04:57 +02:00
|
|
|
#ifdef HAVE_DSA
|
2019-06-08 12:15:38 +02:00
|
|
|
hostkey_files[5] = tss->dsa_hostkey;
|
|
|
|
num_hostkey_files++;
|
2019-05-17 18:04:57 +02:00
|
|
|
#endif
|
2019-06-08 12:15:38 +02:00
|
|
|
}
|
2019-07-08 16:59:44 +02:00
|
|
|
#endif /* TEST_ALL_CRYPTO_COMBINATIONS */
|
2019-05-17 18:04:57 +02:00
|
|
|
|
2019-05-29 20:08:34 +02:00
|
|
|
return num_hostkey_files;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void torture_server_config_hostkey(void **state)
|
|
|
|
{
|
|
|
|
struct test_server_st *tss = *state;
|
|
|
|
size_t i, num_hostkey_files;
|
|
|
|
char config_content[4096];
|
|
|
|
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
assert_non_null(tss);
|
|
|
|
|
|
|
|
num_hostkey_files = setup_hostkey_files(tss);
|
|
|
|
|
2019-05-17 18:04:57 +02:00
|
|
|
for (i = 0; i < num_hostkey_files; i++) {
|
|
|
|
snprintf(config_content,
|
|
|
|
sizeof(config_content),
|
|
|
|
"HostKey %s\n",
|
|
|
|
hostkey_files[i]);
|
|
|
|
|
|
|
|
rc = try_config_content(state, config_content, false);
|
|
|
|
assert_int_equal(rc, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void torture_server_config_ciphers(void **state)
|
|
|
|
{
|
|
|
|
struct test_server_st *tss = *state;
|
|
|
|
size_t i, j, num_hostkey_files = 1;
|
|
|
|
char config_content[4096];
|
|
|
|
|
|
|
|
const char *ciphers;
|
|
|
|
|
|
|
|
struct ssh_tokens_st *tokens;
|
|
|
|
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
assert_non_null(tss);
|
|
|
|
|
2019-05-29 20:08:34 +02:00
|
|
|
num_hostkey_files = setup_hostkey_files(tss);
|
2019-05-17 18:04:57 +02:00
|
|
|
|
2019-06-08 12:15:38 +02:00
|
|
|
if (ssh_fips_mode()) {
|
|
|
|
ciphers = ssh_kex_get_fips_methods(SSH_CRYPT_S_C);
|
|
|
|
assert_non_null(ciphers);
|
|
|
|
} else {
|
|
|
|
ciphers = ssh_kex_get_default_methods(SSH_CRYPT_S_C);
|
|
|
|
assert_non_null(ciphers);
|
|
|
|
}
|
2019-05-17 18:04:57 +02:00
|
|
|
|
|
|
|
tokens = ssh_tokenize(ciphers, ',');
|
|
|
|
assert_non_null(tokens);
|
|
|
|
|
|
|
|
for (i = 0; i < num_hostkey_files; i++) {
|
|
|
|
/* Try setting all default algorithms */
|
|
|
|
snprintf(config_content,
|
|
|
|
sizeof(config_content),
|
|
|
|
"HostKey %s\nCiphers %s\n",
|
|
|
|
hostkey_files[i], ciphers);
|
|
|
|
|
|
|
|
rc = try_config_content(state, config_content, false);
|
|
|
|
assert_int_equal(rc, 0);
|
|
|
|
|
|
|
|
/* Try each algorithm individually */
|
|
|
|
j = 0;
|
|
|
|
while(tokens->tokens[j] != NULL) {
|
|
|
|
snprintf(config_content,
|
|
|
|
sizeof(config_content),
|
|
|
|
"HostKey %s\nCiphers %s\n",
|
|
|
|
hostkey_files[i], tokens->tokens[j]);
|
|
|
|
|
|
|
|
rc = try_config_content(state, config_content, false);
|
|
|
|
assert_int_equal(rc, 0);
|
|
|
|
|
|
|
|
j++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ssh_tokens_free(tokens);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void torture_server_config_macs(void **state)
|
|
|
|
{
|
|
|
|
struct test_server_st *tss = *state;
|
|
|
|
size_t i, j, num_hostkey_files = 1;
|
|
|
|
char config_content[4096];
|
|
|
|
|
|
|
|
const char *macs;
|
|
|
|
|
|
|
|
struct ssh_tokens_st *tokens;
|
|
|
|
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
assert_non_null(tss);
|
|
|
|
|
2019-05-29 20:08:34 +02:00
|
|
|
num_hostkey_files = setup_hostkey_files(tss);
|
2019-05-17 18:04:57 +02:00
|
|
|
|
2019-06-08 12:15:38 +02:00
|
|
|
if (ssh_fips_mode()) {
|
|
|
|
macs = ssh_kex_get_fips_methods(SSH_MAC_S_C);
|
|
|
|
assert_non_null(macs);
|
|
|
|
} else {
|
|
|
|
macs = ssh_kex_get_default_methods(SSH_MAC_S_C);
|
|
|
|
assert_non_null(macs);
|
|
|
|
}
|
2019-05-17 18:04:57 +02:00
|
|
|
|
|
|
|
tokens = ssh_tokenize(macs, ',');
|
|
|
|
assert_non_null(tokens);
|
|
|
|
|
|
|
|
for (i = 0; i < num_hostkey_files; i++) {
|
|
|
|
/* Try setting all default algorithms */
|
|
|
|
snprintf(config_content,
|
|
|
|
sizeof(config_content),
|
|
|
|
"HostKey %s\nMACs %s\n",
|
|
|
|
hostkey_files[i], macs);
|
|
|
|
|
|
|
|
rc = try_config_content(state, config_content, false);
|
|
|
|
assert_int_equal(rc, 0);
|
|
|
|
|
|
|
|
/* Try each algorithm individually */
|
|
|
|
j = 0;
|
|
|
|
while(tokens->tokens[j] != NULL) {
|
|
|
|
snprintf(config_content,
|
|
|
|
sizeof(config_content),
|
|
|
|
"HostKey %s\nMACs %s\n",
|
|
|
|
hostkey_files[i], tokens->tokens[j]);
|
|
|
|
|
|
|
|
rc = try_config_content(state, config_content, false);
|
|
|
|
assert_int_equal(rc, 0);
|
|
|
|
|
|
|
|
j++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ssh_tokens_free(tokens);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void torture_server_config_kex(void **state)
|
|
|
|
{
|
|
|
|
struct test_server_st *tss = *state;
|
|
|
|
size_t i, j, num_hostkey_files = 1;
|
|
|
|
char config_content[4096];
|
|
|
|
|
|
|
|
const char *kex;
|
|
|
|
|
|
|
|
struct ssh_tokens_st *tokens;
|
|
|
|
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
assert_non_null(tss);
|
|
|
|
|
2019-05-29 20:08:34 +02:00
|
|
|
num_hostkey_files = setup_hostkey_files(tss);
|
2019-05-17 18:04:57 +02:00
|
|
|
|
2019-06-08 12:15:38 +02:00
|
|
|
if (ssh_fips_mode()) {
|
|
|
|
kex = ssh_kex_get_fips_methods(SSH_KEX);
|
|
|
|
assert_non_null(kex);
|
|
|
|
} else {
|
|
|
|
kex = ssh_kex_get_default_methods(SSH_KEX);
|
|
|
|
assert_non_null(kex);
|
|
|
|
}
|
2019-05-17 18:04:57 +02:00
|
|
|
|
|
|
|
tokens = ssh_tokenize(kex, ',');
|
|
|
|
assert_non_null(tokens);
|
|
|
|
|
|
|
|
for (i = 0; i < num_hostkey_files; i++) {
|
|
|
|
/* Try setting all default algorithms */
|
|
|
|
snprintf(config_content,
|
|
|
|
sizeof(config_content),
|
|
|
|
"HostKey %s\nKexAlgorithms %s\n",
|
|
|
|
hostkey_files[i], kex);
|
|
|
|
|
|
|
|
rc = try_config_content(state, config_content, false);
|
|
|
|
assert_int_equal(rc, 0);
|
|
|
|
|
|
|
|
/* Try each algorithm individually */
|
|
|
|
j = 0;
|
|
|
|
while(tokens->tokens[j] != NULL) {
|
|
|
|
snprintf(config_content,
|
|
|
|
sizeof(config_content),
|
|
|
|
"HostKey %s\nKexAlgorithms %s\n",
|
|
|
|
hostkey_files[i], tokens->tokens[j]);
|
|
|
|
|
|
|
|
rc = try_config_content(state, config_content, false);
|
|
|
|
assert_int_equal(rc, 0);
|
|
|
|
|
|
|
|
j++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ssh_tokens_free(tokens);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void torture_server_config_hostkey_algorithms(void **state)
|
|
|
|
{
|
|
|
|
struct test_server_st *tss = *state;
|
|
|
|
size_t i, num_hostkey_files = 5;
|
|
|
|
char config_content[4096];
|
|
|
|
|
|
|
|
const char *allowed;
|
|
|
|
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
assert_non_null(tss);
|
|
|
|
|
2019-05-29 20:08:34 +02:00
|
|
|
num_hostkey_files = setup_hostkey_files(tss);
|
2019-05-17 18:04:57 +02:00
|
|
|
|
2019-06-08 12:15:38 +02:00
|
|
|
if (ssh_fips_mode()) {
|
|
|
|
allowed = ssh_kex_get_fips_methods(SSH_HOSTKEYS);
|
|
|
|
assert_non_null(allowed);
|
|
|
|
} else {
|
|
|
|
allowed = ssh_kex_get_default_methods(SSH_HOSTKEYS);
|
|
|
|
assert_non_null(allowed);
|
|
|
|
}
|
2019-05-17 18:04:57 +02:00
|
|
|
|
|
|
|
for (i = 0; i < num_hostkey_files; i++) {
|
|
|
|
/* Should work with all allowed */
|
|
|
|
snprintf(config_content,
|
|
|
|
sizeof(config_content),
|
|
|
|
"HostKey %s\nHostKeyAlgorithms %s\n",
|
|
|
|
hostkey_files[i], allowed);
|
|
|
|
|
|
|
|
rc = try_config_content(state, config_content, false);
|
|
|
|
assert_int_equal(rc, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Should work with matching hostkey and allowed algorithm */
|
|
|
|
|
2019-05-29 20:08:34 +02:00
|
|
|
if (!ssh_fips_mode()) {
|
|
|
|
/* ed25519 */
|
|
|
|
snprintf(config_content,
|
|
|
|
sizeof(config_content),
|
|
|
|
"HostKey %s\nHostkeyAlgorithms %s\n",
|
|
|
|
tss->ed25519_hostkey, "ssh-ed25519");
|
2019-05-17 18:04:57 +02:00
|
|
|
|
2019-05-29 20:08:34 +02:00
|
|
|
rc = try_config_content(state, config_content, false);
|
|
|
|
assert_int_equal(rc, 0);
|
2019-05-17 18:04:57 +02:00
|
|
|
|
2019-05-29 20:08:34 +02:00
|
|
|
/* ssh-rsa */
|
|
|
|
snprintf(config_content,
|
|
|
|
sizeof(config_content),
|
|
|
|
"HostKey %s\nHostkeyAlgorithms %s\n",
|
|
|
|
tss->rsa_hostkey, "ssh-rsa");
|
2019-05-17 18:04:57 +02:00
|
|
|
|
2019-05-29 20:08:34 +02:00
|
|
|
rc = try_config_content(state, config_content, false);
|
|
|
|
assert_int_equal(rc, 0);
|
|
|
|
}
|
2019-05-17 18:04:57 +02:00
|
|
|
|
|
|
|
/* rsa-sha2-256 */
|
|
|
|
snprintf(config_content,
|
|
|
|
sizeof(config_content),
|
|
|
|
"HostKey %s\nHostkeyAlgorithms %s\n",
|
|
|
|
tss->rsa_hostkey, "rsa-sha2-256");
|
|
|
|
|
|
|
|
rc = try_config_content(state, config_content, false);
|
|
|
|
assert_int_equal(rc, 0);
|
|
|
|
|
|
|
|
/* ssh-sha2-512 */
|
|
|
|
snprintf(config_content,
|
|
|
|
sizeof(config_content),
|
|
|
|
"HostKey %s\nHostkeyAlgorithms %s\n",
|
|
|
|
tss->rsa_hostkey, "rsa-sha2-512");
|
|
|
|
|
|
|
|
rc = try_config_content(state, config_content, false);
|
|
|
|
assert_int_equal(rc, 0);
|
|
|
|
|
|
|
|
/* ecdsa-sha2-nistp256 */
|
|
|
|
snprintf(config_content,
|
|
|
|
sizeof(config_content),
|
|
|
|
"HostKey %s\nHostkeyAlgorithms %s\n",
|
|
|
|
tss->ecdsa_256_hostkey, "ecdsa-sha2-nistp256");
|
|
|
|
|
|
|
|
rc = try_config_content(state, config_content, false);
|
|
|
|
assert_int_equal(rc, 0);
|
|
|
|
|
|
|
|
/* ecdsa-sha2-nistp384 */
|
|
|
|
snprintf(config_content,
|
|
|
|
sizeof(config_content),
|
|
|
|
"HostKey %s\nHostkeyAlgorithms %s\n",
|
|
|
|
tss->ecdsa_384_hostkey, "ecdsa-sha2-nistp384");
|
|
|
|
|
|
|
|
rc = try_config_content(state, config_content, false);
|
|
|
|
assert_int_equal(rc, 0);
|
|
|
|
|
|
|
|
/* ecdsa-sha2-nistp521 */
|
|
|
|
snprintf(config_content,
|
|
|
|
sizeof(config_content),
|
|
|
|
"HostKey %s\nHostkeyAlgorithms %s\n",
|
|
|
|
tss->ecdsa_521_hostkey, "ecdsa-sha2-nistp521");
|
|
|
|
|
|
|
|
rc = try_config_content(state, config_content, false);
|
|
|
|
assert_int_equal(rc, 0);
|
|
|
|
|
|
|
|
#ifdef HAVE_DSA
|
2019-05-29 20:08:34 +02:00
|
|
|
if (!ssh_fips_mode()) {
|
|
|
|
/* ssh-dss */
|
|
|
|
snprintf(config_content,
|
|
|
|
sizeof(config_content),
|
|
|
|
"HostKey %s\nHostkeyAlgorithms %s\n",
|
|
|
|
tss->dsa_hostkey, "ssh-dss");
|
2019-05-17 18:04:57 +02:00
|
|
|
|
2019-05-29 20:08:34 +02:00
|
|
|
rc = try_config_content(state, config_content, false);
|
|
|
|
assert_int_equal(rc, 0);
|
|
|
|
}
|
2019-05-17 18:04:57 +02:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2019-06-04 13:29:09 +02:00
|
|
|
static void torture_server_config_unknown(void **state)
|
|
|
|
{
|
|
|
|
struct test_server_st *tss = *state;
|
|
|
|
char config_content[4096];
|
|
|
|
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
assert_non_null(tss);
|
|
|
|
assert_non_null(tss->rsa_hostkey);
|
|
|
|
|
|
|
|
snprintf(config_content,
|
|
|
|
sizeof(config_content),
|
|
|
|
"HostKey %s\nUnknownOption unknown-value1,unknown-value2\n",
|
|
|
|
tss->rsa_hostkey);
|
|
|
|
|
|
|
|
rc = try_config_content(state, config_content, false);
|
|
|
|
assert_int_equal(rc, 0);
|
|
|
|
}
|
|
|
|
|
2019-05-17 18:04:57 +02:00
|
|
|
int torture_run_tests(void) {
|
|
|
|
int rc;
|
|
|
|
struct CMUnitTest tests[] = {
|
|
|
|
cmocka_unit_test_setup_teardown(torture_server_config_hostkey,
|
|
|
|
setup_temp_dir, teardown_temp_dir),
|
|
|
|
cmocka_unit_test_setup_teardown(torture_server_config_ciphers,
|
|
|
|
setup_temp_dir, teardown_temp_dir),
|
|
|
|
cmocka_unit_test_setup_teardown(torture_server_config_macs,
|
|
|
|
setup_temp_dir, teardown_temp_dir),
|
|
|
|
cmocka_unit_test_setup_teardown(torture_server_config_kex,
|
|
|
|
setup_temp_dir, teardown_temp_dir),
|
|
|
|
cmocka_unit_test_setup_teardown(torture_server_config_hostkey_algorithms,
|
|
|
|
setup_temp_dir, teardown_temp_dir),
|
2019-06-04 13:29:09 +02:00
|
|
|
cmocka_unit_test_setup_teardown(torture_server_config_unknown,
|
|
|
|
setup_temp_dir, teardown_temp_dir),
|
2019-05-17 18:04:57 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
ssh_init();
|
|
|
|
|
|
|
|
torture_filter_tests(tests);
|
|
|
|
rc = cmocka_run_group_tests(tests,
|
|
|
|
setup_files,
|
|
|
|
teardown_files);
|
|
|
|
|
|
|
|
ssh_finalize();
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|