2 Copyright 2020 Google LLC
4 Use of this source code is governed by a BSD-style
5 license that can be found in the LICENSE file or at
6 https://developers.google.com/open-source/licenses/bsd
14 #include "constants.h"
17 #include "reftable-error.h"
19 /* finishes a block, and writes it to storage */
20 static int writer_flush_block(struct reftable_writer
*w
);
22 /* deallocates memory related to the index */
23 static void writer_clear_index(struct reftable_writer
*w
);
25 /* finishes writing a 'r' (refs) or 'g' (reflogs) section */
26 static int writer_finish_public_section(struct reftable_writer
*w
);
28 static struct reftable_block_stats
*
29 writer_reftable_block_stats(struct reftable_writer
*w
, uint8_t typ
)
33 return &w
->stats
.ref_stats
;
35 return &w
->stats
.obj_stats
;
37 return &w
->stats
.idx_stats
;
39 return &w
->stats
.log_stats
;
45 /* write data, queuing the padding for the next write. Returns negative for
47 static int padded_write(struct reftable_writer
*w
, uint8_t *data
, size_t len
,
51 if (w
->pending_padding
> 0) {
52 uint8_t *zeroed
= reftable_calloc(w
->pending_padding
);
53 int n
= w
->write(w
->write_arg
, zeroed
, w
->pending_padding
);
57 w
->pending_padding
= 0;
58 reftable_free(zeroed
);
61 w
->pending_padding
= padding
;
62 n
= w
->write(w
->write_arg
, data
, len
);
69 static void options_set_defaults(struct reftable_write_options
*opts
)
71 if (opts
->restart_interval
== 0) {
72 opts
->restart_interval
= 16;
75 if (opts
->hash_id
== 0) {
76 opts
->hash_id
= GIT_SHA1_FORMAT_ID
;
78 if (opts
->block_size
== 0) {
79 opts
->block_size
= DEFAULT_BLOCK_SIZE
;
83 static int writer_version(struct reftable_writer
*w
)
85 return (w
->opts
.hash_id
== 0 || w
->opts
.hash_id
== GIT_SHA1_FORMAT_ID
) ?
90 static int writer_write_header(struct reftable_writer
*w
, uint8_t *dest
)
92 memcpy(dest
, "REFT", 4);
94 dest
[4] = writer_version(w
);
96 put_be24(dest
+ 5, w
->opts
.block_size
);
97 put_be64(dest
+ 8, w
->min_update_index
);
98 put_be64(dest
+ 16, w
->max_update_index
);
99 if (writer_version(w
) == 2) {
100 put_be32(dest
+ 24, w
->opts
.hash_id
);
102 return header_size(writer_version(w
));
105 static void writer_reinit_block_writer(struct reftable_writer
*w
, uint8_t typ
)
109 block_start
= header_size(writer_version(w
));
112 strbuf_release(&w
->last_key
);
113 block_writer_init(&w
->block_writer_data
, typ
, w
->block
,
114 w
->opts
.block_size
, block_start
,
115 hash_size(w
->opts
.hash_id
));
116 w
->block_writer
= &w
->block_writer_data
;
117 w
->block_writer
->restart_interval
= w
->opts
.restart_interval
;
120 static struct strbuf reftable_empty_strbuf
= STRBUF_INIT
;
122 struct reftable_writer
*
123 reftable_new_writer(ssize_t (*writer_func
)(void *, const void *, size_t),
124 void *writer_arg
, struct reftable_write_options
*opts
)
126 struct reftable_writer
*wp
=
127 reftable_calloc(sizeof(struct reftable_writer
));
128 strbuf_init(&wp
->block_writer_data
.last_key
, 0);
129 options_set_defaults(opts
);
130 if (opts
->block_size
>= (1 << 24)) {
131 /* TODO - error return? */
134 wp
->last_key
= reftable_empty_strbuf
;
135 wp
->block
= reftable_calloc(opts
->block_size
);
136 wp
->write
= writer_func
;
137 wp
->write_arg
= writer_arg
;
139 writer_reinit_block_writer(wp
, BLOCK_TYPE_REF
);
144 void reftable_writer_set_limits(struct reftable_writer
*w
, uint64_t min
,
147 w
->min_update_index
= min
;
148 w
->max_update_index
= max
;
151 void reftable_writer_free(struct reftable_writer
*w
)
155 reftable_free(w
->block
);
159 struct obj_index_tree_node
{
166 #define OBJ_INDEX_TREE_NODE_INIT \
168 .hash = STRBUF_INIT \
171 static int obj_index_tree_node_compare(const void *a
, const void *b
)
173 return strbuf_cmp(&((const struct obj_index_tree_node
*)a
)->hash
,
174 &((const struct obj_index_tree_node
*)b
)->hash
);
177 static void writer_index_hash(struct reftable_writer
*w
, struct strbuf
*hash
)
179 uint64_t off
= w
->next
;
181 struct obj_index_tree_node want
= { .hash
= *hash
};
183 struct tree_node
*node
= tree_search(&want
, &w
->obj_index_tree
,
184 &obj_index_tree_node_compare
, 0);
185 struct obj_index_tree_node
*key
= NULL
;
187 struct obj_index_tree_node empty
= OBJ_INDEX_TREE_NODE_INIT
;
188 key
= reftable_malloc(sizeof(struct obj_index_tree_node
));
191 strbuf_reset(&key
->hash
);
192 strbuf_addbuf(&key
->hash
, hash
);
193 tree_search((void *)key
, &w
->obj_index_tree
,
194 &obj_index_tree_node_compare
, 1);
199 if (key
->offset_len
> 0 && key
->offsets
[key
->offset_len
- 1] == off
) {
203 if (key
->offset_len
== key
->offset_cap
) {
204 key
->offset_cap
= 2 * key
->offset_cap
+ 1;
205 key
->offsets
= reftable_realloc(
206 key
->offsets
, sizeof(uint64_t) * key
->offset_cap
);
209 key
->offsets
[key
->offset_len
++] = off
;
212 static int writer_add_record(struct reftable_writer
*w
,
213 struct reftable_record
*rec
)
215 struct strbuf key
= STRBUF_INIT
;
217 reftable_record_key(rec
, &key
);
218 if (strbuf_cmp(&w
->last_key
, &key
) >= 0) {
219 err
= REFTABLE_API_ERROR
;
223 strbuf_reset(&w
->last_key
);
224 strbuf_addbuf(&w
->last_key
, &key
);
225 if (!w
->block_writer
) {
226 writer_reinit_block_writer(w
, reftable_record_type(rec
));
229 assert(block_writer_type(w
->block_writer
) == reftable_record_type(rec
));
231 if (block_writer_add(w
->block_writer
, rec
) == 0) {
236 err
= writer_flush_block(w
);
241 writer_reinit_block_writer(w
, reftable_record_type(rec
));
242 err
= block_writer_add(w
->block_writer
, rec
);
244 /* we are writing into memory, so an error can only mean it
246 err
= REFTABLE_ENTRY_TOO_BIG_ERROR
;
251 strbuf_release(&key
);
255 int reftable_writer_add_ref(struct reftable_writer
*w
,
256 struct reftable_ref_record
*ref
)
258 struct reftable_record rec
= {
259 .type
= BLOCK_TYPE_REF
,
267 return REFTABLE_API_ERROR
;
268 if (ref
->update_index
< w
->min_update_index
||
269 ref
->update_index
> w
->max_update_index
)
270 return REFTABLE_API_ERROR
;
272 rec
.u
.ref
.update_index
-= w
->min_update_index
;
274 err
= writer_add_record(w
, &rec
);
278 if (!w
->opts
.skip_index_objects
&& reftable_ref_record_val1(ref
)) {
279 struct strbuf h
= STRBUF_INIT
;
280 strbuf_add(&h
, (char *)reftable_ref_record_val1(ref
),
281 hash_size(w
->opts
.hash_id
));
282 writer_index_hash(w
, &h
);
286 if (!w
->opts
.skip_index_objects
&& reftable_ref_record_val2(ref
)) {
287 struct strbuf h
= STRBUF_INIT
;
288 strbuf_add(&h
, reftable_ref_record_val2(ref
),
289 hash_size(w
->opts
.hash_id
));
290 writer_index_hash(w
, &h
);
296 int reftable_writer_add_refs(struct reftable_writer
*w
,
297 struct reftable_ref_record
*refs
, int n
)
301 QSORT(refs
, n
, reftable_ref_record_compare_name
);
302 for (i
= 0; err
== 0 && i
< n
; i
++) {
303 err
= reftable_writer_add_ref(w
, &refs
[i
]);
308 static int reftable_writer_add_log_verbatim(struct reftable_writer
*w
,
309 struct reftable_log_record
*log
)
311 struct reftable_record rec
= {
312 .type
= BLOCK_TYPE_LOG
,
317 if (w
->block_writer
&&
318 block_writer_type(w
->block_writer
) == BLOCK_TYPE_REF
) {
319 int err
= writer_finish_public_section(w
);
324 w
->next
-= w
->pending_padding
;
325 w
->pending_padding
= 0;
326 return writer_add_record(w
, &rec
);
329 int reftable_writer_add_log(struct reftable_writer
*w
,
330 struct reftable_log_record
*log
)
332 char *input_log_message
= NULL
;
333 struct strbuf cleaned_message
= STRBUF_INIT
;
336 if (log
->value_type
== REFTABLE_LOG_DELETION
)
337 return reftable_writer_add_log_verbatim(w
, log
);
340 return REFTABLE_API_ERROR
;
342 input_log_message
= log
->value
.update
.message
;
343 if (!w
->opts
.exact_log_message
&& log
->value
.update
.message
) {
344 strbuf_addstr(&cleaned_message
, log
->value
.update
.message
);
345 while (cleaned_message
.len
&&
346 cleaned_message
.buf
[cleaned_message
.len
- 1] == '\n')
347 strbuf_setlen(&cleaned_message
,
348 cleaned_message
.len
- 1);
349 if (strchr(cleaned_message
.buf
, '\n')) {
350 /* multiple lines not allowed. */
351 err
= REFTABLE_API_ERROR
;
354 strbuf_addstr(&cleaned_message
, "\n");
355 log
->value
.update
.message
= cleaned_message
.buf
;
358 err
= reftable_writer_add_log_verbatim(w
, log
);
359 log
->value
.update
.message
= input_log_message
;
361 strbuf_release(&cleaned_message
);
365 int reftable_writer_add_logs(struct reftable_writer
*w
,
366 struct reftable_log_record
*logs
, int n
)
370 QSORT(logs
, n
, reftable_log_record_compare_key
);
372 for (i
= 0; err
== 0 && i
< n
; i
++) {
373 err
= reftable_writer_add_log(w
, &logs
[i
]);
378 static int writer_finish_section(struct reftable_writer
*w
)
380 uint8_t typ
= block_writer_type(w
->block_writer
);
381 uint64_t index_start
= 0;
383 int threshold
= w
->opts
.unpadded
? 1 : 3;
384 int before_blocks
= w
->stats
.idx_stats
.blocks
;
385 int err
= writer_flush_block(w
);
387 struct reftable_block_stats
*bstats
= NULL
;
391 while (w
->index_len
> threshold
) {
392 struct reftable_index_record
*idx
= NULL
;
396 index_start
= w
->next
;
397 writer_reinit_block_writer(w
, BLOCK_TYPE_INDEX
);
400 idx_len
= w
->index_len
;
405 for (i
= 0; i
< idx_len
; i
++) {
406 struct reftable_record rec
= {
407 .type
= BLOCK_TYPE_INDEX
,
412 if (block_writer_add(w
->block_writer
, &rec
) == 0) {
416 err
= writer_flush_block(w
);
420 writer_reinit_block_writer(w
, BLOCK_TYPE_INDEX
);
422 err
= block_writer_add(w
->block_writer
, &rec
);
424 /* write into fresh block should always succeed
429 for (i
= 0; i
< idx_len
; i
++) {
430 strbuf_release(&idx
[i
].last_key
);
435 writer_clear_index(w
);
437 err
= writer_flush_block(w
);
441 bstats
= writer_reftable_block_stats(w
, typ
);
442 bstats
->index_blocks
= w
->stats
.idx_stats
.blocks
- before_blocks
;
443 bstats
->index_offset
= index_start
;
444 bstats
->max_index_level
= max_level
;
446 /* Reinit lastKey, as the next section can start with any key. */
452 struct common_prefix_arg
{
457 static void update_common(void *void_arg
, void *key
)
459 struct common_prefix_arg
*arg
= void_arg
;
460 struct obj_index_tree_node
*entry
= key
;
462 int n
= common_prefix_size(&entry
->hash
, arg
->last
);
467 arg
->last
= &entry
->hash
;
470 struct write_record_arg
{
471 struct reftable_writer
*w
;
475 static void write_object_record(void *void_arg
, void *key
)
477 struct write_record_arg
*arg
= void_arg
;
478 struct obj_index_tree_node
*entry
= key
;
479 struct reftable_record
480 rec
= { .type
= BLOCK_TYPE_OBJ
,
482 .hash_prefix
= (uint8_t *)entry
->hash
.buf
,
483 .hash_prefix_len
= arg
->w
->stats
.object_id_len
,
484 .offsets
= entry
->offsets
,
485 .offset_len
= entry
->offset_len
,
490 arg
->err
= block_writer_add(arg
->w
->block_writer
, &rec
);
494 arg
->err
= writer_flush_block(arg
->w
);
498 writer_reinit_block_writer(arg
->w
, BLOCK_TYPE_OBJ
);
499 arg
->err
= block_writer_add(arg
->w
->block_writer
, &rec
);
503 rec
.u
.obj
.offset_len
= 0;
504 arg
->err
= block_writer_add(arg
->w
->block_writer
, &rec
);
506 /* Should be able to write into a fresh block. */
507 assert(arg
->err
== 0);
512 static void object_record_free(void *void_arg
, void *key
)
514 struct obj_index_tree_node
*entry
= key
;
516 FREE_AND_NULL(entry
->offsets
);
517 strbuf_release(&entry
->hash
);
518 reftable_free(entry
);
521 static int writer_dump_object_index(struct reftable_writer
*w
)
523 struct write_record_arg closure
= { .w
= w
};
524 struct common_prefix_arg common
= {
525 .max
= 1, /* obj_id_len should be >= 2. */
527 if (w
->obj_index_tree
) {
528 infix_walk(w
->obj_index_tree
, &update_common
, &common
);
530 w
->stats
.object_id_len
= common
.max
+ 1;
532 writer_reinit_block_writer(w
, BLOCK_TYPE_OBJ
);
534 if (w
->obj_index_tree
) {
535 infix_walk(w
->obj_index_tree
, &write_object_record
, &closure
);
540 return writer_finish_section(w
);
543 static int writer_finish_public_section(struct reftable_writer
*w
)
548 if (!w
->block_writer
)
551 typ
= block_writer_type(w
->block_writer
);
552 err
= writer_finish_section(w
);
555 if (typ
== BLOCK_TYPE_REF
&& !w
->opts
.skip_index_objects
&&
556 w
->stats
.ref_stats
.index_blocks
> 0) {
557 err
= writer_dump_object_index(w
);
562 if (w
->obj_index_tree
) {
563 infix_walk(w
->obj_index_tree
, &object_record_free
, NULL
);
564 tree_free(w
->obj_index_tree
);
565 w
->obj_index_tree
= NULL
;
568 w
->block_writer
= NULL
;
572 int reftable_writer_close(struct reftable_writer
*w
)
576 int err
= writer_finish_public_section(w
);
577 int empty_table
= w
->next
== 0;
580 w
->pending_padding
= 0;
582 /* Empty tables need a header anyway. */
584 int n
= writer_write_header(w
, header
);
585 err
= padded_write(w
, header
, n
, 0);
590 p
+= writer_write_header(w
, footer
);
591 put_be64(p
, w
->stats
.ref_stats
.index_offset
);
593 put_be64(p
, (w
->stats
.obj_stats
.offset
) << 5 | w
->stats
.object_id_len
);
595 put_be64(p
, w
->stats
.obj_stats
.index_offset
);
598 put_be64(p
, w
->stats
.log_stats
.offset
);
600 put_be64(p
, w
->stats
.log_stats
.index_offset
);
603 put_be32(p
, crc32(0, footer
, p
- footer
));
606 err
= padded_write(w
, footer
, footer_size(writer_version(w
)), 0);
611 err
= REFTABLE_EMPTY_TABLE_ERROR
;
616 /* free up memory. */
617 block_writer_release(&w
->block_writer_data
);
618 writer_clear_index(w
);
619 strbuf_release(&w
->last_key
);
623 static void writer_clear_index(struct reftable_writer
*w
)
626 for (i
= 0; i
< w
->index_len
; i
++) {
627 strbuf_release(&w
->index
[i
].last_key
);
630 FREE_AND_NULL(w
->index
);
635 static const int debug
= 0;
637 static int writer_flush_nonempty_block(struct reftable_writer
*w
)
639 uint8_t typ
= block_writer_type(w
->block_writer
);
640 struct reftable_block_stats
*bstats
=
641 writer_reftable_block_stats(w
, typ
);
642 uint64_t block_typ_off
= (bstats
->blocks
== 0) ? w
->next
: 0;
643 int raw_bytes
= block_writer_finish(w
->block_writer
);
646 struct reftable_index_record ir
= { .last_key
= STRBUF_INIT
};
650 if (!w
->opts
.unpadded
&& typ
!= BLOCK_TYPE_LOG
) {
651 padding
= w
->opts
.block_size
- raw_bytes
;
654 if (block_typ_off
> 0) {
655 bstats
->offset
= block_typ_off
;
658 bstats
->entries
+= w
->block_writer
->entries
;
659 bstats
->restarts
+= w
->block_writer
->restart_len
;
664 fprintf(stderr
, "block %c off %" PRIu64
" sz %d (%d)\n", typ
,
666 get_be24(w
->block
+ w
->block_writer
->header_off
+ 1));
670 writer_write_header(w
, w
->block
);
673 err
= padded_write(w
, w
->block
, raw_bytes
, padding
);
677 if (w
->index_cap
== w
->index_len
) {
678 w
->index_cap
= 2 * w
->index_cap
+ 1;
679 w
->index
= reftable_realloc(
681 sizeof(struct reftable_index_record
) * w
->index_cap
);
685 strbuf_reset(&ir
.last_key
);
686 strbuf_addbuf(&ir
.last_key
, &w
->block_writer
->last_key
);
687 w
->index
[w
->index_len
] = ir
;
690 w
->next
+= padding
+ raw_bytes
;
691 w
->block_writer
= NULL
;
695 static int writer_flush_block(struct reftable_writer
*w
)
697 if (!w
->block_writer
)
699 if (w
->block_writer
->entries
== 0)
701 return writer_flush_nonempty_block(w
);
704 const struct reftable_stats
*reftable_writer_stats(struct reftable_writer
*w
)