-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathp11.rs
More file actions
492 lines (435 loc) · 14.1 KB
/
p11.rs
File metadata and controls
492 lines (435 loc) · 14.1 KB
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
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
#![allow(
dead_code,
non_upper_case_globals,
non_camel_case_types,
non_snake_case,
clippy::unwrap_used
)]
use std::{
cell::RefCell,
convert::TryFrom as _,
fmt::{self, Debug, Formatter},
os::raw::{c_int, c_uint},
ptr::null_mut,
};
use pkcs11_bindings::{CKA_EC_POINT, CKA_VALUE};
use crate::{
err::{Error, Res, secstatus_to_res},
nss_prelude::SECITEM_FreeItem,
util::SECItemMut,
};
#[must_use]
pub fn hex_with_len<B: AsRef<[u8]>>(buf: B) -> String {
use std::fmt::Write as _;
let buf = buf.as_ref();
let mut ret = String::with_capacity(10 + buf.len() * 2);
write!(&mut ret, "[{}]: ", buf.len()).unwrap();
for b in buf {
write!(&mut ret, "{b:02x}").unwrap();
}
ret
}
mod nss_p11 {
#![allow(
non_snake_case,
non_upper_case_globals,
non_camel_case_types,
unsafe_op_in_unsafe_fn,
unused_qualifications,
clippy::all,
clippy::nursery,
clippy::pedantic,
clippy::restriction,
reason = "For included bindgen code."
)]
use crate::nss_prelude::*;
include!(concat!(env!("OUT_DIR"), "/nss_p11.rs"));
}
pub use nss_p11::*;
use crate::null_safe_slice;
scoped_ptr!(Certificate, CERTCertificate, CERT_DestroyCertificate);
scoped_ptr!(CertList, CERTCertList, CERT_DestroyCertList);
scoped_ptr!(
SubjectPublicKeyInfo,
CERTSubjectPublicKeyInfo,
SECKEY_DestroySubjectPublicKeyInfo
);
scoped_ptr!(PublicKey, SECKEYPublicKey, SECKEY_DestroyPublicKey);
impl_clone!(PublicKey, SECKEY_CopyPublicKey);
impl PublicKey {
/// Get the HPKE serialization of the public key.
///
/// # Errors
///
/// When the key cannot be exported, which can be because the type is not supported.
///
/// # Panics
///
/// When keys are too large to fit in `c_uint/usize`. So only on programming error.
pub fn key_data(&self) -> Res<Vec<u8>> {
let mut buf = vec![0; 100];
let mut len: c_uint = 0;
secstatus_to_res(unsafe {
PK11_HPKE_Serialize(
**self,
buf.as_mut_ptr(),
&raw mut len,
c_uint::try_from(buf.len()).map_err(|_| Error::IntegerOverflow)?,
)
})?;
buf.truncate(usize::try_from(len).map_err(|_| Error::IntegerOverflow)?);
Ok(buf)
}
pub fn key_data_alt(&self) -> Res<Vec<u8>> {
let mut key_item = SECItemMut::make_empty();
secstatus_to_res(unsafe {
PK11_ReadRawAttribute(
PK11ObjectType::PK11_TypePubKey,
(**self).cast(),
CKA_EC_POINT,
key_item.as_mut(),
)
})?;
Ok(key_item.as_slice().to_owned())
}
}
impl Debug for PublicKey {
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
if let Ok(b) = self.key_data() {
write!(f, "PublicKey {}", hex_with_len(b))
} else {
write!(f, "Opaque PublicKey")
}
}
}
scoped_ptr!(PrivateKey, SECKEYPrivateKey, SECKEY_DestroyPrivateKey);
impl_clone!(PrivateKey, SECKEY_CopyPrivateKey);
impl PrivateKey {
/// Get the bits of the private key.
///
/// # Errors
///
/// When the key cannot be exported, which can be because the type is not supported
/// or because the key data cannot be extracted from the PKCS#11 module.
///
/// # Panics
///
/// When the values are too large to fit. So never.
pub fn key_data(&self) -> Res<Vec<u8>> {
let mut key_item = SECItemMut::make_empty();
secstatus_to_res(unsafe {
PK11_ReadRawAttribute(
PK11ObjectType::PK11_TypePrivKey,
(**self).cast(),
CKA_VALUE,
key_item.as_mut(),
)
})?;
let slc = unsafe { null_safe_slice(key_item.as_ref().data, key_item.as_ref().len) };
let key = Vec::from(slc);
// The data that `key_item` refers to needs to be freed, but we can't
// use the scoped `Item` implementation. This is OK as long as nothing
// panics between `PK11_ReadRawAttribute` succeeding and here.
unsafe {
SECITEM_FreeItem(key_item.as_mut(), PRBool::from(false));
}
Ok(key)
}
}
unsafe impl Send for PrivateKey {}
impl Debug for PrivateKey {
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
if let Ok(b) = self.key_data() {
write!(f, "PrivateKey {}", hex_with_len(b))
} else {
write!(f, "Opaque PrivateKey")
}
}
}
scoped_ptr!(Slot, PK11SlotInfo, PK11_FreeSlot);
impl Slot {
pub fn internal() -> Res<Self> {
unsafe { Self::from_ptr(PK11_GetInternalSlot()) }
}
pub fn internal_key_slot() -> Res<Self> {
unsafe { Self::from_ptr(PK11_GetInternalKeySlot()) }
}
#[must_use]
pub fn token_name(&self) -> String {
let name = unsafe { PK11_GetTokenName(self.ptr) };
if name.is_null() {
return String::new();
}
unsafe { std::ffi::CStr::from_ptr(name) }
.to_string_lossy()
.into_owned()
}
pub fn authenticate(&self) -> Res<()> {
secstatus_to_res(unsafe { PK11_Authenticate(self.ptr, PRBool::from(true), null_mut()) })
}
pub fn check_user_password(&self, password: &str) -> Res<()> {
let c_password = std::ffi::CString::new(password)?;
secstatus_to_res(unsafe { PK11_CheckUserPassword(self.ptr, c_password.as_ptr()) })
}
pub fn logout(&self) -> Res<()> {
secstatus_to_res(unsafe { PK11_Logout(self.ptr) })
}
/// Find a persistent symmetric key on this slot by nickname.
/// Returns `None` if no key with the given nickname exists.
#[must_use]
pub fn find_key_by_nickname(&self, nickname: &str) -> Option<SymKey> {
let c_nickname = std::ffi::CString::new(nickname).ok()?;
let ptr = unsafe {
PK11_ListFixedKeysInSlot(self.ptr, c_nickname.as_ptr().cast_mut(), null_mut())
};
if ptr.is_null() {
None
} else {
SymKey::from_ptr(ptr).ok()
}
}
/// Generate a persistent symmetric key on this slot with a nickname.
pub fn generate_token_key(
&self,
mechanism: CK_MECHANISM_TYPE,
key_size: usize,
nickname: &str,
) -> Res<SymKey> {
let key = unsafe {
SymKey::from_ptr(PK11_TokenKeyGenWithFlags(
self.ptr,
mechanism,
null_mut(),
c_int::try_from(key_size).map_err(|_| Error::IntegerOverflow)?,
null_mut(),
CK_FLAGS::from(CKF_ENCRYPT | CKF_DECRYPT),
PK11AttrFlags::from(PK11_ATTR_TOKEN | PK11_ATTR_PRIVATE | PK11_ATTR_SENSITIVE),
null_mut(),
))
}?;
let c_nickname = std::ffi::CString::new(nickname).map_err(|_| Error::InvalidInput)?;
secstatus_to_res(unsafe { PK11_SetSymKeyNickname(*key, c_nickname.as_ptr()) })?;
Ok(key)
}
}
/// Returns all available token slots for the given mechanism.
#[must_use]
pub fn all_token_slots(mechanism: CK_MECHANISM_TYPE) -> Vec<Slot> {
let list = unsafe {
PK11_GetAllTokens(
mechanism,
PRBool::from(false),
PRBool::from(false),
null_mut(),
)
};
if list.is_null() {
return Vec::new();
}
let mut result = Vec::new();
unsafe {
let mut elem = (*list).head;
while !elem.is_null() {
let slot_ptr = (*elem).slot;
if !slot_ptr.is_null() {
PK11_ReferenceSlot(slot_ptr);
if let Ok(slot) = Slot::from_ptr(slot_ptr) {
result.push(slot);
}
}
elem = (*elem).next;
}
PK11_FreeSlotList(list);
}
result
}
// Note: PK11SymKey is internally reference counted
scoped_ptr!(SymKey, PK11SymKey, PK11_FreeSymKey);
impl_clone!(SymKey, PK11_ReferenceSymKey);
impl SymKey {
/// You really don't want to use this.
///
/// # Errors
///
/// Internal errors in case of failures in NSS.
pub fn key_data(&self) -> Res<&[u8]> {
secstatus_to_res(unsafe { PK11_ExtractKeyValue(**self) })?;
let key_item = unsafe { PK11_GetKeyData(**self) };
// This is accessing a value attached to the key, so we can treat this as a borrow.
match unsafe { key_item.as_mut() } {
None => Err(Error::Internal),
Some(key) => Ok(unsafe { null_safe_slice(key.data, key.len) }),
}
}
pub fn as_bytes(&self) -> Res<&[u8]> {
self.key_data()
}
}
impl Debug for SymKey {
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
if let Ok(b) = self.key_data() {
write!(f, "SymKey {}", hex_with_len(b))
} else {
write!(f, "Opaque SymKey")
}
}
}
impl Default for SymKey {
fn default() -> Self {
Self { ptr: null_mut() }
}
}
unsafe fn destroy_pk11_context(ctxt: *mut PK11Context) {
unsafe {
PK11_DestroyContext(ctxt, PRBool::from(true));
}
}
scoped_ptr!(Context, PK11Context, destroy_pk11_context);
#[cfg(feature = "disable-random")]
thread_local! {
static CURRENT_VALUE: std::cell::Cell<u8> = const { std::cell::Cell::new(0) };
}
#[cfg(feature = "disable-random")]
/// Fill a buffer with a predictable sequence of bytes.
pub fn randomize<B: AsMut<[u8]>>(mut buf: B) -> B {
let m_buf = buf.as_mut();
for v in m_buf.iter_mut() {
*v = CURRENT_VALUE.get();
CURRENT_VALUE.set(v.wrapping_add(1));
}
buf
}
/// Fill a buffer with randomness.
///
/// # Panics
///
/// When `size` is too large or NSS fails.
#[cfg(not(feature = "disable-random"))]
pub fn randomize<B: AsMut<[u8]>>(mut buf: B) -> B {
let m_buf = buf.as_mut();
let len = c_int::try_from(m_buf.len()).expect("usize fits into c_int");
secstatus_to_res(unsafe { PK11_GenerateRandom(m_buf.as_mut_ptr(), len) }).expect("NSS failed");
buf
}
struct RandomCache {
cache: [u8; Self::SIZE],
used: usize,
}
impl RandomCache {
const SIZE: usize = 256;
const CUTOFF: usize = 32;
// Const constructor for compile-time initialization in thread_local!.
// Cannot derive Default because `used` must be SIZE, not 0.
const fn new() -> Self {
Self {
cache: [0; Self::SIZE],
used: Self::SIZE,
}
}
fn randomize<B: AsMut<[u8]>>(&mut self, mut buf: B) -> B {
let m_buf = buf.as_mut();
debug_assert!(m_buf.len() <= Self::CUTOFF);
let avail = Self::SIZE - self.used;
if m_buf.len() <= avail {
m_buf.copy_from_slice(&self.cache[self.used..self.used + m_buf.len()]);
self.used += m_buf.len();
} else {
if avail > 0 {
m_buf[..avail].copy_from_slice(&self.cache[self.used..]);
}
randomize(&mut self.cache[..]);
self.used = m_buf.len() - avail;
m_buf[avail..].copy_from_slice(&self.cache[..self.used]);
}
buf
}
}
/// Generate a randomized array.
///
/// # Panics
///
/// When `size` is too large or NSS fails.
#[must_use]
pub fn random<const N: usize>() -> [u8; N] {
thread_local!(static CACHE: RefCell<RandomCache> = const { RefCell::new(RandomCache::new()) });
let buf = [0; N];
if N <= RandomCache::CUTOFF {
CACHE.with_borrow_mut(|c| c.randomize(buf))
} else {
randomize(buf)
}
}
impl_into_result!(SECOidData);
#[cfg(test)]
#[cfg_attr(coverage_nightly, coverage(off))]
mod test {
use std::ptr::null_mut;
use test_fixture::fixture_init;
use super::RandomCache;
use crate::{PrivateKey, PublicKey, random};
#[cfg(not(feature = "disable-random"))]
#[test]
fn randomness() {
use crate::randomize;
fixture_init();
// If any of these ever fail, there is either a bug, or it's time to buy a lottery ticket.
assert_ne!(random::<16>(), randomize([0; 16]));
assert_ne!([0; 16], random::<16>());
assert_ne!([0; 64], random::<64>());
}
#[test]
fn cache_random_lengths() {
const ZERO: [u8; 256] = [0; 256];
fixture_init();
let mut cache = RandomCache::new();
let mut buf = [0; 256];
let bits = usize::BITS - (RandomCache::CUTOFF - 1).leading_zeros();
let mask = 0xff >> (u8::BITS - bits);
for _ in 0..100 {
let len = loop {
let len = usize::from(random::<1>()[0] & mask) + 1;
if len <= RandomCache::CUTOFF {
break len;
}
};
buf.fill(0);
if len >= 16 {
assert_ne!(&cache.randomize(&mut buf[..len])[..len], &ZERO[..len]);
}
}
}
#[test]
fn key_operations() {
use crate::ech::generate_keys;
fixture_init();
let (sk, pk) = generate_keys().unwrap();
// Test key_data serialization - X25519 keys are 32 bytes
assert_eq!(pk.key_data().unwrap().len(), 32);
// Test Debug formatting
let pk_dbg = format!("{pk:?}");
assert_eq!(&pk_dbg[..9], "PublicKey");
let sk_dbg = format!("{sk:?}");
// Private key debug output depends on whether key extraction is allowed by NSS.
// It could be either "PrivateKey [hex]" or "Opaque PrivateKey".
assert!(
sk_dbg.starts_with("PrivateKey") || sk_dbg.starts_with("Opaque"),
"unexpected private key debug format: {sk_dbg}"
);
// Test cloning
let pk2 = pk.clone();
let sk2 = sk.clone();
assert_eq!(pk.key_data().unwrap(), pk2.key_data().unwrap());
assert_eq!(format!("{sk:?}"), format!("{sk2:?}"));
}
#[test]
fn null_pointer_error() {
fixture_init();
assert!(PublicKey::from_ptr(null_mut()).is_err());
assert!(PrivateKey::from_ptr(null_mut()).is_err());
}
}