1#ifndef PACK_H 2#define PACK_H 3 4#include"object.h" 5 6/* 7 * Packed object header 8 */ 9#define PACK_SIGNATURE 0x5041434b/* "PACK" */ 10#define PACK_VERSION 2 11#define pack_version_ok(v) ((v) == htonl(2) || (v) == htonl(3)) 12struct pack_header { 13uint32_t hdr_signature; 14uint32_t hdr_version; 15uint32_t hdr_entries; 16}; 17 18/* 19 * 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. 22 * 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 25 * 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. 28 * 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 37struct pack_idx_option { 38unsigned flags; 39/* flag bits */ 40#define WRITE_IDX_VERIFY 01/* verify only, do not write the idx file */ 41#define WRITE_IDX_STRICT 02 42 43uint32_t version; 44uint32_t off32_limit; 45 46/* 47 * List of offsets that would fit within off32_limit but 48 * need to be written out as 64-bit entity for byte-for-byte 49 * verification. 50 */ 51int anomaly_alloc, anomaly_nr; 52uint32_t*anomaly; 53}; 54 55externvoidreset_pack_idx_option(struct pack_idx_option *); 56 57/* 58 * Packed object index header 59 */ 60struct pack_idx_header { 61uint32_t idx_signature; 62uint32_t idx_version; 63}; 64 65/* 66 * Common part of object structure used for write_idx_file 67 */ 68struct pack_idx_entry { 69unsigned char sha1[20]; 70uint32_t crc32; 71 off_t offset; 72}; 73 74externconst char*write_idx_file(const char*index_name,struct pack_idx_entry **objects,int nr_objects,const struct pack_idx_option *,unsigned char*sha1); 75externintcheck_pack_crc(struct packed_git *p,struct pack_window **w_curs, off_t offset, off_t len,unsigned int nr); 76externintverify_pack_index(struct packed_git *); 77externintverify_pack(struct packed_git *); 78externvoidfixup_pack_header_footer(int,unsigned char*,const char*,uint32_t,unsigned char*, off_t); 79externchar*index_pack_lockfile(int fd); 80externintencode_in_pack_object_header(enum object_type,uintmax_t,unsigned char*); 81 82#define PH_ERROR_EOF (-1) 83#define PH_ERROR_PACK_SIGNATURE (-2) 84#define PH_ERROR_PROTOCOL (-3) 85externintread_pack_header(int fd,struct pack_header *); 86#endif