xref: /openbsd-src/usr.bin/ssh/xmalloc.c (revision cb39b41371628601fbe4c618205356d538b9d08a)
1 /* $OpenBSD: xmalloc.c,v 1.32 2015/04/24 01:36:01 deraadt Exp $ */
2 /*
3  * Author: Tatu Ylonen <ylo@cs.hut.fi>
4  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5  *                    All rights reserved
6  * Versions of malloc and friends that check their results, and never return
7  * failure (they call fatal if they encounter an error).
8  *
9  * As far as I am concerned, the code I have written for this software
10  * can be used freely for any purpose.  Any derived versions of this
11  * software must be clearly marked as such, and if the derived work is
12  * incompatible with the protocol description in the RFC file, it must be
13  * called by a name other than "ssh" or "Secure Shell".
14  */
15 
16 #include <stdarg.h>
17 #include <stdint.h>
18 #include <stdio.h>
19 #include <stdlib.h>
20 #include <string.h>
21 
22 #include "xmalloc.h"
23 #include "log.h"
24 
25 void *
26 xmalloc(size_t size)
27 {
28 	void *ptr;
29 
30 	if (size == 0)
31 		fatal("xmalloc: zero size");
32 	ptr = malloc(size);
33 	if (ptr == NULL)
34 		fatal("xmalloc: out of memory (allocating %zu bytes)", size);
35 	return ptr;
36 }
37 
38 void *
39 xcalloc(size_t nmemb, size_t size)
40 {
41 	void *ptr;
42 
43 	if (size == 0 || nmemb == 0)
44 		fatal("xcalloc: zero size");
45 	if (SIZE_MAX / nmemb < size)
46 		fatal("xcalloc: nmemb * size > SIZE_MAX");
47 	ptr = calloc(nmemb, size);
48 	if (ptr == NULL)
49 		fatal("xcalloc: out of memory (allocating %zu bytes)",
50 		    size * nmemb);
51 	return ptr;
52 }
53 
54 void *
55 xreallocarray(void *ptr, size_t nmemb, size_t size)
56 {
57 	void *new_ptr;
58 
59 	new_ptr = reallocarray(ptr, nmemb, size);
60 	if (new_ptr == NULL)
61 		fatal("xreallocarray: out of memory (%zu elements of %zu bytes)",
62 		    nmemb, size);
63 	return new_ptr;
64 }
65 
66 char *
67 xstrdup(const char *str)
68 {
69 	size_t len;
70 	char *cp;
71 
72 	len = strlen(str) + 1;
73 	cp = xmalloc(len);
74 	strlcpy(cp, str, len);
75 	return cp;
76 }
77 
78 int
79 xasprintf(char **ret, const char *fmt, ...)
80 {
81 	va_list ap;
82 	int i;
83 
84 	va_start(ap, fmt);
85 	i = vasprintf(ret, fmt, ap);
86 	va_end(ap);
87 
88 	if (i < 0 || *ret == NULL)
89 		fatal("xasprintf: could not allocate memory");
90 
91 	return (i);
92 }
93