]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libarchive/archive_write.3
This commit was generated by cvs2svn to compensate for changes in r165009,
[FreeBSD/FreeBSD.git] / lib / libarchive / archive_write.3
1 .\" Copyright (c) 2003-2006 Tim Kientzle
2 .\" All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\"
13 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
17 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23 .\" SUCH DAMAGE.
24 .\"
25 .\" $FreeBSD$
26 .\"
27 .Dd August 19, 2006
28 .Dt archive_write 3
29 .Os
30 .Sh NAME
31 .Nm archive_write_new ,
32 .Nm archive_write_set_format_cpio ,
33 .Nm archive_write_set_format_pax ,
34 .Nm archive_write_set_format_pax_restricted ,
35 .Nm archive_write_set_format_shar ,
36 .Nm archive_write_set_format_shar_binary ,
37 .Nm archive_write_set_format_ustar ,
38 .Nm archive_write_get_bytes_per_block ,
39 .Nm archive_write_set_bytes_per_block ,
40 .Nm archive_write_set_bytes_in_last_block ,
41 .Nm archive_write_set_compressor_gzip ,
42 .Nm archive_write_set_compressor_bzip2 ,
43 .Nm archive_write_open ,
44 .Nm archive_write_open_fd ,
45 .Nm archive_write_open_FILE ,
46 .Nm archive_write_open_filename ,
47 .Nm archive_write_open_memory ,
48 .Nm archive_write_header ,
49 .Nm archive_write_data ,
50 .Nm archive_write_finish_entry ,
51 .Nm archive_write_close ,
52 .Nm archive_write_finish
53 .Nd functions for creating archives
54 .Sh SYNOPSIS
55 .In archive.h
56 .Ft struct archive *
57 .Fn archive_write_new "void"
58 .Ft int
59 .Fn archive_write_get_bytes_per_block "struct archive *"
60 .Ft int
61 .Fn archive_write_set_bytes_per_block "struct archive *" "int bytes_per_block"
62 .Ft int
63 .Fn archive_write_set_bytes_in_last_block "struct archive *" "int"
64 .Ft int
65 .Fn archive_write_set_compressor_gzip "struct archive *"
66 .Ft int
67 .Fn archive_write_set_compressor_bzip2 "struct archive *"
68 .Ft int
69 .Fn archive_write_set_format_cpio "struct archive *"
70 .Ft int
71 .Fn archive_write_set_format_pax "struct archive *"
72 .Ft int
73 .Fn archive_write_set_format_pax_restricted "struct archive *"
74 .Ft int
75 .Fn archive_write_set_format_shar "struct archive *"
76 .Ft int
77 .Fn archive_write_set_format_shar_binary "struct archive *"
78 .Ft int
79 .Fn archive_write_set_format_ustar "struct archive *"
80 .Ft int
81 .Fn archive_write_open "struct archive *" "void *client_data" "archive_open_callback *" "archive_write_callback *" "archive_close_callback *"
82 .Ft int
83 .Fn archive_write_open_fd "struct archive *" "int fd"
84 .Ft int
85 .Fn archive_write_open_FILE "struct archive *" "FILE *file"
86 .Ft int
87 .Fn archive_write_open_filename "struct archive *" "const char *filename"
88 .Ft int
89 .Fn archive_write_open_memory "struct archive *" "void *buffer" "size_t bufferSize" "size_t *outUsed"
90 .Ft int
91 .Fn archive_write_header "struct archive *" "struct archive_entry *"
92 .Ft int
93 .Fn archive_write_data "struct archive *" "const void *" "size_t"
94 .Ft int
95 .Fn archive_write_finish_entry "struct archive *"
96 .Ft int
97 .Fn archive_write_close "struct archive *"
98 .Ft void
99 .Fn archive_write_finish "struct archive *"
100 .Sh DESCRIPTION
101 These functions provide a complete API for creating streaming
102 archive files.
103 The general process is to first create the
104 .Tn struct archive
105 object, set any desired options, initialize the archive, append entries, then
106 close the archive and release all resources.
107 The following summary describes the functions in approximately
108 the order they are ordinarily used:
109 .Bl -tag -width indent
110 .It Fn archive_write_new
111 Allocates and initializes a
112 .Tn struct archive
113 object suitable for writing a tar archive.
114 .It Fn archive_write_set_bytes_per_block
115 Sets the block size used for writing the archive data.
116 Every call to the write callback function, except possibly the last one, will
117 use this value for the length.
118 The third parameter is a boolean that specifies whether or not the final block
119 written will be padded to the full block size.
120 If it is zero, the last block will not be padded.
121 If it is non-zero, padding will be added both before and after compression.
122 The default is to use a block size of 10240 bytes and to pad the last block.
123 Note that a block size of zero will suppress internal blocking
124 and cause writes to be sent directly to the write callback as they occur.
125 .It Fn archive_write_get_bytes_per_block
126 Retrieve the block size to be used for writing.
127 A value of -1 here indicates that the library should use default values.
128 A value of zero indicates that internal blocking is suppressed.
129 .It Fn archive_write_set_bytes_in_last_block
130 Sets the block size used for writing the last block.
131 If this value is zero, the last block will be padded to the same size
132 as the other blocks.
133 Otherwise, the final block will be padded to a multiple of this size.
134 In particular, setting it to 1 will cause the final block to not be padded.
135 For compressed output, any padding generated by this option
136 is applied only after the compression.
137 The uncompressed data is always unpadded.
138 The default is to pad the last block to the full block size (note that
139 .Fn archive_write_open_filename
140 will set this based on the file type).
141 Unlike the other
142 .Dq set
143 functions, this function can be called after the archive is opened.
144 .It Fn archive_write_get_bytes_in_last_block
145 Retrieve the currently-set value for last block size.
146 A value of -1 here indicates that the library should use default values.
147 .It Fn archive_write_set_format_cpio , Fn archive_write_set_format_pax , Fn archive_write_set_format_pax_restricted , Fn archive_write_set_format_shar , Fn archive_write_set_format_shar_binary , Fn archive_write_set_format_ustar
148 Sets the format that will be used for the archive.
149 The library can write
150 POSIX octet-oriented cpio format archives,
151 POSIX-standard
152 .Dq pax interchange
153 format archives,
154 traditional
155 .Dq shar
156 archives,
157 enhanced
158 .Dq binary
159 shar archives that store a variety of file attributes and handle binary files,
160 and
161 POSIX-standard
162 .Dq ustar
163 archives.
164 The pax interchange format is a backwards-compatible tar format that
165 adds key/value attributes to each entry and supports arbitrary
166 filenames, linknames, uids, sizes, etc.
167 .Dq Restricted pax interchange format
168 is the library default; this is the same as pax format, but suppresses
169 the pax extended header for most normal files.
170 In most cases, this will result in ordinary ustar archives.
171 .It Fn archive_write_set_compression_gzip , Fn archive_write_set_compression_bzip2
172 The resulting archive will be compressed as specified.
173 Note that the compressed output is always properly blocked.
174 .It Fn archive_write_open
175 Freeze the settings, open the archive, and prepare for writing entries.
176 This is the most generic form of this function, which accepts
177 pointers to three callback functions which will be invoked by
178 the compression layer to write the constructed archive.
179 .It Fn archive_write_open_fd
180 A convenience form of
181 .Fn archive_write_open
182 that accepts a file descriptor.
183 The
184 .Fn archive_write_open_fd
185 function is safe for use with tape drives or other
186 block-oriented devices.
187 .It Fn archive_write_open_FILE
188 A convenience form of
189 .Fn archive_write_open
190 that accepts a
191 .Ft "FILE *"
192 pointer.
193 Note that
194 .Fn archive_write_open_FILE
195 is not safe for writing to tape drives or other devices
196 that require correct blocking.
197 .It Fn archive_write_open_file
198 A deprecated synonym for
199 .Fn archive_write_open_filename .
200 .It Fn archive_write_open_filename
201 A convenience form of
202 .Fn archive_write_open
203 that accepts a filename.
204 A NULL argument indicates that the output should be written to standard output;
205 an argument of
206 .Dq -
207 will open a file with that name.
208 If you have not invoked
209 .Fn archive_write_set_bytes_in_last_block ,
210 then
211 .Fn archive_write_open_filename
212 will adjust the last-block padding depending on the file:
213 it will enable padding when writing to standard output or
214 to a character or block device node, it will disable padding otherwise.
215 You can override this by manually invoking
216 .Fn archive_write_set_bytes_in_last_block
217 before calling
218 .Fn archive_write_open .
219 The
220 .Fn archive_write_open_filename
221 function is safe for use with tape drives or other
222 block-oriented devices.
223 .It Fn archive_write_open_memory
224 A convenience form of
225 .Fn archive_write_open
226 that accepts a pointer to a block of memory that will receive
227 the archive.
228 The final
229 .Ft "size_t *"
230 argument points to a variable that will be updated
231 after each write to reflect how much of the buffer
232 is currently in use.
233 You should be careful to ensure that this variable
234 remains allocated until after the archive is
235 closed.
236 .It Fn archive_write_header
237 Build and write a header using the data in the provided
238 .Tn struct archive_entry
239 structure.
240 See
241 .Xr archive_entry 3
242 for information on creating and populating
243 .Tn struct archive_entry
244 objects.
245 .It Fn archive_write_data
246 Write data corresponding to the header just written.
247 Returns number of bytes written or -1 on error.
248 .It Fn archive_write_finish_entry
249 Close out the entry just written.
250 In particular, this writes out the final padding required by some formats.
251 Ordinarily, clients never need to call this, as it
252 is called automatically by
253 .Fn archive_write_next_header
254 and
255 .Fn archive_write_close
256 as needed.
257 .It Fn archive_write_close
258 Complete the archive and invoke the close callback.
259 .It Fn archive_write_finish
260 Invokes
261 .Fn archive_write_close
262 if it was not invoked manually, then releases all resources.
263 .El
264 More information about the
265 .Va struct archive
266 object and the overall design of the library can be found in the
267 .Xr libarchive 3
268 overview.
269 .Sh IMPLEMENTATION
270 Compression support is built-in to libarchive, which uses zlib and bzlib
271 to handle gzip and bzip2 compression, respectively.
272 .Sh CLIENT CALLBACKS
273 To use this library, you will need to define and register
274 callback functions that will be invoked to write data to the
275 resulting archive.
276 These functions are registered by calling
277 .Fn archive_write_open :
278 .Bl -item -offset indent
279 .It
280 .Ft typedef int
281 .Fn archive_open_callback "struct archive *" "void *client_data"
282 .El
283 .Pp
284 The open callback is invoked by
285 .Fn archive_write_open .
286 It should return
287 .Cm ARCHIVE_OK
288 if the underlying file or data source is successfully
289 opened.
290 If the open fails, it should call
291 .Fn archive_set_error
292 to register an error code and message and return
293 .Cm ARCHIVE_FATAL .
294 .Bl -item -offset indent
295 .It
296 .Ft typedef ssize_t
297 .Fn archive_write_callback "struct archive *" "void *client_data" "void *buffer" "size_t length"
298 .El
299 .Pp
300 The write callback is invoked whenever the library
301 needs to write raw bytes to the archive.
302 For correct blocking, each call to the write callback function
303 should translate into a single
304 .Xr write 2
305 system call.
306 This is especially critical when writing archives to tape drives.
307 On success, the write callback should return the
308 number of bytes actually written.
309 On error, the callback should invoke
310 .Fn archive_set_error
311 to register an error code and message and return -1.
312 .Bl -item -offset indent
313 .It
314 .Ft typedef int
315 .Fn archive_close_callback "struct archive *" "void *client_data"
316 .El
317 .Pp
318 The close callback is invoked by archive_close when
319 the archive processing is complete.
320 The callback should return
321 .Cm ARCHIVE_OK
322 on success.
323 On failure, the callback should invoke
324 .Fn archive_set_error
325 to register an error code and message and
326 regurn
327 .Cm ARCHIVE_FATAL.
328 .Sh EXAMPLE
329 The following sketch illustrates basic usage of the library.
330 In this example,
331 the callback functions are simply wrappers around the standard
332 .Xr open 2 ,
333 .Xr write 2 ,
334 and
335 .Xr close 2
336 system calls.
337 .Bd -literal -offset indent
338 #include <sys/stat.h>
339 #include <archive.h>
340 #include <archive_entry.h>
341 #include <fcntl.h>
342 #include <stdlib.h>
343 #include <unistd.h>
344
345 struct mydata {
346         const char *name;
347         int fd;
348 };
349
350 int
351 myopen(struct archive *a, void *client_data)
352 {
353   struct mydata *mydata = client_data;
354
355   mydata->fd = open(mydata->name, O_WRONLY | O_CREAT, 0644);
356   if (mydata->fd >= 0)
357     return (ARCHIVE_OK);
358   else
359     return (ARCHIVE_FATAL);
360 }
361
362 ssize_t
363 mywrite(struct archive *a, void *client_data, void *buff, size_t n)
364 {
365   struct mydata *mydata = client_data;
366
367   return (write(mydata->fd, buff, n));
368 }
369
370 int
371 myclose(struct archive *a, void *client_data)
372 {
373   struct mydata *mydata = client_data;
374
375   if (mydata->fd > 0)
376     close(mydata->fd);
377   return (0);
378 }
379
380 void
381 write_archive(const char *outname, const char **filename)
382 {
383   struct mydata *mydata = malloc(sizeof(struct mydata));
384   struct archive *a;
385   struct archive_entry *entry;
386   struct stat st;
387   char buff[8192];
388   int len;
389   int fd;
390
391   a = archive_write_new();
392   mydata->name = outname;
393   archive_write_set_compression_gzip(a);
394   archive_write_set_format_ustar(a);
395   archive_write_open(a, mydata, myopen, mywrite, myclose);
396   while (*filename) {
397     stat(*filename, &st);
398     entry = archive_entry_new();
399     archive_entry_copy_stat(entry, &st);
400     archive_entry_set_pathname(entry, *filename);
401     archive_write_header(a, entry);
402     fd = open(*filename, O_RDONLY);
403     len = read(fd, buff, sizeof(buff));
404     while ( len > 0 ) {
405         archive_write_data(a, buff, len);
406         len = read(fd, buff, sizeof(buff));
407     }
408     archive_entry_free(entry);
409     filename++;
410   }
411   archive_write_finish(a);
412 }
413
414 int main(int argc, const char **argv)
415 {
416         const char *outname;
417         argv++;
418         outname = argv++;
419         write_archive(outname, argv);
420         return 0;
421 }
422 .Ed
423 .Sh RETURN VALUES
424 Most functions return
425 .Cm ARCHIVE_OK
426 (zero) on success, or one of several non-zero
427 error codes for errors.
428 Specific error codes include:
429 .Cm ARCHIVE_RETRY
430 for operations that might succeed if retried,
431 .Cm ARCHIVE_WARN
432 for unusual conditions that do not prevent further operations, and
433 .Cm ARCHIVE_FATAL
434 for serious errors that make remaining operations impossible.
435 The
436 .Fn archive_errno
437 and
438 .Fn archive_error_string
439 functions can be used to retrieve an appropriate error code and a
440 textual error message.
441 .Pp
442 .Fn archive_write_new
443 returns a pointer to a newly-allocated
444 .Tn struct archive
445 object.
446 .Pp
447 .Fn archive_write_data
448 returns a count of the number of bytes actually written.
449 On error, -1 is returned and the
450 .Fn archive_errno
451 and
452 .Fn archive_error_string
453 functions will return appropriate values.
454 Note that if the client-provided write callback function
455 returns a non-zero value, that error will be propagated back to the caller
456 through whatever API function resulted in that call, which
457 may include
458 .Fn archive_write_header ,
459 .Fn archive_write_data ,
460 or
461 .Fn archive_write_close .
462 The client callback can call
463 .Fn archive_set_error
464 to provide values that can then be retrieved by
465 .Fn archive_errno
466 and
467 .Fn archive_error_string .
468 .Sh SEE ALSO
469 .Xr tar 1 ,
470 .Xr libarchive 3 ,
471 .Xr tar 5
472 .Sh HISTORY
473 The
474 .Nm libarchive
475 library first appeared in
476 .Fx 5.3 .
477 .Sh AUTHORS
478 .An -nosplit
479 The
480 .Nm libarchive
481 library was written by
482 .An Tim Kientzle Aq kientzle@acm.org .
483 .Sh BUGS
484 There are many peculiar bugs in historic tar implementations that may cause
485 certain programs to reject archives written by this library.
486 For example, several historic implementations calculated header checksums
487 incorrectly and will thus reject valid archives; GNU tar does not fully support
488 pax interchange format; some old tar implementations required specific
489 field terminations.
490 .Pp
491 The default pax interchange format eliminates most of the historic
492 tar limitations and provides a generic key/value attribute facility
493 for vendor-defined extensions.
494 One oversight in POSIX is the failure to provide a standard attribute
495 for large device numbers.
496 This library uses
497 .Dq SCHILY.devminor
498 and
499 .Dq SCHILY.devmajor
500 for device numbers that exceed the range supported by the backwards-compatible
501 ustar header.
502 These keys are compatible with Joerg Schilling's
503 .Nm star
504 archiver.
505 Other implementations may not recognize these keys and will thus be unable
506 to correctly restore device nodes with large device numbers from archives
507 created by this library.