blob: 820a0d7ccaa75c93ec8ed5f7af354814f3a49a15 [file] [log] [blame]
Eric Andersenaad1a882001-03-16 22:47:14 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Utility routines.
4 *
Eric Andersenbdfd0d72001-10-24 05:00:29 +00005 * Copyright (C) 1999,2000,2001 by Erik Andersen <andersee@debian.org>
Eric Andersenaad1a882001-03-16 22:47:14 +00006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Eric Andersenaad1a882001-03-16 22:47:14 +000020 */
21
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000022#include <sys/types.h>
23#include <sys/stat.h>
Eric Andersenaad1a882001-03-16 22:47:14 +000024#include <stdio.h>
25#include <string.h>
26#include <stdlib.h>
27#include <unistd.h>
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000028#include <fcntl.h>
Eric Andersenaad1a882001-03-16 22:47:14 +000029#include "libbb.h"
30
Eric Andersenaad1a882001-03-16 22:47:14 +000031
32#ifndef DMALLOC
33extern void *xmalloc(size_t size)
34{
35 void *ptr = malloc(size);
Matt Kraaia99b1942002-02-26 15:28:22 +000036 if (ptr == NULL && size != 0)
Eric Andersenaad1a882001-03-16 22:47:14 +000037 error_msg_and_die(memory_exhausted);
38 return ptr;
39}
40
Matt Kraaia99b1942002-02-26 15:28:22 +000041extern void *xrealloc(void *ptr, size_t size)
Eric Andersenaad1a882001-03-16 22:47:14 +000042{
Matt Kraaia99b1942002-02-26 15:28:22 +000043 ptr = realloc(ptr, size);
44 if (ptr == NULL && size != 0)
Eric Andersenaad1a882001-03-16 22:47:14 +000045 error_msg_and_die(memory_exhausted);
46 return ptr;
47}
48
49extern void *xcalloc(size_t nmemb, size_t size)
50{
51 void *ptr = calloc(nmemb, size);
Matt Kraaia99b1942002-02-26 15:28:22 +000052 if (ptr == NULL && nmemb != 0 && size != 0)
Eric Andersenaad1a882001-03-16 22:47:14 +000053 error_msg_and_die(memory_exhausted);
54 return ptr;
55}
56
57extern char * xstrdup (const char *s) {
58 char *t;
59
60 if (s == NULL)
61 return NULL;
62
63 t = strdup (s);
64
65 if (t == NULL)
66 error_msg_and_die(memory_exhausted);
67
68 return t;
69}
70#endif
71
72extern char * xstrndup (const char *s, int n) {
73 char *t;
74
75 if (s == NULL)
76 error_msg_and_die("xstrndup bug");
77
78 t = xmalloc(++n);
79
80 return safe_strncpy(t,s,n);
81}
82
83FILE *xfopen(const char *path, const char *mode)
84{
85 FILE *fp;
86 if ((fp = fopen(path, mode)) == NULL)
87 perror_msg_and_die("%s", path);
88 return fp;
89}
90
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000091extern int xopen(const char *pathname, int flags)
92{
93 int ret;
94
Glenn L McGrath237ae422002-11-03 14:05:15 +000095 ret = open(pathname, flags, 0777);
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000096 if (ret == -1) {
97 perror_msg_and_die("%s", pathname);
98 }
99 return ret;
100}
101
102extern ssize_t xread(int fd, void *buf, size_t count)
103{
104 ssize_t size;
105
106 size = read(fd, buf, count);
107 if (size == -1) {
108 perror_msg_and_die("Read error");
109 }
110 return(size);
111}
112
113extern void xread_all(int fd, void *buf, size_t count)
114{
115 ssize_t size;
116
117 size = xread(fd, buf, count);
118 if (size != count) {
119 error_msg_and_die("Short read");
120 }
121 return;
122}
123
Glenn L McGrath7ca04f32002-09-25 02:47:48 +0000124extern unsigned char xread_char(int fd)
125{
126 char tmp;
127
128 xread_all(fd, &tmp, 1);
129
130 return(tmp);
131}
132
Eric Andersendb7d5fc2002-04-13 13:02:03 +0000133/* Stupid gcc always includes its own builtin strlen()... */
Eric Andersenc8459a52002-04-13 14:44:42 +0000134#undef strlen
Eric Andersendb7d5fc2002-04-13 13:02:03 +0000135size_t xstrlen(const char *string)
136{
137 return(strlen(string));
138}
139
Eric Andersenaad1a882001-03-16 22:47:14 +0000140/* END CODE */
141/*
142Local Variables:
143c-file-style: "linux"
144c-basic-offset: 4
145tab-width: 4
146End:
147*/