]> git.ipfire.org Git - thirdparty/git.git/blame - pack.h
Merge branch 'rj/add-i-leak-fix'
[thirdparty/git.git] / pack.h
CommitLineData
a733cb60
LT
1#ifndef PACK_H
2#define PACK_H
3
1974632c 4#include "object.h"
c0ad4657 5#include "csum-file.h"
a733cb60 6
ec2f0269
EN
7struct packed_git;
8struct pack_window;
94e10825
NTND
9struct repository;
10
a733cb60
LT
11/*
12 * Packed object header
13 */
14#define PACK_SIGNATURE 0x5041434b /* "PACK" */
29f049a0 15#define PACK_VERSION 2
d60fc1c8 16#define pack_version_ok(v) ((v) == htonl(2) || (v) == htonl(3))
a733cb60 17struct pack_header {
bb791031
SS
18 uint32_t hdr_signature;
19 uint32_t hdr_version;
20 uint32_t hdr_entries;
a733cb60
LT
21};
22
df1b059d 23/*
42873078
NP
24 * The first four bytes of index formats later than version 1 should
25 * start with this signature, as all older git binaries would find this
26 * value illegal and abort reading the file.
df1b059d
SP
27 *
28 * This is the case because the number of objects in a packfile
29 * cannot exceed 1,431,660,000 as every object would need at least
42873078
NP
30 * 3 bytes of data and the overall packfile cannot exceed 4 GiB with
31 * version 1 of the index file due to the offsets limited to 32 bits.
32 * Clearly the signature exceeds this maximum.
df1b059d
SP
33 *
34 * Very old git binaries will also compare the first 4 bytes to the
35 * next 4 bytes in the index and abort with a "non-monotonic index"
36 * error if the second 4 byte word is smaller than the first 4
37 * byte word. This would be true in the proposed future index
38 * format as idx_signature would be greater than idx_version.
39 */
40#define PACK_IDX_SIGNATURE 0xff744f63 /* "\377tOc" */
41
ebcfb379 42struct pack_idx_option {
e337a04d
JH
43 unsigned flags;
44 /* flag bits */
68be2fea
JH
45#define WRITE_IDX_VERIFY 01 /* verify only, do not write the idx file */
46#define WRITE_IDX_STRICT 02
8ef50d99
TB
47#define WRITE_REV 04
48#define WRITE_REV_VERIFY 010
5dfaf49a 49#define WRITE_MTIMES 020
e337a04d 50
ebcfb379
JH
51 uint32_t version;
52 uint32_t off32_limit;
3c9fc074
JH
53
54 /*
55 * List of offsets that would fit within off32_limit but
56 * need to be written out as 64-bit entity for byte-for-byte
57 * verification.
58 */
59 int anomaly_alloc, anomaly_nr;
60 uint32_t *anomaly;
ebcfb379
JH
61};
62
55454427 63void reset_pack_idx_option(struct pack_idx_option *);
aa7e44bf 64
42873078
NP
65/*
66 * Packed object index header
67 */
68struct pack_idx_header {
69 uint32_t idx_signature;
70 uint32_t idx_version;
71};
72
aa7e44bf
GB
73/*
74 * Common part of object structure used for write_idx_file
75 */
76struct pack_idx_entry {
e6a492b7 77 struct object_id oid;
aa7e44bf
GB
78 uint32_t crc32;
79 off_t offset;
80};
81
c9486eb0 82
1e49f22f 83struct progress;
ec9d2249 84/* Note, the data argument could be NULL if object type is blob */
9fd75046 85typedef int (*verify_fn)(const struct object_id *, enum object_type, unsigned long, void*, int*);
c9486eb0 86
55454427
DL
87const char *write_idx_file(const char *index_name, struct pack_idx_entry **objects, int nr_objects, const struct pack_idx_option *, const unsigned char *sha1);
88int check_pack_crc(struct packed_git *p, struct pack_window **w_curs, off_t offset, off_t len, unsigned int nr);
89int verify_pack_index(struct packed_git *);
90int verify_pack(struct repository *, struct packed_git *, verify_fn fn, struct progress *, uint32_t);
91off_t write_pack_header(struct hashfile *f, uint32_t);
92void fixup_pack_header_footer(int, unsigned char *, const char *, uint32_t, unsigned char *, off_t);
5476e1ef 93char *index_pack_lockfile(int fd, int *is_well_formed);
2c5e2865 94
33add2ad
CC
95struct ref;
96
97void write_promisor_file(const char *promisor_name, struct ref **sought, int nr_sought);
98
8ef50d99 99const char *write_rev_file(const char *rev_name, struct pack_idx_entry **objects, uint32_t nr_objects, const unsigned char *hash, unsigned flags);
a587b5a7 100const char *write_rev_file_order(const char *rev_name, uint32_t *pack_order, uint32_t nr_objects, const unsigned char *hash, unsigned flags);
8ef50d99 101
2c5e2865
JK
102/*
103 * The "hdr" output buffer should be at least this big, which will handle sizes
104 * up to 2^67.
105 */
106#define MAX_PACK_OBJECT_HEADER 10
55454427 107int encode_in_pack_object_header(unsigned char *hdr, int hdr_len,
ad6dad09 108 enum object_type, uintmax_t);
a69e5429
JH
109
110#define PH_ERROR_EOF (-1)
111#define PH_ERROR_PACK_SIGNATURE (-2)
112#define PH_ERROR_PROTOCOL (-3)
55454427 113int read_pack_header(int fd, struct pack_header *);
cdf9db3c 114
1c573cdd
TB
115struct packing_data;
116
55454427 117struct hashfile *create_tmp_packfile(char **pack_tmp_name);
2ec02dd5 118void stage_tmp_packfiles(struct strbuf *name_buffer,
0c41a887
ÆAB
119 const char *pack_tmp_name,
120 struct pack_idx_entry **written_list,
121 uint32_t nr_written,
1c573cdd 122 struct packing_data *to_pack,
0c41a887 123 struct pack_idx_option *pack_idx_opts,
2ec02dd5
ÆAB
124 unsigned char hash[],
125 char **idx_tmp_name);
126void rename_tmp_packfile_idx(struct strbuf *basename,
127 char **idx_tmp_name);
cdf9db3c 128
a733cb60 129#endif