blob: f4b332dcafb0db16f1874b26b64d49aafa83f56d [file] [log] [blame]
Eric Andersenaad1a882001-03-16 22:47:14 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Utility routines.
4 *
Eric Andersencb81e642003-07-14 21:21:08 +00005 * Copyright (C) 1999-2003 by Erik Andersen <andersen@codepoet.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
22#include <stdio.h>
23#include <unistd.h>
24#include "libbb.h"
25
Eric Andersenaad1a882001-03-16 22:47:14 +000026/*
27 * Read all of the supplied buffer from a file.
28 * This does multiple reads as necessary.
29 * Returns the amount read, or -1 on an error.
30 * A short read is returned on an end of file.
31 */
Manuel Novoa III cad53642003-03-19 09:13:01 +000032ssize_t bb_full_read(int fd, void *buf, size_t len)
Eric Andersenaad1a882001-03-16 22:47:14 +000033{
Manuel Novoa III cad53642003-03-19 09:13:01 +000034 ssize_t cc;
35 ssize_t total;
Eric Andersenaad1a882001-03-16 22:47:14 +000036
37 total = 0;
38
39 while (len > 0) {
Eric Andersena5c48842003-07-03 09:48:07 +000040 cc = safe_read(fd, buf, len);
Eric Andersenaad1a882001-03-16 22:47:14 +000041
42 if (cc < 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +000043 return cc; /* read() returns -1 on failure. */
Eric Andersenaad1a882001-03-16 22:47:14 +000044
45 if (cc == 0)
46 break;
47
Manuel Novoa III cad53642003-03-19 09:13:01 +000048 buf = ((char *)buf) + cc;
Eric Andersenaad1a882001-03-16 22:47:14 +000049 total += cc;
50 len -= cc;
51 }
52
53 return total;
54}
55
56/* END CODE */
57/*
58Local Variables:
59c-file-style: "linux"
60c-basic-offset: 4
61tab-width: 4
62End:
63*/