2001-05-15 23:18:09 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Utility routines.
|
|
|
|
*
|
2005-04-16 13:16:53 +05:30
|
|
|
* Copyright (C) 1999-2005 by Erik Andersen <andersen@codepoet.org>
|
2001-05-15 23:18:09 +05:30
|
|
|
*
|
2005-11-04 06:50:46 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
2001-05-15 23:18:09 +05:30
|
|
|
*/
|
|
|
|
|
2005-04-16 13:16:53 +05:30
|
|
|
#include "libbb.h"
|
2001-05-15 23:18:09 +05:30
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
#if BUFSIZ < 4096
|
|
|
|
#undef BUFSIZ
|
|
|
|
#define BUFSIZ 4096
|
|
|
|
#endif
|
|
|
|
|
2007-04-10 21:13:37 +05:30
|
|
|
/* Used by NOFORK applets (e.g. cat) - must be very careful
|
|
|
|
* when calling xfuncs, allocating memory, with signals, termios, etc... */
|
2003-11-22 07:43:41 +05:30
|
|
|
|
2006-10-08 23:24:47 +05:30
|
|
|
static off_t bb_full_fd_action(int src_fd, int dst_fd, off_t size)
|
2001-05-15 23:18:09 +05:30
|
|
|
{
|
2005-11-04 06:50:46 +05:30
|
|
|
int status = -1;
|
2006-10-08 23:24:47 +05:30
|
|
|
off_t total = 0;
|
2006-11-26 05:20:28 +05:30
|
|
|
RESERVE_CONFIG_BUFFER(buffer, BUFSIZ);
|
2002-12-13 13:50:44 +05:30
|
|
|
|
2007-04-10 21:13:37 +05:30
|
|
|
if (src_fd < 0)
|
|
|
|
goto out;
|
2006-01-25 05:38:53 +05:30
|
|
|
|
2006-11-26 05:20:28 +05:30
|
|
|
if (!size) {
|
|
|
|
size = BUFSIZ;
|
|
|
|
status = 1; /* copy until eof */
|
|
|
|
}
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
ssize_t rd;
|
2005-11-12 16:34:11 +05:30
|
|
|
|
2006-11-26 05:20:28 +05:30
|
|
|
rd = safe_read(src_fd, buffer, size > BUFSIZ ? BUFSIZ : size);
|
|
|
|
|
2006-12-22 05:51:07 +05:30
|
|
|
if (!rd) { /* eof - all done */
|
2006-11-26 05:20:28 +05:30
|
|
|
status = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (rd < 0) {
|
|
|
|
bb_perror_msg(bb_msg_read_error);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* dst_fd == -1 is a fake, else... */
|
|
|
|
if (dst_fd >= 0) {
|
|
|
|
ssize_t wr = full_write(dst_fd, buffer, rd);
|
2006-07-16 13:44:35 +05:30
|
|
|
if (wr < rd) {
|
2005-11-04 06:50:46 +05:30
|
|
|
bb_perror_msg(bb_msg_write_error);
|
2003-03-19 14:43:01 +05:30
|
|
|
break;
|
|
|
|
}
|
2006-11-26 05:20:28 +05:30
|
|
|
}
|
|
|
|
total += rd;
|
2006-12-22 05:51:07 +05:30
|
|
|
if (status < 0) { /* if we aren't copying till EOF... */
|
2006-11-26 05:20:28 +05:30
|
|
|
size -= rd;
|
|
|
|
if (!size) {
|
2006-12-22 05:51:07 +05:30
|
|
|
/* 'size' bytes copied - all done */
|
2007-01-11 22:50:00 +05:30
|
|
|
status = 0;
|
2006-11-26 05:20:28 +05:30
|
|
|
break;
|
|
|
|
}
|
2003-11-22 03:54:57 +05:30
|
|
|
}
|
|
|
|
}
|
2006-12-22 05:51:07 +05:30
|
|
|
out:
|
2005-11-04 06:50:46 +05:30
|
|
|
RELEASE_CONFIG_BUFFER(buffer);
|
2006-11-26 05:20:28 +05:30
|
|
|
return status ? -1 : total;
|
2003-11-22 03:54:57 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-22 05:51:07 +05:30
|
|
|
#if 0
|
|
|
|
void complain_copyfd_and_die(off_t sz)
|
|
|
|
{
|
|
|
|
if (sz != -1)
|
|
|
|
bb_error_msg_and_die("short read");
|
|
|
|
/* if sz == -1, bb_copyfd_XX already complained */
|
2007-04-11 03:08:30 +05:30
|
|
|
xfunc_die();
|
2006-12-22 05:51:07 +05:30
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2006-10-08 23:24:47 +05:30
|
|
|
off_t bb_copyfd_size(int fd1, int fd2, off_t size)
|
2003-11-22 03:54:57 +05:30
|
|
|
{
|
2003-11-25 05:20:07 +05:30
|
|
|
if (size) {
|
2006-09-17 21:15:48 +05:30
|
|
|
return bb_full_fd_action(fd1, fd2, size);
|
2003-11-25 05:20:07 +05:30
|
|
|
}
|
2006-09-17 21:15:48 +05:30
|
|
|
return 0;
|
2003-11-22 03:54:57 +05:30
|
|
|
}
|
|
|
|
|
2006-12-22 05:51:07 +05:30
|
|
|
void bb_copyfd_exact_size(int fd1, int fd2, off_t size)
|
|
|
|
{
|
|
|
|
off_t sz = bb_copyfd_size(fd1, fd2, size);
|
|
|
|
if (sz == size)
|
|
|
|
return;
|
|
|
|
if (sz != -1)
|
|
|
|
bb_error_msg_and_die("short read");
|
|
|
|
/* if sz == -1, bb_copyfd_XX already complained */
|
2007-04-11 03:08:30 +05:30
|
|
|
xfunc_die();
|
2006-12-22 05:51:07 +05:30
|
|
|
}
|
|
|
|
|
2006-10-08 23:24:47 +05:30
|
|
|
off_t bb_copyfd_eof(int fd1, int fd2)
|
2003-11-22 03:54:57 +05:30
|
|
|
{
|
2006-09-17 21:15:48 +05:30
|
|
|
return bb_full_fd_action(fd1, fd2, 0);
|
2001-05-15 23:18:09 +05:30
|
|
|
}
|