🌐 AI搜索 & 代理 主页
blob: 3223f5a0380f735509424bbdbad64097948ef85b [file] [log] [blame]
Linus Torvaldsa733cb62005-06-28 21:21:021#ifndef PACK_H
2#define PACK_H
3
Linus Torvalds19746322006-07-12 03:45:314#include "object.h"
Junio C Hamanoc0ad4652011-10-28 18:40:485#include "csum-file.h"
Linus Torvaldsa733cb62005-06-28 21:21:026
7/*
8 * Packed object header
9 */
10#define PACK_SIGNATURE 0x5041434b /* "PACK" */
Junio C Hamano29f049a2006-10-15 06:37:4111#define PACK_VERSION 2
Nicolas Pitred60fc1c2006-02-09 22:50:0412#define pack_version_ok(v) ((v) == htonl(2) || (v) == htonl(3))
Linus Torvaldsa733cb62005-06-28 21:21:0213struct pack_header {
Simon 'corecode' Schubertbb791032007-01-17 08:07:2314 uint32_t hdr_signature;
15 uint32_t hdr_version;
16 uint32_t hdr_entries;
Linus Torvaldsa733cb62005-06-28 21:21:0217};
18
Shawn O. Pearcedf1b0592007-01-18 01:43:5719/*
Nicolas Pitre42873072007-03-16 20:42:5020 * The first four bytes of index formats later than version 1 should
21 * start with this signature, as all older git binaries would find this
22 * value illegal and abort reading the file.
Shawn O. Pearcedf1b0592007-01-18 01:43:5723 *
24 * This is the case because the number of objects in a packfile
25 * cannot exceed 1,431,660,000 as every object would need at least
Nicolas Pitre42873072007-03-16 20:42:5026 * 3 bytes of data and the overall packfile cannot exceed 4 GiB with
27 * version 1 of the index file due to the offsets limited to 32 bits.
28 * Clearly the signature exceeds this maximum.
Shawn O. Pearcedf1b0592007-01-18 01:43:5729 *
30 * Very old git binaries will also compare the first 4 bytes to the
31 * next 4 bytes in the index and abort with a "non-monotonic index"
32 * error if the second 4 byte word is smaller than the first 4
33 * byte word. This would be true in the proposed future index
34 * format as idx_signature would be greater than idx_version.
35 */
36#define PACK_IDX_SIGNATURE 0xff744f63 /* "\377tOc" */
37
Junio C Hamanoebcfb372011-02-25 23:43:2538struct pack_idx_option {
Junio C Hamanoe337a042011-02-03 01:29:0139 unsigned flags;
40 /* flag bits */
Junio C Hamano68be2fe2011-11-17 06:04:1341#define WRITE_IDX_VERIFY 01 /* verify only, do not write the idx file */
42#define WRITE_IDX_STRICT 02
Junio C Hamanoe337a042011-02-03 01:29:0143
Junio C Hamanoebcfb372011-02-25 23:43:2544 uint32_t version;
45 uint32_t off32_limit;
Junio C Hamano3c9fc072011-02-26 00:55:2646
47 /*
48 * List of offsets that would fit within off32_limit but
49 * need to be written out as 64-bit entity for byte-for-byte
50 * verification.
51 */
52 int anomaly_alloc, anomaly_nr;
53 uint32_t *anomaly;
Junio C Hamanoebcfb372011-02-25 23:43:2554};
55
56extern void reset_pack_idx_option(struct pack_idx_option *);
Geert Boschaa7e44b2007-06-01 19:18:0557
Nicolas Pitre42873072007-03-16 20:42:5058/*
59 * Packed object index header
60 */
61struct pack_idx_header {
62 uint32_t idx_signature;
63 uint32_t idx_version;
64};
65
Geert Boschaa7e44b2007-06-01 19:18:0566/*
67 * Common part of object structure used for write_idx_file
68 */
69struct pack_idx_entry {
70 unsigned char sha1[20];
71 uint32_t crc32;
72 off_t offset;
73};
74
Nguyễn Thái Ngọc Duyc9486eb2011-11-07 02:59:2575
Nguyễn Thái Ngọc Duy1e49f222011-11-07 02:59:2676struct progress;
Nguyễn Thái Ngọc Duyc9486eb2011-11-07 02:59:2577typedef int (*verify_fn)(const unsigned char*, enum object_type, unsigned long, void*, int*);
78
Jeff King1190a1a2013-12-05 20:28:0779extern const 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);
Nicolas Pitrec41a4a92008-06-25 03:19:0280extern int check_pack_crc(struct packed_git *p, struct pack_window **w_curs, off_t offset, off_t len, unsigned int nr);
Shawn O. Pearce9b0aa722010-04-19 14:23:0781extern int verify_pack_index(struct packed_git *);
Nguyễn Thái Ngọc Duy1e49f222011-11-07 02:59:2682extern int verify_pack(struct packed_git *, verify_fn fn, struct progress *, uint32_t);
Junio C Hamanoc0ad4652011-10-28 18:40:4883extern off_t write_pack_header(struct sha1file *f, uint32_t);
Nicolas Pitreabeb40e2008-08-29 20:07:5984extern void fixup_pack_header_footer(int, unsigned char *, const char *, uint32_t, unsigned char *, off_t);
Shawn O. Pearce106764e2007-09-14 07:31:1685extern char *index_pack_lockfile(int fd);
Nicolas Pitref965c522010-02-23 20:02:3786extern int encode_in_pack_object_header(enum object_type, uintmax_t, unsigned char *);
Junio C Hamanoa69e5422007-01-23 05:55:1887
88#define PH_ERROR_EOF (-1)
89#define PH_ERROR_PACK_SIGNATURE (-2)
90#define PH_ERROR_PROTOCOL (-3)
91extern int read_pack_header(int fd, struct pack_header *);
Junio C Hamanocdf9db32011-10-28 18:52:1492
93extern struct sha1file *create_tmp_packfile(char **pack_tmp_name);
Sun He58892712014-03-03 09:24:2994extern void finish_tmp_packfile(struct strbuf *name_buffer, const char *pack_tmp_name, struct pack_idx_entry **written_list, uint32_t nr_written, struct pack_idx_option *pack_idx_opts, unsigned char sha1[]);
Junio C Hamanocdf9db32011-10-28 18:52:1495
Linus Torvaldsa733cb62005-06-28 21:21:0296#endif