blob: 0787c812f3b9bbfbb7a5dbcd5ffd81833b3abb01 [file] [log] [blame]
Eric Andersen55f98722001-05-15 17:48:09 +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 Andersen55f98722001-05-15 17:48:09 +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
20 */
21
22#include <unistd.h>
23#include <string.h>
24#include <errno.h>
Manuel Novoa III cad53642003-03-19 09:13:01 +000025#include "busybox.h"
Eric Andersen55f98722001-05-15 17:48:09 +000026
Manuel Novoa III cad53642003-03-19 09:13:01 +000027#if BUFSIZ < 4096
28#undef BUFSIZ
29#define BUFSIZ 4096
30#endif
31
Glenn L McGrath7ffe1332003-11-21 22:24:57 +000032/* If size is 0 copy until EOF */
33extern size_t bb_full_fd_action(int src_fd, int dst_fd, const size_t size, ssize_t (*action)(int fd, const void *, size_t))
Eric Andersen55f98722001-05-15 17:48:09 +000034{
Glenn L McGrath7ffe1332003-11-21 22:24:57 +000035 size_t read_total = 0;
Manuel Novoa III cad53642003-03-19 09:13:01 +000036 RESERVE_CONFIG_BUFFER(buffer,BUFSIZ);
Eric Andersen55f98722001-05-15 17:48:09 +000037
Glenn L McGrath7ffe1332003-11-21 22:24:57 +000038 while ((size == 0) || (read_total < size)) {
39 size_t read_try;
40 ssize_t read_actual;
Matt Kraaid6ef0742001-05-18 14:14:55 +000041
Glenn L McGrath7ffe1332003-11-21 22:24:57 +000042 if ((size == 0) || (size - read_total > BUFSIZ)) {
43 read_try = BUFSIZ;
44 } else {
45 read_try = size - read_total;
Glenn L McGrath25fe94f2002-12-13 08:20:44 +000046 }
47
Glenn L McGrath7ffe1332003-11-21 22:24:57 +000048 read_actual = safe_read(src_fd, buffer, read_try);
49 if (read_actual > 0) {
50 if (action && (action(dst_fd, buffer, (size_t) read_actual) != read_actual)) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000051 bb_perror_msg(bb_msg_write_error); /* match Read error below */
52 break;
Glenn L McGrath25fe94f2002-12-13 08:20:44 +000053 }
Glenn L McGrath7ffe1332003-11-21 22:24:57 +000054 }
55 else if (read_actual == 0) {
56 if (size) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000057 bb_error_msg("Unable to read all data");
Manuel Novoa III cad53642003-03-19 09:13:01 +000058 }
Glenn L McGrath7ffe1332003-11-21 22:24:57 +000059 break;
60 } else {
61 /* read_actual < 0 */
62 bb_perror_msg("Read error");
Manuel Novoa III cad53642003-03-19 09:13:01 +000063 break;
Glenn L McGrath25fe94f2002-12-13 08:20:44 +000064 }
65
Glenn L McGrath7ffe1332003-11-21 22:24:57 +000066 read_total += read_actual;
67 }
Glenn L McGrath25fe94f2002-12-13 08:20:44 +000068
Glenn L McGrath7ffe1332003-11-21 22:24:57 +000069 RELEASE_CONFIG_BUFFER(buffer);
70
71 return(read_total);
72}
73
74
75extern int bb_copyfd_size(int fd1, int fd2, const off_t size)
76{
77 return(bb_full_fd_action(fd1, fd2, size, bb_full_write));
78}
79
80extern int bb_copyfd_eof(int fd1, int fd2)
81{
82 return(bb_full_fd_action(fd1, fd2, 0, bb_full_write));
Eric Andersen55f98722001-05-15 17:48:09 +000083}