xmalloc.c 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. /* xmalloc.c -- malloc with out of memory checking
  2. Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
  3. 1999, 2000, 2002, 2003, 2004, 2005, 2006 Free Software Foundation,
  4. Inc.
  5. This program is free software: you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation; either version 3 of the License, or
  8. (at your option) any later version.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with this program. If not, see <http://www.gnu.org/licenses/>. */
  15. #include <config.h>
  16. #if ! HAVE_INLINE
  17. # define static_inline
  18. #endif
  19. #include "xalloc.h"
  20. #undef static_inline
  21. #include <stdlib.h>
  22. #include <string.h>
  23. #ifndef SIZE_MAX
  24. # define SIZE_MAX ((size_t) -1)
  25. #endif
  26. /* 1 if calloc is known to be compatible with GNU calloc. This
  27. matters if we are not also using the calloc module, which defines
  28. HAVE_CALLOC and supports the GNU API even on non-GNU platforms. */
  29. #if defined HAVE_CALLOC || defined __GLIBC__
  30. enum { HAVE_GNU_CALLOC = 1 };
  31. #else
  32. enum { HAVE_GNU_CALLOC = 0 };
  33. #endif
  34. /* Allocate N bytes of memory dynamically, with error checking. */
  35. void *
  36. xmalloc (size_t n)
  37. {
  38. void *p = malloc (n);
  39. if (!p && n != 0)
  40. xalloc_die ();
  41. return p;
  42. }
  43. /* Change the size of an allocated block of memory P to N bytes,
  44. with error checking. */
  45. void *
  46. xrealloc (void *p, size_t n)
  47. {
  48. p = realloc (p, n);
  49. if (!p && n != 0)
  50. xalloc_die ();
  51. return p;
  52. }
  53. /* If P is null, allocate a block of at least *PN bytes; otherwise,
  54. reallocate P so that it contains more than *PN bytes. *PN must be
  55. nonzero unless P is null. Set *PN to the new block's size, and
  56. return the pointer to the new block. *PN is never set to zero, and
  57. the returned pointer is never null. */
  58. void *
  59. x2realloc (void *p, size_t *pn)
  60. {
  61. return x2nrealloc (p, pn, 1);
  62. }
  63. /* Allocate S bytes of zeroed memory dynamically, with error checking.
  64. There's no need for xnzalloc (N, S), since it would be equivalent
  65. to xcalloc (N, S). */
  66. void *
  67. xzalloc (size_t s)
  68. {
  69. return memset (xmalloc (s), 0, s);
  70. }
  71. /* Allocate zeroed memory for N elements of S bytes, with error
  72. checking. S must be nonzero. */
  73. void *
  74. xcalloc (size_t n, size_t s)
  75. {
  76. void *p;
  77. /* Test for overflow, since some calloc implementations don't have
  78. proper overflow checks. But omit overflow and size-zero tests if
  79. HAVE_GNU_CALLOC, since GNU calloc catches overflow and never
  80. returns NULL if successful. */
  81. if ((! HAVE_GNU_CALLOC && xalloc_oversized (n, s))
  82. || (! (p = calloc (n, s)) && (HAVE_GNU_CALLOC || n != 0)))
  83. xalloc_die ();
  84. return p;
  85. }
  86. /* Clone an object P of size S, with error checking. There's no need
  87. for xnmemdup (P, N, S), since xmemdup (P, N * S) works without any
  88. need for an arithmetic overflow check. */
  89. void *
  90. xmemdup (void const *p, size_t s)
  91. {
  92. return memcpy (xmalloc (s), p, s);
  93. }
  94. /* Clone STRING. */
  95. char *
  96. xstrdup (char const *string)
  97. {
  98. return xmemdup (string, strlen (string) + 1);
  99. }