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
// Licensed under the Apache License, Version 2.0 or the MIT License.
// SPDX-License-Identifier: Apache-2.0 OR MIT
// Copyright Tock Contributors 2023.
//! Software implementation of HMAC-SHA256.
use core::cell::Cell;
use kernel::hil;
use kernel::hil::digest::DigestData;
use kernel::utilities::cells::{MapCell, OptionalCell, TakeCell};
use kernel::utilities::leasable_buffer::SubSlice;
use kernel::utilities::leasable_buffer::SubSliceMut;
use kernel::utilities::leasable_buffer::SubSliceMutImmut;
use kernel::ErrorCode;
#[derive(Clone, Copy, PartialEq)]
pub enum State {
Idle,
InnerHashAddKeyPending,
InnerHashAddKey,
InnerHashAddData,
InnerHash,
OuterHashAddKey,
OuterHashAddHash,
OuterHash,
}
#[derive(Copy, Clone)]
pub enum RunMode {
Hash,
Verify,
}
/// Value to XOR the key with on the inner hash.
const INNER_PAD_BYTE: u8 = 0x36;
/// Value to XOR the key with on the outer hash.
const OUTER_PAD_BYTE: u8 = 0x5c;
const SHA_BLOCK_LEN_BYTES: usize = 64;
const SHA_256_OUTPUT_LEN_BYTES: usize = 32;
pub struct HmacSha256Software<'a, S: hil::digest::Sha256 + hil::digest::DigestDataHash<'a, 32>> {
/// SHA256 hasher implementation.
sha256: &'a S,
/// The current operation for the internal state machine in this capsule.
state: Cell<State>,
/// The current mode of operation as requested by a call to either
/// [`DigestHash::run`](kernel::hil::digest::DigestHash::run) or
/// [`DigestVerify::verify`](kernel::hil::digest::DigestVerify::verify).
mode: Cell<RunMode>,
/// Location to store incoming temporarily before we are able to pass it to
/// the hasher.
input_data: OptionalCell<SubSliceMutImmut<'static, u8>>,
/// Static buffer to store the key and to pass to the hasher. This must be
/// at least `SHA_BLOCK_LEN_BYTES` bytes.
data_buffer: TakeCell<'static, [u8]>,
/// Storage buffer to keep a copy of the key. This allows us to keep it
/// persistent if the user wants to do multiple HMACs with the same key.
key_buffer: MapCell<[u8; SHA_BLOCK_LEN_BYTES]>,
/// Holding cell for the output digest buffer while we calculate the HMAC.
digest_buffer: MapCell<&'static mut [u8; 32]>,
/// Buffer-slot used for a _verify_ operation. When not active, this
/// contains a buffer to place the current digest in. On a call to `verify`,
/// where the digest to compare to is provided in another buffer, this
/// buffer is swapped into this TakeCell. When the operation completes, we
/// swap them back and compare:
verify_buffer: MapCell<&'static mut [u8; 32]>,
/// Clients for callbacks.
// error[E0658]: cannot cast `dyn kernel::hil::digest::Client<32>` to `dyn ClientData<32>`, trait upcasting coercion is experimental
// data_client: OptionalCell<&'a dyn hil::digest::ClientData<SHA_256_OUTPUT_LEN_BYTES>>,
// hash_client: OptionalCell<&'a dyn hil::digest::ClientHash<SHA_256_OUTPUT_LEN_BYTES>>,
// verify_client: OptionalCell<&'a dyn hil::digest::ClientVerify<SHA_256_OUTPUT_LEN_BYTES>>,
client: OptionalCell<&'a dyn hil::digest::Client<SHA_256_OUTPUT_LEN_BYTES>>,
}
impl<'a, S: hil::digest::Sha256 + hil::digest::DigestDataHash<'a, 32>> HmacSha256Software<'a, S> {
pub fn new(
sha256: &'a S,
data_buffer: &'static mut [u8],
verify_buffer: &'static mut [u8; 32],
) -> Self {
Self {
sha256,
state: Cell::new(State::Idle),
mode: Cell::new(RunMode::Hash),
input_data: OptionalCell::empty(),
data_buffer: TakeCell::new(data_buffer),
key_buffer: MapCell::new([0; SHA_BLOCK_LEN_BYTES]),
digest_buffer: MapCell::empty(),
verify_buffer: MapCell::new(verify_buffer),
// data_client: OptionalCell::empty(),
// hash_client: OptionalCell::empty(),
// verify_client: OptionalCell::empty(),
client: OptionalCell::empty(),
}
}
}
impl<'a, S: hil::digest::Sha256 + hil::digest::DigestDataHash<'a, 32>>
hil::digest::DigestData<'a, 32> for HmacSha256Software<'a, S>
{
fn add_data(
&self,
data: SubSlice<'static, u8>,
) -> Result<(), (ErrorCode, SubSlice<'static, u8>)> {
match self.state.get() {
State::InnerHashAddKeyPending => {
// We need to write the key before we write the data.
if let Some(data_buf) = self.data_buffer.take() {
self.key_buffer.map(|key_buf| {
// Copy the key XOR with inner pad (0x36).
for i in 0..64 {
data_buf[i] = key_buf[i] ^ INNER_PAD_BYTE;
}
});
let mut lease_buf = SubSliceMut::new(data_buf);
lease_buf.slice(0..64);
match self.sha256.add_mut_data(lease_buf) {
Ok(()) => {
self.state.set(State::InnerHashAddKey);
// Save the incoming data to add to the hasher
// on the next iteration.
self.input_data.set(SubSliceMutImmut::Immutable(data));
Ok(())
}
Err((e, leased_data_buf)) => {
self.data_buffer.replace(leased_data_buf.take());
Err((e, data))
}
}
} else {
Err((ErrorCode::BUSY, data))
}
}
State::InnerHashAddData => {
// In this state the hasher is ready to take more input data so
// we can provide more input data. This is the only state after
// setting the key we can accept new data in.
self.sha256.add_data(data)
}
State::Idle => {
// We need a key before we can accept data, so we must return
// error here. `OFF` is the closest error to this issue so we
// return that.
Err((ErrorCode::OFF, data))
}
_ => {
// Any other state we cannot accept new data.
Err((ErrorCode::BUSY, data))
}
}
}
fn add_mut_data(
&self,
data: SubSliceMut<'static, u8>,
) -> Result<(), (ErrorCode, SubSliceMut<'static, u8>)> {
match self.state.get() {
State::InnerHashAddKeyPending => {
// We need to write the key before we write the data.
if let Some(data_buf) = self.data_buffer.take() {
// Copy the key XOR with inner pad (0x36).
self.key_buffer.map(|key_buf| {
// Copy the key XOR with inner pad (0x36).
for i in 0..64 {
data_buf[i] = key_buf[i] ^ INNER_PAD_BYTE;
}
});
let mut lease_buf = SubSliceMut::new(data_buf);
lease_buf.slice(0..64);
match self.sha256.add_mut_data(lease_buf) {
Ok(()) => {
self.state.set(State::InnerHashAddKey);
// Save the incoming data to add to the hasher
// on the next iteration.
self.input_data.set(SubSliceMutImmut::Mutable(data));
Ok(())
}
Err((e, leased_data_buf)) => {
self.data_buffer.replace(leased_data_buf.take());
Err((e, data))
}
}
} else {
Err((ErrorCode::BUSY, data))
}
}
State::InnerHashAddData => {
// In this state the hasher is ready to take more input data so
// we can provide more input data. This is the only state after
// setting the key we can accept new data in.
self.sha256.add_mut_data(data)
}
State::Idle => {
// We need a key before we can accept data, so we must return
// error here. `OFF` is the closest error to this issue so we
// return that.
Err((ErrorCode::OFF, data))
}
_ => {
// Any other state we cannot accept new data.
Err((ErrorCode::BUSY, data))
}
}
}
fn clear_data(&self) {
self.state.set(State::Idle);
self.sha256.clear_data();
}
fn set_data_client(&'a self, _client: &'a dyn hil::digest::ClientData<32>) {
// self.data_client.set(client);
unimplemented!()
}
}
impl<'a, S: hil::digest::Sha256 + hil::digest::DigestDataHash<'a, 32>>
hil::digest::DigestHash<'a, 32> for HmacSha256Software<'a, S>
{
fn run(
&'a self,
digest: &'static mut [u8; 32],
) -> Result<(), (ErrorCode, &'static mut [u8; 32])> {
// User called run, we start with the inner hash.
self.state.set(State::InnerHash);
self.mode.set(RunMode::Hash);
self.sha256.run(digest)
}
fn set_hash_client(&'a self, _client: &'a dyn hil::digest::ClientHash<32>) {
// self.hash_client.set(client);
unimplemented!()
}
}
impl<'a, S: hil::digest::Sha256 + hil::digest::DigestDataHash<'a, 32>>
hil::digest::DigestVerify<'a, 32> for HmacSha256Software<'a, S>
{
fn verify(
&'a self,
compare: &'static mut [u8; 32],
) -> Result<(), (ErrorCode, &'static mut [u8; 32])> {
// User called verify, we start with the inner hash.
self.state.set(State::InnerHash);
self.mode.set(RunMode::Verify);
// Swap the `compare` buffer into `self.verify_buffer`, and use that to
// perform the actual digest calculation:
let digest = self.verify_buffer.replace(compare).unwrap();
self.sha256.run(digest)
}
fn set_verify_client(&'a self, _client: &'a dyn hil::digest::ClientVerify<32>) {
// self.verify_client.set(client);
unimplemented!()
}
}
impl<'a, S: hil::digest::Sha256 + hil::digest::DigestDataHash<'a, 32>>
hil::digest::DigestDataHash<'a, 32> for HmacSha256Software<'a, S>
{
fn set_client(&'a self, _client: &'a dyn hil::digest::ClientDataHash<32>) {
// self.data_client.set(client);
// self.hash_client.set(client);
unimplemented!()
}
}
impl<'a, S: hil::digest::Sha256 + hil::digest::DigestDataHash<'a, 32>> hil::digest::Digest<'a, 32>
for HmacSha256Software<'a, S>
{
fn set_client(&'a self, client: &'a dyn hil::digest::Client<32>) {
// self.data_client.set(client);
// self.hash_client.set(client);
// self.verify_client.set(client);
self.client.set(client);
}
}
impl<'a, S: hil::digest::Sha256 + hil::digest::DigestDataHash<'a, 32>> hil::digest::ClientData<32>
for HmacSha256Software<'a, S>
{
fn add_data_done(&self, result: Result<(), ErrorCode>, data: SubSlice<'static, u8>) {
// This callback is only used for the user to pass in additional data
// for the HMAC, we do not use `add_data()` internally in this capsule
// so we can just directly issue the callback.
// self.data_client.map(|client| {
self.client.map(|client| {
client.add_data_done(result, data);
});
}
fn add_mut_data_done(&self, result: Result<(), ErrorCode>, data: SubSliceMut<'static, u8>) {
if result.is_err() {
// self.data_client.map(|client| {
self.client.map(|client| {
client.add_mut_data_done(result, data);
});
} else {
match self.state.get() {
State::InnerHashAddKey => {
self.data_buffer.replace(data.take());
// We just added the key, so we can now add the stored data.
self.input_data.take().map(|in_data| match in_data {
SubSliceMutImmut::Mutable(buffer) => {
match self.sha256.add_mut_data(buffer) {
Ok(()) => {
self.state.set(State::InnerHashAddData);
}
Err((e, leased_data_buf)) => {
self.clear_data();
// self.data_client.map(|c| {
self.client.map(|c| {
c.add_mut_data_done(Err(e), leased_data_buf);
});
}
}
}
SubSliceMutImmut::Immutable(buffer) => match self.sha256.add_data(buffer) {
Ok(()) => {
self.state.set(State::InnerHashAddData);
}
Err((e, leased_data_buf)) => {
self.clear_data();
self.client.map(|c| {
c.add_data_done(Err(e), leased_data_buf);
});
}
},
});
}
State::OuterHashAddKey => {
// We just added the key, now we add the result of the first
// hash.
self.digest_buffer.take().map(|digest_buf| {
let data_buf = data.take();
// Copy the digest result into our data buffer. We must
// use our data buffer because it does not have a fixed
// size and we can use it with `SubSliceMut`.
data_buf[..32].copy_from_slice(&digest_buf[..32]);
let mut lease_buf = SubSliceMut::new(data_buf);
lease_buf.slice(0..32);
match self.sha256.add_mut_data(lease_buf) {
Ok(()) => {
self.state.set(State::OuterHashAddHash);
self.digest_buffer.replace(digest_buf);
}
Err((e, leased_data_buf)) => {
self.data_buffer.replace(leased_data_buf.take());
self.clear_data();
// self.data_client.map(|c| {
self.client.map(|c| {
c.hash_done(Err(e), digest_buf);
});
}
}
});
}
State::OuterHashAddHash => {
// We've now added both the key and the result of the first
// hash, so we can run the second hash to get our HMAC.
self.data_buffer.replace(data.take());
self.digest_buffer
.take()
.map(|digest_buf| match self.sha256.run(digest_buf) {
Ok(()) => {
self.state.set(State::OuterHash);
}
Err((e, digest)) => {
self.clear_data();
// self.data_client.map(|c| {
self.client.map(|c| {
c.hash_done(Err(e), digest);
});
}
});
}
_ => {
// In other states, we can just issue the callback like
// normal.
// self.data_client.map(|client| {
self.client.map(|client| {
client.add_mut_data_done(Ok(()), data);
});
}
}
}
}
}
impl<'a, S: hil::digest::Sha256 + hil::digest::DigestDataHash<'a, 32>> hil::digest::ClientHash<32>
for HmacSha256Software<'a, S>
{
fn hash_done(&self, result: Result<(), ErrorCode>, digest: &'static mut [u8; 32]) {
let hash_done_error = |error: Result<(), ErrorCode>,
error_digest: &'static mut [u8; 32]| {
match self.mode.get() {
RunMode::Hash => {
// self.hash_client.map(|c| {
self.client.map(|c| {
c.hash_done(error, error_digest);
})
}
RunMode::Verify => {
// Also swap back the verify_buffer, and return the original
// buffer to the client:
let compare = self.verify_buffer.replace(error_digest).unwrap();
// self.verify_client.map(|c| {
self.client.map(|c| {
// Convert to Result<bool, ErrorCode>
c.verification_done(error.map(|()| false), compare);
})
}
}
};
if result.is_err() {
// If hashing fails, we have to propagate that error up with a
// callback.
self.clear_data();
hash_done_error(result, digest);
} else {
match self.state.get() {
State::InnerHash => {
// Completed inner hash, now work on outer hash.
self.sha256.clear_data();
self.data_buffer.take().map(|data_buf| {
self.key_buffer.map(|key_buf| {
// Copy the key XOR with outer pad (0x5c).
for i in 0..64 {
data_buf[i] = key_buf[i] ^ OUTER_PAD_BYTE;
}
});
let mut lease_buf = SubSliceMut::new(data_buf);
lease_buf.slice(0..64);
match self.sha256.add_mut_data(lease_buf) {
Ok(()) => {
self.state.set(State::OuterHashAddKey);
self.digest_buffer.replace(digest);
}
Err((e, leased_data_buf)) => {
// If we cannot add data, we need to replace the
// buffer and issue a callback with an error.
self.data_buffer.replace(leased_data_buf.take());
self.clear_data();
hash_done_error(Err(e), digest);
}
}
});
}
State::OuterHash => {
match self.mode.get() {
RunMode::Hash => {
// self.hash_client.map(|c| {
self.client.map(|c| {
c.hash_done(Ok(()), digest);
});
}
RunMode::Verify => {
let compare = self.verify_buffer.take().unwrap();
let res = compare == digest;
self.verify_buffer.replace(digest);
// self.verify_client.map(|c| {
self.client.map(|c| {
c.verification_done(Ok(res), compare);
});
}
}
}
_ => {}
}
}
}
}
impl<'a, S: hil::digest::Sha256 + hil::digest::DigestDataHash<'a, 32>> hil::digest::ClientVerify<32>
for HmacSha256Software<'a, S>
{
fn verification_done(&self, _result: Result<bool, ErrorCode>, _compare: &'static mut [u8; 32]) {
}
}
impl<'a, S: hil::digest::Sha256 + hil::digest::DigestDataHash<'a, 32>> hil::digest::HmacSha256
for HmacSha256Software<'a, S>
{
fn set_mode_hmacsha256(&self, key: &[u8]) -> Result<(), ErrorCode> {
if key.len() > SHA_BLOCK_LEN_BYTES {
// Key size must be no longer than the internal block size (which is
// 64 bytes).
Err(ErrorCode::SIZE)
} else {
self.key_buffer.map_or(Err(ErrorCode::FAIL), |key_buf| {
// Save the key in our key buffer.
for i in 0..64 {
key_buf[i] = *key.get(i).unwrap_or(&0);
}
// Make sure our hasher is in the expected mode.
self.sha256.set_mode_sha256()?;
// Mark that we have the key pending which we can add once we
// get additional data to add. We can't add the key in the
// underlying hash now because we don't have a callback to use,
// so we have to just store the key. We need to use the key
// again anyway, so this is ok.
self.state.set(State::InnerHashAddKeyPending);
Ok(())
})
}
}
}
impl<'a, S: hil::digest::Sha256 + hil::digest::DigestDataHash<'a, 32>> hil::digest::HmacSha384
for HmacSha256Software<'a, S>
{
fn set_mode_hmacsha384(&self, _key: &[u8]) -> Result<(), ErrorCode> {
Err(ErrorCode::NOSUPPORT)
}
}
impl<'a, S: hil::digest::Sha256 + hil::digest::DigestDataHash<'a, 32>> hil::digest::HmacSha512
for HmacSha256Software<'a, S>
{
fn set_mode_hmacsha512(&self, _key: &[u8]) -> Result<(), ErrorCode> {
Err(ErrorCode::NOSUPPORT)
}
}