aboutsummaryrefslogtreecommitdiff
path: root/cortex-m-rt/macros/src/lib.rs
diff options
context:
space:
mode:
authorGravatar bors[bot] <26634292+bors[bot]@users.noreply.github.com> 2020-01-16 17:42:50 +0000
committerGravatar GitHub <noreply@github.com> 2020-01-16 17:42:50 +0000
commit22145aeb5dd1c25e4df2f3320e7ae7e47a9a0c6c (patch)
treea67d3bd9ff39fe9f3c232d843e060f0be1f9ca3d /cortex-m-rt/macros/src/lib.rs
parentf55c06da96ae05680979e5ad9ebda9e1d16b8908 (diff)
parent3dd900d8ad7c66fc2044e12e3d55274a5afb43a1 (diff)
downloadcortex-m-22145aeb5dd1c25e4df2f3320e7ae7e47a9a0c6c.tar.gz
cortex-m-22145aeb5dd1c25e4df2f3320e7ae7e47a9a0c6c.tar.zst
cortex-m-22145aeb5dd1c25e4df2f3320e7ae7e47a9a0c6c.zip
Merge #228
228: Added so attributes and cfgs are applied on the trampolines as well r=jonas-schievink a=korken89 I made a first go at #223, but maybe this implementation takes things we do not want to propagate. If you come up with something that should not propagate, please comment here. Closes #223 Closes https://github.com/rust-embedded/cortex-m-rt/issues/213 Co-authored-by: Emil Fresk <emil.fresk@gmail.com>
Diffstat (limited to 'cortex-m-rt/macros/src/lib.rs')
-rw-r--r--cortex-m-rt/macros/src/lib.rs83
1 files changed, 83 insertions, 0 deletions
diff --git a/cortex-m-rt/macros/src/lib.rs b/cortex-m-rt/macros/src/lib.rs
index 763b721..d919faa 100644
--- a/cortex-m-rt/macros/src/lib.rs
+++ b/cortex-m-rt/macros/src/lib.rs
@@ -150,7 +150,15 @@ pub fn entry(args: TokenStream, input: TokenStream) -> TokenStream {
})
.collect::<Vec<_>>();
+ if let Err(error) = check_attr_whitelist(&f.attrs, WhiteListCaller::Entry) {
+ return error;
+ }
+
+ let (ref cfgs, ref attrs) = extract_cfgs(f.attrs.clone());
+
quote!(
+ #(#cfgs)*
+ #(#attrs)*
#[doc(hidden)]
#[export_name = "main"]
pub unsafe extern "C" fn #tramp_ident() {
@@ -286,6 +294,10 @@ pub fn exception(args: TokenStream, input: TokenStream) -> TokenStream {
.into();
}
+ if let Err(error) = check_attr_whitelist(&f.attrs, WhiteListCaller::Exception) {
+ return error;
+ }
+
let fspan = f.span();
let ident = f.sig.ident.clone();
@@ -343,7 +355,11 @@ pub fn exception(args: TokenStream, input: TokenStream) -> TokenStream {
let tramp_ident = Ident::new(&format!("{}_trampoline", f.sig.ident), Span::call_site());
let ident = &f.sig.ident;
+ let (ref cfgs, ref attrs) = extract_cfgs(f.attrs.clone());
+
quote!(
+ #(#cfgs)*
+ #(#attrs)*
#[doc(hidden)]
#[export_name = #ident_s]
pub unsafe extern "C" fn #tramp_ident() {
@@ -396,7 +412,11 @@ pub fn exception(args: TokenStream, input: TokenStream) -> TokenStream {
let tramp_ident = Ident::new(&format!("{}_trampoline", f.sig.ident), Span::call_site());
let ident = &f.sig.ident;
+ let (ref cfgs, ref attrs) = extract_cfgs(f.attrs.clone());
+
quote!(
+ #(#cfgs)*
+ #(#attrs)*
#[doc(hidden)]
#[export_name = "HardFault"]
#[link_section = ".HardFault.user"]
@@ -481,7 +501,11 @@ pub fn exception(args: TokenStream, input: TokenStream) -> TokenStream {
})
.collect::<Vec<_>>();
+ let (ref cfgs, ref attrs) = extract_cfgs(f.attrs.clone());
+
quote!(
+ #(#cfgs)*
+ #(#attrs)*
#[doc(hidden)]
#[export_name = #ident_s]
pub unsafe extern "C" fn #tramp_ident() {
@@ -650,7 +674,15 @@ pub fn interrupt(args: TokenStream, input: TokenStream) -> TokenStream {
})
.collect::<Vec<_>>();
+ if let Err(error) = check_attr_whitelist(&f.attrs, WhiteListCaller::Interrupt) {
+ return error;
+ }
+
+ let (ref cfgs, ref attrs) = extract_cfgs(f.attrs.clone());
+
quote!(
+ #(#cfgs)*
+ #(#attrs)*
#[doc(hidden)]
#[export_name = #ident_s]
pub unsafe extern "C" fn #tramp_ident() {
@@ -724,6 +756,10 @@ pub fn pre_init(args: TokenStream, input: TokenStream) -> TokenStream {
.into();
}
+ if let Err(error) = check_attr_whitelist(&f.attrs, WhiteListCaller::PreInit) {
+ return error;
+ }
+
// XXX should we blacklist other attributes?
let attrs = f.attrs;
let ident = f.sig.ident;
@@ -790,6 +826,53 @@ fn extract_cfgs(attrs: Vec<Attribute>) -> (Vec<Attribute>, Vec<Attribute>) {
(cfgs, not_cfgs)
}
+enum WhiteListCaller {
+ Entry,
+ Exception,
+ Interrupt,
+ PreInit,
+}
+
+fn check_attr_whitelist(attrs: &[Attribute], caller: WhiteListCaller) -> Result<(), TokenStream> {
+ let whitelist = &[
+ "doc",
+ "link_section",
+ "cfg",
+ "allow",
+ "warn",
+ "deny",
+ "forbid",
+ "cold",
+ ];
+
+ 'o: for attr in attrs {
+ for val in whitelist {
+ if eq(&attr, &val) {
+ continue 'o;
+ }
+ }
+
+ let err_str = match caller {
+ WhiteListCaller::Entry => "this attribute is not allowed on a cortex-m-rt entry point",
+ WhiteListCaller::Exception => {
+ "this attribute is not allowed on an exception handler controlled by cortex-m-rt"
+ }
+ WhiteListCaller::Interrupt => {
+ "this attribute is not allowed on an interrupt handler controlled by cortex-m-rt"
+ }
+ WhiteListCaller::PreInit => {
+ "this attribute is not allowed on a pre-init controlled by cortex-m-rt"
+ }
+ };
+
+ return Err(parse::Error::new(attr.span(), &err_str)
+ .to_compile_error()
+ .into());
+ }
+
+ Ok(())
+}
+
/// Returns `true` if `attr.path` matches `name`
fn eq(attr: &Attribute, name: &str) -> bool {
attr.style == AttrStyle::Outer && attr.path.is_ident(name)