2015-02-07 00:21:59 +01:00
|
|
|
/* $OpenBSD: xmalloc.c,v 1.31 2015/02/06 23:21:59 millert Exp $ */
|
1999-10-27 05:42:43 +02:00
|
|
|
/*
|
1999-11-24 14:26:21 +01: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 13:42:17 +01:00
|
|
|
*
|
2000-09-16 04:29:08 +02: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 14:26:21 +01:00
|
|
|
*/
|
1999-10-27 05:42:43 +02:00
|
|
|
|
|
|
|
#include "includes.h"
|
|
|
|
|
2006-07-12 14:15:16 +02:00
|
|
|
#include <stdarg.h>
|
2015-02-07 00:21:59 +01:00
|
|
|
#include <stdint.h>
|
2006-08-05 03:37:59 +02:00
|
|
|
#include <stdio.h>
|
2006-08-05 03:34:19 +02:00
|
|
|
#include <stdlib.h>
|
2006-07-24 06:13:33 +02:00
|
|
|
#include <string.h>
|
2006-07-12 14:15:16 +02:00
|
|
|
|
2001-01-22 06:34:40 +01:00
|
|
|
#include "xmalloc.h"
|
|
|
|
#include "log.h"
|
1999-10-27 05:42:43 +02:00
|
|
|
|
1999-11-24 14:26:21 +01:00
|
|
|
void *
|
|
|
|
xmalloc(size_t size)
|
1999-10-27 05:42:43 +02:00
|
|
|
{
|
2001-02-11 00:34:54 +01:00
|
|
|
void *ptr;
|
|
|
|
|
|
|
|
if (size == 0)
|
|
|
|
fatal("xmalloc: zero size");
|
|
|
|
ptr = malloc(size);
|
1999-11-24 14:26:21 +01:00
|
|
|
if (ptr == NULL)
|
2014-01-10 00:37:05 +01:00
|
|
|
fatal("xmalloc: out of memory (allocating %zu bytes)", size);
|
1999-11-24 14:26:21 +01:00
|
|
|
return ptr;
|
1999-10-27 05:42:43 +02:00
|
|
|
}
|
|
|
|
|
2006-03-26 05:19:21 +02:00
|
|
|
void *
|
|
|
|
xcalloc(size_t nmemb, size_t size)
|
|
|
|
{
|
|
|
|
void *ptr;
|
|
|
|
|
|
|
|
if (size == 0 || nmemb == 0)
|
|
|
|
fatal("xcalloc: zero size");
|
2015-02-07 00:21:59 +01:00
|
|
|
if (SIZE_MAX / nmemb < size)
|
|
|
|
fatal("xcalloc: nmemb * size > SIZE_MAX");
|
2006-03-26 05:19:21 +02:00
|
|
|
ptr = calloc(nmemb, size);
|
|
|
|
if (ptr == NULL)
|
2014-01-10 00:37:05 +01:00
|
|
|
fatal("xcalloc: out of memory (allocating %zu bytes)",
|
|
|
|
size * nmemb);
|
2006-03-26 05:19:21 +02:00
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
|
1999-11-24 14:26:21 +01:00
|
|
|
void *
|
2006-03-26 05:22:47 +02:00
|
|
|
xrealloc(void *ptr, size_t nmemb, size_t size)
|
1999-10-27 05:42:43 +02:00
|
|
|
{
|
1999-11-24 14:26:21 +01:00
|
|
|
void *new_ptr;
|
2006-03-26 05:22:47 +02:00
|
|
|
size_t new_size = nmemb * size;
|
1999-11-24 14:26:21 +01:00
|
|
|
|
2001-02-11 00:34:54 +01:00
|
|
|
if (new_size == 0)
|
|
|
|
fatal("xrealloc: zero size");
|
2015-02-07 00:21:59 +01:00
|
|
|
if (SIZE_MAX / nmemb < size)
|
|
|
|
fatal("xrealloc: nmemb * size > SIZE_MAX");
|
1999-11-24 14:26:21 +01:00
|
|
|
if (ptr == NULL)
|
2001-04-16 10:27:07 +02:00
|
|
|
new_ptr = malloc(new_size);
|
|
|
|
else
|
|
|
|
new_ptr = realloc(ptr, new_size);
|
1999-11-24 14:26:21 +01:00
|
|
|
if (new_ptr == NULL)
|
2014-01-10 00:37:05 +01:00
|
|
|
fatal("xrealloc: out of memory (new_size %zu bytes)",
|
|
|
|
new_size);
|
1999-11-24 14:26:21 +01:00
|
|
|
return new_ptr;
|
1999-10-27 05:42:43 +02:00
|
|
|
}
|
|
|
|
|
1999-11-24 14:26:21 +01:00
|
|
|
char *
|
|
|
|
xstrdup(const char *str)
|
1999-10-27 05:42:43 +02:00
|
|
|
{
|
2001-08-06 23:03:23 +02:00
|
|
|
size_t len;
|
2001-02-11 00:34:54 +01:00
|
|
|
char *cp;
|
1999-10-27 05:42:43 +02:00
|
|
|
|
2001-08-06 23:03:23 +02:00
|
|
|
len = strlen(str) + 1;
|
2001-02-11 00:34:54 +01:00
|
|
|
cp = xmalloc(len);
|
1999-11-24 14:26:21 +01:00
|
|
|
strlcpy(cp, str, len);
|
|
|
|
return cp;
|
1999-10-27 05:42:43 +02:00
|
|
|
}
|
2006-03-26 05:19:21 +02: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);
|
|
|
|
}
|