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
|
/*
* Algorithm lookup, for libreswan
*
* Copyright (C) 2017-2019 Andrew Cagney <cagney@gnu.org>
*
* This program 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. See <https://www.gnu.org/licenses/gpl2.txt>.
*
* This program 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.
*/
#include <stdlib.h>
#include "lswlog.h"
#include "proposals.h"
#include "alg_byname.h"
#include "ike_alg.h"
#include "impair.h"
bool alg_byname_ok(struct proposal_parser *parser,
const struct ike_alg *alg, shunk_t print_name)
{
const struct proposal_protocol *protocol = parser->protocol;
const struct proposal_policy *policy = parser->policy;
if (alg->id[protocol->alg_id] < 0) {
enum_buf vb;
proposal_error(parser, "%s %s algorithm '"PRI_SHUNK"' is not supported by %s",
protocol->name, ike_alg_type_name(alg->algo_type),
pri_shunk(print_name),
str_enum(&ike_version_names, policy->version, &vb));
return false;
}
/*
* According to parser policy, is the algorithm "implemented"?
*
* For IKE, this checks things like an in-process
* implementation being present. For ESP/AH this checks that
* it is is implemented in the kernel (well except for DH
* which is still requires an in-process implementation).
*/
passert(policy->alg_is_ok != NULL);
if (!policy->alg_is_ok(alg)) {
proposal_error(parser, "%s %s algorithm '"PRI_SHUNK"' is not supported",
protocol->name, ike_alg_type_name(alg->algo_type),
pri_shunk(print_name));
return false;
}
/*
* Check that the algorithm is valid.
*
* FIPS, for instance, will invalidate some algorithms during
* startup.
*
* Since it likely involves a lookup, it is left until last.
*/
if (!ike_alg_is_valid(alg)) {
proposal_error(parser, "%s %s algorithm '"PRI_SHUNK"' is not valid",
protocol->name, ike_alg_type_name(alg->algo_type),
pri_shunk(print_name));
return false;
}
return true;
}
const struct ike_alg *alg_byname(struct proposal_parser *parser,
const struct ike_alg_type *type,
shunk_t name, shunk_t print_name)
{
struct logger *logger = parser->policy->logger;
passert(parser->diag == NULL);
const struct proposal_protocol *protocol = parser->protocol;
const struct ike_alg *alg = ike_alg_byname(type, name);
if (alg == NULL) {
/*
* Known at all? Poke around in the enum tables to
* see if it turns up.
*/
if (ike_alg_enum_matched(type, name)) {
proposal_error(parser, "%s %s algorithm '"PRI_SHUNK"' is not supported",
protocol->name, ike_alg_type_name(type),
pri_shunk(print_name));
} else {
proposal_error(parser, "%s %s algorithm '"PRI_SHUNK"' is not recognized",
protocol->name, ike_alg_type_name(type),
pri_shunk(print_name));
}
passert(parser->diag != NULL);
ldbgf(DBG_PROPOSAL_PARSER, logger,
"ike_alg_byname() failed: %s",
str_diag(parser->diag));
return NULL;
}
/*
* Does it pass muster?
*/
if (!alg_byname_ok(parser, alg, print_name)) {
passert(parser->diag != NULL);
ldbgf(DBG_PROPOSAL_PARSER, logger,
"alg_byname_ok() failed: %s",
str_diag(parser->diag));
return NULL;
}
return alg;
}
const struct ike_alg *encrypt_alg_byname(struct proposal_parser *parser,
shunk_t name, size_t key_bit_length,
shunk_t print_name)
{
const struct ike_alg *alg = alg_byname(parser, IKE_ALG_ENCRYPT, name,
print_name);
if (alg == NULL) {
return NULL;
}
const struct encrypt_desc *encrypt = encrypt_desc(alg);
if (!impair.send_key_size_check && key_bit_length > 0) {
if (encrypt->keylen_omitted) {
proposal_error(parser, "%s encryption algorithm %s does not allow a key lengths",
parser->protocol->name,
encrypt->common.fqn);
if (!impair_proposal_errors(parser)) {
return NULL;
}
}
if (!encrypt_has_key_bit_length(encrypt, key_bit_length)) {
JAMBUF(buf) {
jam(buf, "%s encryption algorithm %s with key length %zu invalid; valid key lengths:",
parser->protocol->name,
encrypt->common.fqn,
key_bit_length);
/* reverse: table in descending order with trailing zeros */
const char *sep = " ";
for (int i = elemsof(encrypt->key_bit_lengths) - 1; i >= 0; i--) {
if (encrypt->key_bit_lengths[i] > 0) {
jam(buf, "%s%d", sep, encrypt->key_bit_lengths[i]);
sep = ", ";
}
}
proposal_error(parser, PRI_SHUNK, pri_shunk(jambuf_as_shunk(buf)));
}
if (!impair_proposal_errors(parser)) {
return NULL;
}
}
}
return alg;
}
|