Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chacha: safer outputting #1181

Merged
merged 4 commits into from
Sep 13, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions rand_chacha/src/chacha.rs
Original file line number Diff line number Diff line change
Expand Up @@ -87,13 +87,7 @@ macro_rules! chacha_impl {
type Results = Array64<u32>;
#[inline]
fn generate(&mut self, r: &mut Self::Results) {
// Fill slice of words by writing to equivalent slice of bytes, then fixing endianness.
self.state.refill4($rounds, unsafe {
&mut *(&mut *r as *mut Array64<u32> as *mut [u8; 256])
});
for x in r.as_mut() {
*x = x.to_le();
}
self.state.refill4($rounds, &mut r.0);
}
}

Expand Down
31 changes: 20 additions & 11 deletions rand_chacha/src/guts.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ use ppv_lite86::{dispatch, dispatch_light128};
pub use ppv_lite86::Machine;
use ppv_lite86::{vec128_storage, ArithOps, BitOps32, LaneWords4, MultiLane, StoreBytes, Vec4};

pub(crate) const BLOCK: usize = 64;
pub(crate) const BLOCK: usize = 16;
pub(crate) const BLOCK64: u64 = BLOCK as u64;
const LOG2_BUFBLOCKS: u64 = 2;
const BUFBLOCKS: u64 = 1 << LOG2_BUFBLOCKS;
Expand Down Expand Up @@ -81,7 +81,7 @@ impl ChaCha {

/// Produce 4 blocks of output, advancing the state
#[inline(always)]
pub fn refill4(&mut self, drounds: u32, out: &mut [u8; BUFSZ]) {
pub fn refill4(&mut self, drounds: u32, out: &mut [u32; BUFSZ]) {
refill_wide(self, drounds, out)
}

Expand Down Expand Up @@ -114,7 +114,7 @@ impl ChaCha {
#[allow(clippy::many_single_char_names)]
#[inline(always)]
fn refill_wide_impl<Mach: Machine>(
m: Mach, state: &mut ChaCha, drounds: u32, out: &mut [u8; BUFSZ],
m: Mach, state: &mut ChaCha, drounds: u32, out: &mut [u32; BUFSZ],
) {
let k = m.vec([0x6170_7865, 0x3320_646e, 0x7962_2d32, 0x6b20_6574]);
let mut pos = state.pos64(m);
Expand Down Expand Up @@ -159,17 +159,26 @@ fn refill_wide_impl<Mach: Machine>(
let sc = m.unpack(state.c);
let sd = [m.unpack(state.d), d1, d2, d3];
state.d = d4.into();
let mut words = out.chunks_exact_mut(16);
for ((((&a, &b), &c), &d), &sd) in a.iter().zip(&b).zip(&c).zip(&d).zip(&sd) {
(a + k).write_le(words.next().unwrap());
(b + sb).write_le(words.next().unwrap());
(c + sc).write_le(words.next().unwrap());
(d + sd).write_le(words.next().unwrap());
}
out[0..4].copy_from_slice(&(a[0] + k).to_lanes());
out[4..8].copy_from_slice(&(b[0] + sb).to_lanes());
out[8..12].copy_from_slice(&(c[0] + sc).to_lanes());
out[12..16].copy_from_slice(&(d[0] + sd[0]).to_lanes());
out[16..20].copy_from_slice(&(a[1] + k).to_lanes());
out[20..24].copy_from_slice(&(b[1] + sb).to_lanes());
out[24..28].copy_from_slice(&(c[1] + sc).to_lanes());
out[28..32].copy_from_slice(&(d[1] + sd[1]).to_lanes());
out[32..36].copy_from_slice(&(a[2] + k).to_lanes());
out[36..40].copy_from_slice(&(b[2] + sb).to_lanes());
out[40..44].copy_from_slice(&(c[2] + sc).to_lanes());
out[44..48].copy_from_slice(&(d[2] + sd[2]).to_lanes());
out[48..52].copy_from_slice(&(a[3] + k).to_lanes());
out[52..56].copy_from_slice(&(b[3] + sb).to_lanes());
out[56..60].copy_from_slice(&(c[3] + sc).to_lanes());
out[60..64].copy_from_slice(&(d[3] + sd[3]).to_lanes());
}

dispatch!(m, Mach, {
fn refill_wide(state: &mut ChaCha, drounds: u32, out: &mut [u8; BUFSZ]) {
fn refill_wide(state: &mut ChaCha, drounds: u32, out: &mut [u32; BUFSZ]) {
refill_wide_impl(m, state, drounds, out);
}
});
Expand Down