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