void
archive_entry_acl_add_entry(
struct archive_entry *
int type
int permset
int tag
int qual
const char *name
)
void
archive_entry_acl_add_entry_w(
struct archive_entry *
int type
int permset
int tag
int qual
const wchar_t *name
)
void
archive_entry_acl_clear(
struct archive_entry *
)
int
archive_entry_acl_count(
struct archive_entry *
, int type
)
int
archive_entry_acl_next(
struct archive_entry *
int want_type
int *type
int *permset
int *tag
int *qual
const char **name
)
int
archive_entry_acl_next_w(
struct archive_entry *
int want_type
int *type
int *permset
int *tag
int *qual
const wchar_t **name
)
int
archive_entry_acl_reset(
struct archive_entry *
, int want_type
)
const
wchar_t
*
archive_entry_acl_text_w(
struct archive_entry *
, int flags
)
time_t
archive_entry_atime(
struct archive_entry *
)
long
archive_entry_atime_nsec(
struct archive_entry *
)
struct archive_entry *
archive_entry_clear(
struct archive_entry *
)
struct
archive_entry
*
archive_entry_clone(
struct archive_entry *
)
const
char
*
*
archive_entry_copy_fflags_text_w(
struct archive_entry *
, const char *
)
const
wchar_t
*
archive_entry_copy_fflags_text_w(
struct archive_entry *
, const wchar_t *
)
void
archive_entry_copy_gname(
struct archive_entry *
, const char *
)
void
archive_entry_copy_gname_w(
struct archive_entry *
, const wchar_t *
)
void
archive_entry_copy_hardlink(
struct archive_entry *
, const char *
)
void
archive_entry_copy_hardlink_w(
struct archive_entry *
, const wchar_t *
)
void
archive_entry_copy_sourcepath(
struct archive_entry *
, const char *
)
void
archive_entry_copy_pathname_w(
struct archive_entry *
, const wchar_t *
)
void
archive_entry_copy_stat(
struct archive_entry *
, const struct stat *
)
void
archive_entry_copy_symlink(
struct archive_entry *
, const char *
)
void
archive_entry_copy_symlink_w(
struct archive_entry *
, const wchar_t *
)
void
archive_entry_copy_uname(
struct archive_entry *
, const char *
)
void
archive_entry_copy_uname_w(
struct archive_entry *
, const wchar_t *
)
dev_t
archive_entry_dev(
struct archive_entry *
)
dev_t
archive_entry_devmajor(
struct archive_entry *
)
dev_t
archive_entry_devminor(
struct archive_entry *
)
mode_t
archive_entry_filetype(
struct archive_entry *
)
void
archive_entry_fflags(
struct archive_entry *
unsigned long *set
unsigned long *clear
)
const
char
*
archive_entry_fflags_text(
struct archive_entry *
)
void
archive_entry_free(
struct archive_entry *
)
const
char
*
archive_entry_gname(
struct archive_entry *
)
const
char
*
archive_entry_hardlink(
struct archive_entry *
)
ino_t
archive_entry_ino(
struct archive_entry *
)
mode_t
archive_entry_mode(
struct archive_entry *
)
time_t
archive_entry_mtime(
struct archive_entry *
)
long
archive_entry_mtime_nsec(
struct archive_entry *
)
unsigned
int
archive_entry_nlink(
struct archive_entry *
)
struct
archive_entry
*
archive_entry_new(
void
)
const
char
*
archive_entry_pathname(
struct archive_entry *
)
const
wchar_t
*
archive_entry_pathname_w(
struct archive_entry *
)
dev_t
archive_entry_rdev(
struct archive_entry *
)
dev_t
archive_entry_rdevmajor(
struct archive_entry *
)
dev_t
archive_entry_rdevminor(
struct archive_entry *
)
void
archive_entry_set_dev(
struct archive_entry *
, dev_t
)
void
archive_entry_set_devmajor(
struct archive_entry *
, dev_t
)
void
archive_entry_set_devminor(
struct archive_entry *
, dev_t
)
void
archive_entry_set_filetype(
struct archive_entry *
, unsigned int
)
void
archive_entry_set_fflags(
struct archive_entry *
unsigned long set
unsigned long clear
)
void
archive_entry_set_gid(
struct archive_entry *
, gid_t
)
void
archive_entry_set_gname(
struct archive_entry *
, const char *
)
void
archive_entry_set_hardlink(
struct archive_entry *
, const char *
)
void
archive_entry_set_ino(
struct archive_entry *
, unsigned long
)
void
archive_entry_set_link(
struct archive_entry *
, const char *
)
void
archive_entry_set_mode(
struct archive_entry *
, mode_t
)
void
archive_entry_set_mtime(
struct archive_entry *
, time_t
, long nanos
)
void
archive_entry_set_nlink(
struct archive_entry *
, unsigned int
)
void
archive_entry_set_pathname(
struct archive_entry *
, const char *
)
void
archive_entry_set_rdev(
struct archive_entry *
, dev_t
)
void
archive_entry_set_rdevmajor(
struct archive_entry *
, dev_t
)
void
archive_entry_set_rdevminor(
struct archive_entry *
, dev_t
)
void
archive_entry_set_size(
struct archive_entry *
, int64_t
)
void
archive_entry_set_symlink(
struct archive_entry *
, const char *
)
void
archive_entry_set_uid(
struct archive_entry *
, uid_t
)
void
archive_entry_set_uname(
struct archive_entry *
, const char *
)
int64_t
archive_entry_size(
struct archive_entry *
)
const
char
*
archive_entry_sourcepath(
struct archive_entry *
)
const
struct
stat
*
archive_entry_stat(
struct archive_entry *
)
const
char
*
archive_entry_symlink(
struct archive_entry *
)
const
char
*
archive_entry_uname(
struct archive_entry *
)
)
)
)
)
)
)
)There are a few set/get functions that merit additional description:
)The bitmap format consists of two integers, one containing bits that should be set, the other specifying bits that should be cleared. Bits not mentioned in either bitmap will be ignored. Usually, the bitmap of bits to be cleared will be set to zero. In unusual circumstances, you can force a fully-specified set of file flags by setting the bitmap of flags to clear to the complement of the bitmap of flags to set. (This differs from fflagstostr(3), which only includes names for set bits.) Converting a bitmap to a textual string is a platform-specific operation; bits that are not meaningful on the current platform will be ignored.
The canonical text format is a comma-separated list of flag names.
The
archive_entry_copy_fflags_text()
and
archive_entry_copy_fflags_text_w(
)
functions parse the provided text and sets the internal bitmap values.
This is a platform-specific operation; names that are not meaningful
on the current platform will be ignored.
The function returns a pointer to the start of the first name that was not
recognized, or NULL if every name was recognized.
Note that every name--including names that follow an unrecognized name--will
be evaluated, and the bitmaps will be set to reflect every name that is
recognized.
(In particular, this differs from
strtofflags(3),
which stops parsing at the first unrecognized name.)
An ``Access Control List'' (ACL) is a list of permissions that grant access to particular users or groups beyond what would normally be provided by standard POSIX mode bits. The ACL handling here addresses some deficiencies in the POSIX.1e draft 17 ACL specification. In particular, POSIX.1e draft 17 specifies several different formats, but none of those formats include both textual user/group names and numeric UIDs/GIDs.
XXX explain ACL stuff XXX
The libarchive library was written by Tim Kientzle <kientzle@acm.org>.