##// END OF EJS Templates
rust: use the bytes-cast crate to parse persistent nodemaps...
Simon Sapin -
r47119:0800aa42 default
parent child Browse files
Show More
@@ -55,6 +55,24 b' version = "1.3.4"'
55 55 source = "registry+https://github.com/rust-lang/crates.io-index"
56 56
57 57 [[package]]
58 name = "bytes-cast"
59 version = "0.1.0"
60 source = "registry+https://github.com/rust-lang/crates.io-index"
61 dependencies = [
62 "bytes-cast-derive 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
63 ]
64
65 [[package]]
66 name = "bytes-cast-derive"
67 version = "0.1.0"
68 source = "registry+https://github.com/rust-lang/crates.io-index"
69 dependencies = [
70 "proc-macro2 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)",
71 "quote 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)",
72 "syn 1.0.54 (registry+https://github.com/rust-lang/crates.io-index)",
73 ]
74
75 [[package]]
58 76 name = "cc"
59 77 version = "1.0.66"
60 78 source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -277,6 +295,7 b' name = "hg-core"'
277 295 version = "0.1.0"
278 296 dependencies = [
279 297 "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
298 "bytes-cast 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
280 299 "clap 2.33.3 (registry+https://github.com/rust-lang/crates.io-index)",
281 300 "crossbeam-channel 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)",
282 301 "flate2 1.0.19 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -910,6 +929,8 b' dependencies = ['
910 929 "checksum bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
911 930 "checksum bitmaps 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "031043d04099746d8db04daf1fa424b2bc8bd69d92b25962dcde24da39ab64a2"
912 931 "checksum byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de"
932 "checksum bytes-cast 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3196ba300c7bc9282a4331e878496cb3e9603a898a8f1446601317163e16ca52"
933 "checksum bytes-cast-derive 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "cb936af9de38476664d6b58e529aff30d482e4ce1c5e150293d00730b0d81fdb"
913 934 "checksum cc 1.0.66 (registry+https://github.com/rust-lang/crates.io-index)" = "4c0496836a84f8d0495758516b8621a622beb77c0fed418570e50764093ced48"
914 935 "checksum cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
915 936 "checksum cfg-if 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
@@ -9,6 +9,7 b' edition = "2018"'
9 9 name = "hg"
10 10
11 11 [dependencies]
12 bytes-cast = "0.1"
12 13 byteorder = "1.3.4"
13 14 hex = "0.4.2"
14 15 im-rc = "15.0.*"
@@ -17,12 +17,12 b' use super::{'
17 17 RevlogIndex, NULL_REVISION,
18 18 };
19 19
20 use bytes_cast::{unaligned, BytesCast};
20 21 use std::cmp::max;
21 22 use std::fmt;
22 use std::mem;
23 use std::mem::{self, align_of, size_of};
23 24 use std::ops::Deref;
24 25 use std::ops::Index;
25 use std::slice;
26 26
27 27 #[derive(Debug, PartialEq)]
28 28 pub enum NodeMapError {
@@ -149,7 +149,7 b' pub trait MutableNodeMap: NodeMap {'
149 149 /// Low level NodeTree [`Blocks`] elements
150 150 ///
151 151 /// These are exactly as for instance on persistent storage.
152 type RawElement = i32;
152 type RawElement = unaligned::I32Be;
153 153
154 154 /// High level representation of values in NodeTree
155 155 /// [`Blocks`](struct.Block.html)
@@ -168,23 +168,24 b' impl From<RawElement> for Element {'
168 168 ///
169 169 /// See [`Block`](struct.Block.html) for explanation about the encoding.
170 170 fn from(raw: RawElement) -> Element {
171 if raw >= 0 {
172 Element::Block(raw as usize)
173 } else if raw == -1 {
171 let int = raw.get();
172 if int >= 0 {
173 Element::Block(int as usize)
174 } else if int == -1 {
174 175 Element::None
175 176 } else {
176 Element::Rev(-raw - 2)
177 Element::Rev(-int - 2)
177 178 }
178 179 }
179 180 }
180 181
181 182 impl From<Element> for RawElement {
182 183 fn from(element: Element) -> RawElement {
183 match element {
184 RawElement::from(match element {
184 185 Element::None => 0,
185 Element::Block(i) => i as RawElement,
186 Element::Block(i) => i as i32,
186 187 Element::Rev(rev) => -rev - 2,
187 }
188 })
188 189 }
189 190 }
190 191
@@ -212,42 +213,24 b' impl From<Element> for RawElement {'
212 213 /// represented at all, because we want an immutable empty nodetree
213 214 /// to be valid.
214 215
215 #[derive(Copy, Clone)]
216 pub struct Block([u8; BLOCK_SIZE]);
216 const ELEMENTS_PER_BLOCK: usize = 16; // number of different values in a nybble
217 217
218 /// Not derivable for arrays of length >32 until const generics are stable
219 impl PartialEq for Block {
220 fn eq(&self, other: &Self) -> bool {
221 self.0[..] == other.0[..]
222 }
223 }
224
225 pub const BLOCK_SIZE: usize = 64;
218 #[derive(Copy, Clone, BytesCast, PartialEq)]
219 #[repr(transparent)]
220 pub struct Block([RawElement; ELEMENTS_PER_BLOCK]);
226 221
227 222 impl Block {
228 223 fn new() -> Self {
229 // -1 in 2's complement to create an absent node
230 let byte: u8 = 255;
231 Block([byte; BLOCK_SIZE])
224 let absent_node = RawElement::from(-1);
225 Block([absent_node; ELEMENTS_PER_BLOCK])
232 226 }
233 227
234 228 fn get(&self, nybble: u8) -> Element {
235 let index = nybble as usize * mem::size_of::<RawElement>();
236 Element::from(RawElement::from_be_bytes([
237 self.0[index],
238 self.0[index + 1],
239 self.0[index + 2],
240 self.0[index + 3],
241 ]))
229 self.0[nybble as usize].into()
242 230 }
243 231
244 232 fn set(&mut self, nybble: u8, element: Element) {
245 let values = RawElement::to_be_bytes(element.into());
246 let index = nybble as usize * mem::size_of::<RawElement>();
247 self.0[index] = values[0];
248 self.0[index + 1] = values[1];
249 self.0[index + 2] = values[2];
250 self.0[index + 3] = values[3];
233 self.0[nybble as usize] = element.into()
251 234 }
252 235 }
253 236
@@ -398,16 +381,17 b' impl NodeTree {'
398 381 // Transmute the `Vec<Block>` to a `Vec<u8>`. Blocks are contiguous
399 382 // bytes, so this is perfectly safe.
400 383 let bytes = unsafe {
401 // Assert that `Block` hasn't been changed and has no padding
402 let _: [u8; 4 * BLOCK_SIZE] =
403 std::mem::transmute([Block::new(); 4]);
384 // Check for compatible allocation layout.
385 // (Optimized away by constant-folding + dead code elimination.)
386 assert_eq!(size_of::<Block>(), 64);
387 assert_eq!(align_of::<Block>(), 1);
404 388
405 389 // /!\ Any use of `vec` after this is use-after-free.
406 390 // TODO: use `into_raw_parts` once stabilized
407 391 Vec::from_raw_parts(
408 392 vec.as_ptr() as *mut u8,
409 vec.len() * BLOCK_SIZE,
410 vec.capacity() * BLOCK_SIZE,
393 vec.len() * size_of::<Block>(),
394 vec.capacity() * size_of::<Block>(),
411 395 )
412 396 };
413 397 (readonly, bytes)
@@ -613,7 +597,7 b' impl NodeTreeBytes {'
613 597 amount: usize,
614 598 ) -> Self {
615 599 assert!(buffer.len() >= amount);
616 let len_in_blocks = amount / BLOCK_SIZE;
600 let len_in_blocks = amount / size_of::<Block>();
617 601 NodeTreeBytes {
618 602 buffer,
619 603 len_in_blocks,
@@ -625,12 +609,11 b' impl Deref for NodeTreeBytes {'
625 609 type Target = [Block];
626 610
627 611 fn deref(&self) -> &[Block] {
628 unsafe {
629 slice::from_raw_parts(
630 (&self.buffer).as_ptr() as *const Block,
631 self.len_in_blocks,
632 )
633 }
612 Block::slice_from_bytes(&self.buffer, self.len_in_blocks)
613 // `NodeTreeBytes::new` already asserted that `self.buffer` is
614 // large enough.
615 .unwrap()
616 .0
634 617 }
635 618 }
636 619
@@ -774,13 +757,13 b' mod tests {'
774 757 let mut raw = [255u8; 64];
775 758
776 759 let mut counter = 0;
777 for val in [0, 15, -2, -1, -3].iter() {
778 for byte in RawElement::to_be_bytes(*val).iter() {
760 for val in [0_i32, 15, -2, -1, -3].iter() {
761 for byte in val.to_be_bytes().iter() {
779 762 raw[counter] = *byte;
780 763 counter += 1;
781 764 }
782 765 }
783 let block = Block(raw);
766 let (block, _) = Block::from_bytes(&raw).unwrap();
784 767 assert_eq!(block.get(0), Element::Block(0));
785 768 assert_eq!(block.get(1), Element::Block(15));
786 769 assert_eq!(block.get(3), Element::None);
@@ -1108,7 +1091,7 b' mod tests {'
1108 1091 let (_, bytes) = idx.nt.into_readonly_and_added_bytes();
1109 1092
1110 1093 // only the root block has been changed
1111 assert_eq!(bytes.len(), BLOCK_SIZE);
1094 assert_eq!(bytes.len(), size_of::<Block>());
1112 1095 // big endian for -2
1113 1096 assert_eq!(&bytes[4..2 * 4], [255, 255, 255, 254]);
1114 1097 // big endian for -6
@@ -1,5 +1,5 b''
1 use bytes_cast::{unaligned, BytesCast};
1 2 use memmap::Mmap;
2 use std::convert::TryInto;
3 3 use std::path::{Path, PathBuf};
4 4
5 5 use super::revlog::RevlogError;
@@ -13,6 +13,16 b' pub(super) struct NodeMapDocket {'
13 13 // TODO: keep here more of the data from `parse()` when we need it
14 14 }
15 15
16 #[derive(BytesCast)]
17 #[repr(C)]
18 struct DocketHeader {
19 uid_size: u8,
20 _tip_rev: unaligned::U64Be,
21 data_length: unaligned::U64Be,
22 _data_unused: unaligned::U64Be,
23 tip_node_size: unaligned::U64Be,
24 }
25
16 26 impl NodeMapDocket {
17 27 /// Return `Ok(None)` when the caller should proceed without a persistent
18 28 /// nodemap:
@@ -36,25 +46,22 b' impl NodeMapDocket {'
36 46 Ok(bytes) => bytes,
37 47 };
38 48
39 let mut input = if let Some((&ONDISK_VERSION, rest)) =
49 let input = if let Some((&ONDISK_VERSION, rest)) =
40 50 docket_bytes.split_first()
41 51 {
42 52 rest
43 53 } else {
44 54 return Ok(None);
45 55 };
46 let input = &mut input;
47 56
48 let uid_size = read_u8(input)? as usize;
49 let _tip_rev = read_be_u64(input)?;
57 let (header, rest) = DocketHeader::from_bytes(input)?;
58 let uid_size = header.uid_size as usize;
50 59 // TODO: do we care about overflow for 4 GB+ nodemap files on 32-bit
51 60 // systems?
52 let data_length = read_be_u64(input)? as usize;
53 let _data_unused = read_be_u64(input)?;
54 let tip_node_size = read_be_u64(input)? as usize;
55 let uid = read_bytes(input, uid_size)?;
56 let _tip_node = read_bytes(input, tip_node_size)?;
57
61 let tip_node_size = header.tip_node_size.get() as usize;
62 let data_length = header.data_length.get() as usize;
63 let (uid, rest) = u8::slice_from_bytes(rest, uid_size)?;
64 let (_tip_node, _rest) = u8::slice_from_bytes(rest, tip_node_size)?;
58 65 let uid =
59 66 std::str::from_utf8(uid).map_err(|_| RevlogError::Corrupted)?;
60 67 let docket = NodeMapDocket { data_length };
@@ -81,29 +88,6 b' impl NodeMapDocket {'
81 88 }
82 89 }
83 90
84 fn read_bytes<'a>(
85 input: &mut &'a [u8],
86 count: usize,
87 ) -> Result<&'a [u8], RevlogError> {
88 if let Some(start) = input.get(..count) {
89 *input = &input[count..];
90 Ok(start)
91 } else {
92 Err(RevlogError::Corrupted)
93 }
94 }
95
96 fn read_u8<'a>(input: &mut &[u8]) -> Result<u8, RevlogError> {
97 Ok(read_bytes(input, 1)?[0])
98 }
99
100 fn read_be_u64<'a>(input: &mut &[u8]) -> Result<u64, RevlogError> {
101 let array = read_bytes(input, std::mem::size_of::<u64>())?
102 .try_into()
103 .unwrap();
104 Ok(u64::from_be_bytes(array))
105 }
106
107 91 fn rawdata_path(docket_path: &Path, uid: &str) -> PathBuf {
108 92 let docket_name = docket_path
109 93 .file_name()
@@ -29,6 +29,12 b' pub enum RevlogError {'
29 29 UnknowDataFormat(u8),
30 30 }
31 31
32 impl From<bytes_cast::FromBytesError> for RevlogError {
33 fn from(_: bytes_cast::FromBytesError) -> Self {
34 RevlogError::Corrupted
35 }
36 }
37
32 38 /// Read only implementation of revlog.
33 39 pub struct Revlog {
34 40 /// When index and data are not interleaved: bytes of the revlog index.
General Comments 0
You need to be logged in to leave comments. Login now