]> git.ipfire.org Git - thirdparty/git.git/blob - object-file.c
hash-ll.h: split out of hash.h to remove dependency on repository.h
[thirdparty/git.git] / object-file.c
1 /*
2 * GIT - The information manager from hell
3 *
4 * Copyright (C) Linus Torvalds, 2005
5 *
6 * This handles basic git object files - packing, unpacking,
7 * creation etc.
8 */
9 #include "cache.h"
10 #include "abspath.h"
11 #include "alloc.h"
12 #include "config.h"
13 #include "convert.h"
14 #include "environment.h"
15 #include "gettext.h"
16 #include "hex.h"
17 #include "string-list.h"
18 #include "lockfile.h"
19 #include "delta.h"
20 #include "pack.h"
21 #include "blob.h"
22 #include "commit.h"
23 #include "run-command.h"
24 #include "tag.h"
25 #include "tree.h"
26 #include "tree-walk.h"
27 #include "refs.h"
28 #include "pack-revindex.h"
29 #include "hash-lookup.h"
30 #include "bulk-checkin.h"
31 #include "repository.h"
32 #include "replace-object.h"
33 #include "streaming.h"
34 #include "dir.h"
35 #include "list.h"
36 #include "mergesort.h"
37 #include "quote.h"
38 #include "packfile.h"
39 #include "object-file.h"
40 #include "object-store.h"
41 #include "promisor-remote.h"
42 #include "setup.h"
43 #include "submodule.h"
44 #include "fsck.h"
45 #include "wrapper.h"
46
47 /* The maximum size for an object header. */
48 #define MAX_HEADER_LEN 32
49
50
51 #define EMPTY_TREE_SHA1_BIN_LITERAL \
52 "\x4b\x82\x5d\xc6\x42\xcb\x6e\xb9\xa0\x60" \
53 "\xe5\x4b\xf8\xd6\x92\x88\xfb\xee\x49\x04"
54 #define EMPTY_TREE_SHA256_BIN_LITERAL \
55 "\x6e\xf1\x9b\x41\x22\x5c\x53\x69\xf1\xc1" \
56 "\x04\xd4\x5d\x8d\x85\xef\xa9\xb0\x57\xb5" \
57 "\x3b\x14\xb4\xb9\xb9\x39\xdd\x74\xde\xcc" \
58 "\x53\x21"
59
60 #define EMPTY_BLOB_SHA1_BIN_LITERAL \
61 "\xe6\x9d\xe2\x9b\xb2\xd1\xd6\x43\x4b\x8b" \
62 "\x29\xae\x77\x5a\xd8\xc2\xe4\x8c\x53\x91"
63 #define EMPTY_BLOB_SHA256_BIN_LITERAL \
64 "\x47\x3a\x0f\x4c\x3b\xe8\xa9\x36\x81\xa2" \
65 "\x67\xe3\xb1\xe9\xa7\xdc\xda\x11\x85\x43" \
66 "\x6f\xe1\x41\xf7\x74\x91\x20\xa3\x03\x72" \
67 "\x18\x13"
68
69 static const struct object_id empty_tree_oid = {
70 .hash = EMPTY_TREE_SHA1_BIN_LITERAL,
71 .algo = GIT_HASH_SHA1,
72 };
73 static const struct object_id empty_blob_oid = {
74 .hash = EMPTY_BLOB_SHA1_BIN_LITERAL,
75 .algo = GIT_HASH_SHA1,
76 };
77 static const struct object_id null_oid_sha1 = {
78 .hash = {0},
79 .algo = GIT_HASH_SHA1,
80 };
81 static const struct object_id empty_tree_oid_sha256 = {
82 .hash = EMPTY_TREE_SHA256_BIN_LITERAL,
83 .algo = GIT_HASH_SHA256,
84 };
85 static const struct object_id empty_blob_oid_sha256 = {
86 .hash = EMPTY_BLOB_SHA256_BIN_LITERAL,
87 .algo = GIT_HASH_SHA256,
88 };
89 static const struct object_id null_oid_sha256 = {
90 .hash = {0},
91 .algo = GIT_HASH_SHA256,
92 };
93
94 static void git_hash_sha1_init(git_hash_ctx *ctx)
95 {
96 git_SHA1_Init(&ctx->sha1);
97 }
98
99 static void git_hash_sha1_clone(git_hash_ctx *dst, const git_hash_ctx *src)
100 {
101 git_SHA1_Clone(&dst->sha1, &src->sha1);
102 }
103
104 static void git_hash_sha1_update(git_hash_ctx *ctx, const void *data, size_t len)
105 {
106 git_SHA1_Update(&ctx->sha1, data, len);
107 }
108
109 static void git_hash_sha1_final(unsigned char *hash, git_hash_ctx *ctx)
110 {
111 git_SHA1_Final(hash, &ctx->sha1);
112 }
113
114 static void git_hash_sha1_final_oid(struct object_id *oid, git_hash_ctx *ctx)
115 {
116 git_SHA1_Final(oid->hash, &ctx->sha1);
117 memset(oid->hash + GIT_SHA1_RAWSZ, 0, GIT_MAX_RAWSZ - GIT_SHA1_RAWSZ);
118 oid->algo = GIT_HASH_SHA1;
119 }
120
121
122 static void git_hash_sha256_init(git_hash_ctx *ctx)
123 {
124 git_SHA256_Init(&ctx->sha256);
125 }
126
127 static void git_hash_sha256_clone(git_hash_ctx *dst, const git_hash_ctx *src)
128 {
129 git_SHA256_Clone(&dst->sha256, &src->sha256);
130 }
131
132 static void git_hash_sha256_update(git_hash_ctx *ctx, const void *data, size_t len)
133 {
134 git_SHA256_Update(&ctx->sha256, data, len);
135 }
136
137 static void git_hash_sha256_final(unsigned char *hash, git_hash_ctx *ctx)
138 {
139 git_SHA256_Final(hash, &ctx->sha256);
140 }
141
142 static void git_hash_sha256_final_oid(struct object_id *oid, git_hash_ctx *ctx)
143 {
144 git_SHA256_Final(oid->hash, &ctx->sha256);
145 /*
146 * This currently does nothing, so the compiler should optimize it out,
147 * but keep it in case we extend the hash size again.
148 */
149 memset(oid->hash + GIT_SHA256_RAWSZ, 0, GIT_MAX_RAWSZ - GIT_SHA256_RAWSZ);
150 oid->algo = GIT_HASH_SHA256;
151 }
152
153 static void git_hash_unknown_init(git_hash_ctx *ctx UNUSED)
154 {
155 BUG("trying to init unknown hash");
156 }
157
158 static void git_hash_unknown_clone(git_hash_ctx *dst UNUSED,
159 const git_hash_ctx *src UNUSED)
160 {
161 BUG("trying to clone unknown hash");
162 }
163
164 static void git_hash_unknown_update(git_hash_ctx *ctx UNUSED,
165 const void *data UNUSED,
166 size_t len UNUSED)
167 {
168 BUG("trying to update unknown hash");
169 }
170
171 static void git_hash_unknown_final(unsigned char *hash UNUSED,
172 git_hash_ctx *ctx UNUSED)
173 {
174 BUG("trying to finalize unknown hash");
175 }
176
177 static void git_hash_unknown_final_oid(struct object_id *oid UNUSED,
178 git_hash_ctx *ctx UNUSED)
179 {
180 BUG("trying to finalize unknown hash");
181 }
182
183 const struct git_hash_algo hash_algos[GIT_HASH_NALGOS] = {
184 {
185 .name = NULL,
186 .format_id = 0x00000000,
187 .rawsz = 0,
188 .hexsz = 0,
189 .blksz = 0,
190 .init_fn = git_hash_unknown_init,
191 .clone_fn = git_hash_unknown_clone,
192 .update_fn = git_hash_unknown_update,
193 .final_fn = git_hash_unknown_final,
194 .final_oid_fn = git_hash_unknown_final_oid,
195 .empty_tree = NULL,
196 .empty_blob = NULL,
197 .null_oid = NULL,
198 },
199 {
200 .name = "sha1",
201 .format_id = GIT_SHA1_FORMAT_ID,
202 .rawsz = GIT_SHA1_RAWSZ,
203 .hexsz = GIT_SHA1_HEXSZ,
204 .blksz = GIT_SHA1_BLKSZ,
205 .init_fn = git_hash_sha1_init,
206 .clone_fn = git_hash_sha1_clone,
207 .update_fn = git_hash_sha1_update,
208 .final_fn = git_hash_sha1_final,
209 .final_oid_fn = git_hash_sha1_final_oid,
210 .empty_tree = &empty_tree_oid,
211 .empty_blob = &empty_blob_oid,
212 .null_oid = &null_oid_sha1,
213 },
214 {
215 .name = "sha256",
216 .format_id = GIT_SHA256_FORMAT_ID,
217 .rawsz = GIT_SHA256_RAWSZ,
218 .hexsz = GIT_SHA256_HEXSZ,
219 .blksz = GIT_SHA256_BLKSZ,
220 .init_fn = git_hash_sha256_init,
221 .clone_fn = git_hash_sha256_clone,
222 .update_fn = git_hash_sha256_update,
223 .final_fn = git_hash_sha256_final,
224 .final_oid_fn = git_hash_sha256_final_oid,
225 .empty_tree = &empty_tree_oid_sha256,
226 .empty_blob = &empty_blob_oid_sha256,
227 .null_oid = &null_oid_sha256,
228 }
229 };
230
231 const struct object_id *null_oid(void)
232 {
233 return the_hash_algo->null_oid;
234 }
235
236 const char *empty_tree_oid_hex(void)
237 {
238 static char buf[GIT_MAX_HEXSZ + 1];
239 return oid_to_hex_r(buf, the_hash_algo->empty_tree);
240 }
241
242 const char *empty_blob_oid_hex(void)
243 {
244 static char buf[GIT_MAX_HEXSZ + 1];
245 return oid_to_hex_r(buf, the_hash_algo->empty_blob);
246 }
247
248 int hash_algo_by_name(const char *name)
249 {
250 int i;
251 if (!name)
252 return GIT_HASH_UNKNOWN;
253 for (i = 1; i < GIT_HASH_NALGOS; i++)
254 if (!strcmp(name, hash_algos[i].name))
255 return i;
256 return GIT_HASH_UNKNOWN;
257 }
258
259 int hash_algo_by_id(uint32_t format_id)
260 {
261 int i;
262 for (i = 1; i < GIT_HASH_NALGOS; i++)
263 if (format_id == hash_algos[i].format_id)
264 return i;
265 return GIT_HASH_UNKNOWN;
266 }
267
268 int hash_algo_by_length(int len)
269 {
270 int i;
271 for (i = 1; i < GIT_HASH_NALGOS; i++)
272 if (len == hash_algos[i].rawsz)
273 return i;
274 return GIT_HASH_UNKNOWN;
275 }
276
277 /*
278 * This is meant to hold a *small* number of objects that you would
279 * want repo_read_object_file() to be able to return, but yet you do not want
280 * to write them into the object store (e.g. a browse-only
281 * application).
282 */
283 static struct cached_object {
284 struct object_id oid;
285 enum object_type type;
286 void *buf;
287 unsigned long size;
288 } *cached_objects;
289 static int cached_object_nr, cached_object_alloc;
290
291 static struct cached_object empty_tree = {
292 .oid = {
293 .hash = EMPTY_TREE_SHA1_BIN_LITERAL,
294 },
295 .type = OBJ_TREE,
296 .buf = "",
297 };
298
299 static struct cached_object *find_cached_object(const struct object_id *oid)
300 {
301 int i;
302 struct cached_object *co = cached_objects;
303
304 for (i = 0; i < cached_object_nr; i++, co++) {
305 if (oideq(&co->oid, oid))
306 return co;
307 }
308 if (oideq(oid, the_hash_algo->empty_tree))
309 return &empty_tree;
310 return NULL;
311 }
312
313
314 static int get_conv_flags(unsigned flags)
315 {
316 if (flags & HASH_RENORMALIZE)
317 return CONV_EOL_RENORMALIZE;
318 else if (flags & HASH_WRITE_OBJECT)
319 return global_conv_flags_eol | CONV_WRITE_OBJECT;
320 else
321 return 0;
322 }
323
324
325 int mkdir_in_gitdir(const char *path)
326 {
327 if (mkdir(path, 0777)) {
328 int saved_errno = errno;
329 struct stat st;
330 struct strbuf sb = STRBUF_INIT;
331
332 if (errno != EEXIST)
333 return -1;
334 /*
335 * Are we looking at a path in a symlinked worktree
336 * whose original repository does not yet have it?
337 * e.g. .git/rr-cache pointing at its original
338 * repository in which the user hasn't performed any
339 * conflict resolution yet?
340 */
341 if (lstat(path, &st) || !S_ISLNK(st.st_mode) ||
342 strbuf_readlink(&sb, path, st.st_size) ||
343 !is_absolute_path(sb.buf) ||
344 mkdir(sb.buf, 0777)) {
345 strbuf_release(&sb);
346 errno = saved_errno;
347 return -1;
348 }
349 strbuf_release(&sb);
350 }
351 return adjust_shared_perm(path);
352 }
353
354 static enum scld_error safe_create_leading_directories_1(char *path, int share)
355 {
356 char *next_component = path + offset_1st_component(path);
357 enum scld_error ret = SCLD_OK;
358
359 while (ret == SCLD_OK && next_component) {
360 struct stat st;
361 char *slash = next_component, slash_character;
362
363 while (*slash && !is_dir_sep(*slash))
364 slash++;
365
366 if (!*slash)
367 break;
368
369 next_component = slash + 1;
370 while (is_dir_sep(*next_component))
371 next_component++;
372 if (!*next_component)
373 break;
374
375 slash_character = *slash;
376 *slash = '\0';
377 if (!stat(path, &st)) {
378 /* path exists */
379 if (!S_ISDIR(st.st_mode)) {
380 errno = ENOTDIR;
381 ret = SCLD_EXISTS;
382 }
383 } else if (mkdir(path, 0777)) {
384 if (errno == EEXIST &&
385 !stat(path, &st) && S_ISDIR(st.st_mode))
386 ; /* somebody created it since we checked */
387 else if (errno == ENOENT)
388 /*
389 * Either mkdir() failed because
390 * somebody just pruned the containing
391 * directory, or stat() failed because
392 * the file that was in our way was
393 * just removed. Either way, inform
394 * the caller that it might be worth
395 * trying again:
396 */
397 ret = SCLD_VANISHED;
398 else
399 ret = SCLD_FAILED;
400 } else if (share && adjust_shared_perm(path)) {
401 ret = SCLD_PERMS;
402 }
403 *slash = slash_character;
404 }
405 return ret;
406 }
407
408 enum scld_error safe_create_leading_directories(char *path)
409 {
410 return safe_create_leading_directories_1(path, 1);
411 }
412
413 enum scld_error safe_create_leading_directories_no_share(char *path)
414 {
415 return safe_create_leading_directories_1(path, 0);
416 }
417
418 enum scld_error safe_create_leading_directories_const(const char *path)
419 {
420 int save_errno;
421 /* path points to cache entries, so xstrdup before messing with it */
422 char *buf = xstrdup(path);
423 enum scld_error result = safe_create_leading_directories(buf);
424
425 save_errno = errno;
426 free(buf);
427 errno = save_errno;
428 return result;
429 }
430
431 static void fill_loose_path(struct strbuf *buf, const struct object_id *oid)
432 {
433 int i;
434 for (i = 0; i < the_hash_algo->rawsz; i++) {
435 static char hex[] = "0123456789abcdef";
436 unsigned int val = oid->hash[i];
437 strbuf_addch(buf, hex[val >> 4]);
438 strbuf_addch(buf, hex[val & 0xf]);
439 if (!i)
440 strbuf_addch(buf, '/');
441 }
442 }
443
444 static const char *odb_loose_path(struct object_directory *odb,
445 struct strbuf *buf,
446 const struct object_id *oid)
447 {
448 strbuf_reset(buf);
449 strbuf_addstr(buf, odb->path);
450 strbuf_addch(buf, '/');
451 fill_loose_path(buf, oid);
452 return buf->buf;
453 }
454
455 const char *loose_object_path(struct repository *r, struct strbuf *buf,
456 const struct object_id *oid)
457 {
458 return odb_loose_path(r->objects->odb, buf, oid);
459 }
460
461 /*
462 * Return non-zero iff the path is usable as an alternate object database.
463 */
464 static int alt_odb_usable(struct raw_object_store *o,
465 struct strbuf *path,
466 const char *normalized_objdir, khiter_t *pos)
467 {
468 int r;
469
470 /* Detect cases where alternate disappeared */
471 if (!is_directory(path->buf)) {
472 error(_("object directory %s does not exist; "
473 "check .git/objects/info/alternates"),
474 path->buf);
475 return 0;
476 }
477
478 /*
479 * Prevent the common mistake of listing the same
480 * thing twice, or object directory itself.
481 */
482 if (!o->odb_by_path) {
483 khiter_t p;
484
485 o->odb_by_path = kh_init_odb_path_map();
486 assert(!o->odb->next);
487 p = kh_put_odb_path_map(o->odb_by_path, o->odb->path, &r);
488 assert(r == 1); /* never used */
489 kh_value(o->odb_by_path, p) = o->odb;
490 }
491 if (fspatheq(path->buf, normalized_objdir))
492 return 0;
493 *pos = kh_put_odb_path_map(o->odb_by_path, path->buf, &r);
494 /* r: 0 = exists, 1 = never used, 2 = deleted */
495 return r == 0 ? 0 : 1;
496 }
497
498 /*
499 * Prepare alternate object database registry.
500 *
501 * The variable alt_odb_list points at the list of struct
502 * object_directory. The elements on this list come from
503 * non-empty elements from colon separated ALTERNATE_DB_ENVIRONMENT
504 * environment variable, and $GIT_OBJECT_DIRECTORY/info/alternates,
505 * whose contents is similar to that environment variable but can be
506 * LF separated. Its base points at a statically allocated buffer that
507 * contains "/the/directory/corresponding/to/.git/objects/...", while
508 * its name points just after the slash at the end of ".git/objects/"
509 * in the example above, and has enough space to hold all hex characters
510 * of the object ID, an extra slash for the first level indirection, and
511 * the terminating NUL.
512 */
513 static void read_info_alternates(struct repository *r,
514 const char *relative_base,
515 int depth);
516 static int link_alt_odb_entry(struct repository *r, const struct strbuf *entry,
517 const char *relative_base, int depth, const char *normalized_objdir)
518 {
519 struct object_directory *ent;
520 struct strbuf pathbuf = STRBUF_INIT;
521 struct strbuf tmp = STRBUF_INIT;
522 khiter_t pos;
523 int ret = -1;
524
525 if (!is_absolute_path(entry->buf) && relative_base) {
526 strbuf_realpath(&pathbuf, relative_base, 1);
527 strbuf_addch(&pathbuf, '/');
528 }
529 strbuf_addbuf(&pathbuf, entry);
530
531 if (!strbuf_realpath(&tmp, pathbuf.buf, 0)) {
532 error(_("unable to normalize alternate object path: %s"),
533 pathbuf.buf);
534 goto error;
535 }
536 strbuf_swap(&pathbuf, &tmp);
537
538 /*
539 * The trailing slash after the directory name is given by
540 * this function at the end. Remove duplicates.
541 */
542 while (pathbuf.len && pathbuf.buf[pathbuf.len - 1] == '/')
543 strbuf_setlen(&pathbuf, pathbuf.len - 1);
544
545 if (!alt_odb_usable(r->objects, &pathbuf, normalized_objdir, &pos))
546 goto error;
547
548 CALLOC_ARRAY(ent, 1);
549 /* pathbuf.buf is already in r->objects->odb_by_path */
550 ent->path = strbuf_detach(&pathbuf, NULL);
551
552 /* add the alternate entry */
553 *r->objects->odb_tail = ent;
554 r->objects->odb_tail = &(ent->next);
555 ent->next = NULL;
556 assert(r->objects->odb_by_path);
557 kh_value(r->objects->odb_by_path, pos) = ent;
558
559 /* recursively add alternates */
560 read_info_alternates(r, ent->path, depth + 1);
561 ret = 0;
562 error:
563 strbuf_release(&tmp);
564 strbuf_release(&pathbuf);
565 return ret;
566 }
567
568 static const char *parse_alt_odb_entry(const char *string,
569 int sep,
570 struct strbuf *out)
571 {
572 const char *end;
573
574 strbuf_reset(out);
575
576 if (*string == '#') {
577 /* comment; consume up to next separator */
578 end = strchrnul(string, sep);
579 } else if (*string == '"' && !unquote_c_style(out, string, &end)) {
580 /*
581 * quoted path; unquote_c_style has copied the
582 * data for us and set "end". Broken quoting (e.g.,
583 * an entry that doesn't end with a quote) falls
584 * back to the unquoted case below.
585 */
586 } else {
587 /* normal, unquoted path */
588 end = strchrnul(string, sep);
589 strbuf_add(out, string, end - string);
590 }
591
592 if (*end)
593 end++;
594 return end;
595 }
596
597 static void link_alt_odb_entries(struct repository *r, const char *alt,
598 int sep, const char *relative_base, int depth)
599 {
600 struct strbuf objdirbuf = STRBUF_INIT;
601 struct strbuf entry = STRBUF_INIT;
602
603 if (!alt || !*alt)
604 return;
605
606 if (depth > 5) {
607 error(_("%s: ignoring alternate object stores, nesting too deep"),
608 relative_base);
609 return;
610 }
611
612 strbuf_realpath(&objdirbuf, r->objects->odb->path, 1);
613
614 while (*alt) {
615 alt = parse_alt_odb_entry(alt, sep, &entry);
616 if (!entry.len)
617 continue;
618 link_alt_odb_entry(r, &entry,
619 relative_base, depth, objdirbuf.buf);
620 }
621 strbuf_release(&entry);
622 strbuf_release(&objdirbuf);
623 }
624
625 static void read_info_alternates(struct repository *r,
626 const char *relative_base,
627 int depth)
628 {
629 char *path;
630 struct strbuf buf = STRBUF_INIT;
631
632 path = xstrfmt("%s/info/alternates", relative_base);
633 if (strbuf_read_file(&buf, path, 1024) < 0) {
634 warn_on_fopen_errors(path);
635 free(path);
636 return;
637 }
638
639 link_alt_odb_entries(r, buf.buf, '\n', relative_base, depth);
640 strbuf_release(&buf);
641 free(path);
642 }
643
644 void add_to_alternates_file(const char *reference)
645 {
646 struct lock_file lock = LOCK_INIT;
647 char *alts = git_pathdup("objects/info/alternates");
648 FILE *in, *out;
649 int found = 0;
650
651 hold_lock_file_for_update(&lock, alts, LOCK_DIE_ON_ERROR);
652 out = fdopen_lock_file(&lock, "w");
653 if (!out)
654 die_errno(_("unable to fdopen alternates lockfile"));
655
656 in = fopen(alts, "r");
657 if (in) {
658 struct strbuf line = STRBUF_INIT;
659
660 while (strbuf_getline(&line, in) != EOF) {
661 if (!strcmp(reference, line.buf)) {
662 found = 1;
663 break;
664 }
665 fprintf_or_die(out, "%s\n", line.buf);
666 }
667
668 strbuf_release(&line);
669 fclose(in);
670 }
671 else if (errno != ENOENT)
672 die_errno(_("unable to read alternates file"));
673
674 if (found) {
675 rollback_lock_file(&lock);
676 } else {
677 fprintf_or_die(out, "%s\n", reference);
678 if (commit_lock_file(&lock))
679 die_errno(_("unable to move new alternates file into place"));
680 if (the_repository->objects->loaded_alternates)
681 link_alt_odb_entries(the_repository, reference,
682 '\n', NULL, 0);
683 }
684 free(alts);
685 }
686
687 void add_to_alternates_memory(const char *reference)
688 {
689 /*
690 * Make sure alternates are initialized, or else our entry may be
691 * overwritten when they are.
692 */
693 prepare_alt_odb(the_repository);
694
695 link_alt_odb_entries(the_repository, reference,
696 '\n', NULL, 0);
697 }
698
699 struct object_directory *set_temporary_primary_odb(const char *dir, int will_destroy)
700 {
701 struct object_directory *new_odb;
702
703 /*
704 * Make sure alternates are initialized, or else our entry may be
705 * overwritten when they are.
706 */
707 prepare_alt_odb(the_repository);
708
709 /*
710 * Make a new primary odb and link the old primary ODB in as an
711 * alternate
712 */
713 new_odb = xcalloc(1, sizeof(*new_odb));
714 new_odb->path = xstrdup(dir);
715
716 /*
717 * Disable ref updates while a temporary odb is active, since
718 * the objects in the database may roll back.
719 */
720 new_odb->disable_ref_updates = 1;
721 new_odb->will_destroy = will_destroy;
722 new_odb->next = the_repository->objects->odb;
723 the_repository->objects->odb = new_odb;
724 return new_odb->next;
725 }
726
727 void restore_primary_odb(struct object_directory *restore_odb, const char *old_path)
728 {
729 struct object_directory *cur_odb = the_repository->objects->odb;
730
731 if (strcmp(old_path, cur_odb->path))
732 BUG("expected %s as primary object store; found %s",
733 old_path, cur_odb->path);
734
735 if (cur_odb->next != restore_odb)
736 BUG("we expect the old primary object store to be the first alternate");
737
738 the_repository->objects->odb = restore_odb;
739 free_object_directory(cur_odb);
740 }
741
742 /*
743 * Compute the exact path an alternate is at and returns it. In case of
744 * error NULL is returned and the human readable error is added to `err`
745 * `path` may be relative and should point to $GIT_DIR.
746 * `err` must not be null.
747 */
748 char *compute_alternate_path(const char *path, struct strbuf *err)
749 {
750 char *ref_git = NULL;
751 const char *repo;
752 int seen_error = 0;
753
754 ref_git = real_pathdup(path, 0);
755 if (!ref_git) {
756 seen_error = 1;
757 strbuf_addf(err, _("path '%s' does not exist"), path);
758 goto out;
759 }
760
761 repo = read_gitfile(ref_git);
762 if (!repo)
763 repo = read_gitfile(mkpath("%s/.git", ref_git));
764 if (repo) {
765 free(ref_git);
766 ref_git = xstrdup(repo);
767 }
768
769 if (!repo && is_directory(mkpath("%s/.git/objects", ref_git))) {
770 char *ref_git_git = mkpathdup("%s/.git", ref_git);
771 free(ref_git);
772 ref_git = ref_git_git;
773 } else if (!is_directory(mkpath("%s/objects", ref_git))) {
774 struct strbuf sb = STRBUF_INIT;
775 seen_error = 1;
776 if (get_common_dir(&sb, ref_git)) {
777 strbuf_addf(err,
778 _("reference repository '%s' as a linked "
779 "checkout is not supported yet."),
780 path);
781 goto out;
782 }
783
784 strbuf_addf(err, _("reference repository '%s' is not a "
785 "local repository."), path);
786 goto out;
787 }
788
789 if (!access(mkpath("%s/shallow", ref_git), F_OK)) {
790 strbuf_addf(err, _("reference repository '%s' is shallow"),
791 path);
792 seen_error = 1;
793 goto out;
794 }
795
796 if (!access(mkpath("%s/info/grafts", ref_git), F_OK)) {
797 strbuf_addf(err,
798 _("reference repository '%s' is grafted"),
799 path);
800 seen_error = 1;
801 goto out;
802 }
803
804 out:
805 if (seen_error) {
806 FREE_AND_NULL(ref_git);
807 }
808
809 return ref_git;
810 }
811
812 struct object_directory *find_odb(struct repository *r, const char *obj_dir)
813 {
814 struct object_directory *odb;
815 char *obj_dir_real = real_pathdup(obj_dir, 1);
816 struct strbuf odb_path_real = STRBUF_INIT;
817
818 prepare_alt_odb(r);
819 for (odb = r->objects->odb; odb; odb = odb->next) {
820 strbuf_realpath(&odb_path_real, odb->path, 1);
821 if (!strcmp(obj_dir_real, odb_path_real.buf))
822 break;
823 }
824
825 free(obj_dir_real);
826 strbuf_release(&odb_path_real);
827
828 if (!odb)
829 die(_("could not find object directory matching %s"), obj_dir);
830 return odb;
831 }
832
833 static void fill_alternate_refs_command(struct child_process *cmd,
834 const char *repo_path)
835 {
836 const char *value;
837
838 if (!git_config_get_value("core.alternateRefsCommand", &value)) {
839 cmd->use_shell = 1;
840
841 strvec_push(&cmd->args, value);
842 strvec_push(&cmd->args, repo_path);
843 } else {
844 cmd->git_cmd = 1;
845
846 strvec_pushf(&cmd->args, "--git-dir=%s", repo_path);
847 strvec_push(&cmd->args, "for-each-ref");
848 strvec_push(&cmd->args, "--format=%(objectname)");
849
850 if (!git_config_get_value("core.alternateRefsPrefixes", &value)) {
851 strvec_push(&cmd->args, "--");
852 strvec_split(&cmd->args, value);
853 }
854 }
855
856 strvec_pushv(&cmd->env, (const char **)local_repo_env);
857 cmd->out = -1;
858 }
859
860 static void read_alternate_refs(const char *path,
861 alternate_ref_fn *cb,
862 void *data)
863 {
864 struct child_process cmd = CHILD_PROCESS_INIT;
865 struct strbuf line = STRBUF_INIT;
866 FILE *fh;
867
868 fill_alternate_refs_command(&cmd, path);
869
870 if (start_command(&cmd))
871 return;
872
873 fh = xfdopen(cmd.out, "r");
874 while (strbuf_getline_lf(&line, fh) != EOF) {
875 struct object_id oid;
876 const char *p;
877
878 if (parse_oid_hex(line.buf, &oid, &p) || *p) {
879 warning(_("invalid line while parsing alternate refs: %s"),
880 line.buf);
881 break;
882 }
883
884 cb(&oid, data);
885 }
886
887 fclose(fh);
888 finish_command(&cmd);
889 strbuf_release(&line);
890 }
891
892 struct alternate_refs_data {
893 alternate_ref_fn *fn;
894 void *data;
895 };
896
897 static int refs_from_alternate_cb(struct object_directory *e,
898 void *data)
899 {
900 struct strbuf path = STRBUF_INIT;
901 size_t base_len;
902 struct alternate_refs_data *cb = data;
903
904 if (!strbuf_realpath(&path, e->path, 0))
905 goto out;
906 if (!strbuf_strip_suffix(&path, "/objects"))
907 goto out;
908 base_len = path.len;
909
910 /* Is this a git repository with refs? */
911 strbuf_addstr(&path, "/refs");
912 if (!is_directory(path.buf))
913 goto out;
914 strbuf_setlen(&path, base_len);
915
916 read_alternate_refs(path.buf, cb->fn, cb->data);
917
918 out:
919 strbuf_release(&path);
920 return 0;
921 }
922
923 void for_each_alternate_ref(alternate_ref_fn fn, void *data)
924 {
925 struct alternate_refs_data cb;
926 cb.fn = fn;
927 cb.data = data;
928 foreach_alt_odb(refs_from_alternate_cb, &cb);
929 }
930
931 int foreach_alt_odb(alt_odb_fn fn, void *cb)
932 {
933 struct object_directory *ent;
934 int r = 0;
935
936 prepare_alt_odb(the_repository);
937 for (ent = the_repository->objects->odb->next; ent; ent = ent->next) {
938 r = fn(ent, cb);
939 if (r)
940 break;
941 }
942 return r;
943 }
944
945 void prepare_alt_odb(struct repository *r)
946 {
947 if (r->objects->loaded_alternates)
948 return;
949
950 link_alt_odb_entries(r, r->objects->alternate_db, PATH_SEP, NULL, 0);
951
952 read_info_alternates(r, r->objects->odb->path, 0);
953 r->objects->loaded_alternates = 1;
954 }
955
956 /* Returns 1 if we have successfully freshened the file, 0 otherwise. */
957 static int freshen_file(const char *fn)
958 {
959 return !utime(fn, NULL);
960 }
961
962 /*
963 * All of the check_and_freshen functions return 1 if the file exists and was
964 * freshened (if freshening was requested), 0 otherwise. If they return
965 * 0, you should not assume that it is safe to skip a write of the object (it
966 * either does not exist on disk, or has a stale mtime and may be subject to
967 * pruning).
968 */
969 int check_and_freshen_file(const char *fn, int freshen)
970 {
971 if (access(fn, F_OK))
972 return 0;
973 if (freshen && !freshen_file(fn))
974 return 0;
975 return 1;
976 }
977
978 static int check_and_freshen_odb(struct object_directory *odb,
979 const struct object_id *oid,
980 int freshen)
981 {
982 static struct strbuf path = STRBUF_INIT;
983 odb_loose_path(odb, &path, oid);
984 return check_and_freshen_file(path.buf, freshen);
985 }
986
987 static int check_and_freshen_local(const struct object_id *oid, int freshen)
988 {
989 return check_and_freshen_odb(the_repository->objects->odb, oid, freshen);
990 }
991
992 static int check_and_freshen_nonlocal(const struct object_id *oid, int freshen)
993 {
994 struct object_directory *odb;
995
996 prepare_alt_odb(the_repository);
997 for (odb = the_repository->objects->odb->next; odb; odb = odb->next) {
998 if (check_and_freshen_odb(odb, oid, freshen))
999 return 1;
1000 }
1001 return 0;
1002 }
1003
1004 static int check_and_freshen(const struct object_id *oid, int freshen)
1005 {
1006 return check_and_freshen_local(oid, freshen) ||
1007 check_and_freshen_nonlocal(oid, freshen);
1008 }
1009
1010 int has_loose_object_nonlocal(const struct object_id *oid)
1011 {
1012 return check_and_freshen_nonlocal(oid, 0);
1013 }
1014
1015 int has_loose_object(const struct object_id *oid)
1016 {
1017 return check_and_freshen(oid, 0);
1018 }
1019
1020 static void mmap_limit_check(size_t length)
1021 {
1022 static size_t limit = 0;
1023 if (!limit) {
1024 limit = git_env_ulong("GIT_MMAP_LIMIT", 0);
1025 if (!limit)
1026 limit = SIZE_MAX;
1027 }
1028 if (length > limit)
1029 die(_("attempting to mmap %"PRIuMAX" over limit %"PRIuMAX),
1030 (uintmax_t)length, (uintmax_t)limit);
1031 }
1032
1033 void *xmmap_gently(void *start, size_t length,
1034 int prot, int flags, int fd, off_t offset)
1035 {
1036 void *ret;
1037
1038 mmap_limit_check(length);
1039 ret = mmap(start, length, prot, flags, fd, offset);
1040 if (ret == MAP_FAILED && !length)
1041 ret = NULL;
1042 return ret;
1043 }
1044
1045 const char *mmap_os_err(void)
1046 {
1047 static const char blank[] = "";
1048 #if defined(__linux__)
1049 if (errno == ENOMEM) {
1050 /* this continues an existing error message: */
1051 static const char enomem[] =
1052 ", check sys.vm.max_map_count and/or RLIMIT_DATA";
1053 return enomem;
1054 }
1055 #endif /* OS-specific bits */
1056 return blank;
1057 }
1058
1059 void *xmmap(void *start, size_t length,
1060 int prot, int flags, int fd, off_t offset)
1061 {
1062 void *ret = xmmap_gently(start, length, prot, flags, fd, offset);
1063 if (ret == MAP_FAILED)
1064 die_errno(_("mmap failed%s"), mmap_os_err());
1065 return ret;
1066 }
1067
1068 static int format_object_header_literally(char *str, size_t size,
1069 const char *type, size_t objsize)
1070 {
1071 return xsnprintf(str, size, "%s %"PRIuMAX, type, (uintmax_t)objsize) + 1;
1072 }
1073
1074 int format_object_header(char *str, size_t size, enum object_type type,
1075 size_t objsize)
1076 {
1077 const char *name = type_name(type);
1078
1079 if (!name)
1080 BUG("could not get a type name for 'enum object_type' value %d", type);
1081
1082 return format_object_header_literally(str, size, name, objsize);
1083 }
1084
1085 int check_object_signature(struct repository *r, const struct object_id *oid,
1086 void *buf, unsigned long size,
1087 enum object_type type)
1088 {
1089 struct object_id real_oid;
1090
1091 hash_object_file(r->hash_algo, buf, size, type, &real_oid);
1092
1093 return !oideq(oid, &real_oid) ? -1 : 0;
1094 }
1095
1096 int stream_object_signature(struct repository *r, const struct object_id *oid)
1097 {
1098 struct object_id real_oid;
1099 unsigned long size;
1100 enum object_type obj_type;
1101 struct git_istream *st;
1102 git_hash_ctx c;
1103 char hdr[MAX_HEADER_LEN];
1104 int hdrlen;
1105
1106 st = open_istream(r, oid, &obj_type, &size, NULL);
1107 if (!st)
1108 return -1;
1109
1110 /* Generate the header */
1111 hdrlen = format_object_header(hdr, sizeof(hdr), obj_type, size);
1112
1113 /* Sha1.. */
1114 r->hash_algo->init_fn(&c);
1115 r->hash_algo->update_fn(&c, hdr, hdrlen);
1116 for (;;) {
1117 char buf[1024 * 16];
1118 ssize_t readlen = read_istream(st, buf, sizeof(buf));
1119
1120 if (readlen < 0) {
1121 close_istream(st);
1122 return -1;
1123 }
1124 if (!readlen)
1125 break;
1126 r->hash_algo->update_fn(&c, buf, readlen);
1127 }
1128 r->hash_algo->final_oid_fn(&real_oid, &c);
1129 close_istream(st);
1130 return !oideq(oid, &real_oid) ? -1 : 0;
1131 }
1132
1133 int git_open_cloexec(const char *name, int flags)
1134 {
1135 int fd;
1136 static int o_cloexec = O_CLOEXEC;
1137
1138 fd = open(name, flags | o_cloexec);
1139 if ((o_cloexec & O_CLOEXEC) && fd < 0 && errno == EINVAL) {
1140 /* Try again w/o O_CLOEXEC: the kernel might not support it */
1141 o_cloexec &= ~O_CLOEXEC;
1142 fd = open(name, flags | o_cloexec);
1143 }
1144
1145 #if defined(F_GETFD) && defined(F_SETFD) && defined(FD_CLOEXEC)
1146 {
1147 static int fd_cloexec = FD_CLOEXEC;
1148
1149 if (!o_cloexec && 0 <= fd && fd_cloexec) {
1150 /* Opened w/o O_CLOEXEC? try with fcntl(2) to add it */
1151 int flags = fcntl(fd, F_GETFD);
1152 if (fcntl(fd, F_SETFD, flags | fd_cloexec))
1153 fd_cloexec = 0;
1154 }
1155 }
1156 #endif
1157 return fd;
1158 }
1159
1160 /*
1161 * Find "oid" as a loose object in the local repository or in an alternate.
1162 * Returns 0 on success, negative on failure.
1163 *
1164 * The "path" out-parameter will give the path of the object we found (if any).
1165 * Note that it may point to static storage and is only valid until another
1166 * call to stat_loose_object().
1167 */
1168 static int stat_loose_object(struct repository *r, const struct object_id *oid,
1169 struct stat *st, const char **path)
1170 {
1171 struct object_directory *odb;
1172 static struct strbuf buf = STRBUF_INIT;
1173
1174 prepare_alt_odb(r);
1175 for (odb = r->objects->odb; odb; odb = odb->next) {
1176 *path = odb_loose_path(odb, &buf, oid);
1177 if (!lstat(*path, st))
1178 return 0;
1179 }
1180
1181 return -1;
1182 }
1183
1184 /*
1185 * Like stat_loose_object(), but actually open the object and return the
1186 * descriptor. See the caveats on the "path" parameter above.
1187 */
1188 static int open_loose_object(struct repository *r,
1189 const struct object_id *oid, const char **path)
1190 {
1191 int fd;
1192 struct object_directory *odb;
1193 int most_interesting_errno = ENOENT;
1194 static struct strbuf buf = STRBUF_INIT;
1195
1196 prepare_alt_odb(r);
1197 for (odb = r->objects->odb; odb; odb = odb->next) {
1198 *path = odb_loose_path(odb, &buf, oid);
1199 fd = git_open(*path);
1200 if (fd >= 0)
1201 return fd;
1202
1203 if (most_interesting_errno == ENOENT)
1204 most_interesting_errno = errno;
1205 }
1206 errno = most_interesting_errno;
1207 return -1;
1208 }
1209
1210 static int quick_has_loose(struct repository *r,
1211 const struct object_id *oid)
1212 {
1213 struct object_directory *odb;
1214
1215 prepare_alt_odb(r);
1216 for (odb = r->objects->odb; odb; odb = odb->next) {
1217 if (oidtree_contains(odb_loose_cache(odb, oid), oid))
1218 return 1;
1219 }
1220 return 0;
1221 }
1222
1223 /*
1224 * Map and close the given loose object fd. The path argument is used for
1225 * error reporting.
1226 */
1227 static void *map_fd(int fd, const char *path, unsigned long *size)
1228 {
1229 void *map = NULL;
1230 struct stat st;
1231
1232 if (!fstat(fd, &st)) {
1233 *size = xsize_t(st.st_size);
1234 if (!*size) {
1235 /* mmap() is forbidden on empty files */
1236 error(_("object file %s is empty"), path);
1237 close(fd);
1238 return NULL;
1239 }
1240 map = xmmap(NULL, *size, PROT_READ, MAP_PRIVATE, fd, 0);
1241 }
1242 close(fd);
1243 return map;
1244 }
1245
1246 void *map_loose_object(struct repository *r,
1247 const struct object_id *oid,
1248 unsigned long *size)
1249 {
1250 const char *p;
1251 int fd = open_loose_object(r, oid, &p);
1252
1253 if (fd < 0)
1254 return NULL;
1255 return map_fd(fd, p, size);
1256 }
1257
1258 enum unpack_loose_header_result unpack_loose_header(git_zstream *stream,
1259 unsigned char *map,
1260 unsigned long mapsize,
1261 void *buffer,
1262 unsigned long bufsiz,
1263 struct strbuf *header)
1264 {
1265 int status;
1266
1267 /* Get the data stream */
1268 memset(stream, 0, sizeof(*stream));
1269 stream->next_in = map;
1270 stream->avail_in = mapsize;
1271 stream->next_out = buffer;
1272 stream->avail_out = bufsiz;
1273
1274 git_inflate_init(stream);
1275 obj_read_unlock();
1276 status = git_inflate(stream, 0);
1277 obj_read_lock();
1278 if (status < Z_OK)
1279 return ULHR_BAD;
1280
1281 /*
1282 * Check if entire header is unpacked in the first iteration.
1283 */
1284 if (memchr(buffer, '\0', stream->next_out - (unsigned char *)buffer))
1285 return ULHR_OK;
1286
1287 /*
1288 * We have a header longer than MAX_HEADER_LEN. The "header"
1289 * here is only non-NULL when we run "cat-file
1290 * --allow-unknown-type".
1291 */
1292 if (!header)
1293 return ULHR_TOO_LONG;
1294
1295 /*
1296 * buffer[0..bufsiz] was not large enough. Copy the partial
1297 * result out to header, and then append the result of further
1298 * reading the stream.
1299 */
1300 strbuf_add(header, buffer, stream->next_out - (unsigned char *)buffer);
1301 stream->next_out = buffer;
1302 stream->avail_out = bufsiz;
1303
1304 do {
1305 obj_read_unlock();
1306 status = git_inflate(stream, 0);
1307 obj_read_lock();
1308 strbuf_add(header, buffer, stream->next_out - (unsigned char *)buffer);
1309 if (memchr(buffer, '\0', stream->next_out - (unsigned char *)buffer))
1310 return 0;
1311 stream->next_out = buffer;
1312 stream->avail_out = bufsiz;
1313 } while (status != Z_STREAM_END);
1314 return ULHR_TOO_LONG;
1315 }
1316
1317 static void *unpack_loose_rest(git_zstream *stream,
1318 void *buffer, unsigned long size,
1319 const struct object_id *oid)
1320 {
1321 int bytes = strlen(buffer) + 1;
1322 unsigned char *buf = xmallocz(size);
1323 unsigned long n;
1324 int status = Z_OK;
1325
1326 n = stream->total_out - bytes;
1327 if (n > size)
1328 n = size;
1329 memcpy(buf, (char *) buffer + bytes, n);
1330 bytes = n;
1331 if (bytes <= size) {
1332 /*
1333 * The above condition must be (bytes <= size), not
1334 * (bytes < size). In other words, even though we
1335 * expect no more output and set avail_out to zero,
1336 * the input zlib stream may have bytes that express
1337 * "this concludes the stream", and we *do* want to
1338 * eat that input.
1339 *
1340 * Otherwise we would not be able to test that we
1341 * consumed all the input to reach the expected size;
1342 * we also want to check that zlib tells us that all
1343 * went well with status == Z_STREAM_END at the end.
1344 */
1345 stream->next_out = buf + bytes;
1346 stream->avail_out = size - bytes;
1347 while (status == Z_OK) {
1348 obj_read_unlock();
1349 status = git_inflate(stream, Z_FINISH);
1350 obj_read_lock();
1351 }
1352 }
1353 if (status == Z_STREAM_END && !stream->avail_in) {
1354 git_inflate_end(stream);
1355 return buf;
1356 }
1357
1358 if (status < 0)
1359 error(_("corrupt loose object '%s'"), oid_to_hex(oid));
1360 else if (stream->avail_in)
1361 error(_("garbage at end of loose object '%s'"),
1362 oid_to_hex(oid));
1363 free(buf);
1364 return NULL;
1365 }
1366
1367 /*
1368 * We used to just use "sscanf()", but that's actually way
1369 * too permissive for what we want to check. So do an anal
1370 * object header parse by hand.
1371 */
1372 int parse_loose_header(const char *hdr, struct object_info *oi)
1373 {
1374 const char *type_buf = hdr;
1375 size_t size;
1376 int type, type_len = 0;
1377
1378 /*
1379 * The type can be of any size but is followed by
1380 * a space.
1381 */
1382 for (;;) {
1383 char c = *hdr++;
1384 if (!c)
1385 return -1;
1386 if (c == ' ')
1387 break;
1388 type_len++;
1389 }
1390
1391 type = type_from_string_gently(type_buf, type_len, 1);
1392 if (oi->type_name)
1393 strbuf_add(oi->type_name, type_buf, type_len);
1394 if (oi->typep)
1395 *oi->typep = type;
1396
1397 /*
1398 * The length must follow immediately, and be in canonical
1399 * decimal format (ie "010" is not valid).
1400 */
1401 size = *hdr++ - '0';
1402 if (size > 9)
1403 return -1;
1404 if (size) {
1405 for (;;) {
1406 unsigned long c = *hdr - '0';
1407 if (c > 9)
1408 break;
1409 hdr++;
1410 size = st_add(st_mult(size, 10), c);
1411 }
1412 }
1413
1414 if (oi->sizep)
1415 *oi->sizep = cast_size_t_to_ulong(size);
1416
1417 /*
1418 * The length must be followed by a zero byte
1419 */
1420 if (*hdr)
1421 return -1;
1422
1423 /*
1424 * The format is valid, but the type may still be bogus. The
1425 * Caller needs to check its oi->typep.
1426 */
1427 return 0;
1428 }
1429
1430 static int loose_object_info(struct repository *r,
1431 const struct object_id *oid,
1432 struct object_info *oi, int flags)
1433 {
1434 int status = 0;
1435 int fd;
1436 unsigned long mapsize;
1437 const char *path;
1438 void *map;
1439 git_zstream stream;
1440 char hdr[MAX_HEADER_LEN];
1441 struct strbuf hdrbuf = STRBUF_INIT;
1442 unsigned long size_scratch;
1443 enum object_type type_scratch;
1444 int allow_unknown = flags & OBJECT_INFO_ALLOW_UNKNOWN_TYPE;
1445
1446 if (oi->delta_base_oid)
1447 oidclr(oi->delta_base_oid);
1448
1449 /*
1450 * If we don't care about type or size, then we don't
1451 * need to look inside the object at all. Note that we
1452 * do not optimize out the stat call, even if the
1453 * caller doesn't care about the disk-size, since our
1454 * return value implicitly indicates whether the
1455 * object even exists.
1456 */
1457 if (!oi->typep && !oi->type_name && !oi->sizep && !oi->contentp) {
1458 struct stat st;
1459 if (!oi->disk_sizep && (flags & OBJECT_INFO_QUICK))
1460 return quick_has_loose(r, oid) ? 0 : -1;
1461 if (stat_loose_object(r, oid, &st, &path) < 0)
1462 return -1;
1463 if (oi->disk_sizep)
1464 *oi->disk_sizep = st.st_size;
1465 return 0;
1466 }
1467
1468 fd = open_loose_object(r, oid, &path);
1469 if (fd < 0) {
1470 if (errno != ENOENT)
1471 error_errno(_("unable to open loose object %s"), oid_to_hex(oid));
1472 return -1;
1473 }
1474 map = map_fd(fd, path, &mapsize);
1475 if (!map)
1476 return -1;
1477
1478 if (!oi->sizep)
1479 oi->sizep = &size_scratch;
1480 if (!oi->typep)
1481 oi->typep = &type_scratch;
1482
1483 if (oi->disk_sizep)
1484 *oi->disk_sizep = mapsize;
1485
1486 switch (unpack_loose_header(&stream, map, mapsize, hdr, sizeof(hdr),
1487 allow_unknown ? &hdrbuf : NULL)) {
1488 case ULHR_OK:
1489 if (parse_loose_header(hdrbuf.len ? hdrbuf.buf : hdr, oi) < 0)
1490 status = error(_("unable to parse %s header"), oid_to_hex(oid));
1491 else if (!allow_unknown && *oi->typep < 0)
1492 die(_("invalid object type"));
1493
1494 if (!oi->contentp)
1495 break;
1496 *oi->contentp = unpack_loose_rest(&stream, hdr, *oi->sizep, oid);
1497 if (*oi->contentp)
1498 goto cleanup;
1499
1500 status = -1;
1501 break;
1502 case ULHR_BAD:
1503 status = error(_("unable to unpack %s header"),
1504 oid_to_hex(oid));
1505 break;
1506 case ULHR_TOO_LONG:
1507 status = error(_("header for %s too long, exceeds %d bytes"),
1508 oid_to_hex(oid), MAX_HEADER_LEN);
1509 break;
1510 }
1511
1512 if (status && (flags & OBJECT_INFO_DIE_IF_CORRUPT))
1513 die(_("loose object %s (stored in %s) is corrupt"),
1514 oid_to_hex(oid), path);
1515
1516 git_inflate_end(&stream);
1517 cleanup:
1518 munmap(map, mapsize);
1519 if (oi->sizep == &size_scratch)
1520 oi->sizep = NULL;
1521 strbuf_release(&hdrbuf);
1522 if (oi->typep == &type_scratch)
1523 oi->typep = NULL;
1524 oi->whence = OI_LOOSE;
1525 return status;
1526 }
1527
1528 int obj_read_use_lock = 0;
1529 pthread_mutex_t obj_read_mutex;
1530
1531 void enable_obj_read_lock(void)
1532 {
1533 if (obj_read_use_lock)
1534 return;
1535
1536 obj_read_use_lock = 1;
1537 init_recursive_mutex(&obj_read_mutex);
1538 }
1539
1540 void disable_obj_read_lock(void)
1541 {
1542 if (!obj_read_use_lock)
1543 return;
1544
1545 obj_read_use_lock = 0;
1546 pthread_mutex_destroy(&obj_read_mutex);
1547 }
1548
1549 int fetch_if_missing = 1;
1550
1551 static int do_oid_object_info_extended(struct repository *r,
1552 const struct object_id *oid,
1553 struct object_info *oi, unsigned flags)
1554 {
1555 static struct object_info blank_oi = OBJECT_INFO_INIT;
1556 struct cached_object *co;
1557 struct pack_entry e;
1558 int rtype;
1559 const struct object_id *real = oid;
1560 int already_retried = 0;
1561
1562
1563 if (flags & OBJECT_INFO_LOOKUP_REPLACE)
1564 real = lookup_replace_object(r, oid);
1565
1566 if (is_null_oid(real))
1567 return -1;
1568
1569 if (!oi)
1570 oi = &blank_oi;
1571
1572 co = find_cached_object(real);
1573 if (co) {
1574 if (oi->typep)
1575 *(oi->typep) = co->type;
1576 if (oi->sizep)
1577 *(oi->sizep) = co->size;
1578 if (oi->disk_sizep)
1579 *(oi->disk_sizep) = 0;
1580 if (oi->delta_base_oid)
1581 oidclr(oi->delta_base_oid);
1582 if (oi->type_name)
1583 strbuf_addstr(oi->type_name, type_name(co->type));
1584 if (oi->contentp)
1585 *oi->contentp = xmemdupz(co->buf, co->size);
1586 oi->whence = OI_CACHED;
1587 return 0;
1588 }
1589
1590 while (1) {
1591 if (find_pack_entry(r, real, &e))
1592 break;
1593
1594 /* Most likely it's a loose object. */
1595 if (!loose_object_info(r, real, oi, flags))
1596 return 0;
1597
1598 /* Not a loose object; someone else may have just packed it. */
1599 if (!(flags & OBJECT_INFO_QUICK)) {
1600 reprepare_packed_git(r);
1601 if (find_pack_entry(r, real, &e))
1602 break;
1603 }
1604
1605 /*
1606 * If r is the_repository, this might be an attempt at
1607 * accessing a submodule object as if it were in the_repository
1608 * (having called add_submodule_odb() on that submodule's ODB).
1609 * If any such ODBs exist, register them and try again.
1610 */
1611 if (r == the_repository &&
1612 register_all_submodule_odb_as_alternates())
1613 /* We added some alternates; retry */
1614 continue;
1615
1616 /* Check if it is a missing object */
1617 if (fetch_if_missing && repo_has_promisor_remote(r) &&
1618 !already_retried &&
1619 !(flags & OBJECT_INFO_SKIP_FETCH_OBJECT)) {
1620 promisor_remote_get_direct(r, real, 1);
1621 already_retried = 1;
1622 continue;
1623 }
1624
1625 if (flags & OBJECT_INFO_DIE_IF_CORRUPT) {
1626 const struct packed_git *p;
1627 if ((flags & OBJECT_INFO_LOOKUP_REPLACE) && !oideq(real, oid))
1628 die(_("replacement %s not found for %s"),
1629 oid_to_hex(real), oid_to_hex(oid));
1630 if ((p = has_packed_and_bad(r, real)))
1631 die(_("packed object %s (stored in %s) is corrupt"),
1632 oid_to_hex(real), p->pack_name);
1633 }
1634 return -1;
1635 }
1636
1637 if (oi == &blank_oi)
1638 /*
1639 * We know that the caller doesn't actually need the
1640 * information below, so return early.
1641 */
1642 return 0;
1643 rtype = packed_object_info(r, e.p, e.offset, oi);
1644 if (rtype < 0) {
1645 mark_bad_packed_object(e.p, real);
1646 return do_oid_object_info_extended(r, real, oi, 0);
1647 } else if (oi->whence == OI_PACKED) {
1648 oi->u.packed.offset = e.offset;
1649 oi->u.packed.pack = e.p;
1650 oi->u.packed.is_delta = (rtype == OBJ_REF_DELTA ||
1651 rtype == OBJ_OFS_DELTA);
1652 }
1653
1654 return 0;
1655 }
1656
1657 int oid_object_info_extended(struct repository *r, const struct object_id *oid,
1658 struct object_info *oi, unsigned flags)
1659 {
1660 int ret;
1661 obj_read_lock();
1662 ret = do_oid_object_info_extended(r, oid, oi, flags);
1663 obj_read_unlock();
1664 return ret;
1665 }
1666
1667
1668 /* returns enum object_type or negative */
1669 int oid_object_info(struct repository *r,
1670 const struct object_id *oid,
1671 unsigned long *sizep)
1672 {
1673 enum object_type type;
1674 struct object_info oi = OBJECT_INFO_INIT;
1675
1676 oi.typep = &type;
1677 oi.sizep = sizep;
1678 if (oid_object_info_extended(r, oid, &oi,
1679 OBJECT_INFO_LOOKUP_REPLACE) < 0)
1680 return -1;
1681 return type;
1682 }
1683
1684 int pretend_object_file(void *buf, unsigned long len, enum object_type type,
1685 struct object_id *oid)
1686 {
1687 struct cached_object *co;
1688
1689 hash_object_file(the_hash_algo, buf, len, type, oid);
1690 if (repo_has_object_file_with_flags(the_repository, oid, OBJECT_INFO_QUICK | OBJECT_INFO_SKIP_FETCH_OBJECT) ||
1691 find_cached_object(oid))
1692 return 0;
1693 ALLOC_GROW(cached_objects, cached_object_nr + 1, cached_object_alloc);
1694 co = &cached_objects[cached_object_nr++];
1695 co->size = len;
1696 co->type = type;
1697 co->buf = xmalloc(len);
1698 memcpy(co->buf, buf, len);
1699 oidcpy(&co->oid, oid);
1700 return 0;
1701 }
1702
1703 /*
1704 * This function dies on corrupt objects; the callers who want to
1705 * deal with them should arrange to call oid_object_info_extended() and give
1706 * error messages themselves.
1707 */
1708 void *repo_read_object_file(struct repository *r,
1709 const struct object_id *oid,
1710 enum object_type *type,
1711 unsigned long *size)
1712 {
1713 struct object_info oi = OBJECT_INFO_INIT;
1714 unsigned flags = OBJECT_INFO_DIE_IF_CORRUPT | OBJECT_INFO_LOOKUP_REPLACE;
1715 void *data;
1716
1717 oi.typep = type;
1718 oi.sizep = size;
1719 oi.contentp = &data;
1720 if (oid_object_info_extended(r, oid, &oi, flags))
1721 return NULL;
1722
1723 return data;
1724 }
1725
1726 void *read_object_with_reference(struct repository *r,
1727 const struct object_id *oid,
1728 enum object_type required_type,
1729 unsigned long *size,
1730 struct object_id *actual_oid_return)
1731 {
1732 enum object_type type;
1733 void *buffer;
1734 unsigned long isize;
1735 struct object_id actual_oid;
1736
1737 oidcpy(&actual_oid, oid);
1738 while (1) {
1739 int ref_length = -1;
1740 const char *ref_type = NULL;
1741
1742 buffer = repo_read_object_file(r, &actual_oid, &type, &isize);
1743 if (!buffer)
1744 return NULL;
1745 if (type == required_type) {
1746 *size = isize;
1747 if (actual_oid_return)
1748 oidcpy(actual_oid_return, &actual_oid);
1749 return buffer;
1750 }
1751 /* Handle references */
1752 else if (type == OBJ_COMMIT)
1753 ref_type = "tree ";
1754 else if (type == OBJ_TAG)
1755 ref_type = "object ";
1756 else {
1757 free(buffer);
1758 return NULL;
1759 }
1760 ref_length = strlen(ref_type);
1761
1762 if (ref_length + the_hash_algo->hexsz > isize ||
1763 memcmp(buffer, ref_type, ref_length) ||
1764 get_oid_hex((char *) buffer + ref_length, &actual_oid)) {
1765 free(buffer);
1766 return NULL;
1767 }
1768 free(buffer);
1769 /* Now we have the ID of the referred-to object in
1770 * actual_oid. Check again. */
1771 }
1772 }
1773
1774 static void hash_object_body(const struct git_hash_algo *algo, git_hash_ctx *c,
1775 const void *buf, unsigned long len,
1776 struct object_id *oid,
1777 char *hdr, int *hdrlen)
1778 {
1779 algo->init_fn(c);
1780 algo->update_fn(c, hdr, *hdrlen);
1781 algo->update_fn(c, buf, len);
1782 algo->final_oid_fn(oid, c);
1783 }
1784
1785 static void write_object_file_prepare(const struct git_hash_algo *algo,
1786 const void *buf, unsigned long len,
1787 enum object_type type, struct object_id *oid,
1788 char *hdr, int *hdrlen)
1789 {
1790 git_hash_ctx c;
1791
1792 /* Generate the header */
1793 *hdrlen = format_object_header(hdr, *hdrlen, type, len);
1794
1795 /* Sha1.. */
1796 hash_object_body(algo, &c, buf, len, oid, hdr, hdrlen);
1797 }
1798
1799 static void write_object_file_prepare_literally(const struct git_hash_algo *algo,
1800 const void *buf, unsigned long len,
1801 const char *type, struct object_id *oid,
1802 char *hdr, int *hdrlen)
1803 {
1804 git_hash_ctx c;
1805
1806 *hdrlen = format_object_header_literally(hdr, *hdrlen, type, len);
1807 hash_object_body(algo, &c, buf, len, oid, hdr, hdrlen);
1808 }
1809
1810 /*
1811 * Move the just written object into its final resting place.
1812 */
1813 int finalize_object_file(const char *tmpfile, const char *filename)
1814 {
1815 int ret = 0;
1816
1817 if (object_creation_mode == OBJECT_CREATION_USES_RENAMES)
1818 goto try_rename;
1819 else if (link(tmpfile, filename))
1820 ret = errno;
1821
1822 /*
1823 * Coda hack - coda doesn't like cross-directory links,
1824 * so we fall back to a rename, which will mean that it
1825 * won't be able to check collisions, but that's not a
1826 * big deal.
1827 *
1828 * The same holds for FAT formatted media.
1829 *
1830 * When this succeeds, we just return. We have nothing
1831 * left to unlink.
1832 */
1833 if (ret && ret != EEXIST) {
1834 try_rename:
1835 if (!rename(tmpfile, filename))
1836 goto out;
1837 ret = errno;
1838 }
1839 unlink_or_warn(tmpfile);
1840 if (ret) {
1841 if (ret != EEXIST) {
1842 return error_errno(_("unable to write file %s"), filename);
1843 }
1844 /* FIXME!!! Collision check here ? */
1845 }
1846
1847 out:
1848 if (adjust_shared_perm(filename))
1849 return error(_("unable to set permission to '%s'"), filename);
1850 return 0;
1851 }
1852
1853 static void hash_object_file_literally(const struct git_hash_algo *algo,
1854 const void *buf, unsigned long len,
1855 const char *type, struct object_id *oid)
1856 {
1857 char hdr[MAX_HEADER_LEN];
1858 int hdrlen = sizeof(hdr);
1859
1860 write_object_file_prepare_literally(algo, buf, len, type, oid, hdr, &hdrlen);
1861 }
1862
1863 void hash_object_file(const struct git_hash_algo *algo, const void *buf,
1864 unsigned long len, enum object_type type,
1865 struct object_id *oid)
1866 {
1867 hash_object_file_literally(algo, buf, len, type_name(type), oid);
1868 }
1869
1870 /* Finalize a file on disk, and close it. */
1871 static void close_loose_object(int fd, const char *filename)
1872 {
1873 if (the_repository->objects->odb->will_destroy)
1874 goto out;
1875
1876 if (batch_fsync_enabled(FSYNC_COMPONENT_LOOSE_OBJECT))
1877 fsync_loose_object_bulk_checkin(fd, filename);
1878 else if (fsync_object_files > 0)
1879 fsync_or_die(fd, filename);
1880 else
1881 fsync_component_or_die(FSYNC_COMPONENT_LOOSE_OBJECT, fd,
1882 filename);
1883
1884 out:
1885 if (close(fd) != 0)
1886 die_errno(_("error when closing loose object file"));
1887 }
1888
1889 /* Size of directory component, including the ending '/' */
1890 static inline int directory_size(const char *filename)
1891 {
1892 const char *s = strrchr(filename, '/');
1893 if (!s)
1894 return 0;
1895 return s - filename + 1;
1896 }
1897
1898 /*
1899 * This creates a temporary file in the same directory as the final
1900 * 'filename'
1901 *
1902 * We want to avoid cross-directory filename renames, because those
1903 * can have problems on various filesystems (FAT, NFS, Coda).
1904 */
1905 static int create_tmpfile(struct strbuf *tmp, const char *filename)
1906 {
1907 int fd, dirlen = directory_size(filename);
1908
1909 strbuf_reset(tmp);
1910 strbuf_add(tmp, filename, dirlen);
1911 strbuf_addstr(tmp, "tmp_obj_XXXXXX");
1912 fd = git_mkstemp_mode(tmp->buf, 0444);
1913 if (fd < 0 && dirlen && errno == ENOENT) {
1914 /*
1915 * Make sure the directory exists; note that the contents
1916 * of the buffer are undefined after mkstemp returns an
1917 * error, so we have to rewrite the whole buffer from
1918 * scratch.
1919 */
1920 strbuf_reset(tmp);
1921 strbuf_add(tmp, filename, dirlen - 1);
1922 if (mkdir(tmp->buf, 0777) && errno != EEXIST)
1923 return -1;
1924 if (adjust_shared_perm(tmp->buf))
1925 return -1;
1926
1927 /* Try again */
1928 strbuf_addstr(tmp, "/tmp_obj_XXXXXX");
1929 fd = git_mkstemp_mode(tmp->buf, 0444);
1930 }
1931 return fd;
1932 }
1933
1934 /**
1935 * Common steps for loose object writers to start writing loose
1936 * objects:
1937 *
1938 * - Create tmpfile for the loose object.
1939 * - Setup zlib stream for compression.
1940 * - Start to feed header to zlib stream.
1941 *
1942 * Returns a "fd", which should later be provided to
1943 * end_loose_object_common().
1944 */
1945 static int start_loose_object_common(struct strbuf *tmp_file,
1946 const char *filename, unsigned flags,
1947 git_zstream *stream,
1948 unsigned char *buf, size_t buflen,
1949 git_hash_ctx *c,
1950 char *hdr, int hdrlen)
1951 {
1952 int fd;
1953
1954 fd = create_tmpfile(tmp_file, filename);
1955 if (fd < 0) {
1956 if (flags & HASH_SILENT)
1957 return -1;
1958 else if (errno == EACCES)
1959 return error(_("insufficient permission for adding "
1960 "an object to repository database %s"),
1961 get_object_directory());
1962 else
1963 return error_errno(
1964 _("unable to create temporary file"));
1965 }
1966
1967 /* Setup zlib stream for compression */
1968 git_deflate_init(stream, zlib_compression_level);
1969 stream->next_out = buf;
1970 stream->avail_out = buflen;
1971 the_hash_algo->init_fn(c);
1972
1973 /* Start to feed header to zlib stream */
1974 stream->next_in = (unsigned char *)hdr;
1975 stream->avail_in = hdrlen;
1976 while (git_deflate(stream, 0) == Z_OK)
1977 ; /* nothing */
1978 the_hash_algo->update_fn(c, hdr, hdrlen);
1979
1980 return fd;
1981 }
1982
1983 /**
1984 * Common steps for the inner git_deflate() loop for writing loose
1985 * objects. Returns what git_deflate() returns.
1986 */
1987 static int write_loose_object_common(git_hash_ctx *c,
1988 git_zstream *stream, const int flush,
1989 unsigned char *in0, const int fd,
1990 unsigned char *compressed,
1991 const size_t compressed_len)
1992 {
1993 int ret;
1994
1995 ret = git_deflate(stream, flush ? Z_FINISH : 0);
1996 the_hash_algo->update_fn(c, in0, stream->next_in - in0);
1997 if (write_in_full(fd, compressed, stream->next_out - compressed) < 0)
1998 die_errno(_("unable to write loose object file"));
1999 stream->next_out = compressed;
2000 stream->avail_out = compressed_len;
2001
2002 return ret;
2003 }
2004
2005 /**
2006 * Common steps for loose object writers to end writing loose objects:
2007 *
2008 * - End the compression of zlib stream.
2009 * - Get the calculated oid to "oid".
2010 */
2011 static int end_loose_object_common(git_hash_ctx *c, git_zstream *stream,
2012 struct object_id *oid)
2013 {
2014 int ret;
2015
2016 ret = git_deflate_end_gently(stream);
2017 if (ret != Z_OK)
2018 return ret;
2019 the_hash_algo->final_oid_fn(oid, c);
2020
2021 return Z_OK;
2022 }
2023
2024 static int write_loose_object(const struct object_id *oid, char *hdr,
2025 int hdrlen, const void *buf, unsigned long len,
2026 time_t mtime, unsigned flags)
2027 {
2028 int fd, ret;
2029 unsigned char compressed[4096];
2030 git_zstream stream;
2031 git_hash_ctx c;
2032 struct object_id parano_oid;
2033 static struct strbuf tmp_file = STRBUF_INIT;
2034 static struct strbuf filename = STRBUF_INIT;
2035
2036 if (batch_fsync_enabled(FSYNC_COMPONENT_LOOSE_OBJECT))
2037 prepare_loose_object_bulk_checkin();
2038
2039 loose_object_path(the_repository, &filename, oid);
2040
2041 fd = start_loose_object_common(&tmp_file, filename.buf, flags,
2042 &stream, compressed, sizeof(compressed),
2043 &c, hdr, hdrlen);
2044 if (fd < 0)
2045 return -1;
2046
2047 /* Then the data itself.. */
2048 stream.next_in = (void *)buf;
2049 stream.avail_in = len;
2050 do {
2051 unsigned char *in0 = stream.next_in;
2052
2053 ret = write_loose_object_common(&c, &stream, 1, in0, fd,
2054 compressed, sizeof(compressed));
2055 } while (ret == Z_OK);
2056
2057 if (ret != Z_STREAM_END)
2058 die(_("unable to deflate new object %s (%d)"), oid_to_hex(oid),
2059 ret);
2060 ret = end_loose_object_common(&c, &stream, &parano_oid);
2061 if (ret != Z_OK)
2062 die(_("deflateEnd on object %s failed (%d)"), oid_to_hex(oid),
2063 ret);
2064 if (!oideq(oid, &parano_oid))
2065 die(_("confused by unstable object source data for %s"),
2066 oid_to_hex(oid));
2067
2068 close_loose_object(fd, tmp_file.buf);
2069
2070 if (mtime) {
2071 struct utimbuf utb;
2072 utb.actime = mtime;
2073 utb.modtime = mtime;
2074 if (utime(tmp_file.buf, &utb) < 0 &&
2075 !(flags & HASH_SILENT))
2076 warning_errno(_("failed utime() on %s"), tmp_file.buf);
2077 }
2078
2079 return finalize_object_file(tmp_file.buf, filename.buf);
2080 }
2081
2082 static int freshen_loose_object(const struct object_id *oid)
2083 {
2084 return check_and_freshen(oid, 1);
2085 }
2086
2087 static int freshen_packed_object(const struct object_id *oid)
2088 {
2089 struct pack_entry e;
2090 if (!find_pack_entry(the_repository, oid, &e))
2091 return 0;
2092 if (e.p->is_cruft)
2093 return 0;
2094 if (e.p->freshened)
2095 return 1;
2096 if (!freshen_file(e.p->pack_name))
2097 return 0;
2098 e.p->freshened = 1;
2099 return 1;
2100 }
2101
2102 int stream_loose_object(struct input_stream *in_stream, size_t len,
2103 struct object_id *oid)
2104 {
2105 int fd, ret, err = 0, flush = 0;
2106 unsigned char compressed[4096];
2107 git_zstream stream;
2108 git_hash_ctx c;
2109 struct strbuf tmp_file = STRBUF_INIT;
2110 struct strbuf filename = STRBUF_INIT;
2111 int dirlen;
2112 char hdr[MAX_HEADER_LEN];
2113 int hdrlen;
2114
2115 if (batch_fsync_enabled(FSYNC_COMPONENT_LOOSE_OBJECT))
2116 prepare_loose_object_bulk_checkin();
2117
2118 /* Since oid is not determined, save tmp file to odb path. */
2119 strbuf_addf(&filename, "%s/", get_object_directory());
2120 hdrlen = format_object_header(hdr, sizeof(hdr), OBJ_BLOB, len);
2121
2122 /*
2123 * Common steps for write_loose_object and stream_loose_object to
2124 * start writing loose objects:
2125 *
2126 * - Create tmpfile for the loose object.
2127 * - Setup zlib stream for compression.
2128 * - Start to feed header to zlib stream.
2129 */
2130 fd = start_loose_object_common(&tmp_file, filename.buf, 0,
2131 &stream, compressed, sizeof(compressed),
2132 &c, hdr, hdrlen);
2133 if (fd < 0) {
2134 err = -1;
2135 goto cleanup;
2136 }
2137
2138 /* Then the data itself.. */
2139 do {
2140 unsigned char *in0 = stream.next_in;
2141
2142 if (!stream.avail_in && !in_stream->is_finished) {
2143 const void *in = in_stream->read(in_stream, &stream.avail_in);
2144 stream.next_in = (void *)in;
2145 in0 = (unsigned char *)in;
2146 /* All data has been read. */
2147 if (in_stream->is_finished)
2148 flush = 1;
2149 }
2150 ret = write_loose_object_common(&c, &stream, flush, in0, fd,
2151 compressed, sizeof(compressed));
2152 /*
2153 * Unlike write_loose_object(), we do not have the entire
2154 * buffer. If we get Z_BUF_ERROR due to too few input bytes,
2155 * then we'll replenish them in the next input_stream->read()
2156 * call when we loop.
2157 */
2158 } while (ret == Z_OK || ret == Z_BUF_ERROR);
2159
2160 if (stream.total_in != len + hdrlen)
2161 die(_("write stream object %ld != %"PRIuMAX), stream.total_in,
2162 (uintmax_t)len + hdrlen);
2163
2164 /*
2165 * Common steps for write_loose_object and stream_loose_object to
2166 * end writing loose oject:
2167 *
2168 * - End the compression of zlib stream.
2169 * - Get the calculated oid.
2170 */
2171 if (ret != Z_STREAM_END)
2172 die(_("unable to stream deflate new object (%d)"), ret);
2173 ret = end_loose_object_common(&c, &stream, oid);
2174 if (ret != Z_OK)
2175 die(_("deflateEnd on stream object failed (%d)"), ret);
2176 close_loose_object(fd, tmp_file.buf);
2177
2178 if (freshen_packed_object(oid) || freshen_loose_object(oid)) {
2179 unlink_or_warn(tmp_file.buf);
2180 goto cleanup;
2181 }
2182
2183 loose_object_path(the_repository, &filename, oid);
2184
2185 /* We finally know the object path, and create the missing dir. */
2186 dirlen = directory_size(filename.buf);
2187 if (dirlen) {
2188 struct strbuf dir = STRBUF_INIT;
2189 strbuf_add(&dir, filename.buf, dirlen);
2190
2191 if (mkdir_in_gitdir(dir.buf) && errno != EEXIST) {
2192 err = error_errno(_("unable to create directory %s"), dir.buf);
2193 strbuf_release(&dir);
2194 goto cleanup;
2195 }
2196 strbuf_release(&dir);
2197 }
2198
2199 err = finalize_object_file(tmp_file.buf, filename.buf);
2200 cleanup:
2201 strbuf_release(&tmp_file);
2202 strbuf_release(&filename);
2203 return err;
2204 }
2205
2206 int write_object_file_flags(const void *buf, unsigned long len,
2207 enum object_type type, struct object_id *oid,
2208 unsigned flags)
2209 {
2210 char hdr[MAX_HEADER_LEN];
2211 int hdrlen = sizeof(hdr);
2212
2213 /* Normally if we have it in the pack then we do not bother writing
2214 * it out into .git/objects/??/?{38} file.
2215 */
2216 write_object_file_prepare(the_hash_algo, buf, len, type, oid, hdr,
2217 &hdrlen);
2218 if (freshen_packed_object(oid) || freshen_loose_object(oid))
2219 return 0;
2220 return write_loose_object(oid, hdr, hdrlen, buf, len, 0, flags);
2221 }
2222
2223 int write_object_file_literally(const void *buf, unsigned long len,
2224 const char *type, struct object_id *oid,
2225 unsigned flags)
2226 {
2227 char *header;
2228 int hdrlen, status = 0;
2229
2230 /* type string, SP, %lu of the length plus NUL must fit this */
2231 hdrlen = strlen(type) + MAX_HEADER_LEN;
2232 header = xmalloc(hdrlen);
2233 write_object_file_prepare_literally(the_hash_algo, buf, len, type,
2234 oid, header, &hdrlen);
2235
2236 if (!(flags & HASH_WRITE_OBJECT))
2237 goto cleanup;
2238 if (freshen_packed_object(oid) || freshen_loose_object(oid))
2239 goto cleanup;
2240 status = write_loose_object(oid, header, hdrlen, buf, len, 0, 0);
2241
2242 cleanup:
2243 free(header);
2244 return status;
2245 }
2246
2247 int force_object_loose(const struct object_id *oid, time_t mtime)
2248 {
2249 void *buf;
2250 unsigned long len;
2251 struct object_info oi = OBJECT_INFO_INIT;
2252 enum object_type type;
2253 char hdr[MAX_HEADER_LEN];
2254 int hdrlen;
2255 int ret;
2256
2257 if (has_loose_object(oid))
2258 return 0;
2259 oi.typep = &type;
2260 oi.sizep = &len;
2261 oi.contentp = &buf;
2262 if (oid_object_info_extended(the_repository, oid, &oi, 0))
2263 return error(_("cannot read object for %s"), oid_to_hex(oid));
2264 hdrlen = format_object_header(hdr, sizeof(hdr), type, len);
2265 ret = write_loose_object(oid, hdr, hdrlen, buf, len, mtime, 0);
2266 free(buf);
2267
2268 return ret;
2269 }
2270
2271 int has_object(struct repository *r, const struct object_id *oid,
2272 unsigned flags)
2273 {
2274 int quick = !(flags & HAS_OBJECT_RECHECK_PACKED);
2275 unsigned object_info_flags = OBJECT_INFO_SKIP_FETCH_OBJECT |
2276 (quick ? OBJECT_INFO_QUICK : 0);
2277
2278 if (!startup_info->have_repository)
2279 return 0;
2280 return oid_object_info_extended(r, oid, NULL, object_info_flags) >= 0;
2281 }
2282
2283 int repo_has_object_file_with_flags(struct repository *r,
2284 const struct object_id *oid, int flags)
2285 {
2286 if (!startup_info->have_repository)
2287 return 0;
2288 return oid_object_info_extended(r, oid, NULL, flags) >= 0;
2289 }
2290
2291 int repo_has_object_file(struct repository *r,
2292 const struct object_id *oid)
2293 {
2294 return repo_has_object_file_with_flags(r, oid, 0);
2295 }
2296
2297 /*
2298 * We can't use the normal fsck_error_function() for index_mem(),
2299 * because we don't yet have a valid oid for it to report. Instead,
2300 * report the minimal fsck error here, and rely on the caller to
2301 * give more context.
2302 */
2303 static int hash_format_check_report(struct fsck_options *opts,
2304 const struct object_id *oid,
2305 enum object_type object_type,
2306 enum fsck_msg_type msg_type,
2307 enum fsck_msg_id msg_id,
2308 const char *message)
2309 {
2310 error(_("object fails fsck: %s"), message);
2311 return 1;
2312 }
2313
2314 static int index_mem(struct index_state *istate,
2315 struct object_id *oid, void *buf, size_t size,
2316 enum object_type type,
2317 const char *path, unsigned flags)
2318 {
2319 int ret = 0;
2320 int re_allocated = 0;
2321 int write_object = flags & HASH_WRITE_OBJECT;
2322
2323 if (!type)
2324 type = OBJ_BLOB;
2325
2326 /*
2327 * Convert blobs to git internal format
2328 */
2329 if ((type == OBJ_BLOB) && path) {
2330 struct strbuf nbuf = STRBUF_INIT;
2331 if (convert_to_git(istate, path, buf, size, &nbuf,
2332 get_conv_flags(flags))) {
2333 buf = strbuf_detach(&nbuf, &size);
2334 re_allocated = 1;
2335 }
2336 }
2337 if (flags & HASH_FORMAT_CHECK) {
2338 struct fsck_options opts = FSCK_OPTIONS_DEFAULT;
2339
2340 opts.strict = 1;
2341 opts.error_func = hash_format_check_report;
2342 if (fsck_buffer(null_oid(), type, buf, size, &opts))
2343 die(_("refusing to create malformed object"));
2344 fsck_finish(&opts);
2345 }
2346
2347 if (write_object)
2348 ret = write_object_file(buf, size, type, oid);
2349 else
2350 hash_object_file(the_hash_algo, buf, size, type, oid);
2351 if (re_allocated)
2352 free(buf);
2353 return ret;
2354 }
2355
2356 static int index_stream_convert_blob(struct index_state *istate,
2357 struct object_id *oid,
2358 int fd,
2359 const char *path,
2360 unsigned flags)
2361 {
2362 int ret = 0;
2363 const int write_object = flags & HASH_WRITE_OBJECT;
2364 struct strbuf sbuf = STRBUF_INIT;
2365
2366 assert(path);
2367 assert(would_convert_to_git_filter_fd(istate, path));
2368
2369 convert_to_git_filter_fd(istate, path, fd, &sbuf,
2370 get_conv_flags(flags));
2371
2372 if (write_object)
2373 ret = write_object_file(sbuf.buf, sbuf.len, OBJ_BLOB,
2374 oid);
2375 else
2376 hash_object_file(the_hash_algo, sbuf.buf, sbuf.len, OBJ_BLOB,
2377 oid);
2378 strbuf_release(&sbuf);
2379 return ret;
2380 }
2381
2382 static int index_pipe(struct index_state *istate, struct object_id *oid,
2383 int fd, enum object_type type,
2384 const char *path, unsigned flags)
2385 {
2386 struct strbuf sbuf = STRBUF_INIT;
2387 int ret;
2388
2389 if (strbuf_read(&sbuf, fd, 4096) >= 0)
2390 ret = index_mem(istate, oid, sbuf.buf, sbuf.len, type, path, flags);
2391 else
2392 ret = -1;
2393 strbuf_release(&sbuf);
2394 return ret;
2395 }
2396
2397 #define SMALL_FILE_SIZE (32*1024)
2398
2399 static int index_core(struct index_state *istate,
2400 struct object_id *oid, int fd, size_t size,
2401 enum object_type type, const char *path,
2402 unsigned flags)
2403 {
2404 int ret;
2405
2406 if (!size) {
2407 ret = index_mem(istate, oid, "", size, type, path, flags);
2408 } else if (size <= SMALL_FILE_SIZE) {
2409 char *buf = xmalloc(size);
2410 ssize_t read_result = read_in_full(fd, buf, size);
2411 if (read_result < 0)
2412 ret = error_errno(_("read error while indexing %s"),
2413 path ? path : "<unknown>");
2414 else if (read_result != size)
2415 ret = error(_("short read while indexing %s"),
2416 path ? path : "<unknown>");
2417 else
2418 ret = index_mem(istate, oid, buf, size, type, path, flags);
2419 free(buf);
2420 } else {
2421 void *buf = xmmap(NULL, size, PROT_READ, MAP_PRIVATE, fd, 0);
2422 ret = index_mem(istate, oid, buf, size, type, path, flags);
2423 munmap(buf, size);
2424 }
2425 return ret;
2426 }
2427
2428 /*
2429 * This creates one packfile per large blob unless bulk-checkin
2430 * machinery is "plugged".
2431 *
2432 * This also bypasses the usual "convert-to-git" dance, and that is on
2433 * purpose. We could write a streaming version of the converting
2434 * functions and insert that before feeding the data to fast-import
2435 * (or equivalent in-core API described above). However, that is
2436 * somewhat complicated, as we do not know the size of the filter
2437 * result, which we need to know beforehand when writing a git object.
2438 * Since the primary motivation for trying to stream from the working
2439 * tree file and to avoid mmaping it in core is to deal with large
2440 * binary blobs, they generally do not want to get any conversion, and
2441 * callers should avoid this code path when filters are requested.
2442 */
2443 static int index_stream(struct object_id *oid, int fd, size_t size,
2444 enum object_type type, const char *path,
2445 unsigned flags)
2446 {
2447 return index_bulk_checkin(oid, fd, size, type, path, flags);
2448 }
2449
2450 int index_fd(struct index_state *istate, struct object_id *oid,
2451 int fd, struct stat *st,
2452 enum object_type type, const char *path, unsigned flags)
2453 {
2454 int ret;
2455
2456 /*
2457 * Call xsize_t() only when needed to avoid potentially unnecessary
2458 * die() for large files.
2459 */
2460 if (type == OBJ_BLOB && path && would_convert_to_git_filter_fd(istate, path))
2461 ret = index_stream_convert_blob(istate, oid, fd, path, flags);
2462 else if (!S_ISREG(st->st_mode))
2463 ret = index_pipe(istate, oid, fd, type, path, flags);
2464 else if (st->st_size <= big_file_threshold || type != OBJ_BLOB ||
2465 (path && would_convert_to_git(istate, path)))
2466 ret = index_core(istate, oid, fd, xsize_t(st->st_size),
2467 type, path, flags);
2468 else
2469 ret = index_stream(oid, fd, xsize_t(st->st_size), type, path,
2470 flags);
2471 close(fd);
2472 return ret;
2473 }
2474
2475 int index_path(struct index_state *istate, struct object_id *oid,
2476 const char *path, struct stat *st, unsigned flags)
2477 {
2478 int fd;
2479 struct strbuf sb = STRBUF_INIT;
2480 int rc = 0;
2481
2482 switch (st->st_mode & S_IFMT) {
2483 case S_IFREG:
2484 fd = open(path, O_RDONLY);
2485 if (fd < 0)
2486 return error_errno("open(\"%s\")", path);
2487 if (index_fd(istate, oid, fd, st, OBJ_BLOB, path, flags) < 0)
2488 return error(_("%s: failed to insert into database"),
2489 path);
2490 break;
2491 case S_IFLNK:
2492 if (strbuf_readlink(&sb, path, st->st_size))
2493 return error_errno("readlink(\"%s\")", path);
2494 if (!(flags & HASH_WRITE_OBJECT))
2495 hash_object_file(the_hash_algo, sb.buf, sb.len,
2496 OBJ_BLOB, oid);
2497 else if (write_object_file(sb.buf, sb.len, OBJ_BLOB, oid))
2498 rc = error(_("%s: failed to insert into database"), path);
2499 strbuf_release(&sb);
2500 break;
2501 case S_IFDIR:
2502 return resolve_gitlink_ref(path, "HEAD", oid);
2503 default:
2504 return error(_("%s: unsupported file type"), path);
2505 }
2506 return rc;
2507 }
2508
2509 int read_pack_header(int fd, struct pack_header *header)
2510 {
2511 if (read_in_full(fd, header, sizeof(*header)) != sizeof(*header))
2512 /* "eof before pack header was fully read" */
2513 return PH_ERROR_EOF;
2514
2515 if (header->hdr_signature != htonl(PACK_SIGNATURE))
2516 /* "protocol error (pack signature mismatch detected)" */
2517 return PH_ERROR_PACK_SIGNATURE;
2518 if (!pack_version_ok(header->hdr_version))
2519 /* "protocol error (pack version unsupported)" */
2520 return PH_ERROR_PROTOCOL;
2521 return 0;
2522 }
2523
2524 void assert_oid_type(const struct object_id *oid, enum object_type expect)
2525 {
2526 enum object_type type = oid_object_info(the_repository, oid, NULL);
2527 if (type < 0)
2528 die(_("%s is not a valid object"), oid_to_hex(oid));
2529 if (type != expect)
2530 die(_("%s is not a valid '%s' object"), oid_to_hex(oid),
2531 type_name(expect));
2532 }
2533
2534 int for_each_file_in_obj_subdir(unsigned int subdir_nr,
2535 struct strbuf *path,
2536 each_loose_object_fn obj_cb,
2537 each_loose_cruft_fn cruft_cb,
2538 each_loose_subdir_fn subdir_cb,
2539 void *data)
2540 {
2541 size_t origlen, baselen;
2542 DIR *dir;
2543 struct dirent *de;
2544 int r = 0;
2545 struct object_id oid;
2546
2547 if (subdir_nr > 0xff)
2548 BUG("invalid loose object subdirectory: %x", subdir_nr);
2549
2550 origlen = path->len;
2551 strbuf_complete(path, '/');
2552 strbuf_addf(path, "%02x", subdir_nr);
2553
2554 dir = opendir(path->buf);
2555 if (!dir) {
2556 if (errno != ENOENT)
2557 r = error_errno(_("unable to open %s"), path->buf);
2558 strbuf_setlen(path, origlen);
2559 return r;
2560 }
2561
2562 oid.hash[0] = subdir_nr;
2563 strbuf_addch(path, '/');
2564 baselen = path->len;
2565
2566 while ((de = readdir_skip_dot_and_dotdot(dir))) {
2567 size_t namelen;
2568
2569 namelen = strlen(de->d_name);
2570 strbuf_setlen(path, baselen);
2571 strbuf_add(path, de->d_name, namelen);
2572 if (namelen == the_hash_algo->hexsz - 2 &&
2573 !hex_to_bytes(oid.hash + 1, de->d_name,
2574 the_hash_algo->rawsz - 1)) {
2575 oid_set_algo(&oid, the_hash_algo);
2576 if (obj_cb) {
2577 r = obj_cb(&oid, path->buf, data);
2578 if (r)
2579 break;
2580 }
2581 continue;
2582 }
2583
2584 if (cruft_cb) {
2585 r = cruft_cb(de->d_name, path->buf, data);
2586 if (r)
2587 break;
2588 }
2589 }
2590 closedir(dir);
2591
2592 strbuf_setlen(path, baselen - 1);
2593 if (!r && subdir_cb)
2594 r = subdir_cb(subdir_nr, path->buf, data);
2595
2596 strbuf_setlen(path, origlen);
2597
2598 return r;
2599 }
2600
2601 int for_each_loose_file_in_objdir_buf(struct strbuf *path,
2602 each_loose_object_fn obj_cb,
2603 each_loose_cruft_fn cruft_cb,
2604 each_loose_subdir_fn subdir_cb,
2605 void *data)
2606 {
2607 int r = 0;
2608 int i;
2609
2610 for (i = 0; i < 256; i++) {
2611 r = for_each_file_in_obj_subdir(i, path, obj_cb, cruft_cb,
2612 subdir_cb, data);
2613 if (r)
2614 break;
2615 }
2616
2617 return r;
2618 }
2619
2620 int for_each_loose_file_in_objdir(const char *path,
2621 each_loose_object_fn obj_cb,
2622 each_loose_cruft_fn cruft_cb,
2623 each_loose_subdir_fn subdir_cb,
2624 void *data)
2625 {
2626 struct strbuf buf = STRBUF_INIT;
2627 int r;
2628
2629 strbuf_addstr(&buf, path);
2630 r = for_each_loose_file_in_objdir_buf(&buf, obj_cb, cruft_cb,
2631 subdir_cb, data);
2632 strbuf_release(&buf);
2633
2634 return r;
2635 }
2636
2637 int for_each_loose_object(each_loose_object_fn cb, void *data,
2638 enum for_each_object_flags flags)
2639 {
2640 struct object_directory *odb;
2641
2642 prepare_alt_odb(the_repository);
2643 for (odb = the_repository->objects->odb; odb; odb = odb->next) {
2644 int r = for_each_loose_file_in_objdir(odb->path, cb, NULL,
2645 NULL, data);
2646 if (r)
2647 return r;
2648
2649 if (flags & FOR_EACH_OBJECT_LOCAL_ONLY)
2650 break;
2651 }
2652
2653 return 0;
2654 }
2655
2656 static int append_loose_object(const struct object_id *oid,
2657 const char *path UNUSED,
2658 void *data)
2659 {
2660 oidtree_insert(data, oid);
2661 return 0;
2662 }
2663
2664 struct oidtree *odb_loose_cache(struct object_directory *odb,
2665 const struct object_id *oid)
2666 {
2667 int subdir_nr = oid->hash[0];
2668 struct strbuf buf = STRBUF_INIT;
2669 size_t word_bits = bitsizeof(odb->loose_objects_subdir_seen[0]);
2670 size_t word_index = subdir_nr / word_bits;
2671 size_t mask = (size_t)1u << (subdir_nr % word_bits);
2672 uint32_t *bitmap;
2673
2674 if (subdir_nr < 0 ||
2675 subdir_nr >= bitsizeof(odb->loose_objects_subdir_seen))
2676 BUG("subdir_nr out of range");
2677
2678 bitmap = &odb->loose_objects_subdir_seen[word_index];
2679 if (*bitmap & mask)
2680 return odb->loose_objects_cache;
2681 if (!odb->loose_objects_cache) {
2682 ALLOC_ARRAY(odb->loose_objects_cache, 1);
2683 oidtree_init(odb->loose_objects_cache);
2684 }
2685 strbuf_addstr(&buf, odb->path);
2686 for_each_file_in_obj_subdir(subdir_nr, &buf,
2687 append_loose_object,
2688 NULL, NULL,
2689 odb->loose_objects_cache);
2690 *bitmap |= mask;
2691 strbuf_release(&buf);
2692 return odb->loose_objects_cache;
2693 }
2694
2695 void odb_clear_loose_cache(struct object_directory *odb)
2696 {
2697 oidtree_clear(odb->loose_objects_cache);
2698 FREE_AND_NULL(odb->loose_objects_cache);
2699 memset(&odb->loose_objects_subdir_seen, 0,
2700 sizeof(odb->loose_objects_subdir_seen));
2701 }
2702
2703 static int check_stream_oid(git_zstream *stream,
2704 const char *hdr,
2705 unsigned long size,
2706 const char *path,
2707 const struct object_id *expected_oid)
2708 {
2709 git_hash_ctx c;
2710 struct object_id real_oid;
2711 unsigned char buf[4096];
2712 unsigned long total_read;
2713 int status = Z_OK;
2714
2715 the_hash_algo->init_fn(&c);
2716 the_hash_algo->update_fn(&c, hdr, stream->total_out);
2717
2718 /*
2719 * We already read some bytes into hdr, but the ones up to the NUL
2720 * do not count against the object's content size.
2721 */
2722 total_read = stream->total_out - strlen(hdr) - 1;
2723
2724 /*
2725 * This size comparison must be "<=" to read the final zlib packets;
2726 * see the comment in unpack_loose_rest for details.
2727 */
2728 while (total_read <= size &&
2729 (status == Z_OK ||
2730 (status == Z_BUF_ERROR && !stream->avail_out))) {
2731 stream->next_out = buf;
2732 stream->avail_out = sizeof(buf);
2733 if (size - total_read < stream->avail_out)
2734 stream->avail_out = size - total_read;
2735 status = git_inflate(stream, Z_FINISH);
2736 the_hash_algo->update_fn(&c, buf, stream->next_out - buf);
2737 total_read += stream->next_out - buf;
2738 }
2739 git_inflate_end(stream);
2740
2741 if (status != Z_STREAM_END) {
2742 error(_("corrupt loose object '%s'"), oid_to_hex(expected_oid));
2743 return -1;
2744 }
2745 if (stream->avail_in) {
2746 error(_("garbage at end of loose object '%s'"),
2747 oid_to_hex(expected_oid));
2748 return -1;
2749 }
2750
2751 the_hash_algo->final_oid_fn(&real_oid, &c);
2752 if (!oideq(expected_oid, &real_oid)) {
2753 error(_("hash mismatch for %s (expected %s)"), path,
2754 oid_to_hex(expected_oid));
2755 return -1;
2756 }
2757
2758 return 0;
2759 }
2760
2761 int read_loose_object(const char *path,
2762 const struct object_id *expected_oid,
2763 struct object_id *real_oid,
2764 void **contents,
2765 struct object_info *oi)
2766 {
2767 int ret = -1;
2768 int fd;
2769 void *map = NULL;
2770 unsigned long mapsize;
2771 git_zstream stream;
2772 char hdr[MAX_HEADER_LEN];
2773 unsigned long *size = oi->sizep;
2774
2775 fd = git_open(path);
2776 if (fd >= 0)
2777 map = map_fd(fd, path, &mapsize);
2778 if (!map) {
2779 error_errno(_("unable to mmap %s"), path);
2780 goto out;
2781 }
2782
2783 if (unpack_loose_header(&stream, map, mapsize, hdr, sizeof(hdr),
2784 NULL) != ULHR_OK) {
2785 error(_("unable to unpack header of %s"), path);
2786 goto out;
2787 }
2788
2789 if (parse_loose_header(hdr, oi) < 0) {
2790 error(_("unable to parse header of %s"), path);
2791 git_inflate_end(&stream);
2792 goto out;
2793 }
2794
2795 if (*oi->typep == OBJ_BLOB && *size > big_file_threshold) {
2796 if (check_stream_oid(&stream, hdr, *size, path, expected_oid) < 0)
2797 goto out;
2798 } else {
2799 *contents = unpack_loose_rest(&stream, hdr, *size, expected_oid);
2800 if (!*contents) {
2801 error(_("unable to unpack contents of %s"), path);
2802 git_inflate_end(&stream);
2803 goto out;
2804 }
2805 hash_object_file_literally(the_repository->hash_algo,
2806 *contents, *size,
2807 oi->type_name->buf, real_oid);
2808 if (!oideq(expected_oid, real_oid))
2809 goto out;
2810 }
2811
2812 ret = 0; /* everything checks out */
2813
2814 out:
2815 if (map)
2816 munmap(map, mapsize);
2817 return ret;
2818 }