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
|
/*
* Copyright (C) 2017 Red Hat
*
* Author: Nikos Mavrogiannopoulos
*
* 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/>.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <gnutls/gnutls.h>
#include <gnutls/dane.h>
#include "utils.h"
unsigned _gnutls_ecc_curve_is_supported(gnutls_ecc_curve_t);
/* Check whether the string functions will return a non-repeated and
* non null value.
*/
static void _check_non_null(int line, int i, const char *val)
{
if (val == NULL)
fail("issue in line %d, item %d\n", line, i);
}
static void _check_unique_non_null(int line, int i, const char *val)
{
static char previous_val[128];
if (val == NULL)
fail("issue in line %d, item %d\n", line, i);
if (strcmp(val, previous_val) == 0) {
fail("issue in line %d, item %d: %s\n", line, i, val);
}
snprintf(previous_val, sizeof(previous_val), "%s", val);
}
static void _check_unique(int line, int i, const char *val)
{
static char previous_val[128];
if (val == NULL) {
previous_val[0] = 0;
return;
}
if (strcmp(val, previous_val) == 0)
fail("issue in line %d, item %d: %s\n", line, i, val);
snprintf(previous_val, sizeof(previous_val), "%s", val);
}
#define check_unique(x) _check_unique(__LINE__, i, x)
#define check_unique_non_null(x) _check_unique_non_null(__LINE__, i, x)
#define check_non_null(x) _check_non_null(__LINE__, i, x)
void doit(void)
{
int ret;
int i;
ret = global_init();
if (ret < 0) {
fail("global_init\n");
exit(1);
}
for (i = GNUTLS_E_UNIMPLEMENTED_FEATURE; i <= 0; i++) {
check_unique(gnutls_strerror(i));
check_unique(gnutls_strerror_name(i));
}
for (i = 0; i < GNUTLS_HANDSHAKE_CHANGE_CIPHER_SPEC; i++)
check_non_null(gnutls_handshake_description_get_name(i));
for (i = GNUTLS_PK_UNKNOWN + 1; i <= GNUTLS_PK_MAX; i++) {
check_unique_non_null(gnutls_pk_algorithm_get_name(i));
}
for (i = GNUTLS_SIGN_UNKNOWN + 1; i <= GNUTLS_SIGN_MAX; i++) {
if (i == 19)
continue;
#ifndef ENABLE_DSA
if (i == GNUTLS_SIGN_DSA_SHA1 || i == GNUTLS_SIGN_DSA_SHA224 ||
i == GNUTLS_SIGN_DSA_SHA256 ||
i == GNUTLS_SIGN_DSA_SHA384 ||
i == GNUTLS_SIGN_DSA_SHA512 ||
i == GNUTLS_SIGN_DSA_SHA3_224 ||
i == GNUTLS_SIGN_DSA_SHA3_256 ||
i == GNUTLS_SIGN_DSA_SHA3_384 ||
i == GNUTLS_SIGN_DSA_SHA3_512)
continue;
#endif
check_unique_non_null(gnutls_sign_algorithm_get_name(i));
}
for (i = GNUTLS_A_CLOSE_NOTIFY; i <= GNUTLS_A_MAX; i++) {
check_unique(gnutls_alert_get_strname(i));
}
for (i = GNUTLS_SEC_PARAM_INSECURE; i <= GNUTLS_SEC_PARAM_MAX; i++) {
check_non_null(gnutls_sec_param_get_name(i));
}
check_non_null(gnutls_certificate_verification_profile_get_name(
GNUTLS_PROFILE_VERY_WEAK));
check_non_null(gnutls_certificate_verification_profile_get_name(
GNUTLS_PROFILE_LOW));
check_non_null(gnutls_certificate_verification_profile_get_name(
GNUTLS_PROFILE_LEGACY));
check_non_null(gnutls_certificate_verification_profile_get_name(
GNUTLS_PROFILE_MEDIUM));
check_non_null(gnutls_certificate_verification_profile_get_name(
GNUTLS_PROFILE_HIGH));
check_non_null(gnutls_certificate_verification_profile_get_name(
GNUTLS_PROFILE_ULTRA));
for (i = GNUTLS_ECC_CURVE_INVALID + 1; i <= GNUTLS_ECC_CURVE_MAX; i++) {
if (_gnutls_ecc_curve_is_supported(i) == 0)
continue;
check_unique_non_null(gnutls_ecc_curve_get_name(i));
if (i == GNUTLS_ECC_CURVE_X25519)
continue; /* no oid yet */
if (i == GNUTLS_ECC_CURVE_X448)
continue; /* no oid yet */
check_unique_non_null(gnutls_ecc_curve_get_oid(i));
}
gnutls_global_deinit();
}
|