Skip to content

Commit 72904b1

Browse files
authored
Merge pull request #124 from wedsonaf/user_ptr-alloc
Handle possible allocation failure in `user_ptr`.
2 parents e9b9c0e + 6f6647a commit 72904b1

File tree

3 files changed

+20
-14
lines changed

3 files changed

+20
-14
lines changed

rust/kernel/error.rs

+9-7
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,9 @@
44
//!
55
//! C header: [`include/uapi/asm-generic/errno-base.h`](../../../include/uapi/asm-generic/errno-base.h)
66
7-
use core::num::TryFromIntError;
8-
use core::str::Utf8Error;
9-
10-
use alloc::alloc::AllocError;
11-
12-
use crate::bindings;
13-
use crate::c_types;
7+
use crate::{bindings, c_types};
8+
use alloc::{alloc::AllocError, collections::TryReserveError};
9+
use core::{num::TryFromIntError, str::Utf8Error};
1410

1511
/// Generic integer kernel error.
1612
///
@@ -72,6 +68,12 @@ impl From<Utf8Error> for Error {
7268
}
7369
}
7470

71+
impl From<TryReserveError> for Error {
72+
fn from(_: TryReserveError) -> Error {
73+
Error::ENOMEM
74+
}
75+
}
76+
7577
/// A [`Result`] with an [`Error`] error type.
7678
///
7779
/// To be used as the return type for functions that may fail.

rust/kernel/lib.rs

+7-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,13 @@
1212
//! do so first instead of bypassing this crate.
1313
1414
#![no_std]
15-
#![feature(allocator_api, alloc_error_handler, const_fn, const_mut_refs)]
15+
#![feature(
16+
allocator_api,
17+
alloc_error_handler,
18+
const_fn,
19+
const_mut_refs,
20+
try_reserve
21+
)]
1622
#![deny(clippy::complexity)]
1723
#![deny(clippy::correctness)]
1824
#![deny(clippy::perf)]

rust/kernel/user_ptr.rs

+4-6
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,8 @@
44
//!
55
//! C header: [`include/linux/uaccess.h`](../../../../include/linux/uaccess.h)
66
7-
use alloc::vec;
7+
use crate::{c_types, error};
88
use alloc::vec::Vec;
9-
use core::u32;
10-
11-
use crate::c_types;
12-
use crate::error;
139

1410
extern "C" {
1511
fn rust_helper_access_ok(addr: *const c_types::c_void, len: c_types::c_ulong)
@@ -134,7 +130,9 @@ impl UserSlicePtrReader {
134130
/// Returns `EFAULT` if the address does not currently point to
135131
/// mapped, readable memory.
136132
pub fn read_all(&mut self) -> error::KernelResult<Vec<u8>> {
137-
let mut data = vec![0; self.1];
133+
let mut data = Vec::<u8>::new();
134+
data.try_reserve_exact(self.1)?;
135+
data.resize(self.1, 0);
138136
self.read(&mut data)?;
139137
Ok(data)
140138
}

0 commit comments

Comments
 (0)