-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a special case for CStr/CString in the improper_ctypes lint
Instead of saying to "consider adding a `#[repr(C)]` or `#[repr(transparent)]` attribute to this struct", we now tell users to "consider passing a `std::ffi::c_char` pointer instead, and use `CStr::as_ptr()` or `CString::into_raw()`" when the type involved is a `CStr` or a `CString`.
- Loading branch information
1 parent
1828461
commit 7f67ee3
Showing
6 changed files
with
109 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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 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 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 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 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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#![crate_type = "lib"] | ||
#![deny(improper_ctypes, improper_ctypes_definitions)] | ||
|
||
use std::ffi::{CStr, CString}; | ||
|
||
extern "C" { | ||
fn take_cstr(s: CStr); | ||
//~^ ERROR `extern` block uses type `CStr`, which is not FFI-safe | ||
//~| HELP consider passing a `std::ffi::c_char` pointer instead, and use `CStr::as_ptr()` or `CString::into_raw()` | ||
fn take_cstr_ref(s: &CStr); | ||
//~^ ERROR `extern` block uses type `CStr`, which is not FFI-safe | ||
//~| HELP consider passing a `std::ffi::c_char` pointer instead, and use `CStr::as_ptr()` or `CString::into_raw()` | ||
fn take_cstring(s: CString); | ||
//~^ ERROR `extern` block uses type `CString`, which is not FFI-safe | ||
//~| HELP consider passing a `std::ffi::c_char` pointer instead, and use `CStr::as_ptr()` or `CString::into_raw()` | ||
fn take_cstring_ref(s: &CString); | ||
//~^ ERROR `extern` block uses type `CString`, which is not FFI-safe | ||
//~| HELP consider passing a `std::ffi::c_char` pointer instead, and use `CStr::as_ptr()` or `CString::into_raw()` | ||
} | ||
|
||
extern "C" fn rust_take_cstr_ref(s: &CStr) {} | ||
//~^ ERROR `extern` fn uses type `CStr`, which is not FFI-safe | ||
//~| HELP consider passing a `std::ffi::c_char` pointer instead, and use `CStr::as_ptr()` or `CString::into_raw()` | ||
extern "C" fn rust_take_cstring(s: CString) {} | ||
//~^ ERROR `extern` fn uses type `CString`, which is not FFI-safe | ||
//~| HELP consider passing a `std::ffi::c_char` pointer instead, and use `CStr::as_ptr()` or `CString::into_raw()` |
This file contains 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 |
---|---|---|
@@ -0,0 +1,66 @@ | ||
error: `extern` block uses type `CStr`, which is not FFI-safe | ||
--> $DIR/lint-ctypes-cstr.rs:7:21 | ||
| | ||
LL | fn take_cstr(s: CStr); | ||
| ^^^^ not FFI-safe | ||
| | ||
= help: consider passing a `std::ffi::c_char` pointer instead, and use `CStr::as_ptr()` or `CString::into_raw()` | ||
= note: `CStr`/`CString` do not have a guaranteed layout | ||
note: the lint level is defined here | ||
--> $DIR/lint-ctypes-cstr.rs:2:9 | ||
| | ||
LL | #![deny(improper_ctypes, improper_ctypes_definitions)] | ||
| ^^^^^^^^^^^^^^^ | ||
|
||
error: `extern` block uses type `CStr`, which is not FFI-safe | ||
--> $DIR/lint-ctypes-cstr.rs:10:25 | ||
| | ||
LL | fn take_cstr_ref(s: &CStr); | ||
| ^^^^^ not FFI-safe | ||
| | ||
= help: consider passing a `std::ffi::c_char` pointer instead, and use `CStr::as_ptr()` or `CString::into_raw()` | ||
= note: `CStr`/`CString` do not have a guaranteed layout | ||
|
||
error: `extern` block uses type `CString`, which is not FFI-safe | ||
--> $DIR/lint-ctypes-cstr.rs:13:24 | ||
| | ||
LL | fn take_cstring(s: CString); | ||
| ^^^^^^^ not FFI-safe | ||
| | ||
= help: consider passing a `std::ffi::c_char` pointer instead, and use `CStr::as_ptr()` or `CString::into_raw()` | ||
= note: `CStr`/`CString` do not have a guaranteed layout | ||
|
||
error: `extern` block uses type `CString`, which is not FFI-safe | ||
--> $DIR/lint-ctypes-cstr.rs:16:28 | ||
| | ||
LL | fn take_cstring_ref(s: &CString); | ||
| ^^^^^^^^ not FFI-safe | ||
| | ||
= help: consider passing a `std::ffi::c_char` pointer instead, and use `CStr::as_ptr()` or `CString::into_raw()` | ||
= note: `CStr`/`CString` do not have a guaranteed layout | ||
|
||
error: `extern` fn uses type `CStr`, which is not FFI-safe | ||
--> $DIR/lint-ctypes-cstr.rs:21:37 | ||
| | ||
LL | extern "C" fn rust_take_cstr_ref(s: &CStr) {} | ||
| ^^^^^ not FFI-safe | ||
| | ||
= help: consider passing a `std::ffi::c_char` pointer instead, and use `CStr::as_ptr()` or `CString::into_raw()` | ||
= note: `CStr`/`CString` do not have a guaranteed layout | ||
note: the lint level is defined here | ||
--> $DIR/lint-ctypes-cstr.rs:2:26 | ||
| | ||
LL | #![deny(improper_ctypes, improper_ctypes_definitions)] | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
error: `extern` fn uses type `CString`, which is not FFI-safe | ||
--> $DIR/lint-ctypes-cstr.rs:24:36 | ||
| | ||
LL | extern "C" fn rust_take_cstring(s: CString) {} | ||
| ^^^^^^^ not FFI-safe | ||
| | ||
= help: consider passing a `std::ffi::c_char` pointer instead, and use `CStr::as_ptr()` or `CString::into_raw()` | ||
= note: `CStr`/`CString` do not have a guaranteed layout | ||
|
||
error: aborting due to 6 previous errors | ||
|