blob: d268c014c9eb7040bd65125b13d68edce670274b [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"
Linus Torvaldsa733cb62005-06-28 14:21:02 -07005
6/*
7 * Packed object header
8 */
9#define PACK_SIGNATURE 0x5041434b /* "PACK" */
Junio C Hamano29f049a2006-10-14 23:37:41 -070010#define PACK_VERSION 2
Nicolas Pitred60fc1c2006-02-09 17:50:04 -050011#define pack_version_ok(v) ((v) == htonl(2) || (v) == htonl(3))
Linus Torvaldsa733cb62005-06-28 14:21:02 -070012struct pack_header {
Simon 'corecode' Schubertbb791032007-01-17 09:07:23 +010013 uint32_t hdr_signature;
14 uint32_t hdr_version;
15 uint32_t hdr_entries;
Linus Torvaldsa733cb62005-06-28 14:21:02 -070016};
17
Shawn O. Pearcedf1b0592007-01-17 20:43:57 -050018/*
Nicolas Pitre42873072007-03-16 16:42:50 -040019 * The first four bytes of index formats later than version 1 should
20 * start with this signature, as all older git binaries would find this
21 * value illegal and abort reading the file.
Shawn O. Pearcedf1b0592007-01-17 20:43:57 -050022 *
23 * This is the case because the number of objects in a packfile
24 * cannot exceed 1,431,660,000 as every object would need at least
Nicolas Pitre42873072007-03-16 16:42:50 -040025 * 3 bytes of data and the overall packfile cannot exceed 4 GiB with
26 * version 1 of the index file due to the offsets limited to 32 bits.
27 * Clearly the signature exceeds this maximum.
Shawn O. Pearcedf1b0592007-01-17 20:43:57 -050028 *
29 * Very old git binaries will also compare the first 4 bytes to the
30 * next 4 bytes in the index and abort with a "non-monotonic index"
31 * error if the second 4 byte word is smaller than the first 4
32 * byte word. This would be true in the proposed future index
33 * format as idx_signature would be greater than idx_version.
34 */
35#define PACK_IDX_SIGNATURE 0xff744f63 /* "\377tOc" */
36
Geert Boschaa7e44b2007-06-01 15:18:05 -040037/* These may be overridden by command-line parameters */
38extern uint32_t pack_idx_default_version;
39extern uint32_t pack_idx_off32_limit;
40
Nicolas Pitre42873072007-03-16 16:42:50 -040041/*
42 * Packed object index header
43 */
44struct pack_idx_header {
45 uint32_t idx_signature;
46 uint32_t idx_version;
47};
48
Geert Boschaa7e44b2007-06-01 15:18:05 -040049/*
50 * Common part of object structure used for write_idx_file
51 */
52struct pack_idx_entry {
53 unsigned char sha1[20];
54 uint32_t crc32;
55 off_t offset;
56};
57
Linus Torvalds3bb72562010-01-22 07:55:19 -080058extern const char *write_idx_file(const char *index_name, struct pack_idx_entry **objects, int nr_objects, unsigned char *sha1);
Nicolas Pitrec41a4a92008-06-24 23:19:02 -040059extern int check_pack_crc(struct packed_git *p, struct pack_window **w_curs, off_t offset, off_t len, unsigned int nr);
Nicolas Pitre77d3ece2008-06-24 23:18:17 -040060extern int verify_pack(struct packed_git *);
Nicolas Pitreabeb40e2008-08-29 16:07:59 -040061extern void fixup_pack_header_footer(int, unsigned char *, const char *, uint32_t, unsigned char *, off_t);
Shawn O. Pearce106764e2007-09-14 03:31:16 -040062extern char *index_pack_lockfile(int fd);
Nicolas Pitref965c522010-02-23 15:02:37 -050063extern int encode_in_pack_object_header(enum object_type, uintmax_t, unsigned char *);
Junio C Hamanoa69e5422007-01-22 21:55:18 -080064
65#define PH_ERROR_EOF (-1)
66#define PH_ERROR_PACK_SIGNATURE (-2)
67#define PH_ERROR_PROTOCOL (-3)
68extern int read_pack_header(int fd, struct pack_header *);
Linus Torvaldsa733cb62005-06-28 14:21:02 -070069#endif