-
Notifications
You must be signed in to change notification settings - Fork 13.4k
Applied #![deny(unsafe_op_in_unsafe_fn)]
in library/std/src/wasi
#75971
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
bors
merged 1 commit into
rust-lang:master
from
Amjad50:libstd-deny-unsafe_op_in_unsafe_fn
Sep 3, 2020
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
---|---|---|
@@ -1,42 +1,69 @@ | ||
#![deny(unsafe_op_in_unsafe_fn)] | ||
|
||
use crate::alloc::{GlobalAlloc, Layout, System}; | ||
use crate::ptr; | ||
use crate::sys_common::alloc::{realloc_fallback, MIN_ALIGN}; | ||
|
||
// SAFETY: All methods implemented follow the contract rules defined | ||
// in `GlobalAlloc`. | ||
#[stable(feature = "alloc_system_type", since = "1.28.0")] | ||
unsafe impl GlobalAlloc for System { | ||
#[inline] | ||
unsafe fn alloc(&self, layout: Layout) -> *mut u8 { | ||
if layout.align() <= MIN_ALIGN && layout.align() <= layout.size() { | ||
libc::malloc(layout.size()) as *mut u8 | ||
// SAFETY: `libc::malloc` is guaranteed to be safe, it will allocate | ||
// `layout.size()` bytes of memory and return a pointer to it | ||
unsafe { libc::malloc(layout.size()) as *mut u8 } | ||
} else { | ||
libc::aligned_alloc(layout.align(), layout.size()) as *mut u8 | ||
// SAFETY: `libc::aligned_alloc` is guaranteed to be safe if | ||
// `layout.size()` is a multiple of `layout.align()`. This | ||
// constraint can be satisfied if `pad_to_align` is called, | ||
// which creates a layout by rounding the size of this layout up | ||
// to a multiple of the layout's alignment | ||
let aligned_layout = layout.pad_to_align(); | ||
unsafe { libc::aligned_alloc(aligned_layout.align(), aligned_layout.size()) as *mut u8 } | ||
} | ||
} | ||
|
||
#[inline] | ||
unsafe fn alloc_zeroed(&self, layout: Layout) -> *mut u8 { | ||
if layout.align() <= MIN_ALIGN && layout.align() <= layout.size() { | ||
libc::calloc(layout.size(), 1) as *mut u8 | ||
// SAFETY: `libc::calloc` is safe as long that `layout.size() * 1` | ||
// would not result in integer overflow which cannot happen, | ||
// multiplying by one never overflows | ||
unsafe { libc::calloc(layout.size(), 1) as *mut u8 } | ||
} else { | ||
let ptr = self.alloc(layout.clone()); | ||
// SAFETY: The safety contract for `alloc` must be upheld by the caller | ||
let ptr = unsafe { self.alloc(layout.clone()) }; | ||
if !ptr.is_null() { | ||
ptr::write_bytes(ptr, 0, layout.size()); | ||
// SAFETY: in the case of the `ptr` being not null | ||
// it will be properly aligned and a valid ptr | ||
// which satisfies `ptr::write_bytes` safety constrains | ||
unsafe { ptr::write_bytes(ptr, 0, layout.size()) }; | ||
} | ||
ptr | ||
} | ||
} | ||
|
||
#[inline] | ||
unsafe fn dealloc(&self, ptr: *mut u8, _layout: Layout) { | ||
libc::free(ptr as *mut libc::c_void) | ||
// SAFETY: `libc::free` is guaranteed to be safe if `ptr` is allocated | ||
// by this allocator or if `ptr` is NULL | ||
unsafe { libc::free(ptr as *mut libc::c_void) } | ||
} | ||
|
||
#[inline] | ||
unsafe fn realloc(&self, ptr: *mut u8, layout: Layout, new_size: usize) -> *mut u8 { | ||
if layout.align() <= MIN_ALIGN && layout.align() <= new_size { | ||
libc::realloc(ptr as *mut libc::c_void, new_size) as *mut u8 | ||
// SAFETY: `libc::realloc` is safe if `ptr` is allocated by this | ||
// allocator or NULL | ||
// - If `new_size` is 0 and `ptr` is not NULL, it will act as `libc::free` | ||
// - If `new_size` is not 0 and `ptr` is NULL, it will act as `libc::malloc` | ||
// - Else, it will resize the block accordingly | ||
unsafe { libc::realloc(ptr as *mut libc::c_void, new_size) as *mut u8 } | ||
} else { | ||
realloc_fallback(self, ptr, layout, new_size) | ||
// SAFETY: The safety contract for `realloc_fallback` must be upheld by the caller | ||
unsafe { realloc_fallback(self, ptr, layout, new_size) } | ||
} | ||
} | ||
} |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
#![deny(unsafe_op_in_unsafe_fn)] | ||
|
||
pub mod ffi; | ||
pub mod fs; | ||
pub mod io; | ||
|
This file contains hidden or 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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
#![deny(unsafe_op_in_unsafe_fn)] | ||
#![allow(dead_code)] | ||
|
||
use super::err2io; | ||
|
This file contains hidden or 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 hidden or 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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
#![deny(unsafe_op_in_unsafe_fn)] | ||
|
||
use crate::marker::PhantomData; | ||
use crate::slice; | ||
|
||
|
This file contains hidden or 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 hidden or 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 hidden or 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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
#![deny(unsafe_op_in_unsafe_fn)] | ||
|
||
use crate::io::{self, IoSlice, IoSliceMut}; | ||
use crate::sys::Void; | ||
|
||
|
This file contains hidden or 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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
#![deny(unsafe_op_in_unsafe_fn)] | ||
|
||
use crate::ffi::OsStr; | ||
use crate::fmt; | ||
use crate::io; | ||
|
This file contains hidden or 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 hidden or 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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
#![deny(unsafe_op_in_unsafe_fn)] | ||
|
||
use crate::ffi::CStr; | ||
use crate::io; | ||
use crate::mem; | ||
|
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.