1 /* $OpenBSD: xmalloc.c,v 1.33 2016/02/15 09:47:49 dtucker 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 ssh_malloc_init(void) 27 { 28 extern char *malloc_options; 29 30 malloc_options = "S"; 31 } 32 33 void * 34 xmalloc(size_t size) 35 { 36 void *ptr; 37 38 if (size == 0) 39 fatal("xmalloc: zero size"); 40 ptr = malloc(size); 41 if (ptr == NULL) 42 fatal("xmalloc: out of memory (allocating %zu bytes)", size); 43 return ptr; 44 } 45 46 void * 47 xcalloc(size_t nmemb, size_t size) 48 { 49 void *ptr; 50 51 if (size == 0 || nmemb == 0) 52 fatal("xcalloc: zero size"); 53 if (SIZE_MAX / nmemb < size) 54 fatal("xcalloc: nmemb * size > SIZE_MAX"); 55 ptr = calloc(nmemb, size); 56 if (ptr == NULL) 57 fatal("xcalloc: out of memory (allocating %zu bytes)", 58 size * nmemb); 59 return ptr; 60 } 61 62 void * 63 xreallocarray(void *ptr, size_t nmemb, size_t size) 64 { 65 void *new_ptr; 66 67 new_ptr = reallocarray(ptr, nmemb, size); 68 if (new_ptr == NULL) 69 fatal("xreallocarray: out of memory (%zu elements of %zu bytes)", 70 nmemb, size); 71 return new_ptr; 72 } 73 74 char * 75 xstrdup(const char *str) 76 { 77 size_t len; 78 char *cp; 79 80 len = strlen(str) + 1; 81 cp = xmalloc(len); 82 strlcpy(cp, str, len); 83 return cp; 84 } 85 86 int 87 xasprintf(char **ret, const char *fmt, ...) 88 { 89 va_list ap; 90 int i; 91 92 va_start(ap, fmt); 93 i = vasprintf(ret, fmt, ap); 94 va_end(ap); 95 96 if (i < 0 || *ret == NULL) 97 fatal("xasprintf: could not allocate memory"); 98 99 return (i); 100 } 101