blob: 01d385903adcba22f46633aec3f7c2fff78776f3 [file] [log] [blame]
Linus Torvaldsa733cb62005-06-28 14:21:02 -07001#ifndef PACK_H
2#define PACK_H
3
Linus Torvalds19746322006-07-11 20:45:31 -07004#include "object.h"
Junio C Hamanoc0ad4652011-10-28 11:40:48 -07005#include "csum-file.h"
Linus Torvaldsa733cb62005-06-28 14:21:02 -07006
Nguyễn Thái Ngọc Duy94e10822018-11-10 06:49:07 +01007struct repository;
8
Linus Torvaldsa733cb62005-06-28 14:21:02 -07009/*
10 * Packed object header
11 */
12#define PACK_SIGNATURE 0x5041434b /* "PACK" */
Junio C Hamano29f049a2006-10-14 23:37:41 -070013#define PACK_VERSION 2
Nicolas Pitred60fc1c2006-02-09 17:50:04 -050014#define pack_version_ok(v) ((v) == htonl(2) || (v) == htonl(3))
Linus Torvaldsa733cb62005-06-28 14:21:02 -070015struct pack_header {
Simon 'corecode' Schubertbb791032007-01-17 09:07:23 +010016 uint32_t hdr_signature;
17 uint32_t hdr_version;
18 uint32_t hdr_entries;
Linus Torvaldsa733cb62005-06-28 14:21:02 -070019};
20
Shawn O. Pearcedf1b0592007-01-17 20:43:57 -050021/*
Nicolas Pitre42873072007-03-16 16:42:50 -040022 * The first four bytes of index formats later than version 1 should
23 * start with this signature, as all older git binaries would find this
24 * value illegal and abort reading the file.
Shawn O. Pearcedf1b0592007-01-17 20:43:57 -050025 *
26 * This is the case because the number of objects in a packfile
27 * cannot exceed 1,431,660,000 as every object would need at least
Nicolas Pitre42873072007-03-16 16:42:50 -040028 * 3 bytes of data and the overall packfile cannot exceed 4 GiB with
29 * version 1 of the index file due to the offsets limited to 32 bits.
30 * Clearly the signature exceeds this maximum.
Shawn O. Pearcedf1b0592007-01-17 20:43:57 -050031 *
32 * Very old git binaries will also compare the first 4 bytes to the
33 * next 4 bytes in the index and abort with a "non-monotonic index"
34 * error if the second 4 byte word is smaller than the first 4
35 * byte word. This would be true in the proposed future index
36 * format as idx_signature would be greater than idx_version.
37 */
38#define PACK_IDX_SIGNATURE 0xff744f63 /* "\377tOc" */
39
Junio C Hamanoebcfb372011-02-25 15:43:25 -080040struct pack_idx_option {
Junio C Hamanoe337a042011-02-02 17:29:01 -080041 unsigned flags;
42 /* flag bits */
Junio C Hamano68be2fe2011-11-16 22:04:13 -080043#define WRITE_IDX_VERIFY 01 /* verify only, do not write the idx file */
44#define WRITE_IDX_STRICT 02
Taylor Blau8ef50d92021-01-25 18:37:18 -050045#define WRITE_REV 04
46#define WRITE_REV_VERIFY 010
Taylor Blau5dfaf492022-05-20 19:17:43 -040047#define WRITE_MTIMES 020
Junio C Hamanoe337a042011-02-02 17:29:01 -080048
Junio C Hamanoebcfb372011-02-25 15:43:25 -080049 uint32_t version;
50 uint32_t off32_limit;
Junio C Hamano3c9fc072011-02-25 16:55:26 -080051
52 /*
53 * List of offsets that would fit within off32_limit but
54 * need to be written out as 64-bit entity for byte-for-byte
55 * verification.
56 */
57 int anomaly_alloc, anomaly_nr;
58 uint32_t *anomaly;
Junio C Hamanoebcfb372011-02-25 15:43:25 -080059};
60
Denton Liu55454422019-04-29 04:28:14 -040061void reset_pack_idx_option(struct pack_idx_option *);
Geert Boschaa7e44b2007-06-01 15:18:05 -040062
Nicolas Pitre42873072007-03-16 16:42:50 -040063/*
64 * Packed object index header
65 */
66struct pack_idx_header {
67 uint32_t idx_signature;
68 uint32_t idx_version;
69};
70
Geert Boschaa7e44b2007-06-01 15:18:05 -040071/*
72 * Common part of object structure used for write_idx_file
73 */
74struct pack_idx_entry {
brian m. carlsone6a492b2017-05-06 22:10:11 +000075 struct object_id oid;
Geert Boschaa7e44b2007-06-01 15:18:05 -040076 uint32_t crc32;
77 off_t offset;
78};
79
Nguyễn Thái Ngọc Duyc9486eb2011-11-07 09:59:25 +070080
Nguyễn Thái Ngọc Duy1e49f222011-11-07 09:59:26 +070081struct progress;
Nguyễn Thái Ngọc Duyec9d2242016-07-13 17:44:04 +020082/* Note, the data argument could be NULL if object type is blob */
brian m. carlson9fd75042017-05-06 22:10:20 +000083typedef int (*verify_fn)(const struct object_id *, enum object_type, unsigned long, void*, int*);
Nguyễn Thái Ngọc Duyc9486eb2011-11-07 09:59:25 +070084
Denton Liu55454422019-04-29 04:28:14 -040085const 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);
86int check_pack_crc(struct packed_git *p, struct pack_window **w_curs, off_t offset, off_t len, unsigned int nr);
87int verify_pack_index(struct packed_git *);
88int verify_pack(struct repository *, struct packed_git *, verify_fn fn, struct progress *, uint32_t);
89off_t write_pack_header(struct hashfile *f, uint32_t);
90void fixup_pack_header_footer(int, unsigned char *, const char *, uint32_t, unsigned char *, off_t);
Jonathan Tan5476e1e2021-02-22 11:20:09 -080091char *index_pack_lockfile(int fd, int *is_well_formed);
Jeff King2c5e2862017-03-24 13:26:50 -040092
Christian Couder33add2a2021-01-12 09:21:59 +010093struct ref;
94
95void write_promisor_file(const char *promisor_name, struct ref **sought, int nr_sought);
96
Taylor Blau8ef50d92021-01-25 18:37:18 -050097const char *write_rev_file(const char *rev_name, struct pack_idx_entry **objects, uint32_t nr_objects, const unsigned char *hash, unsigned flags);
Taylor Blaua587b5a2021-03-30 11:04:29 -040098const char *write_rev_file_order(const char *rev_name, uint32_t *pack_order, uint32_t nr_objects, const unsigned char *hash, unsigned flags);
Taylor Blau8ef50d92021-01-25 18:37:18 -050099
Jeff King2c5e2862017-03-24 13:26:50 -0400100/*
101 * The "hdr" output buffer should be at least this big, which will handle sizes
102 * up to 2^67.
103 */
104#define MAX_PACK_OBJECT_HEADER 10
Denton Liu55454422019-04-29 04:28:14 -0400105int encode_in_pack_object_header(unsigned char *hdr, int hdr_len,
Denton Liuad6dad02019-04-29 04:28:23 -0400106 enum object_type, uintmax_t);
Junio C Hamanoa69e5422007-01-22 21:55:18 -0800107
108#define PH_ERROR_EOF (-1)
109#define PH_ERROR_PACK_SIGNATURE (-2)
110#define PH_ERROR_PROTOCOL (-3)
Denton Liu55454422019-04-29 04:28:14 -0400111int read_pack_header(int fd, struct pack_header *);
Junio C Hamanocdf9db32011-10-28 11:52:14 -0700112
Taylor Blau1c573cd2022-05-20 19:17:38 -0400113struct packing_data;
114
Denton Liu55454422019-04-29 04:28:14 -0400115struct hashfile *create_tmp_packfile(char **pack_tmp_name);
Ævar Arnfjörð Bjarmason2ec02dd2021-09-09 19:24:56 -0400116void stage_tmp_packfiles(struct strbuf *name_buffer,
Ævar Arnfjörð Bjarmason0c41a882021-09-08 23:24:47 -0400117 const char *pack_tmp_name,
118 struct pack_idx_entry **written_list,
119 uint32_t nr_written,
Taylor Blau1c573cd2022-05-20 19:17:38 -0400120 struct packing_data *to_pack,
Ævar Arnfjörð Bjarmason0c41a882021-09-08 23:24:47 -0400121 struct pack_idx_option *pack_idx_opts,
Ævar Arnfjörð Bjarmason2ec02dd2021-09-09 19:24:56 -0400122 unsigned char hash[],
123 char **idx_tmp_name);
124void rename_tmp_packfile_idx(struct strbuf *basename,
125 char **idx_tmp_name);
Junio C Hamanocdf9db32011-10-28 11:52:14 -0700126
Linus Torvaldsa733cb62005-06-28 14:21:02 -0700127#endif