2004-04-05 21:12:29 +00:00
|
|
|
/*-
|
2007-01-09 08:05:56 +00:00
|
|
|
* Copyright (c) 2003-2007 Tim Kientzle
|
2004-04-05 21:12:29 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
2007-01-09 08:05:56 +00:00
|
|
|
* notice, this list of conditions and the following disclaimer.
|
2004-04-05 21:12:29 +00:00
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "archive_platform.h"
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
2006-11-10 06:39:46 +00:00
|
|
|
#ifdef HAVE_SYS_STAT_H
|
2004-04-05 21:12:29 +00:00
|
|
|
#include <sys/stat.h>
|
2006-11-10 06:39:46 +00:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_ERRNO_H
|
2004-04-05 21:12:29 +00:00
|
|
|
#include <errno.h>
|
2006-11-10 06:39:46 +00:00
|
|
|
#endif
|
2009-12-28 02:28:44 +00:00
|
|
|
#ifdef HAVE_FCNTL_H
|
|
|
|
#include <fcntl.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_IO_H
|
|
|
|
#include <io.h>
|
|
|
|
#endif
|
2006-11-10 06:39:46 +00:00
|
|
|
#ifdef HAVE_STDLIB_H
|
2004-04-05 21:12:29 +00:00
|
|
|
#include <stdlib.h>
|
2006-11-10 06:39:46 +00:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_STRING_H
|
2004-04-05 21:12:29 +00:00
|
|
|
#include <string.h>
|
2006-11-10 06:39:46 +00:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_UNISTD_H
|
2004-04-05 21:12:29 +00:00
|
|
|
#include <unistd.h>
|
2006-11-10 06:39:46 +00:00
|
|
|
#endif
|
2004-04-05 21:12:29 +00:00
|
|
|
|
|
|
|
#include "archive.h"
|
|
|
|
|
|
|
|
struct write_fd_data {
|
|
|
|
int fd;
|
|
|
|
};
|
|
|
|
|
|
|
|
static int file_close(struct archive *, void *);
|
|
|
|
static int file_open(struct archive *, void *);
|
2006-11-26 19:00:50 +00:00
|
|
|
static ssize_t file_write(struct archive *, void *, const void *buff, size_t);
|
2004-04-05 21:12:29 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
archive_write_open_fd(struct archive *a, int fd)
|
|
|
|
{
|
|
|
|
struct write_fd_data *mine;
|
|
|
|
|
2006-11-10 06:39:46 +00:00
|
|
|
mine = (struct write_fd_data *)malloc(sizeof(*mine));
|
2004-04-05 21:12:29 +00:00
|
|
|
if (mine == NULL) {
|
|
|
|
archive_set_error(a, ENOMEM, "No memory");
|
|
|
|
return (ARCHIVE_FATAL);
|
|
|
|
}
|
|
|
|
mine->fd = fd;
|
2009-12-28 02:28:44 +00:00
|
|
|
#if defined(__CYGWIN__) || defined(_WIN32)
|
|
|
|
setmode(mine->fd, O_BINARY);
|
|
|
|
#endif
|
2004-04-05 21:12:29 +00:00
|
|
|
return (archive_write_open(a, mine,
|
|
|
|
file_open, file_write, file_close));
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
file_open(struct archive *a, void *client_data)
|
|
|
|
{
|
|
|
|
struct write_fd_data *mine;
|
2006-11-13 00:26:45 +00:00
|
|
|
struct stat st;
|
2004-04-05 21:12:29 +00:00
|
|
|
|
2006-11-10 06:39:46 +00:00
|
|
|
mine = (struct write_fd_data *)client_data;
|
2004-04-05 21:12:29 +00:00
|
|
|
|
2006-11-13 00:26:45 +00:00
|
|
|
if (fstat(mine->fd, &st) != 0) {
|
|
|
|
archive_set_error(a, errno, "Couldn't stat fd %d", mine->fd);
|
|
|
|
return (ARCHIVE_FATAL);
|
|
|
|
}
|
|
|
|
|
2004-04-05 21:12:29 +00:00
|
|
|
/*
|
2006-11-13 00:26:45 +00:00
|
|
|
* If this is a regular file, don't add it to itself.
|
2004-04-05 21:12:29 +00:00
|
|
|
*/
|
2006-11-13 00:26:45 +00:00
|
|
|
if (S_ISREG(st.st_mode))
|
|
|
|
archive_write_set_skip_file(a, st.st_dev, st.st_ino);
|
2004-04-05 21:12:29 +00:00
|
|
|
|
2006-11-13 00:26:45 +00:00
|
|
|
/*
|
|
|
|
* If client hasn't explicitly set the last block handling,
|
|
|
|
* then set it here.
|
|
|
|
*/
|
|
|
|
if (archive_write_get_bytes_in_last_block(a) < 0) {
|
|
|
|
/* If the output is a block or character device, fifo,
|
|
|
|
* or stdout, pad the last block, otherwise leave it
|
|
|
|
* unpadded. */
|
|
|
|
if (S_ISCHR(st.st_mode) || S_ISBLK(st.st_mode) ||
|
|
|
|
S_ISFIFO(st.st_mode) || (mine->fd == 1))
|
2004-04-05 21:12:29 +00:00
|
|
|
/* Last block will be fully padded. */
|
|
|
|
archive_write_set_bytes_in_last_block(a, 0);
|
2006-11-13 00:26:45 +00:00
|
|
|
else
|
|
|
|
archive_write_set_bytes_in_last_block(a, 1);
|
2004-06-27 18:38:13 +00:00
|
|
|
}
|
|
|
|
|
2004-04-05 21:12:29 +00:00
|
|
|
return (ARCHIVE_OK);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t
|
2006-11-26 19:00:50 +00:00
|
|
|
file_write(struct archive *a, void *client_data, const void *buff, size_t length)
|
2004-04-05 21:12:29 +00:00
|
|
|
{
|
|
|
|
struct write_fd_data *mine;
|
2004-10-17 23:47:30 +00:00
|
|
|
ssize_t bytesWritten;
|
2004-04-05 21:12:29 +00:00
|
|
|
|
2006-11-10 06:39:46 +00:00
|
|
|
mine = (struct write_fd_data *)client_data;
|
2011-08-07 20:24:32 +00:00
|
|
|
for (;;) {
|
|
|
|
bytesWritten = write(mine->fd, buff, length);
|
|
|
|
if (bytesWritten <= 0) {
|
|
|
|
if (errno == EINTR)
|
|
|
|
continue;
|
|
|
|
archive_set_error(a, errno, "Write error");
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
return (bytesWritten);
|
2004-10-17 23:47:30 +00:00
|
|
|
}
|
2004-04-05 21:12:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
file_close(struct archive *a, void *client_data)
|
|
|
|
{
|
2006-11-10 06:39:46 +00:00
|
|
|
struct write_fd_data *mine = (struct write_fd_data *)client_data;
|
2004-04-05 21:12:29 +00:00
|
|
|
|
|
|
|
(void)a; /* UNUSED */
|
|
|
|
free(mine);
|
|
|
|
return (ARCHIVE_OK);
|
|
|
|
}
|