aboutsummaryrefslogtreecommitdiff
path: root/include/tar/tar.h
blob: 6b1bed887dd56d34edf86913b950f367fdc1c389 (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
/* SPDX-License-Identifier: GPL-3.0-or-later */
/*
 * tar.h
 *
 * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
 */
#ifndef TAR_H
#define TAR_H

#include "config.h"
#include "compat.h"
#include "sqfs/io.h"

#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>

typedef struct sparse_map_t {
	struct sparse_map_t *next;
	sqfs_u64 offset;
	sqfs_u64 count;
} sparse_map_t;

typedef struct {
	char *name;
	char *link_target;
	sparse_map_t *sparse;
	sqfs_u64 actual_size;
	sqfs_u64 record_size;
	bool unknown_record;
	bool is_hard_link;
	sqfs_xattr_t *xattr;

	sqfs_u16 mode;
	sqfs_u64 uid;
	sqfs_u64 gid;
	sqfs_u64 devno;
	sqfs_s64 mtime;
} tar_header_decoded_t;

typedef struct {
	char **excludedirs;
	size_t num_excludedirs;
} tar_iterator_opts;

#ifdef __cplusplus
extern "C" {
#endif

/*
  Returns < 0 on failure, > 0 if cannot encode, 0 on success.
  Prints error/warning messages to stderr.

  The counter is an incremental record counter used if additional
  headers need to be generated.
*/
int write_tar_header(sqfs_ostream_t *fp, const sqfs_dir_entry_t *ent,
		     const char *link_target, const sqfs_xattr_t *xattr,
		     unsigned int counter);

/* round up to block size and skip the entire entry */
int read_header(sqfs_istream_t *fp, tar_header_decoded_t *out);

void clear_header(tar_header_decoded_t *hdr);

sqfs_dir_iterator_t *tar_open_stream(sqfs_istream_t *stream,
				     tar_iterator_opts *opts);

/*
  Write zero bytes to an output file to padd it to the tar record size.
  Returns 0 on success. On failure, prints error message to stderr.
*/
int padd_file(sqfs_ostream_t *fp, sqfs_u64 size);

void free_sparse_list(sparse_map_t *sparse);

#ifdef __cplusplus
}
#endif

#endif /* TAR_H */