]> git.ipfire.org Git - thirdparty/git.git/blame - sha1_file.c
Many fixes for most operations in Eclipse.
[thirdparty/git.git] / sha1_file.c
CommitLineData
0fcfd160
LT
1/*
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 */
0fcfd160 9#include "cache.h"
1f688557 10#include "delta.h"
a733cb60 11#include "pack.h"
8e440259
PE
12#include "blob.h"
13#include "commit.h"
14#include "tag.h"
15#include "tree.h"
0fcfd160 16
144bde78
LT
17#ifndef O_NOATIME
18#if defined(__linux__) && (defined(__i386__) || defined(__PPC__))
19#define O_NOATIME 01000000
20#else
21#define O_NOATIME 0
22#endif
23#endif
24
88cd621d
JH
25const unsigned char null_sha1[20] = { 0, };
26
144bde78
LT
27static unsigned int sha1_file_open_flag = O_NOATIME;
28
0fcfd160
LT
29static unsigned hexval(char c)
30{
31 if (c >= '0' && c <= '9')
32 return c - '0';
33 if (c >= 'a' && c <= 'f')
34 return c - 'a' + 10;
35 if (c >= 'A' && c <= 'F')
36 return c - 'A' + 10;
37 return ~0;
38}
39
40int get_sha1_hex(const char *hex, unsigned char *sha1)
41{
42 int i;
43 for (i = 0; i < 20; i++) {
44 unsigned int val = (hexval(hex[0]) << 4) | hexval(hex[1]);
45 if (val & ~0xff)
46 return -1;
47 *sha1++ = val;
48 hex += 2;
49 }
50 return 0;
51}
52
457f06d6
JS
53int adjust_shared_perm(const char *path)
54{
55 struct stat st;
56 int mode;
57
58 if (!shared_repository)
59 return 0;
60 if (lstat(path, &st) < 0)
61 return -1;
62 mode = st.st_mode;
63 if (mode & S_IRUSR)
64 mode |= S_IRGRP;
65 if (mode & S_IWUSR)
66 mode |= S_IWGRP;
67 if (mode & S_IXUSR)
68 mode |= S_IXGRP;
69 if (S_ISDIR(mode))
70 mode |= S_ISGID;
71 if (chmod(path, mode) < 0)
72 return -2;
73 return 0;
74}
75
b2cb9425
JH
76int safe_create_leading_directories(char *path)
77{
78 char *pos = path;
67d42212
JR
79 struct stat st;
80
67ffdf4c
JS
81 if (*pos == '/')
82 pos++;
b2cb9425
JH
83
84 while (pos) {
85 pos = strchr(pos, '/');
86 if (!pos)
87 break;
88 *pos = 0;
67d42212
JR
89 if (!stat(path, &st)) {
90 /* path exists */
91 if (!S_ISDIR(st.st_mode)) {
b2cb9425 92 *pos = '/';
67d42212 93 return -3;
b2cb9425 94 }
457f06d6 95 }
67d42212
JR
96 else if (mkdir(path, 0777)) {
97 *pos = '/';
98 return -1;
99 }
457f06d6
JS
100 else if (adjust_shared_perm(path)) {
101 *pos = '/';
102 return -2;
103 }
b2cb9425
JH
104 *pos++ = '/';
105 }
106 return 0;
107}
723c31fe 108
0fcfd160
LT
109char * sha1_to_hex(const unsigned char *sha1)
110{
dcb3450f
LT
111 static int bufno;
112 static char hexbuffer[4][50];
0fcfd160 113 static const char hex[] = "0123456789abcdef";
dcb3450f 114 char *buffer = hexbuffer[3 & ++bufno], *buf = buffer;
0fcfd160
LT
115 int i;
116
117 for (i = 0; i < 20; i++) {
118 unsigned int val = *sha1++;
119 *buf++ = hex[val >> 4];
120 *buf++ = hex[val & 0xf];
121 }
1e80e044
JS
122 *buf = '\0';
123
0fcfd160
LT
124 return buffer;
125}
126
ace1534d
JH
127static void fill_sha1_path(char *pathbuf, const unsigned char *sha1)
128{
129 int i;
130 for (i = 0; i < 20; i++) {
131 static char hex[] = "0123456789abcdef";
132 unsigned int val = sha1[i];
133 char *pos = pathbuf + i*2 + (i > 0);
134 *pos++ = hex[val >> 4];
135 *pos = hex[val & 0xf];
136 }
137}
138
0fcfd160
LT
139/*
140 * NOTE! This returns a statically allocated buffer, so you have to be
141 * careful about using it. Do a "strdup()" if you need to save the
142 * filename.
ace1534d
JH
143 *
144 * Also note that this returns the location for creating. Reading
145 * SHA1 file can happen from any alternate directory listed in the
d19938ab 146 * DB_ENVIRONMENT environment variable if it is not found in
ace1534d 147 * the primary object database.
0fcfd160
LT
148 */
149char *sha1_file_name(const unsigned char *sha1)
150{
0fcfd160
LT
151 static char *name, *base;
152
153 if (!base) {
d19938ab 154 const char *sha1_file_directory = get_object_directory();
0fcfd160 155 int len = strlen(sha1_file_directory);
812666c8 156 base = xmalloc(len + 60);
0fcfd160
LT
157 memcpy(base, sha1_file_directory, len);
158 memset(base+len, 0, 60);
159 base[len] = '/';
160 base[len+3] = '/';
161 name = base + len + 1;
162 }
ace1534d 163 fill_sha1_path(name, sha1);
0fcfd160
LT
164 return base;
165}
166
bf592c50
DB
167char *sha1_pack_name(const unsigned char *sha1)
168{
169 static const char hex[] = "0123456789abcdef";
170 static char *name, *base, *buf;
171 int i;
172
173 if (!base) {
174 const char *sha1_file_directory = get_object_directory();
175 int len = strlen(sha1_file_directory);
176 base = xmalloc(len + 60);
177 sprintf(base, "%s/pack/pack-1234567890123456789012345678901234567890.pack", sha1_file_directory);
178 name = base + len + 11;
179 }
180
181 buf = name;
182
183 for (i = 0; i < 20; i++) {
184 unsigned int val = *sha1++;
185 *buf++ = hex[val >> 4];
186 *buf++ = hex[val & 0xf];
187 }
188
189 return base;
190}
191
192char *sha1_pack_index_name(const unsigned char *sha1)
193{
194 static const char hex[] = "0123456789abcdef";
195 static char *name, *base, *buf;
196 int i;
197
198 if (!base) {
199 const char *sha1_file_directory = get_object_directory();
200 int len = strlen(sha1_file_directory);
201 base = xmalloc(len + 60);
202 sprintf(base, "%s/pack/pack-1234567890123456789012345678901234567890.idx", sha1_file_directory);
203 name = base + len + 11;
204 }
205
206 buf = name;
207
208 for (i = 0; i < 20; i++) {
209 unsigned int val = *sha1++;
210 *buf++ = hex[val >> 4];
211 *buf++ = hex[val & 0xf];
212 }
213
214 return base;
215}
216
d5a63b99
JH
217struct alternate_object_database *alt_odb_list;
218static struct alternate_object_database **alt_odb_tail;
ace1534d 219
ddd5d056
JH
220/*
221 * Prepare alternate object database registry.
d5a63b99
JH
222 *
223 * The variable alt_odb_list points at the list of struct
224 * alternate_object_database. The elements on this list come from
225 * non-empty elements from colon separated ALTERNATE_DB_ENVIRONMENT
226 * environment variable, and $GIT_OBJECT_DIRECTORY/info/alternates,
1494e038
JH
227 * whose contents is similar to that environment variable but can be
228 * LF separated. Its base points at a statically allocated buffer that
d5a63b99
JH
229 * contains "/the/directory/corresponding/to/.git/objects/...", while
230 * its name points just after the slash at the end of ".git/objects/"
231 * in the example above, and has enough space to hold 40-byte hex
232 * SHA1, an extra slash for the first level indirection, and the
233 * terminating NUL.
ddd5d056 234 */
ccfd3e99
JH
235static void link_alt_odb_entries(const char *alt, const char *ep, int sep,
236 const char *relative_base)
ace1534d 237{
ace1534d 238 const char *cp, *last;
d5a63b99 239 struct alternate_object_database *ent;
1494e038 240 const char *objdir = get_object_directory();
ccfd3e99 241 int base_len = -1;
d5a63b99
JH
242
243 last = alt;
9577e7e3
JH
244 while (last < ep) {
245 cp = last;
246 if (cp < ep && *cp == '#') {
247 while (cp < ep && *cp != sep)
248 cp++;
249 last = cp + 1;
250 continue;
251 }
252 for ( ; cp < ep && *cp != sep; cp++)
d5a63b99
JH
253 ;
254 if (last != cp) {
26125f6b 255 struct stat st;
1494e038 256 struct alternate_object_database *alt;
d5a63b99
JH
257 /* 43 = 40-byte + 2 '/' + terminating NUL */
258 int pfxlen = cp - last;
259 int entlen = pfxlen + 43;
260
ccfd3e99
JH
261 if (*last != '/' && relative_base) {
262 /* Relative alt-odb */
263 if (base_len < 0)
264 base_len = strlen(relative_base) + 1;
265 entlen += base_len;
266 pfxlen += base_len;
267 }
d5a63b99 268 ent = xmalloc(sizeof(*ent) + entlen);
1494e038 269
ccfd3e99
JH
270 if (*last != '/' && relative_base) {
271 memcpy(ent->base, relative_base, base_len - 1);
272 ent->base[base_len - 1] = '/';
273 memcpy(ent->base + base_len,
274 last, cp - last);
275 }
276 else
277 memcpy(ent->base, last, pfxlen);
26125f6b 278
d5a63b99 279 ent->name = ent->base + pfxlen + 1;
26125f6b
JH
280 ent->base[pfxlen + 3] = '/';
281 ent->base[pfxlen] = ent->base[entlen-1] = 0;
282
283 /* Detect cases where alternate disappeared */
284 if (stat(ent->base, &st) || !S_ISDIR(st.st_mode)) {
285 error("object directory %s does not exist; "
286 "check .git/objects/info/alternates.",
287 ent->base);
288 goto bad;
289 }
290 ent->base[pfxlen] = '/';
1494e038
JH
291
292 /* Prevent the common mistake of listing the same
293 * thing twice, or object directory itself.
294 */
295 for (alt = alt_odb_list; alt; alt = alt->next)
296 if (!memcmp(ent->base, alt->base, pfxlen))
297 goto bad;
298 if (!memcmp(ent->base, objdir, pfxlen)) {
299 bad:
300 free(ent);
301 }
302 else {
303 *alt_odb_tail = ent;
304 alt_odb_tail = &(ent->next);
305 ent->next = NULL;
306 }
d5a63b99 307 }
9577e7e3 308 while (cp < ep && *cp == sep)
d5a63b99
JH
309 cp++;
310 last = cp;
9577e7e3 311 }
d5a63b99
JH
312}
313
314void prepare_alt_odb(void)
315{
316 char path[PATH_MAX];
9577e7e3 317 char *map;
d5a63b99
JH
318 int fd;
319 struct stat st;
c7c81b3a
JR
320 char *alt;
321
a9ab586a 322 alt = getenv(ALTERNATE_DB_ENVIRONMENT);
c7c81b3a 323 if (!alt) alt = "";
ace1534d 324
d5a63b99
JH
325 if (alt_odb_tail)
326 return;
327 alt_odb_tail = &alt_odb_list;
ccfd3e99 328 link_alt_odb_entries(alt, alt + strlen(alt), ':', NULL);
d5a63b99 329
ccfd3e99 330 sprintf(path, "%s/info/alternates", get_object_directory());
d5a63b99
JH
331 fd = open(path, O_RDONLY);
332 if (fd < 0)
333 return;
334 if (fstat(fd, &st) || (st.st_size == 0)) {
335 close(fd);
9a217f2a 336 return;
ace1534d 337 }
d5a63b99
JH
338 map = mmap(NULL, st.st_size, PROT_READ, MAP_PRIVATE, fd, 0);
339 close(fd);
340 if (map == MAP_FAILED)
341 return;
342
ccfd3e99
JH
343 link_alt_odb_entries(map, map + st.st_size, '\n',
344 get_object_directory());
d5a63b99 345 munmap(map, st.st_size);
ace1534d
JH
346}
347
348static char *find_sha1_file(const unsigned char *sha1, struct stat *st)
349{
ace1534d 350 char *name = sha1_file_name(sha1);
d5a63b99 351 struct alternate_object_database *alt;
ace1534d
JH
352
353 if (!stat(name, st))
354 return name;
9a217f2a 355 prepare_alt_odb();
d5a63b99
JH
356 for (alt = alt_odb_list; alt; alt = alt->next) {
357 name = alt->name;
ace1534d 358 fill_sha1_path(name, sha1);
d5a63b99
JH
359 if (!stat(alt->base, st))
360 return alt->base;
ace1534d
JH
361 }
362 return NULL;
363}
364
1f688557
JH
365#define PACK_MAX_SZ (1<<26)
366static int pack_used_ctr;
367static unsigned long pack_mapped;
9a217f2a 368struct packed_git *packed_git;
1f688557 369
1f688557
JH
370static int check_packed_git_idx(const char *path, unsigned long *idx_size_,
371 void **idx_map_)
372{
373 void *idx_map;
374 unsigned int *index;
375 unsigned long idx_size;
376 int nr, i;
e93ec6f9 377 int fd = open(path, O_RDONLY);
1f688557
JH
378 struct stat st;
379 if (fd < 0)
380 return -1;
381 if (fstat(fd, &st)) {
382 close(fd);
383 return -1;
384 }
385 idx_size = st.st_size;
386 idx_map = mmap(NULL, idx_size, PROT_READ, MAP_PRIVATE, fd, 0);
387 close(fd);
388 if (idx_map == MAP_FAILED)
389 return -1;
390
391 index = idx_map;
4d235c80
LT
392 *idx_map_ = idx_map;
393 *idx_size_ = idx_size;
1f688557
JH
394
395 /* check index map */
f9253394 396 if (idx_size < 4*256 + 20 + 20)
1f688557
JH
397 return error("index file too small");
398 nr = 0;
399 for (i = 0; i < 256; i++) {
400 unsigned int n = ntohl(index[i]);
401 if (n < nr)
402 return error("non-monotonic index");
403 nr = n;
404 }
405
406 /*
407 * Total size:
408 * - 256 index entries 4 bytes each
409 * - 24-byte entries * nr (20-byte sha1 + 4-byte offset)
410 * - 20-byte SHA1 of the packfile
411 * - 20-byte SHA1 file checksum
412 */
413 if (idx_size != 4*256 + nr * 24 + 20 + 20)
414 return error("wrong index file size");
415
1f688557
JH
416 return 0;
417}
418
f9253394 419static int unuse_one_packed_git(void)
1f688557 420{
f9253394
JH
421 struct packed_git *p, *lru = NULL;
422
423 for (p = packed_git; p; p = p->next) {
424 if (p->pack_use_cnt || !p->pack_base)
425 continue;
426 if (!lru || p->pack_last_used < lru->pack_last_used)
427 lru = p;
428 }
429 if (!lru)
430 return 0;
431 munmap(lru->pack_base, lru->pack_size);
432 lru->pack_base = NULL;
433 return 1;
434}
435
436void unuse_packed_git(struct packed_git *p)
437{
438 p->pack_use_cnt--;
1f688557
JH
439}
440
f9253394 441int use_packed_git(struct packed_git *p)
1f688557 442{
bf592c50
DB
443 if (!p->pack_size) {
444 struct stat st;
445 // We created the struct before we had the pack
446 stat(p->pack_name, &st);
447 if (!S_ISREG(st.st_mode))
448 die("packfile %s not a regular file", p->pack_name);
449 p->pack_size = st.st_size;
450 }
1f688557
JH
451 if (!p->pack_base) {
452 int fd;
453 struct stat st;
454 void *map;
455
456 pack_mapped += p->pack_size;
f9253394
JH
457 while (PACK_MAX_SZ < pack_mapped && unuse_one_packed_git())
458 ; /* nothing */
1f688557
JH
459 fd = open(p->pack_name, O_RDONLY);
460 if (fd < 0)
f9253394 461 die("packfile %s cannot be opened", p->pack_name);
1f688557
JH
462 if (fstat(fd, &st)) {
463 close(fd);
f9253394 464 die("packfile %s cannot be opened", p->pack_name);
1f688557
JH
465 }
466 if (st.st_size != p->pack_size)
f9253394 467 die("packfile %s size mismatch.", p->pack_name);
1f688557
JH
468 map = mmap(NULL, p->pack_size, PROT_READ, MAP_PRIVATE, fd, 0);
469 close(fd);
470 if (map == MAP_FAILED)
f9253394 471 die("packfile %s cannot be mapped.", p->pack_name);
1f688557 472 p->pack_base = map;
f9253394
JH
473
474 /* Check if the pack file matches with the index file.
475 * this is cheap.
476 */
477 if (memcmp((char*)(p->index_base) + p->index_size - 40,
bf592c50
DB
478 p->pack_base + p->pack_size - 20, 20)) {
479
f9253394 480 die("packfile %s does not match index.", p->pack_name);
bf592c50 481 }
1f688557
JH
482 }
483 p->pack_last_used = pack_used_ctr++;
f9253394 484 p->pack_use_cnt++;
1f688557
JH
485 return 0;
486}
487
9d835df2 488struct packed_git *add_packed_git(char *path, int path_len, int local)
1f688557
JH
489{
490 struct stat st;
491 struct packed_git *p;
492 unsigned long idx_size;
493 void *idx_map;
c0bbbb1b 494 unsigned char sha1[20];
1f688557
JH
495
496 if (check_packed_git_idx(path, &idx_size, &idx_map))
497 return NULL;
498
499 /* do we have a corresponding .pack file? */
500 strcpy(path + path_len - 4, ".pack");
501 if (stat(path, &st) || !S_ISREG(st.st_mode)) {
502 munmap(idx_map, idx_size);
503 return NULL;
504 }
505 /* ok, it looks sane as far as we can check without
506 * actually mapping the pack file.
507 */
508 p = xmalloc(sizeof(*p) + path_len + 2);
509 strcpy(p->pack_name, path);
510 p->index_size = idx_size;
511 p->pack_size = st.st_size;
512 p->index_base = idx_map;
513 p->next = NULL;
d85a4fee 514 p->pack_base = NULL;
1f688557 515 p->pack_last_used = 0;
f9253394 516 p->pack_use_cnt = 0;
9d835df2 517 p->pack_local = local;
f4a11066 518 if ((path_len > 44) && !get_sha1_hex(path + path_len - 44, sha1))
c283ab21 519 memcpy(p->sha1, sha1, 20);
1f688557
JH
520 return p;
521}
522
bf592c50 523struct packed_git *parse_pack_index(unsigned char *sha1)
c508df5e
DB
524{
525 char *path = sha1_pack_index_name(sha1);
526 return parse_pack_index_file(sha1, path);
527}
528
2ab141a2 529struct packed_git *parse_pack_index_file(const unsigned char *sha1, char *idx_path)
bf592c50
DB
530{
531 struct packed_git *p;
532 unsigned long idx_size;
533 void *idx_map;
c508df5e 534 char *path;
bf592c50 535
c508df5e 536 if (check_packed_git_idx(idx_path, &idx_size, &idx_map))
bf592c50
DB
537 return NULL;
538
539 path = sha1_pack_name(sha1);
540
541 p = xmalloc(sizeof(*p) + strlen(path) + 2);
542 strcpy(p->pack_name, path);
543 p->index_size = idx_size;
544 p->pack_size = 0;
545 p->index_base = idx_map;
546 p->next = NULL;
547 p->pack_base = NULL;
548 p->pack_last_used = 0;
549 p->pack_use_cnt = 0;
550 memcpy(p->sha1, sha1, 20);
551 return p;
552}
553
554void install_packed_git(struct packed_git *pack)
555{
556 pack->next = packed_git;
557 packed_git = pack;
558}
559
9d835df2 560static void prepare_packed_git_one(char *objdir, int local)
1f688557
JH
561{
562 char path[PATH_MAX];
563 int len;
564 DIR *dir;
565 struct dirent *de;
566
567 sprintf(path, "%s/pack", objdir);
568 len = strlen(path);
569 dir = opendir(path);
b5b16990 570 if (!dir) {
26125f6b 571 if (errno != ENOENT)
bd2afde8 572 error("unable to open object pack directory: %s: %s",
26125f6b 573 path, strerror(errno));
1f688557 574 return;
b5b16990 575 }
1f688557
JH
576 path[len++] = '/';
577 while ((de = readdir(dir)) != NULL) {
578 int namelen = strlen(de->d_name);
579 struct packed_git *p;
580
581 if (strcmp(de->d_name + namelen - 4, ".idx"))
582 continue;
583
584 /* we have .idx. Is it a file we can map? */
585 strcpy(path + len, de->d_name);
9d835df2 586 p = add_packed_git(path, len + namelen, local);
1f688557
JH
587 if (!p)
588 continue;
589 p->next = packed_git;
590 packed_git = p;
591 }
5b35bcd5 592 closedir(dir);
1f688557
JH
593}
594
9a217f2a 595void prepare_packed_git(void)
1f688557 596{
1f688557 597 static int run_once = 0;
d5a63b99 598 struct alternate_object_database *alt;
1f688557 599
d5a63b99 600 if (run_once)
1f688557 601 return;
9d835df2 602 prepare_packed_git_one(get_object_directory(), 1);
9a217f2a 603 prepare_alt_odb();
d5a63b99 604 for (alt = alt_odb_list; alt; alt = alt->next) {
1494e038 605 alt->name[-1] = 0;
9d835df2 606 prepare_packed_git_one(alt->base, 0);
1494e038 607 alt->name[-1] = '/';
1f688557 608 }
d5a63b99 609 run_once = 1;
1f688557
JH
610}
611
5d6ccf5c 612int check_sha1_signature(const unsigned char *sha1, void *map, unsigned long size, const char *type)
0fcfd160 613{
d98b46f8 614 char header[100];
0fcfd160
LT
615 unsigned char real_sha1[20];
616 SHA_CTX c;
617
618 SHA1_Init(&c);
d98b46f8 619 SHA1_Update(&c, header, 1+sprintf(header, "%s %lu", type, size));
0fcfd160
LT
620 SHA1_Update(&c, map, size);
621 SHA1_Final(real_sha1, &c);
622 return memcmp(sha1, real_sha1, 20) ? -1 : 0;
623}
624
1f688557 625static void *map_sha1_file_internal(const unsigned char *sha1,
d5f1befc 626 unsigned long *size)
0fcfd160 627{
0fcfd160
LT
628 struct stat st;
629 void *map;
144bde78 630 int fd;
ace1534d
JH
631 char *filename = find_sha1_file(sha1, &st);
632
633 if (!filename) {
ace1534d
JH
634 return NULL;
635 }
0fcfd160 636
144bde78 637 fd = open(filename, O_RDONLY | sha1_file_open_flag);
0fcfd160 638 if (fd < 0) {
144bde78
LT
639 /* See if it works without O_NOATIME */
640 switch (sha1_file_open_flag) {
641 default:
642 fd = open(filename, O_RDONLY);
643 if (fd >= 0)
644 break;
645 /* Fallthrough */
646 case 0:
144bde78
LT
647 return NULL;
648 }
649
1f688557
JH
650 /* If it failed once, it will probably fail again.
651 * Stop using O_NOATIME
652 */
144bde78 653 sha1_file_open_flag = 0;
0fcfd160 654 }
0fcfd160
LT
655 map = mmap(NULL, st.st_size, PROT_READ, MAP_PRIVATE, fd, 0);
656 close(fd);
e35f9824 657 if (map == MAP_FAILED)
0fcfd160
LT
658 return NULL;
659 *size = st.st_size;
660 return map;
661}
662
c4483576
LT
663int unpack_sha1_header(z_stream *stream, void *map, unsigned long mapsize, void *buffer, unsigned long size)
664{
665 /* Get the data stream */
666 memset(stream, 0, sizeof(*stream));
667 stream->next_in = map;
668 stream->avail_in = mapsize;
669 stream->next_out = buffer;
670 stream->avail_out = size;
671
672 inflateInit(stream);
673 return inflate(stream, 0);
674}
675
6da4016a 676static void *unpack_sha1_rest(z_stream *stream, void *buffer, unsigned long size)
5180cacc
LT
677{
678 int bytes = strlen(buffer) + 1;
d565b341 679 unsigned char *buf = xmalloc(1+size);
5180cacc
LT
680
681 memcpy(buf, buffer + bytes, stream->total_out - bytes);
682 bytes = stream->total_out - bytes;
683 if (bytes < size) {
684 stream->next_out = buf + bytes;
685 stream->avail_out = size - bytes;
686 while (inflate(stream, Z_FINISH) == Z_OK)
687 /* nothing */;
688 }
689 buf[size] = 0;
690 inflateEnd(stream);
691 return buf;
692}
693
694/*
695 * We used to just use "sscanf()", but that's actually way
696 * too permissive for what we want to check. So do an anal
697 * object header parse by hand.
698 */
699int parse_sha1_header(char *hdr, char *type, unsigned long *sizep)
700{
701 int i;
702 unsigned long size;
703
704 /*
705 * The type can be at most ten bytes (including the
706 * terminating '\0' that we add), and is followed by
707 * a space.
708 */
709 i = 10;
710 for (;;) {
711 char c = *hdr++;
712 if (c == ' ')
713 break;
714 if (!--i)
715 return -1;
716 *type++ = c;
717 }
718 *type = 0;
719
720 /*
721 * The length must follow immediately, and be in canonical
722 * decimal format (ie "010" is not valid).
723 */
724 size = *hdr++ - '0';
725 if (size > 9)
726 return -1;
727 if (size) {
728 for (;;) {
729 unsigned long c = *hdr - '0';
730 if (c > 9)
731 break;
732 hdr++;
733 size = size * 10 + c;
734 }
735 }
736 *sizep = size;
737
738 /*
739 * The length must be followed by a zero byte
740 */
741 return *hdr ? -1 : 0;
742}
743
0fcfd160
LT
744void * unpack_sha1_file(void *map, unsigned long mapsize, char *type, unsigned long *size)
745{
5180cacc 746 int ret;
0fcfd160 747 z_stream stream;
5180cacc 748 char hdr[8192];
0fcfd160 749
5180cacc
LT
750 ret = unpack_sha1_header(&stream, map, mapsize, hdr, sizeof(hdr));
751 if (ret < Z_OK || parse_sha1_header(hdr, type, size) < 0)
0fcfd160
LT
752 return NULL;
753
5180cacc 754 return unpack_sha1_rest(&stream, hdr, *size);
0fcfd160
LT
755}
756
f3bf9224
JH
757/* forward declaration for a mutually recursive function */
758static int packed_object_info(struct pack_entry *entry,
759 char *type, unsigned long *sizep);
760
5db47c2b
JH
761static int packed_delta_info(unsigned char *base_sha1,
762 unsigned long delta_size,
763 unsigned long left,
764 char *type,
f3bf9224
JH
765 unsigned long *sizep,
766 struct packed_git *p)
5db47c2b 767{
f3bf9224
JH
768 struct pack_entry base_ent;
769
5db47c2b
JH
770 if (left < 20)
771 die("truncated pack file");
5db47c2b 772
f3bf9224
JH
773 /* The base entry _must_ be in the same pack */
774 if (!find_pack_entry_one(base_sha1, &base_ent, p))
775 die("failed to find delta-pack base object %s",
776 sha1_to_hex(base_sha1));
777
c62266f3
JH
778 /* We choose to only get the type of the base object and
779 * ignore potentially corrupt pack file that expects the delta
780 * based on a base with a wrong size. This saves tons of
781 * inflate() calls.
782 */
5db47c2b 783
f3bf9224 784 if (packed_object_info(&base_ent, type, NULL))
c62266f3 785 die("cannot get info for delta-pack base");
5db47c2b 786
c62266f3
JH
787 if (sizep) {
788 const unsigned char *data;
789 unsigned char delta_head[64];
790 unsigned long result_size;
791 z_stream stream;
792 int st;
793
794 memset(&stream, 0, sizeof(stream));
795
796 data = stream.next_in = base_sha1 + 20;
797 stream.avail_in = left - 20;
798 stream.next_out = delta_head;
799 stream.avail_out = sizeof(delta_head);
800
801 inflateInit(&stream);
802 st = inflate(&stream, Z_FINISH);
803 inflateEnd(&stream);
804 if ((st != Z_STREAM_END) &&
805 stream.total_out != sizeof(delta_head))
806 die("delta data unpack-initial failed");
807
808 /* Examine the initial part of the delta to figure out
809 * the result size.
810 */
811 data = delta_head;
8960844a
NP
812
813 /* ignore base size */
814 get_delta_hdr_size(&data, delta_head+sizeof(delta_head));
5db47c2b 815
c62266f3 816 /* Read the result size */
8960844a 817 result_size = get_delta_hdr_size(&data, delta_head+sizeof(delta_head));
c62266f3
JH
818 *sizep = result_size;
819 }
5db47c2b
JH
820 return 0;
821}
822
a733cb60
LT
823static unsigned long unpack_object_header(struct packed_git *p, unsigned long offset,
824 enum object_type *type, unsigned long *sizep)
825{
01247d87 826 unsigned shift;
a733cb60
LT
827 unsigned char *pack, c;
828 unsigned long size;
829
830 if (offset >= p->pack_size)
831 die("object offset outside of pack file");
832
833 pack = p->pack_base + offset;
834 c = *pack++;
835 offset++;
836 *type = (c >> 4) & 7;
837 size = c & 15;
01247d87 838 shift = 4;
a733cb60
LT
839 while (c & 0x80) {
840 if (offset >= p->pack_size)
841 die("object offset outside of pack file");
842 c = *pack++;
843 offset++;
01247d87
LT
844 size += (c & 0x7f) << shift;
845 shift += 7;
a733cb60
LT
846 }
847 *sizep = size;
848 return offset;
849}
850
a49dd05f
JH
851int check_reuse_pack_delta(struct packed_git *p, unsigned long offset,
852 unsigned char *base, unsigned long *sizep,
853 enum object_type *kindp)
854{
855 unsigned long ptr;
856 int status = -1;
857
858 use_packed_git(p);
859 ptr = offset;
860 ptr = unpack_object_header(p, ptr, kindp, sizep);
861 if (*kindp != OBJ_DELTA)
862 goto done;
863 memcpy(base, p->pack_base + ptr, 20);
864 status = 0;
865 done:
866 unuse_packed_git(p);
867 return status;
868}
869
ad8c80a5
JH
870void packed_object_info_detail(struct pack_entry *e,
871 char *type,
872 unsigned long *size,
873 unsigned long *store_size,
f8f135c9 874 unsigned int *delta_chain_length,
ad8c80a5
JH
875 unsigned char *base_sha1)
876{
877 struct packed_git *p = e->p;
2855d580 878 unsigned long offset;
ad8c80a5
JH
879 unsigned char *pack;
880 enum object_type kind;
881
882 offset = unpack_object_header(p, e->offset, &kind, size);
883 pack = p->pack_base + offset;
ad8c80a5
JH
884 if (kind != OBJ_DELTA)
885 *delta_chain_length = 0;
886 else {
f8f135c9 887 unsigned int chain_length = 0;
2855d580
JH
888 if (p->pack_size <= offset + 20)
889 die("pack file %s records an incomplete delta base",
890 p->pack_name);
ad8c80a5
JH
891 memcpy(base_sha1, pack, 20);
892 do {
893 struct pack_entry base_ent;
894 unsigned long junk;
895
896 find_pack_entry_one(pack, &base_ent, p);
897 offset = unpack_object_header(p, base_ent.offset,
898 &kind, &junk);
899 pack = p->pack_base + offset;
900 chain_length++;
901 } while (kind == OBJ_DELTA);
902 *delta_chain_length = chain_length;
903 }
904 switch (kind) {
905 case OBJ_COMMIT:
8e440259 906 strcpy(type, commit_type);
ad8c80a5
JH
907 break;
908 case OBJ_TREE:
8e440259 909 strcpy(type, tree_type);
ad8c80a5
JH
910 break;
911 case OBJ_BLOB:
8e440259 912 strcpy(type, blob_type);
ad8c80a5
JH
913 break;
914 case OBJ_TAG:
8e440259 915 strcpy(type, tag_type);
ad8c80a5
JH
916 break;
917 default:
264b16b6
JH
918 die("corrupted pack file %s containing object of kind %d",
919 p->pack_name, kind);
ad8c80a5
JH
920 }
921 *store_size = 0; /* notyet */
922}
923
1f688557
JH
924static int packed_object_info(struct pack_entry *entry,
925 char *type, unsigned long *sizep)
926{
927 struct packed_git *p = entry->p;
928 unsigned long offset, size, left;
929 unsigned char *pack;
a733cb60 930 enum object_type kind;
f9253394 931 int retval;
5db47c2b
JH
932
933 if (use_packed_git(p))
934 die("cannot map packed file");
935
a733cb60 936 offset = unpack_object_header(p, entry->offset, &kind, &size);
1f688557 937 pack = p->pack_base + offset;
a733cb60
LT
938 left = p->pack_size - offset;
939
940 switch (kind) {
941 case OBJ_DELTA:
f3bf9224 942 retval = packed_delta_info(pack, size, left, type, sizep, p);
f9253394
JH
943 unuse_packed_git(p);
944 return retval;
a733cb60 945 case OBJ_COMMIT:
8e440259 946 strcpy(type, commit_type);
1f688557 947 break;
a733cb60 948 case OBJ_TREE:
8e440259 949 strcpy(type, tree_type);
1f688557 950 break;
a733cb60 951 case OBJ_BLOB:
8e440259 952 strcpy(type, blob_type);
1f688557 953 break;
a733cb60 954 case OBJ_TAG:
8e440259 955 strcpy(type, tag_type);
a69d0943 956 break;
1f688557 957 default:
264b16b6
JH
958 die("corrupted pack file %s containing object of kind %d",
959 p->pack_name, kind);
1f688557 960 }
c62266f3
JH
961 if (sizep)
962 *sizep = size;
f9253394 963 unuse_packed_git(p);
1f688557
JH
964 return 0;
965}
966
967/* forward declaration for a mutually recursive function */
968static void *unpack_entry(struct pack_entry *, char *, unsigned long *);
969
970static void *unpack_delta_entry(unsigned char *base_sha1,
971 unsigned long delta_size,
972 unsigned long left,
973 char *type,
f3bf9224
JH
974 unsigned long *sizep,
975 struct packed_git *p)
1f688557 976{
f3bf9224 977 struct pack_entry base_ent;
1f688557
JH
978 void *data, *delta_data, *result, *base;
979 unsigned long data_size, result_size, base_size;
980 z_stream stream;
981 int st;
982
983 if (left < 20)
984 die("truncated pack file");
67686d95
JH
985
986 /* The base entry _must_ be in the same pack */
987 if (!find_pack_entry_one(base_sha1, &base_ent, p))
988 die("failed to find delta-pack base object %s",
989 sha1_to_hex(base_sha1));
990 base = unpack_entry_gently(&base_ent, type, &base_size);
991 if (!base)
992 die("failed to read delta-pack base object %s",
993 sha1_to_hex(base_sha1));
994
1f688557
JH
995 data = base_sha1 + 20;
996 data_size = left - 20;
997 delta_data = xmalloc(delta_size);
998
999 memset(&stream, 0, sizeof(stream));
1000
1001 stream.next_in = data;
1002 stream.avail_in = data_size;
1003 stream.next_out = delta_data;
1004 stream.avail_out = delta_size;
1005
1006 inflateInit(&stream);
1007 st = inflate(&stream, Z_FINISH);
1008 inflateEnd(&stream);
1009 if ((st != Z_STREAM_END) || stream.total_out != delta_size)
1010 die("delta data unpack failed");
1011
1f688557
JH
1012 result = patch_delta(base, base_size,
1013 delta_data, delta_size,
1014 &result_size);
1015 if (!result)
1016 die("failed to apply delta");
1017 free(delta_data);
1018 free(base);
1019 *sizep = result_size;
1020 return result;
1021}
1022
1023static void *unpack_non_delta_entry(unsigned char *data,
1024 unsigned long size,
1025 unsigned long left)
1026{
1027 int st;
1028 z_stream stream;
4d235c80 1029 unsigned char *buffer;
1f688557
JH
1030
1031 buffer = xmalloc(size + 1);
1032 buffer[size] = 0;
1033 memset(&stream, 0, sizeof(stream));
1034 stream.next_in = data;
1035 stream.avail_in = left;
1036 stream.next_out = buffer;
1037 stream.avail_out = size;
1038
1039 inflateInit(&stream);
1040 st = inflate(&stream, Z_FINISH);
1041 inflateEnd(&stream);
1042 if ((st != Z_STREAM_END) || stream.total_out != size) {
1043 free(buffer);
1044 return NULL;
1045 }
1046
1047 return buffer;
1048}
1049
1050static void *unpack_entry(struct pack_entry *entry,
1051 char *type, unsigned long *sizep)
1052{
1053 struct packed_git *p = entry->p;
f9253394 1054 void *retval;
1f688557
JH
1055
1056 if (use_packed_git(p))
1057 die("cannot map packed file");
f3bf9224
JH
1058 retval = unpack_entry_gently(entry, type, sizep);
1059 unuse_packed_git(p);
1060 if (!retval)
264b16b6 1061 die("corrupted pack file %s", p->pack_name);
f3bf9224
JH
1062 return retval;
1063}
1064
1065/* The caller is responsible for use_packed_git()/unuse_packed_git() pair */
1066void *unpack_entry_gently(struct pack_entry *entry,
1067 char *type, unsigned long *sizep)
1068{
1069 struct packed_git *p = entry->p;
1070 unsigned long offset, size, left;
1071 unsigned char *pack;
1072 enum object_type kind;
1073 void *retval;
1f688557 1074
a733cb60 1075 offset = unpack_object_header(p, entry->offset, &kind, &size);
1f688557 1076 pack = p->pack_base + offset;
a733cb60
LT
1077 left = p->pack_size - offset;
1078 switch (kind) {
1079 case OBJ_DELTA:
f3bf9224 1080 retval = unpack_delta_entry(pack, size, left, type, sizep, p);
f9253394 1081 return retval;
a733cb60 1082 case OBJ_COMMIT:
8e440259 1083 strcpy(type, commit_type);
1f688557 1084 break;
a733cb60 1085 case OBJ_TREE:
8e440259 1086 strcpy(type, tree_type);
1f688557 1087 break;
a733cb60 1088 case OBJ_BLOB:
8e440259 1089 strcpy(type, blob_type);
1f688557 1090 break;
a733cb60 1091 case OBJ_TAG:
8e440259 1092 strcpy(type, tag_type);
a69d0943 1093 break;
1f688557 1094 default:
f3bf9224 1095 return NULL;
1f688557
JH
1096 }
1097 *sizep = size;
f9253394 1098 retval = unpack_non_delta_entry(pack, size, left);
f9253394 1099 return retval;
1f688557
JH
1100}
1101
9a217f2a
JH
1102int num_packed_objects(const struct packed_git *p)
1103{
f9253394 1104 /* See check_packed_git_idx() */
9a217f2a
JH
1105 return (p->index_size - 20 - 20 - 4*256) / 24;
1106}
1107
1108int nth_packed_object_sha1(const struct packed_git *p, int n,
1109 unsigned char* sha1)
1110{
1111 void *index = p->index_base + 256;
1112 if (n < 0 || num_packed_objects(p) <= n)
1113 return -1;
1114 memcpy(sha1, (index + 24 * n + 4), 20);
1115 return 0;
1116}
1117
f3bf9224
JH
1118int find_pack_entry_one(const unsigned char *sha1,
1119 struct pack_entry *e, struct packed_git *p)
1f688557 1120{
4d235c80 1121 unsigned int *level1_ofs = p->index_base;
1f688557
JH
1122 int hi = ntohl(level1_ofs[*sha1]);
1123 int lo = ((*sha1 == 0x0) ? 0 : ntohl(level1_ofs[*sha1 - 1]));
1124 void *index = p->index_base + 256;
1125
1126 do {
1127 int mi = (lo + hi) / 2;
1128 int cmp = memcmp(index + 24 * mi + 4, sha1, 20);
1129 if (!cmp) {
1130 e->offset = ntohl(*((int*)(index + 24 * mi)));
1131 memcpy(e->sha1, sha1, 20);
1132 e->p = p;
1133 return 1;
1134 }
1135 if (cmp > 0)
1136 hi = mi;
1137 else
1138 lo = mi+1;
1139 } while (lo < hi);
1140 return 0;
1141}
1142
1143static int find_pack_entry(const unsigned char *sha1, struct pack_entry *e)
1144{
1145 struct packed_git *p;
1146 prepare_packed_git();
1147
1148 for (p = packed_git; p; p = p->next) {
f3bf9224 1149 if (find_pack_entry_one(sha1, e, p))
1f688557
JH
1150 return 1;
1151 }
1152 return 0;
1153}
1154
bf592c50
DB
1155struct packed_git *find_sha1_pack(const unsigned char *sha1,
1156 struct packed_git *packs)
1157{
1158 struct packed_git *p;
1159 struct pack_entry e;
1160
1161 for (p = packs; p; p = p->next) {
1162 if (find_pack_entry_one(sha1, &e, p))
1163 return p;
1164 }
1165 return NULL;
1166
1167}
1168
36e4d74a 1169int sha1_object_info(const unsigned char *sha1, char *type, unsigned long *sizep)
65c2e0c3 1170{
36e4d74a 1171 int status;
65c2e0c3
JH
1172 unsigned long mapsize, size;
1173 void *map;
1174 z_stream stream;
36e4d74a 1175 char hdr[128];
65c2e0c3 1176
d5f1befc 1177 map = map_sha1_file_internal(sha1, &mapsize);
1f688557
JH
1178 if (!map) {
1179 struct pack_entry e;
1180
1181 if (!find_pack_entry(sha1, &e))
1182 return error("unable to find %s", sha1_to_hex(sha1));
c62266f3 1183 return packed_object_info(&e, type, sizep);
1f688557 1184 }
36e4d74a
JH
1185 if (unpack_sha1_header(&stream, map, mapsize, hdr, sizeof(hdr)) < 0)
1186 status = error("unable to unpack %s header",
1187 sha1_to_hex(sha1));
1188 if (parse_sha1_header(hdr, type, &size) < 0)
1189 status = error("unable to parse %s header", sha1_to_hex(sha1));
c4584ae3 1190 else {
65c2e0c3 1191 status = 0;
c62266f3
JH
1192 if (sizep)
1193 *sizep = size;
65c2e0c3 1194 }
65c2e0c3
JH
1195 inflateEnd(&stream);
1196 munmap(map, mapsize);
1197 return status;
1198}
1199
1f688557
JH
1200static void *read_packed_sha1(const unsigned char *sha1, char *type, unsigned long *size)
1201{
1202 struct pack_entry e;
1203
1204 if (!find_pack_entry(sha1, &e)) {
1205 error("cannot read sha1_file for %s", sha1_to_hex(sha1));
1206 return NULL;
1207 }
1208 return unpack_entry(&e, type, size);
1209}
1210
0fcfd160
LT
1211void * read_sha1_file(const unsigned char *sha1, char *type, unsigned long *size)
1212{
1213 unsigned long mapsize;
1214 void *map, *buf;
ab90ea5d 1215 struct pack_entry e;
0fcfd160 1216
ab90ea5d
JH
1217 if (find_pack_entry(sha1, &e))
1218 return read_packed_sha1(sha1, type, size);
d5f1befc 1219 map = map_sha1_file_internal(sha1, &mapsize);
0fcfd160
LT
1220 if (map) {
1221 buf = unpack_sha1_file(map, mapsize, type, size);
1222 munmap(map, mapsize);
1223 return buf;
1224 }
ab90ea5d 1225 return NULL;
0fcfd160
LT
1226}
1227
40469ee9 1228void *read_object_with_reference(const unsigned char *sha1,
bf0f910d 1229 const char *required_type,
40469ee9
JH
1230 unsigned long *size,
1231 unsigned char *actual_sha1_return)
f4913f91
JH
1232{
1233 char type[20];
1234 void *buffer;
1235 unsigned long isize;
40469ee9 1236 unsigned char actual_sha1[20];
f4913f91 1237
40469ee9
JH
1238 memcpy(actual_sha1, sha1, 20);
1239 while (1) {
1240 int ref_length = -1;
1241 const char *ref_type = NULL;
f4913f91 1242
40469ee9
JH
1243 buffer = read_sha1_file(actual_sha1, type, &isize);
1244 if (!buffer)
1245 return NULL;
1246 if (!strcmp(type, required_type)) {
1247 *size = isize;
1248 if (actual_sha1_return)
1249 memcpy(actual_sha1_return, actual_sha1, 20);
1250 return buffer;
1251 }
1252 /* Handle references */
8e440259 1253 else if (!strcmp(type, commit_type))
40469ee9 1254 ref_type = "tree ";
8e440259 1255 else if (!strcmp(type, tag_type))
40469ee9
JH
1256 ref_type = "object ";
1257 else {
1258 free(buffer);
1259 return NULL;
1260 }
1261 ref_length = strlen(ref_type);
f4913f91 1262
40469ee9
JH
1263 if (memcmp(buffer, ref_type, ref_length) ||
1264 get_sha1_hex(buffer + ref_length, actual_sha1)) {
1265 free(buffer);
1266 return NULL;
1267 }
1cf58e72 1268 free(buffer);
40469ee9
JH
1269 /* Now we have the ID of the referred-to object in
1270 * actual_sha1. Check again. */
f4913f91 1271 }
f4913f91
JH
1272}
1273
7672db20
BL
1274char *write_sha1_file_prepare(void *buf,
1275 unsigned long len,
1276 const char *type,
1277 unsigned char *sha1,
1278 unsigned char *hdr,
1279 int *hdrlen)
d410c0f5
JH
1280{
1281 SHA_CTX c;
1282
1283 /* Generate the header */
1284 *hdrlen = sprintf((char *)hdr, "%s %lu", type, len)+1;
1285
1286 /* Sha1.. */
1287 SHA1_Init(&c);
1288 SHA1_Update(&c, hdr, *hdrlen);
1289 SHA1_Update(&c, buf, len);
1290 SHA1_Final(sha1, &c);
1291
1292 return sha1_file_name(sha1);
1293}
1294
230f1322
LT
1295/*
1296 * Link the tempfile to the final place, possibly creating the
1297 * last directory level as you do so.
1298 *
1299 * Returns the errno on failure, 0 on success.
1300 */
1301static int link_temp_to_file(const char *tmpfile, char *filename)
1302{
1303 int ret;
1304
1305 if (!link(tmpfile, filename))
1306 return 0;
1307
1308 /*
1309 * Try to mkdir the last path component if that failed
1310 * with an ENOENT.
1311 *
1312 * Re-try the "link()" regardless of whether the mkdir
1313 * succeeds, since a race might mean that somebody
1314 * else succeeded.
1315 */
1316 ret = errno;
1317 if (ret == ENOENT) {
1318 char *dir = strrchr(filename, '/');
1319 if (dir) {
1320 *dir = 0;
1321 mkdir(filename, 0777);
457f06d6
JS
1322 if (adjust_shared_perm(filename))
1323 return -2;
230f1322
LT
1324 *dir = '/';
1325 if (!link(tmpfile, filename))
1326 return 0;
1327 ret = errno;
1328 }
1329 }
1330 return ret;
1331}
1332
1333/*
1334 * Move the just written object into its final resting place
1335 */
b721e01f 1336int move_temp_to_file(const char *tmpfile, char *filename)
230f1322
LT
1337{
1338 int ret = link_temp_to_file(tmpfile, filename);
7ebb6fca
LT
1339
1340 /*
1341 * Coda hack - coda doesn't like cross-directory links,
1342 * so we fall back to a rename, which will mean that it
1343 * won't be able to check collisions, but that's not a
1344 * big deal.
1345 *
1346 * The same holds for FAT formatted media.
1347 *
1348 * When this succeeds, we just return 0. We have nothing
1349 * left to unlink.
1350 */
1351 if (ret && ret != EEXIST) {
1352 if (!rename(tmpfile, filename))
230f1322 1353 return 0;
9e48b389 1354 ret = errno;
230f1322
LT
1355 }
1356 unlink(tmpfile);
1357 if (ret) {
1358 if (ret != EEXIST) {
7246ed43 1359 fprintf(stderr, "unable to write sha1 filename %s: %s\n", filename, strerror(ret));
230f1322
LT
1360 return -1;
1361 }
1362 /* FIXME!!! Collision check here ? */
1363 }
1364
1365 return 0;
1366}
1367
bf0f910d 1368int write_sha1_file(void *buf, unsigned long len, const char *type, unsigned char *returnsha1)
0fcfd160
LT
1369{
1370 int size;
bf0f910d 1371 unsigned char *compressed;
0fcfd160
LT
1372 z_stream stream;
1373 unsigned char sha1[20];
706bc531 1374 char *filename;
aac17941 1375 static char tmpfile[PATH_MAX];
bf0f910d 1376 unsigned char hdr[50];
230f1322 1377 int fd, hdrlen;
a44c9a5e 1378
d410c0f5
JH
1379 /* Normally if we have it in the pack then we do not bother writing
1380 * it out into .git/objects/??/?{38} file.
1381 */
1382 filename = write_sha1_file_prepare(buf, len, type, sha1, hdr, &hdrlen);
706bc531
LT
1383 if (returnsha1)
1384 memcpy(returnsha1, sha1, 20);
d410c0f5
JH
1385 if (has_sha1_file(sha1))
1386 return 0;
aac17941
LT
1387 fd = open(filename, O_RDONLY);
1388 if (fd >= 0) {
706bc531 1389 /*
aac17941
LT
1390 * FIXME!!! We might do collision checking here, but we'd
1391 * need to uncompress the old file and check it. Later.
706bc531 1392 */
aac17941 1393 close(fd);
706bc531
LT
1394 return 0;
1395 }
1396
aac17941 1397 if (errno != ENOENT) {
7246ed43 1398 fprintf(stderr, "sha1 file %s: %s\n", filename, strerror(errno));
aac17941
LT
1399 return -1;
1400 }
1401
1402 snprintf(tmpfile, sizeof(tmpfile), "%s/obj_XXXXXX", get_object_directory());
ace1534d 1403
aac17941
LT
1404 fd = mkstemp(tmpfile);
1405 if (fd < 0) {
7246ed43 1406 fprintf(stderr, "unable to create temporary sha1 filename %s: %s\n", tmpfile, strerror(errno));
aac17941
LT
1407 return -1;
1408 }
1409
0fcfd160
LT
1410 /* Set it up */
1411 memset(&stream, 0, sizeof(stream));
1412 deflateInit(&stream, Z_BEST_COMPRESSION);
a44c9a5e 1413 size = deflateBound(&stream, len+hdrlen);
812666c8 1414 compressed = xmalloc(size);
0fcfd160
LT
1415
1416 /* Compress it */
0fcfd160
LT
1417 stream.next_out = compressed;
1418 stream.avail_out = size;
a44c9a5e
LT
1419
1420 /* First header.. */
1421 stream.next_in = hdr;
1422 stream.avail_in = hdrlen;
1423 while (deflate(&stream, 0) == Z_OK)
6ffcee88 1424 /* nothing */;
a44c9a5e
LT
1425
1426 /* Then the data itself.. */
1427 stream.next_in = buf;
1428 stream.avail_in = len;
0fcfd160
LT
1429 while (deflate(&stream, Z_FINISH) == Z_OK)
1430 /* nothing */;
1431 deflateEnd(&stream);
1432 size = stream.total_out;
1433
706bc531
LT
1434 if (write(fd, compressed, size) != size)
1435 die("unable to write file");
aac17941 1436 fchmod(fd, 0444);
706bc531 1437 close(fd);
383f85b7 1438 free(compressed);
0fcfd160 1439
230f1322 1440 return move_temp_to_file(tmpfile, filename);
0fcfd160 1441}
8237b185 1442
a5eda52b
DB
1443int write_sha1_to_fd(int fd, const unsigned char *sha1)
1444{
1445 ssize_t size;
1446 unsigned long objsize;
1447 int posn = 0;
bfc66daf
SV
1448 void *map = map_sha1_file_internal(sha1, &objsize);
1449 void *buf = map;
1450 void *temp_obj = NULL;
a5eda52b 1451 z_stream stream;
bfc66daf 1452
a5eda52b
DB
1453 if (!buf) {
1454 unsigned char *unpacked;
1455 unsigned long len;
1456 char type[20];
1457 char hdr[50];
1458 int hdrlen;
1459 // need to unpack and recompress it by itself
1460 unpacked = read_packed_sha1(sha1, type, &len);
1461
1462 hdrlen = sprintf(hdr, "%s %lu", type, len) + 1;
1463
1464 /* Set it up */
1465 memset(&stream, 0, sizeof(stream));
1466 deflateInit(&stream, Z_BEST_COMPRESSION);
1467 size = deflateBound(&stream, len + hdrlen);
bfc66daf 1468 temp_obj = buf = xmalloc(size);
a5eda52b
DB
1469
1470 /* Compress it */
1471 stream.next_out = buf;
1472 stream.avail_out = size;
1473
1474 /* First header.. */
0ee19dce 1475 stream.next_in = (void *)hdr;
a5eda52b
DB
1476 stream.avail_in = hdrlen;
1477 while (deflate(&stream, 0) == Z_OK)
1478 /* nothing */;
1479
1480 /* Then the data itself.. */
1481 stream.next_in = unpacked;
1482 stream.avail_in = len;
1483 while (deflate(&stream, Z_FINISH) == Z_OK)
1484 /* nothing */;
1485 deflateEnd(&stream);
bfc66daf 1486 free(unpacked);
a5eda52b
DB
1487
1488 objsize = stream.total_out;
1489 }
1490
1491 do {
1492 size = write(fd, buf + posn, objsize - posn);
1493 if (size <= 0) {
1494 if (!size) {
7246ed43 1495 fprintf(stderr, "write closed\n");
a5eda52b
DB
1496 } else {
1497 perror("write ");
1498 }
1499 return -1;
1500 }
1501 posn += size;
1502 } while (posn < objsize);
bfc66daf
SV
1503
1504 if (map)
1505 munmap(map, objsize);
1506 if (temp_obj)
1507 free(temp_obj);
1508
a5eda52b
DB
1509 return 0;
1510}
1511
70b9829e
DB
1512int write_sha1_from_fd(const unsigned char *sha1, int fd, char *buffer,
1513 size_t bufsize, size_t *bufposn)
8237b185 1514{
230f1322 1515 char tmpfile[PATH_MAX];
8237b185
DB
1516 int local;
1517 z_stream stream;
1518 unsigned char real_sha1[20];
bf0f910d 1519 unsigned char discard[4096];
8237b185
DB
1520 int ret;
1521 SHA_CTX c;
1522
230f1322 1523 snprintf(tmpfile, sizeof(tmpfile), "%s/obj_XXXXXX", get_object_directory());
8237b185 1524
230f1322 1525 local = mkstemp(tmpfile);
8237b185 1526 if (local < 0)
bd2afde8
JH
1527 return error("Couldn't open %s for %s",
1528 tmpfile, sha1_to_hex(sha1));
8237b185
DB
1529
1530 memset(&stream, 0, sizeof(stream));
1531
1532 inflateInit(&stream);
1533
1534 SHA1_Init(&c);
1535
1536 do {
1537 ssize_t size;
70b9829e
DB
1538 if (*bufposn) {
1539 stream.avail_in = *bufposn;
96ad15ae 1540 stream.next_in = (unsigned char *) buffer;
70b9829e
DB
1541 do {
1542 stream.next_out = discard;
1543 stream.avail_out = sizeof(discard);
1544 ret = inflate(&stream, Z_SYNC_FLUSH);
1545 SHA1_Update(&c, discard, sizeof(discard) -
1546 stream.avail_out);
1547 } while (stream.avail_in && ret == Z_OK);
1548 write(local, buffer, *bufposn - stream.avail_in);
1549 memmove(buffer, buffer + *bufposn - stream.avail_in,
1550 stream.avail_in);
1551 *bufposn = stream.avail_in;
1552 if (ret != Z_OK)
1553 break;
1554 }
1555 size = read(fd, buffer + *bufposn, bufsize - *bufposn);
8237b185
DB
1556 if (size <= 0) {
1557 close(local);
230f1322 1558 unlink(tmpfile);
8237b185
DB
1559 if (!size)
1560 return error("Connection closed?");
1561 perror("Reading from connection");
1562 return -1;
1563 }
70b9829e
DB
1564 *bufposn += size;
1565 } while (1);
8237b185
DB
1566 inflateEnd(&stream);
1567
1568 close(local);
1569 SHA1_Final(real_sha1, &c);
1570 if (ret != Z_STREAM_END) {
230f1322 1571 unlink(tmpfile);
8237b185
DB
1572 return error("File %s corrupted", sha1_to_hex(sha1));
1573 }
1574 if (memcmp(sha1, real_sha1, 20)) {
230f1322 1575 unlink(tmpfile);
bd2afde8 1576 return error("File %s has bad hash", sha1_to_hex(sha1));
8237b185 1577 }
230f1322
LT
1578
1579 return move_temp_to_file(tmpfile, sha1_file_name(sha1));
8237b185
DB
1580}
1581
bf592c50
DB
1582int has_pack_index(const unsigned char *sha1)
1583{
1584 struct stat st;
1585 if (stat(sha1_pack_index_name(sha1), &st))
1586 return 0;
1587 return 1;
1588}
1589
1590int has_pack_file(const unsigned char *sha1)
1591{
1592 struct stat st;
1593 if (stat(sha1_pack_name(sha1), &st))
1594 return 0;
1595 return 1;
1596}
1597
dade09c2
LT
1598int has_sha1_pack(const unsigned char *sha1)
1599{
1600 struct pack_entry e;
1601 return find_pack_entry(sha1, &e);
1602}
1603
8237b185
DB
1604int has_sha1_file(const unsigned char *sha1)
1605{
8237b185 1606 struct stat st;
1f688557
JH
1607 struct pack_entry e;
1608
ab90ea5d 1609 if (find_pack_entry(sha1, &e))
1f688557 1610 return 1;
ab90ea5d 1611 return find_sha1_file(sha1, &st) ? 1 : 0;
8237b185 1612}
74400e71 1613
024510c8
DB
1614int index_pipe(unsigned char *sha1, int fd, const char *type, int write_object)
1615{
1616 unsigned long size = 4096;
1617 char *buf = malloc(size);
1618 int iret, ret;
1619 unsigned long off = 0;
1620 unsigned char hdr[50];
1621 int hdrlen;
1622 do {
1623 iret = read(fd, buf + off, size - off);
1624 if (iret > 0) {
1625 off += iret;
1626 if (off == size) {
1627 size *= 2;
1628 buf = realloc(buf, size);
1629 }
1630 }
1631 } while (iret > 0);
1632 if (iret < 0) {
1633 free(buf);
1634 return -1;
1635 }
1636 if (!type)
8e440259 1637 type = blob_type;
024510c8
DB
1638 if (write_object)
1639 ret = write_sha1_file(buf, off, type, sha1);
1640 else {
1641 write_sha1_file_prepare(buf, off, type, sha1, hdr, &hdrlen);
1642 ret = 0;
1643 }
1644 free(buf);
1645 return ret;
1646}
1647
7672db20 1648int index_fd(unsigned char *sha1, int fd, struct stat *st, int write_object, const char *type)
74400e71 1649{
74400e71 1650 unsigned long size = st->st_size;
aac17941
LT
1651 void *buf;
1652 int ret;
7672db20
BL
1653 unsigned char hdr[50];
1654 int hdrlen;
74400e71 1655
aac17941 1656 buf = "";
74400e71 1657 if (size)
aac17941 1658 buf = mmap(NULL, size, PROT_READ, MAP_PRIVATE, fd, 0);
74400e71 1659 close(fd);
e35f9824 1660 if (buf == MAP_FAILED)
74400e71
JH
1661 return -1;
1662
7672db20 1663 if (!type)
8e440259 1664 type = blob_type;
7672db20
BL
1665 if (write_object)
1666 ret = write_sha1_file(buf, size, type, sha1);
1667 else {
1668 write_sha1_file_prepare(buf, size, type, sha1, hdr, &hdrlen);
1669 ret = 0;
1670 }
aac17941
LT
1671 if (size)
1672 munmap(buf, size);
1673 return ret;
74400e71 1674}
ec1fcc16
JH
1675
1676int index_path(unsigned char *sha1, const char *path, struct stat *st, int write_object)
1677{
1678 int fd;
1679 char *target;
1680
1681 switch (st->st_mode & S_IFMT) {
1682 case S_IFREG:
1683 fd = open(path, O_RDONLY);
1684 if (fd < 0)
1685 return error("open(\"%s\"): %s", path,
1686 strerror(errno));
1687 if (index_fd(sha1, fd, st, write_object, NULL) < 0)
1688 return error("%s: failed to insert into database",
1689 path);
1690 break;
1691 case S_IFLNK:
1692 target = xmalloc(st->st_size+1);
1693 if (readlink(path, target, st->st_size+1) != st->st_size) {
1694 char *errstr = strerror(errno);
1695 free(target);
1696 return error("readlink(\"%s\"): %s", path,
1697 errstr);
1698 }
1699 if (!write_object) {
1700 unsigned char hdr[50];
1701 int hdrlen;
8e440259 1702 write_sha1_file_prepare(target, st->st_size, blob_type,
ec1fcc16 1703 sha1, hdr, &hdrlen);
8e440259 1704 } else if (write_sha1_file(target, st->st_size, blob_type, sha1))
ec1fcc16
JH
1705 return error("%s: failed to insert into database",
1706 path);
1707 free(target);
1708 break;
1709 default:
1710 return error("%s: unsupported file type", path);
1711 }
1712 return 0;
1713}