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-02-11 02:34:54 +03:00
|
|
|
RCSID("$OpenBSD: xmalloc.c,v 1.14 2001/02/07 18:04:50 itojun Exp $");
|
1999-10-27 07:42:43 +04:00
|
|
|
|
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
|
|
|
}
|
|
|
|
|
1999-11-24 16:26:21 +03:00
|
|
|
void *
|
|
|
|
xrealloc(void *ptr, size_t new_size)
|
1999-10-27 07:42:43 +04:00
|
|
|
{
|
1999-11-24 16:26:21 +03:00
|
|
|
void *new_ptr;
|
|
|
|
|
2001-02-11 02:34:54 +03:00
|
|
|
if (new_size == 0)
|
|
|
|
fatal("xrealloc: zero size");
|
1999-11-24 16:26:21 +03:00
|
|
|
if (ptr == NULL)
|
|
|
|
fatal("xrealloc: NULL pointer given as argument");
|
|
|
|
new_ptr = realloc(ptr, new_size);
|
|
|
|
if (new_ptr == NULL)
|
2001-02-11 02:34:54 +03: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-01-29 11:10:11 +03:00
|
|
|
size_t len = strlen(str) + 1;
|
2001-02-11 02:34:54 +03:00
|
|
|
char *cp;
|
1999-10-27 07:42:43 +04:00
|
|
|
|
2001-02-11 02:34:54 +03:00
|
|
|
if (len == 0)
|
|
|
|
fatal("xstrdup: zero size");
|
|
|
|
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
|
|
|
}
|