-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This crate mirrors the `bindings` crate, but will contain only UAPI bindings. Unlike the bindings crate, drivers may directly use this crate if they have to interface with userspace. Initially, just bind the generic ioctl stuff. In the future, we would also like to add additional checks to ensure that all types exposed by this crate satisfy UAPI-safety guarantees (that is, they are safely castable to/from a "bag of bits"). [ Miguel: added support for the `rustdoc` and `rusttest` targets, since otherwise they fail, and we want to keep them working. ] Reviewed-by: Martin Rodriguez Reboredo <yakoyoku@gmail.com> Signed-off-by: Asahi Lina <lina@asahilina.net> Link: https://lore.kernel.org/r/20230329-rust-uapi-v2-1-bca5fb4d4a12@asahilina.net Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
- Loading branch information
Asahi Lina
authored and
Miguel Ojeda
committed
Apr 21, 2023
1 parent
19096bc
commit 4e17466
Showing
5 changed files
with
61 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
|
||
bindings_generated.rs | ||
bindings_helpers_generated.rs | ||
uapi_generated.rs | ||
exports_*_generated.h | ||
doc/ | ||
test/ |
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,27 @@ | ||
// SPDX-License-Identifier: GPL-2.0 | ||
|
||
//! UAPI Bindings. | ||
//! | ||
//! Contains the bindings generated by `bindgen` for UAPI interfaces. | ||
//! | ||
//! This crate may be used directly by drivers that need to interact with | ||
//! userspace APIs. | ||
|
||
#![no_std] | ||
#![feature(core_ffi_c)] | ||
// See <https://github.com/rust-lang/rust-bindgen/issues/1651>. | ||
#![cfg_attr(test, allow(deref_nullptr))] | ||
#![cfg_attr(test, allow(unaligned_references))] | ||
#![cfg_attr(test, allow(unsafe_op_in_unsafe_fn))] | ||
#![allow( | ||
clippy::all, | ||
missing_docs, | ||
non_camel_case_types, | ||
non_upper_case_globals, | ||
non_snake_case, | ||
improper_ctypes, | ||
unreachable_pub, | ||
unsafe_op_in_unsafe_fn | ||
)] | ||
|
||
include!(concat!(env!("OBJTREE"), "/rust/uapi/uapi_generated.rs")); |
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,9 @@ | ||
/* SPDX-License-Identifier: GPL-2.0 */ | ||
/* | ||
* Header that contains the headers for which Rust UAPI bindings | ||
* will be automatically generated by `bindgen`. | ||
* | ||
* Sorted alphabetically. | ||
*/ | ||
|
||
#include <uapi/asm-generic/ioctl.h> |