rpm: code shrink. Now uses open_zipped's logic (factored out into setup_unzip_on_fd())
[oweals/busybox.git] / libbb / read.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Utility routines.
4  *
5  * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
6  *
7  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
8  */
9 #include "libbb.h"
10
11 #define ZIPPED (ENABLE_FEATURE_SEAMLESS_LZMA \
12         || ENABLE_FEATURE_SEAMLESS_BZ2 \
13         || ENABLE_FEATURE_SEAMLESS_GZ \
14         /* || ENABLE_FEATURE_SEAMLESS_Z */ \
15 )
16
17 #if ZIPPED
18 # include "unarchive.h"
19 #endif
20
21 ssize_t FAST_FUNC safe_read(int fd, void *buf, size_t count)
22 {
23         ssize_t n;
24
25         do {
26                 n = read(fd, buf, count);
27         } while (n < 0 && errno == EINTR);
28
29         return n;
30 }
31
32 /* Suppose that you are a shell. You start child processes.
33  * They work and eventually exit. You want to get user input.
34  * You read stdin. But what happens if last child switched
35  * its stdin into O_NONBLOCK mode?
36  *
37  * *** SURPRISE! It will affect the parent too! ***
38  * *** BIG SURPRISE! It stays even after child exits! ***
39  *
40  * This is a design bug in UNIX API.
41  *      fcntl(0, F_SETFL, fcntl(0, F_GETFL) | O_NONBLOCK);
42  * will set nonblocking mode not only on _your_ stdin, but
43  * also on stdin of your parent, etc.
44  *
45  * In general,
46  *      fd2 = dup(fd1);
47  *      fcntl(fd2, F_SETFL, fcntl(fd2, F_GETFL) | O_NONBLOCK);
48  * sets both fd1 and fd2 to O_NONBLOCK. This includes cases
49  * where duping is done implicitly by fork() etc.
50  *
51  * We need
52  *      fcntl(fd2, F_SETFD, fcntl(fd2, F_GETFD) | O_NONBLOCK);
53  * (note SETFD, not SETFL!) but such thing doesn't exist.
54  *
55  * Alternatively, we need nonblocking_read(fd, ...) which doesn't
56  * require O_NONBLOCK dance at all. Actually, it exists:
57  *      n = recv(fd, buf, len, MSG_DONTWAIT);
58  *      "MSG_DONTWAIT:
59  *      Enables non-blocking operation; if the operation
60  *      would block, EAGAIN is returned."
61  * but recv() works only for sockets!
62  *
63  * So far I don't see any good solution, I can only propose
64  * that affected readers should be careful and use this routine,
65  * which detects EAGAIN and uses poll() to wait on the fd.
66  * Thankfully, poll() doesn't care about O_NONBLOCK flag.
67  */
68 ssize_t FAST_FUNC nonblock_safe_read(int fd, void *buf, size_t count)
69 {
70         struct pollfd pfd[1];
71         ssize_t n;
72
73         while (1) {
74                 n = safe_read(fd, buf, count);
75                 if (n >= 0 || errno != EAGAIN)
76                         return n;
77                 /* fd is in O_NONBLOCK mode. Wait using poll and repeat */
78                 pfd[0].fd = fd;
79                 pfd[0].events = POLLIN;
80                 safe_poll(pfd, 1, -1);
81         }
82 }
83
84 /*
85  * Read all of the supplied buffer from a file.
86  * This does multiple reads as necessary.
87  * Returns the amount read, or -1 on an error.
88  * A short read is returned on an end of file.
89  */
90 ssize_t FAST_FUNC full_read(int fd, void *buf, size_t len)
91 {
92         ssize_t cc;
93         ssize_t total;
94
95         total = 0;
96
97         while (len) {
98                 cc = safe_read(fd, buf, len);
99
100                 if (cc < 0) {
101                         if (total) {
102                                 /* we already have some! */
103                                 /* user can do another read to know the error code */
104                                 return total;
105                         }
106                         return cc; /* read() returns -1 on failure. */
107                 }
108                 if (cc == 0)
109                         break;
110                 buf = ((char *)buf) + cc;
111                 total += cc;
112                 len -= cc;
113         }
114
115         return total;
116 }
117
118 /* Die with an error message if we can't read the entire buffer. */
119 void FAST_FUNC xread(int fd, void *buf, size_t count)
120 {
121         if (count) {
122                 ssize_t size = full_read(fd, buf, count);
123                 if ((size_t)size != count)
124                         bb_error_msg_and_die("short read");
125         }
126 }
127
128 /* Die with an error message if we can't read one character. */
129 unsigned char FAST_FUNC xread_char(int fd)
130 {
131         char tmp;
132         xread(fd, &tmp, 1);
133         return tmp;
134 }
135
136 // Reads one line a-la fgets (but doesn't save terminating '\n').
137 // Reads byte-by-byte. Useful when it is important to not read ahead.
138 // Bytes are appended to pfx (which must be malloced, or NULL).
139 char* FAST_FUNC xmalloc_reads(int fd, char *buf, size_t *maxsz_p)
140 {
141         char *p;
142         size_t sz = buf ? strlen(buf) : 0;
143         size_t maxsz = maxsz_p ? *maxsz_p : (INT_MAX - 4095);
144
145         goto jump_in;
146         while (sz < maxsz) {
147                 if ((size_t)(p - buf) == sz) {
148  jump_in:
149                         buf = xrealloc(buf, sz + 128);
150                         p = buf + sz;
151                         sz += 128;
152                 }
153                 /* nonblock_safe_read() because we are used by e.g. shells */
154                 if (nonblock_safe_read(fd, p, 1) != 1) { /* EOF/error */
155                         if (p == buf) { /* we read nothing */
156                                 free(buf);
157                                 return NULL;
158                         }
159                         break;
160                 }
161                 if (*p == '\n')
162                         break;
163                 p++;
164         }
165         *p = '\0';
166         if (maxsz_p)
167                 *maxsz_p  = p - buf;
168         p++;
169         return xrealloc(buf, p - buf);
170 }
171
172 ssize_t FAST_FUNC read_close(int fd, void *buf, size_t size)
173 {
174         /*int e;*/
175         size = full_read(fd, buf, size);
176         /*e = errno;*/
177         close(fd);
178         /*errno = e;*/
179         return size;
180 }
181
182 ssize_t FAST_FUNC open_read_close(const char *filename, void *buf, size_t size)
183 {
184         int fd = open(filename, O_RDONLY);
185         if (fd < 0)
186                 return fd;
187         return read_close(fd, buf, size);
188 }
189
190
191 // Read (potentially big) files in one go. File size is estimated
192 // by stat. Extra '\0' byte is appended.
193 void* FAST_FUNC xmalloc_read(int fd, size_t *maxsz_p)
194 {
195         char *buf;
196         size_t size, rd_size, total;
197         size_t to_read;
198         struct stat st;
199
200         to_read = maxsz_p ? *maxsz_p : (INT_MAX - 4095); /* max to read */
201
202         /* Estimate file size */
203         st.st_size = 0; /* in case fstat fails, assume 0 */
204         fstat(fd, &st);
205         /* /proc/N/stat files report st_size 0 */
206         /* In order to make such files readable, we add small const */
207         size = (st.st_size | 0x3ff) + 1;
208
209         total = 0;
210         buf = NULL;
211         while (1) {
212                 if (to_read < size)
213                         size = to_read;
214                 buf = xrealloc(buf, total + size + 1);
215                 rd_size = full_read(fd, buf + total, size);
216                 if ((ssize_t)rd_size == (ssize_t)(-1)) { /* error */
217                         free(buf);
218                         return NULL;
219                 }
220                 total += rd_size;
221                 if (rd_size < size) /* EOF */
222                         break;
223                 if (to_read <= rd_size)
224                         break;
225                 to_read -= rd_size;
226                 /* grow by 1/8, but in [1k..64k] bounds */
227                 size = ((total / 8) | 0x3ff) + 1;
228                 if (size > 64*1024)
229                         size = 64*1024;
230         }
231         buf = xrealloc(buf, total + 1);
232         buf[total] = '\0';
233
234         if (maxsz_p)
235                 *maxsz_p = total;
236         return buf;
237 }
238
239 #ifdef USING_LSEEK_TO_GET_SIZE
240 /* Alternatively, file size can be obtained by lseek to the end.
241  * The code is slightly bigger. Retained in case fstat approach
242  * will not work for some weird cases (/proc, block devices, etc).
243  * (NB: lseek also can fail to work for some weird files) */
244
245 // Read (potentially big) files in one go. File size is estimated by
246 // lseek to end.
247 void* FAST_FUNC xmalloc_open_read_close(const char *filename, size_t *maxsz_p)
248 {
249         char *buf;
250         size_t size;
251         int fd;
252         off_t len;
253
254         fd = open(filename, O_RDONLY);
255         if (fd < 0)
256                 return NULL;
257
258         /* /proc/N/stat files report len 0 here */
259         /* In order to make such files readable, we add small const */
260         size = 0x3ff; /* read only 1k on unseekable files */
261         len = lseek(fd, 0, SEEK_END) | 0x3ff; /* + up to 1k */
262         if (len != (off_t)-1) {
263                 xlseek(fd, 0, SEEK_SET);
264                 size = maxsz_p ? *maxsz_p : (INT_MAX - 4095);
265                 if (len < size)
266                         size = len;
267         }
268
269         buf = xmalloc(size + 1);
270         size = read_close(fd, buf, size);
271         if ((ssize_t)size < 0) {
272                 free(buf);
273                 return NULL;
274         }
275         buf = xrealloc(buf, size + 1);
276         buf[size] = '\0';
277
278         if (maxsz_p)
279                 *maxsz_p = size;
280         return buf;
281 }
282 #endif
283
284 // Read (potentially big) files in one go. File size is estimated
285 // by stat.
286 void* FAST_FUNC xmalloc_open_read_close(const char *filename, size_t *maxsz_p)
287 {
288         char *buf;
289         int fd;
290
291         fd = open(filename, O_RDONLY);
292         if (fd < 0)
293                 return NULL;
294
295         buf = xmalloc_read(fd, maxsz_p);
296         close(fd);
297         return buf;
298 }
299
300 void* FAST_FUNC xmalloc_xopen_read_close(const char *filename, size_t *maxsz_p)
301 {
302         void *buf = xmalloc_open_read_close(filename, maxsz_p);
303         if (!buf)
304                 bb_perror_msg_and_die("can't read '%s'", filename);
305         return buf;
306 }
307
308 #if ZIPPED
309 int FAST_FUNC setup_unzip_on_fd(int fd /*, int fail_if_not_detected*/)
310 {
311         const int fail_if_not_detected = 1;
312         unsigned char magic[2];
313 #if BB_MMU
314         IF_DESKTOP(long long) int FAST_FUNC (*xformer)(int src_fd, int dst_fd);
315         enum { xformer_prog = 0 };
316 #else
317         enum { xformer = 0 };
318         const char *xformer_prog;
319 #endif
320
321         /* .gz and .bz2 both have 2-byte signature, and their
322          * unpack_XXX_stream wants this header skipped. */
323         xread(fd, &magic, 2);
324 #if ENABLE_FEATURE_SEAMLESS_GZ
325 # if BB_MMU
326         xformer = unpack_gz_stream;
327 # else
328         xformer_prog = "gunzip";
329 # endif
330 #endif
331         if (!ENABLE_FEATURE_SEAMLESS_GZ
332          || magic[0] != 0x1f || magic[1] != 0x8b
333         ) {
334                 if (!ENABLE_FEATURE_SEAMLESS_BZ2
335                  || magic[0] != 'B' || magic[1] != 'Z'
336                 ) {
337                         if (fail_if_not_detected)
338                                 bb_error_msg_and_die("no gzip"
339                                         IF_FEATURE_SEAMLESS_BZ2("/bzip2")
340                                         " magic");
341                         xlseek(fd, -2, SEEK_CUR);
342                         return fd;
343                 }
344 #if BB_MMU
345                 xformer = unpack_bz2_stream;
346 #else
347                 xformer_prog = "bunzip2";
348 #endif
349         } else {
350 #if !BB_MMU
351                 /* NOMMU version of open_transformer execs
352                  * an external unzipper that wants
353                  * file position at the start of the file */
354                 xlseek(fd, -2, SEEK_CUR);
355 #endif
356         }
357         open_transformer(fd, xformer, xformer_prog);
358
359         return fd;
360 }
361 #endif /* ZIPPED */
362
363 int FAST_FUNC open_zipped(const char *fname)
364 {
365 #if !ZIPPED
366         return open(fname, O_RDONLY);
367 #else
368         char *sfx;
369         int fd;
370
371         fd = open(fname, O_RDONLY);
372         if (fd < 0)
373                 return fd;
374
375         sfx = strrchr(fname, '.');
376         if (sfx) {
377                 if (ENABLE_FEATURE_SEAMLESS_LZMA && strcmp(sfx, ".lzma") == 0)
378                         /* .lzma has no header/signature, just trust it */
379                         open_transformer(fd, unpack_lzma_stream, "unlzma");
380                 else
381                 if ((ENABLE_FEATURE_SEAMLESS_GZ && strcmp(sfx, ".gz") == 0)
382                  || (ENABLE_FEATURE_SEAMLESS_BZ2 && strcmp(sfx, ".bz2") == 0)
383                 ) {
384                         setup_unzip_on_fd(fd /*, fail_if_not_detected: 1*/);
385                 }
386         }
387
388         return fd;
389 #endif
390 }
391
392 void* FAST_FUNC xmalloc_open_zipped_read_close(const char *fname, size_t *maxsz_p)
393 {
394         int fd;
395         char *image;
396
397         fd = open_zipped(fname);
398         if (fd < 0)
399                 return NULL;
400
401         image = xmalloc_read(fd, maxsz_p);
402         if (!image)
403                 bb_perror_msg("read error from '%s'", fname);
404         close(fd);
405
406         return image;
407 }