2022-03-13 23:27:54 +00:00
|
|
|
/* $OpenBSD: xmalloc.c,v 1.37 2022/03/13 23:27:54 cheloha Exp $ */
|
1999-10-27 03:42:43 +00:00
|
|
|
/*
|
1999-11-24 13:26:21 +00: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 12:42:17 +00:00
|
|
|
*
|
2000-09-16 02:29:08 +00: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 13:26:21 +00:00
|
|
|
*/
|
1999-10-27 03:42:43 +00:00
|
|
|
|
|
|
|
#include "includes.h"
|
|
|
|
|
2006-07-12 12:15:16 +00:00
|
|
|
#include <stdarg.h>
|
2015-02-23 22:04:32 +00:00
|
|
|
#ifdef HAVE_STDINT_H
|
2019-10-08 22:06:35 +00:00
|
|
|
# include <stdint.h>
|
2015-02-23 22:04:32 +00:00
|
|
|
#endif
|
2006-08-05 01:37:59 +00:00
|
|
|
#include <stdio.h>
|
2006-08-05 01:34:19 +00:00
|
|
|
#include <stdlib.h>
|
2006-07-24 04:13:33 +00:00
|
|
|
#include <string.h>
|
2006-07-12 12:15:16 +00:00
|
|
|
|
2001-01-22 05:34:40 +00:00
|
|
|
#include "xmalloc.h"
|
|
|
|
#include "log.h"
|
1999-10-27 03:42:43 +00:00
|
|
|
|
2016-02-15 23:45:02 +00:00
|
|
|
#if defined(__OpenBSD__)
|
2019-06-07 14:47:07 +00:00
|
|
|
char *malloc_options = "S";
|
2016-02-15 23:45:02 +00:00
|
|
|
#endif /* __OpenBSD__ */
|
2016-02-15 09:47:49 +00:00
|
|
|
|
1999-11-24 13:26:21 +00:00
|
|
|
void *
|
|
|
|
xmalloc(size_t size)
|
1999-10-27 03:42:43 +00:00
|
|
|
{
|
2001-02-10 23:34:54 +00:00
|
|
|
void *ptr;
|
|
|
|
|
|
|
|
if (size == 0)
|
|
|
|
fatal("xmalloc: zero size");
|
|
|
|
ptr = malloc(size);
|
1999-11-24 13:26:21 +00:00
|
|
|
if (ptr == NULL)
|
2014-01-09 23:37:05 +00:00
|
|
|
fatal("xmalloc: out of memory (allocating %zu bytes)", size);
|
1999-11-24 13:26:21 +00:00
|
|
|
return ptr;
|
1999-10-27 03:42:43 +00:00
|
|
|
}
|
|
|
|
|
2006-03-26 03:19:21 +00:00
|
|
|
void *
|
|
|
|
xcalloc(size_t nmemb, size_t size)
|
|
|
|
{
|
|
|
|
void *ptr;
|
|
|
|
|
|
|
|
if (size == 0 || nmemb == 0)
|
|
|
|
fatal("xcalloc: zero size");
|
2015-02-06 23:21:59 +00:00
|
|
|
if (SIZE_MAX / nmemb < size)
|
|
|
|
fatal("xcalloc: nmemb * size > SIZE_MAX");
|
2006-03-26 03:19:21 +00:00
|
|
|
ptr = calloc(nmemb, size);
|
|
|
|
if (ptr == NULL)
|
2014-01-09 23:37:05 +00:00
|
|
|
fatal("xcalloc: out of memory (allocating %zu bytes)",
|
|
|
|
size * nmemb);
|
2006-03-26 03:19:21 +00:00
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
|
1999-11-24 13:26:21 +00:00
|
|
|
void *
|
2015-04-24 01:36:00 +00:00
|
|
|
xreallocarray(void *ptr, size_t nmemb, size_t size)
|
1999-10-27 03:42:43 +00:00
|
|
|
{
|
1999-11-24 13:26:21 +00:00
|
|
|
void *new_ptr;
|
|
|
|
|
2015-04-24 01:36:00 +00:00
|
|
|
new_ptr = reallocarray(ptr, nmemb, size);
|
1999-11-24 13:26:21 +00:00
|
|
|
if (new_ptr == NULL)
|
2015-04-24 01:36:00 +00:00
|
|
|
fatal("xreallocarray: out of memory (%zu elements of %zu bytes)",
|
|
|
|
nmemb, size);
|
1999-11-24 13:26:21 +00:00
|
|
|
return new_ptr;
|
1999-10-27 03:42:43 +00:00
|
|
|
}
|
|
|
|
|
2017-05-31 09:15:42 +00:00
|
|
|
void *
|
|
|
|
xrecallocarray(void *ptr, size_t onmemb, size_t nmemb, size_t size)
|
|
|
|
{
|
|
|
|
void *new_ptr;
|
|
|
|
|
|
|
|
new_ptr = recallocarray(ptr, onmemb, nmemb, size);
|
|
|
|
if (new_ptr == NULL)
|
|
|
|
fatal("xrecallocarray: out of memory (%zu elements of %zu bytes)",
|
|
|
|
nmemb, size);
|
|
|
|
return new_ptr;
|
|
|
|
}
|
|
|
|
|
1999-11-24 13:26:21 +00:00
|
|
|
char *
|
|
|
|
xstrdup(const char *str)
|
1999-10-27 03:42:43 +00:00
|
|
|
{
|
2001-08-06 21:03:23 +00:00
|
|
|
size_t len;
|
2001-02-10 23:34:54 +00:00
|
|
|
char *cp;
|
1999-10-27 03:42:43 +00:00
|
|
|
|
2001-08-06 21:03:23 +00:00
|
|
|
len = strlen(str) + 1;
|
2001-02-10 23:34:54 +00:00
|
|
|
cp = xmalloc(len);
|
2022-03-13 23:27:54 +00:00
|
|
|
return memcpy(cp, str, len);
|
1999-10-27 03:42:43 +00:00
|
|
|
}
|
2006-03-26 03:19:21 +00:00
|
|
|
|
2019-11-12 22:32:48 +00:00
|
|
|
int
|
|
|
|
xvasprintf(char **ret, const char *fmt, va_list ap)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
i = vasprintf(ret, fmt, ap);
|
|
|
|
if (i < 0 || *ret == NULL)
|
|
|
|
fatal("xvasprintf: could not allocate memory");
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
2006-03-26 03:19:21 +00:00
|
|
|
int
|
|
|
|
xasprintf(char **ret, const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
va_start(ap, fmt);
|
2019-11-12 22:32:48 +00:00
|
|
|
i = xvasprintf(ret, fmt, ap);
|
2006-03-26 03:19:21 +00:00
|
|
|
va_end(ap);
|
2019-11-12 22:32:48 +00:00
|
|
|
return i;
|
2006-03-26 03:19:21 +00:00
|
|
|
}
|