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
use crate::pack::{self, index};
use git_features::progress::{self, Progress};
use git_object::{
borrowed,
bstr::{BString, ByteSlice},
owned, SHA1_SIZE,
};
use quick_error::quick_error;
quick_error! {
#[derive(Debug)]
pub enum Error {
Mismatch { expected: owned::Id, actual: owned::Id } {
display("index checksum mismatch: expected {}, got {}", expected, actual)
}
ObjectDecode(err: borrowed::Error, kind: git_object::Kind, oid: owned::Id) {
display("{} object {} could not be decoded", kind, oid)
source(err)
}
ObjectEncodeMismatch(kind: git_object::Kind, oid: owned::Id, expected: BString, actual: BString) {
display("{} object {} wasn't re-encoded without change, wanted\n{}\n\nGOT\n\n{}", kind, oid, expected, actual)
}
ObjectEncode(err: std::io::Error) {
from()
}
}
}
#[derive(Debug, Eq, PartialEq, Hash, Clone, Copy)]
pub enum Mode {
Sha1CRC32,
Sha1CRC32Decode,
Sha1CRC32DecodeEncode,
}
impl index::File {
pub fn index_checksum(&self) -> owned::Id {
owned::Id::from_20_bytes(&self.data[self.data.len() - SHA1_SIZE..])
}
pub fn pack_checksum(&self) -> owned::Id {
let from = self.data.len() - SHA1_SIZE * 2;
owned::Id::from_20_bytes(&self.data[from..from + SHA1_SIZE])
}
pub fn verify_checksum(&self, mut progress: impl Progress) -> Result<owned::Id, Error> {
let data_len_without_trailer = self.data.len() - SHA1_SIZE;
let actual = match crate::hash::bytes_of_file(&self.path, data_len_without_trailer, &mut progress) {
Ok(id) => id,
Err(_io_err) => {
let start = std::time::Instant::now();
let mut hasher = git_features::hash::Sha1::default();
hasher.update(&self.data[..data_len_without_trailer]);
progress.inc_by(data_len_without_trailer);
progress.show_throughput(start);
owned::Id::new_sha1(hasher.digest())
}
};
let expected = self.index_checksum();
if actual == expected {
Ok(actual)
} else {
Err(Error::Mismatch { actual, expected })
}
}
pub fn verify_integrity<P, C>(
&self,
pack: Option<(&pack::data::File, Mode, index::traverse::Algorithm)>,
thread_limit: Option<usize>,
progress: Option<P>,
make_cache: impl Fn() -> C + Send + Sync,
) -> Result<(owned::Id, Option<index::traverse::Outcome>, Option<P>), index::traverse::Error>
where
P: Progress + Send,
<P as Progress>::SubProgress: Send,
<<P as Progress>::SubProgress as Progress>::SubProgress: Send,
C: pack::cache::DecodeEntry,
{
let mut root = progress::DoOrDiscard::from(progress);
match pack {
None => self
.verify_checksum(root.add_child("Sha1 of index"))
.map_err(Into::into)
.map(|id| (id, None, root.into_inner())),
Some((pack, mode, algorithm)) => self
.traverse(
pack,
root.into_inner(),
|| {
let mut encode_buf = Vec::with_capacity(2048);
move |kind, data, index_entry, progress| {
Self::verify_entry(mode, &mut encode_buf, kind, data, index_entry, progress)
}
},
make_cache,
index::traverse::Options {
algorithm,
thread_limit,
check: index::traverse::SafetyCheck::All,
},
)
.map(|(id, outcome, root)| (id, Some(outcome), root)),
}
}
#[allow(clippy::too_many_arguments)]
pub fn verify_entry<P>(
mode: Mode,
encode_buf: &mut Vec<u8>,
object_kind: git_object::Kind,
buf: &[u8],
index_entry: &index::Entry,
progress: &mut P,
) -> Result<(), Error>
where
P: Progress,
{
if let Mode::Sha1CRC32Decode | Mode::Sha1CRC32DecodeEncode = mode {
use git_object::Kind::*;
match object_kind {
Tree | Commit | Tag => {
let borrowed_object = borrowed::Object::from_bytes(object_kind, buf)
.map_err(|err| Error::ObjectDecode(err, object_kind, index_entry.oid))?;
if let Mode::Sha1CRC32DecodeEncode = mode {
let object = owned::Object::from(borrowed_object);
encode_buf.clear();
object.write_to(&mut *encode_buf)?;
if encode_buf.as_slice() != buf {
let mut should_return_error = true;
if let git_object::Kind::Tree = object_kind {
if buf.as_bstr().find(b"100664").is_some() || buf.as_bstr().find(b"100640").is_some() {
progress.info(format!("Tree object {} would be cleaned up during re-serialization, replacing mode '100664|100640' with '100644'", index_entry.oid));
should_return_error = false
}
}
if should_return_error {
return Err(Error::ObjectEncodeMismatch(
object_kind,
index_entry.oid,
buf.into(),
encode_buf.clone().into(),
));
}
}
}
}
Blob => {}
};
}
Ok(())
}
}