2016-02-15 10:47:49 +01:00
|
|
|
/* $OpenBSD: xmalloc.c,v 1.33 2016/02/15 09:47:49 dtucker 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-23 23:04:32 +01:00
|
|
|
#ifdef HAVE_STDINT_H
|
2015-02-07 00:21:59 +01:00
|
|
|
#include <stdint.h>
|
2015-02-23 23:04:32 +01:00
|
|
|
#endif
|
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
|
|
|
|
2016-02-15 10:47:49 +01:00
|
|
|
void
|
|
|
|
ssh_malloc_init(void)
|
|
|
|
{
|
2016-02-16 00:45:02 +01:00
|
|
|
#if defined(__OpenBSD__)
|
2016-02-15 10:47:49 +01:00
|
|
|
extern char *malloc_options;
|
|
|
|
|
|
|
|
malloc_options = "S";
|
2016-02-16 00:45:02 +01:00
|
|
|
#endif /* __OpenBSD__ */
|
2016-02-15 10:47:49 +01: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 *
|
2015-04-24 03:36:00 +02:00
|
|
|
xreallocarray(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;
|
|
|
|
|
2015-04-24 03:36:00 +02:00
|
|
|
new_ptr = reallocarray(ptr, nmemb, size);
|
1999-11-24 14:26:21 +01:00
|
|
|
if (new_ptr == NULL)
|
2015-04-24 03:36:00 +02:00
|
|
|
fatal("xreallocarray: out of memory (%zu elements of %zu bytes)",
|
|
|
|
nmemb, 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);
|
|
|
|
}
|