Blame tests/init_fds.c

Packit aea12f
/*
Packit aea12f
 * Copyright (C) 2014 Nikos Mavrogiannopoulos
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 <unistd.h>
Packit aea12f
#include <gnutls/gnutls.h>
Packit aea12f
#include <gnutls/crypto.h>
Packit aea12f
Packit aea12f
#include "utils.h"
Packit aea12f
Packit aea12f
/* See <https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=760476>. */
Packit aea12f
Packit aea12f
void doit(void)
Packit aea12f
{
Packit aea12f
#ifndef _WIN32
Packit aea12f
	int res;
Packit aea12f
	unsigned i;
Packit aea12f
	int serial = 0;
Packit aea12f
	char buf[128];
Packit aea12f
Packit aea12f
	res = read(3, buf, 16);
Packit aea12f
	if (res == 16)
Packit aea12f
		serial = 1;
Packit aea12f
Packit aea12f
	/* close all descriptors */
Packit aea12f
	for (i=3;i<1024;i++)
Packit aea12f
		close(i);
Packit aea12f
Packit aea12f
	res = gnutls_global_init();
Packit aea12f
	if (res != 0)
Packit aea12f
		fail("global_init\n");
Packit aea12f
Packit aea12f
	if (serial != 0) {
Packit aea12f
		res = read(3, buf, 16);
Packit aea12f
		if (res != 16) {
Packit aea12f
			fail("could not open fd, or OS doesn't assign fds in a serial way (%d)\n", res);
Packit aea12f
		}
Packit aea12f
	}
Packit aea12f
Packit aea12f
	res = gnutls_global_init();
Packit aea12f
	if (res != 0)
Packit aea12f
		fail("global_init2\n");
Packit aea12f
Packit aea12f
	gnutls_rnd_refresh();
Packit aea12f
Packit aea12f
	res = gnutls_rnd(GNUTLS_RND_RANDOM, buf, sizeof(buf));
Packit aea12f
	if (res != 0)
Packit aea12f
		fail("gnutls_rnd\n");
Packit aea12f
Packit aea12f
	gnutls_global_deinit();
Packit aea12f
Packit aea12f
	if (debug)
Packit aea12f
		success("init-close success\n");
Packit aea12f
#else
Packit aea12f
	return;
Packit aea12f
#endif
Packit aea12f
}