blob: 6583797ce5853bc17ce95bf4cc86af6ee0f660b1 [file] [log] [blame]
Linus Torvalds0fcfd162005-04-18 13:04:43 -07001/*
2 * GIT - The information manager from hell
3 *
4 * Copyright (C) Linus Torvalds, 2005
5 *
6 * This handles basic git sha1 object files - packing, unpacking,
7 * creation etc.
8 */
Linus Torvalds0fcfd162005-04-18 13:04:43 -07009#include "cache.h"
Junio C Hamano1f688552005-06-27 03:35:33 -070010#include "delta.h"
Linus Torvaldsa733cb62005-06-28 14:21:02 -070011#include "pack.h"
Peter Eriksen8e440252006-04-02 14:44:09 +020012#include "blob.h"
13#include "commit.h"
14#include "tag.h"
15#include "tree.h"
Linus Torvaldsf35a6d32007-04-09 21:20:29 -070016#include "refs.h"
Linus Torvalds0fcfd162005-04-18 13:04:43 -070017
Linus Torvalds144bde72005-04-23 11:09:32 -070018#ifndef O_NOATIME
19#if defined(__linux__) && (defined(__i386__) || defined(__PPC__))
20#define O_NOATIME 01000000
21#else
22#define O_NOATIME 0
23#endif
24#endif
25
Pavel Roskine05db0f2007-01-09 23:07:11 -050026#ifdef NO_C99_FORMAT
27#define SZ_FMT "lu"
Steffen Prohaska9e42d6a2007-11-21 21:27:19 +010028static unsigned long sz_fmt(size_t s) { return (unsigned long)s; }
Pavel Roskine05db0f2007-01-09 23:07:11 -050029#else
30#define SZ_FMT "zu"
Steffen Prohaska9e42d6a2007-11-21 21:27:19 +010031static size_t sz_fmt(size_t s) { return s; }
Pavel Roskine05db0f2007-01-09 23:07:11 -050032#endif
33
David Rientjes96f1e582006-08-15 10:23:48 -070034const unsigned char null_sha1[20];
Junio C Hamano88cd6212005-09-30 14:02:47 -070035
Linus Torvalds144bde72005-04-23 11:09:32 -070036static unsigned int sha1_file_open_flag = O_NOATIME;
37
Linus Torvalds192a6be2007-05-30 10:32:19 -070038const signed char hexval_table[256] = {
Junio C Hamanoe49521b2006-09-20 16:04:46 -070039 -1, -1, -1, -1, -1, -1, -1, -1, /* 00-07 */
40 -1, -1, -1, -1, -1, -1, -1, -1, /* 08-0f */
41 -1, -1, -1, -1, -1, -1, -1, -1, /* 10-17 */
42 -1, -1, -1, -1, -1, -1, -1, -1, /* 18-1f */
43 -1, -1, -1, -1, -1, -1, -1, -1, /* 20-27 */
44 -1, -1, -1, -1, -1, -1, -1, -1, /* 28-2f */
45 0, 1, 2, 3, 4, 5, 6, 7, /* 30-37 */
46 8, 9, -1, -1, -1, -1, -1, -1, /* 38-3f */
47 -1, 10, 11, 12, 13, 14, 15, -1, /* 40-47 */
48 -1, -1, -1, -1, -1, -1, -1, -1, /* 48-4f */
49 -1, -1, -1, -1, -1, -1, -1, -1, /* 50-57 */
50 -1, -1, -1, -1, -1, -1, -1, -1, /* 58-5f */
51 -1, 10, 11, 12, 13, 14, 15, -1, /* 60-67 */
52 -1, -1, -1, -1, -1, -1, -1, -1, /* 68-67 */
53 -1, -1, -1, -1, -1, -1, -1, -1, /* 70-77 */
54 -1, -1, -1, -1, -1, -1, -1, -1, /* 78-7f */
55 -1, -1, -1, -1, -1, -1, -1, -1, /* 80-87 */
56 -1, -1, -1, -1, -1, -1, -1, -1, /* 88-8f */
57 -1, -1, -1, -1, -1, -1, -1, -1, /* 90-97 */
58 -1, -1, -1, -1, -1, -1, -1, -1, /* 98-9f */
59 -1, -1, -1, -1, -1, -1, -1, -1, /* a0-a7 */
60 -1, -1, -1, -1, -1, -1, -1, -1, /* a8-af */
61 -1, -1, -1, -1, -1, -1, -1, -1, /* b0-b7 */
62 -1, -1, -1, -1, -1, -1, -1, -1, /* b8-bf */
63 -1, -1, -1, -1, -1, -1, -1, -1, /* c0-c7 */
64 -1, -1, -1, -1, -1, -1, -1, -1, /* c8-cf */
65 -1, -1, -1, -1, -1, -1, -1, -1, /* d0-d7 */
66 -1, -1, -1, -1, -1, -1, -1, -1, /* d8-df */
67 -1, -1, -1, -1, -1, -1, -1, -1, /* e0-e7 */
68 -1, -1, -1, -1, -1, -1, -1, -1, /* e8-ef */
69 -1, -1, -1, -1, -1, -1, -1, -1, /* f0-f7 */
70 -1, -1, -1, -1, -1, -1, -1, -1, /* f8-ff */
71};
Linus Torvalds0fcfd162005-04-18 13:04:43 -070072
73int get_sha1_hex(const char *hex, unsigned char *sha1)
74{
75 int i;
76 for (i = 0; i < 20; i++) {
77 unsigned int val = (hexval(hex[0]) << 4) | hexval(hex[1]);
78 if (val & ~0xff)
79 return -1;
80 *sha1++ = val;
81 hex += 2;
82 }
83 return 0;
84}
85
Junio C Hamanob2cb9422005-07-06 01:11:52 -070086int safe_create_leading_directories(char *path)
87{
88 char *pos = path;
Jason Riedy67d42212006-02-09 17:56:13 -080089 struct stat st;
90
Johannes Sixt85dadc32007-11-13 21:05:00 +010091 if (is_absolute_path(path))
Johannes Schindelin67ffdf42005-11-07 00:36:15 +010092 pos++;
Junio C Hamanob2cb9422005-07-06 01:11:52 -070093
94 while (pos) {
95 pos = strchr(pos, '/');
96 if (!pos)
97 break;
98 *pos = 0;
Jason Riedy67d42212006-02-09 17:56:13 -080099 if (!stat(path, &st)) {
100 /* path exists */
101 if (!S_ISDIR(st.st_mode)) {
Junio C Hamanob2cb9422005-07-06 01:11:52 -0700102 *pos = '/';
Jason Riedy67d42212006-02-09 17:56:13 -0800103 return -3;
Junio C Hamanob2cb9422005-07-06 01:11:52 -0700104 }
Johannes Schindelin457f06d2005-12-22 23:13:56 +0100105 }
Jason Riedy67d42212006-02-09 17:56:13 -0800106 else if (mkdir(path, 0777)) {
107 *pos = '/';
108 return -1;
109 }
Johannes Schindelin457f06d2005-12-22 23:13:56 +0100110 else if (adjust_shared_perm(path)) {
111 *pos = '/';
112 return -2;
113 }
Junio C Hamanob2cb9422005-07-06 01:11:52 -0700114 *pos++ = '/';
115 }
116 return 0;
117}
118
Linus Torvalds0fcfd162005-04-18 13:04:43 -0700119char * sha1_to_hex(const unsigned char *sha1)
120{
Linus Torvaldsdcb34502006-05-03 17:21:08 -0700121 static int bufno;
122 static char hexbuffer[4][50];
Linus Torvalds0fcfd162005-04-18 13:04:43 -0700123 static const char hex[] = "0123456789abcdef";
Linus Torvaldsdcb34502006-05-03 17:21:08 -0700124 char *buffer = hexbuffer[3 & ++bufno], *buf = buffer;
Linus Torvalds0fcfd162005-04-18 13:04:43 -0700125 int i;
126
127 for (i = 0; i < 20; i++) {
128 unsigned int val = *sha1++;
129 *buf++ = hex[val >> 4];
130 *buf++ = hex[val & 0xf];
131 }
Johannes Schindelin1e80e042005-12-22 18:55:59 +0100132 *buf = '\0';
133
Linus Torvalds0fcfd162005-04-18 13:04:43 -0700134 return buffer;
135}
136
Junio C Hamanoace15342005-05-07 00:38:04 -0700137static void fill_sha1_path(char *pathbuf, const unsigned char *sha1)
138{
139 int i;
140 for (i = 0; i < 20; i++) {
141 static char hex[] = "0123456789abcdef";
142 unsigned int val = sha1[i];
143 char *pos = pathbuf + i*2 + (i > 0);
144 *pos++ = hex[val >> 4];
145 *pos = hex[val & 0xf];
146 }
147}
148
Linus Torvalds0fcfd162005-04-18 13:04:43 -0700149/*
150 * NOTE! This returns a statically allocated buffer, so you have to be
Jim Meyering790296f2008-01-03 15:18:07 +0100151 * careful about using it. Do an "xstrdup()" if you need to save the
Linus Torvalds0fcfd162005-04-18 13:04:43 -0700152 * filename.
Junio C Hamanoace15342005-05-07 00:38:04 -0700153 *
154 * Also note that this returns the location for creating. Reading
155 * SHA1 file can happen from any alternate directory listed in the
Junio C Hamanod19938a2005-05-09 17:57:56 -0700156 * DB_ENVIRONMENT environment variable if it is not found in
Junio C Hamanoace15342005-05-07 00:38:04 -0700157 * the primary object database.
Linus Torvalds0fcfd162005-04-18 13:04:43 -0700158 */
159char *sha1_file_name(const unsigned char *sha1)
160{
Linus Torvalds0fcfd162005-04-18 13:04:43 -0700161 static char *name, *base;
162
163 if (!base) {
Junio C Hamanod19938a2005-05-09 17:57:56 -0700164 const char *sha1_file_directory = get_object_directory();
Linus Torvalds0fcfd162005-04-18 13:04:43 -0700165 int len = strlen(sha1_file_directory);
Christopher Li812666c2005-04-26 12:00:58 -0700166 base = xmalloc(len + 60);
Linus Torvalds0fcfd162005-04-18 13:04:43 -0700167 memcpy(base, sha1_file_directory, len);
168 memset(base+len, 0, 60);
169 base[len] = '/';
170 base[len+3] = '/';
171 name = base + len + 1;
172 }
Junio C Hamanoace15342005-05-07 00:38:04 -0700173 fill_sha1_path(name, sha1);
Linus Torvalds0fcfd162005-04-18 13:04:43 -0700174 return base;
175}
176
barkalow@iabervon.orgbf592c52005-07-31 20:53:44 -0400177char *sha1_pack_name(const unsigned char *sha1)
178{
179 static const char hex[] = "0123456789abcdef";
180 static char *name, *base, *buf;
181 int i;
182
183 if (!base) {
184 const char *sha1_file_directory = get_object_directory();
185 int len = strlen(sha1_file_directory);
186 base = xmalloc(len + 60);
187 sprintf(base, "%s/pack/pack-1234567890123456789012345678901234567890.pack", sha1_file_directory);
188 name = base + len + 11;
189 }
190
191 buf = name;
192
193 for (i = 0; i < 20; i++) {
194 unsigned int val = *sha1++;
195 *buf++ = hex[val >> 4];
196 *buf++ = hex[val & 0xf];
197 }
Junio C Hamanoa6080a02007-06-07 00:04:01 -0700198
barkalow@iabervon.orgbf592c52005-07-31 20:53:44 -0400199 return base;
200}
201
202char *sha1_pack_index_name(const unsigned char *sha1)
203{
204 static const char hex[] = "0123456789abcdef";
205 static char *name, *base, *buf;
206 int i;
207
208 if (!base) {
209 const char *sha1_file_directory = get_object_directory();
210 int len = strlen(sha1_file_directory);
211 base = xmalloc(len + 60);
212 sprintf(base, "%s/pack/pack-1234567890123456789012345678901234567890.idx", sha1_file_directory);
213 name = base + len + 11;
214 }
215
216 buf = name;
217
218 for (i = 0; i < 20; i++) {
219 unsigned int val = *sha1++;
220 *buf++ = hex[val >> 4];
221 *buf++ = hex[val & 0xf];
222 }
Junio C Hamanoa6080a02007-06-07 00:04:01 -0700223
barkalow@iabervon.orgbf592c52005-07-31 20:53:44 -0400224 return base;
225}
226
Junio C Hamanod5a63b92005-08-14 17:25:57 -0700227struct alternate_object_database *alt_odb_list;
228static struct alternate_object_database **alt_odb_tail;
Junio C Hamanoace15342005-05-07 00:38:04 -0700229
Martin Waitzc2f493a2006-05-07 20:19:21 +0200230static void read_info_alternates(const char * alternates, int depth);
231
Junio C Hamanoddd5d052005-05-08 13:51:13 -0700232/*
233 * Prepare alternate object database registry.
Junio C Hamanod5a63b92005-08-14 17:25:57 -0700234 *
235 * The variable alt_odb_list points at the list of struct
236 * alternate_object_database. The elements on this list come from
237 * non-empty elements from colon separated ALTERNATE_DB_ENVIRONMENT
238 * environment variable, and $GIT_OBJECT_DIRECTORY/info/alternates,
Junio C Hamano1494e032005-12-04 22:48:43 -0800239 * whose contents is similar to that environment variable but can be
240 * LF separated. Its base points at a statically allocated buffer that
Junio C Hamanod5a63b92005-08-14 17:25:57 -0700241 * contains "/the/directory/corresponding/to/.git/objects/...", while
242 * its name points just after the slash at the end of ".git/objects/"
243 * in the example above, and has enough space to hold 40-byte hex
244 * SHA1, an extra slash for the first level indirection, and the
245 * terminating NUL.
Junio C Hamanoddd5d052005-05-08 13:51:13 -0700246 */
Martin Waitzc2f493a2006-05-07 20:19:21 +0200247static int link_alt_odb_entry(const char * entry, int len, const char * relative_base, int depth)
248{
249 struct stat st;
250 const char *objdir = get_object_directory();
251 struct alternate_object_database *ent;
252 struct alternate_object_database *alt;
253 /* 43 = 40-byte + 2 '/' + terminating NUL */
254 int pfxlen = len;
255 int entlen = pfxlen + 43;
256 int base_len = -1;
257
Johannes Sixt85dadc32007-11-13 21:05:00 +0100258 if (!is_absolute_path(entry) && relative_base) {
Martin Waitzc2f493a2006-05-07 20:19:21 +0200259 /* Relative alt-odb */
260 if (base_len < 0)
261 base_len = strlen(relative_base) + 1;
262 entlen += base_len;
263 pfxlen += base_len;
264 }
265 ent = xmalloc(sizeof(*ent) + entlen);
266
Johannes Sixt85dadc32007-11-13 21:05:00 +0100267 if (!is_absolute_path(entry) && relative_base) {
Martin Waitzc2f493a2006-05-07 20:19:21 +0200268 memcpy(ent->base, relative_base, base_len - 1);
269 ent->base[base_len - 1] = '/';
270 memcpy(ent->base + base_len, entry, len);
271 }
272 else
273 memcpy(ent->base, entry, pfxlen);
274
275 ent->name = ent->base + pfxlen + 1;
276 ent->base[pfxlen + 3] = '/';
277 ent->base[pfxlen] = ent->base[entlen-1] = 0;
278
279 /* Detect cases where alternate disappeared */
280 if (stat(ent->base, &st) || !S_ISDIR(st.st_mode)) {
281 error("object directory %s does not exist; "
282 "check .git/objects/info/alternates.",
283 ent->base);
284 free(ent);
285 return -1;
286 }
287
288 /* Prevent the common mistake of listing the same
289 * thing twice, or object directory itself.
290 */
291 for (alt = alt_odb_list; alt; alt = alt->next) {
292 if (!memcmp(ent->base, alt->base, pfxlen)) {
293 free(ent);
294 return -1;
295 }
296 }
297 if (!memcmp(ent->base, objdir, pfxlen)) {
298 free(ent);
299 return -1;
300 }
301
302 /* add the alternate entry */
303 *alt_odb_tail = ent;
304 alt_odb_tail = &(ent->next);
305 ent->next = NULL;
306
307 /* recursively add alternates */
308 read_info_alternates(ent->base, depth + 1);
309
310 ent->base[pfxlen] = '/';
311
312 return 0;
313}
314
Junio C Hamanoccfd3e92005-09-13 00:05:22 -0700315static void link_alt_odb_entries(const char *alt, const char *ep, int sep,
Martin Waitzc2f493a2006-05-07 20:19:21 +0200316 const char *relative_base, int depth)
Junio C Hamanod5a63b92005-08-14 17:25:57 -0700317{
318 const char *cp, *last;
Martin Waitzc2f493a2006-05-07 20:19:21 +0200319
320 if (depth > 5) {
321 error("%s: ignoring alternate object stores, nesting too deep.",
322 relative_base);
323 return;
324 }
Junio C Hamanod5a63b92005-08-14 17:25:57 -0700325
326 last = alt;
Junio C Hamano9577e7e2005-08-16 18:22:05 -0700327 while (last < ep) {
328 cp = last;
329 if (cp < ep && *cp == '#') {
330 while (cp < ep && *cp != sep)
331 cp++;
332 last = cp + 1;
333 continue;
334 }
Martin Waitzc2f493a2006-05-07 20:19:21 +0200335 while (cp < ep && *cp != sep)
336 cp++;
Junio C Hamanod5a63b92005-08-14 17:25:57 -0700337 if (last != cp) {
Johannes Sixt85dadc32007-11-13 21:05:00 +0100338 if (!is_absolute_path(last) && depth) {
Martin Waitzc2f493a2006-05-07 20:19:21 +0200339 error("%s: ignoring relative alternate object store %s",
340 relative_base, last);
341 } else {
342 link_alt_odb_entry(last, cp - last,
343 relative_base, depth);
Junio C Hamano1494e032005-12-04 22:48:43 -0800344 }
Junio C Hamanod5a63b92005-08-14 17:25:57 -0700345 }
Junio C Hamano9577e7e2005-08-16 18:22:05 -0700346 while (cp < ep && *cp == sep)
Junio C Hamanod5a63b92005-08-14 17:25:57 -0700347 cp++;
348 last = cp;
Junio C Hamano9577e7e2005-08-16 18:22:05 -0700349 }
Junio C Hamanod5a63b92005-08-14 17:25:57 -0700350}
351
Martin Waitzc2f493a2006-05-07 20:19:21 +0200352static void read_info_alternates(const char * relative_base, int depth)
Junio C Hamanoace15342005-05-07 00:38:04 -0700353{
Junio C Hamano9577e7e2005-08-16 18:22:05 -0700354 char *map;
Shawn O. Pearcedc49cd72007-03-06 20:44:37 -0500355 size_t mapsz;
Junio C Hamanod5a63b92005-08-14 17:25:57 -0700356 struct stat st;
Jim Meyering9cb18f52007-07-03 12:40:20 +0200357 const char alt_file_name[] = "info/alternates";
358 /* Given that relative_base is no longer than PATH_MAX,
359 ensure that "path" has enough space to append "/", the
360 file name, "info/alternates", and a trailing NUL. */
361 char path[PATH_MAX + 1 + sizeof alt_file_name];
Martin Waitzc2f493a2006-05-07 20:19:21 +0200362 int fd;
Jason Riedyc7c81b32005-08-23 13:34:07 -0700363
Jim Meyering9cb18f52007-07-03 12:40:20 +0200364 sprintf(path, "%s/%s", relative_base, alt_file_name);
Junio C Hamanod5a63b92005-08-14 17:25:57 -0700365 fd = open(path, O_RDONLY);
366 if (fd < 0)
367 return;
368 if (fstat(fd, &st) || (st.st_size == 0)) {
369 close(fd);
370 return;
Junio C Hamanoace15342005-05-07 00:38:04 -0700371 }
Shawn O. Pearcedc49cd72007-03-06 20:44:37 -0500372 mapsz = xsize_t(st.st_size);
373 map = xmmap(NULL, mapsz, PROT_READ, MAP_PRIVATE, fd, 0);
Junio C Hamanod5a63b92005-08-14 17:25:57 -0700374 close(fd);
Junio C Hamanod5a63b92005-08-14 17:25:57 -0700375
Shawn O. Pearcedc49cd72007-03-06 20:44:37 -0500376 link_alt_odb_entries(map, map + mapsz, '\n', relative_base, depth);
Martin Waitzc2f493a2006-05-07 20:19:21 +0200377
Shawn O. Pearcedc49cd72007-03-06 20:44:37 -0500378 munmap(map, mapsz);
Junio C Hamanoace15342005-05-07 00:38:04 -0700379}
380
Martin Waitzc2f493a2006-05-07 20:19:21 +0200381void prepare_alt_odb(void)
382{
Timo Hirvonen554fe202006-06-28 12:04:39 +0300383 const char *alt;
Martin Waitzc2f493a2006-05-07 20:19:21 +0200384
Shawn O. Pearce7dc24aa2007-05-26 01:24:40 -0400385 if (alt_odb_tail)
386 return;
387
Martin Waitzc2f493a2006-05-07 20:19:21 +0200388 alt = getenv(ALTERNATE_DB_ENVIRONMENT);
389 if (!alt) alt = "";
390
Martin Waitzc2f493a2006-05-07 20:19:21 +0200391 alt_odb_tail = &alt_odb_list;
392 link_alt_odb_entries(alt, alt + strlen(alt), ':', NULL, 0);
393
394 read_info_alternates(get_object_directory(), 0);
395}
396
Junio C Hamanoace15342005-05-07 00:38:04 -0700397static char *find_sha1_file(const unsigned char *sha1, struct stat *st)
398{
Junio C Hamanoace15342005-05-07 00:38:04 -0700399 char *name = sha1_file_name(sha1);
Junio C Hamanod5a63b92005-08-14 17:25:57 -0700400 struct alternate_object_database *alt;
Junio C Hamanoace15342005-05-07 00:38:04 -0700401
402 if (!stat(name, st))
403 return name;
Junio C Hamano9a217f22005-06-28 14:56:57 -0700404 prepare_alt_odb();
Junio C Hamanod5a63b92005-08-14 17:25:57 -0700405 for (alt = alt_odb_list; alt; alt = alt->next) {
406 name = alt->name;
Junio C Hamanoace15342005-05-07 00:38:04 -0700407 fill_sha1_path(name, sha1);
Junio C Hamanod5a63b92005-08-14 17:25:57 -0700408 if (!stat(alt->base, st))
409 return alt->base;
Junio C Hamanoace15342005-05-07 00:38:04 -0700410 }
411 return NULL;
412}
413
Shawn O. Pearce60bb8b12006-12-23 02:34:28 -0500414static unsigned int pack_used_ctr;
Shawn O. Pearcea53128b2006-12-23 02:34:47 -0500415static unsigned int pack_mmap_calls;
416static unsigned int peak_pack_open_windows;
417static unsigned int pack_open_windows;
418static size_t peak_pack_mapped;
Shawn O. Pearce60bb8b12006-12-23 02:34:28 -0500419static size_t pack_mapped;
Junio C Hamano9a217f22005-06-28 14:56:57 -0700420struct packed_git *packed_git;
Junio C Hamano1f688552005-06-27 03:35:33 -0700421
Junio C Hamanob79d18c2007-06-13 01:22:51 -0700422void pack_report(void)
Shawn O. Pearcea53128b2006-12-23 02:34:47 -0500423{
424 fprintf(stderr,
Pavel Roskine05db0f2007-01-09 23:07:11 -0500425 "pack_report: getpagesize() = %10" SZ_FMT "\n"
426 "pack_report: core.packedGitWindowSize = %10" SZ_FMT "\n"
427 "pack_report: core.packedGitLimit = %10" SZ_FMT "\n",
Steffen Prohaska9e42d6a2007-11-21 21:27:19 +0100428 sz_fmt(getpagesize()),
429 sz_fmt(packed_git_window_size),
430 sz_fmt(packed_git_limit));
Shawn O. Pearcea53128b2006-12-23 02:34:47 -0500431 fprintf(stderr,
432 "pack_report: pack_used_ctr = %10u\n"
433 "pack_report: pack_mmap_calls = %10u\n"
434 "pack_report: pack_open_windows = %10u / %10u\n"
Pavel Roskine05db0f2007-01-09 23:07:11 -0500435 "pack_report: pack_mapped = "
436 "%10" SZ_FMT " / %10" SZ_FMT "\n",
Shawn O. Pearcea53128b2006-12-23 02:34:47 -0500437 pack_used_ctr,
438 pack_mmap_calls,
439 pack_open_windows, peak_pack_open_windows,
Steffen Prohaska9e42d6a2007-11-21 21:27:19 +0100440 sz_fmt(pack_mapped), sz_fmt(peak_pack_mapped));
Shawn O. Pearcea53128b2006-12-23 02:34:47 -0500441}
442
Nicolas Pitre42873072007-03-16 16:42:50 -0400443static int check_packed_git_idx(const char *path, struct packed_git *p)
Junio C Hamano1f688552005-06-27 03:35:33 -0700444{
445 void *idx_map;
Nicolas Pitre42873072007-03-16 16:42:50 -0400446 struct pack_idx_header *hdr;
Shawn O. Pearcedc49cd72007-03-06 20:44:37 -0500447 size_t idx_size;
Nicolas Pitre74e34e12007-04-09 01:06:35 -0400448 uint32_t version, nr, i, *index;
Junio C Hamanoe93ec6f2006-01-18 20:26:14 -0800449 int fd = open(path, O_RDONLY);
Junio C Hamano1f688552005-06-27 03:35:33 -0700450 struct stat st;
Nicolas Pitre42873072007-03-16 16:42:50 -0400451
Junio C Hamano1f688552005-06-27 03:35:33 -0700452 if (fd < 0)
453 return -1;
454 if (fstat(fd, &st)) {
455 close(fd);
456 return -1;
457 }
Shawn O. Pearcedc49cd72007-03-06 20:44:37 -0500458 idx_size = xsize_t(st.st_size);
Shawn O. Pearce2d884512007-03-06 20:44:11 -0500459 if (idx_size < 4 * 256 + 20 + 20) {
460 close(fd);
461 return error("index file %s is too small", path);
462 }
Shawn O. Pearcec4712e42006-12-24 00:47:23 -0500463 idx_map = xmmap(NULL, idx_size, PROT_READ, MAP_PRIVATE, fd, 0);
Junio C Hamano1f688552005-06-27 03:35:33 -0700464 close(fd);
Junio C Hamano1f688552005-06-27 03:35:33 -0700465
Nicolas Pitre42873072007-03-16 16:42:50 -0400466 hdr = idx_map;
467 if (hdr->idx_signature == htonl(PACK_IDX_SIGNATURE)) {
Nicolas Pitre74e34e12007-04-09 01:06:35 -0400468 version = ntohl(hdr->idx_version);
469 if (version < 2 || version > 2) {
470 munmap(idx_map, idx_size);
471 return error("index file %s is version %d"
472 " and is not supported by this binary"
473 " (try upgrading GIT to a newer version)",
474 path, version);
475 }
476 } else
477 version = 1;
Shawn O. Pearcedf1b0592007-01-17 20:43:57 -0500478
Junio C Hamano1f688552005-06-27 03:35:33 -0700479 nr = 0;
Nicolas Pitre42873072007-03-16 16:42:50 -0400480 index = idx_map;
Nicolas Pitre74e34e12007-04-09 01:06:35 -0400481 if (version > 1)
482 index += 2; /* skip index header */
Junio C Hamano1f688552005-06-27 03:35:33 -0700483 for (i = 0; i < 256; i++) {
Shawn O. Pearce326bf392007-03-06 20:44:19 -0500484 uint32_t n = ntohl(index[i]);
Shawn O. Pearce2d884512007-03-06 20:44:11 -0500485 if (n < nr) {
486 munmap(idx_map, idx_size);
Shawn O. Pearcedf1b0592007-01-17 20:43:57 -0500487 return error("non-monotonic index %s", path);
Shawn O. Pearce2d884512007-03-06 20:44:11 -0500488 }
Junio C Hamano1f688552005-06-27 03:35:33 -0700489 nr = n;
490 }
491
Nicolas Pitre74e34e12007-04-09 01:06:35 -0400492 if (version == 1) {
493 /*
494 * Total size:
495 * - 256 index entries 4 bytes each
496 * - 24-byte entries * nr (20-byte sha1 + 4-byte offset)
497 * - 20-byte SHA1 of the packfile
498 * - 20-byte SHA1 file checksum
499 */
500 if (idx_size != 4*256 + nr * 24 + 20 + 20) {
501 munmap(idx_map, idx_size);
Luiz Fernando N. Capitulinoeef427a2007-08-14 16:42:37 -0300502 return error("wrong index v1 file size in %s", path);
Nicolas Pitre74e34e12007-04-09 01:06:35 -0400503 }
504 } else if (version == 2) {
505 /*
506 * Minimum size:
507 * - 8 bytes of header
508 * - 256 index entries 4 bytes each
509 * - 20-byte sha1 entry * nr
510 * - 4-byte crc entry * nr
511 * - 4-byte offset entry * nr
512 * - 20-byte SHA1 of the packfile
513 * - 20-byte SHA1 file checksum
514 * And after the 4-byte offset table might be a
515 * variable sized table containing 8-byte entries
516 * for offsets larger than 2^31.
517 */
518 unsigned long min_size = 8 + 4*256 + nr*(20 + 4 + 4) + 20 + 20;
Linus Torvalds1164f1e2007-06-26 14:34:02 -0700519 unsigned long max_size = min_size;
520 if (nr)
521 max_size += (nr - 1)*8;
522 if (idx_size < min_size || idx_size > max_size) {
Nicolas Pitre74e34e12007-04-09 01:06:35 -0400523 munmap(idx_map, idx_size);
Luiz Fernando N. Capitulinoeef427a2007-08-14 16:42:37 -0300524 return error("wrong index v2 file size in %s", path);
Nicolas Pitre74e34e12007-04-09 01:06:35 -0400525 }
Junio C Hamano7109c882007-10-29 11:53:55 -0700526 if (idx_size != min_size &&
527 /*
528 * make sure we can deal with large pack offsets.
529 * 31-bit signed offset won't be enough, neither
530 * 32-bit unsigned one will be.
531 */
532 (sizeof(off_t) <= 4)) {
533 munmap(idx_map, idx_size);
534 return error("pack too large for current definition of off_t in %s", path);
Nicolas Pitre74e34e12007-04-09 01:06:35 -0400535 }
Shawn O. Pearce2d884512007-03-06 20:44:11 -0500536 }
Junio C Hamano1f688552005-06-27 03:35:33 -0700537
Nicolas Pitre74e34e12007-04-09 01:06:35 -0400538 p->index_version = version;
Nicolas Pitre42873072007-03-16 16:42:50 -0400539 p->index_data = idx_map;
540 p->index_size = idx_size;
Nicolas Pitre57059092007-04-09 01:06:28 -0400541 p->num_objects = nr;
Junio C Hamano1f688552005-06-27 03:35:33 -0700542 return 0;
543}
544
Shawn O. Pearcebc8e4782007-05-30 02:13:42 -0400545int open_pack_index(struct packed_git *p)
Shawn O. Pearced0798372007-05-26 01:24:19 -0400546{
547 char *idx_name;
548 int ret;
549
550 if (p->index_data)
551 return 0;
552
553 idx_name = xstrdup(p->pack_name);
554 strcpy(idx_name + strlen(idx_name) - strlen(".pack"), ".idx");
555 ret = check_packed_git_idx(idx_name, p);
556 free(idx_name);
557 return ret;
558}
559
Shawn O. Pearce11daf392006-12-23 02:34:44 -0500560static void scan_windows(struct packed_git *p,
561 struct packed_git **lru_p,
562 struct pack_window **lru_w,
563 struct pack_window **lru_l)
564{
565 struct pack_window *w, *w_l;
566
567 for (w_l = NULL, w = p->windows; w; w = w->next) {
568 if (!w->inuse_cnt) {
569 if (!*lru_w || w->last_used < (*lru_w)->last_used) {
570 *lru_p = p;
571 *lru_w = w;
572 *lru_l = w_l;
573 }
574 }
575 w_l = w;
576 }
577}
578
Shawn O. Pearced1efefa2007-04-25 04:02:27 -0400579static int unuse_one_window(struct packed_git *current, int keep_fd)
Junio C Hamano1f688552005-06-27 03:35:33 -0700580{
Shawn O. Pearce54044bf2006-12-23 02:34:23 -0500581 struct packed_git *p, *lru_p = NULL;
Shawn O. Pearce11daf392006-12-23 02:34:44 -0500582 struct pack_window *lru_w = NULL, *lru_l = NULL;
Junio C Hamanof9253392005-06-29 02:51:27 -0700583
Shawn O. Pearce11daf392006-12-23 02:34:44 -0500584 if (current)
585 scan_windows(current, &lru_p, &lru_w, &lru_l);
586 for (p = packed_git; p; p = p->next)
587 scan_windows(p, &lru_p, &lru_w, &lru_l);
Shawn O. Pearce54044bf2006-12-23 02:34:23 -0500588 if (lru_p) {
589 munmap(lru_w->base, lru_w->len);
590 pack_mapped -= lru_w->len;
591 if (lru_l)
592 lru_l->next = lru_w->next;
593 else {
594 lru_p->windows = lru_w->next;
Shawn O. Pearced1efefa2007-04-25 04:02:27 -0400595 if (!lru_p->windows && lru_p->pack_fd != keep_fd) {
Shawn O. Pearce54044bf2006-12-23 02:34:23 -0500596 close(lru_p->pack_fd);
597 lru_p->pack_fd = -1;
598 }
599 }
600 free(lru_w);
Shawn O. Pearcea53128b2006-12-23 02:34:47 -0500601 pack_open_windows--;
Shawn O. Pearce54044bf2006-12-23 02:34:23 -0500602 return 1;
603 }
604 return 0;
Junio C Hamano1f688552005-06-27 03:35:33 -0700605}
606
Shawn O. Pearced1efefa2007-04-25 04:02:27 -0400607void release_pack_memory(size_t need, int fd)
Shawn O. Pearce97bfeb32006-12-24 00:47:19 -0500608{
609 size_t cur = pack_mapped;
Shawn O. Pearced1efefa2007-04-25 04:02:27 -0400610 while (need >= (cur - pack_mapped) && unuse_one_window(NULL, fd))
Shawn O. Pearce97bfeb32006-12-24 00:47:19 -0500611 ; /* nothing */
612}
613
Shawn O. Pearce03e79c82006-12-23 02:34:08 -0500614void unuse_pack(struct pack_window **w_cursor)
Junio C Hamanof9253392005-06-29 02:51:27 -0700615{
Shawn O. Pearce03e79c82006-12-23 02:34:08 -0500616 struct pack_window *w = *w_cursor;
617 if (w) {
618 w->inuse_cnt--;
619 *w_cursor = NULL;
620 }
Junio C Hamanof9253392005-06-29 02:51:27 -0700621}
622
Shawn O. Pearce3cf8b462007-02-02 03:00:03 -0500623/*
624 * Do not call this directly as this leaks p->pack_fd on error return;
625 * call open_packed_git() instead.
626 */
627static int open_packed_git_1(struct packed_git *p)
Junio C Hamano1f688552005-06-27 03:35:33 -0700628{
Shawn O. Pearce9bc879c2006-12-23 02:34:01 -0500629 struct stat st;
630 struct pack_header hdr;
631 unsigned char sha1[20];
632 unsigned char *idx_sha1;
Junio C Hamano2c039da2006-12-29 00:30:01 -0800633 long fd_flag;
Shawn O. Pearce9bc879c2006-12-23 02:34:01 -0500634
Shawn O. Pearced0798372007-05-26 01:24:19 -0400635 if (!p->index_data && open_pack_index(p))
636 return error("packfile %s index unavailable", p->pack_name);
637
Shawn O. Pearce9bc879c2006-12-23 02:34:01 -0500638 p->pack_fd = open(p->pack_name, O_RDONLY);
639 if (p->pack_fd < 0 || fstat(p->pack_fd, &st))
Shawn O. Pearce072db272007-02-01 15:52:33 -0500640 return -1;
Shawn O. Pearce9bc879c2006-12-23 02:34:01 -0500641
642 /* If we created the struct before we had the pack we lack size. */
barkalow@iabervon.orgbf592c52005-07-31 20:53:44 -0400643 if (!p->pack_size) {
barkalow@iabervon.orgbf592c52005-07-31 20:53:44 -0400644 if (!S_ISREG(st.st_mode))
Shawn O. Pearce072db272007-02-01 15:52:33 -0500645 return error("packfile %s not a regular file", p->pack_name);
barkalow@iabervon.orgbf592c52005-07-31 20:53:44 -0400646 p->pack_size = st.st_size;
Shawn O. Pearce9bc879c2006-12-23 02:34:01 -0500647 } else if (p->pack_size != st.st_size)
Shawn O. Pearce072db272007-02-01 15:52:33 -0500648 return error("packfile %s size changed", p->pack_name);
Shawn O. Pearce9bc879c2006-12-23 02:34:01 -0500649
Junio C Hamano2c039da2006-12-29 00:30:01 -0800650 /* We leave these file descriptors open with sliding mmap;
651 * there is no point keeping them open across exec(), though.
652 */
653 fd_flag = fcntl(p->pack_fd, F_GETFD, 0);
654 if (fd_flag < 0)
Shawn O. Pearce072db272007-02-01 15:52:33 -0500655 return error("cannot determine file descriptor flags");
Junio C Hamano2c039da2006-12-29 00:30:01 -0800656 fd_flag |= FD_CLOEXEC;
657 if (fcntl(p->pack_fd, F_SETFD, fd_flag) == -1)
Shawn O. Pearce072db272007-02-01 15:52:33 -0500658 return error("cannot set FD_CLOEXEC");
Junio C Hamano2c039da2006-12-29 00:30:01 -0800659
Shawn O. Pearce9bc879c2006-12-23 02:34:01 -0500660 /* Verify we recognize this pack file format. */
Shawn O. Pearcee6e2bd62007-01-14 01:01:49 -0500661 if (read_in_full(p->pack_fd, &hdr, sizeof(hdr)) != sizeof(hdr))
Shawn O. Pearce072db272007-02-01 15:52:33 -0500662 return error("file %s is far too short to be a packfile", p->pack_name);
Shawn O. Pearce9bc879c2006-12-23 02:34:01 -0500663 if (hdr.hdr_signature != htonl(PACK_SIGNATURE))
Shawn O. Pearce072db272007-02-01 15:52:33 -0500664 return error("file %s is not a GIT packfile", p->pack_name);
Shawn O. Pearce9bc879c2006-12-23 02:34:01 -0500665 if (!pack_version_ok(hdr.hdr_version))
Shawn O. Pearce072db272007-02-01 15:52:33 -0500666 return error("packfile %s is version %u and not supported"
Shawn O. Pearce9bc879c2006-12-23 02:34:01 -0500667 " (try upgrading GIT to a newer version)",
668 p->pack_name, ntohl(hdr.hdr_version));
669
670 /* Verify the pack matches its index. */
Nicolas Pitre57059092007-04-09 01:06:28 -0400671 if (p->num_objects != ntohl(hdr.hdr_entries))
Shawn O. Pearce072db272007-02-01 15:52:33 -0500672 return error("packfile %s claims to have %u objects"
Nicolas Pitre57059092007-04-09 01:06:28 -0400673 " while index indicates %u objects",
674 p->pack_name, ntohl(hdr.hdr_entries),
675 p->num_objects);
Shawn O. Pearce9bc879c2006-12-23 02:34:01 -0500676 if (lseek(p->pack_fd, p->pack_size - sizeof(sha1), SEEK_SET) == -1)
Shawn O. Pearce072db272007-02-01 15:52:33 -0500677 return error("end of packfile %s is unavailable", p->pack_name);
Shawn O. Pearcee6e2bd62007-01-14 01:01:49 -0500678 if (read_in_full(p->pack_fd, sha1, sizeof(sha1)) != sizeof(sha1))
Shawn O. Pearce072db272007-02-01 15:52:33 -0500679 return error("packfile %s signature is unavailable", p->pack_name);
Nicolas Pitre42873072007-03-16 16:42:50 -0400680 idx_sha1 = ((unsigned char *)p->index_data) + p->index_size - 40;
Shawn O. Pearce9bc879c2006-12-23 02:34:01 -0500681 if (hashcmp(sha1, idx_sha1))
Shawn O. Pearce072db272007-02-01 15:52:33 -0500682 return error("packfile %s does not match index", p->pack_name);
683 return 0;
Shawn O. Pearce9bc879c2006-12-23 02:34:01 -0500684}
685
Shawn O. Pearce3cf8b462007-02-02 03:00:03 -0500686static int open_packed_git(struct packed_git *p)
687{
688 if (!open_packed_git_1(p))
689 return 0;
690 if (p->pack_fd != -1) {
691 close(p->pack_fd);
692 p->pack_fd = -1;
693 }
694 return -1;
695}
696
Shawn O. Pearcec4001d92007-03-06 20:44:30 -0500697static int in_window(struct pack_window *win, off_t offset)
Shawn O. Pearce60bb8b12006-12-23 02:34:28 -0500698{
699 /* We must promise at least 20 bytes (one hash) after the
700 * offset is available from this window, otherwise the offset
701 * is not actually in this window and a different window (which
702 * has that one hash excess) must be used. This is to support
703 * the object header and delta base parsing routines below.
704 */
705 off_t win_off = win->offset;
706 return win_off <= offset
707 && (offset + 20) <= (win_off + win->len);
708}
709
Shawn O. Pearce03e79c82006-12-23 02:34:08 -0500710unsigned char* use_pack(struct packed_git *p,
711 struct pack_window **w_cursor,
Shawn O. Pearcec4001d92007-03-06 20:44:30 -0500712 off_t offset,
Shawn O. Pearce03e79c82006-12-23 02:34:08 -0500713 unsigned int *left)
Shawn O. Pearce9bc879c2006-12-23 02:34:01 -0500714{
Shawn O. Pearce60bb8b12006-12-23 02:34:28 -0500715 struct pack_window *win = *w_cursor;
Shawn O. Pearce03e79c82006-12-23 02:34:08 -0500716
Shawn O. Pearce072db272007-02-01 15:52:33 -0500717 if (p->pack_fd == -1 && open_packed_git(p))
718 die("packfile %s cannot be accessed", p->pack_name);
Shawn O. Pearce60bb8b12006-12-23 02:34:28 -0500719
720 /* Since packfiles end in a hash of their content and its
721 * pointless to ask for an offset into the middle of that
722 * hash, and the in_window function above wouldn't match
723 * don't allow an offset too close to the end of the file.
724 */
725 if (offset > (p->pack_size - 20))
726 die("offset beyond end of packfile (truncated pack?)");
727
728 if (!win || !in_window(win, offset)) {
729 if (win)
730 win->inuse_cnt--;
731 for (win = p->windows; win; win = win->next) {
732 if (in_window(win, offset))
733 break;
734 }
735 if (!win) {
Alexandre Julliard78a28df2007-02-14 18:11:40 +0100736 size_t window_align = packed_git_window_size / 2;
Shawn O. Pearcedc49cd72007-03-06 20:44:37 -0500737 off_t len;
Shawn O. Pearce60bb8b12006-12-23 02:34:28 -0500738 win = xcalloc(1, sizeof(*win));
Alexandre Julliard78a28df2007-02-14 18:11:40 +0100739 win->offset = (offset / window_align) * window_align;
Shawn O. Pearcedc49cd72007-03-06 20:44:37 -0500740 len = p->pack_size - win->offset;
741 if (len > packed_git_window_size)
742 len = packed_git_window_size;
743 win->len = (size_t)len;
Shawn O. Pearce60bb8b12006-12-23 02:34:28 -0500744 pack_mapped += win->len;
Shawn O. Pearce11daf392006-12-23 02:34:44 -0500745 while (packed_git_limit < pack_mapped
Shawn O. Pearced1efefa2007-04-25 04:02:27 -0400746 && unuse_one_window(p, p->pack_fd))
Shawn O. Pearce60bb8b12006-12-23 02:34:28 -0500747 ; /* nothing */
Shawn O. Pearcec4712e42006-12-24 00:47:23 -0500748 win->base = xmmap(NULL, win->len,
Shawn O. Pearce60bb8b12006-12-23 02:34:28 -0500749 PROT_READ, MAP_PRIVATE,
750 p->pack_fd, win->offset);
751 if (win->base == MAP_FAILED)
Shawn O. Pearce73b4e4b2006-12-23 02:34:41 -0500752 die("packfile %s cannot be mapped: %s",
753 p->pack_name,
754 strerror(errno));
Shawn O. Pearcea53128b2006-12-23 02:34:47 -0500755 pack_mmap_calls++;
756 pack_open_windows++;
757 if (pack_mapped > peak_pack_mapped)
758 peak_pack_mapped = pack_mapped;
759 if (pack_open_windows > peak_pack_open_windows)
760 peak_pack_open_windows = pack_open_windows;
Shawn O. Pearce60bb8b12006-12-23 02:34:28 -0500761 win->next = p->windows;
762 p->windows = win;
763 }
Junio C Hamano1f688552005-06-27 03:35:33 -0700764 }
Shawn O. Pearce03e79c82006-12-23 02:34:08 -0500765 if (win != *w_cursor) {
766 win->last_used = pack_used_ctr++;
767 win->inuse_cnt++;
768 *w_cursor = win;
769 }
Shawn O. Pearce60bb8b12006-12-23 02:34:28 -0500770 offset -= win->offset;
Shawn O. Pearce03e79c82006-12-23 02:34:08 -0500771 if (left)
Shawn O. Pearcedc49cd72007-03-06 20:44:37 -0500772 *left = win->len - xsize_t(offset);
Shawn O. Pearce03e79c82006-12-23 02:34:08 -0500773 return win->base + offset;
Junio C Hamano1f688552005-06-27 03:35:33 -0700774}
775
Nicolas Pitre42873072007-03-16 16:42:50 -0400776struct packed_git *add_packed_git(const char *path, int path_len, int local)
Junio C Hamano1f688552005-06-27 03:35:33 -0700777{
778 struct stat st;
Nicolas Pitre42873072007-03-16 16:42:50 -0400779 struct packed_git *p = xmalloc(sizeof(*p) + path_len + 2);
Junio C Hamano1f688552005-06-27 03:35:33 -0700780
Nicolas Pitre42873072007-03-16 16:42:50 -0400781 /*
782 * Make sure a corresponding .pack file exists and that
783 * the index looks sane.
784 */
785 path_len -= strlen(".idx");
786 if (path_len < 1)
Junio C Hamano1f688552005-06-27 03:35:33 -0700787 return NULL;
Nicolas Pitre42873072007-03-16 16:42:50 -0400788 memcpy(p->pack_name, path, path_len);
789 strcpy(p->pack_name + path_len, ".pack");
Shawn O. Pearced0798372007-05-26 01:24:19 -0400790 if (stat(p->pack_name, &st) || !S_ISREG(st.st_mode)) {
Nicolas Pitre42873072007-03-16 16:42:50 -0400791 free(p);
Junio C Hamano1f688552005-06-27 03:35:33 -0700792 return NULL;
793 }
Nicolas Pitre42873072007-03-16 16:42:50 -0400794
Junio C Hamano1f688552005-06-27 03:35:33 -0700795 /* ok, it looks sane as far as we can check without
796 * actually mapping the pack file.
797 */
Shawn O. Pearced0798372007-05-26 01:24:19 -0400798 p->index_version = 0;
799 p->index_data = NULL;
800 p->index_size = 0;
801 p->num_objects = 0;
Junio C Hamano1f688552005-06-27 03:35:33 -0700802 p->pack_size = st.st_size;
Junio C Hamano1f688552005-06-27 03:35:33 -0700803 p->next = NULL;
Shawn O. Pearcec41ee582006-12-23 02:33:44 -0500804 p->windows = NULL;
Shawn O. Pearce9bc879c2006-12-23 02:34:01 -0500805 p->pack_fd = -1;
Linus Torvalds9d835df2005-10-13 15:38:28 -0700806 p->pack_local = local;
Junio C Hamanob8670922007-03-09 03:52:12 -0800807 p->mtime = st.st_mtime;
Nicolas Pitre42873072007-03-16 16:42:50 -0400808 if (path_len < 40 || get_sha1_hex(path + path_len - 40, p->sha1))
809 hashclr(p->sha1);
Junio C Hamano1f688552005-06-27 03:35:33 -0700810 return p;
811}
812
barkalow@iabervon.orgbf592c52005-07-31 20:53:44 -0400813struct packed_git *parse_pack_index(unsigned char *sha1)
814{
Daniel Barkalowc508df52005-08-16 00:10:03 -0400815 char *path = sha1_pack_index_name(sha1);
816 return parse_pack_index_file(sha1, path);
817}
818
Nicolas Pitre42873072007-03-16 16:42:50 -0400819struct packed_git *parse_pack_index_file(const unsigned char *sha1,
820 const char *idx_path)
Daniel Barkalowc508df52005-08-16 00:10:03 -0400821{
Nicolas Pitre42873072007-03-16 16:42:50 -0400822 const char *path = sha1_pack_name(sha1);
823 struct packed_git *p = xmalloc(sizeof(*p) + strlen(path) + 2);
barkalow@iabervon.orgbf592c52005-07-31 20:53:44 -0400824
Nicolas Pitre42873072007-03-16 16:42:50 -0400825 if (check_packed_git_idx(idx_path, p)) {
826 free(p);
barkalow@iabervon.orgbf592c52005-07-31 20:53:44 -0400827 return NULL;
Nicolas Pitre42873072007-03-16 16:42:50 -0400828 }
barkalow@iabervon.orgbf592c52005-07-31 20:53:44 -0400829
barkalow@iabervon.orgbf592c52005-07-31 20:53:44 -0400830 strcpy(p->pack_name, path);
barkalow@iabervon.orgbf592c52005-07-31 20:53:44 -0400831 p->pack_size = 0;
barkalow@iabervon.orgbf592c52005-07-31 20:53:44 -0400832 p->next = NULL;
Shawn O. Pearcec41ee582006-12-23 02:33:44 -0500833 p->windows = NULL;
Shawn O. Pearce9bc879c2006-12-23 02:34:01 -0500834 p->pack_fd = -1;
Shawn Pearcee7024962006-08-23 02:49:00 -0400835 hashcpy(p->sha1, sha1);
barkalow@iabervon.orgbf592c52005-07-31 20:53:44 -0400836 return p;
837}
838
839void install_packed_git(struct packed_git *pack)
840{
841 pack->next = packed_git;
842 packed_git = pack;
843}
844
Linus Torvalds9d835df2005-10-13 15:38:28 -0700845static void prepare_packed_git_one(char *objdir, int local)
Junio C Hamano1f688552005-06-27 03:35:33 -0700846{
Jim Meyering9cb18f52007-07-03 12:40:20 +0200847 /* Ensure that this buffer is large enough so that we can
848 append "/pack/" without clobbering the stack even if
849 strlen(objdir) were PATH_MAX. */
850 char path[PATH_MAX + 1 + 4 + 1 + 1];
Junio C Hamano1f688552005-06-27 03:35:33 -0700851 int len;
852 DIR *dir;
853 struct dirent *de;
854
855 sprintf(path, "%s/pack", objdir);
856 len = strlen(path);
857 dir = opendir(path);
Carl Worthb5b16992006-02-17 16:14:52 -0800858 if (!dir) {
Junio C Hamano26125f62006-02-22 11:16:38 -0800859 if (errno != ENOENT)
Junio C Hamanobd2afde2006-02-22 17:47:10 -0800860 error("unable to open object pack directory: %s: %s",
Junio C Hamano26125f62006-02-22 11:16:38 -0800861 path, strerror(errno));
Junio C Hamano1f688552005-06-27 03:35:33 -0700862 return;
Carl Worthb5b16992006-02-17 16:14:52 -0800863 }
Junio C Hamano1f688552005-06-27 03:35:33 -0700864 path[len++] = '/';
865 while ((de = readdir(dir)) != NULL) {
866 int namelen = strlen(de->d_name);
867 struct packed_git *p;
868
Rene Scharfe5bb1cda2006-08-11 14:01:45 +0200869 if (!has_extension(de->d_name, ".idx"))
Junio C Hamano1f688552005-06-27 03:35:33 -0700870 continue;
871
Jim Meyering9cb18f52007-07-03 12:40:20 +0200872 if (len + namelen + 1 > sizeof(path))
873 continue;
874
Shawn O. Pearce54a15a82007-02-01 15:52:27 -0500875 /* Don't reopen a pack we already have. */
Junio C Hamano1f688552005-06-27 03:35:33 -0700876 strcpy(path + len, de->d_name);
Jeff King86f77802006-06-02 12:49:32 -0400877 for (p = packed_git; p; p = p->next) {
878 if (!memcmp(path, p->pack_name, len + namelen - 4))
879 break;
880 }
881 if (p)
882 continue;
Shawn O. Pearce54a15a82007-02-01 15:52:27 -0500883 /* See if it really is a valid .idx file with corresponding
884 * .pack file that we can map.
885 */
Linus Torvalds9d835df2005-10-13 15:38:28 -0700886 p = add_packed_git(path, len + namelen, local);
Junio C Hamano1f688552005-06-27 03:35:33 -0700887 if (!p)
888 continue;
Shawn O. Pearce625e9422007-02-01 15:52:22 -0500889 install_packed_git(p);
Junio C Hamano1f688552005-06-27 03:35:33 -0700890 }
Junio C Hamano5b35bcd2005-07-05 23:52:17 -0700891 closedir(dir);
Junio C Hamano1f688552005-06-27 03:35:33 -0700892}
893
Junio C Hamanob8670922007-03-09 03:52:12 -0800894static int sort_pack(const void *a_, const void *b_)
895{
896 struct packed_git *a = *((struct packed_git **)a_);
897 struct packed_git *b = *((struct packed_git **)b_);
898 int st;
899
900 /*
901 * Local packs tend to contain objects specific to our
902 * variant of the project than remote ones. In addition,
903 * remote ones could be on a network mounted filesystem.
904 * Favor local ones for these reasons.
905 */
906 st = a->pack_local - b->pack_local;
907 if (st)
908 return -st;
909
910 /*
911 * Younger packs tend to contain more recent objects,
912 * and more recent objects tend to get accessed more
913 * often.
914 */
915 if (a->mtime < b->mtime)
916 return 1;
917 else if (a->mtime == b->mtime)
918 return 0;
919 return -1;
920}
921
922static void rearrange_packed_git(void)
923{
924 struct packed_git **ary, *p;
925 int i, n;
926
927 for (n = 0, p = packed_git; p; p = p->next)
928 n++;
929 if (n < 2)
930 return;
931
932 /* prepare an array of packed_git for easier sorting */
933 ary = xcalloc(n, sizeof(struct packed_git *));
934 for (n = 0, p = packed_git; p; p = p->next)
935 ary[n++] = p;
936
937 qsort(ary, n, sizeof(struct packed_git *), sort_pack);
938
939 /* link them back again */
940 for (i = 0; i < n - 1; i++)
941 ary[i]->next = ary[i + 1];
942 ary[n - 1]->next = NULL;
943 packed_git = ary[0];
944
945 free(ary);
946}
947
Jeff King637cdd92006-06-02 11:32:23 -0400948static int prepare_packed_git_run_once = 0;
Junio C Hamano9a217f22005-06-28 14:56:57 -0700949void prepare_packed_git(void)
Junio C Hamano1f688552005-06-27 03:35:33 -0700950{
Junio C Hamanod5a63b92005-08-14 17:25:57 -0700951 struct alternate_object_database *alt;
Junio C Hamano1f688552005-06-27 03:35:33 -0700952
Jeff King637cdd92006-06-02 11:32:23 -0400953 if (prepare_packed_git_run_once)
Junio C Hamano1f688552005-06-27 03:35:33 -0700954 return;
Linus Torvalds9d835df2005-10-13 15:38:28 -0700955 prepare_packed_git_one(get_object_directory(), 1);
Junio C Hamano9a217f22005-06-28 14:56:57 -0700956 prepare_alt_odb();
Junio C Hamanod5a63b92005-08-14 17:25:57 -0700957 for (alt = alt_odb_list; alt; alt = alt->next) {
Junio C Hamano1494e032005-12-04 22:48:43 -0800958 alt->name[-1] = 0;
Linus Torvalds9d835df2005-10-13 15:38:28 -0700959 prepare_packed_git_one(alt->base, 0);
Junio C Hamano1494e032005-12-04 22:48:43 -0800960 alt->name[-1] = '/';
Junio C Hamano1f688552005-06-27 03:35:33 -0700961 }
Junio C Hamanob8670922007-03-09 03:52:12 -0800962 rearrange_packed_git();
Jeff King637cdd92006-06-02 11:32:23 -0400963 prepare_packed_git_run_once = 1;
964}
965
Shawn Pearcefc04c412006-11-01 17:06:21 -0500966void reprepare_packed_git(void)
Jeff King637cdd92006-06-02 11:32:23 -0400967{
968 prepare_packed_git_run_once = 0;
969 prepare_packed_git();
Junio C Hamano1f688552005-06-27 03:35:33 -0700970}
971
Jason McMullan5d6ccf52005-06-03 11:05:39 -0400972int check_sha1_signature(const unsigned char *sha1, void *map, unsigned long size, const char *type)
Linus Torvalds0fcfd162005-04-18 13:04:43 -0700973{
974 unsigned char real_sha1[20];
Rene Scharfe7cfb5f32006-10-15 14:02:18 +0200975 hash_sha1_file(map, size, type, real_sha1);
David Rientjesa89fccd2006-08-17 11:54:57 -0700976 return hashcmp(sha1, real_sha1) ? -1 : 0;
Linus Torvalds0fcfd162005-04-18 13:04:43 -0700977}
978
Junio C Hamano4175e9e2007-06-13 01:42:05 -0700979static void *map_sha1_file(const unsigned char *sha1, unsigned long *size)
Linus Torvalds0fcfd162005-04-18 13:04:43 -0700980{
Linus Torvalds0fcfd162005-04-18 13:04:43 -0700981 struct stat st;
982 void *map;
Linus Torvalds144bde72005-04-23 11:09:32 -0700983 int fd;
Junio C Hamanoace15342005-05-07 00:38:04 -0700984 char *filename = find_sha1_file(sha1, &st);
985
986 if (!filename) {
Junio C Hamanoace15342005-05-07 00:38:04 -0700987 return NULL;
988 }
Linus Torvalds0fcfd162005-04-18 13:04:43 -0700989
Linus Torvalds144bde72005-04-23 11:09:32 -0700990 fd = open(filename, O_RDONLY | sha1_file_open_flag);
Linus Torvalds0fcfd162005-04-18 13:04:43 -0700991 if (fd < 0) {
Linus Torvalds144bde72005-04-23 11:09:32 -0700992 /* See if it works without O_NOATIME */
993 switch (sha1_file_open_flag) {
994 default:
995 fd = open(filename, O_RDONLY);
996 if (fd >= 0)
997 break;
998 /* Fallthrough */
999 case 0:
Linus Torvalds144bde72005-04-23 11:09:32 -07001000 return NULL;
1001 }
1002
Junio C Hamano1f688552005-06-27 03:35:33 -07001003 /* If it failed once, it will probably fail again.
1004 * Stop using O_NOATIME
1005 */
Linus Torvalds144bde72005-04-23 11:09:32 -07001006 sha1_file_open_flag = 0;
Linus Torvalds0fcfd162005-04-18 13:04:43 -07001007 }
Shawn O. Pearcedc49cd72007-03-06 20:44:37 -05001008 *size = xsize_t(st.st_size);
1009 map = xmmap(NULL, *size, PROT_READ, MAP_PRIVATE, fd, 0);
Linus Torvalds0fcfd162005-04-18 13:04:43 -07001010 close(fd);
Linus Torvalds0fcfd162005-04-18 13:04:43 -07001011 return map;
1012}
1013
Nicolas Pitre726f8522007-05-09 14:42:42 -04001014static int legacy_loose_object(unsigned char *map)
Junio C Hamanobb6b8e42006-07-17 15:04:47 -07001015{
1016 unsigned int word;
1017
1018 /*
1019 * Is it a zlib-compressed buffer? If so, the first byte
1020 * must be 0x78 (15-bit window size, deflated), and the
1021 * first 16-bit word is evenly divisible by 31
1022 */
1023 word = (map[0] << 8) + map[1];
1024 if (map[0] == 0x78 && !(word % 31))
1025 return 1;
1026 else
1027 return 0;
1028}
1029
Junio C Hamano72518e92006-09-03 21:09:18 -07001030unsigned long unpack_object_header_gently(const unsigned char *buf, unsigned long len, enum object_type *type, unsigned long *sizep)
Junio C Hamanoad1ed5e2006-09-01 15:17:01 -07001031{
1032 unsigned shift;
1033 unsigned char c;
1034 unsigned long size;
1035 unsigned long used = 0;
1036
1037 c = buf[used++];
1038 *type = (c >> 4) & 7;
1039 size = c & 15;
1040 shift = 4;
1041 while (c & 0x80) {
1042 if (len <= used)
1043 return 0;
1044 if (sizeof(long) * 8 <= shift)
1045 return 0;
1046 c = buf[used++];
1047 size += (c & 0x7f) << shift;
1048 shift += 7;
1049 }
1050 *sizep = size;
1051 return used;
1052}
1053
Linus Torvalds93821bd2006-07-11 12:48:08 -07001054static int unpack_sha1_header(z_stream *stream, unsigned char *map, unsigned long mapsize, void *buffer, unsigned long bufsiz)
Linus Torvaldsc4483572005-06-01 17:54:59 -07001055{
Junio C Hamanoad1ed5e2006-09-01 15:17:01 -07001056 unsigned long size, used;
1057 static const char valid_loose_object_type[8] = {
1058 0, /* OBJ_EXT */
1059 1, 1, 1, 1, /* "commit", "tree", "blob", "tag" */
1060 0, /* "delta" and others are invalid in a loose object */
Linus Torvalds93821bd2006-07-11 12:48:08 -07001061 };
Junio C Hamanoad1ed5e2006-09-01 15:17:01 -07001062 enum object_type type;
Linus Torvalds93821bd2006-07-11 12:48:08 -07001063
Linus Torvaldsc4483572005-06-01 17:54:59 -07001064 /* Get the data stream */
1065 memset(stream, 0, sizeof(*stream));
1066 stream->next_in = map;
1067 stream->avail_in = mapsize;
1068 stream->next_out = buffer;
Linus Torvalds93821bd2006-07-11 12:48:08 -07001069 stream->avail_out = bufsiz;
Linus Torvaldsc4483572005-06-01 17:54:59 -07001070
Junio C Hamanobb6b8e42006-07-17 15:04:47 -07001071 if (legacy_loose_object(map)) {
Linus Torvalds93821bd2006-07-11 12:48:08 -07001072 inflateInit(stream);
1073 return inflate(stream, 0);
1074 }
1075
Nicolas Pitre726f8522007-05-09 14:42:42 -04001076
1077 /*
1078 * There used to be a second loose object header format which
1079 * was meant to mimic the in-pack format, allowing for direct
1080 * copy of the object data. This format turned up not to be
1081 * really worth it and we don't write it any longer. But we
1082 * can still read it.
1083 */
Junio C Hamanoad1ed5e2006-09-01 15:17:01 -07001084 used = unpack_object_header_gently(map, mapsize, &type, &size);
1085 if (!used || !valid_loose_object_type[type])
Linus Torvalds93821bd2006-07-11 12:48:08 -07001086 return -1;
Junio C Hamanoad1ed5e2006-09-01 15:17:01 -07001087 map += used;
1088 mapsize -= used;
Linus Torvalds93821bd2006-07-11 12:48:08 -07001089
1090 /* Set up the stream for the rest.. */
1091 stream->next_in = map;
1092 stream->avail_in = mapsize;
Linus Torvaldsc4483572005-06-01 17:54:59 -07001093 inflateInit(stream);
Linus Torvalds93821bd2006-07-11 12:48:08 -07001094
1095 /* And generate the fake traditional header */
Junio C Hamanoad1ed5e2006-09-01 15:17:01 -07001096 stream->total_out = 1 + snprintf(buffer, bufsiz, "%s %lu",
Nicolas Pitredf843662007-02-26 14:55:58 -05001097 typename(type), size);
Linus Torvalds93821bd2006-07-11 12:48:08 -07001098 return 0;
Linus Torvaldsc4483572005-06-01 17:54:59 -07001099}
1100
Junio C Hamano7efbff72007-03-05 00:21:37 -08001101static void *unpack_sha1_rest(z_stream *stream, void *buffer, unsigned long size, const unsigned char *sha1)
Linus Torvalds0fcfd162005-04-18 13:04:43 -07001102{
Linus Torvalds5180cac2005-06-02 07:57:25 -07001103 int bytes = strlen(buffer) + 1;
Mika Kukkonend565b342005-06-21 23:04:33 +03001104 unsigned char *buf = xmalloc(1+size);
Linus Torvalds93821bd2006-07-11 12:48:08 -07001105 unsigned long n;
Junio C Hamano7efbff72007-03-05 00:21:37 -08001106 int status = Z_OK;
Linus Torvalds0fcfd162005-04-18 13:04:43 -07001107
Linus Torvalds93821bd2006-07-11 12:48:08 -07001108 n = stream->total_out - bytes;
1109 if (n > size)
1110 n = size;
1111 memcpy(buf, (char *) buffer + bytes, n);
1112 bytes = n;
Linus Torvalds456cdf62007-03-19 22:49:53 -07001113 if (bytes <= size) {
1114 /*
1115 * The above condition must be (bytes <= size), not
1116 * (bytes < size). In other words, even though we
1117 * expect no more output and set avail_out to zer0,
1118 * the input zlib stream may have bytes that express
1119 * "this concludes the stream", and we *do* want to
1120 * eat that input.
1121 *
1122 * Otherwise we would not be able to test that we
1123 * consumed all the input to reach the expected size;
1124 * we also want to check that zlib tells us that all
1125 * went well with status == Z_STREAM_END at the end.
1126 */
Linus Torvalds5180cac2005-06-02 07:57:25 -07001127 stream->next_out = buf + bytes;
1128 stream->avail_out = size - bytes;
Junio C Hamano7efbff72007-03-05 00:21:37 -08001129 while (status == Z_OK)
1130 status = inflate(stream, Z_FINISH);
Linus Torvalds0fcfd162005-04-18 13:04:43 -07001131 }
Linus Torvalds5180cac2005-06-02 07:57:25 -07001132 buf[size] = 0;
Linus Torvalds456cdf62007-03-19 22:49:53 -07001133 if (status == Z_STREAM_END && !stream->avail_in) {
Junio C Hamano7efbff72007-03-05 00:21:37 -08001134 inflateEnd(stream);
1135 return buf;
1136 }
1137
1138 if (status < 0)
1139 error("corrupt loose object '%s'", sha1_to_hex(sha1));
1140 else if (stream->avail_in)
1141 error("garbage at end of loose object '%s'",
1142 sha1_to_hex(sha1));
1143 free(buf);
1144 return NULL;
Linus Torvalds0fcfd162005-04-18 13:04:43 -07001145}
1146
Linus Torvalds5180cac2005-06-02 07:57:25 -07001147/*
1148 * We used to just use "sscanf()", but that's actually way
1149 * too permissive for what we want to check. So do an anal
1150 * object header parse by hand.
1151 */
Nicolas Pitre21666f12007-02-26 14:55:59 -05001152static int parse_sha1_header(const char *hdr, unsigned long *sizep)
Linus Torvalds5180cac2005-06-02 07:57:25 -07001153{
Nicolas Pitre21666f12007-02-26 14:55:59 -05001154 char type[10];
Linus Torvalds5180cac2005-06-02 07:57:25 -07001155 int i;
1156 unsigned long size;
1157
1158 /*
Junio C Hamanoa6080a02007-06-07 00:04:01 -07001159 * The type can be at most ten bytes (including the
Linus Torvalds5180cac2005-06-02 07:57:25 -07001160 * terminating '\0' that we add), and is followed by
Nicolas Pitre21666f12007-02-26 14:55:59 -05001161 * a space.
Linus Torvalds5180cac2005-06-02 07:57:25 -07001162 */
Nicolas Pitre21666f12007-02-26 14:55:59 -05001163 i = 0;
Linus Torvalds5180cac2005-06-02 07:57:25 -07001164 for (;;) {
1165 char c = *hdr++;
1166 if (c == ' ')
1167 break;
Nicolas Pitre21666f12007-02-26 14:55:59 -05001168 type[i++] = c;
1169 if (i >= sizeof(type))
Linus Torvalds5180cac2005-06-02 07:57:25 -07001170 return -1;
Linus Torvalds5180cac2005-06-02 07:57:25 -07001171 }
Nicolas Pitre21666f12007-02-26 14:55:59 -05001172 type[i] = 0;
Linus Torvalds5180cac2005-06-02 07:57:25 -07001173
1174 /*
1175 * The length must follow immediately, and be in canonical
1176 * decimal format (ie "010" is not valid).
1177 */
1178 size = *hdr++ - '0';
1179 if (size > 9)
1180 return -1;
1181 if (size) {
1182 for (;;) {
1183 unsigned long c = *hdr - '0';
1184 if (c > 9)
1185 break;
1186 hdr++;
1187 size = size * 10 + c;
1188 }
1189 }
1190 *sizep = size;
1191
1192 /*
1193 * The length must be followed by a zero byte
1194 */
Nicolas Pitre21666f12007-02-26 14:55:59 -05001195 return *hdr ? -1 : type_from_string(type);
Linus Torvalds5180cac2005-06-02 07:57:25 -07001196}
1197
Junio C Hamano7efbff72007-03-05 00:21:37 -08001198static void *unpack_sha1_file(void *map, unsigned long mapsize, enum object_type *type, unsigned long *size, const unsigned char *sha1)
Linus Torvalds5180cac2005-06-02 07:57:25 -07001199{
1200 int ret;
1201 z_stream stream;
1202 char hdr[8192];
1203
1204 ret = unpack_sha1_header(&stream, map, mapsize, hdr, sizeof(hdr));
Nicolas Pitre21666f12007-02-26 14:55:59 -05001205 if (ret < Z_OK || (*type = parse_sha1_header(hdr, size)) < 0)
Linus Torvalds5180cac2005-06-02 07:57:25 -07001206 return NULL;
1207
Junio C Hamano7efbff72007-03-05 00:21:37 -08001208 return unpack_sha1_rest(&stream, hdr, *size, sha1);
Linus Torvalds5180cac2005-06-02 07:57:25 -07001209}
1210
Nicolas Pitre54dab522007-04-16 12:31:56 -04001211unsigned long get_size_from_delta(struct packed_git *p,
1212 struct pack_window **w_curs,
1213 off_t curpos)
1214{
1215 const unsigned char *data;
1216 unsigned char delta_head[20], *in;
1217 z_stream stream;
1218 int st;
1219
1220 memset(&stream, 0, sizeof(stream));
1221 stream.next_out = delta_head;
1222 stream.avail_out = sizeof(delta_head);
1223
1224 inflateInit(&stream);
1225 do {
1226 in = use_pack(p, w_curs, curpos, &stream.avail_in);
1227 stream.next_in = in;
1228 st = inflate(&stream, Z_FINISH);
1229 curpos += stream.next_in - in;
1230 } while ((st == Z_OK || st == Z_BUF_ERROR) &&
1231 stream.total_out < sizeof(delta_head));
1232 inflateEnd(&stream);
1233 if ((st != Z_STREAM_END) && stream.total_out != sizeof(delta_head))
1234 die("delta data unpack-initial failed");
1235
1236 /* Examine the initial part of the delta to figure out
1237 * the result size.
1238 */
1239 data = delta_head;
1240
1241 /* ignore base size */
1242 get_delta_hdr_size(&data, delta_head+sizeof(delta_head));
1243
1244 /* Read the result size */
1245 return get_delta_hdr_size(&data, delta_head+sizeof(delta_head));
1246}
1247
Shawn O. Pearcec4001d92007-03-06 20:44:30 -05001248static off_t get_delta_base(struct packed_git *p,
Shawn O. Pearce03e79c82006-12-23 02:34:08 -05001249 struct pack_window **w_curs,
Shawn O. Pearcec4001d92007-03-06 20:44:30 -05001250 off_t *curpos,
Nicolas Pitre21666f12007-02-26 14:55:59 -05001251 enum object_type type,
Shawn O. Pearcec4001d92007-03-06 20:44:30 -05001252 off_t delta_obj_offset)
Nicolas Pitreeb32d232006-09-21 00:06:49 -04001253{
Nicolas Pitre2b87c452007-02-26 14:55:56 -05001254 unsigned char *base_info = use_pack(p, w_curs, *curpos, NULL);
Shawn O. Pearcec4001d92007-03-06 20:44:30 -05001255 off_t base_offset;
Nicolas Pitreeb32d232006-09-21 00:06:49 -04001256
Shawn O. Pearce8d8a4ea2006-12-23 02:34:18 -05001257 /* use_pack() assured us we have [base_info, base_info + 20)
1258 * as a range that we can look at without walking off the
1259 * end of the mapped window. Its actually the hash size
1260 * that is assured. An OFS_DELTA longer than the hash size
1261 * is stupid, as then a REF_DELTA would be smaller to store.
1262 */
Nicolas Pitre21666f12007-02-26 14:55:59 -05001263 if (type == OBJ_OFS_DELTA) {
Nicolas Pitreeb32d232006-09-21 00:06:49 -04001264 unsigned used = 0;
1265 unsigned char c = base_info[used++];
1266 base_offset = c & 127;
1267 while (c & 128) {
1268 base_offset += 1;
Nicolas Pitre8723f212007-04-09 01:06:29 -04001269 if (!base_offset || MSB(base_offset, 7))
Nicolas Pitreeb32d232006-09-21 00:06:49 -04001270 die("offset value overflow for delta base object");
1271 c = base_info[used++];
1272 base_offset = (base_offset << 7) + (c & 127);
1273 }
1274 base_offset = delta_obj_offset - base_offset;
1275 if (base_offset >= delta_obj_offset)
1276 die("delta base offset out of bound");
Nicolas Pitre2b87c452007-02-26 14:55:56 -05001277 *curpos += used;
Nicolas Pitre21666f12007-02-26 14:55:59 -05001278 } else if (type == OBJ_REF_DELTA) {
Nicolas Pitreeb32d232006-09-21 00:06:49 -04001279 /* The base entry _must_ be in the same pack */
1280 base_offset = find_pack_entry_one(base_info, p);
1281 if (!base_offset)
1282 die("failed to find delta-pack base object %s",
1283 sha1_to_hex(base_info));
Nicolas Pitre2b87c452007-02-26 14:55:56 -05001284 *curpos += 20;
Nicolas Pitreeb32d232006-09-21 00:06:49 -04001285 } else
1286 die("I am totally screwed");
Nicolas Pitre2b87c452007-02-26 14:55:56 -05001287 return base_offset;
Nicolas Pitreeb32d232006-09-21 00:06:49 -04001288}
1289
Junio C Hamanof3bf9222005-06-30 17:15:39 -07001290/* forward declaration for a mutually recursive function */
Shawn O. Pearcec4001d92007-03-06 20:44:30 -05001291static int packed_object_info(struct packed_git *p, off_t offset,
Nicolas Pitre21666f12007-02-26 14:55:59 -05001292 unsigned long *sizep);
Junio C Hamanof3bf9222005-06-30 17:15:39 -07001293
Nicolas Pitre43057302006-09-21 00:05:37 -04001294static int packed_delta_info(struct packed_git *p,
Shawn O. Pearce03e79c82006-12-23 02:34:08 -05001295 struct pack_window **w_curs,
Shawn O. Pearcec4001d92007-03-06 20:44:30 -05001296 off_t curpos,
Nicolas Pitre21666f12007-02-26 14:55:59 -05001297 enum object_type type,
Shawn O. Pearcec4001d92007-03-06 20:44:30 -05001298 off_t obj_offset,
Nicolas Pitre43057302006-09-21 00:05:37 -04001299 unsigned long *sizep)
Junio C Hamano5db47c22005-06-27 23:58:08 -07001300{
Shawn O. Pearcec4001d92007-03-06 20:44:30 -05001301 off_t base_offset;
Junio C Hamanof3bf9222005-06-30 17:15:39 -07001302
Nicolas Pitre21666f12007-02-26 14:55:59 -05001303 base_offset = get_delta_base(p, w_curs, &curpos, type, obj_offset);
1304 type = packed_object_info(p, base_offset, NULL);
Junio C Hamanof3bf9222005-06-30 17:15:39 -07001305
Junio C Hamanoc62266f2005-06-30 17:13:07 -07001306 /* We choose to only get the type of the base object and
1307 * ignore potentially corrupt pack file that expects the delta
1308 * based on a base with a wrong size. This saves tons of
1309 * inflate() calls.
1310 */
Nicolas Pitre54dab522007-04-16 12:31:56 -04001311 if (sizep)
1312 *sizep = get_size_from_delta(p, w_curs, curpos);
Nicolas Pitre21666f12007-02-26 14:55:59 -05001313
1314 return type;
Junio C Hamano5db47c22005-06-27 23:58:08 -07001315}
1316
Nicolas Pitre2b87c452007-02-26 14:55:56 -05001317static int unpack_object_header(struct packed_git *p,
1318 struct pack_window **w_curs,
Shawn O. Pearcec4001d92007-03-06 20:44:30 -05001319 off_t *curpos,
Nicolas Pitre2b87c452007-02-26 14:55:56 -05001320 unsigned long *sizep)
Linus Torvaldsa733cb62005-06-28 14:21:02 -07001321{
Shawn O. Pearce03e79c82006-12-23 02:34:08 -05001322 unsigned char *base;
1323 unsigned int left;
Junio C Hamanoad1ed5e2006-09-01 15:17:01 -07001324 unsigned long used;
Nicolas Pitre2b87c452007-02-26 14:55:56 -05001325 enum object_type type;
Linus Torvaldsa733cb62005-06-28 14:21:02 -07001326
Shawn O. Pearce8d8a4ea2006-12-23 02:34:18 -05001327 /* use_pack() assures us we have [base, base + 20) available
1328 * as a range that we can look at at. (Its actually the hash
Pavel Roskin3dff5372007-02-03 23:49:16 -05001329 * size that is assured.) With our object header encoding
Shawn O. Pearce8d8a4ea2006-12-23 02:34:18 -05001330 * the maximum deflated object size is 2^137, which is just
1331 * insane, so we know won't exceed what we have been given.
1332 */
Nicolas Pitre2b87c452007-02-26 14:55:56 -05001333 base = use_pack(p, w_curs, *curpos, &left);
1334 used = unpack_object_header_gently(base, left, &type, sizep);
Junio C Hamanoad1ed5e2006-09-01 15:17:01 -07001335 if (!used)
1336 die("object offset outside of pack file");
Nicolas Pitre2b87c452007-02-26 14:55:56 -05001337 *curpos += used;
Junio C Hamanoad1ed5e2006-09-01 15:17:01 -07001338
Nicolas Pitre2b87c452007-02-26 14:55:56 -05001339 return type;
Linus Torvaldsa733cb62005-06-28 14:21:02 -07001340}
1341
Nicolas Pitre21666f12007-02-26 14:55:59 -05001342const char *packed_object_info_detail(struct packed_git *p,
Shawn O. Pearcec4001d92007-03-06 20:44:30 -05001343 off_t obj_offset,
Nicolas Pitre21666f12007-02-26 14:55:59 -05001344 unsigned long *size,
1345 unsigned long *store_size,
1346 unsigned int *delta_chain_length,
1347 unsigned char *base_sha1)
Junio C Hamanoad8c80a2005-06-30 17:17:20 -07001348{
Shawn O. Pearce03e79c82006-12-23 02:34:08 -05001349 struct pack_window *w_curs = NULL;
Shawn O. Pearcec4001d92007-03-06 20:44:30 -05001350 off_t curpos;
1351 unsigned long dummy;
Nicolas Pitre43057302006-09-21 00:05:37 -04001352 unsigned char *next_sha1;
Nicolas Pitre21666f12007-02-26 14:55:59 -05001353 enum object_type type;
Junio C Hamanoad8c80a2005-06-30 17:17:20 -07001354
Nicolas Pitre43057302006-09-21 00:05:37 -04001355 *delta_chain_length = 0;
Nicolas Pitre2b87c452007-02-26 14:55:56 -05001356 curpos = obj_offset;
Nicolas Pitre21666f12007-02-26 14:55:59 -05001357 type = unpack_object_header(p, &w_curs, &curpos, size);
Junio C Hamanoad8c80a2005-06-30 17:17:20 -07001358
Nicolas Pitre43057302006-09-21 00:05:37 -04001359 for (;;) {
Nicolas Pitre21666f12007-02-26 14:55:59 -05001360 switch (type) {
Nicolas Pitre43057302006-09-21 00:05:37 -04001361 default:
Nicolas Pitre08a19d82006-12-20 13:34:05 -05001362 die("pack %s contains unknown object type %d",
Nicolas Pitre21666f12007-02-26 14:55:59 -05001363 p->pack_name, type);
Nicolas Pitre43057302006-09-21 00:05:37 -04001364 case OBJ_COMMIT:
1365 case OBJ_TREE:
1366 case OBJ_BLOB:
1367 case OBJ_TAG:
Nicolas Pitre43057302006-09-21 00:05:37 -04001368 *store_size = 0; /* notyet */
Shawn O. Pearce03e79c82006-12-23 02:34:08 -05001369 unuse_pack(&w_curs);
Nicolas Pitre21666f12007-02-26 14:55:59 -05001370 return typename(type);
Nicolas Pitreeb32d232006-09-21 00:06:49 -04001371 case OBJ_OFS_DELTA:
Nicolas Pitre21666f12007-02-26 14:55:59 -05001372 obj_offset = get_delta_base(p, &w_curs, &curpos, type, obj_offset);
Nicolas Pitreeb32d232006-09-21 00:06:49 -04001373 if (*delta_chain_length == 0) {
Nicolas Pitre2b87c452007-02-26 14:55:56 -05001374 /* TODO: find base_sha1 as pointed by curpos */
Shawn O. Pearce30fee062007-03-06 20:44:08 -05001375 hashclr(base_sha1);
Nicolas Pitreeb32d232006-09-21 00:06:49 -04001376 }
1377 break;
1378 case OBJ_REF_DELTA:
Nicolas Pitre2b87c452007-02-26 14:55:56 -05001379 next_sha1 = use_pack(p, &w_curs, curpos, NULL);
Nicolas Pitre43057302006-09-21 00:05:37 -04001380 if (*delta_chain_length == 0)
1381 hashcpy(base_sha1, next_sha1);
Nicolas Pitre2b87c452007-02-26 14:55:56 -05001382 obj_offset = find_pack_entry_one(next_sha1, p);
Nicolas Pitre43057302006-09-21 00:05:37 -04001383 break;
1384 }
Nicolas Pitre43057302006-09-21 00:05:37 -04001385 (*delta_chain_length)++;
Nicolas Pitre2b87c452007-02-26 14:55:56 -05001386 curpos = obj_offset;
Nicolas Pitre21666f12007-02-26 14:55:59 -05001387 type = unpack_object_header(p, &w_curs, &curpos, &dummy);
Junio C Hamanoad8c80a2005-06-30 17:17:20 -07001388 }
Junio C Hamanoad8c80a2005-06-30 17:17:20 -07001389}
1390
Shawn O. Pearcec4001d92007-03-06 20:44:30 -05001391static int packed_object_info(struct packed_git *p, off_t obj_offset,
Nicolas Pitre21666f12007-02-26 14:55:59 -05001392 unsigned long *sizep)
Junio C Hamano1f688552005-06-27 03:35:33 -07001393{
Shawn O. Pearce03e79c82006-12-23 02:34:08 -05001394 struct pack_window *w_curs = NULL;
Shawn O. Pearcec4001d92007-03-06 20:44:30 -05001395 unsigned long size;
1396 off_t curpos = obj_offset;
Nicolas Pitre21666f12007-02-26 14:55:59 -05001397 enum object_type type;
Junio C Hamano5db47c22005-06-27 23:58:08 -07001398
Nicolas Pitre21666f12007-02-26 14:55:59 -05001399 type = unpack_object_header(p, &w_curs, &curpos, &size);
Junio C Hamano5db47c22005-06-27 23:58:08 -07001400
Nicolas Pitre21666f12007-02-26 14:55:59 -05001401 switch (type) {
Nicolas Pitreeb32d232006-09-21 00:06:49 -04001402 case OBJ_OFS_DELTA:
1403 case OBJ_REF_DELTA:
Nicolas Pitre21666f12007-02-26 14:55:59 -05001404 type = packed_delta_info(p, &w_curs, curpos,
1405 type, obj_offset, sizep);
Nicolas Pitre2b87c452007-02-26 14:55:56 -05001406 break;
Linus Torvaldsa733cb62005-06-28 14:21:02 -07001407 case OBJ_COMMIT:
Linus Torvaldsa733cb62005-06-28 14:21:02 -07001408 case OBJ_TREE:
Linus Torvaldsa733cb62005-06-28 14:21:02 -07001409 case OBJ_BLOB:
Linus Torvaldsa733cb62005-06-28 14:21:02 -07001410 case OBJ_TAG:
Nicolas Pitre2b87c452007-02-26 14:55:56 -05001411 if (sizep)
1412 *sizep = size;
Linus Torvaldsa69d0942005-06-28 09:58:23 -07001413 break;
Junio C Hamano1f688552005-06-27 03:35:33 -07001414 default:
Nicolas Pitre08a19d82006-12-20 13:34:05 -05001415 die("pack %s contains unknown object type %d",
Nicolas Pitre21666f12007-02-26 14:55:59 -05001416 p->pack_name, type);
Junio C Hamano1f688552005-06-27 03:35:33 -07001417 }
Nicolas Pitre2b87c452007-02-26 14:55:56 -05001418 unuse_pack(&w_curs);
Nicolas Pitre21666f12007-02-26 14:55:59 -05001419 return type;
Junio C Hamano1f688552005-06-27 03:35:33 -07001420}
1421
Shawn Pearceeb950c12006-08-26 04:12:27 -04001422static void *unpack_compressed_entry(struct packed_git *p,
Shawn O. Pearce03e79c82006-12-23 02:34:08 -05001423 struct pack_window **w_curs,
Shawn O. Pearcec4001d92007-03-06 20:44:30 -05001424 off_t curpos,
Shawn Pearceeb950c12006-08-26 04:12:27 -04001425 unsigned long size)
Shawn Pearcede530aa2006-08-26 04:10:43 -04001426{
1427 int st;
1428 z_stream stream;
Shawn O. Pearce079afb12006-12-23 02:34:13 -05001429 unsigned char *buffer, *in;
Shawn Pearcede530aa2006-08-26 04:10:43 -04001430
1431 buffer = xmalloc(size + 1);
1432 buffer[size] = 0;
1433 memset(&stream, 0, sizeof(stream));
Shawn Pearcede530aa2006-08-26 04:10:43 -04001434 stream.next_out = buffer;
1435 stream.avail_out = size;
1436
1437 inflateInit(&stream);
Shawn O. Pearce079afb12006-12-23 02:34:13 -05001438 do {
Nicolas Pitre2b87c452007-02-26 14:55:56 -05001439 in = use_pack(p, w_curs, curpos, &stream.avail_in);
Shawn O. Pearce079afb12006-12-23 02:34:13 -05001440 stream.next_in = in;
1441 st = inflate(&stream, Z_FINISH);
Nicolas Pitre2b87c452007-02-26 14:55:56 -05001442 curpos += stream.next_in - in;
Shawn O. Pearce079afb12006-12-23 02:34:13 -05001443 } while (st == Z_OK || st == Z_BUF_ERROR);
Shawn Pearcede530aa2006-08-26 04:10:43 -04001444 inflateEnd(&stream);
1445 if ((st != Z_STREAM_END) || stream.total_out != size) {
1446 free(buffer);
1447 return NULL;
1448 }
1449
1450 return buffer;
1451}
1452
Linus Torvaldse5e01612007-03-17 12:44:06 -07001453#define MAX_DELTA_CACHE (256)
1454
Shawn O. Pearce18bdec12007-03-19 01:14:37 -04001455static size_t delta_base_cached;
Nicolas Pitre5e08ecb2007-03-19 16:31:04 -04001456
1457static struct delta_base_cache_lru_list {
1458 struct delta_base_cache_lru_list *prev;
1459 struct delta_base_cache_lru_list *next;
1460} delta_base_cache_lru = { &delta_base_cache_lru, &delta_base_cache_lru };
1461
Linus Torvaldse5e01612007-03-17 12:44:06 -07001462static struct delta_base_cache_entry {
Nicolas Pitre5e08ecb2007-03-19 16:31:04 -04001463 struct delta_base_cache_lru_list lru;
1464 void *data;
Linus Torvaldse5e01612007-03-17 12:44:06 -07001465 struct packed_git *p;
1466 off_t base_offset;
1467 unsigned long size;
Linus Torvaldse5e01612007-03-17 12:44:06 -07001468 enum object_type type;
1469} delta_base_cache[MAX_DELTA_CACHE];
1470
1471static unsigned long pack_entry_hash(struct packed_git *p, off_t base_offset)
1472{
1473 unsigned long hash;
1474
1475 hash = (unsigned long)p + (unsigned long)base_offset;
1476 hash += (hash >> 8) + (hash >> 16);
Nicolas Pitre33580042007-03-19 16:28:51 -04001477 return hash % MAX_DELTA_CACHE;
Linus Torvaldse5e01612007-03-17 12:44:06 -07001478}
1479
Linus Torvalds62f255a2007-03-17 12:42:15 -07001480static void *cache_or_unpack_entry(struct packed_git *p, off_t base_offset,
Nicolas Pitrea0cba102007-03-17 21:13:57 -04001481 unsigned long *base_size, enum object_type *type, int keep_cache)
Linus Torvalds62f255a2007-03-17 12:42:15 -07001482{
Linus Torvaldse5e01612007-03-17 12:44:06 -07001483 void *ret;
1484 unsigned long hash = pack_entry_hash(p, base_offset);
1485 struct delta_base_cache_entry *ent = delta_base_cache + hash;
1486
1487 ret = ent->data;
1488 if (ret && ent->p == p && ent->base_offset == base_offset)
1489 goto found_cache_entry;
Linus Torvalds62f255a2007-03-17 12:42:15 -07001490 return unpack_entry(p, base_offset, type, base_size);
Linus Torvaldse5e01612007-03-17 12:44:06 -07001491
1492found_cache_entry:
Shawn O. Pearce18bdec12007-03-19 01:14:37 -04001493 if (!keep_cache) {
Nicolas Pitrea0cba102007-03-17 21:13:57 -04001494 ent->data = NULL;
Nicolas Pitre5e08ecb2007-03-19 16:31:04 -04001495 ent->lru.next->prev = ent->lru.prev;
1496 ent->lru.prev->next = ent->lru.next;
Shawn O. Pearce18bdec12007-03-19 01:14:37 -04001497 delta_base_cached -= ent->size;
Pierre Habouzit182af832007-09-16 00:32:36 +02001498 } else {
1499 ret = xmemdupz(ent->data, ent->size);
Nicolas Pitrea0cba102007-03-17 21:13:57 -04001500 }
Linus Torvaldse5e01612007-03-17 12:44:06 -07001501 *type = ent->type;
1502 *base_size = ent->size;
1503 return ret;
Linus Torvalds62f255a2007-03-17 12:42:15 -07001504}
1505
Shawn O. Pearce18bdec12007-03-19 01:14:37 -04001506static inline void release_delta_base_cache(struct delta_base_cache_entry *ent)
1507{
1508 if (ent->data) {
1509 free(ent->data);
1510 ent->data = NULL;
Nicolas Pitre5e08ecb2007-03-19 16:31:04 -04001511 ent->lru.next->prev = ent->lru.prev;
1512 ent->lru.prev->next = ent->lru.next;
Shawn O. Pearce18bdec12007-03-19 01:14:37 -04001513 delta_base_cached -= ent->size;
1514 }
1515}
1516
Linus Torvalds62f255a2007-03-17 12:42:15 -07001517static void add_delta_base_cache(struct packed_git *p, off_t base_offset,
1518 void *base, unsigned long base_size, enum object_type type)
1519{
Nicolas Pitre5e08ecb2007-03-19 16:31:04 -04001520 unsigned long hash = pack_entry_hash(p, base_offset);
Linus Torvaldse5e01612007-03-17 12:44:06 -07001521 struct delta_base_cache_entry *ent = delta_base_cache + hash;
Nicolas Pitre5e08ecb2007-03-19 16:31:04 -04001522 struct delta_base_cache_lru_list *lru;
Linus Torvaldse5e01612007-03-17 12:44:06 -07001523
Shawn O. Pearce18bdec12007-03-19 01:14:37 -04001524 release_delta_base_cache(ent);
1525 delta_base_cached += base_size;
Nicolas Pitre5e08ecb2007-03-19 16:31:04 -04001526
1527 for (lru = delta_base_cache_lru.next;
1528 delta_base_cached > delta_base_cache_limit
1529 && lru != &delta_base_cache_lru;
1530 lru = lru->next) {
1531 struct delta_base_cache_entry *f = (void *)lru;
Shawn O. Pearce18bdec12007-03-19 01:14:37 -04001532 if (f->type == OBJ_BLOB)
1533 release_delta_base_cache(f);
1534 }
Nicolas Pitre5e08ecb2007-03-19 16:31:04 -04001535 for (lru = delta_base_cache_lru.next;
1536 delta_base_cached > delta_base_cache_limit
1537 && lru != &delta_base_cache_lru;
1538 lru = lru->next) {
1539 struct delta_base_cache_entry *f = (void *)lru;
1540 release_delta_base_cache(f);
1541 }
Shawn O. Pearce18bdec12007-03-19 01:14:37 -04001542
Linus Torvaldse5e01612007-03-17 12:44:06 -07001543 ent->p = p;
1544 ent->base_offset = base_offset;
1545 ent->type = type;
1546 ent->data = base;
1547 ent->size = base_size;
Nicolas Pitre5e08ecb2007-03-19 16:31:04 -04001548 ent->lru.next = &delta_base_cache_lru;
1549 ent->lru.prev = delta_base_cache_lru.prev;
1550 delta_base_cache_lru.prev->next = &ent->lru;
1551 delta_base_cache_lru.prev = &ent->lru;
Linus Torvalds62f255a2007-03-17 12:42:15 -07001552}
1553
Shawn Pearceeb950c12006-08-26 04:12:27 -04001554static void *unpack_delta_entry(struct packed_git *p,
Shawn O. Pearce03e79c82006-12-23 02:34:08 -05001555 struct pack_window **w_curs,
Shawn O. Pearcec4001d92007-03-06 20:44:30 -05001556 off_t curpos,
Junio C Hamano1f688552005-06-27 03:35:33 -07001557 unsigned long delta_size,
Shawn O. Pearcec4001d92007-03-06 20:44:30 -05001558 off_t obj_offset,
Nicolas Pitre21666f12007-02-26 14:55:59 -05001559 enum object_type *type,
Shawn Pearceeb950c12006-08-26 04:12:27 -04001560 unsigned long *sizep)
Junio C Hamano1f688552005-06-27 03:35:33 -07001561{
Shawn Pearce7c3e8be2006-08-26 04:11:02 -04001562 void *delta_data, *result, *base;
Shawn O. Pearcec4001d92007-03-06 20:44:30 -05001563 unsigned long base_size;
1564 off_t base_offset;
Junio C Hamano1f688552005-06-27 03:35:33 -07001565
Nicolas Pitre21666f12007-02-26 14:55:59 -05001566 base_offset = get_delta_base(p, w_curs, &curpos, *type, obj_offset);
Nicolas Pitrea0cba102007-03-17 21:13:57 -04001567 base = cache_or_unpack_entry(p, base_offset, &base_size, type, 0);
Nicolas Pitre43057302006-09-21 00:05:37 -04001568 if (!base)
Shawn O. Pearcec4001d92007-03-06 20:44:30 -05001569 die("failed to read delta base object"
1570 " at %"PRIuMAX" from %s",
1571 (uintmax_t)base_offset, p->pack_name);
Nicolas Pitre43057302006-09-21 00:05:37 -04001572
Nicolas Pitre2b87c452007-02-26 14:55:56 -05001573 delta_data = unpack_compressed_entry(p, w_curs, curpos, delta_size);
Shawn O. Pearce9064d872007-08-25 03:26:04 -04001574 if (!delta_data)
1575 die("failed to unpack compressed delta"
1576 " at %"PRIuMAX" from %s",
1577 (uintmax_t)curpos, p->pack_name);
Junio C Hamano1f688552005-06-27 03:35:33 -07001578 result = patch_delta(base, base_size,
1579 delta_data, delta_size,
Nicolas Pitre21666f12007-02-26 14:55:59 -05001580 sizep);
Junio C Hamano1f688552005-06-27 03:35:33 -07001581 if (!result)
1582 die("failed to apply delta");
1583 free(delta_data);
Linus Torvalds62f255a2007-03-17 12:42:15 -07001584 add_delta_base_cache(p, base_offset, base, base_size, *type);
Junio C Hamano1f688552005-06-27 03:35:33 -07001585 return result;
1586}
1587
Shawn O. Pearcec4001d92007-03-06 20:44:30 -05001588void *unpack_entry(struct packed_git *p, off_t obj_offset,
Nicolas Pitre21666f12007-02-26 14:55:59 -05001589 enum object_type *type, unsigned long *sizep)
Junio C Hamanof3bf9222005-06-30 17:15:39 -07001590{
Shawn O. Pearce03e79c82006-12-23 02:34:08 -05001591 struct pack_window *w_curs = NULL;
Shawn O. Pearcec4001d92007-03-06 20:44:30 -05001592 off_t curpos = obj_offset;
Nicolas Pitre21666f12007-02-26 14:55:59 -05001593 void *data;
Junio C Hamano1f688552005-06-27 03:35:33 -07001594
Nicolas Pitre21666f12007-02-26 14:55:59 -05001595 *type = unpack_object_header(p, &w_curs, &curpos, sizep);
1596 switch (*type) {
Nicolas Pitreeb32d232006-09-21 00:06:49 -04001597 case OBJ_OFS_DELTA:
1598 case OBJ_REF_DELTA:
Nicolas Pitre21666f12007-02-26 14:55:59 -05001599 data = unpack_delta_entry(p, &w_curs, curpos, *sizep,
1600 obj_offset, type, sizep);
Shawn O. Pearce4d703a12006-12-23 02:33:25 -05001601 break;
Linus Torvaldsa733cb62005-06-28 14:21:02 -07001602 case OBJ_COMMIT:
Linus Torvaldsa733cb62005-06-28 14:21:02 -07001603 case OBJ_TREE:
Linus Torvaldsa733cb62005-06-28 14:21:02 -07001604 case OBJ_BLOB:
Linus Torvaldsa733cb62005-06-28 14:21:02 -07001605 case OBJ_TAG:
Nicolas Pitre21666f12007-02-26 14:55:59 -05001606 data = unpack_compressed_entry(p, &w_curs, curpos, *sizep);
Shawn O. Pearce4d703a12006-12-23 02:33:25 -05001607 break;
Junio C Hamano1f688552005-06-27 03:35:33 -07001608 default:
Nicolas Pitre21666f12007-02-26 14:55:59 -05001609 die("unknown object type %i in %s", *type, p->pack_name);
Junio C Hamano1f688552005-06-27 03:35:33 -07001610 }
Shawn O. Pearce03e79c82006-12-23 02:34:08 -05001611 unuse_pack(&w_curs);
Nicolas Pitre21666f12007-02-26 14:55:59 -05001612 return data;
Junio C Hamano1f688552005-06-27 03:35:33 -07001613}
1614
Shawn O. Pearced0798372007-05-26 01:24:19 -04001615const unsigned char *nth_packed_object_sha1(struct packed_git *p,
Nicolas Pitred72308e2007-04-04 16:49:04 -04001616 uint32_t n)
Junio C Hamano9a217f22005-06-28 14:56:57 -07001617{
Nicolas Pitre42873072007-03-16 16:42:50 -04001618 const unsigned char *index = p->index_data;
Shawn O. Pearced0798372007-05-26 01:24:19 -04001619 if (!index) {
1620 if (open_pack_index(p))
1621 return NULL;
1622 index = p->index_data;
1623 }
Nicolas Pitre57059092007-04-09 01:06:28 -04001624 if (n >= p->num_objects)
Nicolas Pitred72308e2007-04-04 16:49:04 -04001625 return NULL;
Nicolas Pitre74e34e12007-04-09 01:06:35 -04001626 index += 4 * 256;
1627 if (p->index_version == 1) {
1628 return index + 24 * n + 4;
1629 } else {
1630 index += 8;
1631 return index + 20 * n;
1632 }
1633}
1634
1635static off_t nth_packed_object_offset(const struct packed_git *p, uint32_t n)
1636{
1637 const unsigned char *index = p->index_data;
1638 index += 4 * 256;
1639 if (p->index_version == 1) {
1640 return ntohl(*((uint32_t *)(index + 24 * n)));
1641 } else {
1642 uint32_t off;
1643 index += 8 + p->num_objects * (20 + 4);
1644 off = ntohl(*((uint32_t *)(index + 4 * n)));
1645 if (!(off & 0x80000000))
1646 return off;
1647 index += p->num_objects * 4 + (off & 0x7fffffff) * 8;
1648 return (((uint64_t)ntohl(*((uint32_t *)(index + 0)))) << 32) |
1649 ntohl(*((uint32_t *)(index + 4)));
1650 }
Junio C Hamano9a217f22005-06-28 14:56:57 -07001651}
1652
Shawn O. Pearcec4001d92007-03-06 20:44:30 -05001653off_t find_pack_entry_one(const unsigned char *sha1,
Nicolas Pitre43057302006-09-21 00:05:37 -04001654 struct packed_git *p)
Junio C Hamano1f688552005-06-27 03:35:33 -07001655{
Nicolas Pitre42873072007-03-16 16:42:50 -04001656 const uint32_t *level1_ofs = p->index_data;
Nicolas Pitre42873072007-03-16 16:42:50 -04001657 const unsigned char *index = p->index_data;
Nicolas Pitre74e34e12007-04-09 01:06:35 -04001658 unsigned hi, lo;
Nicolas Pitre42873072007-03-16 16:42:50 -04001659
Shawn O. Pearced0798372007-05-26 01:24:19 -04001660 if (!index) {
1661 if (open_pack_index(p))
1662 return 0;
1663 level1_ofs = p->index_data;
1664 index = p->index_data;
1665 }
Nicolas Pitre74e34e12007-04-09 01:06:35 -04001666 if (p->index_version > 1) {
1667 level1_ofs += 2;
1668 index += 8;
1669 }
Nicolas Pitre42873072007-03-16 16:42:50 -04001670 index += 4 * 256;
Nicolas Pitre74e34e12007-04-09 01:06:35 -04001671 hi = ntohl(level1_ofs[*sha1]);
1672 lo = ((*sha1 == 0x0) ? 0 : ntohl(level1_ofs[*sha1 - 1]));
Junio C Hamano1f688552005-06-27 03:35:33 -07001673
1674 do {
Nicolas Pitre74e34e12007-04-09 01:06:35 -04001675 unsigned mi = (lo + hi) / 2;
1676 unsigned x = (p->index_version > 1) ? (mi * 20) : (mi * 24 + 4);
1677 int cmp = hashcmp(index + x, sha1);
Nicolas Pitre43057302006-09-21 00:05:37 -04001678 if (!cmp)
Nicolas Pitre74e34e12007-04-09 01:06:35 -04001679 return nth_packed_object_offset(p, mi);
Junio C Hamano1f688552005-06-27 03:35:33 -07001680 if (cmp > 0)
1681 hi = mi;
1682 else
1683 lo = mi+1;
1684 } while (lo < hi);
1685 return 0;
1686}
1687
Junio C Hamano000dfd32007-09-16 23:15:19 -07001688int matches_pack_name(struct packed_git *p, const char *name)
Shawn Pearced4ff6d92006-10-29 04:37:11 -05001689{
1690 const char *last_c, *c;
1691
Junio C Hamano000dfd32007-09-16 23:15:19 -07001692 if (!strcmp(p->pack_name, name))
1693 return 1;
Shawn Pearced4ff6d92006-10-29 04:37:11 -05001694
1695 for (c = p->pack_name, last_c = c; *c;)
1696 if (*c == '/')
1697 last_c = ++c;
1698 else
1699 ++c;
Junio C Hamano000dfd32007-09-16 23:15:19 -07001700 if (!strcmp(last_c, name))
1701 return 1;
Shawn Pearced4ff6d92006-10-29 04:37:11 -05001702
Junio C Hamano000dfd32007-09-16 23:15:19 -07001703 return 0;
Shawn Pearced4ff6d92006-10-29 04:37:11 -05001704}
1705
Junio C Hamano106d7102006-09-06 02:12:09 -07001706static int find_pack_entry(const unsigned char *sha1, struct pack_entry *e, const char **ignore_packed)
Junio C Hamano1f688552005-06-27 03:35:33 -07001707{
Nicolas Pitref7c22cc2007-05-30 22:48:13 -04001708 static struct packed_git *last_found = (void *)1;
Junio C Hamano1f688552005-06-27 03:35:33 -07001709 struct packed_git *p;
Shawn O. Pearcec4001d92007-03-06 20:44:30 -05001710 off_t offset;
Nicolas Pitre43057302006-09-21 00:05:37 -04001711
Junio C Hamano1f688552005-06-27 03:35:33 -07001712 prepare_packed_git();
Nicolas Pitref7c22cc2007-05-30 22:48:13 -04001713 if (!packed_git)
1714 return 0;
1715 p = (last_found == (void *)1) ? packed_git : last_found;
Junio C Hamano1f688552005-06-27 03:35:33 -07001716
Nicolas Pitref7c22cc2007-05-30 22:48:13 -04001717 do {
Junio C Hamano106d7102006-09-06 02:12:09 -07001718 if (ignore_packed) {
1719 const char **ig;
1720 for (ig = ignore_packed; *ig; ig++)
Junio C Hamano000dfd32007-09-16 23:15:19 -07001721 if (matches_pack_name(p, *ig))
Junio C Hamano106d7102006-09-06 02:12:09 -07001722 break;
1723 if (*ig)
Nicolas Pitref7c22cc2007-05-30 22:48:13 -04001724 goto next;
Junio C Hamano106d7102006-09-06 02:12:09 -07001725 }
Nicolas Pitref7c22cc2007-05-30 22:48:13 -04001726
Nicolas Pitre43057302006-09-21 00:05:37 -04001727 offset = find_pack_entry_one(sha1, p);
1728 if (offset) {
Shawn O. Pearcec715f782007-02-01 15:52:38 -05001729 /*
1730 * We are about to tell the caller where they can
1731 * locate the requested object. We better make
1732 * sure the packfile is still here and can be
1733 * accessed before supplying that answer, as
1734 * it may have been deleted since the index
1735 * was loaded!
1736 */
1737 if (p->pack_fd == -1 && open_packed_git(p)) {
1738 error("packfile %s cannot be accessed", p->pack_name);
Nicolas Pitref7c22cc2007-05-30 22:48:13 -04001739 goto next;
Shawn O. Pearcec715f782007-02-01 15:52:38 -05001740 }
Nicolas Pitre43057302006-09-21 00:05:37 -04001741 e->offset = offset;
1742 e->p = p;
1743 hashcpy(e->sha1, sha1);
Nicolas Pitref7c22cc2007-05-30 22:48:13 -04001744 last_found = p;
Junio C Hamano1f688552005-06-27 03:35:33 -07001745 return 1;
Nicolas Pitre43057302006-09-21 00:05:37 -04001746 }
Nicolas Pitref7c22cc2007-05-30 22:48:13 -04001747
1748 next:
1749 if (p == last_found)
1750 p = packed_git;
1751 else
1752 p = p->next;
1753 if (p == last_found)
1754 p = p->next;
1755 } while (p);
Junio C Hamano1f688552005-06-27 03:35:33 -07001756 return 0;
1757}
1758
Junio C Hamanoa6080a02007-06-07 00:04:01 -07001759struct packed_git *find_sha1_pack(const unsigned char *sha1,
barkalow@iabervon.orgbf592c52005-07-31 20:53:44 -04001760 struct packed_git *packs)
1761{
1762 struct packed_git *p;
barkalow@iabervon.orgbf592c52005-07-31 20:53:44 -04001763
1764 for (p = packs; p; p = p->next) {
Nicolas Pitre43057302006-09-21 00:05:37 -04001765 if (find_pack_entry_one(sha1, p))
barkalow@iabervon.orgbf592c52005-07-31 20:53:44 -04001766 return p;
1767 }
1768 return NULL;
Nicolas Pitre21666f12007-02-26 14:55:59 -05001769
barkalow@iabervon.orgbf592c52005-07-31 20:53:44 -04001770}
1771
Nicolas Pitre21666f12007-02-26 14:55:59 -05001772static int sha1_loose_object_info(const unsigned char *sha1, unsigned long *sizep)
Junio C Hamano65c2e0c2005-06-02 15:20:54 -07001773{
Junio C Hamano36e4d742005-06-27 03:34:06 -07001774 int status;
Junio C Hamano65c2e0c2005-06-02 15:20:54 -07001775 unsigned long mapsize, size;
1776 void *map;
1777 z_stream stream;
Nicolas Pitred65a16f2007-02-26 14:55:55 -05001778 char hdr[32];
Junio C Hamano65c2e0c2005-06-02 15:20:54 -07001779
Junio C Hamanobb6b8e42006-07-17 15:04:47 -07001780 map = map_sha1_file(sha1, &mapsize);
Johannes Schindelinf0df4ed2006-11-28 00:18:55 +01001781 if (!map)
1782 return error("unable to find %s", sha1_to_hex(sha1));
Junio C Hamano36e4d742005-06-27 03:34:06 -07001783 if (unpack_sha1_header(&stream, map, mapsize, hdr, sizeof(hdr)) < 0)
1784 status = error("unable to unpack %s header",
1785 sha1_to_hex(sha1));
Nicolas Pitre21666f12007-02-26 14:55:59 -05001786 else if ((status = parse_sha1_header(hdr, &size)) < 0)
Junio C Hamano36e4d742005-06-27 03:34:06 -07001787 status = error("unable to parse %s header", sha1_to_hex(sha1));
Nicolas Pitre21666f12007-02-26 14:55:59 -05001788 else if (sizep)
1789 *sizep = size;
Junio C Hamano65c2e0c2005-06-02 15:20:54 -07001790 inflateEnd(&stream);
1791 munmap(map, mapsize);
1792 return status;
1793}
1794
Nicolas Pitre21666f12007-02-26 14:55:59 -05001795int sha1_object_info(const unsigned char *sha1, unsigned long *sizep)
Johannes Schindelinf0df4ed2006-11-28 00:18:55 +01001796{
Johannes Schindelinf0df4ed2006-11-28 00:18:55 +01001797 struct pack_entry e;
1798
1799 if (!find_pack_entry(sha1, &e, NULL)) {
1800 reprepare_packed_git();
1801 if (!find_pack_entry(sha1, &e, NULL))
Nicolas Pitre21666f12007-02-26 14:55:59 -05001802 return sha1_loose_object_info(sha1, sizep);
Johannes Schindelinf0df4ed2006-11-28 00:18:55 +01001803 }
Nicolas Pitre21666f12007-02-26 14:55:59 -05001804 return packed_object_info(e.p, e.offset, sizep);
Johannes Schindelinf0df4ed2006-11-28 00:18:55 +01001805}
1806
Nicolas Pitre21666f12007-02-26 14:55:59 -05001807static void *read_packed_sha1(const unsigned char *sha1,
1808 enum object_type *type, unsigned long *size)
Junio C Hamano1f688552005-06-27 03:35:33 -07001809{
1810 struct pack_entry e;
1811
Peter Eriksen8276c002007-01-22 21:29:45 +01001812 if (!find_pack_entry(sha1, &e, NULL))
Junio C Hamano1f688552005-06-27 03:35:33 -07001813 return NULL;
Peter Eriksen8276c002007-01-22 21:29:45 +01001814 else
Nicolas Pitrea0cba102007-03-17 21:13:57 -04001815 return cache_or_unpack_entry(e.p, e.offset, size, type, 1);
Junio C Hamano1f688552005-06-27 03:35:33 -07001816}
1817
Junio C Hamanod66b37b2007-02-04 21:42:38 -08001818/*
1819 * This is meant to hold a *small* number of objects that you would
1820 * want read_sha1_file() to be able to return, but yet you do not want
1821 * to write them into the object store (e.g. a browse-only
1822 * application).
1823 */
1824static struct cached_object {
1825 unsigned char sha1[20];
Nicolas Pitre21666f12007-02-26 14:55:59 -05001826 enum object_type type;
Junio C Hamanod66b37b2007-02-04 21:42:38 -08001827 void *buf;
1828 unsigned long size;
1829} *cached_objects;
1830static int cached_object_nr, cached_object_alloc;
1831
1832static struct cached_object *find_cached_object(const unsigned char *sha1)
1833{
1834 int i;
1835 struct cached_object *co = cached_objects;
1836
1837 for (i = 0; i < cached_object_nr; i++, co++) {
1838 if (!hashcmp(co->sha1, sha1))
1839 return co;
1840 }
1841 return NULL;
1842}
1843
Nicolas Pitre21666f12007-02-26 14:55:59 -05001844int pretend_sha1_file(void *buf, unsigned long len, enum object_type type,
1845 unsigned char *sha1)
Junio C Hamanod66b37b2007-02-04 21:42:38 -08001846{
1847 struct cached_object *co;
1848
Nicolas Pitre21666f12007-02-26 14:55:59 -05001849 hash_sha1_file(buf, len, typename(type), sha1);
Junio C Hamanod66b37b2007-02-04 21:42:38 -08001850 if (has_sha1_file(sha1) || find_cached_object(sha1))
1851 return 0;
1852 if (cached_object_alloc <= cached_object_nr) {
1853 cached_object_alloc = alloc_nr(cached_object_alloc);
1854 cached_objects = xrealloc(cached_objects,
1855 sizeof(*cached_objects) *
1856 cached_object_alloc);
1857 }
1858 co = &cached_objects[cached_object_nr++];
1859 co->size = len;
Nicolas Pitre21666f12007-02-26 14:55:59 -05001860 co->type = type;
Junio C Hamanoefa13f72007-02-15 17:02:06 -08001861 co->buf = xmalloc(len);
1862 memcpy(co->buf, buf, len);
Junio C Hamanod66b37b2007-02-04 21:42:38 -08001863 hashcpy(co->sha1, sha1);
1864 return 0;
1865}
1866
Nicolas Pitre21666f12007-02-26 14:55:59 -05001867void *read_sha1_file(const unsigned char *sha1, enum object_type *type,
1868 unsigned long *size)
Linus Torvalds0fcfd162005-04-18 13:04:43 -07001869{
1870 unsigned long mapsize;
1871 void *map, *buf;
Junio C Hamanod66b37b2007-02-04 21:42:38 -08001872 struct cached_object *co;
1873
1874 co = find_cached_object(sha1);
1875 if (co) {
Nicolas Pitre21666f12007-02-26 14:55:59 -05001876 *type = co->type;
Junio C Hamanod66b37b2007-02-04 21:42:38 -08001877 *size = co->size;
Pierre Habouzit182af832007-09-16 00:32:36 +02001878 return xmemdupz(co->buf, co->size);
Junio C Hamanod66b37b2007-02-04 21:42:38 -08001879 }
Linus Torvalds0fcfd162005-04-18 13:04:43 -07001880
Peter Eriksen8276c002007-01-22 21:29:45 +01001881 buf = read_packed_sha1(sha1, type, size);
1882 if (buf)
1883 return buf;
Junio C Hamanobb6b8e42006-07-17 15:04:47 -07001884 map = map_sha1_file(sha1, &mapsize);
Linus Torvalds0fcfd162005-04-18 13:04:43 -07001885 if (map) {
Junio C Hamano7efbff72007-03-05 00:21:37 -08001886 buf = unpack_sha1_file(map, mapsize, type, size, sha1);
Linus Torvalds0fcfd162005-04-18 13:04:43 -07001887 munmap(map, mapsize);
1888 return buf;
1889 }
Jeff King637cdd92006-06-02 11:32:23 -04001890 reprepare_packed_git();
Peter Eriksen8276c002007-01-22 21:29:45 +01001891 return read_packed_sha1(sha1, type, size);
Linus Torvalds0fcfd162005-04-18 13:04:43 -07001892}
1893
Junio C Hamano40469ee2005-04-28 16:42:27 -07001894void *read_object_with_reference(const unsigned char *sha1,
Nicolas Pitre21666f12007-02-26 14:55:59 -05001895 const char *required_type_name,
Junio C Hamano40469ee2005-04-28 16:42:27 -07001896 unsigned long *size,
1897 unsigned char *actual_sha1_return)
Junio C Hamanof4913f92005-04-20 18:06:49 -07001898{
Nicolas Pitre21666f12007-02-26 14:55:59 -05001899 enum object_type type, required_type;
Junio C Hamanof4913f92005-04-20 18:06:49 -07001900 void *buffer;
1901 unsigned long isize;
Junio C Hamano40469ee2005-04-28 16:42:27 -07001902 unsigned char actual_sha1[20];
Junio C Hamanof4913f92005-04-20 18:06:49 -07001903
Nicolas Pitre21666f12007-02-26 14:55:59 -05001904 required_type = type_from_string(required_type_name);
Shawn Pearcee7024962006-08-23 02:49:00 -04001905 hashcpy(actual_sha1, sha1);
Junio C Hamano40469ee2005-04-28 16:42:27 -07001906 while (1) {
1907 int ref_length = -1;
1908 const char *ref_type = NULL;
Junio C Hamanof4913f92005-04-20 18:06:49 -07001909
Nicolas Pitre21666f12007-02-26 14:55:59 -05001910 buffer = read_sha1_file(actual_sha1, &type, &isize);
Junio C Hamano40469ee2005-04-28 16:42:27 -07001911 if (!buffer)
1912 return NULL;
Nicolas Pitre21666f12007-02-26 14:55:59 -05001913 if (type == required_type) {
Junio C Hamano40469ee2005-04-28 16:42:27 -07001914 *size = isize;
1915 if (actual_sha1_return)
Shawn Pearcee7024962006-08-23 02:49:00 -04001916 hashcpy(actual_sha1_return, actual_sha1);
Junio C Hamano40469ee2005-04-28 16:42:27 -07001917 return buffer;
1918 }
1919 /* Handle references */
Nicolas Pitre21666f12007-02-26 14:55:59 -05001920 else if (type == OBJ_COMMIT)
Junio C Hamano40469ee2005-04-28 16:42:27 -07001921 ref_type = "tree ";
Nicolas Pitre21666f12007-02-26 14:55:59 -05001922 else if (type == OBJ_TAG)
Junio C Hamano40469ee2005-04-28 16:42:27 -07001923 ref_type = "object ";
1924 else {
1925 free(buffer);
1926 return NULL;
1927 }
1928 ref_length = strlen(ref_type);
1929
1930 if (memcmp(buffer, ref_type, ref_length) ||
Florian Forster1d7f1712006-06-18 17:18:09 +02001931 get_sha1_hex((char *) buffer + ref_length, actual_sha1)) {
Junio C Hamano40469ee2005-04-28 16:42:27 -07001932 free(buffer);
1933 return NULL;
1934 }
Sergey Vlasov1cf58e72005-08-08 22:44:43 +04001935 free(buffer);
Junio C Hamano40469ee2005-04-28 16:42:27 -07001936 /* Now we have the ID of the referred-to object in
1937 * actual_sha1. Check again. */
Junio C Hamanof4913f92005-04-20 18:06:49 -07001938 }
Junio C Hamanof4913f92005-04-20 18:06:49 -07001939}
1940
Nicolas Pitrece9fbf12007-03-20 16:02:09 -04001941static void write_sha1_file_prepare(const void *buf, unsigned long len,
Rene Scharfe972a9152006-10-15 14:02:03 +02001942 const char *type, unsigned char *sha1,
Nicolas Pitred65a16f2007-02-26 14:55:55 -05001943 char *hdr, int *hdrlen)
Junio C Hamanod410c0f2005-06-27 19:03:13 -07001944{
1945 SHA_CTX c;
1946
1947 /* Generate the header */
Nicolas Pitred65a16f2007-02-26 14:55:55 -05001948 *hdrlen = sprintf(hdr, "%s %lu", type, len)+1;
Junio C Hamanod410c0f2005-06-27 19:03:13 -07001949
1950 /* Sha1.. */
1951 SHA1_Init(&c);
1952 SHA1_Update(&c, hdr, *hdrlen);
1953 SHA1_Update(&c, buf, len);
1954 SHA1_Final(sha1, &c);
Junio C Hamanod410c0f2005-06-27 19:03:13 -07001955}
1956
Linus Torvalds230f1322005-10-08 15:54:01 -07001957/*
1958 * Link the tempfile to the final place, possibly creating the
1959 * last directory level as you do so.
1960 *
1961 * Returns the errno on failure, 0 on success.
1962 */
Junio C Hamano839837b2006-09-01 00:17:47 -07001963static int link_temp_to_file(const char *tmpfile, const char *filename)
Linus Torvalds230f1322005-10-08 15:54:01 -07001964{
1965 int ret;
Shawn Pearce756aaf42006-07-12 01:00:16 -04001966 char *dir;
Linus Torvalds230f1322005-10-08 15:54:01 -07001967
1968 if (!link(tmpfile, filename))
1969 return 0;
1970
1971 /*
Shawn Pearce756aaf42006-07-12 01:00:16 -04001972 * Try to mkdir the last path component if that failed.
Linus Torvalds230f1322005-10-08 15:54:01 -07001973 *
1974 * Re-try the "link()" regardless of whether the mkdir
1975 * succeeds, since a race might mean that somebody
1976 * else succeeded.
1977 */
1978 ret = errno;
Shawn Pearce756aaf42006-07-12 01:00:16 -04001979 dir = strrchr(filename, '/');
1980 if (dir) {
1981 *dir = 0;
Johannes Schindelin866cae02006-11-02 18:02:17 -08001982 if (!mkdir(filename, 0777) && adjust_shared_perm(filename)) {
Junio C Hamano91c23e42006-10-31 15:56:58 -08001983 *dir = '/';
Shawn Pearce756aaf42006-07-12 01:00:16 -04001984 return -2;
Junio C Hamano91c23e42006-10-31 15:56:58 -08001985 }
Shawn Pearce756aaf42006-07-12 01:00:16 -04001986 *dir = '/';
1987 if (!link(tmpfile, filename))
1988 return 0;
1989 ret = errno;
Linus Torvalds230f1322005-10-08 15:54:01 -07001990 }
1991 return ret;
1992}
1993
1994/*
1995 * Move the just written object into its final resting place
1996 */
Junio C Hamano839837b2006-09-01 00:17:47 -07001997int move_temp_to_file(const char *tmpfile, const char *filename)
Linus Torvalds230f1322005-10-08 15:54:01 -07001998{
1999 int ret = link_temp_to_file(tmpfile, filename);
Linus Torvalds7ebb6fc2005-10-26 10:27:36 -07002000
2001 /*
2002 * Coda hack - coda doesn't like cross-directory links,
2003 * so we fall back to a rename, which will mean that it
2004 * won't be able to check collisions, but that's not a
2005 * big deal.
2006 *
2007 * The same holds for FAT formatted media.
2008 *
2009 * When this succeeds, we just return 0. We have nothing
2010 * left to unlink.
2011 */
2012 if (ret && ret != EEXIST) {
2013 if (!rename(tmpfile, filename))
Linus Torvalds230f1322005-10-08 15:54:01 -07002014 return 0;
Johannes Schindelin9e48b382005-10-26 01:41:20 +02002015 ret = errno;
Linus Torvalds230f1322005-10-08 15:54:01 -07002016 }
2017 unlink(tmpfile);
2018 if (ret) {
2019 if (ret != EEXIST) {
Petr Baudis916d0812006-11-09 13:52:05 +01002020 return error("unable to write sha1 filename %s: %s\n", filename, strerror(ret));
Linus Torvalds230f1322005-10-08 15:54:01 -07002021 }
2022 /* FIXME!!! Collision check here ? */
2023 }
2024
2025 return 0;
2026}
2027
Linus Torvalds4d548152006-05-24 08:30:54 -07002028static int write_buffer(int fd, const void *buf, size_t len)
2029{
Linus Torvaldsd34cf192007-01-11 20:23:00 -08002030 if (write_in_full(fd, buf, len) < 0)
Andy Whitcroft93822c22007-01-08 15:58:23 +00002031 return error("file write error (%s)", strerror(errno));
Linus Torvalds4d548152006-05-24 08:30:54 -07002032 return 0;
2033}
2034
Nicolas Pitrece9fbf12007-03-20 16:02:09 -04002035int hash_sha1_file(const void *buf, unsigned long len, const char *type,
Rene Scharfeabdc3fc2006-10-14 12:45:36 +02002036 unsigned char *sha1)
2037{
Nicolas Pitred65a16f2007-02-26 14:55:55 -05002038 char hdr[32];
Rene Scharfeabdc3fc2006-10-14 12:45:36 +02002039 int hdrlen;
2040 write_sha1_file_prepare(buf, len, type, sha1, hdr, &hdrlen);
2041 return 0;
2042}
2043
Brian Gerstbf0f9102005-05-18 08:14:09 -04002044int write_sha1_file(void *buf, unsigned long len, const char *type, unsigned char *returnsha1)
Linus Torvalds0fcfd162005-04-18 13:04:43 -07002045{
Linus Torvaldsac54c272007-03-20 11:38:34 -07002046 int size, ret;
Brian Gerstbf0f9102005-05-18 08:14:09 -04002047 unsigned char *compressed;
Linus Torvalds0fcfd162005-04-18 13:04:43 -07002048 z_stream stream;
2049 unsigned char sha1[20];
Linus Torvalds706bc532005-04-20 09:28:05 -07002050 char *filename;
Linus Torvaldsaac17942005-05-03 11:46:16 -07002051 static char tmpfile[PATH_MAX];
Nicolas Pitred65a16f2007-02-26 14:55:55 -05002052 char hdr[32];
Linus Torvalds230f1322005-10-08 15:54:01 -07002053 int fd, hdrlen;
Linus Torvaldsa44c9a52005-04-25 10:19:53 -07002054
Junio C Hamanod410c0f2005-06-27 19:03:13 -07002055 /* Normally if we have it in the pack then we do not bother writing
2056 * it out into .git/objects/??/?{38} file.
2057 */
Rene Scharfe972a9152006-10-15 14:02:03 +02002058 write_sha1_file_prepare(buf, len, type, sha1, hdr, &hdrlen);
2059 filename = sha1_file_name(sha1);
Linus Torvalds706bc532005-04-20 09:28:05 -07002060 if (returnsha1)
Shawn Pearcee7024962006-08-23 02:49:00 -04002061 hashcpy(returnsha1, sha1);
Junio C Hamanod410c0f2005-06-27 19:03:13 -07002062 if (has_sha1_file(sha1))
2063 return 0;
Linus Torvaldsaac17942005-05-03 11:46:16 -07002064 fd = open(filename, O_RDONLY);
2065 if (fd >= 0) {
Linus Torvalds706bc532005-04-20 09:28:05 -07002066 /*
Linus Torvaldsaac17942005-05-03 11:46:16 -07002067 * FIXME!!! We might do collision checking here, but we'd
2068 * need to uncompress the old file and check it. Later.
Linus Torvalds706bc532005-04-20 09:28:05 -07002069 */
Linus Torvaldsaac17942005-05-03 11:46:16 -07002070 close(fd);
Linus Torvalds706bc532005-04-20 09:28:05 -07002071 return 0;
2072 }
2073
Linus Torvaldsaac17942005-05-03 11:46:16 -07002074 if (errno != ENOENT) {
Petr Baudis916d0812006-11-09 13:52:05 +01002075 return error("sha1 file %s: %s\n", filename, strerror(errno));
Linus Torvaldsaac17942005-05-03 11:46:16 -07002076 }
2077
Nicolas Pitre0e551812007-03-24 11:58:22 -04002078 snprintf(tmpfile, sizeof(tmpfile), "%s/tmp_obj_XXXXXX", get_object_directory());
Junio C Hamanoace15342005-05-07 00:38:04 -07002079
Linus Torvaldsaac17942005-05-03 11:46:16 -07002080 fd = mkstemp(tmpfile);
2081 if (fd < 0) {
Petr Baudis916d0812006-11-09 13:52:05 +01002082 if (errno == EPERM)
2083 return error("insufficient permission for adding an object to repository database %s\n", get_object_directory());
2084 else
2085 return error("unable to create temporary sha1 filename %s: %s\n", tmpfile, strerror(errno));
Linus Torvaldsaac17942005-05-03 11:46:16 -07002086 }
2087
Linus Torvalds0fcfd162005-04-18 13:04:43 -07002088 /* Set it up */
2089 memset(&stream, 0, sizeof(stream));
Joachim B Haga12f6c302006-07-03 22:11:47 +02002090 deflateInit(&stream, zlib_compression_level);
Linus Torvalds93821bd2006-07-11 12:48:08 -07002091 size = 8 + deflateBound(&stream, len+hdrlen);
Christopher Li812666c2005-04-26 12:00:58 -07002092 compressed = xmalloc(size);
Linus Torvalds0fcfd162005-04-18 13:04:43 -07002093
2094 /* Compress it */
Linus Torvalds0fcfd162005-04-18 13:04:43 -07002095 stream.next_out = compressed;
2096 stream.avail_out = size;
Linus Torvaldsa44c9a52005-04-25 10:19:53 -07002097
2098 /* First header.. */
Nicolas Pitred65a16f2007-02-26 14:55:55 -05002099 stream.next_in = (unsigned char *)hdr;
Linus Torvaldsa44c9a52005-04-25 10:19:53 -07002100 stream.avail_in = hdrlen;
Nicolas Pitre726f8522007-05-09 14:42:42 -04002101 while (deflate(&stream, 0) == Z_OK)
2102 /* nothing */;
Linus Torvaldsa44c9a52005-04-25 10:19:53 -07002103
2104 /* Then the data itself.. */
2105 stream.next_in = buf;
2106 stream.avail_in = len;
Linus Torvaldsac54c272007-03-20 11:38:34 -07002107 ret = deflate(&stream, Z_FINISH);
2108 if (ret != Z_STREAM_END)
2109 die("unable to deflate new object %s (%d)", sha1_to_hex(sha1), ret);
2110
2111 ret = deflateEnd(&stream);
2112 if (ret != Z_OK)
2113 die("deflateEnd on object %s failed (%d)", sha1_to_hex(sha1), ret);
2114
Linus Torvalds0fcfd162005-04-18 13:04:43 -07002115 size = stream.total_out;
2116
Linus Torvalds4d548152006-05-24 08:30:54 -07002117 if (write_buffer(fd, compressed, size) < 0)
2118 die("unable to write sha1 file");
Linus Torvaldsaac17942005-05-03 11:46:16 -07002119 fchmod(fd, 0444);
Junio C Hamanoe82973c2007-03-27 12:55:44 -07002120 if (close(fd))
2121 die("unable to write sha1 file");
Junio C Hamano383f85b2005-05-07 01:27:00 -07002122 free(compressed);
Linus Torvalds0fcfd162005-04-18 13:04:43 -07002123
Linus Torvalds230f1322005-10-08 15:54:01 -07002124 return move_temp_to_file(tmpfile, filename);
Linus Torvalds0fcfd162005-04-18 13:04:43 -07002125}
Daniel Barkalow8237b182005-04-23 18:47:23 -07002126
Linus Torvalds4d548152006-05-24 08:30:54 -07002127/*
2128 * We need to unpack and recompress the object for writing
2129 * it out to a different file.
2130 */
2131static void *repack_object(const unsigned char *sha1, unsigned long *objsize)
2132{
2133 size_t size;
2134 z_stream stream;
2135 unsigned char *unpacked;
2136 unsigned long len;
Nicolas Pitre21666f12007-02-26 14:55:59 -05002137 enum object_type type;
Nicolas Pitred65a16f2007-02-26 14:55:55 -05002138 char hdr[32];
Linus Torvalds4d548152006-05-24 08:30:54 -07002139 int hdrlen;
2140 void *buf;
2141
Pavel Roskina9486b02006-07-10 02:57:51 -04002142 /* need to unpack and recompress it by itself */
Nicolas Pitre21666f12007-02-26 14:55:59 -05002143 unpacked = read_packed_sha1(sha1, &type, &len);
Peter Eriksen8276c002007-01-22 21:29:45 +01002144 if (!unpacked)
2145 error("cannot read sha1_file for %s", sha1_to_hex(sha1));
Linus Torvalds4d548152006-05-24 08:30:54 -07002146
Nicolas Pitre21666f12007-02-26 14:55:59 -05002147 hdrlen = sprintf(hdr, "%s %lu", typename(type), len) + 1;
Linus Torvalds4d548152006-05-24 08:30:54 -07002148
2149 /* Set it up */
2150 memset(&stream, 0, sizeof(stream));
Joachim B Haga12f6c302006-07-03 22:11:47 +02002151 deflateInit(&stream, zlib_compression_level);
Linus Torvalds4d548152006-05-24 08:30:54 -07002152 size = deflateBound(&stream, len + hdrlen);
2153 buf = xmalloc(size);
2154
2155 /* Compress it */
2156 stream.next_out = buf;
2157 stream.avail_out = size;
2158
2159 /* First header.. */
2160 stream.next_in = (void *)hdr;
2161 stream.avail_in = hdrlen;
2162 while (deflate(&stream, 0) == Z_OK)
2163 /* nothing */;
2164
2165 /* Then the data itself.. */
2166 stream.next_in = unpacked;
2167 stream.avail_in = len;
2168 while (deflate(&stream, Z_FINISH) == Z_OK)
2169 /* nothing */;
2170 deflateEnd(&stream);
2171 free(unpacked);
2172
2173 *objsize = stream.total_out;
2174 return buf;
2175}
2176
Daniel Barkalowa5eda522005-07-10 18:25:38 -04002177int write_sha1_to_fd(int fd, const unsigned char *sha1)
2178{
Linus Torvalds4d548152006-05-24 08:30:54 -07002179 int retval;
Daniel Barkalowa5eda522005-07-10 18:25:38 -04002180 unsigned long objsize;
Junio C Hamanobb6b8e42006-07-17 15:04:47 -07002181 void *buf = map_sha1_file(sha1, &objsize);
Sergey Vlasovbfc66da2005-08-08 22:45:36 +04002182
Linus Torvalds4d548152006-05-24 08:30:54 -07002183 if (buf) {
2184 retval = write_buffer(fd, buf, objsize);
2185 munmap(buf, objsize);
2186 return retval;
Daniel Barkalowa5eda522005-07-10 18:25:38 -04002187 }
2188
Linus Torvalds4d548152006-05-24 08:30:54 -07002189 buf = repack_object(sha1, &objsize);
2190 retval = write_buffer(fd, buf, objsize);
2191 free(buf);
2192 return retval;
Daniel Barkalowa5eda522005-07-10 18:25:38 -04002193}
2194
barkalow@iabervon.org70b98292005-08-02 19:46:29 -04002195int write_sha1_from_fd(const unsigned char *sha1, int fd, char *buffer,
2196 size_t bufsize, size_t *bufposn)
Daniel Barkalow8237b182005-04-23 18:47:23 -07002197{
Linus Torvalds230f1322005-10-08 15:54:01 -07002198 char tmpfile[PATH_MAX];
Daniel Barkalow8237b182005-04-23 18:47:23 -07002199 int local;
2200 z_stream stream;
2201 unsigned char real_sha1[20];
Brian Gerstbf0f9102005-05-18 08:14:09 -04002202 unsigned char discard[4096];
Daniel Barkalow8237b182005-04-23 18:47:23 -07002203 int ret;
2204 SHA_CTX c;
2205
Nicolas Pitre0e551812007-03-24 11:58:22 -04002206 snprintf(tmpfile, sizeof(tmpfile), "%s/tmp_obj_XXXXXX", get_object_directory());
Daniel Barkalow8237b182005-04-23 18:47:23 -07002207
Linus Torvalds230f1322005-10-08 15:54:01 -07002208 local = mkstemp(tmpfile);
Petr Baudis916d0812006-11-09 13:52:05 +01002209 if (local < 0) {
2210 if (errno == EPERM)
2211 return error("insufficient permission for adding an object to repository database %s\n", get_object_directory());
2212 else
2213 return error("unable to create temporary sha1 filename %s: %s\n", tmpfile, strerror(errno));
2214 }
Daniel Barkalow8237b182005-04-23 18:47:23 -07002215
2216 memset(&stream, 0, sizeof(stream));
2217
2218 inflateInit(&stream);
2219
2220 SHA1_Init(&c);
2221
2222 do {
2223 ssize_t size;
barkalow@iabervon.org70b98292005-08-02 19:46:29 -04002224 if (*bufposn) {
2225 stream.avail_in = *bufposn;
Pavel Roskin96ad15a2005-08-09 16:54:40 -04002226 stream.next_in = (unsigned char *) buffer;
barkalow@iabervon.org70b98292005-08-02 19:46:29 -04002227 do {
2228 stream.next_out = discard;
2229 stream.avail_out = sizeof(discard);
2230 ret = inflate(&stream, Z_SYNC_FLUSH);
2231 SHA1_Update(&c, discard, sizeof(discard) -
2232 stream.avail_out);
2233 } while (stream.avail_in && ret == Z_OK);
Linus Torvalds4d548152006-05-24 08:30:54 -07002234 if (write_buffer(local, buffer, *bufposn - stream.avail_in) < 0)
2235 die("unable to write sha1 file");
barkalow@iabervon.org70b98292005-08-02 19:46:29 -04002236 memmove(buffer, buffer + *bufposn - stream.avail_in,
2237 stream.avail_in);
2238 *bufposn = stream.avail_in;
2239 if (ret != Z_OK)
2240 break;
2241 }
Andy Whitcroft93d26e42007-01-08 15:58:08 +00002242 size = xread(fd, buffer + *bufposn, bufsize - *bufposn);
Daniel Barkalow8237b182005-04-23 18:47:23 -07002243 if (size <= 0) {
2244 close(local);
Linus Torvalds230f1322005-10-08 15:54:01 -07002245 unlink(tmpfile);
Daniel Barkalow8237b182005-04-23 18:47:23 -07002246 if (!size)
2247 return error("Connection closed?");
2248 perror("Reading from connection");
2249 return -1;
2250 }
barkalow@iabervon.org70b98292005-08-02 19:46:29 -04002251 *bufposn += size;
2252 } while (1);
Daniel Barkalow8237b182005-04-23 18:47:23 -07002253 inflateEnd(&stream);
2254
Nicolas Pitreb5b8d812007-03-24 12:02:27 -04002255 fchmod(local, 0444);
Jim Meyering0d315462007-03-26 15:57:23 +02002256 if (close(local) != 0)
2257 die("unable to write sha1 file");
Daniel Barkalow8237b182005-04-23 18:47:23 -07002258 SHA1_Final(real_sha1, &c);
2259 if (ret != Z_STREAM_END) {
Linus Torvalds230f1322005-10-08 15:54:01 -07002260 unlink(tmpfile);
Daniel Barkalow8237b182005-04-23 18:47:23 -07002261 return error("File %s corrupted", sha1_to_hex(sha1));
2262 }
David Rientjesa89fccd2006-08-17 11:54:57 -07002263 if (hashcmp(sha1, real_sha1)) {
Linus Torvalds230f1322005-10-08 15:54:01 -07002264 unlink(tmpfile);
Junio C Hamanobd2afde2006-02-22 17:47:10 -08002265 return error("File %s has bad hash", sha1_to_hex(sha1));
Daniel Barkalow8237b182005-04-23 18:47:23 -07002266 }
Linus Torvalds230f1322005-10-08 15:54:01 -07002267
2268 return move_temp_to_file(tmpfile, sha1_file_name(sha1));
Daniel Barkalow8237b182005-04-23 18:47:23 -07002269}
2270
barkalow@iabervon.orgbf592c52005-07-31 20:53:44 -04002271int has_pack_index(const unsigned char *sha1)
2272{
2273 struct stat st;
2274 if (stat(sha1_pack_index_name(sha1), &st))
2275 return 0;
2276 return 1;
2277}
2278
2279int has_pack_file(const unsigned char *sha1)
2280{
2281 struct stat st;
2282 if (stat(sha1_pack_name(sha1), &st))
2283 return 0;
2284 return 1;
2285}
2286
Junio C Hamano106d7102006-09-06 02:12:09 -07002287int has_sha1_pack(const unsigned char *sha1, const char **ignore_packed)
Linus Torvaldsdade09c2005-07-03 13:06:36 -07002288{
2289 struct pack_entry e;
Junio C Hamano106d7102006-09-06 02:12:09 -07002290 return find_pack_entry(sha1, &e, ignore_packed);
Linus Torvaldsdade09c2005-07-03 13:06:36 -07002291}
2292
Daniel Barkalow8237b182005-04-23 18:47:23 -07002293int has_sha1_file(const unsigned char *sha1)
2294{
Daniel Barkalow8237b182005-04-23 18:47:23 -07002295 struct stat st;
Junio C Hamano1f688552005-06-27 03:35:33 -07002296 struct pack_entry e;
2297
Junio C Hamano106d7102006-09-06 02:12:09 -07002298 if (find_pack_entry(sha1, &e, NULL))
Junio C Hamano1f688552005-06-27 03:35:33 -07002299 return 1;
Junio C Hamanoab90ea52005-07-11 00:00:55 -07002300 return find_sha1_file(sha1, &st) ? 1 : 0;
Daniel Barkalow8237b182005-04-23 18:47:23 -07002301}
Junio C Hamano74400e72005-05-01 23:45:49 -07002302
Björn Engelmanne7332f92006-05-23 20:19:04 +02002303int index_pipe(unsigned char *sha1, int fd, const char *type, int write_object)
2304{
Pierre Habouzitfd17f5b2007-09-10 12:35:09 +02002305 struct strbuf buf;
Björn Engelmanne7332f92006-05-23 20:19:04 +02002306 int ret;
Björn Engelmanne7332f92006-05-23 20:19:04 +02002307
Pierre Habouzitfd17f5b2007-09-10 12:35:09 +02002308 strbuf_init(&buf, 0);
2309 if (strbuf_read(&buf, fd, 4096) < 0) {
2310 strbuf_release(&buf);
Daniel Barkalow024510c2005-12-10 17:25:24 -05002311 return -1;
2312 }
Björn Engelmanne7332f92006-05-23 20:19:04 +02002313
Daniel Barkalow024510c2005-12-10 17:25:24 -05002314 if (!type)
Peter Eriksen8e440252006-04-02 14:44:09 +02002315 type = blob_type;
Daniel Barkalow024510c2005-12-10 17:25:24 -05002316 if (write_object)
Pierre Habouzitfd17f5b2007-09-10 12:35:09 +02002317 ret = write_sha1_file(buf.buf, buf.len, type, sha1);
Rene Scharfeabdc3fc2006-10-14 12:45:36 +02002318 else
Pierre Habouzitfd17f5b2007-09-10 12:35:09 +02002319 ret = hash_sha1_file(buf.buf, buf.len, type, sha1);
2320 strbuf_release(&buf);
2321
Daniel Barkalow024510c2005-12-10 17:25:24 -05002322 return ret;
2323}
2324
Junio C Hamanoedaec3f2007-02-28 11:45:56 -08002325int index_fd(unsigned char *sha1, int fd, struct stat *st, int write_object,
Junio C Hamano53bca912007-02-28 11:52:04 -08002326 enum object_type type, const char *path)
Junio C Hamano74400e72005-05-01 23:45:49 -07002327{
Shawn O. Pearcedc49cd72007-03-06 20:44:37 -05002328 size_t size = xsize_t(st->st_size);
Shawn O. Pearce3a556022007-03-06 20:44:17 -05002329 void *buf = NULL;
Linus Torvalds6c510be2007-02-13 11:07:23 -08002330 int ret, re_allocated = 0;
Junio C Hamano74400e72005-05-01 23:45:49 -07002331
Junio C Hamano74400e72005-05-01 23:45:49 -07002332 if (size)
Shawn O. Pearcec4712e42006-12-24 00:47:23 -05002333 buf = xmmap(NULL, size, PROT_READ, MAP_PRIVATE, fd, 0);
Junio C Hamano74400e72005-05-01 23:45:49 -07002334 close(fd);
Junio C Hamano74400e72005-05-01 23:45:49 -07002335
Bryan Larsen7672db22005-07-08 16:51:55 -07002336 if (!type)
Junio C Hamanoedaec3f2007-02-28 11:45:56 -08002337 type = OBJ_BLOB;
Linus Torvalds6c510be2007-02-13 11:07:23 -08002338
2339 /*
2340 * Convert blobs to git internal format
2341 */
Junio C Hamanod0d8e142007-02-28 11:57:39 -08002342 if ((type == OBJ_BLOB) && S_ISREG(st->st_mode)) {
Pierre Habouzit5ecd2932007-09-16 15:51:04 +02002343 struct strbuf nbuf;
2344 strbuf_init(&nbuf, 0);
2345 if (convert_to_git(path, buf, size, &nbuf)) {
Alex Riesenac78e542007-04-19 02:05:03 +02002346 munmap(buf, size);
Pierre Habouzitb315c5c2007-09-27 12:58:23 +02002347 buf = strbuf_detach(&nbuf, &size);
Linus Torvalds6c510be2007-02-13 11:07:23 -08002348 re_allocated = 1;
2349 }
2350 }
2351
Bryan Larsen7672db22005-07-08 16:51:55 -07002352 if (write_object)
Junio C Hamanoedaec3f2007-02-28 11:45:56 -08002353 ret = write_sha1_file(buf, size, typename(type), sha1);
Rene Scharfeabdc3fc2006-10-14 12:45:36 +02002354 else
Junio C Hamanoedaec3f2007-02-28 11:45:56 -08002355 ret = hash_sha1_file(buf, size, typename(type), sha1);
Linus Torvalds6c510be2007-02-13 11:07:23 -08002356 if (re_allocated) {
2357 free(buf);
2358 return ret;
2359 }
Linus Torvaldsaac17942005-05-03 11:46:16 -07002360 if (size)
2361 munmap(buf, size);
2362 return ret;
Junio C Hamano74400e72005-05-01 23:45:49 -07002363}
Junio C Hamanoec1fcc12005-10-07 03:42:00 -07002364
2365int index_path(unsigned char *sha1, const char *path, struct stat *st, int write_object)
2366{
2367 int fd;
2368 char *target;
Shawn O. Pearcedc49cd72007-03-06 20:44:37 -05002369 size_t len;
Junio C Hamanoec1fcc12005-10-07 03:42:00 -07002370
2371 switch (st->st_mode & S_IFMT) {
2372 case S_IFREG:
2373 fd = open(path, O_RDONLY);
2374 if (fd < 0)
2375 return error("open(\"%s\"): %s", path,
2376 strerror(errno));
Junio C Hamano53bca912007-02-28 11:52:04 -08002377 if (index_fd(sha1, fd, st, write_object, OBJ_BLOB, path) < 0)
Junio C Hamanoec1fcc12005-10-07 03:42:00 -07002378 return error("%s: failed to insert into database",
2379 path);
2380 break;
2381 case S_IFLNK:
Shawn O. Pearcedc49cd72007-03-06 20:44:37 -05002382 len = xsize_t(st->st_size);
2383 target = xmalloc(len + 1);
2384 if (readlink(path, target, len + 1) != st->st_size) {
Junio C Hamanoec1fcc12005-10-07 03:42:00 -07002385 char *errstr = strerror(errno);
2386 free(target);
2387 return error("readlink(\"%s\"): %s", path,
2388 errstr);
2389 }
Rene Scharfeabdc3fc2006-10-14 12:45:36 +02002390 if (!write_object)
Shawn O. Pearcedc49cd72007-03-06 20:44:37 -05002391 hash_sha1_file(target, len, blob_type, sha1);
2392 else if (write_sha1_file(target, len, blob_type, sha1))
Junio C Hamanoec1fcc12005-10-07 03:42:00 -07002393 return error("%s: failed to insert into database",
2394 path);
2395 free(target);
2396 break;
Linus Torvaldsf35a6d32007-04-09 21:20:29 -07002397 case S_IFDIR:
2398 return resolve_gitlink_ref(path, "HEAD", sha1);
Junio C Hamanoec1fcc12005-10-07 03:42:00 -07002399 default:
2400 return error("%s: unsupported file type", path);
2401 }
2402 return 0;
2403}
Junio C Hamanoa69e5422007-01-22 21:55:18 -08002404
2405int read_pack_header(int fd, struct pack_header *header)
2406{
2407 char *c = (char*)header;
2408 ssize_t remaining = sizeof(struct pack_header);
2409 do {
2410 ssize_t r = xread(fd, c, remaining);
2411 if (r <= 0)
2412 /* "eof before pack header was fully read" */
2413 return PH_ERROR_EOF;
2414 remaining -= r;
2415 c += r;
2416 } while (remaining > 0);
2417 if (header->hdr_signature != htonl(PACK_SIGNATURE))
2418 /* "protocol error (pack signature mismatch detected)" */
2419 return PH_ERROR_PACK_SIGNATURE;
2420 if (!pack_version_ok(header->hdr_version))
2421 /* "protocol error (pack version unsupported)" */
2422 return PH_ERROR_PROTOCOL;
2423 return 0;
2424}