1*df948968SEd Maste /* $NetBSD: efun.c,v 1.10 2015/07/26 02:20:30 kamil Exp $ */
2*df948968SEd Maste
3*df948968SEd Maste /*-
4*df948968SEd Maste * Copyright (c) 2006 The NetBSD Foundation, Inc.
5*df948968SEd Maste * All rights reserved.
6*df948968SEd Maste *
7*df948968SEd Maste * This code is derived from software contributed to The NetBSD Foundation
8*df948968SEd Maste * by Christos Zoulas.
9*df948968SEd Maste *
10*df948968SEd Maste * Redistribution and use in source and binary forms, with or without
11*df948968SEd Maste * modification, are permitted provided that the following conditions
12*df948968SEd Maste * are met:
13*df948968SEd Maste * 1. Redistributions of source code must retain the above copyright
14*df948968SEd Maste * notice, this list of conditions and the following disclaimer.
15*df948968SEd Maste * 2. Redistributions in binary form must reproduce the above copyright
16*df948968SEd Maste * notice, this list of conditions and the following disclaimer in the
17*df948968SEd Maste * documentation and/or other materials provided with the distribution.
18*df948968SEd Maste *
19*df948968SEd Maste * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20*df948968SEd Maste * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21*df948968SEd Maste * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22*df948968SEd Maste * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23*df948968SEd Maste * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24*df948968SEd Maste * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25*df948968SEd Maste * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26*df948968SEd Maste * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27*df948968SEd Maste * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28*df948968SEd Maste * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29*df948968SEd Maste * POSSIBILITY OF SUCH DAMAGE.
30*df948968SEd Maste */
31*df948968SEd Maste
32*df948968SEd Maste #if HAVE_NBTOOL_CONFIG_H
33*df948968SEd Maste #include "nbtool_config.h"
34*df948968SEd Maste #endif
35*df948968SEd Maste
36*df948968SEd Maste #include <sys/cdefs.h>
37*df948968SEd Maste #ifdef __RCSID
38*df948968SEd Maste __RCSID("$NetBSD: efun.c,v 1.10 2015/07/26 02:20:30 kamil Exp $");
39*df948968SEd Maste #endif
40*df948968SEd Maste
41*df948968SEd Maste #include <err.h>
42*df948968SEd Maste #include <errno.h>
43*df948968SEd Maste #include <inttypes.h>
44*df948968SEd Maste #include <string.h>
45*df948968SEd Maste #include <stdlib.h>
46*df948968SEd Maste #include <stdio.h>
47*df948968SEd Maste #include <stdarg.h>
48*df948968SEd Maste #include <util.h>
49*df948968SEd Maste
50*df948968SEd Maste static void (*efunc)(int, const char *, ...) = err;
51*df948968SEd Maste
52*df948968SEd Maste void (*
esetfunc(void (* ef)(int,const char *,...))53*df948968SEd Maste esetfunc(void (*ef)(int, const char *, ...)))(int, const char *, ...)
54*df948968SEd Maste {
55*df948968SEd Maste void (*of)(int, const char *, ...) = efunc;
56*df948968SEd Maste efunc = ef == NULL ? (void (*)(int, const char *, ...))exit : ef;
57*df948968SEd Maste return of;
58*df948968SEd Maste }
59*df948968SEd Maste
60*df948968SEd Maste size_t
estrlcpy(char * dst,const char * src,size_t len)61*df948968SEd Maste estrlcpy(char *dst, const char *src, size_t len)
62*df948968SEd Maste {
63*df948968SEd Maste size_t rv;
64*df948968SEd Maste if ((rv = strlcpy(dst, src, len)) >= len) {
65*df948968SEd Maste errno = ENAMETOOLONG;
66*df948968SEd Maste (*efunc)(1,
67*df948968SEd Maste "Cannot copy string; %zu chars needed %zu provided",
68*df948968SEd Maste rv, len);
69*df948968SEd Maste }
70*df948968SEd Maste return rv;
71*df948968SEd Maste }
72*df948968SEd Maste
73*df948968SEd Maste size_t
estrlcat(char * dst,const char * src,size_t len)74*df948968SEd Maste estrlcat(char *dst, const char *src, size_t len)
75*df948968SEd Maste {
76*df948968SEd Maste size_t rv;
77*df948968SEd Maste if ((rv = strlcat(dst, src, len)) >= len) {
78*df948968SEd Maste errno = ENAMETOOLONG;
79*df948968SEd Maste (*efunc)(1,
80*df948968SEd Maste "Cannot append to string; %zu chars needed %zu provided",
81*df948968SEd Maste rv, len);
82*df948968SEd Maste }
83*df948968SEd Maste return rv;
84*df948968SEd Maste }
85*df948968SEd Maste
86*df948968SEd Maste char *
estrdup(const char * s)87*df948968SEd Maste estrdup(const char *s)
88*df948968SEd Maste {
89*df948968SEd Maste char *d = strdup(s);
90*df948968SEd Maste if (d == NULL)
91*df948968SEd Maste (*efunc)(1, "Cannot copy string");
92*df948968SEd Maste return d;
93*df948968SEd Maste }
94*df948968SEd Maste
95*df948968SEd Maste char *
estrndup(const char * s,size_t len)96*df948968SEd Maste estrndup(const char *s, size_t len)
97*df948968SEd Maste {
98*df948968SEd Maste char *d = strndup(s, len);
99*df948968SEd Maste if (d == NULL)
100*df948968SEd Maste (*efunc)(1, "Cannot copy string");
101*df948968SEd Maste return d;
102*df948968SEd Maste }
103*df948968SEd Maste
104*df948968SEd Maste void *
emalloc(size_t n)105*df948968SEd Maste emalloc(size_t n)
106*df948968SEd Maste {
107*df948968SEd Maste void *p = malloc(n);
108*df948968SEd Maste if (p == NULL && n != 0)
109*df948968SEd Maste (*efunc)(1, "Cannot allocate %zu bytes", n);
110*df948968SEd Maste return p;
111*df948968SEd Maste }
112*df948968SEd Maste
113*df948968SEd Maste void *
ecalloc(size_t n,size_t s)114*df948968SEd Maste ecalloc(size_t n, size_t s)
115*df948968SEd Maste {
116*df948968SEd Maste void *p = calloc(n, s);
117*df948968SEd Maste if (p == NULL && n != 0 && s != 0)
118*df948968SEd Maste (*efunc)(1, "Cannot allocate %zu blocks of size %zu", n, s);
119*df948968SEd Maste return p;
120*df948968SEd Maste }
121*df948968SEd Maste
122*df948968SEd Maste void *
erealloc(void * p,size_t n)123*df948968SEd Maste erealloc(void *p, size_t n)
124*df948968SEd Maste {
125*df948968SEd Maste void *q = realloc(p, n);
126*df948968SEd Maste if (q == NULL && n != 0)
127*df948968SEd Maste (*efunc)(1, "Cannot re-allocate %zu bytes", n);
128*df948968SEd Maste return q;
129*df948968SEd Maste }
130*df948968SEd Maste
131*df948968SEd Maste FILE *
efopen(const char * p,const char * m)132*df948968SEd Maste efopen(const char *p, const char *m)
133*df948968SEd Maste {
134*df948968SEd Maste FILE *fp = fopen(p, m);
135*df948968SEd Maste if (fp == NULL)
136*df948968SEd Maste (*efunc)(1, "Cannot open `%s'", p);
137*df948968SEd Maste return fp;
138*df948968SEd Maste }
139*df948968SEd Maste
140*df948968SEd Maste int
easprintf(char ** __restrict ret,const char * __restrict format,...)141*df948968SEd Maste easprintf(char ** __restrict ret, const char * __restrict format, ...)
142*df948968SEd Maste {
143*df948968SEd Maste int rv;
144*df948968SEd Maste va_list ap;
145*df948968SEd Maste va_start(ap, format);
146*df948968SEd Maste if ((rv = vasprintf(ret, format, ap)) == -1)
147*df948968SEd Maste (*efunc)(1, "Cannot format string");
148*df948968SEd Maste va_end(ap);
149*df948968SEd Maste return rv;
150*df948968SEd Maste }
151*df948968SEd Maste
152*df948968SEd Maste int
evasprintf(char ** __restrict ret,const char * __restrict format,va_list ap)153*df948968SEd Maste evasprintf(char ** __restrict ret, const char * __restrict format, va_list ap)
154*df948968SEd Maste {
155*df948968SEd Maste int rv;
156*df948968SEd Maste if ((rv = vasprintf(ret, format, ap)) == -1)
157*df948968SEd Maste (*efunc)(1, "Cannot format string");
158*df948968SEd Maste return rv;
159*df948968SEd Maste }
160