5 uint32_t pack_idx_default_version
= 1;
6 uint32_t pack_idx_off32_limit
= 0x7fffffff;
8 static int sha1_compare(const void *_a
, const void *_b
)
10 struct pack_idx_entry
*a
= *(struct pack_idx_entry
**)_a
;
11 struct pack_idx_entry
*b
= *(struct pack_idx_entry
**)_b
;
12 return hashcmp(a
->sha1
, b
->sha1
);
16 * On entry *sha1 contains the pack content SHA1 hash, on exit it is
17 * the SHA1 hash of sorted object names. The objects array passed in
18 * will be sorted by SHA1 on exit.
20 const char *write_idx_file(const char *index_name
, struct pack_idx_entry
**objects
, int nr_objects
, unsigned char *sha1
)
23 struct pack_idx_entry
**sorted_by_sha
, **list
, **last
;
24 off_t last_obj_offset
= 0;
28 uint32_t index_version
;
31 sorted_by_sha
= objects
;
33 last
= sorted_by_sha
+ nr_objects
;
34 for (i
= 0; i
< nr_objects
; ++i
) {
35 if (objects
[i
]->offset
> last_obj_offset
)
36 last_obj_offset
= objects
[i
]->offset
;
38 qsort(sorted_by_sha
, nr_objects
, sizeof(sorted_by_sha
[0]),
42 sorted_by_sha
= list
= last
= NULL
;
45 static char tmpfile
[PATH_MAX
];
46 snprintf(tmpfile
, sizeof(tmpfile
),
47 "%s/tmp_idx_XXXXXX", get_object_directory());
48 fd
= xmkstemp(tmpfile
);
49 index_name
= xstrdup(tmpfile
);
52 fd
= open(index_name
, O_CREAT
|O_EXCL
|O_WRONLY
, 0600);
55 die("unable to create %s: %s", index_name
, strerror(errno
));
56 f
= sha1fd(fd
, index_name
);
58 /* if last object's offset is >= 2^31 we should use index V2 */
59 index_version
= (last_obj_offset
>> 31) ? 2 : pack_idx_default_version
;
61 /* index versions 2 and above need a header */
62 if (index_version
>= 2) {
63 struct pack_idx_header hdr
;
64 hdr
.idx_signature
= htonl(PACK_IDX_SIGNATURE
);
65 hdr
.idx_version
= htonl(index_version
);
66 sha1write(f
, &hdr
, sizeof(hdr
));
70 * Write the first-level table (the list is sorted,
71 * but we use a 256-entry lookup to be able to avoid
72 * having to do eight extra binary search iterations).
74 for (i
= 0; i
< 256; i
++) {
75 struct pack_idx_entry
**next
= list
;
77 struct pack_idx_entry
*obj
= *next
;
78 if (obj
->sha1
[0] != i
)
82 array
[i
] = htonl(next
- sorted_by_sha
);
85 sha1write(f
, array
, 256 * 4);
87 /* compute the SHA1 hash of sorted object names. */
91 * Write the actual SHA1 entries..
94 for (i
= 0; i
< nr_objects
; i
++) {
95 struct pack_idx_entry
*obj
= *list
++;
96 if (index_version
< 2) {
97 uint32_t offset
= htonl(obj
->offset
);
98 sha1write(f
, &offset
, 4);
100 sha1write(f
, obj
->sha1
, 20);
101 SHA1_Update(&ctx
, obj
->sha1
, 20);
104 if (index_version
>= 2) {
105 unsigned int nr_large_offset
= 0;
107 /* write the crc32 table */
108 list
= sorted_by_sha
;
109 for (i
= 0; i
< nr_objects
; i
++) {
110 struct pack_idx_entry
*obj
= *list
++;
111 uint32_t crc32_val
= htonl(obj
->crc32
);
112 sha1write(f
, &crc32_val
, 4);
115 /* write the 32-bit offset table */
116 list
= sorted_by_sha
;
117 for (i
= 0; i
< nr_objects
; i
++) {
118 struct pack_idx_entry
*obj
= *list
++;
119 uint32_t offset
= (obj
->offset
<= pack_idx_off32_limit
) ?
120 obj
->offset
: (0x80000000 | nr_large_offset
++);
121 offset
= htonl(offset
);
122 sha1write(f
, &offset
, 4);
125 /* write the large offset table */
126 list
= sorted_by_sha
;
127 while (nr_large_offset
) {
128 struct pack_idx_entry
*obj
= *list
++;
129 uint64_t offset
= obj
->offset
;
130 if (offset
> pack_idx_off32_limit
) {
132 split
[0] = htonl(offset
>> 32);
133 split
[1] = htonl(offset
& 0xffffffff);
134 sha1write(f
, split
, 8);
140 sha1write(f
, sha1
, 20);
141 sha1close(f
, NULL
, 1);
142 SHA1_Final(sha1
, &ctx
);
146 void fixup_pack_header_footer(int pack_fd
,
147 unsigned char *pack_file_sha1
,
148 const char *pack_name
,
149 uint32_t object_count
)
151 static const int buf_sz
= 128 * 1024;
153 struct pack_header hdr
;
156 if (lseek(pack_fd
, 0, SEEK_SET
) != 0)
157 die("Failed seeking to start: %s", strerror(errno
));
158 if (read_in_full(pack_fd
, &hdr
, sizeof(hdr
)) != sizeof(hdr
))
159 die("Unable to reread header of %s: %s", pack_name
, strerror(errno
));
160 if (lseek(pack_fd
, 0, SEEK_SET
) != 0)
161 die("Failed seeking to start: %s", strerror(errno
));
162 hdr
.hdr_entries
= htonl(object_count
);
163 write_or_die(pack_fd
, &hdr
, sizeof(hdr
));
166 SHA1_Update(&c
, &hdr
, sizeof(hdr
));
168 buf
= xmalloc(buf_sz
);
170 ssize_t n
= xread(pack_fd
, buf
, buf_sz
);
174 die("Failed to checksum %s: %s", pack_name
, strerror(errno
));
175 SHA1_Update(&c
, buf
, n
);
179 SHA1_Final(pack_file_sha1
, &c
);
180 write_or_die(pack_fd
, pack_file_sha1
, 20);