-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathdatabase_check.cc
1071 lines (906 loc) · 32.3 KB
/
database_check.cc
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
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright (C) 2005 Derek Scherger <[email protected]>
//
// This program is made available under the GNU GPL version 2.0 or
// greater. See the accompanying file COPYING for details.
//
// This program is distributed WITHOUT ANY WARRANTY; without even the
// implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
// PURPOSE.
#include "base.hh"
#include <map>
#include <set>
#include "constants.hh"
#include "database.hh"
#include "revision.hh"
#include "ui.hh"
#include "vocab.hh"
#include "transforms.hh"
#include "cert.hh"
#include "rev_height.hh"
#include "roster.hh"
#include "outdated_indicator.hh"
// the database has roughly the following structure
//
// certs
// |
// +---+---+
// | |
// keys revisions
// |
// rosters
// |
// files
//
// FIXME: add a test that for each revision, generates that rev's roster
// from scratch, and compares it to the one stored in the db. (Do the
// comparison using something like equal_up_to_renumbering, except should
// say if (!temp_node(a) && !temp_node(b)) I(a == b).)
using std::logic_error;
using std::map;
using std::multimap;
using std::set;
using std::string;
using std::vector;
struct checked_cert {
revision<cert> rcert;
bool found_key;
bool good_sig;
checked_cert(revision<cert> const & c): rcert(c), found_key(false), good_sig(false) {}
};
struct checked_key {
bool found; // found public keypair id in db
size_t sigs; // number of signatures by this key
rsa_pub_key pub;
checked_key(): found(false), sigs(0) {}
};
struct checked_file {
bool found; // found in db, retrieved and verified sha1 hash
size_t roster_refs; // number of roster references to this file
checked_file(): found(false), roster_refs(0) {}
};
struct checked_roster {
bool found; // found in db, retrieved and verified sha1 hash
size_t revision_refs; // number of revision references to this roster
size_t missing_files; // number of missing files referenced by this roster
size_t missing_mark_revs; // number of missing revisions referenced in node markings by this roster
manifest_id man_id; // manifest id of this roster's public part
checked_roster():
found(false), revision_refs(0),
missing_files(0), missing_mark_revs(0),
man_id() {}
};
// the number of times a revision is referenced (revision_refs)
// should match the number of times it is listed as a parent in
// the ancestry cache (ancestry_parent_refs)
//
// the number of parents a revision has should match the number
// of times it is listed as a child in the ancestry cache
// (ancestry_child_refs)
struct checked_revision {
bool found; // found in db, retrieved and verified sha1 hash
size_t revision_refs; // number of references to this revision from other revisions
size_t ancestry_parent_refs; // number of references to this revision by ancestry parent
size_t ancestry_child_refs; // number of references to this revision by ancestry child
size_t marking_refs; // number of references to this revision by roster markings
bool found_roster; // the roster for this revision exists
bool manifest_mismatch; // manifest doesn't match the roster for this revision
bool incomplete_roster; // the roster for this revision is missing files
size_t missing_manifests; // number of missing manifests referenced by this revision
size_t missing_revisions; // number of missing revisions referenced by this revision
size_t cert_refs; // number of references to this revision by revision certs;
bool parseable; // read_revision does not throw
bool normalized; // write_revision( read_revision(dat) ) == dat
string history_error;
set<revision_id> parents;
vector<checked_cert> checked_certs;
checked_revision():
found(false),
revision_refs(0), ancestry_parent_refs(0), ancestry_child_refs(0),
marking_refs(0),
found_roster(false), manifest_mismatch(false), incomplete_roster(false),
missing_manifests(0), missing_revisions(0),
cert_refs(0), parseable(false), normalized(false) {}
};
struct checked_height {
bool found; // found in db
bool unique; // not identical to any height retrieved earlier
bool sensible; // greater than all parent heights
checked_height(): found(false), unique(false), sensible(true) {}
};
/*
* check integrity of the SQLite database
*/
static void
check_db_integrity_check(database & db)
{
L(FL("asking sqlite to check db integrity"));
E(db.check_integrity(),
F("file structure is corrupted; cannot check further"));
}
static void
check_files(database & db, map<file_id, checked_file> & checked_files)
{
set<file_id> files;
db.get_file_ids(files);
L(FL("checking %d files") % files.size());
ticker ticks(_("files"), "f", files.size()/70+1);
for (set<file_id>::const_iterator i = files.begin();
i != files.end(); ++i)
{
L(FL("checking file %s") % *i);
file_data data;
db.get_file_version(*i, data);
checked_files[*i].found = true;
++ticks;
}
I(checked_files.size() == files.size());
}
// first phase of roster checking, checks manifest-related parts of the
// roster, and general parsability/normalisation
static void
check_rosters_manifest(database & db,
map<revision_id, checked_roster> & checked_rosters,
map<revision_id, checked_revision> & checked_revisions,
set<manifest_id> & found_manifests,
map<file_id, checked_file> & checked_files)
{
set<revision_id> rosters;
db.get_roster_ids(rosters);
L(FL("checking %d rosters, manifest pass") % rosters.size());
ticker ticks(_("rosters"), "r", rosters.size()/70+1);
for (set<revision_id>::const_iterator i = rosters.begin();
i != rosters.end(); ++i)
{
L(FL("checking roster %s") % *i);
roster_t ros;
marking_map mm;
try
{
db.get_roster(*i, ros, mm);
}
// When attempting to fetch a roster with no corresponding revision,
// we fail with E(), not I() (when it tries to look up the manifest_id
// to check). std::exception catches both informative_failure's and
// logic_error's.
catch (std::exception & e)
{
L(FL("error loading roster %s: %s")
% *i % e.what());
checked_rosters[*i].found = false;
continue;
}
checked_rosters[*i].found = true;
manifest_id man_id;
calculate_ident(ros, man_id);
checked_rosters[*i].man_id = man_id;
found_manifests.insert(man_id);
for (node_map::const_iterator n = ros.all_nodes().begin();
n != ros.all_nodes().end(); n++)
{
if (is_file_t(n->second))
{
file_id fid = downcast_to_file_t(n->second)->content;
checked_files[fid].roster_refs++;
if (!checked_files[fid].found)
checked_rosters[*i].missing_files++;
}
}
++ticks;
}
I(checked_rosters.size() == rosters.size());
}
// Second phase of roster checking. examine the marking of a roster, checking
// that the referenced revisions exist.
// This function assumes that check_revisions has been called!
static void
check_rosters_marking(database & db,
map<revision_id, checked_roster> & checked_rosters,
map<revision_id, checked_revision> & checked_revisions)
{
L(FL("checking %d rosters, marking pass") % checked_rosters.size());
ticker ticks(_("markings"), "m", checked_rosters.size()/70+1);
for (map<revision_id, checked_roster>::const_iterator i
= checked_rosters.begin(); i != checked_rosters.end(); i++)
{
revision_id ros_id = i->first;
L(FL("checking roster %s") % i->first);
if (!i->second.found)
continue;
// skip marking check on unreferenced rosters -- they're left by
// kill_rev_locally, and not expected to have everything they
// reference existing
if (!i->second.revision_refs)
continue;
roster_t ros;
marking_map mm;
db.get_roster(ros_id, ros, mm);
for (node_map::const_iterator n = ros.all_nodes().begin();
n != ros.all_nodes().end(); n++)
{
// lots of revisions that must exist
marking_t mark = mm[n->first];
checked_revisions[mark.birth_revision].marking_refs++;
if (!checked_revisions[mark.birth_revision].found)
checked_rosters[ros_id].missing_mark_revs++;
for (set<revision_id>::const_iterator r = mark.parent_name.begin();
r != mark.parent_name.end(); r++)
{
checked_revisions[*r].marking_refs++;
if (!checked_revisions[*r].found)
checked_rosters[ros_id].missing_mark_revs++;
}
for (set<revision_id>::const_iterator r = mark.file_content.begin();
r != mark.file_content.end(); r++)
{
checked_revisions[*r].marking_refs++;
if (!checked_revisions[*r].found)
checked_rosters[ros_id].missing_mark_revs++;
}
for (map<attr_key,set<revision_id> >::const_iterator attr =
mark.attrs.begin(); attr != mark.attrs.end(); attr++)
for (set<revision_id>::const_iterator r = attr->second.begin();
r != attr->second.end(); r++)
{
checked_revisions[*r].marking_refs++;
if (!checked_revisions[*r].found)
checked_rosters[ros_id].missing_mark_revs++;
}
}
++ticks;
}
}
static void
check_revisions(database & db,
map<revision_id, checked_revision> & checked_revisions,
map<revision_id, checked_roster> & checked_rosters,
set<manifest_id> const & found_manifests,
size_t & missing_rosters)
{
set<revision_id> revisions;
db.get_revision_ids(revisions);
L(FL("checking %d revisions") % revisions.size());
ticker ticks(_("revisions"), "r", revisions.size()/70+1);
for (set<revision_id>::const_iterator i = revisions.begin();
i != revisions.end(); ++i)
{
L(FL("checking revision %s") % *i);
revision_data data;
db.get_revision(*i, data);
checked_revisions[*i].found = true;
revision_t rev;
try
{
read_revision(data, rev);
}
catch (logic_error & e)
{
L(FL("error parsing revision %s: %s")
% *i % e.what());
checked_revisions[*i].parseable = false;
continue;
}
checked_revisions[*i].parseable = true;
// normalisation check
revision_id norm_ident;
revision_data norm_data;
write_revision(rev, norm_data);
calculate_ident(norm_data, norm_ident);
if (norm_ident == *i)
checked_revisions[*i].normalized = true;
// roster checks
if (db.roster_version_exists(*i))
{
checked_revisions[*i].found_roster = true;
I(checked_rosters[*i].found);
checked_rosters[*i].revision_refs++;
if (!(rev.new_manifest == checked_rosters[*i].man_id))
checked_revisions[*i].manifest_mismatch = true;
if (checked_rosters[*i].missing_files > 0)
checked_revisions[*i].incomplete_roster = true;
}
else
++missing_rosters;
if (found_manifests.find(rev.new_manifest) == found_manifests.end())
checked_revisions[*i].missing_manifests++;
for (edge_map::const_iterator edge = rev.edges.begin();
edge != rev.edges.end(); ++edge)
{
// ignore [] -> [...] revisions
// delay checking parents until we've processed all revisions
if (!null_id(edge_old_revision(edge)))
{
checked_revisions[edge_old_revision(edge)].revision_refs++;
checked_revisions[*i].parents.insert(edge_old_revision(edge));
}
// also check that change_sets applied to old manifests == new
// manifests (which might be a merge)
}
++ticks;
}
// now check for parent revision existence and problems
for (map<revision_id, checked_revision>::iterator
revision = checked_revisions.begin();
revision != checked_revisions.end(); ++revision)
{
for (set<revision_id>::const_iterator p = revision->second.parents.begin();
p != revision->second.parents.end(); ++p)
{
if (!checked_revisions[*p].found)
revision->second.missing_revisions++;
}
}
L(FL("checked %d revisions after starting with %d")
% checked_revisions.size()
% revisions.size());
}
static void
check_ancestry(database & db,
map<revision_id, checked_revision> & checked_revisions)
{
multimap<revision_id, revision_id> graph;
db.get_revision_ancestry(graph);
L(FL("checking %d ancestry edges") % graph.size());
ticker ticks(_("ancestry"), "a", graph.size()/70+1);
// checked revision has set of parents
// graph has revision and associated parents
// these two representations of the graph should agree!
set<revision_id> seen;
for (multimap<revision_id, revision_id>::const_iterator i = graph.begin();
i != graph.end(); ++i)
{
// ignore the [] -> [...] edges here too
if (!null_id(i->first))
{
checked_revisions[i->first].ancestry_parent_refs++;
if (!null_id(i->second))
checked_revisions[i->second].ancestry_child_refs++;
}
++ticks;
}
}
static void
check_keys(database & db,
map<rsa_keypair_id, checked_key> & checked_keys)
{
vector<rsa_keypair_id> pubkeys;
db.get_public_keys(pubkeys);
L(FL("checking %d public keys") % pubkeys.size());
ticker ticks(_("keys"), "k", 1);
for (vector<rsa_keypair_id>::const_iterator i = pubkeys.begin();
i != pubkeys.end(); ++i)
{
db.get_key(*i, checked_keys[*i].pub);
checked_keys[*i].found = true;
++ticks;
}
}
static void
check_certs(database & db,
map<revision_id, checked_revision> & checked_revisions,
map<rsa_keypair_id, checked_key> & checked_keys,
size_t & total_certs)
{
vector< revision<cert> > certs;
db.get_revision_certs(certs);
total_certs = certs.size();
L(FL("checking %d revision certs") % certs.size());
ticker ticks(_("certs"), "c", certs.size()/70+1);
for (vector< revision<cert> >::const_iterator i = certs.begin();
i != certs.end(); ++i)
{
checked_cert checked(*i);
checked.found_key = checked_keys[i->inner().key].found;
if (checked.found_key)
{
string signed_text;
cert_signable_text(i->inner(), signed_text);
checked.good_sig
= (db.check_signature(i->inner().key,
signed_text, i->inner().sig) == cert_ok);
}
checked_keys[i->inner().key].sigs++;
checked_revisions[revision_id(i->inner().ident)].checked_certs.push_back(checked);
++ticks;
}
}
// - check that every rev has a height
// - check that no two revs have the same height
static void
check_heights(database & db,
map<revision_id, checked_height> & checked_heights)
{
set<revision_id> heights;
db.get_revision_ids(heights);
// add revision [], it is the (imaginary) root of all revisions, and
// should have a height, too
{
revision_id null_id;
heights.insert(null_id);
}
L(FL("checking %d heights") % heights.size());
set<rev_height> seen;
ticker ticks(_("heights"), "h", heights.size()/70+1);
for (set<revision_id>::const_iterator i = heights.begin();
i != heights.end(); ++i)
{
L(FL("checking height for %s") % *i);
rev_height h;
try
{
db.get_rev_height(*i, h);
}
catch (std::exception & e)
{
L(FL("error loading height: %s") % e.what());
continue;
}
checked_heights[*i].found = true; // defaults to false
if (seen.find(h) != seen.end())
{
L(FL("error: height not unique: %s") % h());
continue;
}
checked_heights[*i].unique = true; // defaults to false
seen.insert(h);
++ticks;
}
}
// check that every rev's height is a sensible height to assign, given its
// parents
static void
check_heights_relation(database & db,
map<revision_id, checked_height> & checked_heights)
{
set<revision_id> heights;
multimap<revision_id, revision_id> graph; // parent, child
db.get_revision_ancestry(graph);
L(FL("checking heights for %d edges") % graph.size());
ticker ticks(_("height relations"), "h", graph.size()/70+1);
typedef multimap<revision_id, revision_id>::const_iterator gi;
for (gi i = graph.begin(); i != graph.end(); ++i)
{
revision_id const & p_id = i->first;
revision_id const & c_id = i->second;
if (!checked_heights[p_id].found || !checked_heights[c_id].found)
{
if (global_sanity.debug_p())
L(FL("missing height(s), skipping edge %s -> %s")
% p_id
% c_id);
continue;
}
if (global_sanity.debug_p())
L(FL("checking heights for edges %s -> %s")
% p_id
% c_id);
rev_height parent, child;
db.get_rev_height(p_id, parent);
db.get_rev_height(c_id, child);
if (!(child > parent))
{
if (global_sanity.debug_p())
L(FL("error: height %s of child %s not greater than height %s of parent %s")
% child
% c_id
% parent
% p_id);
checked_heights[c_id].sensible = false; // defaults to true
continue;
}
++ticks;
}
}
static void
report_files(map<file_id, checked_file> const & checked_files,
size_t & missing_files,
size_t & unreferenced_files)
{
for (map<file_id, checked_file>::const_iterator
i = checked_files.begin(); i != checked_files.end(); ++i)
{
checked_file file = i->second;
if (!file.found)
{
missing_files++;
P(F("file %s missing (%d manifest references)")
% i->first % file.roster_refs);
}
if (file.roster_refs == 0)
{
unreferenced_files++;
P(F("file %s unreferenced") % i->first);
}
}
}
static void
report_rosters(map<revision_id, checked_roster> const & checked_rosters,
size_t & unreferenced_rosters,
size_t & incomplete_rosters)
{
for (map<revision_id, checked_roster>::const_iterator
i = checked_rosters.begin(); i != checked_rosters.end(); ++i)
{
checked_roster roster = i->second;
if (roster.revision_refs == 0)
{
unreferenced_rosters++;
P(F("roster %s unreferenced")
% i->first);
}
if (roster.missing_files > 0)
{
incomplete_rosters++;
P(F("roster %s incomplete (%d missing files)")
% i->first % roster.missing_files);
}
if (roster.missing_mark_revs > 0)
{
incomplete_rosters++;
P(F("roster %s incomplete (%d missing revisions)")
% i->first % roster.missing_mark_revs);
}
}
}
static void
report_revisions(map<revision_id, checked_revision> const & checked_revisions,
size_t & missing_revisions,
size_t & incomplete_revisions,
size_t & mismatched_parents,
size_t & mismatched_children,
size_t & manifest_mismatch,
size_t & bad_history,
size_t & non_parseable_revisions,
size_t & non_normalized_revisions)
{
for (map<revision_id, checked_revision>::const_iterator
i = checked_revisions.begin(); i != checked_revisions.end(); ++i)
{
checked_revision revision = i->second;
if (!revision.found)
{
missing_revisions++;
P(F("revision %s missing (%d revision references; %d cert references; %d parent references; %d child references; %d roster references)")
% i->first
% revision.revision_refs
% revision.cert_refs
% revision.ancestry_parent_refs
% revision.ancestry_child_refs
% revision.marking_refs);
}
if (revision.missing_manifests > 0)
{
incomplete_revisions++;
P(F("revision %s incomplete (%d missing manifests)")
% i->first
% revision.missing_manifests);
}
if (revision.missing_revisions > 0)
{
incomplete_revisions++;
P(F("revision %s incomplete (%d missing revisions)")
% i->first
% revision.missing_revisions);
}
if (!revision.found_roster)
{
incomplete_revisions++;
P(F("revision %s incomplete (missing roster)")
% i->first);
}
if (revision.manifest_mismatch)
{
manifest_mismatch++;
P(F("revision %s mismatched roster and manifest")
% i->first);
}
if (revision.incomplete_roster)
{
incomplete_revisions++;
P(F("revision %s incomplete (incomplete roster)")
% i->first);
}
if (revision.ancestry_parent_refs != revision.revision_refs)
{
mismatched_parents++;
P(F("revision %s mismatched parents (%d ancestry parents; %d revision refs)")
% i->first
% revision.ancestry_parent_refs
% revision.revision_refs );
}
if (revision.ancestry_child_refs != revision.parents.size())
{
mismatched_children++;
P(F("revision %s mismatched children (%d ancestry children; %d parents)")
% i->first
% revision.ancestry_child_refs
% revision.parents.size() );
}
if (!revision.history_error.empty())
{
bad_history++;
string tmp = revision.history_error;
if (tmp[tmp.length() - 1] == '\n')
tmp.erase(tmp.length() - 1);
P(F("revision %s has bad history (%s)")
% i->first % tmp);
}
if (!revision.parseable)
{
non_parseable_revisions++;
P(F("revision %s is not parseable (perhaps with unnormalized paths?)")
% i->first);
}
if (revision.parseable && !revision.normalized)
{
non_normalized_revisions++;
P(F("revision %s is not in normalized form")
% i->first);
}
}
}
static void
report_keys(map<rsa_keypair_id, checked_key> const & checked_keys,
size_t & missing_keys)
{
for (map<rsa_keypair_id, checked_key>::const_iterator
i = checked_keys.begin(); i != checked_keys.end(); ++i)
{
checked_key key = i->second;
if (key.found)
{
L(FL("key %s signed %d certs")
% i->first
% key.sigs);
}
else
{
missing_keys++;
P(F("key %s missing (signed %d certs)")
% i->first
% key.sigs);
}
}
}
static void
report_certs(map<revision_id, checked_revision> const & checked_revisions,
size_t & missing_certs,
size_t & mismatched_certs,
size_t & unchecked_sigs,
size_t & bad_sigs)
{
set<cert_name> cnames;
cnames.insert(cert_name(author_cert_name));
cnames.insert(cert_name(branch_cert_name));
cnames.insert(cert_name(changelog_cert_name));
cnames.insert(cert_name(date_cert_name));
for (map<revision_id, checked_revision>::const_iterator
i = checked_revisions.begin(); i != checked_revisions.end(); ++i)
{
checked_revision revision = i->second;
map<cert_name, size_t> cert_counts;
for (vector<checked_cert>::const_iterator checked = revision.checked_certs.begin();
checked != revision.checked_certs.end(); ++checked)
{
if (!checked->found_key)
{
unchecked_sigs++;
P(F("revision %s unchecked signature in %s cert from missing key %s")
% i->first
% checked->rcert.inner().name
% checked->rcert.inner().key);
}
else if (!checked->good_sig)
{
bad_sigs++;
P(F("revision %s bad signature in %s cert from key %s")
% i->first
% checked->rcert.inner().name
% checked->rcert.inner().key);
}
cert_counts[checked->rcert.inner().name]++;
}
for (set<cert_name>::const_iterator n = cnames.begin();
n != cnames.end(); ++n)
{
if (revision.found && cert_counts[*n] == 0)
{
missing_certs++;
P(F("revision %s missing %s cert")
% i->first % *n);
}
}
if (cert_counts[cert_name(author_cert_name)] != cert_counts[cert_name(changelog_cert_name)] ||
cert_counts[cert_name(author_cert_name)] != cert_counts[cert_name(date_cert_name)] ||
cert_counts[cert_name(date_cert_name)] != cert_counts[cert_name(changelog_cert_name)])
{
mismatched_certs++;
P(F("revision %s mismatched certs (%d authors %d dates %d changelogs)")
% i->first
% cert_counts[cert_name(author_cert_name)]
% cert_counts[cert_name(date_cert_name)]
% cert_counts[cert_name(changelog_cert_name)]);
}
}
}
static void
report_heights(map<revision_id, checked_height> const & checked_heights,
size_t & missing_heights,
size_t & duplicate_heights,
size_t & incorrect_heights)
{
for (map<revision_id, checked_height>::const_iterator
i = checked_heights.begin(); i != checked_heights.end(); ++i)
{
checked_height height = i->second;
if (!height.found)
{
missing_heights++;
P(F("height missing for revision %s")
% i->first);
continue;
}
if (!height.unique)
{
duplicate_heights++;
P(F("duplicate height for revision %s")
% i->first);
}
if (!height.sensible)
{
incorrect_heights++;
P(F("height of revision %s not greater than that of parent")
% i->first);
}
}
}
void
check_db(database & db)
{
map<file_id, checked_file> checked_files;
set<manifest_id> found_manifests;
map<revision_id, checked_roster> checked_rosters;
map<revision_id, checked_revision> checked_revisions;
map<rsa_keypair_id, checked_key> checked_keys;
map<revision_id, checked_height> checked_heights;
size_t missing_files = 0;
size_t unreferenced_files = 0;
size_t missing_rosters = 0;
size_t unreferenced_rosters = 0;
size_t incomplete_rosters = 0;
size_t missing_revisions = 0;
size_t incomplete_revisions = 0;
size_t mismatched_parents = 0;
size_t mismatched_children = 0;
size_t bad_history = 0;
size_t non_parseable_revisions = 0;
size_t non_normalized_revisions = 0;
size_t missing_keys = 0;
size_t total_certs = 0;
size_t missing_certs = 0;
size_t mismatched_certs = 0;
size_t manifest_mismatch = 0;
size_t unchecked_sigs = 0;
size_t bad_sigs = 0;
size_t missing_heights = 0;
size_t duplicate_heights = 0;
size_t incorrect_heights = 0;
transaction_guard guard(db, false);
check_db_integrity_check(db);
check_files(db, checked_files);
check_rosters_manifest(db, checked_rosters, checked_revisions,
found_manifests, checked_files);
check_revisions(db, checked_revisions, checked_rosters, found_manifests,
missing_rosters);
check_rosters_marking(db, checked_rosters, checked_revisions);
check_ancestry(db, checked_revisions);
check_keys(db, checked_keys);
check_certs(db, checked_revisions, checked_keys, total_certs);
check_heights(db, checked_heights);
check_heights_relation(db, checked_heights);
report_files(checked_files, missing_files, unreferenced_files);
report_rosters(checked_rosters,
unreferenced_rosters,
incomplete_rosters);
report_revisions(checked_revisions,
missing_revisions, incomplete_revisions,
mismatched_parents, mismatched_children,
manifest_mismatch,
bad_history, non_parseable_revisions,
non_normalized_revisions);
report_keys(checked_keys, missing_keys);
report_certs(checked_revisions,
missing_certs, mismatched_certs,
unchecked_sigs, bad_sigs);
report_heights(checked_heights,
missing_heights, duplicate_heights, incorrect_heights);
// NOTE: any new sorts of problems need to have added:
// -- a message here, that tells the use about them
// -- entries in one _or both_ of the sums calculated at the end
// -- an entry added to the manual, which describes in detail why the
// error occurs and what it means to the user
if (missing_files > 0)
W(F("%d missing files") % missing_files);
if (unreferenced_files > 0)
W(F("%d unreferenced files") % unreferenced_files);
if (unreferenced_rosters > 0)
W(F("%d unreferenced rosters") % unreferenced_rosters);
if (incomplete_rosters > 0)
W(F("%d incomplete rosters") % incomplete_rosters);
if (missing_revisions > 0)
W(F("%d missing revisions") % missing_revisions);
if (incomplete_revisions > 0)
W(F("%d incomplete revisions") % incomplete_revisions);
if (mismatched_parents > 0)
W(F("%d mismatched parents") % mismatched_parents);
if (mismatched_children > 0)
W(F("%d mismatched children") % mismatched_children);
if (bad_history > 0)
W(F("%d revisions with bad history") % bad_history);
if (non_parseable_revisions > 0)
W(F("%d revisions not parseable (perhaps with invalid paths)")
% non_parseable_revisions);
if (non_normalized_revisions > 0)
W(F("%d revisions not in normalized form") % non_normalized_revisions);