mirror of https://github.com/aya-rs/aya
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
190 lines
5.6 KiB
Rust
190 lines
5.6 KiB
Rust
3 years ago
|
use proc_macro2::TokenStream;
|
||
|
use quote::quote;
|
||
|
use syn::{
|
||
|
parse::{Parse, ParseStream},
|
||
|
punctuated::Punctuated,
|
||
|
Error, Expr, LitStr, Result, Token,
|
||
|
};
|
||
|
|
||
|
pub(crate) struct LogArgs {
|
||
|
pub(crate) ctx: Expr,
|
||
|
pub(crate) target: Option<Expr>,
|
||
|
pub(crate) level: Option<Expr>,
|
||
|
pub(crate) format_string: LitStr,
|
||
|
pub(crate) formatting_args: Option<Punctuated<Expr, Token![,]>>,
|
||
|
}
|
||
|
|
||
|
mod kw {
|
||
|
syn::custom_keyword!(target);
|
||
|
}
|
||
|
|
||
|
impl Parse for LogArgs {
|
||
|
fn parse(input: ParseStream) -> Result<Self> {
|
||
|
let ctx: Expr = input.parse()?;
|
||
|
input.parse::<Token![,]>()?;
|
||
|
|
||
|
// Parse `target: &str`, which is an optional argument.
|
||
|
let target: Option<Expr> = if input.peek(kw::target) {
|
||
|
input.parse::<kw::target>()?;
|
||
|
input.parse::<Token![:]>()?;
|
||
|
let t: Expr = input.parse()?;
|
||
|
input.parse::<Token![,]>()?;
|
||
|
Some(t)
|
||
|
} else {
|
||
|
None
|
||
|
};
|
||
|
|
||
|
// Check whether the next token is `format_string: &str` (which i
|
||
|
// always provided) or `level` (which is an optional expression).
|
||
|
// If `level` is provided, it comes before `format_string`.
|
||
|
let (level, format_string): (Option<Expr>, LitStr) = if input.peek(LitStr) {
|
||
|
// Only `format_string` is provided.
|
||
|
(None, input.parse()?)
|
||
|
} else {
|
||
|
// Both `level` and `format_string` are provided.
|
||
|
let level: Expr = input.parse()?;
|
||
|
input.parse::<Token![,]>()?;
|
||
|
let format_string: LitStr = input.parse()?;
|
||
|
(Some(level), format_string)
|
||
|
};
|
||
|
|
||
|
// Parse variadic arguments.
|
||
|
let formatting_args: Option<Punctuated<Expr, Token![,]>> = if input.is_empty() {
|
||
|
None
|
||
|
} else {
|
||
|
input.parse::<Token![,]>()?;
|
||
|
Some(Punctuated::parse_terminated(input)?)
|
||
|
};
|
||
|
|
||
|
Ok(Self {
|
||
|
ctx,
|
||
|
target,
|
||
|
level,
|
||
|
format_string,
|
||
|
formatting_args,
|
||
|
})
|
||
|
}
|
||
|
}
|
||
|
|
||
|
pub(crate) fn log(args: LogArgs, level: Option<TokenStream>) -> Result<TokenStream> {
|
||
|
let ctx = args.ctx;
|
||
|
let target = match args.target {
|
||
|
Some(t) => quote! { #t },
|
||
|
None => quote! { module_path!() },
|
||
|
};
|
||
|
let lvl: TokenStream = if let Some(l) = level {
|
||
|
l
|
||
|
} else if let Some(l) = args.level {
|
||
|
quote! { #l }
|
||
|
} else {
|
||
|
return Err(Error::new(
|
||
|
args.format_string.span(),
|
||
|
"missing `level` argument: try passing an `aya_log_ebpf::Level` value",
|
||
|
));
|
||
|
};
|
||
|
let format_string = args.format_string;
|
||
|
|
||
|
let (num_args, write_args) = match args.formatting_args {
|
||
|
Some(formatting_args) => {
|
||
|
let formatting_exprs = formatting_args.iter();
|
||
|
let num_args = formatting_exprs.len();
|
||
|
|
||
|
let write_args = quote! {{
|
||
|
use ::aya_log_ebpf::WriteToBuf;
|
||
|
Ok::<_, ()>(record_len) #( .and_then(|record_len| {
|
||
2 years ago
|
if record_len >= buf.buf.len() {
|
||
|
return Err(());
|
||
|
}
|
||
3 years ago
|
{ #formatting_exprs }.write(&mut buf.buf[record_len..]).map(|len| record_len + len)
|
||
|
}) )*
|
||
|
}};
|
||
|
|
||
|
(num_args, write_args)
|
||
|
}
|
||
|
None => (0, quote! {}),
|
||
|
};
|
||
|
|
||
|
// The way of writing to the perf buffer is different depending on whether
|
||
|
// we have variadic arguments or not.
|
||
|
let write_to_perf_buffer = if num_args > 0 {
|
||
|
// Writing with variadic arguments.
|
||
|
quote! {
|
||
|
if let Ok(record_len) = #write_args {
|
||
|
unsafe { ::aya_log_ebpf::AYA_LOGS.output(
|
||
|
#ctx,
|
||
|
&buf.buf[..record_len], 0
|
||
|
)}
|
||
|
}
|
||
|
}
|
||
|
} else {
|
||
|
// Writing with no variadic arguments.
|
||
|
quote! {
|
||
|
unsafe { ::aya_log_ebpf::AYA_LOGS.output(
|
||
|
#ctx,
|
||
|
&buf.buf[..record_len], 0
|
||
|
)}
|
||
|
}
|
||
|
};
|
||
|
|
||
|
Ok(quote! {
|
||
|
{
|
||
2 years ago
|
if let Some(buf_ptr) = unsafe { ::aya_log_ebpf::AYA_LOG_BUF.get_ptr_mut(0) } {
|
||
|
let buf = unsafe { &mut *buf_ptr };
|
||
3 years ago
|
if let Ok(header_len) = ::aya_log_ebpf::write_record_header(
|
||
|
&mut buf.buf,
|
||
|
#target,
|
||
|
#lvl,
|
||
|
module_path!(),
|
||
|
file!(),
|
||
|
line!(),
|
||
|
#num_args,
|
||
|
) {
|
||
|
if let Ok(message_len) = ::aya_log_ebpf::write_record_message(
|
||
|
&mut buf.buf[header_len..],
|
||
|
#format_string,
|
||
|
) {
|
||
|
let record_len = header_len + message_len;
|
||
|
|
||
|
#write_to_perf_buffer
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
|
||
|
pub(crate) fn error(args: LogArgs) -> Result<TokenStream> {
|
||
|
log(
|
||
|
args,
|
||
|
Some(quote! { ::aya_log_ebpf::macro_support::Level::Error }),
|
||
|
)
|
||
|
}
|
||
|
|
||
|
pub(crate) fn warn(args: LogArgs) -> Result<TokenStream> {
|
||
|
log(
|
||
|
args,
|
||
|
Some(quote! { ::aya_log_ebpf::macro_support::Level::Warn }),
|
||
|
)
|
||
|
}
|
||
|
|
||
|
pub(crate) fn info(args: LogArgs) -> Result<TokenStream> {
|
||
|
log(
|
||
|
args,
|
||
|
Some(quote! { ::aya_log_ebpf::macro_support::Level::Info }),
|
||
|
)
|
||
|
}
|
||
|
|
||
|
pub(crate) fn debug(args: LogArgs) -> Result<TokenStream> {
|
||
|
log(
|
||
|
args,
|
||
|
Some(quote! { ::aya_log_ebpf::macro_support::Level::Debug }),
|
||
|
)
|
||
|
}
|
||
|
|
||
|
pub(crate) fn trace(args: LogArgs) -> Result<TokenStream> {
|
||
|
log(
|
||
|
args,
|
||
|
Some(quote! { ::aya_log_ebpf::macro_support::Level::Trace }),
|
||
|
)
|
||
|
}
|