-
Notifications
You must be signed in to change notification settings - Fork 734
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
aes_gcm: Split x86-64 integrated implementation into its own module.
``` git difftool HEAD^1:src/aead/aes_gcm.rs \ src/aead/aes_gcm/aeshwclmulmovbe.rs ```
- Loading branch information
1 parent
2a6a4ec
commit a5220ab
Showing
2 changed files
with
159 additions
and
113 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,152 @@ | ||
// Copyright 2015-2025 Brian Smith. | ||
// | ||
// Permission to use, copy, modify, and/or distribute this software for any | ||
// purpose with or without fee is hereby granted, provided that the above | ||
// copyright notice and this permission notice appear in all copies. | ||
// | ||
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | ||
// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | ||
// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY | ||
// SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | ||
// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION | ||
// OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN | ||
// CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
|
||
#![cfg(target_arch = "x86_64")] | ||
|
||
use super::{ | ||
super::overlapping::IndexError, | ||
aes::{self, Counter, EncryptCtr32, Overlapping, OverlappingPartialBlock}, | ||
gcm, Aad, Tag, | ||
}; | ||
use crate::{ | ||
c, | ||
error::{self, InputTooLongError}, | ||
polyfill::slice, | ||
}; | ||
use core::ops::RangeFrom; | ||
|
||
pub(super) fn seal( | ||
aes_key: &aes::hw::Key, | ||
gcm_key: &gcm::clmulavxmovbe::Key, | ||
mut ctr: Counter, | ||
tag_iv: aes::Iv, | ||
aad: Aad<&[u8]>, | ||
in_out: &mut [u8], | ||
) -> Result<Tag, error::Unspecified> { | ||
prefixed_extern! { | ||
// `HTable` and `Xi` should be 128-bit aligned. TODO: Can we shrink `HTable`? The | ||
// assembly says it needs just nine values in that array. | ||
fn aesni_gcm_encrypt( | ||
input: *const u8, | ||
output: *mut u8, | ||
len: c::size_t, | ||
key: &aes::AES_KEY, | ||
ivec: &mut Counter, | ||
Htable: &gcm::HTable, | ||
Xi: &mut gcm::Xi) -> c::size_t; | ||
} | ||
|
||
let mut auth = gcm::Context::new(gcm_key, aad, in_out.len())?; | ||
let (htable, xi) = auth.inner(); | ||
|
||
let processed = unsafe { | ||
aesni_gcm_encrypt( | ||
in_out.as_ptr(), | ||
in_out.as_mut_ptr(), | ||
in_out.len(), | ||
aes_key.inner_less_safe(), | ||
&mut ctr, | ||
htable, | ||
xi, | ||
) | ||
}; | ||
|
||
let ramaining = match in_out.get_mut(processed..) { | ||
Some(remaining) => remaining, | ||
None => { | ||
// This can't happen. If it did, then the assembly already | ||
// caused a buffer overflow. | ||
unreachable!() | ||
} | ||
}; | ||
let (mut whole, remainder) = slice::as_chunks_mut(ramaining); | ||
aes_key.ctr32_encrypt_within(whole.as_flattened_mut().into(), &mut ctr); | ||
auth.update_blocks(whole.as_ref()); | ||
let remainder = OverlappingPartialBlock::new(remainder.into()) | ||
.unwrap_or_else(|InputTooLongError { .. }| unreachable!()); | ||
|
||
super::seal_finish(aes_key, auth, remainder, ctr, tag_iv) | ||
} | ||
|
||
pub(super) fn open( | ||
aes_key: &aes::hw::Key, | ||
gcm_key: &gcm::clmulavxmovbe::Key, | ||
mut ctr: Counter, | ||
tag_iv: aes::Iv, | ||
aad: Aad<&[u8]>, | ||
in_out_slice: &mut [u8], | ||
src: RangeFrom<usize>, | ||
) -> Result<Tag, error::Unspecified> { | ||
prefixed_extern! { | ||
// `HTable` and `Xi` should be 128-bit aligned. TODO: Can we shrink `HTable`? The | ||
// assembly says it needs just nine values in that array. | ||
fn aesni_gcm_decrypt( | ||
input: *const u8, | ||
output: *mut u8, | ||
len: c::size_t, | ||
key: &aes::AES_KEY, | ||
ivec: &mut Counter, | ||
Htable: &gcm::HTable, | ||
Xi: &mut gcm::Xi) -> c::size_t; | ||
} | ||
|
||
let in_out = Overlapping::new(in_out_slice, src.clone()).map_err(error::erase::<IndexError>)?; | ||
let mut auth = gcm::Context::new(gcm_key, aad, in_out.len())?; | ||
let processed = in_out.with_input_output_len(|input, output, len| { | ||
let (htable, xi) = auth.inner(); | ||
unsafe { | ||
aesni_gcm_decrypt( | ||
input, | ||
output, | ||
len, | ||
aes_key.inner_less_safe(), | ||
&mut ctr, | ||
htable, | ||
xi, | ||
) | ||
} | ||
}); | ||
let in_out_slice = in_out_slice.get_mut(processed..).unwrap_or_else(|| { | ||
// This can't happen. If it did, then the assembly already | ||
// caused a buffer overflow. | ||
unreachable!() | ||
}); | ||
// Authenticate any remaining whole blocks. | ||
let in_out = | ||
Overlapping::new(in_out_slice, src.clone()).unwrap_or_else(|IndexError { .. }| { | ||
// This can't happen. If it did, then the assembly already | ||
// overwrote part of the remaining input. | ||
unreachable!() | ||
}); | ||
let (whole, _) = slice::as_chunks(in_out.input()); | ||
auth.update_blocks(whole); | ||
|
||
let whole_len = whole.as_flattened().len(); | ||
|
||
// Decrypt any remaining whole blocks. | ||
let whole = Overlapping::new(&mut in_out_slice[..(src.start + whole_len)], src.clone()) | ||
.map_err(error::erase::<IndexError>)?; | ||
aes_key.ctr32_encrypt_within(whole, &mut ctr); | ||
|
||
let in_out_slice = match in_out_slice.get_mut(whole_len..) { | ||
Some(partial) => partial, | ||
None => unreachable!(), | ||
}; | ||
let in_out = | ||
Overlapping::new(in_out_slice, src).unwrap_or_else(|IndexError { .. }| unreachable!()); | ||
let in_out = OverlappingPartialBlock::new(in_out) | ||
.unwrap_or_else(|InputTooLongError { .. }| unreachable!()); | ||
|
||
super::open_finish(aes_key, auth, in_out, ctr, tag_iv) | ||
} |