2001-05-15 17:48:09 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Utility routines.
|
|
|
|
*
|
2005-04-16 07:46:53 +00:00
|
|
|
* Copyright (C) 1999-2005 by Erik Andersen <andersen@codepoet.org>
|
2001-05-15 17:48:09 +00:00
|
|
|
*
|
2005-11-04 01:20:46 +00:00
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
2001-05-15 17:48:09 +00:00
|
|
|
*/
|
|
|
|
|
2005-04-16 07:46:53 +00:00
|
|
|
#include "libbb.h"
|
2001-05-15 17:48:09 +00:00
|
|
|
|
2007-04-11 23:20:53 +00:00
|
|
|
/* Used by NOFORK applets (e.g. cat) - must not use xmalloc */
|
2003-11-22 02:13:41 +00:00
|
|
|
|
2006-10-08 17:54:47 +00:00
|
|
|
static off_t bb_full_fd_action(int src_fd, int dst_fd, off_t size)
|
2001-05-15 17:48:09 +00:00
|
|
|
{
|
2005-11-04 01:20:46 +00:00
|
|
|
int status = -1;
|
2006-10-08 17:54:47 +00:00
|
|
|
off_t total = 0;
|
2007-12-02 03:27:42 +00:00
|
|
|
#if CONFIG_FEATURE_COPYBUF_KB <= 4
|
|
|
|
char buffer[CONFIG_FEATURE_COPYBUF_KB * 1024];
|
|
|
|
enum { buffer_size = sizeof(buffer) };
|
|
|
|
#else
|
|
|
|
char *buffer;
|
|
|
|
int buffer_size;
|
|
|
|
|
2007-12-02 07:18:29 +00:00
|
|
|
/* We want page-aligned buffer, just in case kernel is clever
|
|
|
|
* and can do page-aligned io more efficiently */
|
2007-12-02 03:27:42 +00:00
|
|
|
buffer = mmap(NULL, CONFIG_FEATURE_COPYBUF_KB * 1024,
|
|
|
|
PROT_READ | PROT_WRITE,
|
|
|
|
MAP_PRIVATE | MAP_ANON,
|
|
|
|
/* ignored: */ -1, 0);
|
|
|
|
buffer_size = CONFIG_FEATURE_COPYBUF_KB * 1024;
|
|
|
|
if (buffer == MAP_FAILED) {
|
|
|
|
buffer = alloca(4 * 1024);
|
|
|
|
buffer_size = 4 * 1024;
|
|
|
|
}
|
|
|
|
#endif
|
2002-12-13 08:20:44 +00:00
|
|
|
|
2007-04-10 15:43:37 +00:00
|
|
|
if (src_fd < 0)
|
|
|
|
goto out;
|
2006-01-25 00:08:53 +00:00
|
|
|
|
2006-11-25 23:50:28 +00:00
|
|
|
if (!size) {
|
2007-12-02 03:27:42 +00:00
|
|
|
size = buffer_size;
|
2006-11-25 23:50:28 +00:00
|
|
|
status = 1; /* copy until eof */
|
|
|
|
}
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
ssize_t rd;
|
2005-11-12 11:04:11 +00:00
|
|
|
|
2007-12-02 03:27:42 +00:00
|
|
|
rd = safe_read(src_fd, buffer, size > buffer_size ? buffer_size : size);
|
2006-11-25 23:50:28 +00:00
|
|
|
|
2006-12-22 00:21:07 +00:00
|
|
|
if (!rd) { /* eof - all done */
|
2006-11-25 23:50:28 +00:00
|
|
|
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 08:14:35 +00:00
|
|
|
if (wr < rd) {
|
2005-11-04 01:20:46 +00:00
|
|
|
bb_perror_msg(bb_msg_write_error);
|
2003-03-19 09:13:01 +00:00
|
|
|
break;
|
|
|
|
}
|
2006-11-25 23:50:28 +00:00
|
|
|
}
|
|
|
|
total += rd;
|
2006-12-22 00:21:07 +00:00
|
|
|
if (status < 0) { /* if we aren't copying till EOF... */
|
2006-11-25 23:50:28 +00:00
|
|
|
size -= rd;
|
|
|
|
if (!size) {
|
2006-12-22 00:21:07 +00:00
|
|
|
/* 'size' bytes copied - all done */
|
2007-01-11 17:20:00 +00:00
|
|
|
status = 0;
|
2006-11-25 23:50:28 +00:00
|
|
|
break;
|
|
|
|
}
|
2003-11-21 22:24:57 +00:00
|
|
|
}
|
|
|
|
}
|
2006-12-22 00:21:07 +00:00
|
|
|
out:
|
2007-12-02 03:27:42 +00:00
|
|
|
|
|
|
|
#if CONFIG_FEATURE_COPYBUF_KB > 4
|
|
|
|
if (buffer_size != 4 * 1024)
|
|
|
|
munmap(buffer, buffer_size);
|
|
|
|
#endif
|
2006-11-25 23:50:28 +00:00
|
|
|
return status ? -1 : total;
|
2003-11-21 22:24:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-22 00:21:07 +00:00
|
|
|
#if 0
|
2008-06-27 02:52:20 +00:00
|
|
|
void FAST_FUNC complain_copyfd_and_die(off_t sz)
|
2006-12-22 00:21:07 +00:00
|
|
|
{
|
|
|
|
if (sz != -1)
|
|
|
|
bb_error_msg_and_die("short read");
|
|
|
|
/* if sz == -1, bb_copyfd_XX already complained */
|
2007-04-10 21:38:30 +00:00
|
|
|
xfunc_die();
|
2006-12-22 00:21:07 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2008-06-27 02:52:20 +00:00
|
|
|
off_t FAST_FUNC bb_copyfd_size(int fd1, int fd2, off_t size)
|
2003-11-21 22:24:57 +00:00
|
|
|
{
|
2003-11-24 23:50:07 +00:00
|
|
|
if (size) {
|
2006-09-17 15:45:48 +00:00
|
|
|
return bb_full_fd_action(fd1, fd2, size);
|
2003-11-24 23:50:07 +00:00
|
|
|
}
|
2006-09-17 15:45:48 +00:00
|
|
|
return 0;
|
2003-11-21 22:24:57 +00:00
|
|
|
}
|
|
|
|
|
2008-06-27 02:52:20 +00:00
|
|
|
void FAST_FUNC bb_copyfd_exact_size(int fd1, int fd2, off_t size)
|
2006-12-22 00:21:07 +00:00
|
|
|
{
|
|
|
|
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-10 21:38:30 +00:00
|
|
|
xfunc_die();
|
2006-12-22 00:21:07 +00:00
|
|
|
}
|
|
|
|
|
2008-06-27 02:52:20 +00:00
|
|
|
off_t FAST_FUNC bb_copyfd_eof(int fd1, int fd2)
|
2003-11-21 22:24:57 +00:00
|
|
|
{
|
2006-09-17 15:45:48 +00:00
|
|
|
return bb_full_fd_action(fd1, fd2, 0);
|
2001-05-15 17:48:09 +00:00
|
|
|
}
|