summaryrefslogtreecommitdiff
path: root/archivers/libarchive/files/doc/man/archive_write_disk.3
blob: f6f23b4ddb59ecc06e1142e087dcfa243e2a42fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
.TH archive_write_disk 3 "March 2, 2007" ""
.SH NAME
\fBarchive_write_disk_new\fP,
\fBarchive_write_disk_set_options\fP,
\fBarchive_write_disk_set_skip_file\fP,
\fBarchive_write_disk_set_group_lookup\fP,
\fBarchive_write_disk_set_standard_lookup\fP,
\fBarchive_write_disk_set_user_lookup\fP,
\fBarchive_write_header\fP,
\fBarchive_write_data\fP,
\fBarchive_write_finish_entry\fP,
\fBarchive_write_close\fP,
\fBarchive_write_finish\fP
\- functions for creating objects on disk
.SH SYNOPSIS
\fB#include <archive.h>\fP
.br
\fIstruct archive *\fP
.RE
.nh
\fBarchive_write_disk_new\fP
.hy
("void");
\fIint\fP
.RE
.nh
\fBarchive_write_disk_set_options\fP
.hy
("struct archive *" "int flags");
\fIint\fP
.RE
.nh
\fBarchive_write_disk_set_skip_file\fP
.hy
("struct archive *" "dev_t" "ino_t");
\fIint\fP
.RE
Fo archive_write_disk_set_group_lookup
Fa "struct archive *"
Fa "void *"
Fa "gid_t (*)(void *, const char *gname, gid_t gid)"
Fa "void (*cleanup)(void *)"
Fc
\fIint\fP
.RE
.nh
\fBarchive_write_disk_set_standard_lookup\fP
.hy
("struct archive *");
\fIint\fP
.RE
Fo archive_write_disk_set_user_lookup
Fa "struct archive *"
Fa "void *"
Fa "uid_t (*)(void *, const char *uname, uid_t uid)"
Fa "void (*cleanup)(void *)"
Fc
\fIint\fP
.RE
.nh
\fBarchive_write_header\fP
.hy
("struct archive *" "struct archive_entry *");
\fIssize_t\fP
.RE
.nh
\fBarchive_write_data\fP
.hy
("struct archive *" "const void *" "size_t");
\fIint\fP
.RE
.nh
\fBarchive_write_finish_entry\fP
.hy
("struct archive *");
\fIint\fP
.RE
.nh
\fBarchive_write_close\fP
.hy
("struct archive *");
\fIint\fP
.RE
.nh
\fBarchive_write_finish\fP
.hy
("struct archive *");
.SH DESCRIPTION
These functions provide a complete API for creating objects on
disk from
Tn struct archive_entry
descriptions.
They are most naturally used when extracting objects from an archive
using the
.nh
\fBarchive_read\fP
.hy
();
interface.
The general process is to read
Tn struct archive_entry
objects from an archive, then write those objects to a
Tn struct archive
object created using the
.nh
\fBarchive_write_disk\fP
.hy
();
family functions.
This interface is deliberately very similar to the
.nh
\fBarchive_write\fP
.hy
();
interface used to write objects to a streaming archive.
.TP
.nh
\fBarchive_write_disk_new\fP
.hy
();
Allocates and initializes a
Tn struct archive
object suitable for writing objects to disk.
.TP
.nh
\fBarchive_write_disk_set_skip_file\fP
.hy
();
Records the device and inode numbers of a file that should not be
overwritten.
This is typically used to ensure that an extraction process does not
overwrite the archive from which objects are being read.
This capability is technically unnecessary but can be a significant
performance optimization in practice.
.TP
.nh
\fBarchive_write_disk_set_options\fP
.hy
();
The options field consists of a bitwise OR of one or more of the
following values:
.TP
\fBARCHIVE_EXTRACT_OWNER\fP
The user and group IDs should be set on the restored file.
By default, the user and group IDs are not restored.
.TP
\fBARCHIVE_EXTRACT_PERM\fP
Full permissions (including SGID, SUID, and sticky bits) should
be restored exactly as specified, without obeying the
current umask.
Note that SUID and SGID bits can only be restored if the
user and group ID of the object on disk are correct.
If
\fBARCHIVE_EXTRACT_OWNER\fP
is not specified, then SUID and SGID bits will only be restored
if the default user and group IDs of newly-created objects on disk
happen to match those specified in the archive entry.
By default, only basic permissions are restored, and umask is obeyed.
.TP
\fBARCHIVE_EXTRACT_TIME\fP
The timestamps (mtime, ctime, and atime) should be restored.
By default, they are ignored.
Note that restoring of atime is not currently supported.
.TP
\fBARCHIVE_EXTRACT_NO_OVERWRITE\fP
Existing files on disk will not be overwritten.
By default, existing regular files are truncated and overwritten;
existing directories will have their permissions updated;
other pre-existing objects are unlinked and recreated from scratch.
.TP
\fBARCHIVE_EXTRACT_UNLINK\fP
Existing files on disk will be unlinked before any attempt to
create them.
In some cases, this can prove to be a significant performance improvement.
By default, existing files are truncated and rewritten, but
the file is not recreated.
In particular, the default behavior does not break existing hard links.
.TP
\fBARCHIVE_EXTRACT_ACL\fP
Attempt to restore ACLs.
By default, extended ACLs are ignored.
.TP
\fBARCHIVE_EXTRACT_FFLAGS\fP
Attempt to restore extended file flags.
By default, file flags are ignored.
.TP
\fBARCHIVE_EXTRACT_XATTR\fP
Attempt to restore POSIX.1e extended attributes.
By default, they are ignored.
.TP
\fBARCHIVE_EXTRACT_SECURE_SYMLINKS\fP
Refuse to extract any object whose final location would be altered
by a symlink on disk.
This is intended to help guard against a variety of mischief
caused by archives that (deliberately or otherwise) extract
files outside of the current directory.
The default is not to perform this check.
If
\fBARCHIVE_EXTRACT_UNLINK\fP
is specified together with this option, the library will
remove any intermediate symlinks it finds and return an
error only if such symlink could not be removed.
.TP
\fBARCHIVE_EXTRACT_SECURE_NODOTDOT\fP
Refuse to extract a path that contains a
\fI\& ..\fP
element anywhere within it.
The default is to not refuse such paths.
Note that paths ending in
\fI\& ..\fP
always cause an error, regardless of this flag.
.TP
Xo
.nh
\fBarchive_write_disk_set_group_lookup\fP
.hy
(,);
.nh
\fBarchive_write_disk_set_user_lookup\fP
.hy
();
Xc
The
Tn struct archive_entry
objects contain both names and ids that can be used to identify users
and groups.
These names and ids describe the ownership of the file itself and
also appear in ACL lists.
By default, the library uses the ids and ignores the names, but
this can be overridden by registering user and group lookup functions.
To register, you must provide a lookup function which
accepts both a name and id and returns a suitable id.
You may also provide a
Tn void *
pointer to a private data structure and a cleanup function for
that data.
The cleanup function will be invoked when the
Tn struct archive
object is destroyed.
.TP
.nh
\fBarchive_write_disk_set_standard_lookup\fP
.hy
();
This convenience function installs a standard set of user
and group lookup functions.
These functions use
\fBgetpwnam\fP(3)
and
\fBgetgrnam\fP(3)
to convert names to ids, defaulting to the ids if the names cannot
be looked up.
These functions also implement a simple memory cache to reduce
the number of calls to
\fBgetpwnam\fP(3)
and
\fBgetgrnam\fP(3).
.TP
.nh
\fBarchive_write_header\fP
.hy
();
Build and write a header using the data in the provided
Tn struct archive_entry
structure.
See
\fBarchive_entry\fP(3)
for information on creating and populating
Tn struct archive_entry
objects.
.TP
.nh
\fBarchive_write_data\fP
.hy
();
Write data corresponding to the header just written.
Returns number of bytes written or -1 on error.
.TP
.nh
\fBarchive_write_finish_entry\fP
.hy
();
Close out the entry just written.
Ordinarily, clients never need to call this, as it
is called automatically by
.nh
\fBarchive_write_next_header\fP
.hy
();
and
.nh
\fBarchive_write_close\fP
.hy
();
as needed.
.TP
.nh
\fBarchive_write_close\fP
.hy
();
Set any attributes that could not be set during the initial restore.
For example, directory timestamps are not restored initially because
restoring a subsequent file would alter that timestamp.
Similarly, non-writable directories are initially created with
write permissions (so that their contents can be restored).
The
\fBarchive_write_disk_new\fP
library maintains a list of all such deferred attributes and
sets them when this function is invoked.
.TP
.nh
\fBarchive_write_finish\fP
.hy
();
Invokes
.nh
\fBarchive_write_close\fP
.hy
();
if it was not invoked manually, then releases all resources.
More information about the
\fIstruct\fP archive
object and the overall design of the library can be found in the
\fBlibarchive\fP(3)
overview.
Many of these functions are also documented under
\fBarchive_write\fP(3).
.SH RETURN VALUES
Most functions return
\fBARCHIVE_OK\fP
(zero) on success, or one of several non-zero
error codes for errors.
Specific error codes include:
\fBARCHIVE_RETRY\fP
for operations that might succeed if retried,
\fBARCHIVE_WARN\fP
for unusual conditions that do not prevent further operations, and
\fBARCHIVE_FATAL\fP
for serious errors that make remaining operations impossible.
The
.nh
\fBarchive_errno\fP
.hy
();
and
.nh
\fBarchive_error_string\fP
.hy
();
functions can be used to retrieve an appropriate error code and a
textual error message.
.nh
\fBarchive_write_disk_new\fP
.hy
();
returns a pointer to a newly-allocated
Tn struct archive
object.
.nh
\fBarchive_write_data\fP
.hy
();
returns a count of the number of bytes actually written.
On error, -1 is returned and the
.nh
\fBarchive_errno\fP
.hy
();
and
.nh
\fBarchive_error_string\fP
.hy
();
functions will return appropriate values.
.SH SEE ALSO
\fBarchive_read\fP(3),
\fBarchive_write\fP(3),
\fBtar\fP(1),
\fBlibarchive\fP(3)
.SH HISTORY
The
\fBlibarchive\fP
library first appeared in
FreeBSD 5.3.
The
\fBarchive_write_disk\fP
interface was added to
\fBlibarchive\fP 2.0
and first appeared in
FreeBSD 6.3.
.SH AUTHORS
-nosplit
The
\fBlibarchive\fP
library was written by
Tim Kientzle <kientzle@acm.org.>
.SH BUGS
Directories are actually extracted in two distinct phases.
Directories are created during
.nh
\fBarchive_write_header\fP
.hy
(,);
but final permissions are not set until
.nh
\fBarchive_write_close\fP
.hy
(.);
This separation is necessary to correctly handle borderline
cases such as a non-writable directory containing
files, but can cause unexpected results.
In particular, directory permissions are not fully
restored until the archive is closed.
If you use
\fBchdir\fP(2)
to change the current directory between calls to
.nh
\fBarchive_read_extract\fP
.hy
();
or before calling
.nh
\fBarchive_read_close\fP
.hy
(,);
you may confuse the permission-setting logic with
the result that directory permissions are restored
incorrectly.
The library attempts to create objects with filenames longer than
\fBPATH_MAX\fP
by creating prefixes of the full path and changing the current directory.
Currently, this logic is limited in scope; the fixup pass does
not work correctly for such objects and the symlink security check
option disables the support for very long pathnames.
Restoring the path
\fIaa/../bb\fP
does create each intermediate directory.
In particular, the directory
\fIaa\fP
is created as well as the final object
\fIbb\fP.
In theory, this can be exploited to create an entire directory heirarchy
with a single request.
Of course, this does not work if the
\fBARCHIVE_EXTRACT_NODOTDOT\fP
option is specified.
Implicit directories are always created obeying the current umask.
Explicit objects are created obeying the current umask unless
\fBARCHIVE_EXTRACT_PERM\fP
is specified, in which case they current umask is ignored.
SGID and SUID bits are restored only if the correct user and
group could be set.
If
\fBARCHIVE_EXTRACT_OWNER\fP
is not specified, then no attempt is made to set the ownership.
In this case, SGID and SUID bits are restored only if the
user and group of the final object happen to match those specified
in the entry.
The
``standard''
user-id and group-id lookup functions are not the defaults because
\fBgetgrnam\fP(3)
and
\fBgetpwnam\fP(3)
are sometimes too large for particular applications.
The current design allows the application author to use a more
compact implementation when appropriate.
There should be a corresponding
\fBarchive_read_disk\fP
interface that walks a directory heirarchy and returns archive
entry objects.