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
|
|
|
*/
|
|
|
|
|
|
|
|
#include <errno.h>
|
2003-11-22 07:43:41 +05:30
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2005-04-16 13:16:53 +05:30
|
|
|
#include "libbb.h"
|
2001-05-15 23:18:09 +05:30
|
|
|
|
2003-11-22 07:43:41 +05:30
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
#if BUFSIZ < 4096
|
|
|
|
#undef BUFSIZ
|
|
|
|
#define BUFSIZ 4096
|
|
|
|
#endif
|
|
|
|
|
2003-11-22 07:43:41 +05:30
|
|
|
|
2005-11-04 06:50:46 +05:30
|
|
|
static ssize_t bb_full_fd_action(int src_fd, int dst_fd, size_t size)
|
2001-05-15 23:18:09 +05:30
|
|
|
{
|
2005-11-04 06:50:46 +05:30
|
|
|
int status = -1;
|
|
|
|
size_t total = 0;
|
|
|
|
RESERVE_CONFIG_BUFFER(buffer,BUFSIZ);
|
2002-12-13 13:50:44 +05:30
|
|
|
|
2005-11-04 06:50:46 +05:30
|
|
|
if (src_fd < 0) goto out;
|
|
|
|
while (!size || total < size)
|
2005-04-16 13:16:53 +05:30
|
|
|
{
|
2005-11-12 16:34:11 +05:30
|
|
|
ssize_t wrote, xread;
|
2006-01-25 05:38:53 +05:30
|
|
|
|
2005-11-12 16:34:11 +05:30
|
|
|
xread = safe_read(src_fd, buffer,
|
|
|
|
(!size || size - total > BUFSIZ) ? BUFSIZ : size - total);
|
|
|
|
|
2005-11-04 06:50:46 +05:30
|
|
|
if (xread > 0) {
|
|
|
|
/* A -1 dst_fd means we need to fake it... */
|
|
|
|
wrote = (dst_fd < 0) ? xread : bb_full_write(dst_fd, buffer, xread);
|
|
|
|
if (wrote < xread) {
|
|
|
|
bb_perror_msg(bb_msg_write_error);
|
2003-03-19 14:43:01 +05:30
|
|
|
break;
|
|
|
|
}
|
2005-11-04 06:50:46 +05:30
|
|
|
total += wrote;
|
2006-02-14 01:10:43 +05:30
|
|
|
if (total == size) status = 0;
|
2005-11-04 06:50:46 +05:30
|
|
|
} else if (xread < 0) {
|
|
|
|
bb_perror_msg(bb_msg_read_error);
|
|
|
|
break;
|
|
|
|
} else if (xread == 0) {
|
|
|
|
/* All done. */
|
|
|
|
status = 0;
|
|
|
|
break;
|
2003-11-22 03:54:57 +05:30
|
|
|
}
|
|
|
|
}
|
2006-01-25 05:38:53 +05:30
|
|
|
|
2005-11-04 06:50:46 +05:30
|
|
|
out:
|
|
|
|
RELEASE_CONFIG_BUFFER(buffer);
|
2003-11-22 03:54:57 +05:30
|
|
|
|
2006-01-31 17:42:15 +05:30
|
|
|
return status ? status : (ssize_t)total;
|
2003-11-22 03:54:57 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-03-07 02:17:33 +05:30
|
|
|
int bb_copyfd_size(int fd1, int fd2, const off_t size)
|
2003-11-22 03:54:57 +05:30
|
|
|
{
|
2003-11-25 05:20:07 +05:30
|
|
|
if (size) {
|
2004-02-21 14:50:56 +05:30
|
|
|
return(bb_full_fd_action(fd1, fd2, size));
|
2003-11-25 05:20:07 +05:30
|
|
|
}
|
|
|
|
return(0);
|
2003-11-22 03:54:57 +05:30
|
|
|
}
|
|
|
|
|
2006-03-07 02:17:33 +05:30
|
|
|
int bb_copyfd_eof(int fd1, int fd2)
|
2003-11-22 03:54:57 +05:30
|
|
|
{
|
2004-02-21 14:50:56 +05:30
|
|
|
return(bb_full_fd_action(fd1, fd2, 0));
|
2001-05-15 23:18:09 +05:30
|
|
|
}
|