xref: /openbsd-src/usr.bin/file/xmalloc.c (revision 9b9d2a55a62c8e82206c25f94fcc7f4e2765250e)
1 /* $OpenBSD: xmalloc.c,v 1.2 2015/06/17 18:51:11 nicm 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 <err.h>
17 #include <stdarg.h>
18 #include <stdint.h>
19 #include <stdio.h>
20 #include <stdlib.h>
21 #include <string.h>
22 
23 #include "xmalloc.h"
24 
25 void *
26 xmalloc(size_t size)
27 {
28 	void *ptr;
29 
30 	if (size == 0)
31 		errx(1, "xmalloc: zero size");
32 	ptr = malloc(size);
33 	if (ptr == NULL)
34 		errx(1,
35 		    "xmalloc: out of memory (allocating %zu bytes)",
36 		    size);
37 	return ptr;
38 }
39 
40 void *
41 xcalloc(size_t nmemb, size_t size)
42 {
43 	void *ptr;
44 
45 	if (size == 0 || nmemb == 0)
46 		errx(1, "xcalloc: zero size");
47 	if (SIZE_MAX / nmemb < size)
48 		errx(1, "xcalloc: nmemb * size > SIZE_MAX");
49 	ptr = calloc(nmemb, size);
50 	if (ptr == NULL)
51 		errx(1, "xcalloc: out of memory (allocating %zu bytes)",
52 		    (size * nmemb));
53 	return ptr;
54 }
55 
56 void *
57 xreallocarray(void *ptr, size_t nmemb, size_t size)
58 {
59 	void *new_ptr;
60 
61 	new_ptr = reallocarray(ptr, nmemb, size);
62 	if (new_ptr == NULL)
63 		errx(1, "xreallocarray: out of memory (new_size %zu bytes)",
64 		    nmemb * size);
65 	return new_ptr;
66 }
67 
68 char *
69 xstrdup(const char *str)
70 {
71 	char *cp;
72 
73 	if ((cp = strdup(str)) == NULL)
74 		err(1, "xstrdup");
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 		errx(1, "xasprintf: could not allocate memory");
90 
91 	return (i);
92 }
93