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
|
/****************************************************************
Copyright (C) 1986-2000 by
F6FBB - Jean-Paul ROUBELAT
6, rue George Sand
31120 - Roquettes - France
jpr@f6fbb.org
This program 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 2 of the License, or
(at your option) any later version.
This program 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 this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Parts of code have been taken from many other softwares.
Thanks for the help.
****************************************************************/
/*
* FILE:
* ufortify.h
*
* DESCRIPTION:
* User options for fortify. Changes to this file require fortify.c to be
* recompiled, but nothing else.
*/
#define FORTIFY_STORAGE
#define FORTIFY_BEFORE_SIZE 16 /* Bytes to allocate before block */
#define FORTIFY_BEFORE_VALUE 0xA3 /* Fill value before block */
#define FORTIFY_AFTER_SIZE 16 /* Bytes to allocate after block */
#define FORTIFY_AFTER_VALUE 0xA5 /* Fill value after block */
#define FILL_ON_MALLOC /* Nuke out malloc'd memory */
#define FILL_ON_MALLOC_VALUE 0xA7 /* Value to initialize with */
#define FILL_ON_FREE /* free'd memory is cleared */
#define FILL_ON_FREE_VALUE 0xA9 /* Value to de-initialize with */
#define CHECK_ALL_MEMORY_ON_MALLOC
#define CHECK_ALL_MEMORY_ON_FREE
#define PARANOID_FREE
#define WARN_ON_MALLOC_FAIL /* A debug is issued on a failed malloc */
#define WARN_ON_ZERO_MALLOC /* A debug is issued on a malloc(0) */
#define WARN_ON_FALSE_FAIL /* See Fortify_SetMallocFailRate */
#define WARN_ON_SIZE_T_OVERFLOW/* Watch for breaking the 64K limit in */
/* some braindead architectures... */
#define FORTIFY_LOCK()
#define FORTIFY_UNLOCK()
|