bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 1 | /* |
| 2 | ** Copyright 1998-2003 University of Illinois Board of Trustees |
| 3 | ** Copyright 1998-2003 Mark D. Roth |
| 4 | ** All rights reserved. |
| 5 | ** |
| 6 | ** libtar.h - header file for libtar library |
| 7 | ** |
| 8 | ** Mark D. Roth <roth@uiuc.edu> |
| 9 | ** Campus Information Technologies and Educational Services |
| 10 | ** University of Illinois at Urbana-Champaign |
| 11 | */ |
| 12 | |
| 13 | #ifndef LIBTAR_H |
| 14 | #define LIBTAR_H |
| 15 | |
| 16 | #include <sys/types.h> |
| 17 | #include <sys/stat.h> |
Ethan Yonker | 7118774 | 2017-01-13 13:30:10 -0600 | [diff] [blame] | 18 | #include <linux/capability.h> |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 19 | #include "tar.h" |
| 20 | |
| 21 | #include "libtar_listhash.h" |
| 22 | |
bigbiff | 7ba7500 | 2020-04-11 20:47:09 -0400 | [diff] [blame] | 23 | #ifdef USE_FSCRYPT |
| 24 | #include "fscrypt_policy.h" |
| 25 | #endif |
| 26 | |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 27 | #ifdef __cplusplus |
| 28 | extern "C" |
| 29 | { |
| 30 | #endif |
| 31 | |
| 32 | |
| 33 | /* useful constants */ |
James Christopher Adduono | 6f57f7c | 2016-03-01 16:01:53 -0500 | [diff] [blame] | 34 | /* see FIXME note in block.c regarding T_BLOCKSIZE */ |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 35 | #define T_BLOCKSIZE 512 |
| 36 | #define T_NAMELEN 100 |
| 37 | #define T_PREFIXLEN 155 |
| 38 | #define T_MAXPATHLEN (T_NAMELEN + T_PREFIXLEN) |
| 39 | |
| 40 | /* GNU extensions for typeflag */ |
| 41 | #define GNU_LONGNAME_TYPE 'L' |
| 42 | #define GNU_LONGLINK_TYPE 'K' |
| 43 | |
Vojtech Bocek | 25fd68d | 2013-08-27 03:10:10 +0200 | [diff] [blame] | 44 | /* extended metadata for next file - used to store selinux_context */ |
| 45 | #define TH_EXT_TYPE 'x' |
Ethan Yonker | 7118774 | 2017-01-13 13:30:10 -0600 | [diff] [blame] | 46 | #define TH_POL_TYPE_DO_NOT_USE 'p' |
Vojtech Bocek | 25fd68d | 2013-08-27 03:10:10 +0200 | [diff] [blame] | 47 | |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 48 | /* our version of the tar header structure */ |
| 49 | struct tar_header |
| 50 | { |
| 51 | char name[100]; |
| 52 | char mode[8]; |
| 53 | char uid[8]; |
| 54 | char gid[8]; |
| 55 | char size[12]; |
| 56 | char mtime[12]; |
| 57 | char chksum[8]; |
| 58 | char typeflag; |
| 59 | char linkname[100]; |
| 60 | char magic[6]; |
| 61 | char version[2]; |
| 62 | char uname[32]; |
| 63 | char gname[32]; |
| 64 | char devmajor[8]; |
| 65 | char devminor[8]; |
| 66 | char prefix[155]; |
| 67 | char padding[12]; |
| 68 | char *gnu_longname; |
| 69 | char *gnu_longlink; |
Vojtech Bocek | 25fd68d | 2013-08-27 03:10:10 +0200 | [diff] [blame] | 70 | char *selinux_context; |
bigbiff | 7ba7500 | 2020-04-11 20:47:09 -0400 | [diff] [blame] | 71 | #ifdef USE_FSCRYPT |
bigbiff | a957f07 | 2021-03-07 18:20:29 -0500 | [diff] [blame] | 72 | #ifdef USE_FSCRYPT_POLICY_V1 |
| 73 | struct fscrypt_policy_v1 *fep; |
| 74 | #else |
| 75 | struct fscrypt_policy_v2 *fep; |
| 76 | #endif |
bigbiff | 7ba7500 | 2020-04-11 20:47:09 -0400 | [diff] [blame] | 77 | #endif |
Ethan Yonker | 7118774 | 2017-01-13 13:30:10 -0600 | [diff] [blame] | 78 | int has_cap_data; |
| 79 | struct vfs_cap_data cap_data; |
Ethan Yonker | 8d039f7 | 2017-02-03 14:26:15 -0600 | [diff] [blame] | 80 | int has_user_default; |
| 81 | int has_user_cache; |
| 82 | int has_user_code_cache; |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 83 | }; |
| 84 | |
| 85 | |
| 86 | /***** handle.c ************************************************************/ |
| 87 | |
| 88 | typedef int (*openfunc_t)(const char *, int, ...); |
| 89 | typedef int (*closefunc_t)(int); |
| 90 | typedef ssize_t (*readfunc_t)(int, void *, size_t); |
| 91 | typedef ssize_t (*writefunc_t)(int, const void *, size_t); |
| 92 | |
| 93 | typedef struct |
| 94 | { |
| 95 | openfunc_t openfunc; |
| 96 | closefunc_t closefunc; |
| 97 | readfunc_t readfunc; |
| 98 | writefunc_t writefunc; |
| 99 | } |
| 100 | tartype_t; |
| 101 | |
| 102 | typedef struct |
| 103 | { |
| 104 | tartype_t *type; |
James Christopher Adduono | 6f57f7c | 2016-03-01 16:01:53 -0500 | [diff] [blame] | 105 | const char *pathname; |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 106 | long fd; |
| 107 | int oflags; |
| 108 | int options; |
| 109 | struct tar_header th_buf; |
| 110 | libtar_hash_t *h; |
James Christopher Adduono | 6f57f7c | 2016-03-01 16:01:53 -0500 | [diff] [blame] | 111 | |
| 112 | /* introduced in libtar 1.2.21 */ |
| 113 | char *th_pathname; |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 114 | } |
| 115 | TAR; |
| 116 | |
| 117 | /* constant values for the TAR options field */ |
| 118 | #define TAR_GNU 1 /* use GNU extensions */ |
| 119 | #define TAR_VERBOSE 2 /* output file info to stdout */ |
| 120 | #define TAR_NOOVERWRITE 4 /* don't overwrite existing files */ |
| 121 | #define TAR_IGNORE_EOT 8 /* ignore double zero blocks as EOF */ |
| 122 | #define TAR_CHECK_MAGIC 16 /* check magic in file header */ |
| 123 | #define TAR_CHECK_VERSION 32 /* check version in file header */ |
| 124 | #define TAR_IGNORE_CRC 64 /* ignore CRC in file header */ |
Vojtech Bocek | 25fd68d | 2013-08-27 03:10:10 +0200 | [diff] [blame] | 125 | #define TAR_STORE_SELINUX 128 /* store selinux context */ |
James Christopher Adduono | 6f57f7c | 2016-03-01 16:01:53 -0500 | [diff] [blame] | 126 | #define TAR_USE_NUMERIC_ID 256 /* favor numeric owner over names */ |
bigbiff | a957f07 | 2021-03-07 18:20:29 -0500 | [diff] [blame] | 127 | |
bigbiff | 7ba7500 | 2020-04-11 20:47:09 -0400 | [diff] [blame] | 128 | #ifdef USE_FSCRYPT |
| 129 | #define TAR_STORE_FSCRYPT_POL 512 /* store fscrypt crypto policy */ |
| 130 | #endif |
bigbiff | a957f07 | 2021-03-07 18:20:29 -0500 | [diff] [blame] | 131 | |
Ethan Yonker | 7118774 | 2017-01-13 13:30:10 -0600 | [diff] [blame] | 132 | #define TAR_STORE_POSIX_CAP 1024 /* store posix file capabilities */ |
Ethan Yonker | 8d039f7 | 2017-02-03 14:26:15 -0600 | [diff] [blame] | 133 | #define TAR_STORE_ANDROID_USER_XATTR 2048 /* store android user.* xattr */ |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 134 | |
| 135 | /* this is obsolete - it's here for backwards-compatibility only */ |
| 136 | #define TAR_IGNORE_MAGIC 0 |
| 137 | |
| 138 | extern const char libtar_version[]; |
| 139 | |
| 140 | |
| 141 | /* open a new tarfile handle */ |
James Christopher Adduono | 6f57f7c | 2016-03-01 16:01:53 -0500 | [diff] [blame] | 142 | int tar_open(TAR **t, const char *pathname, tartype_t *type, |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 143 | int oflags, int mode, int options); |
| 144 | |
| 145 | /* make a tarfile handle out of a previously-opened descriptor */ |
James Christopher Adduono | 6f57f7c | 2016-03-01 16:01:53 -0500 | [diff] [blame] | 146 | int tar_fdopen(TAR **t, int fd, const char *pathname, tartype_t *type, |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 147 | int oflags, int mode, int options); |
| 148 | |
| 149 | /* returns the descriptor associated with t */ |
| 150 | int tar_fd(TAR *t); |
| 151 | |
| 152 | /* close tarfile handle */ |
| 153 | int tar_close(TAR *t); |
| 154 | |
| 155 | |
| 156 | /***** append.c ************************************************************/ |
| 157 | |
| 158 | /* forward declaration to appease the compiler */ |
| 159 | struct tar_dev; |
| 160 | |
| 161 | /* cleanup function */ |
| 162 | void tar_dev_free(struct tar_dev *tdp); |
| 163 | |
| 164 | /* Appends a file to the tar archive. |
| 165 | * Arguments: |
| 166 | * t = TAR handle to append to |
| 167 | * realname = path of file to append |
| 168 | * savename = name to save the file under in the archive |
| 169 | */ |
James Christopher Adduono | 6f57f7c | 2016-03-01 16:01:53 -0500 | [diff] [blame] | 170 | int tar_append_file(TAR *t, const char *realname, const char *savename); |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 171 | |
| 172 | /* write EOF indicator */ |
| 173 | int tar_append_eof(TAR *t); |
| 174 | |
| 175 | /* add file contents to a tarchive */ |
James Christopher Adduono | 6f57f7c | 2016-03-01 16:01:53 -0500 | [diff] [blame] | 176 | int tar_append_regfile(TAR *t, const char *realname); |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 177 | |
James Christopher Adduono | 6f57f7c | 2016-03-01 16:01:53 -0500 | [diff] [blame] | 178 | /* Appends in-memory file contents to a tarchive. |
| 179 | * Arguments: |
| 180 | * t = TAR handle to append to |
| 181 | * savename = name to save the file under in the archive |
| 182 | * mode = mode |
| 183 | * uid, gid = owner |
| 184 | * buf, len = in-memory buffer |
| 185 | */ |
| 186 | int tar_append_file_contents(TAR *t, const char *savename, mode_t mode, |
| 187 | uid_t uid, gid_t gid, void *buf, size_t len); |
| 188 | |
| 189 | /* add buffer to a tarchive */ |
| 190 | int tar_append_buffer(TAR *t, void *buf, size_t len); |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 191 | |
| 192 | /***** block.c *************************************************************/ |
| 193 | |
| 194 | /* macros for reading/writing tarchive blocks */ |
| 195 | #define tar_block_read(t, buf) \ |
| 196 | (*((t)->type->readfunc))((t)->fd, (char *)(buf), T_BLOCKSIZE) |
| 197 | #define tar_block_write(t, buf) \ |
| 198 | (*((t)->type->writefunc))((t)->fd, (char *)(buf), T_BLOCKSIZE) |
| 199 | |
| 200 | /* read/write a header block */ |
| 201 | int th_read(TAR *t); |
| 202 | int th_write(TAR *t); |
| 203 | |
| 204 | |
| 205 | /***** decode.c ************************************************************/ |
| 206 | |
| 207 | /* determine file type */ |
| 208 | #define TH_ISREG(t) ((t)->th_buf.typeflag == REGTYPE \ |
| 209 | || (t)->th_buf.typeflag == AREGTYPE \ |
| 210 | || (t)->th_buf.typeflag == CONTTYPE \ |
James Christopher Adduono | 6f57f7c | 2016-03-01 16:01:53 -0500 | [diff] [blame] | 211 | || (S_ISREG((mode_t)oct_to_int((t)->th_buf.mode, sizeof((t)->th_buf.mode))) \ |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 212 | && (t)->th_buf.typeflag != LNKTYPE)) |
| 213 | #define TH_ISLNK(t) ((t)->th_buf.typeflag == LNKTYPE) |
| 214 | #define TH_ISSYM(t) ((t)->th_buf.typeflag == SYMTYPE \ |
James Christopher Adduono | 6f57f7c | 2016-03-01 16:01:53 -0500 | [diff] [blame] | 215 | || S_ISLNK((mode_t)oct_to_int((t)->th_buf.mode, sizeof((t)->th_buf.mode)))) |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 216 | #define TH_ISCHR(t) ((t)->th_buf.typeflag == CHRTYPE \ |
James Christopher Adduono | 6f57f7c | 2016-03-01 16:01:53 -0500 | [diff] [blame] | 217 | || S_ISCHR((mode_t)oct_to_int((t)->th_buf.mode, sizeof((t)->th_buf.mode)))) |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 218 | #define TH_ISBLK(t) ((t)->th_buf.typeflag == BLKTYPE \ |
James Christopher Adduono | 6f57f7c | 2016-03-01 16:01:53 -0500 | [diff] [blame] | 219 | || S_ISBLK((mode_t)oct_to_int((t)->th_buf.mode, sizeof((t)->th_buf.mode)))) |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 220 | #define TH_ISDIR(t) ((t)->th_buf.typeflag == DIRTYPE \ |
James Christopher Adduono | 6f57f7c | 2016-03-01 16:01:53 -0500 | [diff] [blame] | 221 | || S_ISDIR((mode_t)oct_to_int((t)->th_buf.mode, sizeof((t)->th_buf.mode))) \ |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 222 | || ((t)->th_buf.typeflag == AREGTYPE \ |
James Christopher Adduono | 6f57f7c | 2016-03-01 16:01:53 -0500 | [diff] [blame] | 223 | && strnlen((t)->th_buf.name, T_NAMELEN) \ |
| 224 | && ((t)->th_buf.name[strnlen((t)->th_buf.name, T_NAMELEN) - 1] == '/'))) |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 225 | #define TH_ISFIFO(t) ((t)->th_buf.typeflag == FIFOTYPE \ |
James Christopher Adduono | 6f57f7c | 2016-03-01 16:01:53 -0500 | [diff] [blame] | 226 | || S_ISFIFO((mode_t)oct_to_int((t)->th_buf.mode, sizeof((t)->th_buf.mode)))) |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 227 | #define TH_ISLONGNAME(t) ((t)->th_buf.typeflag == GNU_LONGNAME_TYPE) |
| 228 | #define TH_ISLONGLINK(t) ((t)->th_buf.typeflag == GNU_LONGLINK_TYPE) |
Vojtech Bocek | 25fd68d | 2013-08-27 03:10:10 +0200 | [diff] [blame] | 229 | #define TH_ISEXTHEADER(t) ((t)->th_buf.typeflag == TH_EXT_TYPE) |
Ethan Yonker | 7118774 | 2017-01-13 13:30:10 -0600 | [diff] [blame] | 230 | #define TH_ISPOLHEADER(t) ((t)->th_buf.typeflag == TH_POL_TYPE_DO_NOT_USE) |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 231 | |
| 232 | /* decode tar header info */ |
James Christopher Adduono | 6f57f7c | 2016-03-01 16:01:53 -0500 | [diff] [blame] | 233 | #define th_get_crc(t) oct_to_int((t)->th_buf.chksum, sizeof((t)->th_buf.chksum)) |
| 234 | #define th_get_size(t) oct_to_int_ex((t)->th_buf.size, sizeof((t)->th_buf.size)) |
| 235 | #define th_get_mtime(t) oct_to_int_ex((t)->th_buf.mtime, sizeof((t)->th_buf.mtime)) |
| 236 | #define th_get_devmajor(t) oct_to_int((t)->th_buf.devmajor, sizeof((t)->th_buf.devmajor)) |
| 237 | #define th_get_devminor(t) oct_to_int((t)->th_buf.devminor, sizeof((t)->th_buf.devminor)) |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 238 | #define th_get_linkname(t) ((t)->th_buf.gnu_longlink \ |
| 239 | ? (t)->th_buf.gnu_longlink \ |
| 240 | : (t)->th_buf.linkname) |
| 241 | char *th_get_pathname(TAR *t); |
| 242 | mode_t th_get_mode(TAR *t); |
| 243 | uid_t th_get_uid(TAR *t); |
| 244 | gid_t th_get_gid(TAR *t); |
| 245 | |
| 246 | |
| 247 | /***** encode.c ************************************************************/ |
| 248 | |
| 249 | /* encode file info in th_header */ |
| 250 | void th_set_type(TAR *t, mode_t mode); |
James Christopher Adduono | 6f57f7c | 2016-03-01 16:01:53 -0500 | [diff] [blame] | 251 | void th_set_path(TAR *t, const char *pathname); |
| 252 | void th_set_link(TAR *t, const char *linkname); |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 253 | void th_set_device(TAR *t, dev_t device); |
| 254 | void th_set_user(TAR *t, uid_t uid); |
| 255 | void th_set_group(TAR *t, gid_t gid); |
| 256 | void th_set_mode(TAR *t, mode_t fmode); |
| 257 | #define th_set_mtime(t, fmtime) \ |
James Christopher Adduono | 6f57f7c | 2016-03-01 16:01:53 -0500 | [diff] [blame] | 258 | int_to_oct_ex((fmtime), (t)->th_buf.mtime, sizeof((t)->th_buf.mtime)) |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 259 | #define th_set_size(t, fsize) \ |
James Christopher Adduono | 6f57f7c | 2016-03-01 16:01:53 -0500 | [diff] [blame] | 260 | int_to_oct_ex((fsize), (t)->th_buf.size, sizeof((t)->th_buf.size)) |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 261 | |
| 262 | /* encode everything at once (except the pathname and linkname) */ |
| 263 | void th_set_from_stat(TAR *t, struct stat *s); |
| 264 | |
| 265 | /* encode magic, version, and crc - must be done after everything else is set */ |
| 266 | void th_finish(TAR *t); |
| 267 | |
| 268 | |
| 269 | /***** extract.c ***********************************************************/ |
| 270 | |
| 271 | /* sequentially extract next file from t */ |
James Christopher Adduono | 6f57f7c | 2016-03-01 16:01:53 -0500 | [diff] [blame] | 272 | int tar_extract_file(TAR *t, const char *realname, const char *prefix, const int *progress_fd); |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 273 | |
| 274 | /* extract different file types */ |
James Christopher Adduono | 6f57f7c | 2016-03-01 16:01:53 -0500 | [diff] [blame] | 275 | int tar_extract_dir(TAR *t, const char *realname); |
| 276 | int tar_extract_hardlink(TAR *t, const char *realname, const char *prefix); |
| 277 | int tar_extract_symlink(TAR *t, const char *realname); |
| 278 | int tar_extract_chardev(TAR *t, const char *realname); |
| 279 | int tar_extract_blockdev(TAR *t, const char *realname); |
| 280 | int tar_extract_fifo(TAR *t, const char *realname); |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 281 | |
| 282 | /* for regfiles, we need to extract the content blocks as well */ |
James Christopher Adduono | 6f57f7c | 2016-03-01 16:01:53 -0500 | [diff] [blame] | 283 | int tar_extract_regfile(TAR *t, const char *realname, const int *progress_fd); |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 284 | int tar_skip_regfile(TAR *t); |
| 285 | |
James Christopher Adduono | 6f57f7c | 2016-03-01 16:01:53 -0500 | [diff] [blame] | 286 | /* extract regfile to buffer */ |
| 287 | int tar_extract_file_contents(TAR *t, void *buf, size_t *lenp); |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 288 | |
| 289 | /***** output.c ************************************************************/ |
| 290 | |
| 291 | /* print the tar header */ |
| 292 | void th_print(TAR *t); |
| 293 | |
| 294 | /* print "ls -l"-like output for the file described by th */ |
| 295 | void th_print_long_ls(TAR *t); |
| 296 | |
| 297 | |
| 298 | /***** util.c *************************************************************/ |
| 299 | |
| 300 | /* hashing function for pathnames */ |
| 301 | int path_hashfunc(char *key, int numbuckets); |
| 302 | |
| 303 | /* matching function for dev_t's */ |
| 304 | int dev_match(dev_t *dev1, dev_t *dev2); |
| 305 | |
| 306 | /* matching function for ino_t's */ |
| 307 | int ino_match(ino_t *ino1, ino_t *ino2); |
| 308 | |
| 309 | /* hashing function for dev_t's */ |
| 310 | int dev_hash(dev_t *dev); |
| 311 | |
| 312 | /* hashing function for ino_t's */ |
| 313 | int ino_hash(ino_t *inode); |
| 314 | |
| 315 | /* create any necessary dirs */ |
| 316 | int mkdirhier(char *path); |
| 317 | |
| 318 | /* calculate header checksum */ |
| 319 | int th_crc_calc(TAR *t); |
| 320 | |
| 321 | /* calculate a signed header checksum */ |
| 322 | int th_signed_crc_calc(TAR *t); |
| 323 | |
| 324 | /* compare checksums in a forgiving way */ |
| 325 | #define th_crc_ok(t) (th_get_crc(t) == th_crc_calc(t) || th_get_crc(t) == th_signed_crc_calc(t)) |
| 326 | |
| 327 | /* string-octal to integer conversion */ |
James Christopher Adduono | 6f57f7c | 2016-03-01 16:01:53 -0500 | [diff] [blame] | 328 | int64_t oct_to_int(char *oct, size_t len); |
| 329 | |
| 330 | /* string-octal or binary to integer conversion */ |
| 331 | int64_t oct_to_int_ex(char *oct, size_t len); |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 332 | |
| 333 | /* integer to NULL-terminated string-octal conversion */ |
James Christopher Adduono | 6f57f7c | 2016-03-01 16:01:53 -0500 | [diff] [blame] | 334 | void int_to_oct(int64_t num, char *oct, size_t octlen); |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 335 | |
James Christopher Adduono | 6f57f7c | 2016-03-01 16:01:53 -0500 | [diff] [blame] | 336 | /* integer to string-octal conversion, or binary as necessary */ |
| 337 | void int_to_oct_ex(int64_t num, char *oct, size_t octlen); |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 338 | |
Ethan Yonker | 7118774 | 2017-01-13 13:30:10 -0600 | [diff] [blame] | 339 | /* prints posix file capabilities */ |
| 340 | void print_caps(struct vfs_cap_data *cap_data); |
| 341 | |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 342 | |
| 343 | /***** wrapper.c **********************************************************/ |
| 344 | |
| 345 | /* extract groups of files */ |
| 346 | int tar_extract_glob(TAR *t, char *globname, char *prefix); |
Ethan Yonker | 1b7a31b | 2014-07-03 15:09:22 -0500 | [diff] [blame] | 347 | int tar_extract_all(TAR *t, char *prefix, const int *progress_fd); |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 348 | |
| 349 | /* add a whole tree of files */ |
James Christopher Adduono | 6f57f7c | 2016-03-01 16:01:53 -0500 | [diff] [blame] | 350 | int tar_append_tree(TAR *t, char *realdir, char *savedir); |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 351 | |
n0d3 | 3b51163 | 2013-03-06 21:14:15 +0200 | [diff] [blame] | 352 | /* find an entry */ |
| 353 | int tar_find(TAR *t, char *searchstr); |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 354 | |
| 355 | #ifdef __cplusplus |
| 356 | } |
| 357 | #endif |
| 358 | |
| 359 | #endif /* ! LIBTAR_H */ |
| 360 | |