Source file pack_store.ml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
open Import
include Pack_store_intf
exception Invalid_read of string
exception Corrupted_store of string
exception Dangling_hash
let invalid_read fmt = Fmt.kstr (fun s -> raise (Invalid_read s)) fmt
let corrupted_store fmt = Fmt.kstr (fun s -> raise (Corrupted_store s)) fmt
module Table (K : Irmin.Hash.S) = Hashtbl.Make (struct
type t = K.t
let hash = K.short_hash
let equal = Irmin.Type.(unstage (equal K.t))
end)
module Make_without_close_checks
(Fm : File_manager.S)
(Dispatcher : Dispatcher.S with module Fm = Fm)
(Hash : Irmin.Hash.S with type t = Fm.Index.key)
(Val : Pack_value.Persistent
with type hash := Hash.t
and type key := Hash.t Pack_key.t)
(Errs : Io_errors.S with module Io = Fm.Io) =
struct
module Tbl = Table (Hash)
module Control = Fm.Control
module Dict = Fm.Dict
module Suffix = Fm.Suffix
module Index = Fm.Index
module Key = Pack_key.Make (Hash)
module Lru = struct
include Lru
let add t k v = Val.to_kinded v |> add t k (Val.weight v)
let find t k = find t k |> Val.of_kinded
end
type file_manager = Fm.t
type dict = Dict.t
type dispatcher = Dispatcher.t
type 'a t = {
lru : Lru.t;
staging : Val.t Tbl.t;
indexing_strategy : Irmin_pack.Indexing_strategy.t;
fm : Fm.t;
dict : Dict.t;
dispatcher : Dispatcher.t;
}
type hash = Hash.t [@@deriving irmin ~pp ~equal ~decode_bin]
type key = Key.t [@@deriving irmin ~pp]
type value = Val.t [@@deriving irmin ~pp]
let get_location t k =
match Pack_key.inspect k with
| Indexed hash -> (
match Index.find (Fm.index t.fm) hash with
| None -> raise Dangling_hash
| Some (off, len, _kind) ->
Pack_key.promote_exn k ~offset:off ~length:len;
(off, len, None))
| Direct { offset; length; volume_identifier; _ } ->
(offset, length, volume_identifier)
let get_offset t k =
match Pack_key.to_offset k with
| Some off -> off
| None ->
let off, _, _ = get_location t k in
off
let get_length t k =
match Pack_key.to_length k with
| Some len -> len
| None ->
let _, len, _ = get_location t k in
len
let len_of_direct_key k =
match Pack_key.inspect k with
| Indexed _ -> assert false
| Direct { length; _ } -> length
let off_of_direct_key k =
match Pack_key.to_offset k with
| None -> assert false
| Some offset -> offset
let index_direct_with_kind t hash =
[%log.debug "index %a" pp_hash hash];
match Index.find (Fm.index t.fm) hash with
| None -> None
| Some (offset, length, kind) ->
let key = Pack_key.v_direct ~offset ~length hash in
Some (key, kind)
let index_direct t hash =
index_direct_with_kind t hash |> Option.map (fun (key, _) -> key)
let index t hash = Lwt.return (index_direct t hash)
let v ~config ~fm ~dict ~dispatcher ~lru =
let indexing_strategy = Conf.indexing_strategy config in
let staging = Tbl.create 127 in
Fm.register_suffix_consumer fm ~after_flush:(fun () -> Tbl.clear staging);
Fm.register_prefix_consumer fm ~after_reload:(fun () -> Ok (Lru.clear lru));
{ lru; staging; indexing_strategy; fm; dict; dispatcher }
module Entry_prefix = struct
type t = {
hash : hash;
kind : Pack_value.Kind.t;
size_of_value_and_length_header : int option;
(** Remaining bytes in the entry after reading the hash and the kind
(i.e. the length of the length header + the value of the length
header), if the entry has a length header (otherwise [None]).
NOTE: the length stored in the index and in direct pack keys is
the {!total_entry_length} (including the hash and the kind). See
[pack_value.mli] for a description. *)
}
[@@deriving irmin ~pp_dump]
let min_length = Hash.hash_size + 1
let max_length = Hash.hash_size + 1 + Varint.max_encoded_size
let total_entry_length t =
Option.map (fun len -> min_length + len) t.size_of_value_and_length_header
end
let read_and_decode_entry_prefix ~off ?volume_identifier dispatcher =
let buf = Bytes.create Entry_prefix.max_length in
let _len, _volume =
try
Dispatcher.read_range_exn dispatcher ?volume_identifier ~off
~min_len:Entry_prefix.min_length ~max_len:Entry_prefix.max_length buf
with Errors.Pack_error `Read_out_of_bounds ->
invalid_read
"Attempted to read an entry at offset %a in the pack file, but got \
less than %d bytes"
Int63.pp off Entry_prefix.max_length
in
let hash =
decode_bin_hash (Bytes.unsafe_to_string buf) (ref 0)
in
let kind = Pack_value.Kind.of_magic_exn (Bytes.get buf Hash.hash_size) in
let size_of_value_and_length_header =
match Val.length_header kind with
| None -> None
| Some `Varint ->
let = Entry_prefix.min_length in
let pos_ref = ref length_header_start in
let =
Varint.decode_bin (Bytes.unsafe_to_string buf) pos_ref
in
let = !pos_ref - length_header_start in
Some (length_header_length + length_header)
in
{ Entry_prefix.hash; kind; size_of_value_and_length_header }
let gced t buf =
let kind = Pack_value.Kind.of_magic_exn (Bytes.get buf Hash.hash_size) in
match (kind, Fm.gc_behaviour t.fm) with
| kind, `Delete -> kind = Pack_value.Kind.Dangling_parent_commit
| _, `Archive -> false
let pack_file_contains_key t k =
let off, _, volume_identifier = get_location t k in
let len = Hash.hash_size + 1 in
let buf = Bytes.create len in
let (_volume : Lower.volume_identifier option) =
Dispatcher.read_exn t.dispatcher ~off ~len ?volume_identifier buf
in
if gced t buf then false
else
let hash = decode_bin_hash (Bytes.unsafe_to_string buf) (ref 0) in
if not (equal_hash hash (Key.to_hash k)) then
invalid_read
"invalid key %a checked for membership (read hash %a at this offset \
instead)"
pp_key k pp_hash hash;
true
let pack_file_contains_key t k =
try pack_file_contains_key t k with
| Dangling_hash -> false
| Errors.Pack_error `Read_out_of_bounds ->
(if not (Control.readonly (Fm.control t.fm)) then
let io_offset = Dispatcher.end_offset t.dispatcher in
invalid_read "invalid key %a checked for membership (IO offset = %a)"
pp_key k Int63.pp io_offset);
false
| Errors.Pack_error (`Invalid_sparse_read _) -> false
| Errors.Pack_error (`Invalid_prefix_read _) -> false
let unsafe_mem t k =
[%log.debug "[pack] mem %a" pp_key k];
match Pack_key.inspect k with
| Indexed hash ->
Tbl.mem t.staging hash || pack_file_contains_key t k
| Direct { offset; hash; _ } ->
Tbl.mem t.staging hash
|| Lru.mem t.lru offset
|| pack_file_contains_key t k
let mem t k =
let b = unsafe_mem t k in
Lwt.return b
let check_hash h v =
let h' = Val.hash v in
if equal_hash h h' then Ok () else Error (h, h')
let check_key k v = check_hash (Key.to_hash k) v
(** Produce a key from an offset in the context of decoding inode and commit
children. *)
let key_of_offset ?volume_identifier t offset =
[%log.debug "key_of_offset: %a" Int63.pp offset];
let entry_prefix =
read_and_decode_entry_prefix ?volume_identifier ~off:offset t.dispatcher
in
let kind, volume_identifier =
match entry_prefix.kind with
| Pack_value.Kind.Dangling_parent_commit ->
(Pack_value.Kind.Commit_v2, None)
| kind -> (kind, volume_identifier)
in
let key =
let entry_prefix = { entry_prefix with kind } in
match Entry_prefix.total_entry_length entry_prefix with
| Some length ->
Pack_key.v_direct ~offset ~length ?volume_identifier entry_prefix.hash
| None ->
Pack_key.v_indexed entry_prefix.hash
in
key
let find_in_pack_file ~key_of_offset t key =
let off, len, volume_identifier = get_location t key in
let buf = Bytes.create len in
let volume_identifier =
Dispatcher.read_exn t.dispatcher ~off ~len ?volume_identifier buf
in
if gced t buf then None
else
let () = Pack_key.set_volume_identifier_exn ~volume_identifier key in
let key_of_offset = key_of_offset ?volume_identifier t in
let key_of_hash = Pack_key.v_indexed in
let dict = Dict.find t.dict in
let v =
Val.decode_bin ~key_of_offset ~key_of_hash ~dict
(Bytes.unsafe_to_string buf)
(ref 0)
in
Some v
let find_in_pack_file ~key_of_offset t key =
try find_in_pack_file ~key_of_offset t key with
| Dangling_hash -> None
| Errors.Pack_error `Read_out_of_bounds -> (
let io_offset = Dispatcher.end_offset t.dispatcher in
match Control.readonly (Fm.control t.fm) with
| false ->
invalid_read
"attempt to dereference invalid key %a (IO offset = %a)" pp_key
key Int63.pp io_offset
| true ->
[%log.debug
"Direct store key references an unknown starting offset %a \
(length = %d, IO offset = %a)"
Int63.pp (off_of_direct_key key) (len_of_direct_key key) Int63.pp
io_offset];
None)
| Errors.Pack_error (`Invalid_sparse_read _) -> None
| Errors.Pack_error (`Invalid_prefix_read _) as e -> raise e
let unsafe_find ~check_integrity t k =
[%log.debug "[pack] find %a" pp_key k];
let find_location = ref Stats.Pack_store.Not_found in
let find_in_pack_file_guarded ~is_indexed =
let res = find_in_pack_file ~key_of_offset t k in
Option.iter
(fun v ->
if is_indexed then find_location := Stats.Pack_store.Pack_indexed
else find_location := Stats.Pack_store.Pack_direct;
Lru.add t.lru (off_of_direct_key k) v;
if check_integrity then
check_key k v |> function
| Ok () -> ()
| Error (expected, got) ->
corrupted_store "Got hash %a, expecting %a (for val: %a)."
pp_hash got pp_hash expected pp_value v)
res;
res
in
let value_opt =
match Pack_key.inspect k with
| Indexed hash -> (
match Tbl.find t.staging hash with
| v ->
find_location := Stats.Pack_store.Staging;
Some v
| exception Not_found -> find_in_pack_file_guarded ~is_indexed:true)
| Direct { offset; hash; _ } -> (
match Tbl.find t.staging hash with
| v ->
Lru.add t.lru offset v;
find_location := Stats.Pack_store.Staging;
Some v
| exception Not_found -> (
match Lru.find t.lru offset with
| v ->
find_location := Stats.Pack_store.Lru;
Some v
| exception Not_found ->
find_in_pack_file_guarded ~is_indexed:false))
in
Stats.report_pack_store ~field:!find_location;
value_opt
let unsafe_find_no_prefetch t key =
let key_of_offset ?volume_identifier:_ _ = Pack_key.v_offset in
find_in_pack_file ~key_of_offset t key
let find t k =
let v = unsafe_find ~check_integrity:true t k in
Lwt.return v
let integrity_check ~offset ~length hash t =
let k = Pack_key.v_direct ~offset ~length hash in
match find_in_pack_file ~key_of_offset t k with
| exception Errors.Pack_error (`Invalid_prefix_read _) ->
Error `Absent_value
| exception Invalid_read _ -> Error `Absent_value
| None -> Error `Wrong_hash
| Some value -> (
match check_hash hash value with
| Ok () -> Ok ()
| Error _ -> Error `Wrong_hash)
let cast t = (t :> read_write t)
(** [batch] is required by the [Backend] signature of irmin core, but
irmin-pack is really meant to be used using the [batch] of the repo (in
[ext.ml]). The following batch exists only for compatibility, but it is
very tempting to replace the implementation by an [assert false]. *)
let batch t f =
[%log.warn
"[pack] calling batch directory on a store is not recommended. Use \
repo.batch instead."];
let on_success res =
Fm.flush t.fm |> Errs.raise_if_error;
Lwt.return res
in
let on_fail exn =
[%log.info
"[pack] batch failed. calling flush. (%s)" (Printexc.to_string exn)];
let () =
match Fm.flush t.fm with
| Ok () -> ()
| Error err ->
[%log.err
"[pack] batch failed and flush failed. Silencing flush fail. (%a)"
(Irmin.Type.pp Errs.t) err]
in
raise exn
in
Lwt.try_bind (fun () -> f (cast t)) on_success on_fail
let unsafe_append ~ensure_unique ~overcommit t hash v =
let kind = Val.kind v in
let use_index =
(not (Irmin_pack.Indexing_strategy.is_minimal t.indexing_strategy))
|| kind = Commit_v1
|| kind = Commit_v2
in
let unguarded_append () =
let offset_of_key k =
match Pack_key.inspect k with
| Direct { offset; _ } ->
Stats.incr_appended_offsets ();
Some offset
| Indexed hash -> (
match Index.find (Fm.index t.fm) hash with
| None ->
Stats.incr_appended_hashes ();
None
| Some (offset, _, _) ->
Stats.incr_appended_offsets ();
Some offset)
in
let dict = Dict.index t.dict in
let off = Dispatcher.end_offset t.dispatcher in
let append = Suffix.append_exn (Fm.suffix t.fm) in
Val.encode_bin ~offset_of_key ~dict hash v append;
let open Int63.Syntax in
let len = Int63.to_int (Dispatcher.end_offset t.dispatcher - off) in
let key = Pack_key.v_direct ~offset:off ~length:len hash in
let () =
let should_index = t.indexing_strategy ~value_length:len kind in
if should_index then
Index.add ~overcommit (Fm.index t.fm) hash (off, len, kind)
in
Tbl.add t.staging hash v;
Lru.add t.lru off v;
[%log.debug "[pack] append %a" pp_key key];
key
in
match ensure_unique && use_index with
| false -> unguarded_append ()
| true ->
let key = Pack_key.v_indexed hash in
if unsafe_mem t key then key else unguarded_append ()
let unsafe_add t hash v =
unsafe_append ~ensure_unique:true ~overcommit:false t hash v |> Lwt.return
let add t v = unsafe_add t (Val.hash v) v
(** This close is a noop.
Closing the file manager would be inadequate because it is passed to [v].
The caller should close the file manager.
We could clear the caches here but that really is not necessary. *)
let close _ = Lwt.return ()
let purge_lru t = Lru.clear t.lru
end
module Make
(Fm : File_manager.S)
(Dispatcher : Dispatcher.S with module Fm = Fm)
(Hash : Irmin.Hash.S with type t = Fm.Index.key)
(Val : Pack_value.Persistent
with type hash := Hash.t
and type key := Hash.t Pack_key.t)
(Errs : Io_errors.S with module Io = Fm.Io) =
struct
module Inner = Make_without_close_checks (Fm) (Dispatcher) (Hash) (Val) (Errs)
include Inner
include Indexable.Closeable (Inner)
let v ~config ~fm ~dict ~dispatcher ~lru =
Inner.v ~config ~fm ~dict ~dispatcher ~lru |> make_closeable
let cast t = Inner.cast (get_if_open_exn t) |> make_closeable
let integrity_check ~offset ~length k t =
Inner.integrity_check ~offset ~length k (get_if_open_exn t)
module Entry_prefix = Inner.Entry_prefix
let read_and_decode_entry_prefix ~off dispatcher =
Inner.read_and_decode_entry_prefix ~off dispatcher
let index_direct_with_kind t =
Inner.index_direct_with_kind (get_if_open_exn t)
let purge_lru t = Inner.purge_lru (get_if_open_exn t)
let key_of_offset t offset = Inner.key_of_offset (get_if_open_exn t) offset
let unsafe_find_no_prefetch t key =
Inner.unsafe_find_no_prefetch (get_if_open_exn t) key
let get_offset t key = Inner.get_offset (get_if_open_exn t) key
let get_length t key = Inner.get_length (get_if_open_exn t) key
end