blob: d843279715c3369ed92f853bd91c0e846af55049 [file] [log] [blame]
Junio C Hamano568508e2011-10-28 14:48:40 -07001/*
2 * Copyright (c) 2011, Google Inc.
3 */
Elijah Newrenb6fdc442023-04-11 00:41:54 -07004#include "git-compat-util.h"
Elijah Newren36bf1952023-02-24 00:09:24 +00005#include "alloc.h"
Junio C Hamano568508e2011-10-28 14:48:40 -07006#include "bulk-checkin.h"
Elijah Newren32a8f512023-03-21 06:26:03 +00007#include "environment.h"
Elijah Newrenf394e092023-03-21 06:25:54 +00008#include "gettext.h"
Elijah Newren41771fa2023-02-24 00:09:27 +00009#include "hex.h"
Neeraj Singhc0f47522022-04-04 22:20:09 -070010#include "lockfile.h"
Stefan Bellera49d2832018-03-23 18:45:21 +010011#include "repository.h"
Junio C Hamano568508e2011-10-28 14:48:40 -070012#include "csum-file.h"
13#include "pack.h"
Sun He58892712014-03-03 17:24:29 +080014#include "strbuf.h"
Neeraj Singhc0f47522022-04-04 22:20:09 -070015#include "string-list.h"
16#include "tmp-objdir.h"
Jonathan Tan0abe14f2017-08-18 15:20:26 -070017#include "packfile.h"
Elijah Newren87bed172023-04-11 00:41:53 -070018#include "object-file.h"
Stefan Bellercbd53a22018-05-15 16:42:15 -070019#include "object-store.h"
Elijah Newren65156bb2023-04-11 00:42:02 -070020#include "wrapper.h"
Junio C Hamano568508e2011-10-28 14:48:40 -070021
Neeraj Singh2c23d1b2022-04-04 22:20:08 -070022static int odb_transaction_nesting;
Junio C Hamano568508e2011-10-28 14:48:40 -070023
Neeraj Singhc0f47522022-04-04 22:20:09 -070024static struct tmp_objdir *bulk_fsync_objdir;
25
Neeraj Singh897c9e22022-04-04 22:20:07 -070026static struct bulk_checkin_packfile {
Junio C Hamano568508e2011-10-28 14:48:40 -070027 char *pack_tmp_name;
brian m. carlson98a3bea2018-02-01 02:18:46 +000028 struct hashfile *f;
Junio C Hamano568508e2011-10-28 14:48:40 -070029 off_t offset;
30 struct pack_idx_option pack_idx_opts;
31
32 struct pack_idx_entry **written;
33 uint32_t alloc_written;
34 uint32_t nr_written;
Neeraj Singh897c9e22022-04-04 22:20:07 -070035} bulk_checkin_packfile;
Junio C Hamano568508e2011-10-28 14:48:40 -070036
Ævar Arnfjörð Bjarmason2ec02dd2021-09-09 19:24:56 -040037static void finish_tmp_packfile(struct strbuf *basename,
38 const char *pack_tmp_name,
39 struct pack_idx_entry **written_list,
40 uint32_t nr_written,
41 struct pack_idx_option *pack_idx_opts,
42 unsigned char hash[])
43{
44 char *idx_tmp_name = NULL;
45
46 stage_tmp_packfiles(basename, pack_tmp_name, written_list, nr_written,
Taylor Blau1c573cd2022-05-20 19:17:38 -040047 NULL, pack_idx_opts, hash, &idx_tmp_name);
Ævar Arnfjörð Bjarmason2ec02dd2021-09-09 19:24:56 -040048 rename_tmp_packfile_idx(basename, &idx_tmp_name);
49
50 free(idx_tmp_name);
51}
52
Neeraj Singh897c9e22022-04-04 22:20:07 -070053static void flush_bulk_checkin_packfile(struct bulk_checkin_packfile *state)
Junio C Hamano568508e2011-10-28 14:48:40 -070054{
Taylor Blauae44b5a2021-09-09 19:24:32 -040055 unsigned char hash[GIT_MAX_RAWSZ];
Sun He58892712014-03-03 17:24:29 +080056 struct strbuf packname = STRBUF_INIT;
Junio C Hamano568508e2011-10-28 14:48:40 -070057 int i;
58
59 if (!state->f)
60 return;
61
62 if (state->nr_written == 0) {
63 close(state->f->fd);
64 unlink(state->pack_tmp_name);
65 goto clear_exit;
66 } else if (state->nr_written == 1) {
Neeraj Singh020406e2022-03-10 22:43:21 +000067 finalize_hashfile(state->f, hash, FSYNC_COMPONENT_PACK,
68 CSUM_HASH_IN_STREAM | CSUM_FSYNC | CSUM_CLOSE);
Junio C Hamano568508e2011-10-28 14:48:40 -070069 } else {
Neeraj Singh020406e2022-03-10 22:43:21 +000070 int fd = finalize_hashfile(state->f, hash, FSYNC_COMPONENT_PACK, 0);
Taylor Blauae44b5a2021-09-09 19:24:32 -040071 fixup_pack_header_footer(fd, hash, state->pack_tmp_name,
72 state->nr_written, hash,
Junio C Hamano568508e2011-10-28 14:48:40 -070073 state->offset);
74 close(fd);
75 }
76
Ævar Arnfjörð Bjarmason66833f02021-09-09 19:24:37 -040077 strbuf_addf(&packname, "%s/pack/pack-%s.", get_object_directory(),
78 hash_to_hex(hash));
Sun He58892712014-03-03 17:24:29 +080079 finish_tmp_packfile(&packname, state->pack_tmp_name,
Junio C Hamano568508e2011-10-28 14:48:40 -070080 state->written, state->nr_written,
Taylor Blauae44b5a2021-09-09 19:24:32 -040081 &state->pack_idx_opts, hash);
Junio C Hamano568508e2011-10-28 14:48:40 -070082 for (i = 0; i < state->nr_written; i++)
83 free(state->written[i]);
84
85clear_exit:
86 free(state->written);
87 memset(state, 0, sizeof(*state));
88
Sun He58892712014-03-03 17:24:29 +080089 strbuf_release(&packname);
Junio C Hamano568508e2011-10-28 14:48:40 -070090 /* Make objects we just wrote available to ourselves */
Stefan Bellera49d2832018-03-23 18:45:21 +010091 reprepare_packed_git(the_repository);
Junio C Hamano568508e2011-10-28 14:48:40 -070092}
93
Neeraj Singhc0f47522022-04-04 22:20:09 -070094/*
95 * Cleanup after batch-mode fsync_object_files.
96 */
97static void flush_batch_fsync(void)
98{
99 struct strbuf temp_path = STRBUF_INIT;
100 struct tempfile *temp;
101
102 if (!bulk_fsync_objdir)
103 return;
104
105 /*
106 * Issue a full hardware flush against a temporary file to ensure
107 * that all objects are durable before any renames occur. The code in
108 * fsync_loose_object_bulk_checkin has already issued a writeout
109 * request, but it has not flushed any writeback cache in the storage
110 * hardware or any filesystem logs. This fsync call acts as a barrier
111 * to ensure that the data in each new object file is durable before
112 * the final name is visible.
113 */
114 strbuf_addf(&temp_path, "%s/bulk_fsync_XXXXXX", get_object_directory());
115 temp = xmks_tempfile(temp_path.buf);
116 fsync_or_die(get_tempfile_fd(temp), get_tempfile_path(temp));
117 delete_tempfile(&temp);
118 strbuf_release(&temp_path);
119
120 /*
121 * Make the object files visible in the primary ODB after their data is
122 * fully durable.
123 */
124 tmp_objdir_migrate(bulk_fsync_objdir);
125 bulk_fsync_objdir = NULL;
126}
127
Neeraj Singh897c9e22022-04-04 22:20:07 -0700128static int already_written(struct bulk_checkin_packfile *state, struct object_id *oid)
Junio C Hamano568508e2011-10-28 14:48:40 -0700129{
130 int i;
131
132 /* The object may already exist in the repository */
Ævar Arnfjörð Bjarmasonbc726bd2023-03-28 15:58:50 +0200133 if (repo_has_object_file(the_repository, oid))
Junio C Hamano568508e2011-10-28 14:48:40 -0700134 return 1;
135
136 /* Might want to keep the list sorted */
137 for (i = 0; i < state->nr_written; i++)
Jeff King4a7e27e2018-08-28 17:22:40 -0400138 if (oideq(&state->written[i]->oid, oid))
Junio C Hamano568508e2011-10-28 14:48:40 -0700139 return 1;
140
141 /* This is a new object we need to keep */
142 return 0;
143}
144
145/*
146 * Read the contents from fd for size bytes, streaming it to the
147 * packfile in state while updating the hash in ctx. Signal a failure
148 * by returning a negative value when the resulting pack would exceed
149 * the pack size limit and this is not the first object in the pack,
150 * so that the caller can discard what we wrote from the current pack
151 * by truncating it and opening a new one. The caller will then call
152 * us again after rewinding the input fd.
153 *
154 * The already_hashed_to pointer is kept untouched by the caller to
155 * make sure we do not hash the same byte when we are called
156 * again. This way, the caller does not have to checkpoint its hash
157 * status before calling us just in case we ask it to call us again
158 * with a new pack.
159 */
Neeraj Singh897c9e22022-04-04 22:20:07 -0700160static int stream_to_pack(struct bulk_checkin_packfile *state,
brian m. carlsonf87e8132018-02-01 02:18:48 +0000161 git_hash_ctx *ctx, off_t *already_hashed_to,
Junio C Hamano568508e2011-10-28 14:48:40 -0700162 int fd, size_t size, enum object_type type,
163 const char *path, unsigned flags)
164{
165 git_zstream s;
Andrzej Huntf96178c2021-06-10 16:48:30 +0000166 unsigned char ibuf[16384];
Junio C Hamano568508e2011-10-28 14:48:40 -0700167 unsigned char obuf[16384];
168 unsigned hdrlen;
169 int status = Z_OK;
170 int write_object = (flags & HASH_WRITE_OBJECT);
171 off_t offset = 0;
172
Junio C Hamano568508e2011-10-28 14:48:40 -0700173 git_deflate_init(&s, pack_compression_level);
174
Jeff King7202a6f2017-03-24 13:26:40 -0400175 hdrlen = encode_in_pack_object_header(obuf, sizeof(obuf), type, size);
Junio C Hamano568508e2011-10-28 14:48:40 -0700176 s.next_out = obuf + hdrlen;
177 s.avail_out = sizeof(obuf) - hdrlen;
178
179 while (status != Z_STREAM_END) {
Junio C Hamano568508e2011-10-28 14:48:40 -0700180 if (size && !s.avail_in) {
181 ssize_t rsize = size < sizeof(ibuf) ? size : sizeof(ibuf);
Jeff King41dcc4d2017-09-27 02:02:11 -0400182 ssize_t read_result = read_in_full(fd, ibuf, rsize);
183 if (read_result < 0)
184 die_errno("failed to read from '%s'", path);
185 if (read_result != rsize)
Junio C Hamano568508e2011-10-28 14:48:40 -0700186 die("failed to read %d bytes from '%s'",
187 (int)rsize, path);
188 offset += rsize;
189 if (*already_hashed_to < offset) {
190 size_t hsize = offset - *already_hashed_to;
191 if (rsize < hsize)
192 hsize = rsize;
193 if (hsize)
brian m. carlsonf87e8132018-02-01 02:18:48 +0000194 the_hash_algo->update_fn(ctx, ibuf, hsize);
Junio C Hamano568508e2011-10-28 14:48:40 -0700195 *already_hashed_to = offset;
196 }
197 s.next_in = ibuf;
198 s.avail_in = rsize;
199 size -= rsize;
200 }
201
202 status = git_deflate(&s, size ? 0 : Z_FINISH);
203
204 if (!s.avail_out || status == Z_STREAM_END) {
205 if (write_object) {
206 size_t written = s.next_out - obuf;
207
208 /* would we bust the size limit? */
209 if (state->nr_written &&
210 pack_size_limit_cfg &&
211 pack_size_limit_cfg < state->offset + written) {
212 git_deflate_abort(&s);
213 return -1;
214 }
215
brian m. carlson98a3bea2018-02-01 02:18:46 +0000216 hashwrite(state->f, obuf, written);
Junio C Hamano568508e2011-10-28 14:48:40 -0700217 state->offset += written;
218 }
219 s.next_out = obuf;
220 s.avail_out = sizeof(obuf);
221 }
222
223 switch (status) {
224 case Z_OK:
225 case Z_BUF_ERROR:
226 case Z_STREAM_END:
227 continue;
228 default:
229 die("unexpected deflate failure: %d", status);
230 }
231 }
232 git_deflate_end(&s);
233 return 0;
234}
235
236/* Lazily create backing packfile for the state */
Neeraj Singh897c9e22022-04-04 22:20:07 -0700237static void prepare_to_stream(struct bulk_checkin_packfile *state,
Junio C Hamano568508e2011-10-28 14:48:40 -0700238 unsigned flags)
239{
240 if (!(flags & HASH_WRITE_OBJECT) || state->f)
241 return;
242
243 state->f = create_tmp_packfile(&state->pack_tmp_name);
244 reset_pack_idx_option(&state->pack_idx_opts);
245
246 /* Pretend we are going to write only one object */
247 state->offset = write_pack_header(state->f, 1);
248 if (!state->offset)
249 die_errno("unable to write pack header");
250}
251
Neeraj Singh897c9e22022-04-04 22:20:07 -0700252static int deflate_to_pack(struct bulk_checkin_packfile *state,
brian m. carlson68ee6df2018-03-12 02:27:21 +0000253 struct object_id *result_oid,
Junio C Hamano568508e2011-10-28 14:48:40 -0700254 int fd, size_t size,
255 enum object_type type, const char *path,
256 unsigned flags)
257{
258 off_t seekback, already_hashed_to;
brian m. carlsonf87e8132018-02-01 02:18:48 +0000259 git_hash_ctx ctx;
Junio C Hamano568508e2011-10-28 14:48:40 -0700260 unsigned char obuf[16384];
261 unsigned header_len;
Jeff King71404142019-09-05 18:52:49 -0400262 struct hashfile_checkpoint checkpoint = {0};
Junio C Hamano568508e2011-10-28 14:48:40 -0700263 struct pack_idx_entry *idx = NULL;
264
265 seekback = lseek(fd, 0, SEEK_CUR);
266 if (seekback == (off_t) -1)
267 return error("cannot find the current offset");
268
Ævar Arnfjörð Bjarmasonb04cdea2022-02-05 00:48:25 +0100269 header_len = format_object_header((char *)obuf, sizeof(obuf),
270 type, size);
brian m. carlsonf87e8132018-02-01 02:18:48 +0000271 the_hash_algo->init_fn(&ctx);
272 the_hash_algo->update_fn(&ctx, obuf, header_len);
Junio C Hamano568508e2011-10-28 14:48:40 -0700273
274 /* Note: idx is non-NULL when we are writing */
275 if ((flags & HASH_WRITE_OBJECT) != 0)
René Scharfeca56dad2021-03-13 17:17:22 +0100276 CALLOC_ARRAY(idx, 1);
Junio C Hamano568508e2011-10-28 14:48:40 -0700277
278 already_hashed_to = 0;
279
280 while (1) {
281 prepare_to_stream(state, flags);
282 if (idx) {
brian m. carlson98a3bea2018-02-01 02:18:46 +0000283 hashfile_checkpoint(state->f, &checkpoint);
Junio C Hamano568508e2011-10-28 14:48:40 -0700284 idx->offset = state->offset;
285 crc32_begin(state->f);
286 }
287 if (!stream_to_pack(state, &ctx, &already_hashed_to,
288 fd, size, type, path, flags))
289 break;
290 /*
291 * Writing this object to the current pack will make
292 * it too big; we need to truncate it, start a new
293 * pack, and write into it.
294 */
295 if (!idx)
Johannes Schindelin033abf92018-05-02 11:38:39 +0200296 BUG("should not happen");
brian m. carlson98a3bea2018-02-01 02:18:46 +0000297 hashfile_truncate(state->f, &checkpoint);
Junio C Hamano568508e2011-10-28 14:48:40 -0700298 state->offset = checkpoint.offset;
Neeraj Singh897c9e22022-04-04 22:20:07 -0700299 flush_bulk_checkin_packfile(state);
Junio C Hamano568508e2011-10-28 14:48:40 -0700300 if (lseek(fd, seekback, SEEK_SET) == (off_t) -1)
301 return error("cannot seek back");
302 }
brian m. carlson5951bf42021-04-26 01:02:53 +0000303 the_hash_algo->final_oid_fn(result_oid, &ctx);
Junio C Hamano568508e2011-10-28 14:48:40 -0700304 if (!idx)
305 return 0;
306
307 idx->crc32 = crc32_end(state->f);
brian m. carlson68ee6df2018-03-12 02:27:21 +0000308 if (already_written(state, result_oid)) {
brian m. carlson98a3bea2018-02-01 02:18:46 +0000309 hashfile_truncate(state->f, &checkpoint);
Junio C Hamano568508e2011-10-28 14:48:40 -0700310 state->offset = checkpoint.offset;
311 free(idx);
312 } else {
brian m. carlson68ee6df2018-03-12 02:27:21 +0000313 oidcpy(&idx->oid, result_oid);
Junio C Hamano568508e2011-10-28 14:48:40 -0700314 ALLOC_GROW(state->written,
315 state->nr_written + 1,
316 state->alloc_written);
317 state->written[state->nr_written++] = idx;
318 }
319 return 0;
320}
321
Neeraj Singhc0f47522022-04-04 22:20:09 -0700322void prepare_loose_object_bulk_checkin(void)
323{
324 /*
325 * We lazily create the temporary object directory
326 * the first time an object might be added, since
327 * callers may not know whether any objects will be
328 * added at the time they call begin_odb_transaction.
329 */
330 if (!odb_transaction_nesting || bulk_fsync_objdir)
331 return;
332
333 bulk_fsync_objdir = tmp_objdir_create("bulk-fsync");
334 if (bulk_fsync_objdir)
335 tmp_objdir_replace_primary_odb(bulk_fsync_objdir, 0);
336}
337
338void fsync_loose_object_bulk_checkin(int fd, const char *filename)
339{
340 /*
341 * If we have an active ODB transaction, we issue a call that
342 * cleans the filesystem page cache but avoids a hardware flush
343 * command. Later on we will issue a single hardware flush
344 * before renaming the objects to their final names as part of
345 * flush_batch_fsync.
346 */
347 if (!bulk_fsync_objdir ||
348 git_fsync(fd, FSYNC_WRITEOUT_ONLY) < 0) {
Johannes Schindelince50f1f2022-07-29 12:28:43 +0000349 if (errno == ENOSYS)
350 warning(_("core.fsyncMethod = batch is unsupported on this platform"));
Neeraj Singhc0f47522022-04-04 22:20:09 -0700351 fsync_or_die(fd, filename);
352 }
353}
354
brian m. carlson68ee6df2018-03-12 02:27:21 +0000355int index_bulk_checkin(struct object_id *oid,
Junio C Hamano568508e2011-10-28 14:48:40 -0700356 int fd, size_t size, enum object_type type,
357 const char *path, unsigned flags)
358{
Neeraj Singh897c9e22022-04-04 22:20:07 -0700359 int status = deflate_to_pack(&bulk_checkin_packfile, oid, fd, size, type,
Junio C Hamano568508e2011-10-28 14:48:40 -0700360 path, flags);
Neeraj Singh2c23d1b2022-04-04 22:20:08 -0700361 if (!odb_transaction_nesting)
Neeraj Singh897c9e22022-04-04 22:20:07 -0700362 flush_bulk_checkin_packfile(&bulk_checkin_packfile);
Junio C Hamano568508e2011-10-28 14:48:40 -0700363 return status;
364}
365
Neeraj Singh2c23d1b2022-04-04 22:20:08 -0700366void begin_odb_transaction(void)
Junio C Hamano568508e2011-10-28 14:48:40 -0700367{
Neeraj Singh2c23d1b2022-04-04 22:20:08 -0700368 odb_transaction_nesting += 1;
Junio C Hamano568508e2011-10-28 14:48:40 -0700369}
370
Neeraj Singh2c23d1b2022-04-04 22:20:08 -0700371void flush_odb_transaction(void)
Junio C Hamano568508e2011-10-28 14:48:40 -0700372{
Neeraj Singhc0f47522022-04-04 22:20:09 -0700373 flush_batch_fsync();
Neeraj Singh897c9e22022-04-04 22:20:07 -0700374 flush_bulk_checkin_packfile(&bulk_checkin_packfile);
Junio C Hamano568508e2011-10-28 14:48:40 -0700375}
Neeraj Singh2c23d1b2022-04-04 22:20:08 -0700376
377void end_odb_transaction(void)
378{
379 odb_transaction_nesting -= 1;
380 if (odb_transaction_nesting < 0)
381 BUG("Unbalanced ODB transaction nesting");
382
383 if (odb_transaction_nesting)
384 return;
385
386 flush_odb_transaction();
Junio C Hamano568508e2011-10-28 14:48:40 -0700387}