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