Try to propagate callback panics

This commit is contained in:
Jonas Schievink 2016-06-13 21:47:02 +02:00
parent 311af7c3be
commit f0b4a032d5
1 changed files with 21 additions and 6 deletions

View File

@ -1,9 +1,10 @@
use libc::{c_int, c_uint, c_ulong, c_char, c_void}; use libc::{c_int, c_uint, c_ulong, c_char, c_void};
use std::any::Any;
use std::io; use std::io;
use std::io::prelude::*; use std::io::prelude::*;
use std::iter::repeat; use std::iter::repeat;
use std::mem; use std::mem;
use std::panic::catch_unwind; use std::panic;
use std::ptr; use std::ptr;
use std::slice; use std::slice;
use bio::MemBio; use bio::MemBio;
@ -100,21 +101,26 @@ impl PKey {
/// ///
/// The callback will be passed the password buffer and should return the number of characters /// The callback will be passed the password buffer and should return the number of characters
/// placed into the buffer. /// placed into the buffer.
pub fn private_key_from_pem_cb<R, F>(reader: &mut R, mut pass_cb: F) -> Result<PKey, SslError> pub fn private_key_from_pem_cb<R, F>(reader: &mut R, pass_cb: F) -> Result<PKey, SslError>
where R: Read, F: FnMut(&mut [i8]) -> usize where R: Read, F: FnMut(&mut [i8]) -> usize
{ {
struct CallbackState<F: FnMut(&mut [i8]) -> usize> {
cb: F,
panic: Option<Box<Any + Send + 'static>>,
}
extern "C" fn user_cb_wrapper<F>(buf: *mut c_char, extern "C" fn user_cb_wrapper<F>(buf: *mut c_char,
size: c_int, size: c_int,
_rwflag: c_int, _rwflag: c_int,
user_cb: *mut c_void) user_cb: *mut c_void)
-> c_int -> c_int
where F: FnMut(&mut [i8]) -> usize { where F: FnMut(&mut [i8]) -> usize {
let result = catch_unwind(|| { let result = panic::catch_unwind(|| {
// build a `i8` slice to pass to the user callback // build a `i8` slice to pass to the user callback
let pass_slice = unsafe { slice::from_raw_parts_mut(buf, size as usize) }; let pass_slice = unsafe { slice::from_raw_parts_mut(buf, size as usize) };
let callback = unsafe { &mut *(user_cb as *mut F) }; let callback = unsafe { &mut *(user_cb as *mut CallbackState<F>) };
callback(pass_slice) (callback.cb)(pass_slice)
}); });
if let Ok(len) = result { if let Ok(len) = result {
@ -124,6 +130,11 @@ impl PKey {
} }
} }
let mut cb = CallbackState {
cb: pass_cb,
panic: None,
};
let mut mem_bio = try!(MemBio::new()); let mut mem_bio = try!(MemBio::new());
try!(io::copy(reader, &mut mem_bio).map_err(StreamError)); try!(io::copy(reader, &mut mem_bio).map_err(StreamError));
@ -131,7 +142,11 @@ impl PKey {
let evp = try_ssl_null!(ffi::PEM_read_bio_PrivateKey(mem_bio.get_handle(), let evp = try_ssl_null!(ffi::PEM_read_bio_PrivateKey(mem_bio.get_handle(),
ptr::null_mut(), ptr::null_mut(),
Some(user_cb_wrapper::<F>), Some(user_cb_wrapper::<F>),
&mut pass_cb as *mut _ as *mut c_void)); &mut cb as *mut _ as *mut c_void));
if let Some(panic) = cb.panic {
panic::resume_unwind(panic);
}
Ok(PKey { Ok(PKey {
evp: evp as *mut ffi::EVP_PKEY, evp: evp as *mut ffi::EVP_PKEY,