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
open! Import
include Checks_intf
module IO = IO.Unix
let setup_log =
let init style_renderer level =
let format_reporter =
let report _src level ~over k msgf =
let k _ =
over ();
k ()
in
msgf @@ fun ?header:_ ?tags:_ fmt ->
match level with
| Logs.App ->
Fmt.kpf k Fmt.stderr
("@[<v 0>%a" ^^ fmt ^^ "@]@.")
Fmt.(styled `Bold (styled (`Fg `Cyan) string))
">> "
| _ -> Fmt.kpf k Fmt.stdout ("@[<v 0>" ^^ fmt ^^ "@]@.")
in
{ Logs.report }
in
Fmt_tty.setup_std_outputs ?style_renderer ();
Logs.set_level level;
Logs.set_reporter format_reporter
in
Cmdliner.Term.(const init $ Fmt_cli.style_renderer () $ Logs_cli.level ())
let path =
let open Cmdliner.Arg in
required
@@ pos 0 (some string) None
@@ info ~doc:"Path to the Irmin store on disk" ~docv:"PATH" []
module Make (M : Maker) = struct
module Store_V1 = M (Version.V1)
module Store_V2 = M (Version.V2)
module Hash = Store_V1.Hash
module Index = Pack_index.Make (Hash)
let current_version = `V1
(** Read basic metrics from an existing store. *)
module Stat = struct
type size = Bytes of int [@@deriving irmin]
type version = [ `V1 | `V2 ] [@@deriving irmin]
type io = {
size : size;
offset : int63;
generation : int63;
version : version;
}
[@@deriving irmin]
type files = { pack : io option; branch : io option; dict : io option }
[@@deriving irmin]
type objects = { nb_commits : int; nb_nodes : int; nb_contents : int }
[@@deriving irmin]
type t = {
hash_size : size;
log_size : int;
files : files;
objects : objects;
}
[@@deriving irmin]
let with_io : type a. Version.t -> string -> (IO.t -> a) -> a option =
fun version path f ->
match IO.exists path with
| false -> None
| true ->
let io =
IO.v ~fresh:false ~readonly:true ~version:(Some version) path
in
Fun.protect ~finally:(fun () -> IO.close io) (fun () -> Some (f io))
let detect_version ~root =
try
let path = Layout.pack ~root in
match with_io current_version path Fun.id with
| None -> Fmt.failwith "cannot read pack file"
| Some _ -> current_version
with Version.Invalid { expected = _; found } -> found
let io ~version path =
with_io version path @@ fun io ->
let offset = IO.offset io in
let generation = IO.generation io in
let size = Bytes (IO.size io) in
let version = IO.version io in
{ size; offset; generation; version }
let v ~root ~version =
let pack = Layout.pack ~root |> io ~version in
let branch = Layout.branch ~root |> io ~version in
let dict = Layout.dict ~root |> io ~version in
{ pack; branch; dict }
let traverse_index ~root log_size =
let index = Index.v ~readonly:true ~fresh:false ~log_size root in
let bar, (progress_contents, progress_nodes, progress_commits) =
Utils.Progress.increment ~ppf:Format.err_formatter ()
in
let f _ (_, _, (kind : Pack_value.Kind.t)) =
match kind with
| Contents -> progress_contents ()
| Node | Inode -> progress_nodes ()
| Commit -> progress_commits ()
in
Index.iter f index;
let nb_commits, nb_nodes, nb_contents =
Utils.Progress.finalise_with_stats bar
in
{ nb_commits; nb_nodes; nb_contents }
let conf root = Conf.v ~readonly:true ~fresh:false root
let run_versioned_store ~root version =
Logs.app (fun f -> f "Getting statistics for store: `%s'@," root);
let log_size = conf root |> Conf.index_log_size in
let objects = traverse_index ~root log_size in
let files = v ~root ~version in
{ hash_size = Bytes Hash.hash_size; log_size; files; objects }
|> Irmin.Type.pp_json ~minify:false t Fmt.stdout;
Lwt.return_unit
let run ~root = detect_version ~root |> run_versioned_store ~root
let term_internal =
Cmdliner.Term.(const (fun root () -> Lwt_main.run (run ~root)) $ path)
let term =
let doc = "Print high-level statistics about the store." in
Cmdliner.Term.(term_internal $ setup_log, info ~doc "stat")
end
module Reconstruct_index = struct
let conf ~index_log_size root =
Conf.v ~readonly:false ~fresh:false ?index_log_size root
let dest =
let open Cmdliner.Arg in
value
& pos 1 (some string) None
@@ info ~doc:"Path to the new index file" ~docv:"DEST" []
let index_log_size =
let open Cmdliner.Arg in
value
& opt (some int) None
@@ info ~doc:"Size of the index log file" [ "index-log-size" ]
let run ~root ~output ?index_log_size () =
let (module Store : Versioned_store) =
match Stat.detect_version ~root with
| `V1 -> (module Store_V1)
| `V2 -> (module Store_V2)
in
let conf = conf ~index_log_size root in
match output with
| None -> Store.traverse_pack_file (`Reconstruct_index `In_place) conf
| Some p -> Store.traverse_pack_file (`Reconstruct_index (`Output p)) conf
let term_internal =
Cmdliner.Term.(
const (fun root output index_log_size () ->
run ~root ~output ?index_log_size ())
$ path
$ dest
$ index_log_size)
let term =
let doc = "Reconstruct index from an existing pack file." in
Cmdliner.Term.(term_internal $ setup_log, info ~doc "reconstruct-index")
end
module Integrity_check_index = struct
let conf root = Conf.v ~readonly:true ~fresh:false root
let run ~root ~auto_repair () =
let (module Store : Versioned_store) =
match Stat.detect_version ~root with
| `V1 -> (module Store_V1)
| `V2 -> (module Store_V2)
in
let conf = conf root in
if auto_repair then Store.traverse_pack_file `Check_and_fix_index conf
else Store.traverse_pack_file `Check_index conf
let auto_repair =
let open Cmdliner.Arg in
value
& (flag @@ info ~doc:"Add missing entries in index" [ "auto-repair" ])
let term_internal =
Cmdliner.Term.(
const (fun root auto_repair () -> run ~root ~auto_repair ())
$ path
$ auto_repair)
let term =
let doc = "Check index integrity." in
Cmdliner.Term.
(term_internal $ setup_log, info ~doc "integrity-check-index")
end
module Integrity_check = struct
let conf root = Conf.v ~readonly:false ~fresh:false root
let handle_result ?name res =
let name = match name with Some x -> x ^ ": " | None -> "" in
match res with
| Ok (`Fixed n) -> Printf.printf "%sOk -- fixed %d\n%!" name n
| Ok `No_error -> Printf.printf "%sOk\n%!" name
| Error (`Cannot_fix x) ->
Printf.eprintf "%sError -- cannot fix: %s\n%!" name x
| Error (`Corrupted x) ->
Printf.eprintf "%sError -- corrupted: %d\n%!" name x
let run_versioned_store ~root ~auto_repair (module Store : Versioned_store)
=
let conf = conf root in
let+ repo = Store.Repo.v conf in
Store.integrity_check ~ppf:Format.err_formatter ~auto_repair repo
|> handle_result ?name:None
let run ~root ~auto_repair =
match Stat.detect_version ~root with
| `V1 -> run_versioned_store ~root ~auto_repair (module Store_V1)
| `V2 -> run_versioned_store ~root ~auto_repair (module Store_V2)
let term_internal =
let auto_repair =
let open Cmdliner.Arg in
value
& (flag @@ info ~doc:"Automatically repair issues" [ "auto-repair" ])
in
Cmdliner.Term.(
const (fun root auto_repair () -> Lwt_main.run (run ~root ~auto_repair))
$ path
$ auto_repair)
let term =
let doc = "Check integrity of an existing store." in
Cmdliner.Term.(term_internal $ setup_log, info ~doc "integrity-check")
end
module Integrity_check_inodes = struct
let conf root = Conf.v ~readonly:true ~fresh:false root
let heads =
let open Cmdliner.Arg in
value
& opt (some (list ~sep:',' string)) None
& info [ "heads" ] ~doc:"List of head commit hashes" ~docv:"HEADS"
let run_versioned_store ~root ~heads (module Store : Versioned_store) =
let conf = conf root in
let* repo = Store.Repo.v conf in
let* heads =
match heads with
| None -> Store.Repo.heads repo
| Some heads ->
Lwt_list.filter_map_s
(fun x ->
match Repr.of_string Store.Hash.t x with
| Ok x -> Store.Commit.of_hash repo x
| _ -> Lwt.return None)
heads
in
let* () =
Store.integrity_check_inodes ~heads repo >|= function
| Ok (`Msg msg) -> Logs.app (fun l -> l "Ok -- %s" msg)
| Error (`Msg msg) -> Logs.err (fun l -> l "Error -- %s" msg)
in
Store.Repo.close repo
let run ~root ~heads =
match Stat.detect_version ~root with
| `V1 -> run_versioned_store ~root ~heads (module Store_V1)
| `V2 -> run_versioned_store ~root ~heads (module Store_V2)
let term_internal =
Cmdliner.Term.(
const (fun root heads () -> Lwt_main.run (run ~root ~heads))
$ path
$ heads)
let term =
let doc = "Check integrity of inodes in an existing store." in
Cmdliner.Term.
(term_internal $ setup_log, info ~doc "integrity-check-inodes")
end
module Cli = struct
open Cmdliner
let main
?(terms =
[
Stat.term;
Reconstruct_index.term;
Integrity_check.term;
Integrity_check_inodes.term;
Integrity_check_index.term;
]) () : empty =
let default =
let default_info =
let doc = "Check Irmin data-stores." in
Term.info ~doc "irmin-fsck"
in
Term.(ret (const (`Help (`Auto, None))), default_info)
in
Term.(eval_choice default terms |> (exit : unit result -> _));
assert false
end
let cli = Cli.main
end
module Index (Index : Pack_index.S) = struct
let null =
match Sys.os_type with
| "Unix" | "Cygwin" -> "/dev/null"
| "Win32" -> "NUL"
| _ -> invalid_arg "invalid os type"
let integrity_check ?ppf ~auto_repair ~check index =
let ppf =
match ppf with
| Some p -> p
| None -> open_out null |> Format.formatter_of_out_channel
in
Fmt.pf ppf "Running the integrity_check.\n%!";
let nb_absent = ref 0 in
let nb_corrupted = ref 0 in
let exception Cannot_fix in
let bar, (progress_contents, progress_nodes, progress_commits) =
Utils.Progress.increment ()
in
let f (k, (offset, length, (kind : Pack_value.Kind.t))) =
match kind with
| Contents ->
progress_contents ();
check ~kind:`Contents ~offset ~length k
| Node | Inode ->
progress_nodes ();
check ~kind:`Node ~offset ~length k
| Commit ->
progress_commits ();
check ~kind:`Commit ~offset ~length k
in
let result =
if auto_repair then
try
Index.filter index (fun binding ->
match f binding with
| Ok () -> true
| Error `Wrong_hash -> raise Cannot_fix
| Error `Absent_value ->
incr nb_absent;
false);
if !nb_absent = 0 then Ok `No_error else Ok (`Fixed !nb_absent)
with Cannot_fix -> Error (`Cannot_fix "Not implemented")
else (
Index.iter
(fun k v ->
match f (k, v) with
| Ok () -> ()
| Error `Wrong_hash -> incr nb_corrupted
| Error `Absent_value -> incr nb_absent)
index;
if !nb_absent = 0 && !nb_corrupted = 0 then Ok `No_error
else Error (`Corrupted (!nb_corrupted + !nb_absent)))
in
Utils.Progress.finalise bar;
result
end