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
|
/*
* Copyright (C) 2020-2022 Red Hat, Inc.
*
* Authors: Ondrej Moris, Zoltan Fridrich
*
* This file is part of GnuTLS.
*
* The GnuTLS 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.
*
* This 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 this program. If not, see <https://www.gnu.org/licenses/>
*
*/
#include "config.h"
#include <stdio.h>
#include <stdlib.h>
#ifdef HAVE_DL_ITERATE_PHDR
#include <gnutls/gnutls.h>
#include <gnutls/crypto.h>
#include <link.h>
#include "dirname.h"
#include "errors.h"
#define FORMAT_VERSION 1
/* These only works with the platform where SONAME is part of the ABI. */
#ifndef GNUTLS_LIBRARY_SONAME
#define GNUTLS_LIBRARY_SONAME "none"
#endif
#define HMAC_SIZE 32
#define HMAC_ALGO GNUTLS_MAC_SHA256
#define HMAC_STR_SIZE (2 * HMAC_SIZE + 1)
static int get_hmac(const char *path, char *hmac, size_t hmac_size)
{
int ret;
size_t size;
uint8_t buffer[HMAC_SIZE];
gnutls_datum_t hex = { buffer, sizeof(buffer) };
gnutls_datum_t data = { NULL, 0 };
ret = gnutls_load_file(path, &data);
if (ret < 0)
return gnutls_assert_val(ret);
GNUTLS_FIPS140_SET_LAX_MODE();
ret = gnutls_hmac_fast(HMAC_ALGO, FIPS_KEY, sizeof(FIPS_KEY) - 1,
data.data, data.size, buffer);
GNUTLS_FIPS140_SET_STRICT_MODE();
gnutls_free(data.data);
if (ret < 0)
return gnutls_assert_val(ret);
size = hmac_size;
ret = gnutls_hex_encode(&hex, hmac, &size);
if (ret < 0)
return gnutls_assert_val(ret);
return 0;
}
static int print_lib(const char *path, const char *soname)
{
int ret;
char *real_path = NULL;
char hmac[HMAC_STR_SIZE];
real_path = canonicalize_file_name(path);
if (real_path == NULL) {
fprintf(stderr, "Could not get realpath from %s\n", path);
ret = GNUTLS_E_FILE_ERROR;
goto cleanup;
}
ret = get_hmac(real_path, hmac, sizeof(hmac));
if (ret < 0) {
fprintf(stderr, "Could not calculate HMAC for %s: %s\n",
last_component(real_path), gnutls_strerror(ret));
goto cleanup;
}
printf("[%s]\n", soname);
printf("path = %s\n", real_path);
printf("hmac = %s\n", hmac);
cleanup:
free(real_path);
return ret;
}
static int callback(struct dl_phdr_info *info, size_t size, void *data)
{
const char *path = info->dlpi_name;
const char *soname = last_component(path);
if (!strcmp(soname, GNUTLS_LIBRARY_SONAME))
return print_lib(data ? data : path, soname);
#ifdef NETTLE_LIBRARY_SONAME
if (!strcmp(soname, NETTLE_LIBRARY_SONAME))
return print_lib(path, soname);
#endif
#ifdef HOGWEED_LIBRARY_SONAME
if (!strcmp(soname, HOGWEED_LIBRARY_SONAME))
return print_lib(path, soname);
#endif
#ifdef GMP_LIBRARY_SONAME
if (!strcmp(soname, GMP_LIBRARY_SONAME))
return print_lib(path, soname);
#endif
return 0;
}
int main(int argc, char **argv)
{
if (argc != 1 && argc != 2) {
fprintf(stderr, "Usage: %s [gnutls_so_path]\n",
last_component(argv[0]));
return EXIT_FAILURE;
}
printf("[global]\n");
printf("format-version = %d\n", FORMAT_VERSION);
return dl_iterate_phdr(callback, argc == 2 ? argv[1] : NULL);
}
#else
int main(void)
{
fprintf(stderr, "Function dl_iterate_phdr is missing\n");
return EXIT_FAILURE;
}
#endif /* HAVE_DL_ITERATE_PHDR */
|