]> git.ipfire.org Git - thirdparty/git.git/blame - sha1_file.c
builtin/pack-objects: convert to struct object_id
[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"
b2141fc1 10#include "config.h"
6eac50d8 11#include "string-list.h"
697cc8ef 12#include "lockfile.h"
1f688557 13#include "delta.h"
a733cb60 14#include "pack.h"
8e440259
PE
15#include "blob.h"
16#include "commit.h"
4dd1fbc7 17#include "run-command.h"
8e440259
PE
18#include "tag.h"
19#include "tree.h"
c879daa2 20#include "tree-walk.h"
f35a6d3b 21#include "refs.h"
70f5d5d3 22#include "pack-revindex.h"
628522ec 23#include "sha1-lookup.h"
568508e7 24#include "bulk-checkin.h"
090ea126 25#include "streaming.h"
543c5caa 26#include "dir.h"
a73cdd21 27#include "mru.h"
12d95ef6 28#include "list.h"
c4c6effa 29#include "mergesort.h"
cf3c6352 30#include "quote.h"
4f39cd82 31#include "packfile.h"
e05db0fd 32
50c5cd58 33const unsigned char null_sha1[GIT_MAX_RAWSZ];
3e56e724 34const struct object_id null_oid;
8576fde6
JK
35const struct object_id empty_tree_oid = {
36 EMPTY_TREE_SHA1_BIN_LITERAL
37};
38const struct object_id empty_blob_oid = {
39 EMPTY_BLOB_SHA1_BIN_LITERAL
40};
88cd621d 41
c597ba80
NTND
42/*
43 * This is meant to hold a *small* number of objects that you would
44 * want read_sha1_file() to be able to return, but yet you do not want
45 * to write them into the object store (e.g. a browse-only
46 * application).
47 */
48static struct cached_object {
49 unsigned char sha1[20];
50 enum object_type type;
51 void *buf;
52 unsigned long size;
53} *cached_objects;
54static int cached_object_nr, cached_object_alloc;
55
56static struct cached_object empty_tree = {
dab0d410 57 EMPTY_TREE_SHA1_BIN_LITERAL,
c597ba80
NTND
58 OBJ_TREE,
59 "",
60 0
61};
62
63static struct cached_object *find_cached_object(const unsigned char *sha1)
64{
65 int i;
66 struct cached_object *co = cached_objects;
67
68 for (i = 0; i < cached_object_nr; i++, co++) {
69 if (!hashcmp(co->sha1, sha1))
70 return co;
71 }
72 if (!hashcmp(sha1, empty_tree.sha1))
73 return &empty_tree;
74 return NULL;
75}
76
90a6464b
JH
77int mkdir_in_gitdir(const char *path)
78{
79 if (mkdir(path, 0777)) {
80 int saved_errno = errno;
81 struct stat st;
82 struct strbuf sb = STRBUF_INIT;
83
84 if (errno != EEXIST)
85 return -1;
86 /*
87 * Are we looking at a path in a symlinked worktree
88 * whose original repository does not yet have it?
89 * e.g. .git/rr-cache pointing at its original
90 * repository in which the user hasn't performed any
91 * conflict resolution yet?
92 */
93 if (lstat(path, &st) || !S_ISLNK(st.st_mode) ||
94 strbuf_readlink(&sb, path, st.st_size) ||
95 !is_absolute_path(sb.buf) ||
96 mkdir(sb.buf, 0777)) {
97 strbuf_release(&sb);
98 errno = saved_errno;
99 return -1;
100 }
101 strbuf_release(&sb);
102 }
103 return adjust_shared_perm(path);
104}
105
0be0521b 106enum scld_error safe_create_leading_directories(char *path)
b2cb9425 107{
26c8ae2a 108 char *next_component = path + offset_1st_component(path);
0be0521b 109 enum scld_error ret = SCLD_OK;
67d42212 110
0be0521b 111 while (ret == SCLD_OK && next_component) {
f0502332 112 struct stat st;
0f527403 113 char *slash = next_component, slash_character;
f0502332 114
0f527403
MH
115 while (*slash && !is_dir_sep(*slash))
116 slash++;
117
118 if (!*slash)
b2cb9425 119 break;
bf10cf70 120
26c8ae2a 121 next_component = slash + 1;
0f527403 122 while (is_dir_sep(*next_component))
bf10cf70 123 next_component++;
26c8ae2a 124 if (!*next_component)
5f0bdf50 125 break;
831651fd 126
0f527403 127 slash_character = *slash;
831651fd 128 *slash = '\0';
67d42212
JR
129 if (!stat(path, &st)) {
130 /* path exists */
204a047f
MH
131 if (!S_ISDIR(st.st_mode)) {
132 errno = ENOTDIR;
0be0521b 133 ret = SCLD_EXISTS;
204a047f 134 }
53a39721 135 } else if (mkdir(path, 0777)) {
928734d9 136 if (errno == EEXIST &&
9e6f885d 137 !stat(path, &st) && S_ISDIR(st.st_mode))
928734d9 138 ; /* somebody created it since we checked */
18d37e86
MH
139 else if (errno == ENOENT)
140 /*
141 * Either mkdir() failed because
142 * somebody just pruned the containing
143 * directory, or stat() failed because
144 * the file that was in our way was
145 * just removed. Either way, inform
146 * the caller that it might be worth
147 * trying again:
148 */
149 ret = SCLD_VANISHED;
9e6f885d 150 else
0be0521b 151 ret = SCLD_FAILED;
53a39721 152 } else if (adjust_shared_perm(path)) {
0be0521b 153 ret = SCLD_PERMS;
457f06d6 154 }
0f527403 155 *slash = slash_character;
b2cb9425 156 }
9e6f885d 157 return ret;
b2cb9425 158}
723c31fe 159
0be0521b 160enum scld_error safe_create_leading_directories_const(const char *path)
8e21d63b 161{
02944307 162 int save_errno;
8e21d63b
JK
163 /* path points to cache entries, so xstrdup before messing with it */
164 char *buf = xstrdup(path);
0be0521b 165 enum scld_error result = safe_create_leading_directories(buf);
02944307
MH
166
167 save_errno = errno;
8e21d63b 168 free(buf);
02944307 169 errno = save_errno;
8e21d63b
JK
170 return result;
171}
172
177978f5
MH
173int raceproof_create_file(const char *path, create_file_fn fn, void *cb)
174{
175 /*
176 * The number of times we will try to remove empty directories
177 * in the way of path. This is only 1 because if another
178 * process is racily creating directories that conflict with
179 * us, we don't want to fight against them.
180 */
181 int remove_directories_remaining = 1;
182
183 /*
184 * The number of times that we will try to create the
185 * directories containing path. We are willing to attempt this
186 * more than once, because another process could be trying to
187 * clean up empty directories at the same time as we are
188 * trying to create them.
189 */
190 int create_directories_remaining = 3;
191
192 /* A scratch copy of path, filled lazily if we need it: */
193 struct strbuf path_copy = STRBUF_INIT;
194
195 int ret, save_errno;
196
197 /* Sanity check: */
198 assert(*path);
199
200retry_fn:
201 ret = fn(path, cb);
202 save_errno = errno;
203 if (!ret)
204 goto out;
205
206 if (errno == EISDIR && remove_directories_remaining-- > 0) {
207 /*
208 * A directory is in the way. Maybe it is empty; try
209 * to remove it:
210 */
211 if (!path_copy.len)
212 strbuf_addstr(&path_copy, path);
213
214 if (!remove_dir_recursively(&path_copy, REMOVE_DIR_EMPTY_ONLY))
215 goto retry_fn;
216 } else if (errno == ENOENT && create_directories_remaining-- > 0) {
217 /*
218 * Maybe the containing directory didn't exist, or
219 * maybe it was just deleted by a process that is
220 * racing with us to clean up empty directories. Try
221 * to create it:
222 */
223 enum scld_error scld_result;
224
225 if (!path_copy.len)
226 strbuf_addstr(&path_copy, path);
227
228 do {
229 scld_result = safe_create_leading_directories(path_copy.buf);
230 if (scld_result == SCLD_OK)
231 goto retry_fn;
232 } while (scld_result == SCLD_VANISHED && create_directories_remaining-- > 0);
233 }
234
235out:
236 strbuf_release(&path_copy);
237 errno = save_errno;
238 return ret;
239}
240
f7b7774f 241static void fill_sha1_path(struct strbuf *buf, const unsigned char *sha1)
ace1534d
JH
242{
243 int i;
244 for (i = 0; i < 20; i++) {
245 static char hex[] = "0123456789abcdef";
246 unsigned int val = sha1[i];
f7b7774f
JK
247 strbuf_addch(buf, hex[val >> 4]);
248 strbuf_addch(buf, hex[val & 0xf]);
afbba2f0 249 if (!i)
f7b7774f 250 strbuf_addch(buf, '/');
ace1534d
JH
251 }
252}
253
30d6c6ea 254const char *sha1_file_name(const unsigned char *sha1)
0fcfd160 255{
f7b7774f 256 static struct strbuf buf = STRBUF_INIT;
0fcfd160 257
f7b7774f
JK
258 strbuf_reset(&buf);
259 strbuf_addf(&buf, "%s/", get_object_directory());
560fb6a1 260
f7b7774f
JK
261 fill_sha1_path(&buf, sha1);
262 return buf.buf;
0fcfd160
LT
263}
264
38dbe5f0
JK
265struct strbuf *alt_scratch_buf(struct alternate_object_database *alt)
266{
267 strbuf_setlen(&alt->scratch, alt->base_len);
268 return &alt->scratch;
269}
270
29ec6af2
JK
271static const char *alt_sha1_path(struct alternate_object_database *alt,
272 const unsigned char *sha1)
273{
38dbe5f0 274 struct strbuf *buf = alt_scratch_buf(alt);
f7b7774f 275 fill_sha1_path(buf, sha1);
38dbe5f0 276 return buf->buf;
0fcfd160
LT
277}
278
d5a63b99
JH
279struct alternate_object_database *alt_odb_list;
280static struct alternate_object_database **alt_odb_tail;
ace1534d 281
4ea82473
JK
282/*
283 * Return non-zero iff the path is usable as an alternate object database.
284 */
285static int alt_odb_usable(struct strbuf *path, const char *normalized_objdir)
286{
287 struct alternate_object_database *alt;
288
289 /* Detect cases where alternate disappeared */
290 if (!is_directory(path->buf)) {
291 error("object directory %s does not exist; "
292 "check .git/objects/info/alternates.",
293 path->buf);
294 return 0;
295 }
296
297 /*
298 * Prevent the common mistake of listing the same
299 * thing twice, or object directory itself.
300 */
301 for (alt = alt_odb_list; alt; alt = alt->next) {
ea0fc3b4 302 if (!fspathcmp(path->buf, alt->path))
4ea82473
JK
303 return 0;
304 }
305 if (!fspathcmp(path->buf, normalized_objdir))
306 return 0;
307
308 return 1;
309}
310
ddd5d056
JH
311/*
312 * Prepare alternate object database registry.
d5a63b99
JH
313 *
314 * The variable alt_odb_list points at the list of struct
315 * alternate_object_database. The elements on this list come from
316 * non-empty elements from colon separated ALTERNATE_DB_ENVIRONMENT
317 * environment variable, and $GIT_OBJECT_DIRECTORY/info/alternates,
1494e038
JH
318 * whose contents is similar to that environment variable but can be
319 * LF separated. Its base points at a statically allocated buffer that
d5a63b99
JH
320 * contains "/the/directory/corresponding/to/.git/objects/...", while
321 * its name points just after the slash at the end of ".git/objects/"
322 * in the example above, and has enough space to hold 40-byte hex
323 * SHA1, an extra slash for the first level indirection, and the
324 * terminating NUL.
ddd5d056 325 */
2456990d 326static void read_info_alternates(const char * relative_base, int depth);
539e7506
EK
327static int link_alt_odb_entry(const char *entry, const char *relative_base,
328 int depth, const char *normalized_objdir)
ace1534d 329{
c2f493a4 330 struct alternate_object_database *ent;
5bdf0a84 331 struct strbuf pathbuf = STRBUF_INIT;
d5a63b99 332
85dadc38 333 if (!is_absolute_path(entry) && relative_base) {
4ac9006f 334 strbuf_realpath(&pathbuf, relative_base, 1);
5bdf0a84 335 strbuf_addch(&pathbuf, '/');
c2f493a4 336 }
6eac50d8 337 strbuf_addstr(&pathbuf, entry);
c2f493a4 338
37a95862 339 if (strbuf_normalize_path(&pathbuf) < 0 && relative_base) {
670c359d
JK
340 error("unable to normalize alternate object path: %s",
341 pathbuf.buf);
342 strbuf_release(&pathbuf);
343 return -1;
344 }
5bdf0a84
HW
345
346 /*
347 * The trailing slash after the directory name is given by
348 * this function at the end. Remove duplicates.
349 */
4ea82473
JK
350 while (pathbuf.len && pathbuf.buf[pathbuf.len - 1] == '/')
351 strbuf_setlen(&pathbuf, pathbuf.len - 1);
5bdf0a84 352
4ea82473
JK
353 if (!alt_odb_usable(&pathbuf, normalized_objdir)) {
354 strbuf_release(&pathbuf);
c2f493a4
MW
355 return -1;
356 }
357
7f0fa2c0 358 ent = alloc_alt_odb(pathbuf.buf);
c2f493a4
MW
359
360 /* add the alternate entry */
361 *alt_odb_tail = ent;
362 alt_odb_tail = &(ent->next);
363 ent->next = NULL;
364
365 /* recursively add alternates */
4ea82473 366 read_info_alternates(pathbuf.buf, depth + 1);
c2f493a4 367
4ea82473 368 strbuf_release(&pathbuf);
c2f493a4
MW
369 return 0;
370}
371
cf3c6352
JK
372static const char *parse_alt_odb_entry(const char *string,
373 int sep,
374 struct strbuf *out)
375{
376 const char *end;
377
378 strbuf_reset(out);
379
380 if (*string == '#') {
381 /* comment; consume up to next separator */
382 end = strchrnul(string, sep);
383 } else if (*string == '"' && !unquote_c_style(out, string, &end)) {
384 /*
385 * quoted path; unquote_c_style has copied the
386 * data for us and set "end". Broken quoting (e.g.,
387 * an entry that doesn't end with a quote) falls
388 * back to the unquoted case below.
389 */
390 } else {
391 /* normal, unquoted path */
392 end = strchrnul(string, sep);
393 strbuf_add(out, string, end - string);
394 }
395
396 if (*end)
397 end++;
398 return end;
399}
400
dc732bd5 401static void link_alt_odb_entries(const char *alt, int sep,
c2f493a4
MW
402 const char *relative_base, int depth)
403{
539e7506 404 struct strbuf objdirbuf = STRBUF_INIT;
cf3c6352 405 struct strbuf entry = STRBUF_INIT;
c2f493a4
MW
406
407 if (depth > 5) {
408 error("%s: ignoring alternate object stores, nesting too deep.",
409 relative_base);
410 return;
411 }
412
f655651e 413 strbuf_add_absolute_path(&objdirbuf, get_object_directory());
670c359d
JK
414 if (strbuf_normalize_path(&objdirbuf) < 0)
415 die("unable to normalize object directory: %s",
416 objdirbuf.buf);
539e7506 417
cf3c6352
JK
418 while (*alt) {
419 alt = parse_alt_odb_entry(alt, sep, &entry);
420 if (!entry.len)
9577e7e3 421 continue;
cf3c6352 422 link_alt_odb_entry(entry.buf, relative_base, depth, objdirbuf.buf);
9577e7e3 423 }
cf3c6352 424 strbuf_release(&entry);
539e7506 425 strbuf_release(&objdirbuf);
d5a63b99
JH
426}
427
2456990d 428static void read_info_alternates(const char * relative_base, int depth)
d5a63b99 429{
5015f01c 430 char *path;
dc732bd5 431 struct strbuf buf = STRBUF_INIT;
d5a63b99 432
5015f01c 433 path = xstrfmt("%s/info/alternates", relative_base);
dc732bd5 434 if (strbuf_read_file(&buf, path, 1024) < 0) {
f0f7bebe 435 warn_on_fopen_errors(path);
dc732bd5 436 free(path);
9a217f2a 437 return;
ace1534d 438 }
d5a63b99 439
dc732bd5
JK
440 link_alt_odb_entries(buf.buf, '\n', relative_base, depth);
441 strbuf_release(&buf);
442 free(path);
ace1534d
JH
443}
444
7f0fa2c0
JK
445struct alternate_object_database *alloc_alt_odb(const char *dir)
446{
447 struct alternate_object_database *ent;
7f0fa2c0 448
597f9134 449 FLEX_ALLOC_STR(ent, path, dir);
38dbe5f0
JK
450 strbuf_init(&ent->scratch, 0);
451 strbuf_addf(&ent->scratch, "%s/", dir);
452 ent->base_len = ent->scratch.len;
7f0fa2c0
JK
453
454 return ent;
455}
456
bef70b22
DB
457void add_to_alternates_file(const char *reference)
458{
459 struct lock_file *lock = xcalloc(1, sizeof(struct lock_file));
77b9b1d1
JK
460 char *alts = git_pathdup("objects/info/alternates");
461 FILE *in, *out;
462
463 hold_lock_file_for_update(lock, alts, LOCK_DIE_ON_ERROR);
464 out = fdopen_lock_file(lock, "w");
465 if (!out)
466 die_errno("unable to fdopen alternates lockfile");
467
468 in = fopen(alts, "r");
469 if (in) {
470 struct strbuf line = STRBUF_INIT;
471 int found = 0;
472
3f163962 473 while (strbuf_getline(&line, in) != EOF) {
77b9b1d1
JK
474 if (!strcmp(reference, line.buf)) {
475 found = 1;
476 break;
477 }
478 fprintf_or_die(out, "%s\n", line.buf);
479 }
480
481 strbuf_release(&line);
482 fclose(in);
483
484 if (found) {
485 rollback_lock_file(lock);
486 lock = NULL;
487 }
488 }
489 else if (errno != ENOENT)
490 die_errno("unable to read alternates file");
491
492 if (lock) {
493 fprintf_or_die(out, "%s\n", reference);
494 if (commit_lock_file(lock))
495 die_errno("unable to move new alternates file into place");
496 if (alt_odb_tail)
dc732bd5 497 link_alt_odb_entries(reference, '\n', NULL, 0);
77b9b1d1
JK
498 }
499 free(alts);
bef70b22
DB
500}
501
a5b34d21
JK
502void add_to_alternates_memory(const char *reference)
503{
504 /*
505 * Make sure alternates are initialized, or else our entry may be
506 * overwritten when they are.
507 */
508 prepare_alt_odb();
509
dc732bd5 510 link_alt_odb_entries(reference, '\n', NULL, 0);
a5b34d21
JK
511}
512
9eeea7d2
SB
513/*
514 * Compute the exact path an alternate is at and returns it. In case of
515 * error NULL is returned and the human readable error is added to `err`
516 * `path` may be relative and should point to $GITDIR.
517 * `err` must not be null.
518 */
519char *compute_alternate_path(const char *path, struct strbuf *err)
520{
521 char *ref_git = NULL;
522 const char *repo, *ref_git_s;
523 int seen_error = 0;
524
525 ref_git_s = real_path_if_valid(path);
526 if (!ref_git_s) {
527 seen_error = 1;
528 strbuf_addf(err, _("path '%s' does not exist"), path);
529 goto out;
530 } else
531 /*
532 * Beware: read_gitfile(), real_path() and mkpath()
533 * return static buffer
534 */
535 ref_git = xstrdup(ref_git_s);
536
537 repo = read_gitfile(ref_git);
538 if (!repo)
539 repo = read_gitfile(mkpath("%s/.git", ref_git));
540 if (repo) {
541 free(ref_git);
542 ref_git = xstrdup(repo);
543 }
544
545 if (!repo && is_directory(mkpath("%s/.git/objects", ref_git))) {
546 char *ref_git_git = mkpathdup("%s/.git", ref_git);
547 free(ref_git);
548 ref_git = ref_git_git;
549 } else if (!is_directory(mkpath("%s/objects", ref_git))) {
550 struct strbuf sb = STRBUF_INIT;
551 seen_error = 1;
552 if (get_common_dir(&sb, ref_git)) {
553 strbuf_addf(err,
554 _("reference repository '%s' as a linked "
555 "checkout is not supported yet."),
556 path);
557 goto out;
558 }
559
560 strbuf_addf(err, _("reference repository '%s' is not a "
561 "local repository."), path);
562 goto out;
563 }
564
565 if (!access(mkpath("%s/shallow", ref_git), F_OK)) {
566 strbuf_addf(err, _("reference repository '%s' is shallow"),
567 path);
568 seen_error = 1;
569 goto out;
570 }
571
572 if (!access(mkpath("%s/info/grafts", ref_git), F_OK)) {
573 strbuf_addf(err,
574 _("reference repository '%s' is grafted"),
575 path);
576 seen_error = 1;
577 goto out;
578 }
579
580out:
581 if (seen_error) {
6a83d902 582 FREE_AND_NULL(ref_git);
9eeea7d2
SB
583 }
584
585 return ref_git;
586}
587
fe1b2268 588int foreach_alt_odb(alt_odb_fn fn, void *cb)
d79796bc
JH
589{
590 struct alternate_object_database *ent;
fe1b2268 591 int r = 0;
d79796bc
JH
592
593 prepare_alt_odb();
fe1b2268
JK
594 for (ent = alt_odb_list; ent; ent = ent->next) {
595 r = fn(ent, cb);
596 if (r)
597 break;
598 }
599 return r;
d79796bc
JH
600}
601
c2f493a4
MW
602void prepare_alt_odb(void)
603{
554fe20d 604 const char *alt;
c2f493a4 605
7dc24aa5
SP
606 if (alt_odb_tail)
607 return;
608
c2f493a4
MW
609 alt = getenv(ALTERNATE_DB_ENVIRONMENT);
610 if (!alt) alt = "";
611
c2f493a4 612 alt_odb_tail = &alt_odb_list;
dc732bd5 613 link_alt_odb_entries(alt, PATH_SEP, NULL, 0);
c2f493a4
MW
614
615 read_info_alternates(get_object_directory(), 0);
616}
617
3096b2ec 618/* Returns 1 if we have successfully freshened the file, 0 otherwise. */
33d4221c 619static int freshen_file(const char *fn)
ace1534d 620{
33d4221c
JK
621 struct utimbuf t;
622 t.actime = t.modtime = time(NULL);
623 return !utime(fn, &t);
0f4dc14a 624}
ace1534d 625
3096b2ec
JK
626/*
627 * All of the check_and_freshen functions return 1 if the file exists and was
628 * freshened (if freshening was requested), 0 otherwise. If they return
629 * 0, you should not assume that it is safe to skip a write of the object (it
630 * either does not exist on disk, or has a stale mtime and may be subject to
631 * pruning).
632 */
6a5e6f5e 633int check_and_freshen_file(const char *fn, int freshen)
33d4221c
JK
634{
635 if (access(fn, F_OK))
636 return 0;
3096b2ec 637 if (freshen && !freshen_file(fn))
33d4221c
JK
638 return 0;
639 return 1;
640}
641
642static int check_and_freshen_local(const unsigned char *sha1, int freshen)
643{
644 return check_and_freshen_file(sha1_file_name(sha1), freshen);
645}
646
647static int check_and_freshen_nonlocal(const unsigned char *sha1, int freshen)
0f4dc14a
BC
648{
649 struct alternate_object_database *alt;
9a217f2a 650 prepare_alt_odb();
d5a63b99 651 for (alt = alt_odb_list; alt; alt = alt->next) {
29ec6af2
JK
652 const char *path = alt_sha1_path(alt, sha1);
653 if (check_and_freshen_file(path, freshen))
c529d75a 654 return 1;
ace1534d 655 }
c529d75a 656 return 0;
ace1534d
JH
657}
658
33d4221c
JK
659static int check_and_freshen(const unsigned char *sha1, int freshen)
660{
661 return check_and_freshen_local(sha1, freshen) ||
662 check_and_freshen_nonlocal(sha1, freshen);
663}
664
665int has_loose_object_nonlocal(const unsigned char *sha1)
666{
667 return check_and_freshen_nonlocal(sha1, 0);
668}
669
0f4dc14a
BC
670static int has_loose_object(const unsigned char *sha1)
671{
33d4221c 672 return check_and_freshen(sha1, 0);
0f4dc14a
BC
673}
674
02710228
SP
675static void mmap_limit_check(size_t length)
676{
677 static size_t limit = 0;
678 if (!limit) {
679 limit = git_env_ulong("GIT_MMAP_LIMIT", 0);
680 if (!limit)
681 limit = SIZE_MAX;
682 }
683 if (length > limit)
684 die("attempting to mmap %"PRIuMAX" over limit %"PRIuMAX,
685 (uintmax_t)length, (uintmax_t)limit);
686}
687
1570856b
JK
688void *xmmap_gently(void *start, size_t length,
689 int prot, int flags, int fd, off_t offset)
58ecbd5e 690{
02710228
SP
691 void *ret;
692
693 mmap_limit_check(length);
694 ret = mmap(start, length, prot, flags, fd, offset);
58ecbd5e
JN
695 if (ret == MAP_FAILED) {
696 if (!length)
697 return NULL;
7c3ecb32 698 release_pack_memory(length);
58ecbd5e 699 ret = mmap(start, length, prot, flags, fd, offset);
58ecbd5e
JN
700 }
701 return ret;
702}
703
1570856b
JK
704void *xmmap(void *start, size_t length,
705 int prot, int flags, int fd, off_t offset)
706{
707 void *ret = xmmap_gently(start, length, prot, flags, fd, offset);
708 if (ret == MAP_FAILED)
9ca0aaf6 709 die_errno("mmap failed");
1570856b
JK
710 return ret;
711}
712
88d0db55 713/*
090ea126
NTND
714 * With an in-core object data in "map", rehash it to make sure the
715 * object name actually matches "sha1" to detect object corruption.
716 * With "map" == NULL, try reading the object named with "sha1" using
717 * the streaming interface and rehash it to do the same.
88d0db55 718 */
090ea126
NTND
719int check_sha1_signature(const unsigned char *sha1, void *map,
720 unsigned long size, const char *type)
88d0db55 721{
0fcfd160 722 unsigned char real_sha1[20];
090ea126
NTND
723 enum object_type obj_type;
724 struct git_istream *st;
725 git_SHA_CTX c;
726 char hdr[32];
727 int hdrlen;
88d0db55 728
090ea126
NTND
729 if (map) {
730 hash_sha1_file(map, size, type, real_sha1);
731 return hashcmp(sha1, real_sha1) ? -1 : 0;
88d0db55
BC
732 }
733
090ea126
NTND
734 st = open_istream(sha1, &obj_type, &size, NULL);
735 if (!st)
736 return -1;
88d0db55 737
090ea126 738 /* Generate the header */
ef1286d3 739 hdrlen = xsnprintf(hdr, sizeof(hdr), "%s %lu", typename(obj_type), size) + 1;
88d0db55 740
090ea126
NTND
741 /* Sha1.. */
742 git_SHA1_Init(&c);
743 git_SHA1_Update(&c, hdr, hdrlen);
744 for (;;) {
745 char buf[1024 * 16];
746 ssize_t readlen = read_istream(st, buf, sizeof(buf));
1f688557 747
f54fac53
JK
748 if (readlen < 0) {
749 close_istream(st);
750 return -1;
751 }
090ea126
NTND
752 if (!readlen)
753 break;
754 git_SHA1_Update(&c, buf, readlen);
fa5fc15d 755 }
090ea126
NTND
756 git_SHA1_Final(real_sha1, &c);
757 close_istream(st);
a89fccd2 758 return hashcmp(sha1, real_sha1) ? -1 : 0;
fa5fc15d
SP
759}
760
1b8ac5ea 761int git_open_cloexec(const char *name, int flags)
a0788266 762{
1e3001a8
JH
763 int fd;
764 static int o_cloexec = O_CLOEXEC;
a0788266 765
1e3001a8
JH
766 fd = open(name, flags | o_cloexec);
767 if ((o_cloexec & O_CLOEXEC) && fd < 0 && errno == EINVAL) {
cd66ada0 768 /* Try again w/o O_CLOEXEC: the kernel might not support it */
1e3001a8
JH
769 o_cloexec &= ~O_CLOEXEC;
770 fd = open(name, flags | o_cloexec);
491a8dec 771 }
491a8dec 772
9fb9495d 773#if defined(F_GETFD) && defined(F_SETFD) && defined(FD_CLOEXEC)
491a8dec 774 {
1e3001a8 775 static int fd_cloexec = FD_CLOEXEC;
a0788266 776
1e3001a8
JH
777 if (!o_cloexec && 0 <= fd && fd_cloexec) {
778 /* Opened w/o O_CLOEXEC? try with fcntl(2) to add it */
9fb9495d
EW
779 int flags = fcntl(fd, F_GETFD);
780 if (fcntl(fd, F_SETFD, flags | fd_cloexec))
1e3001a8 781 fd_cloexec = 0;
cd66ada0 782 }
44d1c19e 783 }
a0788266 784#endif
1b8ac5ea 785 return fd;
a0788266
JS
786}
787
3cf8b462 788/*
771e7d57
JK
789 * Find "sha1" as a loose object in the local repository or in an alternate.
790 * Returns 0 on success, negative on failure.
791 *
792 * The "path" out-parameter will give the path of the object we found (if any).
793 * Note that it may point to static storage and is only valid until another
794 * call to sha1_file_name(), etc.
3cf8b462 795 */
771e7d57
JK
796static int stat_sha1_file(const unsigned char *sha1, struct stat *st,
797 const char **path)
1f688557 798{
052fe5ea 799 struct alternate_object_database *alt;
d079837e 800
771e7d57
JK
801 *path = sha1_file_name(sha1);
802 if (!lstat(*path, st))
052fe5ea 803 return 0;
c7934306 804
052fe5ea
JK
805 prepare_alt_odb();
806 errno = ENOENT;
807 for (alt = alt_odb_list; alt; alt = alt->next) {
771e7d57
JK
808 *path = alt_sha1_path(alt, sha1);
809 if (!lstat(*path, st))
052fe5ea 810 return 0;
c7934306
SP
811 }
812
3cf8b462
SP
813 return -1;
814}
815
771e7d57
JK
816/*
817 * Like stat_sha1_file(), but actually open the object and return the
818 * descriptor. See the caveats on the "path" parameter above.
819 */
820static int open_sha1_file(const unsigned char *sha1, const char **path)
60bb8b14 821{
44d1c19e 822 int fd;
44d1c19e 823 struct alternate_object_database *alt;
d6c8a05b 824 int most_interesting_errno;
60bb8b14 825
771e7d57
JK
826 *path = sha1_file_name(sha1);
827 fd = git_open(*path);
44d1c19e
LT
828 if (fd >= 0)
829 return fd;
d6c8a05b 830 most_interesting_errno = errno;
03e79c88 831
44d1c19e 832 prepare_alt_odb();
44d1c19e 833 for (alt = alt_odb_list; alt; alt = alt->next) {
771e7d57
JK
834 *path = alt_sha1_path(alt, sha1);
835 fd = git_open(*path);
44d1c19e
LT
836 if (fd >= 0)
837 return fd;
d6c8a05b
JK
838 if (most_interesting_errno == ENOENT)
839 most_interesting_errno = errno;
03e79c88 840 }
d6c8a05b 841 errno = most_interesting_errno;
44d1c19e 842 return -1;
1f688557
JH
843}
844
f6371f92
JK
845/*
846 * Map the loose object at "path" if it is not NULL, or the path found by
847 * searching for a loose object named "sha1".
848 */
849static void *map_sha1_file_1(const char *path,
850 const unsigned char *sha1,
851 unsigned long *size)
27d69a46 852{
0fcfd160 853 void *map;
144bde78 854 int fd;
84dd81c1 855
f6371f92
JK
856 if (path)
857 fd = git_open(path);
8261e1f1 858 else
f6371f92 859 fd = open_sha1_file(sha1, &path);
44d1c19e
LT
860 map = NULL;
861 if (fd >= 0) {
862 struct stat st;
1f688557 863
44d1c19e
LT
864 if (!fstat(fd, &st)) {
865 *size = xsize_t(st.st_size);
33e42de0
MM
866 if (!*size) {
867 /* mmap() is forbidden on empty files */
771e7d57 868 error("object file %s is empty", path);
33e42de0
MM
869 return NULL;
870 }
44d1c19e 871 map = xmmap(NULL, *size, PROT_READ, MAP_PRIVATE, fd, 0);
144bde78 872 }
44d1c19e 873 close(fd);
74e34e1f 874 }
0fcfd160 875 return map;
74e34e1f
NP
876}
877
f6371f92 878void *map_sha1_file(const unsigned char *sha1, unsigned long *size)
068f85e3 879{
f6371f92 880 return map_sha1_file_1(NULL, sha1, size);
068f85e3 881}
882
d21f8426
JH
883static int unpack_sha1_short_header(git_zstream *stream,
884 unsigned char *map, unsigned long mapsize,
885 void *buffer, unsigned long bufsiz)
47fe3f6e 886{
c4483576
LT
887 /* Get the data stream */
888 memset(stream, 0, sizeof(*stream));
889 stream->next_in = map;
890 stream->avail_in = mapsize;
891 stream->next_out = buffer;
93821bd9 892 stream->avail_out = bufsiz;
47fe3f6e 893
39c68542 894 git_inflate_init(stream);
cc5c54e7 895 return git_inflate(stream, 0);
9a217f2a
JH
896}
897
d21f8426
JH
898int unpack_sha1_header(git_zstream *stream,
899 unsigned char *map, unsigned long mapsize,
900 void *buffer, unsigned long bufsiz)
1f688557 901{
d21f8426
JH
902 int status = unpack_sha1_short_header(stream, map, mapsize,
903 buffer, bufsiz);
42873078 904
d21f8426
JH
905 if (status < Z_OK)
906 return status;
628522ec 907
d21f8426
JH
908 /* Make sure we have the terminating NUL */
909 if (!memchr(buffer, '\0', stream->next_out - (unsigned char *)buffer))
910 return -1;
1f688557
JH
911 return 0;
912}
913
46f03448
KN
914static int unpack_sha1_header_to_strbuf(git_zstream *stream, unsigned char *map,
915 unsigned long mapsize, void *buffer,
916 unsigned long bufsiz, struct strbuf *header)
d131b7af 917{
46f03448
KN
918 int status;
919
d21f8426
JH
920 status = unpack_sha1_short_header(stream, map, mapsize, buffer, bufsiz);
921 if (status < Z_OK)
922 return -1;
d131b7af 923
46f03448
KN
924 /*
925 * Check if entire header is unpacked in the first iteration.
d131b7af 926 */
46f03448
KN
927 if (memchr(buffer, '\0', stream->next_out - (unsigned char *)buffer))
928 return 0;
d131b7af 929
46f03448
KN
930 /*
931 * buffer[0..bufsiz] was not large enough. Copy the partial
932 * result out to header, and then append the result of further
933 * reading the stream.
934 */
935 strbuf_add(header, buffer, stream->next_out - (unsigned char *)buffer);
936 stream->next_out = buffer;
937 stream->avail_out = bufsiz;
d131b7af 938
46f03448
KN
939 do {
940 status = git_inflate(stream, 0);
941 strbuf_add(header, buffer, stream->next_out - (unsigned char *)buffer);
942 if (memchr(buffer, '\0', stream->next_out - (unsigned char *)buffer))
943 return 0;
944 stream->next_out = buffer;
945 stream->avail_out = bufsiz;
946 } while (status != Z_STREAM_END);
947 return -1;
d131b7af
SP
948}
949
ef49a7a0 950static void *unpack_sha1_rest(git_zstream *stream, void *buffer, unsigned long size, const unsigned char *sha1)
95099731 951{
5180cacc 952 int bytes = strlen(buffer) + 1;
3aee68aa 953 unsigned char *buf = xmallocz(size);
93821bd9 954 unsigned long n;
7efbff75 955 int status = Z_OK;
95099731 956
93821bd9
LT
957 n = stream->total_out - bytes;
958 if (n > size)
959 n = size;
960 memcpy(buf, (char *) buffer + bytes, n);
961 bytes = n;
456cdf6e
LT
962 if (bytes <= size) {
963 /*
964 * The above condition must be (bytes <= size), not
965 * (bytes < size). In other words, even though we
ccf5ace0 966 * expect no more output and set avail_out to zero,
456cdf6e
LT
967 * the input zlib stream may have bytes that express
968 * "this concludes the stream", and we *do* want to
969 * eat that input.
970 *
971 * Otherwise we would not be able to test that we
972 * consumed all the input to reach the expected size;
973 * we also want to check that zlib tells us that all
974 * went well with status == Z_STREAM_END at the end.
975 */
5180cacc
LT
976 stream->next_out = buf + bytes;
977 stream->avail_out = size - bytes;
7efbff75 978 while (status == Z_OK)
39c68542 979 status = git_inflate(stream, Z_FINISH);
5180cacc 980 }
456cdf6e 981 if (status == Z_STREAM_END && !stream->avail_in) {
39c68542 982 git_inflate_end(stream);
7efbff75 983 return buf;
95099731
NTND
984 }
985
7efbff75
JH
986 if (status < 0)
987 error("corrupt loose object '%s'", sha1_to_hex(sha1));
988 else if (stream->avail_in)
989 error("garbage at end of loose object '%s'",
990 sha1_to_hex(sha1));
991 free(buf);
992 return NULL;
95099731
NTND
993}
994
d40d535b 995/*
5180cacc
LT
996 * We used to just use "sscanf()", but that's actually way
997 * too permissive for what we want to check. So do an anal
998 * object header parse by hand.
d40d535b 999 */
46f03448
KN
1000static int parse_sha1_header_extended(const char *hdr, struct object_info *oi,
1001 unsigned int flags)
1f688557 1002{
46f03448 1003 const char *type_buf = hdr;
5180cacc 1004 unsigned long size;
46f03448 1005 int type, type_len = 0;
43057304 1006
5180cacc 1007 /*
46f03448 1008 * The type can be of any size but is followed by
21666f1a 1009 * a space.
5180cacc 1010 */
5180cacc
LT
1011 for (;;) {
1012 char c = *hdr++;
d21f8426
JH
1013 if (!c)
1014 return -1;
5180cacc
LT
1015 if (c == ' ')
1016 break;
46f03448 1017 type_len++;
5180cacc 1018 }
1f688557 1019
46f03448
KN
1020 type = type_from_string_gently(type_buf, type_len, 1);
1021 if (oi->typename)
1022 strbuf_add(oi->typename, type_buf, type_len);
1023 /*
1024 * Set type to 0 if its an unknown object and
2e3a16b2 1025 * we're obtaining the type using '--allow-unknown-type'
46f03448
KN
1026 * option.
1027 */
19fc5e84 1028 if ((flags & OBJECT_INFO_ALLOW_UNKNOWN_TYPE) && (type < 0))
46f03448
KN
1029 type = 0;
1030 else if (type < 0)
1031 die("invalid object type");
1032 if (oi->typep)
1033 *oi->typep = type;
5180cacc
LT
1034
1035 /*
1036 * The length must follow immediately, and be in canonical
1037 * decimal format (ie "010" is not valid).
1038 */
1039 size = *hdr++ - '0';
1040 if (size > 9)
1041 return -1;
1042 if (size) {
1043 for (;;) {
1044 unsigned long c = *hdr - '0';
1045 if (c > 9)
1046 break;
1047 hdr++;
1048 size = size * 10 + c;
1b1005d1 1049 }
c01f51cc 1050 }
46f03448
KN
1051
1052 if (oi->sizep)
1053 *oi->sizep = size;
5180cacc
LT
1054
1055 /*
1056 * The length must be followed by a zero byte
1057 */
46f03448 1058 return *hdr ? -1 : type;
1f688557
JH
1059}
1060
46f03448 1061int parse_sha1_header(const char *hdr, unsigned long *sizep)
bf592c50 1062{
27b5c1a0 1063 struct object_info oi = OBJECT_INFO_INIT;
21666f1a 1064
46f03448 1065 oi.sizep = sizep;
1f0c0d36 1066 return parse_sha1_header_extended(hdr, &oi, 0);
bf592c50
DB
1067}
1068
052fe5ea 1069static int sha1_loose_object_info(const unsigned char *sha1,
46f03448
KN
1070 struct object_info *oi,
1071 int flags)
65c2e0c3 1072{
46f03448
KN
1073 int status = 0;
1074 unsigned long mapsize;
65c2e0c3 1075 void *map;
ef49a7a0 1076 git_zstream stream;
d65a16f6 1077 char hdr[32];
46f03448 1078 struct strbuf hdrbuf = STRBUF_INIT;
c84a1f3e 1079 unsigned long size_scratch;
65c2e0c3 1080
5d642e75
JK
1081 if (oi->delta_base_sha1)
1082 hashclr(oi->delta_base_sha1);
1083
052fe5ea
JK
1084 /*
1085 * If we don't care about type or size, then we don't
4ef8d1dd
JH
1086 * need to look inside the object at all. Note that we
1087 * do not optimize out the stat call, even if the
1088 * caller doesn't care about the disk-size, since our
1089 * return value implicitly indicates whether the
1090 * object even exists.
052fe5ea 1091 */
c84a1f3e 1092 if (!oi->typep && !oi->typename && !oi->sizep && !oi->contentp) {
771e7d57 1093 const char *path;
4ef8d1dd 1094 struct stat st;
771e7d57 1095 if (stat_sha1_file(sha1, &st, &path) < 0)
4ef8d1dd
JH
1096 return -1;
1097 if (oi->disk_sizep)
23c339c0 1098 *oi->disk_sizep = st.st_size;
052fe5ea
JK
1099 return 0;
1100 }
1101
bb6b8e4f 1102 map = map_sha1_file(sha1, &mapsize);
f0df4ed5 1103 if (!map)
dbea72a8 1104 return -1;
c84a1f3e
JT
1105
1106 if (!oi->sizep)
1107 oi->sizep = &size_scratch;
1108
23c339c0
JK
1109 if (oi->disk_sizep)
1110 *oi->disk_sizep = mapsize;
19fc5e84 1111 if ((flags & OBJECT_INFO_ALLOW_UNKNOWN_TYPE)) {
46f03448
KN
1112 if (unpack_sha1_header_to_strbuf(&stream, map, mapsize, hdr, sizeof(hdr), &hdrbuf) < 0)
1113 status = error("unable to unpack %s header with --allow-unknown-type",
1114 sha1_to_hex(sha1));
1115 } else if (unpack_sha1_header(&stream, map, mapsize, hdr, sizeof(hdr)) < 0)
36e4d74a
JH
1116 status = error("unable to unpack %s header",
1117 sha1_to_hex(sha1));
46f03448
KN
1118 if (status < 0)
1119 ; /* Do nothing */
1120 else if (hdrbuf.len) {
1121 if ((status = parse_sha1_header_extended(hdrbuf.buf, oi, flags)) < 0)
1122 status = error("unable to parse %s header with --allow-unknown-type",
1123 sha1_to_hex(sha1));
1124 } else if ((status = parse_sha1_header_extended(hdr, oi, flags)) < 0)
36e4d74a 1125 status = error("unable to parse %s header", sha1_to_hex(sha1));
c84a1f3e 1126
b3ea7dd3 1127 if (status >= 0 && oi->contentp) {
c84a1f3e
JT
1128 *oi->contentp = unpack_sha1_rest(&stream, hdr,
1129 *oi->sizep, sha1);
b3ea7dd3
JK
1130 if (!*oi->contentp) {
1131 git_inflate_end(&stream);
1132 status = -1;
1133 }
1134 } else
c84a1f3e
JT
1135 git_inflate_end(&stream);
1136
65c2e0c3 1137 munmap(map, mapsize);
46f03448 1138 if (status && oi->typep)
23c339c0 1139 *oi->typep = status;
c84a1f3e
JT
1140 if (oi->sizep == &size_scratch)
1141 oi->sizep = NULL;
46f03448 1142 strbuf_release(&hdrbuf);
3ab0fb06 1143 oi->whence = OI_LOOSE;
93cff9a9 1144 return (status < 0) ? status : 0;
65c2e0c3
JH
1145}
1146
de7b5d62 1147int sha1_object_info_extended(const unsigned char *sha1, struct object_info *oi, unsigned flags)
f0df4ed5 1148{
cd585e2a 1149 static struct object_info blank_oi = OBJECT_INFO_INIT;
f0df4ed5 1150 struct pack_entry e;
5b086407 1151 int rtype;
1f0c0d36
JT
1152 const unsigned char *real = (flags & OBJECT_INFO_LOOKUP_REPLACE) ?
1153 lookup_replace_object(sha1) :
1154 sha1;
f0df4ed5 1155
cd585e2a
JT
1156 if (!oi)
1157 oi = &blank_oi;
1158
dfdd4afc
JT
1159 if (!(flags & OBJECT_INFO_SKIP_CACHED)) {
1160 struct cached_object *co = find_cached_object(real);
1161 if (co) {
1162 if (oi->typep)
1163 *(oi->typep) = co->type;
1164 if (oi->sizep)
1165 *(oi->sizep) = co->size;
1166 if (oi->disk_sizep)
1167 *(oi->disk_sizep) = 0;
1168 if (oi->delta_base_sha1)
1169 hashclr(oi->delta_base_sha1);
1170 if (oi->typename)
1171 strbuf_addstr(oi->typename, typename(co->type));
1172 if (oi->contentp)
1173 *oi->contentp = xmemdupz(co->buf, co->size);
1174 oi->whence = OI_CACHED;
1175 return 0;
1176 }
c4d9986f
NTND
1177 }
1178
1f7117ef 1179 if (!find_pack_entry(real, &e)) {
ddd63e64 1180 /* Most likely it's a loose object. */
3ab0fb06 1181 if (!sha1_loose_object_info(real, oi, flags))
5b086407 1182 return 0;
ddd63e64
SG
1183
1184 /* Not a loose object; someone else may have just packed it. */
dfdd4afc 1185 if (flags & OBJECT_INFO_QUICK) {
052fe5ea 1186 return -1;
dfdd4afc
JT
1187 } else {
1188 reprepare_packed_git();
1189 if (!find_pack_entry(real, &e))
1190 return -1;
1191 }
f0df4ed5 1192 }
3d77d877 1193
cd585e2a
JT
1194 if (oi == &blank_oi)
1195 /*
1196 * We know that the caller doesn't actually need the
1197 * information below, so return early.
1198 */
1199 return 0;
46f03448 1200
23c339c0 1201 rtype = packed_object_info(e.p, e.offset, oi);
412916ee 1202 if (rtype < 0) {
1f7117ef
CC
1203 mark_bad_packed_object(e.p, real);
1204 return sha1_object_info_extended(real, oi, 0);
3ab0fb06 1205 } else if (oi->whence == OI_PACKED) {
9a490590
JH
1206 oi->u.packed.offset = e.offset;
1207 oi->u.packed.pack = e.p;
1208 oi->u.packed.is_delta = (rtype == OBJ_REF_DELTA ||
1209 rtype == OBJ_OFS_DELTA);
3d77d877
NP
1210 }
1211
5b086407 1212 return 0;
f0df4ed5
JS
1213}
1214
3fc0dca9 1215/* returns enum object_type or negative */
9a490590
JH
1216int sha1_object_info(const unsigned char *sha1, unsigned long *sizep)
1217{
5b086407 1218 enum object_type type;
27b5c1a0 1219 struct object_info oi = OBJECT_INFO_INIT;
9a490590 1220
5b086407 1221 oi.typep = &type;
9a490590 1222 oi.sizep = sizep;
1f0c0d36
JT
1223 if (sha1_object_info_extended(sha1, &oi,
1224 OBJECT_INFO_LOOKUP_REPLACE) < 0)
5b086407
JK
1225 return -1;
1226 return type;
9a490590
JH
1227}
1228
f1d8130b
JT
1229static void *read_object(const unsigned char *sha1, enum object_type *type,
1230 unsigned long *size)
1231{
1232 struct object_info oi = OBJECT_INFO_INIT;
1233 void *content;
1234 oi.typep = type;
1235 oi.sizep = size;
1236 oi.contentp = &content;
1237
1238 if (sha1_object_info_extended(sha1, &oi, 0) < 0)
1239 return NULL;
1240 return content;
1241}
1242
21666f1a
NP
1243int pretend_sha1_file(void *buf, unsigned long len, enum object_type type,
1244 unsigned char *sha1)
d66b37bb
JH
1245{
1246 struct cached_object *co;
1247
21666f1a 1248 hash_sha1_file(buf, len, typename(type), sha1);
d66b37bb
JH
1249 if (has_sha1_file(sha1) || find_cached_object(sha1))
1250 return 0;
c7353967 1251 ALLOC_GROW(cached_objects, cached_object_nr + 1, cached_object_alloc);
d66b37bb
JH
1252 co = &cached_objects[cached_object_nr++];
1253 co->size = len;
21666f1a 1254 co->type = type;
efa13f7b
JH
1255 co->buf = xmalloc(len);
1256 memcpy(co->buf, buf, len);
d66b37bb
JH
1257 hashcpy(co->sha1, sha1);
1258 return 0;
1259}
1260
b6c4cecc
JH
1261/*
1262 * This function dies on corrupt objects; the callers who want to
1263 * deal with them should arrange to call read_object() and give error
1264 * messages themselves.
1265 */
5bf29b95
JH
1266void *read_sha1_file_extended(const unsigned char *sha1,
1267 enum object_type *type,
1268 unsigned long *size,
1f0c0d36 1269 int lookup_replace)
ac939109 1270{
3ba7a065 1271 void *data;
b6c4cecc 1272 const struct packed_git *p;
771e7d57
JK
1273 const char *path;
1274 struct stat st;
1f0c0d36
JT
1275 const unsigned char *repl = lookup_replace ? lookup_replace_object(sha1)
1276 : sha1;
b6c4cecc 1277
3ba7a065
JH
1278 errno = 0;
1279 data = read_object(repl, type, size);
4bbf5a26 1280 if (data)
b6c4cecc 1281 return data;
68095570 1282
25f3af3f 1283 if (errno && errno != ENOENT)
3ba7a065
JH
1284 die_errno("failed to read object %s", sha1_to_hex(sha1));
1285
68095570 1286 /* die if we replaced an object with one that does not exist */
b6c4cecc 1287 if (repl != sha1)
68095570
CC
1288 die("replacement %s not found for %s",
1289 sha1_to_hex(repl), sha1_to_hex(sha1));
1290
771e7d57 1291 if (!stat_sha1_file(repl, &st, &path))
b6c4cecc
JH
1292 die("loose object %s (stored in %s) is corrupt",
1293 sha1_to_hex(repl), path);
68095570 1294
b6c4cecc
JH
1295 if ((p = has_packed_and_bad(repl)) != NULL)
1296 die("packed object %s (stored in %s) is corrupt",
1297 sha1_to_hex(repl), p->pack_name);
f5552aee 1298
b6c4cecc 1299 return NULL;
ac939109
NP
1300}
1301
40469ee9 1302void *read_object_with_reference(const unsigned char *sha1,
21666f1a 1303 const char *required_type_name,
40469ee9
JH
1304 unsigned long *size,
1305 unsigned char *actual_sha1_return)
f4913f91 1306{
21666f1a 1307 enum object_type type, required_type;
f4913f91
JH
1308 void *buffer;
1309 unsigned long isize;
40469ee9 1310 unsigned char actual_sha1[20];
f4913f91 1311
21666f1a 1312 required_type = type_from_string(required_type_name);
e702496e 1313 hashcpy(actual_sha1, sha1);
40469ee9
JH
1314 while (1) {
1315 int ref_length = -1;
1316 const char *ref_type = NULL;
f4913f91 1317
21666f1a 1318 buffer = read_sha1_file(actual_sha1, &type, &isize);
40469ee9
JH
1319 if (!buffer)
1320 return NULL;
21666f1a 1321 if (type == required_type) {
40469ee9
JH
1322 *size = isize;
1323 if (actual_sha1_return)
e702496e 1324 hashcpy(actual_sha1_return, actual_sha1);
40469ee9
JH
1325 return buffer;
1326 }
1327 /* Handle references */
21666f1a 1328 else if (type == OBJ_COMMIT)
40469ee9 1329 ref_type = "tree ";
21666f1a 1330 else if (type == OBJ_TAG)
40469ee9
JH
1331 ref_type = "object ";
1332 else {
1333 free(buffer);
1334 return NULL;
1335 }
1336 ref_length = strlen(ref_type);
f4913f91 1337
50974ec9
MK
1338 if (ref_length + 40 > isize ||
1339 memcmp(buffer, ref_type, ref_length) ||
1d7f171c 1340 get_sha1_hex((char *) buffer + ref_length, actual_sha1)) {
40469ee9
JH
1341 free(buffer);
1342 return NULL;
1343 }
1cf58e72 1344 free(buffer);
40469ee9
JH
1345 /* Now we have the ID of the referred-to object in
1346 * actual_sha1. Check again. */
f4913f91 1347 }
f4913f91
JH
1348}
1349
ce9fbf16 1350static void write_sha1_file_prepare(const void *buf, unsigned long len,
972a9155 1351 const char *type, unsigned char *sha1,
d65a16f6 1352 char *hdr, int *hdrlen)
d410c0f5 1353{
9126f009 1354 git_SHA_CTX c;
d410c0f5
JH
1355
1356 /* Generate the header */
ef1286d3 1357 *hdrlen = xsnprintf(hdr, *hdrlen, "%s %lu", type, len)+1;
d410c0f5
JH
1358
1359 /* Sha1.. */
9126f009
NP
1360 git_SHA1_Init(&c);
1361 git_SHA1_Update(&c, hdr, *hdrlen);
1362 git_SHA1_Update(&c, buf, len);
1363 git_SHA1_Final(sha1, &c);
d410c0f5
JH
1364}
1365
230f1322 1366/*
5a688fe4 1367 * Move the just written object into its final resting place.
230f1322 1368 */
cb5add58 1369int finalize_object_file(const char *tmpfile, const char *filename)
230f1322 1370{
e32c0a9c 1371 int ret = 0;
5a688fe4 1372
348df166 1373 if (object_creation_mode == OBJECT_CREATION_USES_RENAMES)
be66a6c4
JS
1374 goto try_rename;
1375 else if (link(tmpfile, filename))
e32c0a9c 1376 ret = errno;
7ebb6fca
LT
1377
1378 /*
1379 * Coda hack - coda doesn't like cross-directory links,
1380 * so we fall back to a rename, which will mean that it
1381 * won't be able to check collisions, but that's not a
1382 * big deal.
1383 *
1384 * The same holds for FAT formatted media.
1385 *
3be1f18e 1386 * When this succeeds, we just return. We have nothing
7ebb6fca
LT
1387 * left to unlink.
1388 */
1389 if (ret && ret != EEXIST) {
be66a6c4 1390 try_rename:
7ebb6fca 1391 if (!rename(tmpfile, filename))
3be1f18e 1392 goto out;
9e48b389 1393 ret = errno;
230f1322 1394 }
691f1a28 1395 unlink_or_warn(tmpfile);
230f1322
LT
1396 if (ret) {
1397 if (ret != EEXIST) {
7616c6ca 1398 return error_errno("unable to write sha1 filename %s", filename);
230f1322
LT
1399 }
1400 /* FIXME!!! Collision check here ? */
1401 }
1402
3be1f18e 1403out:
5256b006 1404 if (adjust_shared_perm(filename))
5a688fe4 1405 return error("unable to set permission to '%s'", filename);
230f1322
LT
1406 return 0;
1407}
1408
4d548150
LT
1409static int write_buffer(int fd, const void *buf, size_t len)
1410{
d34cf19b 1411 if (write_in_full(fd, buf, len) < 0)
7616c6ca 1412 return error_errno("file write error");
4d548150
LT
1413 return 0;
1414}
1415
ce9fbf16 1416int hash_sha1_file(const void *buf, unsigned long len, const char *type,
abdc3fc8
RS
1417 unsigned char *sha1)
1418{
d65a16f6 1419 char hdr[32];
ef1286d3 1420 int hdrlen = sizeof(hdr);
abdc3fc8
RS
1421 write_sha1_file_prepare(buf, len, type, sha1, hdr, &hdrlen);
1422 return 0;
1423}
1424
e9039dd3
LT
1425/* Finalize a file on disk, and close it. */
1426static void close_sha1_file(int fd)
1427{
aafe9fba
LT
1428 if (fsync_object_files)
1429 fsync_or_die(fd, "sha1 file");
e9039dd3 1430 if (close(fd) != 0)
d824cbba 1431 die_errno("error when closing sha1 file");
e9039dd3
LT
1432}
1433
5723fe7e
LT
1434/* Size of directory component, including the ending '/' */
1435static inline int directory_size(const char *filename)
1436{
1437 const char *s = strrchr(filename, '/');
1438 if (!s)
1439 return 0;
1440 return s - filename + 1;
1441}
1442
1443/*
1444 * This creates a temporary file in the same directory as the final
1445 * 'filename'
1446 *
1447 * We want to avoid cross-directory filename renames, because those
1448 * can have problems on various filesystems (FAT, NFS, Coda).
1449 */
d4b3d11a 1450static int create_tmpfile(struct strbuf *tmp, const char *filename)
5723fe7e
LT
1451{
1452 int fd, dirlen = directory_size(filename);
1453
d4b3d11a
JK
1454 strbuf_reset(tmp);
1455 strbuf_add(tmp, filename, dirlen);
1456 strbuf_addstr(tmp, "tmp_obj_XXXXXX");
1457 fd = git_mkstemp_mode(tmp->buf, 0444);
cbacbf4e 1458 if (fd < 0 && dirlen && errno == ENOENT) {
d4b3d11a
JK
1459 /*
1460 * Make sure the directory exists; note that the contents
1461 * of the buffer are undefined after mkstemp returns an
1462 * error, so we have to rewrite the whole buffer from
1463 * scratch.
1464 */
1465 strbuf_reset(tmp);
1466 strbuf_add(tmp, filename, dirlen - 1);
1467 if (mkdir(tmp->buf, 0777) && errno != EEXIST)
b2476a60 1468 return -1;
d4b3d11a 1469 if (adjust_shared_perm(tmp->buf))
5723fe7e
LT
1470 return -1;
1471
1472 /* Try again */
d4b3d11a
JK
1473 strbuf_addstr(tmp, "/tmp_obj_XXXXXX");
1474 fd = git_mkstemp_mode(tmp->buf, 0444);
5723fe7e
LT
1475 }
1476 return fd;
1477}
1478
bbac7311 1479static int write_loose_object(const unsigned char *sha1, char *hdr, int hdrlen,
c00e657d 1480 const void *buf, unsigned long len, time_t mtime)
0fcfd160 1481{
915308b1 1482 int fd, ret;
9892beba 1483 unsigned char compressed[4096];
ef49a7a0 1484 git_zstream stream;
748af44c
NP
1485 git_SHA_CTX c;
1486 unsigned char parano_sha1[20];
d4b3d11a 1487 static struct strbuf tmp_file = STRBUF_INIT;
30d6c6ea 1488 const char *filename = sha1_file_name(sha1);
a44c9a5e 1489
d4b3d11a 1490 fd = create_tmpfile(&tmp_file, filename);
aac17941 1491 if (fd < 0) {
35243577 1492 if (errno == EACCES)
82247e9b 1493 return error("insufficient permission for adding an object to repository database %s", get_object_directory());
916d081b 1494 else
7616c6ca 1495 return error_errno("unable to create temporary file");
aac17941
LT
1496 }
1497
0fcfd160 1498 /* Set it up */
55bb5c91 1499 git_deflate_init(&stream, zlib_compression_level);
0fcfd160 1500 stream.next_out = compressed;
9892beba 1501 stream.avail_out = sizeof(compressed);
748af44c 1502 git_SHA1_Init(&c);
a44c9a5e
LT
1503
1504 /* First header.. */
d65a16f6 1505 stream.next_in = (unsigned char *)hdr;
a44c9a5e 1506 stream.avail_in = hdrlen;
55bb5c91
JH
1507 while (git_deflate(&stream, 0) == Z_OK)
1508 ; /* nothing */
748af44c 1509 git_SHA1_Update(&c, hdr, hdrlen);
a44c9a5e
LT
1510
1511 /* Then the data itself.. */
c00e657d 1512 stream.next_in = (void *)buf;
a44c9a5e 1513 stream.avail_in = len;
9892beba 1514 do {
748af44c 1515 unsigned char *in0 = stream.next_in;
55bb5c91 1516 ret = git_deflate(&stream, Z_FINISH);
748af44c 1517 git_SHA1_Update(&c, in0, stream.next_in - in0);
9892beba
NP
1518 if (write_buffer(fd, compressed, stream.next_out - compressed) < 0)
1519 die("unable to write sha1 file");
1520 stream.next_out = compressed;
1521 stream.avail_out = sizeof(compressed);
1522 } while (ret == Z_OK);
1523
ac54c277
LT
1524 if (ret != Z_STREAM_END)
1525 die("unable to deflate new object %s (%d)", sha1_to_hex(sha1), ret);
55bb5c91 1526 ret = git_deflate_end_gently(&stream);
ac54c277
LT
1527 if (ret != Z_OK)
1528 die("deflateEnd on object %s failed (%d)", sha1_to_hex(sha1), ret);
748af44c
NP
1529 git_SHA1_Final(parano_sha1, &c);
1530 if (hashcmp(sha1, parano_sha1) != 0)
1531 die("confused by unstable object source data for %s", sha1_to_hex(sha1));
ac54c277 1532
e9039dd3 1533 close_sha1_file(fd);
0fcfd160 1534
bbac7311
NP
1535 if (mtime) {
1536 struct utimbuf utb;
1537 utb.actime = mtime;
1538 utb.modtime = mtime;
d4b3d11a 1539 if (utime(tmp_file.buf, &utb) < 0)
7616c6ca 1540 warning_errno("failed utime() on %s", tmp_file.buf);
bbac7311
NP
1541 }
1542
d4b3d11a 1543 return finalize_object_file(tmp_file.buf, filename);
0fcfd160 1544}
8237b185 1545
33d4221c
JK
1546static int freshen_loose_object(const unsigned char *sha1)
1547{
1548 return check_and_freshen(sha1, 1);
1549}
1550
1551static int freshen_packed_object(const unsigned char *sha1)
1552{
1553 struct pack_entry e;
ee1c6c34
JK
1554 if (!find_pack_entry(sha1, &e))
1555 return 0;
1556 if (e.p->freshened)
1557 return 1;
1558 if (!freshen_file(e.p->pack_name))
1559 return 0;
1560 e.p->freshened = 1;
1561 return 1;
33d4221c
JK
1562}
1563
1427a7ff 1564int write_sha1_file(const void *buf, unsigned long len, const char *type, unsigned char *sha1)
bbac7311 1565{
bbac7311 1566 char hdr[32];
ef1286d3 1567 int hdrlen = sizeof(hdr);
bbac7311
NP
1568
1569 /* Normally if we have it in the pack then we do not bother writing
1570 * it out into .git/objects/??/?{38} file.
1571 */
1572 write_sha1_file_prepare(buf, len, type, sha1, hdr, &hdrlen);
b5f52f37 1573 if (freshen_packed_object(sha1) || freshen_loose_object(sha1))
bbac7311
NP
1574 return 0;
1575 return write_loose_object(sha1, hdr, hdrlen, buf, len, 0);
1576}
1577
0c3db67c 1578int hash_sha1_file_literally(const void *buf, unsigned long len, const char *type,
da77611d 1579 struct object_id *oid, unsigned flags)
0c3db67c
ES
1580{
1581 char *header;
1582 int hdrlen, status = 0;
1583
1584 /* type string, SP, %lu of the length plus NUL must fit this */
ef1286d3
JK
1585 hdrlen = strlen(type) + 32;
1586 header = xmalloc(hdrlen);
da77611d 1587 write_sha1_file_prepare(buf, len, type, oid->hash, header, &hdrlen);
0c3db67c
ES
1588
1589 if (!(flags & HASH_WRITE_OBJECT))
1590 goto cleanup;
da77611d 1591 if (freshen_packed_object(oid->hash) || freshen_loose_object(oid->hash))
0c3db67c 1592 goto cleanup;
da77611d 1593 status = write_loose_object(oid->hash, header, hdrlen, buf, len, 0);
0c3db67c
ES
1594
1595cleanup:
1596 free(header);
1597 return status;
1598}
1599
bbac7311
NP
1600int force_object_loose(const unsigned char *sha1, time_t mtime)
1601{
bbac7311
NP
1602 void *buf;
1603 unsigned long len;
1604 enum object_type type;
1605 char hdr[32];
1606 int hdrlen;
1fb23e65 1607 int ret;
bbac7311 1608
c529d75a 1609 if (has_loose_object(sha1))
bbac7311 1610 return 0;
789bf26b 1611 buf = read_object(sha1, &type, &len);
bbac7311
NP
1612 if (!buf)
1613 return error("cannot read sha1_file for %s", sha1_to_hex(sha1));
ef1286d3 1614 hdrlen = xsnprintf(hdr, sizeof(hdr), "%s %lu", typename(type), len) + 1;
1fb23e65
BS
1615 ret = write_loose_object(sha1, hdr, hdrlen, buf, len, mtime);
1616 free(buf);
1617
1618 return ret;
bbac7311
NP
1619}
1620
0eeb077b 1621int has_sha1_file_with_flags(const unsigned char *sha1, int flags)
8237b185 1622{
3e8b7d3c
JN
1623 if (!startup_info->have_repository)
1624 return 0;
e83e71c5
JT
1625 return sha1_object_info_extended(sha1, NULL,
1626 flags | OBJECT_INFO_SKIP_CACHED) >= 0;
b419aa25 1627}
1628
1629int has_object_file(const struct object_id *oid)
1630{
1631 return has_sha1_file(oid->hash);
8237b185 1632}
74400e71 1633
5827a035
JK
1634int has_object_file_with_flags(const struct object_id *oid, int flags)
1635{
1636 return has_sha1_file_with_flags(oid->hash, flags);
1637}
1638
c879daa2
NTND
1639static void check_tree(const void *buf, size_t size)
1640{
1641 struct tree_desc desc;
1642 struct name_entry entry;
1643
1644 init_tree_desc(&desc, buf, size);
1645 while (tree_entry(&desc, &entry))
1646 /* do nothing
1647 * tree_entry() will die() on malformed entries */
1648 ;
1649}
1650
1651static void check_commit(const void *buf, size_t size)
1652{
1653 struct commit c;
1654 memset(&c, 0, sizeof(c));
1655 if (parse_commit_buffer(&c, buf, size))
1656 die("corrupt commit");
1657}
1658
1659static void check_tag(const void *buf, size_t size)
1660{
1661 struct tag t;
1662 memset(&t, 0, sizeof(t));
1663 if (parse_tag_buffer(&t, buf, size))
1664 die("corrupt tag");
1665}
1666
43df4f86 1667static int index_mem(unsigned char *sha1, void *buf, size_t size,
c4ce46fc
JH
1668 enum object_type type,
1669 const char *path, unsigned flags)
e7332f96 1670{
6c510bee 1671 int ret, re_allocated = 0;
c4ce46fc 1672 int write_object = flags & HASH_WRITE_OBJECT;
74400e71 1673
7672db20 1674 if (!type)
edaec3fb 1675 type = OBJ_BLOB;
6c510bee
LT
1676
1677 /*
1678 * Convert blobs to git internal format
1679 */
43df4f86 1680 if ((type == OBJ_BLOB) && path) {
f285a2d7 1681 struct strbuf nbuf = STRBUF_INIT;
82b474e0 1682 if (convert_to_git(&the_index, path, buf, size, &nbuf,
5e12e78e 1683 write_object ? safe_crlf : SAFE_CRLF_FALSE)) {
b315c5c0 1684 buf = strbuf_detach(&nbuf, &size);
6c510bee
LT
1685 re_allocated = 1;
1686 }
1687 }
c4ce46fc 1688 if (flags & HASH_FORMAT_CHECK) {
c879daa2
NTND
1689 if (type == OBJ_TREE)
1690 check_tree(buf, size);
1691 if (type == OBJ_COMMIT)
1692 check_commit(buf, size);
1693 if (type == OBJ_TAG)
1694 check_tag(buf, size);
1695 }
6c510bee 1696
7672db20 1697 if (write_object)
edaec3fb 1698 ret = write_sha1_file(buf, size, typename(type), sha1);
abdc3fc8 1699 else
edaec3fb 1700 ret = hash_sha1_file(buf, size, typename(type), sha1);
43df4f86 1701 if (re_allocated)
6c510bee 1702 free(buf);
43df4f86
DP
1703 return ret;
1704}
1705
9035d75a
SP
1706static int index_stream_convert_blob(unsigned char *sha1, int fd,
1707 const char *path, unsigned flags)
1708{
1709 int ret;
1710 const int write_object = flags & HASH_WRITE_OBJECT;
1711 struct strbuf sbuf = STRBUF_INIT;
1712
1713 assert(path);
1714 assert(would_convert_to_git_filter_fd(path));
1715
d6c41c20 1716 convert_to_git_filter_fd(&the_index, path, fd, &sbuf,
9035d75a
SP
1717 write_object ? safe_crlf : SAFE_CRLF_FALSE);
1718
1719 if (write_object)
1720 ret = write_sha1_file(sbuf.buf, sbuf.len, typename(OBJ_BLOB),
1721 sha1);
1722 else
1723 ret = hash_sha1_file(sbuf.buf, sbuf.len, typename(OBJ_BLOB),
1724 sha1);
1725 strbuf_release(&sbuf);
1726 return ret;
1727}
1728
7b41e1e1
JH
1729static int index_pipe(unsigned char *sha1, int fd, enum object_type type,
1730 const char *path, unsigned flags)
1731{
1732 struct strbuf sbuf = STRBUF_INIT;
1733 int ret;
1734
1735 if (strbuf_read(&sbuf, fd, 4096) >= 0)
1736 ret = index_mem(sha1, sbuf.buf, sbuf.len, type, path, flags);
1737 else
1738 ret = -1;
1739 strbuf_release(&sbuf);
1740 return ret;
1741}
1742
ea68b0ce
DP
1743#define SMALL_FILE_SIZE (32*1024)
1744
7b41e1e1
JH
1745static int index_core(unsigned char *sha1, int fd, size_t size,
1746 enum object_type type, const char *path,
1747 unsigned flags)
43df4f86
DP
1748{
1749 int ret;
43df4f86 1750
7b41e1e1 1751 if (!size) {
f6a1e1e2 1752 ret = index_mem(sha1, "", size, type, path, flags);
ea68b0ce
DP
1753 } else if (size <= SMALL_FILE_SIZE) {
1754 char *buf = xmalloc(size);
90dca671
JK
1755 ssize_t read_result = read_in_full(fd, buf, size);
1756 if (read_result < 0)
1757 ret = error_errno("read error while indexing %s",
1758 path ? path : "<unknown>");
1759 else if (read_result != size)
1760 ret = error("short read while indexing %s",
1761 path ? path : "<unknown>");
ea68b0ce 1762 else
90dca671 1763 ret = index_mem(sha1, buf, size, type, path, flags);
ea68b0ce 1764 free(buf);
08bda208 1765 } else {
43df4f86 1766 void *buf = xmmap(NULL, size, PROT_READ, MAP_PRIVATE, fd, 0);
c4ce46fc 1767 ret = index_mem(sha1, buf, size, type, path, flags);
aac17941 1768 munmap(buf, size);
08bda208 1769 }
7b41e1e1
JH
1770 return ret;
1771}
1772
4dd1fbc7 1773/*
568508e7
JH
1774 * This creates one packfile per large blob unless bulk-checkin
1775 * machinery is "plugged".
4dd1fbc7
JH
1776 *
1777 * This also bypasses the usual "convert-to-git" dance, and that is on
1778 * purpose. We could write a streaming version of the converting
1779 * functions and insert that before feeding the data to fast-import
4f22b101
JK
1780 * (or equivalent in-core API described above). However, that is
1781 * somewhat complicated, as we do not know the size of the filter
1782 * result, which we need to know beforehand when writing a git object.
1783 * Since the primary motivation for trying to stream from the working
1784 * tree file and to avoid mmaping it in core is to deal with large
1785 * binary blobs, they generally do not want to get any conversion, and
1786 * callers should avoid this code path when filters are requested.
4dd1fbc7 1787 */
7d5e1dc3 1788static int index_stream(struct object_id *oid, int fd, size_t size,
4dd1fbc7
JH
1789 enum object_type type, const char *path,
1790 unsigned flags)
1791{
7d5e1dc3 1792 return index_bulk_checkin(oid->hash, fd, size, type, path, flags);
4dd1fbc7
JH
1793}
1794
e3506559 1795int index_fd(struct object_id *oid, int fd, struct stat *st,
7b41e1e1
JH
1796 enum object_type type, const char *path, unsigned flags)
1797{
1798 int ret;
7b41e1e1 1799
9079ab7c
SP
1800 /*
1801 * Call xsize_t() only when needed to avoid potentially unnecessary
1802 * die() for large files.
1803 */
9035d75a 1804 if (type == OBJ_BLOB && path && would_convert_to_git_filter_fd(path))
e3506559 1805 ret = index_stream_convert_blob(oid->hash, fd, path, flags);
9035d75a 1806 else if (!S_ISREG(st->st_mode))
e3506559 1807 ret = index_pipe(oid->hash, fd, type, path, flags);
9079ab7c 1808 else if (st->st_size <= big_file_threshold || type != OBJ_BLOB ||
82b474e0 1809 (path && would_convert_to_git(&the_index, path)))
e3506559 1810 ret = index_core(oid->hash, fd, xsize_t(st->st_size), type, path,
9079ab7c 1811 flags);
4dd1fbc7 1812 else
7d5e1dc3 1813 ret = index_stream(oid, fd, xsize_t(st->st_size), type, path,
9079ab7c 1814 flags);
43df4f86 1815 close(fd);
aac17941 1816 return ret;
74400e71 1817}
ec1fcc16 1818
98e019b0 1819int index_path(struct object_id *oid, const char *path, struct stat *st, unsigned flags)
ec1fcc16
JH
1820{
1821 int fd;
b760d3aa 1822 struct strbuf sb = STRBUF_INIT;
ea8e0297 1823 int rc = 0;
ec1fcc16
JH
1824
1825 switch (st->st_mode & S_IFMT) {
1826 case S_IFREG:
1827 fd = open(path, O_RDONLY);
1828 if (fd < 0)
7616c6ca 1829 return error_errno("open(\"%s\")", path);
e3506559 1830 if (index_fd(oid, fd, st, OBJ_BLOB, path, flags) < 0)
ec1fcc16
JH
1831 return error("%s: failed to insert into database",
1832 path);
1833 break;
1834 case S_IFLNK:
7616c6ca
NTND
1835 if (strbuf_readlink(&sb, path, st->st_size))
1836 return error_errno("readlink(\"%s\")", path);
c4ce46fc 1837 if (!(flags & HASH_WRITE_OBJECT))
98e019b0
PO
1838 hash_sha1_file(sb.buf, sb.len, blob_type, oid->hash);
1839 else if (write_sha1_file(sb.buf, sb.len, blob_type, oid->hash))
ea8e0297 1840 rc = error("%s: failed to insert into database", path);
b760d3aa 1841 strbuf_release(&sb);
ec1fcc16 1842 break;
f35a6d3b 1843 case S_IFDIR:
98e019b0 1844 return resolve_gitlink_ref(path, "HEAD", oid->hash);
ec1fcc16
JH
1845 default:
1846 return error("%s: unsupported file type", path);
1847 }
ea8e0297 1848 return rc;
ec1fcc16 1849}
a69e5429
JH
1850
1851int read_pack_header(int fd, struct pack_header *header)
1852{
f48ecd38 1853 if (read_in_full(fd, header, sizeof(*header)) != sizeof(*header))
c697ad14
HO
1854 /* "eof before pack header was fully read" */
1855 return PH_ERROR_EOF;
1856
a69e5429
JH
1857 if (header->hdr_signature != htonl(PACK_SIGNATURE))
1858 /* "protocol error (pack signature mismatch detected)" */
1859 return PH_ERROR_PACK_SIGNATURE;
1860 if (!pack_version_ok(header->hdr_version))
1861 /* "protocol error (pack version unsupported)" */
1862 return PH_ERROR_PROTOCOL;
1863 return 0;
1864}
40d52ff7
JK
1865
1866void assert_sha1_type(const unsigned char *sha1, enum object_type expect)
1867{
1868 enum object_type type = sha1_object_info(sha1, NULL);
1869 if (type < 0)
1870 die("%s is not a valid object", sha1_to_hex(sha1));
1871 if (type != expect)
1872 die("%s is not a valid '%s' object", sha1_to_hex(sha1),
1873 typename(expect));
1874}
27e1e22d 1875
70c49050 1876int for_each_file_in_obj_subdir(unsigned int subdir_nr,
cc817ca3
RS
1877 struct strbuf *path,
1878 each_loose_object_fn obj_cb,
1879 each_loose_cruft_fn cruft_cb,
1880 each_loose_subdir_fn subdir_cb,
1881 void *data)
27e1e22d 1882{
0375f472
RS
1883 size_t origlen, baselen;
1884 DIR *dir;
27e1e22d
JK
1885 struct dirent *de;
1886 int r = 0;
1887
70c49050
RS
1888 if (subdir_nr > 0xff)
1889 BUG("invalid loose object subdirectory: %x", subdir_nr);
1890
0375f472
RS
1891 origlen = path->len;
1892 strbuf_complete(path, '/');
1893 strbuf_addf(path, "%02x", subdir_nr);
1894 baselen = path->len;
1895
1896 dir = opendir(path->buf);
27e1e22d 1897 if (!dir) {
0375f472
RS
1898 if (errno != ENOENT)
1899 r = error_errno("unable to open %s", path->buf);
1900 strbuf_setlen(path, origlen);
1901 return r;
27e1e22d
JK
1902 }
1903
1904 while ((de = readdir(dir))) {
1905 if (is_dot_or_dotdot(de->d_name))
1906 continue;
1907
1908 strbuf_setlen(path, baselen);
1909 strbuf_addf(path, "/%s", de->d_name);
1910
76c1d9a0 1911 if (strlen(de->d_name) == GIT_SHA1_HEXSZ - 2) {
dc01505f 1912 char hex[GIT_MAX_HEXSZ+1];
76c1d9a0 1913 struct object_id oid;
27e1e22d 1914
1a168e5c
JK
1915 xsnprintf(hex, sizeof(hex), "%02x%s",
1916 subdir_nr, de->d_name);
76c1d9a0 1917 if (!get_oid_hex(hex, &oid)) {
27e1e22d 1918 if (obj_cb) {
76c1d9a0 1919 r = obj_cb(&oid, path->buf, data);
27e1e22d
JK
1920 if (r)
1921 break;
1922 }
1923 continue;
1924 }
1925 }
1926
1927 if (cruft_cb) {
1928 r = cruft_cb(de->d_name, path->buf, data);
1929 if (r)
1930 break;
1931 }
1932 }
094c7e63 1933 closedir(dir);
27e1e22d 1934
094c7e63 1935 strbuf_setlen(path, baselen);
27e1e22d
JK
1936 if (!r && subdir_cb)
1937 r = subdir_cb(subdir_nr, path->buf, data);
1938
0375f472
RS
1939 strbuf_setlen(path, origlen);
1940
27e1e22d
JK
1941 return r;
1942}
1943
e6f875e0 1944int for_each_loose_file_in_objdir_buf(struct strbuf *path,
27e1e22d
JK
1945 each_loose_object_fn obj_cb,
1946 each_loose_cruft_fn cruft_cb,
1947 each_loose_subdir_fn subdir_cb,
1948 void *data)
1949{
27e1e22d
JK
1950 int r = 0;
1951 int i;
1952
27e1e22d 1953 for (i = 0; i < 256; i++) {
e6f875e0 1954 r = for_each_file_in_obj_subdir(i, path, obj_cb, cruft_cb,
27e1e22d 1955 subdir_cb, data);
27e1e22d
JK
1956 if (r)
1957 break;
1958 }
1959
e6f875e0
JK
1960 return r;
1961}
1962
1963int for_each_loose_file_in_objdir(const char *path,
1964 each_loose_object_fn obj_cb,
1965 each_loose_cruft_fn cruft_cb,
1966 each_loose_subdir_fn subdir_cb,
1967 void *data)
1968{
1969 struct strbuf buf = STRBUF_INIT;
1970 int r;
1971
1972 strbuf_addstr(&buf, path);
1973 r = for_each_loose_file_in_objdir_buf(&buf, obj_cb, cruft_cb,
1974 subdir_cb, data);
27e1e22d 1975 strbuf_release(&buf);
e6f875e0 1976
27e1e22d
JK
1977 return r;
1978}
660c889e
JK
1979
1980struct loose_alt_odb_data {
1981 each_loose_object_fn *cb;
1982 void *data;
1983};
1984
1985static int loose_from_alt_odb(struct alternate_object_database *alt,
1986 void *vdata)
1987{
1988 struct loose_alt_odb_data *data = vdata;
b0a42642
JM
1989 struct strbuf buf = STRBUF_INIT;
1990 int r;
1991
597f9134 1992 strbuf_addstr(&buf, alt->path);
b0a42642
JM
1993 r = for_each_loose_file_in_objdir_buf(&buf,
1994 data->cb, NULL, NULL,
1995 data->data);
1996 strbuf_release(&buf);
1997 return r;
660c889e
JK
1998}
1999
1385bb7b 2000int for_each_loose_object(each_loose_object_fn cb, void *data, unsigned flags)
660c889e
JK
2001{
2002 struct loose_alt_odb_data alt;
2003 int r;
2004
2005 r = for_each_loose_file_in_objdir(get_object_directory(),
2006 cb, NULL, NULL, data);
2007 if (r)
2008 return r;
2009
1385bb7b
JK
2010 if (flags & FOR_EACH_OBJECT_LOCAL_ONLY)
2011 return 0;
2012
660c889e
JK
2013 alt.cb = cb;
2014 alt.data = data;
2015 return foreach_alt_odb(loose_from_alt_odb, &alt);
2016}
2017
f6371f92
JK
2018static int check_stream_sha1(git_zstream *stream,
2019 const char *hdr,
2020 unsigned long size,
2021 const char *path,
2022 const unsigned char *expected_sha1)
2023{
2024 git_SHA_CTX c;
cd02599c 2025 unsigned char real_sha1[GIT_MAX_RAWSZ];
f6371f92
JK
2026 unsigned char buf[4096];
2027 unsigned long total_read;
2028 int status = Z_OK;
2029
2030 git_SHA1_Init(&c);
2031 git_SHA1_Update(&c, hdr, stream->total_out);
2032
2033 /*
2034 * We already read some bytes into hdr, but the ones up to the NUL
2035 * do not count against the object's content size.
2036 */
2037 total_read = stream->total_out - strlen(hdr) - 1;
2038
2039 /*
2040 * This size comparison must be "<=" to read the final zlib packets;
2041 * see the comment in unpack_sha1_rest for details.
2042 */
2043 while (total_read <= size &&
2044 (status == Z_OK || status == Z_BUF_ERROR)) {
2045 stream->next_out = buf;
2046 stream->avail_out = sizeof(buf);
2047 if (size - total_read < stream->avail_out)
2048 stream->avail_out = size - total_read;
2049 status = git_inflate(stream, Z_FINISH);
2050 git_SHA1_Update(&c, buf, stream->next_out - buf);
2051 total_read += stream->next_out - buf;
2052 }
2053 git_inflate_end(stream);
2054
2055 if (status != Z_STREAM_END) {
2056 error("corrupt loose object '%s'", sha1_to_hex(expected_sha1));
2057 return -1;
2058 }
cce044df
JK
2059 if (stream->avail_in) {
2060 error("garbage at end of loose object '%s'",
2061 sha1_to_hex(expected_sha1));
2062 return -1;
2063 }
f6371f92
JK
2064
2065 git_SHA1_Final(real_sha1, &c);
2066 if (hashcmp(expected_sha1, real_sha1)) {
2067 error("sha1 mismatch for %s (expected %s)", path,
2068 sha1_to_hex(expected_sha1));
2069 return -1;
2070 }
2071
2072 return 0;
2073}
2074
2075int read_loose_object(const char *path,
2076 const unsigned char *expected_sha1,
2077 enum object_type *type,
2078 unsigned long *size,
2079 void **contents)
2080{
2081 int ret = -1;
f6371f92
JK
2082 void *map = NULL;
2083 unsigned long mapsize;
2084 git_zstream stream;
2085 char hdr[32];
2086
2087 *contents = NULL;
2088
2089 map = map_sha1_file_1(path, NULL, &mapsize);
2090 if (!map) {
2091 error_errno("unable to mmap %s", path);
2092 goto out;
2093 }
2094
2095 if (unpack_sha1_header(&stream, map, mapsize, hdr, sizeof(hdr)) < 0) {
2096 error("unable to unpack header of %s", path);
2097 goto out;
2098 }
2099
2100 *type = parse_sha1_header(hdr, size);
2101 if (*type < 0) {
2102 error("unable to parse header of %s", path);
2103 git_inflate_end(&stream);
2104 goto out;
2105 }
2106
2107 if (*type == OBJ_BLOB) {
2108 if (check_stream_sha1(&stream, hdr, *size, path, expected_sha1) < 0)
2109 goto out;
2110 } else {
2111 *contents = unpack_sha1_rest(&stream, hdr, *size, expected_sha1);
2112 if (!*contents) {
2113 error("unable to unpack contents of %s", path);
2114 git_inflate_end(&stream);
2115 goto out;
2116 }
2117 if (check_sha1_signature(expected_sha1, *contents,
2118 *size, typename(*type))) {
2119 error("sha1 mismatch for %s (expected %s)", path,
2120 sha1_to_hex(expected_sha1));
2121 free(*contents);
2122 goto out;
2123 }
2124 }
2125
2126 ret = 0; /* everything checks out */
2127
2128out:
2129 if (map)
2130 munmap(map, mapsize);
f6371f92
JK
2131 return ret;
2132}