118fd37a7SXin LI /* xalloc.h -- malloc with out-of-memory checking 218fd37a7SXin LI 318fd37a7SXin LI Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 418fd37a7SXin LI 1999, 2000, 2003 Free Software Foundation, Inc. 518fd37a7SXin LI 618fd37a7SXin LI This program is free software; you can redistribute it and/or modify 718fd37a7SXin LI it under the terms of the GNU General Public License as published by 818fd37a7SXin LI the Free Software Foundation; either version 2, or (at your option) 918fd37a7SXin LI any later version. 1018fd37a7SXin LI 1118fd37a7SXin LI This program is distributed in the hope that it will be useful, 1218fd37a7SXin LI but WITHOUT ANY WARRANTY; without even the implied warranty of 1318fd37a7SXin LI MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 1418fd37a7SXin LI GNU General Public License for more details. 1518fd37a7SXin LI 1618fd37a7SXin LI You should have received a copy of the GNU General Public License 1718fd37a7SXin LI along with this program; if not, write to the Free Software Foundation, 1818fd37a7SXin LI Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ 1918fd37a7SXin LI 2018fd37a7SXin LI #ifndef XALLOC_H_ 2118fd37a7SXin LI # define XALLOC_H_ 2218fd37a7SXin LI 2318fd37a7SXin LI # include <stddef.h> 2418fd37a7SXin LI 2518fd37a7SXin LI # ifndef __attribute__ 2618fd37a7SXin LI # if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 8) || __STRICT_ANSI__ 2718fd37a7SXin LI # define __attribute__(x) 2818fd37a7SXin LI # endif 2918fd37a7SXin LI # endif 3018fd37a7SXin LI 3118fd37a7SXin LI # ifndef ATTRIBUTE_NORETURN 3218fd37a7SXin LI # define ATTRIBUTE_NORETURN __attribute__ ((__noreturn__)) 3318fd37a7SXin LI # endif 3418fd37a7SXin LI 3518fd37a7SXin LI /* If this pointer is non-zero, run the specified function upon each 3618fd37a7SXin LI allocation failure. It is initialized to zero. */ 3718fd37a7SXin LI extern void (*xalloc_fail_func) (void); 3818fd37a7SXin LI 3918fd37a7SXin LI /* If XALLOC_FAIL_FUNC is undefined or a function that returns, this 4018fd37a7SXin LI message is output. It is translated via gettext. 4118fd37a7SXin LI Its value is "memory exhausted". */ 4218fd37a7SXin LI extern char const xalloc_msg_memory_exhausted[]; 4318fd37a7SXin LI 4418fd37a7SXin LI /* This function is always triggered when memory is exhausted. It is 4518fd37a7SXin LI in charge of honoring the two previous items. It exits with status 4618fd37a7SXin LI exit_failure (defined in exitfail.h). This is the 4718fd37a7SXin LI function to call when one wants the program to die because of a 4818fd37a7SXin LI memory allocation failure. */ 4918fd37a7SXin LI extern void xalloc_die (void) ATTRIBUTE_NORETURN; 5018fd37a7SXin LI 5118fd37a7SXin LI void *xmalloc (size_t s); 5218fd37a7SXin LI void *xnmalloc (size_t n, size_t s); 5318fd37a7SXin LI void *xzalloc (size_t s); 5418fd37a7SXin LI void *xcalloc (size_t n, size_t s); 5518fd37a7SXin LI void *xrealloc (void *p, size_t s); 5618fd37a7SXin LI void *xnrealloc (void *p, size_t n, size_t s); 5718fd37a7SXin LI void *x2realloc (void *p, size_t *pn); 5818fd37a7SXin LI void *x2nrealloc (void *p, size_t *pn, size_t s); 5918fd37a7SXin LI void *xclone (void const *p, size_t s); 6018fd37a7SXin LI char *xstrdup (const char *str); 6118fd37a7SXin LI 6218fd37a7SXin LI /* Return 1 if an array of N objects, each of size S, cannot exist due 6318fd37a7SXin LI to size arithmetic overflow. S must be positive and N must be 6418fd37a7SXin LI nonnegative. This is a macro, not an inline function, so that it 6518fd37a7SXin LI works correctly even when SIZE_MAX < N. 6618fd37a7SXin LI 6718fd37a7SXin LI By gnulib convention, SIZE_MAX represents overflow in size 6818fd37a7SXin LI calculations, so the conservative dividend to use here is 6918fd37a7SXin LI SIZE_MAX - 1, since SIZE_MAX might represent an overflowed value. 7018fd37a7SXin LI However, malloc (SIZE_MAX) fails on all known hosts where 7118fd37a7SXin LI sizeof (ptrdiff_t) <= sizeof (size_t), so do not bother to test for 7218fd37a7SXin LI exactly-SIZE_MAX allocations on such hosts; this avoids a test and 7318fd37a7SXin LI branch when S is known to be 1. */ 7418fd37a7SXin LI # define xalloc_oversized(n, s) \ 7518fd37a7SXin LI ((size_t) (sizeof (ptrdiff_t) <= sizeof (size_t) ? -1 : -2) / (s) < (n)) 7618fd37a7SXin LI 7718fd37a7SXin LI /* These macros are deprecated; they will go away soon, and are retained 7818fd37a7SXin LI temporarily only to ease conversion to the functions described above. */ 7918fd37a7SXin LI # define CCLONE(p, n) xclone (p, (n) * sizeof *(p)) 8018fd37a7SXin LI # define CLONE(p) xclone (p, sizeof *(p)) 8118fd37a7SXin LI # define NEW(type, var) type *var = xmalloc (sizeof (type)) 8218fd37a7SXin LI # define XCALLOC(type, n) xcalloc (n, sizeof (type)) 8318fd37a7SXin LI # define XMALLOC(type, n) xnmalloc (n, sizeof (type)) 8418fd37a7SXin LI # define XREALLOC(p, type, n) xnrealloc (p, n, sizeof (type)) 8518fd37a7SXin LI # define XFREE(p) free (p) 8618fd37a7SXin LI 8718fd37a7SXin LI #endif /* !XALLOC_H_ */ 88