Blame tests/rng-no-onload.c

Packit aea12f
/*
Packit aea12f
 * Copyright (C) 2016 Red Hat, Inc.
Packit aea12f
 *
Packit aea12f
 * Author: Nikos Mavrogiannopoulos
Packit aea12f
 *
Packit aea12f
 * This file is part of GnuTLS.
Packit aea12f
 *
Packit aea12f
 * GnuTLS is free software; you can redistribute it and/or modify it
Packit aea12f
 * under the terms of the GNU General Public License as published by
Packit aea12f
 * the Free Software Foundation; either version 3 of the License, or
Packit aea12f
 * (at your option) any later version.
Packit aea12f
 *
Packit aea12f
 * GnuTLS is distributed in the hope that it will be useful, but
Packit aea12f
 * WITHOUT ANY WARRANTY; without even the implied warranty of
Packit aea12f
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit aea12f
 * General Public License for more details.
Packit aea12f
 *
Packit aea12f
 * You should have received a copy of the GNU General Public License
Packit aea12f
 * along with GnuTLS; if not, write to the Free Software Foundation,
Packit aea12f
 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
Packit aea12f
 */
Packit aea12f
Packit aea12f
#ifdef HAVE_CONFIG_H
Packit aea12f
#include <config.h>
Packit aea12f
#endif
Packit aea12f
Packit aea12f
#include <stdio.h>
Packit aea12f
#include <stdlib.h>
Packit aea12f
#include <stdint.h>
Packit aea12f
#include <string.h>
Packit aea12f
#include <gnutls/gnutls.h>
Packit aea12f
#include <gnutls/crypto.h>
Packit aea12f
#include "utils.h"
Packit aea12f
Packit aea12f
#if !defined(__linux__) || !defined(__GNUC__)
Packit aea12f
Packit aea12f
void doit(void)
Packit aea12f
{
Packit aea12f
	exit(77);
Packit aea12f
}
Packit aea12f
Packit aea12f
#else
Packit aea12f
Packit aea12f
static int _rnd_called = 0;
Packit aea12f
Packit aea12f
/* Tests whether gnutls_rnd() is called during gnutls library initialization.
Packit aea12f
 * Normally it shouldn't be called to prevent any blocking due to getrandom()
Packit aea12f
 * calls.
Packit aea12f
 */
Packit aea12f
int __attribute__ ((visibility ("protected")))
Packit aea12f
gnutls_rnd(gnutls_rnd_level_t level, void *data, size_t len)
Packit aea12f
{
Packit aea12f
	_rnd_called = 1;
Packit aea12f
Packit Service 2066cf
	memset(data, 0xff, len);
Packit aea12f
	return 0;
Packit aea12f
}
Packit aea12f
Packit aea12f
void doit(void)
Packit aea12f
{
Packit Service 2066cf
	if (gnutls_fips140_mode_enabled()) {
Packit Service 2066cf
		exit(77);
Packit Service 2066cf
	}
Packit Service 2066cf
Packit aea12f
	global_init();
Packit aea12f
Packit aea12f
	if (_rnd_called != 0)
Packit aea12f
		fail("gnutls_rnd was called during gnutls_global_init()!\n");
Packit aea12f
Packit aea12f
	gnutls_global_deinit();
Packit aea12f
}
Packit aea12f
#endif				/* _WIN32 */