Import libarchive-2.5.5.
[dragonfly.git] / contrib / libarchive-2.1 / libarchive / archive_write.c
blob77e410b1779208c9ba63a4f5e6e3b02704dbf3ef
1 /*-
2 * Copyright (c) 2003-2007 Tim Kientzle
3 * All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
15 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17 * IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
18 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 #include "archive_platform.h"
27 __FBSDID("$FreeBSD: src/lib/libarchive/archive_write.c,v 1.25 2007/03/11 10:29:52 kientzle Exp $");
30 * This file contains the "essential" portions of the write API, that
31 * is, stuff that will essentially always be used by any client that
32 * actually needs to write a archive. Optional pieces have been, as
33 * far as possible, separated out into separate files to reduce
34 * needlessly bloating statically-linked clients.
37 #ifdef HAVE_SYS_WAIT_H
38 #include <sys/wait.h>
39 #endif
40 #ifdef HAVE_LIMITS_H
41 #include <limits.h>
42 #endif
43 #include <stdio.h>
44 #ifdef HAVE_STDLIB_H
45 #include <stdlib.h>
46 #endif
47 #ifdef HAVE_STRING_H
48 #include <string.h>
49 #endif
50 #include <time.h>
51 #ifdef HAVE_UNISTD_H
52 #include <unistd.h>
53 #endif
55 #include "archive.h"
56 #include "archive_entry.h"
57 #include "archive_private.h"
58 #include "archive_write_private.h"
60 static struct archive_vtable *archive_write_vtable(void);
62 static int _archive_write_close(struct archive *);
63 static int _archive_write_finish(struct archive *);
64 static int _archive_write_header(struct archive *, struct archive_entry *);
65 static int _archive_write_finish_entry(struct archive *);
66 static ssize_t _archive_write_data(struct archive *, const void *, size_t);
68 static struct archive_vtable *
69 archive_write_vtable(void)
71 static struct archive_vtable av;
72 static int inited = 0;
74 if (!inited) {
75 av.archive_write_close = _archive_write_close;
76 av.archive_write_finish = _archive_write_finish;
77 av.archive_write_header = _archive_write_header;
78 av.archive_write_finish_entry = _archive_write_finish_entry;
79 av.archive_write_data = _archive_write_data;
81 return (&av);
85 * Allocate, initialize and return an archive object.
87 struct archive *
88 archive_write_new(void)
90 struct archive_write *a;
91 unsigned char *nulls;
93 a = (struct archive_write *)malloc(sizeof(*a));
94 if (a == NULL)
95 return (NULL);
96 memset(a, 0, sizeof(*a));
97 a->archive.magic = ARCHIVE_WRITE_MAGIC;
98 a->archive.state = ARCHIVE_STATE_NEW;
99 a->archive.vtable = archive_write_vtable();
100 a->bytes_per_block = ARCHIVE_DEFAULT_BYTES_PER_BLOCK;
101 a->bytes_in_last_block = -1; /* Default */
103 /* Initialize a block of nulls for padding purposes. */
104 a->null_length = 1024;
105 nulls = (unsigned char *)malloc(a->null_length);
106 if (nulls == NULL) {
107 free(a);
108 return (NULL);
110 memset(nulls, 0, a->null_length);
111 a->nulls = nulls;
113 * Set default compression, but don't set a default format.
114 * Were we to set a default format here, we would force every
115 * client to link in support for that format, even if they didn't
116 * ever use it.
118 archive_write_set_compression_none(&a->archive);
119 return (&a->archive);
123 * Set the block size. Returns 0 if successful.
126 archive_write_set_bytes_per_block(struct archive *_a, int bytes_per_block)
128 struct archive_write *a = (struct archive_write *)_a;
129 __archive_check_magic(&a->archive, ARCHIVE_WRITE_MAGIC,
130 ARCHIVE_STATE_NEW, "archive_write_set_bytes_per_block");
131 a->bytes_per_block = bytes_per_block;
132 return (ARCHIVE_OK);
136 * Get the current block size. -1 if it has never been set.
139 archive_write_get_bytes_per_block(struct archive *_a)
141 struct archive_write *a = (struct archive_write *)_a;
142 __archive_check_magic(&a->archive, ARCHIVE_WRITE_MAGIC,
143 ARCHIVE_STATE_ANY, "archive_write_get_bytes_per_block");
144 return (a->bytes_per_block);
148 * Set the size for the last block.
149 * Returns 0 if successful.
152 archive_write_set_bytes_in_last_block(struct archive *_a, int bytes)
154 struct archive_write *a = (struct archive_write *)_a;
155 __archive_check_magic(&a->archive, ARCHIVE_WRITE_MAGIC,
156 ARCHIVE_STATE_ANY, "archive_write_set_bytes_in_last_block");
157 a->bytes_in_last_block = bytes;
158 return (ARCHIVE_OK);
162 * Return the value set above. -1 indicates it has not been set.
165 archive_write_get_bytes_in_last_block(struct archive *_a)
167 struct archive_write *a = (struct archive_write *)_a;
168 __archive_check_magic(&a->archive, ARCHIVE_WRITE_MAGIC,
169 ARCHIVE_STATE_ANY, "archive_write_get_bytes_in_last_block");
170 return (a->bytes_in_last_block);
175 * dev/ino of a file to be rejected. Used to prevent adding
176 * an archive to itself recursively.
179 archive_write_set_skip_file(struct archive *_a, dev_t d, ino_t i)
181 struct archive_write *a = (struct archive_write *)_a;
182 __archive_check_magic(&a->archive, ARCHIVE_WRITE_MAGIC,
183 ARCHIVE_STATE_ANY, "archive_write_set_skip_file");
184 a->skip_file_dev = d;
185 a->skip_file_ino = i;
186 return (ARCHIVE_OK);
191 * Open the archive using the current settings.
194 archive_write_open(struct archive *_a, void *client_data,
195 archive_open_callback *opener, archive_write_callback *writer,
196 archive_close_callback *closer)
198 struct archive_write *a = (struct archive_write *)_a;
199 int ret;
201 ret = ARCHIVE_OK;
202 __archive_check_magic(&a->archive, ARCHIVE_WRITE_MAGIC,
203 ARCHIVE_STATE_NEW, "archive_write_open");
204 archive_clear_error(&a->archive);
205 a->archive.state = ARCHIVE_STATE_HEADER;
206 a->client_data = client_data;
207 a->client_writer = writer;
208 a->client_opener = opener;
209 a->client_closer = closer;
210 ret = (a->compressor.init)(a);
211 if (a->format_init && ret == ARCHIVE_OK)
212 ret = (a->format_init)(a);
213 return (ret);
218 * Close out the archive.
220 * Be careful: user might just call write_new and then write_finish.
221 * Don't assume we actually wrote anything or performed any non-trivial
222 * initialization.
224 static int
225 _archive_write_close(struct archive *_a)
227 struct archive_write *a = (struct archive_write *)_a;
228 int r = ARCHIVE_OK, r1 = ARCHIVE_OK;
230 __archive_check_magic(&a->archive, ARCHIVE_WRITE_MAGIC,
231 ARCHIVE_STATE_ANY, "archive_write_close");
233 /* Finish the last entry. */
234 if (a->archive.state & ARCHIVE_STATE_DATA)
235 r = ((a->format_finish_entry)(a));
237 /* Finish off the archive. */
238 if (a->format_finish != NULL) {
239 r1 = (a->format_finish)(a);
240 if (r1 < r)
241 r = r1;
244 /* Release format resources. */
245 if (a->format_destroy != NULL) {
246 r1 = (a->format_destroy)(a);
247 if (r1 < r)
248 r = r1;
251 /* Finish the compression and close the stream. */
252 if (a->compressor.finish != NULL) {
253 r1 = (a->compressor.finish)(a);
254 if (r1 < r)
255 r = r1;
258 /* Close out the client stream. */
259 if (a->client_closer != NULL) {
260 r1 = (a->client_closer)(&a->archive, a->client_data);
261 if (r1 < r)
262 r = r1;
265 a->archive.state = ARCHIVE_STATE_CLOSED;
266 return (r);
270 * Destroy the archive structure.
272 static int
273 _archive_write_finish(struct archive *_a)
275 struct archive_write *a = (struct archive_write *)_a;
276 int r = ARCHIVE_OK;
278 __archive_check_magic(&a->archive, ARCHIVE_WRITE_MAGIC,
279 ARCHIVE_STATE_ANY, "archive_write_finish");
280 if (a->archive.state != ARCHIVE_STATE_CLOSED)
281 r = archive_write_close(&a->archive);
283 /* Release various dynamic buffers. */
284 free((void *)(uintptr_t)(const void *)a->nulls);
285 archive_string_free(&a->archive.error_string);
286 a->archive.magic = 0;
287 free(a);
288 return (r);
292 * Write the appropriate header.
294 static int
295 _archive_write_header(struct archive *_a, struct archive_entry *entry)
297 struct archive_write *a = (struct archive_write *)_a;
298 int ret, r2;
300 __archive_check_magic(&a->archive, ARCHIVE_WRITE_MAGIC,
301 ARCHIVE_STATE_DATA | ARCHIVE_STATE_HEADER, "archive_write_header");
302 archive_clear_error(&a->archive);
304 /* In particular, "retry" and "fatal" get returned immediately. */
305 ret = archive_write_finish_entry(&a->archive);
306 if (ret < ARCHIVE_OK && ret != ARCHIVE_WARN)
307 return (ret);
309 if (a->skip_file_dev != 0 &&
310 archive_entry_dev(entry) == a->skip_file_dev &&
311 a->skip_file_ino != 0 &&
312 archive_entry_ino(entry) == a->skip_file_ino) {
313 archive_set_error(&a->archive, 0,
314 "Can't add archive to itself");
315 return (ARCHIVE_FAILED);
318 /* Format and write header. */
319 r2 = ((a->format_write_header)(a, entry));
320 if (r2 < ret)
321 ret = r2;
323 a->archive.state = ARCHIVE_STATE_DATA;
324 return (ret);
327 static int
328 _archive_write_finish_entry(struct archive *_a)
330 struct archive_write *a = (struct archive_write *)_a;
331 int ret = ARCHIVE_OK;
333 __archive_check_magic(&a->archive, ARCHIVE_WRITE_MAGIC,
334 ARCHIVE_STATE_HEADER | ARCHIVE_STATE_DATA,
335 "archive_write_finish_entry");
336 if (a->archive.state & ARCHIVE_STATE_DATA)
337 ret = (a->format_finish_entry)(a);
338 a->archive.state = ARCHIVE_STATE_HEADER;
339 return (ret);
343 * Note that the compressor is responsible for blocking.
345 static ssize_t
346 _archive_write_data(struct archive *_a, const void *buff, size_t s)
348 struct archive_write *a = (struct archive_write *)_a;
349 __archive_check_magic(&a->archive, ARCHIVE_WRITE_MAGIC,
350 ARCHIVE_STATE_DATA, "archive_write_data");
351 archive_clear_error(&a->archive);
352 return ((a->format_write_data)(a, buff, s));