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