2006-03-31 16:09:17 +04:00
|
|
|
/* $OpenBSD: xmalloc.c,v 1.21 2006/03/27 01:21:18 deraadt Exp $ */
|
1999-10-27 07:42:43 +04:00
|
|
|
/*
|
1999-11-24 16:26:21 +03:00
|
|
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
|
|
|
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
|
|
|
* All rights reserved
|
|
|
|
* Versions of malloc and friends that check their results, and never return
|
|
|
|
* failure (they call fatal if they encounter an error).
|
2001-02-05 15:42:17 +03:00
|
|
|
*
|
2000-09-16 06:29:08 +04:00
|
|
|
* As far as I am concerned, the code I have written for this software
|
|
|
|
* can be used freely for any purpose. Any derived versions of this
|
|
|
|
* software must be clearly marked as such, and if the derived work is
|
|
|
|
* incompatible with the protocol description in the RFC file, it must be
|
|
|
|
* called by a name other than "ssh" or "Secure Shell".
|
1999-11-24 16:26:21 +03:00
|
|
|
*/
|
1999-10-27 07:42:43 +04:00
|
|
|
|
|
|
|
#include "includes.h"
|
|
|
|
|
2001-01-22 08:34:40 +03:00
|
|
|
#include "xmalloc.h"
|
|
|
|
#include "log.h"
|
1999-10-27 07:42:43 +04:00
|
|
|
|
1999-11-24 16:26:21 +03:00
|
|
|
void *
|
|
|
|
xmalloc(size_t size)
|
1999-10-27 07:42:43 +04:00
|
|
|
{
|
2001-02-11 02:34:54 +03:00
|
|
|
void *ptr;
|
|
|
|
|
|
|
|
if (size == 0)
|
|
|
|
fatal("xmalloc: zero size");
|
|
|
|
ptr = malloc(size);
|
1999-11-24 16:26:21 +03:00
|
|
|
if (ptr == NULL)
|
2001-02-11 02:34:54 +03:00
|
|
|
fatal("xmalloc: out of memory (allocating %lu bytes)", (u_long) size);
|
1999-11-24 16:26:21 +03:00
|
|
|
return ptr;
|
1999-10-27 07:42:43 +04:00
|
|
|
}
|
|
|
|
|
2006-03-26 07:19:21 +04:00
|
|
|
void *
|
|
|
|
xcalloc(size_t nmemb, size_t size)
|
|
|
|
{
|
|
|
|
void *ptr;
|
|
|
|
|
|
|
|
if (size == 0 || nmemb == 0)
|
|
|
|
fatal("xcalloc: zero size");
|
2006-03-31 16:09:17 +04:00
|
|
|
if (SIZE_T_MAX / nmemb < size)
|
|
|
|
fatal("xcalloc: nmemb * size > SIZE_T_MAX");
|
2006-03-26 07:19:21 +04:00
|
|
|
ptr = calloc(nmemb, size);
|
|
|
|
if (ptr == NULL)
|
|
|
|
fatal("xcalloc: out of memory (allocating %lu bytes)",
|
|
|
|
(u_long)(size * nmemb));
|
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
|
1999-11-24 16:26:21 +03:00
|
|
|
void *
|
2006-03-26 07:22:47 +04:00
|
|
|
xrealloc(void *ptr, size_t nmemb, size_t size)
|
1999-10-27 07:42:43 +04:00
|
|
|
{
|
1999-11-24 16:26:21 +03:00
|
|
|
void *new_ptr;
|
2006-03-26 07:22:47 +04:00
|
|
|
size_t new_size = nmemb * size;
|
1999-11-24 16:26:21 +03:00
|
|
|
|
2001-02-11 02:34:54 +03:00
|
|
|
if (new_size == 0)
|
|
|
|
fatal("xrealloc: zero size");
|
2006-03-31 16:09:17 +04:00
|
|
|
if (SIZE_T_MAX / nmemb < size)
|
|
|
|
fatal("xrealloc: nmemb * size > SIZE_T_MAX");
|
1999-11-24 16:26:21 +03:00
|
|
|
if (ptr == NULL)
|
2001-04-16 12:27:07 +04:00
|
|
|
new_ptr = malloc(new_size);
|
|
|
|
else
|
|
|
|
new_ptr = realloc(ptr, new_size);
|
1999-11-24 16:26:21 +03:00
|
|
|
if (new_ptr == NULL)
|
2006-03-26 07:22:47 +04:00
|
|
|
fatal("xrealloc: out of memory (new_size %lu bytes)",
|
|
|
|
(u_long) new_size);
|
1999-11-24 16:26:21 +03:00
|
|
|
return new_ptr;
|
1999-10-27 07:42:43 +04:00
|
|
|
}
|
|
|
|
|
2000-04-16 05:18:38 +04:00
|
|
|
void
|
1999-11-24 16:26:21 +03:00
|
|
|
xfree(void *ptr)
|
1999-10-27 07:42:43 +04:00
|
|
|
{
|
1999-11-24 16:26:21 +03:00
|
|
|
if (ptr == NULL)
|
|
|
|
fatal("xfree: NULL pointer given as argument");
|
|
|
|
free(ptr);
|
1999-10-27 07:42:43 +04:00
|
|
|
}
|
|
|
|
|
1999-11-24 16:26:21 +03:00
|
|
|
char *
|
|
|
|
xstrdup(const char *str)
|
1999-10-27 07:42:43 +04:00
|
|
|
{
|
2001-08-07 01:03:23 +04:00
|
|
|
size_t len;
|
2001-02-11 02:34:54 +03:00
|
|
|
char *cp;
|
1999-10-27 07:42:43 +04:00
|
|
|
|
2001-08-07 01:03:23 +04:00
|
|
|
len = strlen(str) + 1;
|
2001-02-11 02:34:54 +03:00
|
|
|
cp = xmalloc(len);
|
1999-11-24 16:26:21 +03:00
|
|
|
strlcpy(cp, str, len);
|
|
|
|
return cp;
|
1999-10-27 07:42:43 +04:00
|
|
|
}
|
2006-03-26 07:19:21 +04:00
|
|
|
|
|
|
|
int
|
|
|
|
xasprintf(char **ret, const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
va_start(ap, fmt);
|
|
|
|
i = vasprintf(ret, fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
|
|
|
|
if (i < 0 || *ret == NULL)
|
|
|
|
fatal("xasprintf: could not allocate memory");
|
|
|
|
|
|
|
|
return (i);
|
|
|
|
}
|