1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- /* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
- *
- * libhostile
- *
- * Copyright (C) 2011 Data Differential, http://datadifferential.com/
- *
- * This library 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 3 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 library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- */
- /*
- Random realloc failing library for testing realloc failures.
- LD_PRELOAD="/usr/lib/libdl.so ./util/libhostile_realloc.so" ./binary
- */
- #define _GNU_SOURCE
- #include <dlfcn.h>
- #include <stdio.h>
- #include <stdlib.h>
- #include <time.h>
- #include <errno.h>
- #include <libhostile/initialize.h>
- static int not_until= 10;
- static struct function_st __function;
- static pthread_once_t function_lookup_once = PTHREAD_ONCE_INIT;
- static void set_local(void)
- {
- __function= set_function("realloc", "HOSTILE_REALLOC");
- }
- void *realloc(void *old_ptr, size_t size)
- {
- hostile_initialize();
- (void) pthread_once(&function_lookup_once, set_local);
- if (__function.frequency)
- {
- if (--not_until < 0 && random() % __function.frequency)
- {
- errno= ENOMEM;
- return NULL;
- }
- }
- return __function.function.realloc(old_ptr, size);
- }
|