Blame tests/memset.c

Packit aea12f
/*
Packit aea12f
 * Copyright (C) 2017 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 Lesser General Public License
Packit aea12f
 * along with this program.  If not, see <https://www.gnu.org/licenses/>
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
Packit aea12f
#include <string.h>
Packit aea12f
#include <stdint.h>
Packit aea12f
#include <gnutls/gnutls.h>
Packit aea12f
Packit aea12f
#include "utils.h"
Packit aea12f
Packit aea12f
#define BUF_SIZE 128
Packit aea12f
Packit aea12f
void func1(void);
Packit aea12f
void func2(void);
Packit aea12f
Packit aea12f
static unsigned char *ptr;
Packit aea12f
Packit aea12f
/* Checks whether gnutls_memset() call is being optimized
Packit aea12f
 * out.
Packit aea12f
 */
Packit aea12f
Packit aea12f
void func1(void)
Packit aea12f
{
Packit aea12f
	unsigned char buf[BUF_SIZE];
Packit aea12f
	ptr = buf;
Packit aea12f
Packit aea12f
	gnutls_memset(buf, CHAR, sizeof(buf));
Packit aea12f
}
Packit aea12f
Packit aea12f
void func2(void)
Packit aea12f
{
Packit aea12f
	if (ptr[0] != CHAR || ptr[2] != CHAR || ptr[16] != CHAR)
Packit aea12f
		fail("previous memset failed!\n");
Packit aea12f
}
Packit aea12f
Packit aea12f
void doit(void)
Packit aea12f
{
Packit aea12f
#if defined(__has_feature)
Packit aea12f
#  if __has_feature(address_sanitizer)
Packit aea12f
	exit(77);
Packit aea12f
#  endif
Packit aea12f
#endif
Packit aea12f
Packit aea12f
#if __SANITIZE_ADDRESS__ == 1
Packit aea12f
	exit(77);
Packit aea12f
#endif
Packit aea12f
Packit aea12f
	func1();
Packit aea12f
	func2();
Packit aea12f
	success("memset test succeeded\n");
Packit aea12f
}