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
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <errno.h>
|
2003-11-22 07:43:41 +05:30
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
#include "busybox.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-04-16 13:16:53 +05:30
|
|
|
static size_t bb_full_fd_action(int src_fd, int dst_fd, const size_t size2)
|
2001-05-15 23:18:09 +05:30
|
|
|
{
|
2005-04-16 13:16:53 +05:30
|
|
|
int status;
|
|
|
|
size_t xread, wrote, total, size = size2;
|
2002-12-13 13:50:44 +05:30
|
|
|
|
2005-04-27 16:21:38 +05:30
|
|
|
if (src_fd < 0) {
|
2005-04-16 13:16:53 +05:30
|
|
|
return -1;
|
|
|
|
}
|
2002-12-13 13:50:44 +05:30
|
|
|
|
2005-04-16 13:16:53 +05:30
|
|
|
if (size == 0) {
|
|
|
|
/* If size is 0 copy until EOF */
|
|
|
|
size = ULONG_MAX;
|
|
|
|
}
|
2002-12-13 13:50:44 +05:30
|
|
|
|
2005-04-16 13:16:53 +05:30
|
|
|
{
|
|
|
|
RESERVE_CONFIG_BUFFER(buffer,BUFSIZ);
|
|
|
|
total = 0;
|
|
|
|
wrote = 0;
|
|
|
|
status = -1;
|
|
|
|
while (total < size)
|
|
|
|
{
|
|
|
|
xread = BUFSIZ;
|
2005-04-27 16:21:38 +05:30
|
|
|
if (size < (total + BUFSIZ))
|
|
|
|
xread = size - total;
|
2005-04-16 13:16:53 +05:30
|
|
|
xread = bb_full_read(src_fd, buffer, xread);
|
|
|
|
if (xread > 0) {
|
2005-04-27 16:21:38 +05:30
|
|
|
if (dst_fd < 0) {
|
|
|
|
/* A -1 dst_fd means we need to fake it... */
|
|
|
|
wrote = xread;
|
|
|
|
} else {
|
|
|
|
wrote = bb_full_write(dst_fd, buffer, xread);
|
|
|
|
}
|
2005-04-16 13:16:53 +05:30
|
|
|
if (wrote < xread) {
|
|
|
|
bb_perror_msg(bb_msg_write_error);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
total += wrote;
|
|
|
|
} else if (xread < 0) {
|
|
|
|
bb_perror_msg(bb_msg_read_error);
|
|
|
|
break;
|
|
|
|
} else if (xread == 0) {
|
|
|
|
/* All done. */
|
|
|
|
status = 0;
|
2003-03-19 14:43:01 +05:30
|
|
|
break;
|
|
|
|
}
|
2003-11-22 03:54:57 +05:30
|
|
|
}
|
2005-04-16 13:16:53 +05:30
|
|
|
RELEASE_CONFIG_BUFFER(buffer);
|
2003-11-22 03:54:57 +05:30
|
|
|
}
|
|
|
|
|
2005-04-27 16:21:38 +05:30
|
|
|
if (status == 0 || total)
|
|
|
|
return total;
|
2005-04-16 13:16:53 +05:30
|
|
|
/* Some sortof error occured */
|
|
|
|
return -1;
|
2003-11-22 03:54:57 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
extern int bb_copyfd_size(int fd1, int fd2, const off_t size)
|
|
|
|
{
|
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
|
|
|
}
|
|
|
|
|
|
|
|
extern int bb_copyfd_eof(int fd1, int fd2)
|
|
|
|
{
|
2004-02-21 14:50:56 +05:30
|
|
|
return(bb_full_fd_action(fd1, fd2, 0));
|
2001-05-15 23:18:09 +05:30
|
|
|
}
|