Merge pull request #31 from vadorovsky/profile-release

Use release profile for eBPF programs by default
pull/32/head
Dave Tucker 3 years ago committed by GitHub
commit c41fb5ef0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -35,25 +35,24 @@ pub struct Options {
/// Set the endianness of the BPF target /// Set the endianness of the BPF target
#[structopt(default_value = "bpfel-unknown-none", long)] #[structopt(default_value = "bpfel-unknown-none", long)]
pub target: Architecture, pub target: Architecture,
/// Build the release target /// Build profile for eBPF programs
#[structopt(long)] #[structopt(default_value = "release", long)]
pub release: bool, pub profile: String,
} }
pub fn build_ebpf(opts: Options) -> Result<(), anyhow::Error> { pub fn build_ebpf(opts: Options) -> Result<(), anyhow::Error> {
let dir = PathBuf::from("{{project-name}}-ebpf"); let dir = PathBuf::from("{{project-name}}-ebpf");
let target = format!("--target={}", opts.target); let target = format!("--target={}", opts.target);
let mut args = vec![ let args = vec![
"+nightly", "+nightly",
"build", "build",
"--verbose", "--verbose",
target.as_str(), target.as_str(),
"-Z", "-Z",
"build-std=core", "build-std=core",
"--profile",
opts.profile.as_str(),
]; ];
if opts.release {
args.push("--release")
}
let status = Command::new("cargo") let status = Command::new("cargo")
.current_dir(&dir) .current_dir(&dir)
.args(&args) .args(&args)

@ -10,9 +10,9 @@ pub struct Options {
/// Set the endianness of the BPF target /// Set the endianness of the BPF target
#[structopt(default_value = "bpfel-unknown-none", long)] #[structopt(default_value = "bpfel-unknown-none", long)]
pub bpf_target: Architecture, pub bpf_target: Architecture,
/// Build and run the release target /// Build profile for userspace program
#[structopt(long)] #[structopt(default_value = "dev", long)]
pub release: bool, pub profile: String,
/// The command used to wrap your application /// The command used to wrap your application
#[structopt(short, long, default_value = "sudo -E")] #[structopt(short, long, default_value = "sudo -E")]
pub runner: String, pub runner: String,
@ -23,10 +23,7 @@ pub struct Options {
/// Build the project /// Build the project
fn build(opts: &Options) -> Result<(), anyhow::Error> { fn build(opts: &Options) -> Result<(), anyhow::Error> {
let mut args = vec!["build"]; let args = vec!["build", "--profile", opts.profile.as_str()];
if opts.release {
args.push("--release")
}
let status = Command::new("cargo") let status = Command::new("cargo")
.args(&args) .args(&args)
.status() .status()
@ -40,14 +37,17 @@ pub fn run(opts: Options) -> Result<(), anyhow::Error> {
// build our ebpf program followed by our application // build our ebpf program followed by our application
build_ebpf(BuildOptions { build_ebpf(BuildOptions {
target: opts.bpf_target, target: opts.bpf_target,
release: opts.release, profile: opts.profile.clone(),
}) })
.context("Error while building eBPF program")?; .context("Error while building eBPF program")?;
build(&opts).context("Error while building userspace application")?; build(&opts).context("Error while building userspace application")?;
// profile we are building (release or debug) let target_dir = match opts.profile.as_str() {
let profile = if opts.release { "release" } else { "debug" }; "dev" | "test" => "debug",
let bin_path = format!("target/{}/{{project-name}}", profile); "bench" | "release" => "release",
_ => opts.profile.as_str(),
};
let bin_path = format!("target/{}/{{project-name}}", target_dir);
// arguments to pass to the application // arguments to pass to the application
let mut run_args: Vec<_> = opts.run_args.iter().map(String::as_str).collect(); let mut run_args: Vec<_> = opts.run_args.iter().map(String::as_str).collect();

@ -11,12 +11,6 @@ aya-bpf = { git = "http://github.com/aya-rs/aya", branch = "main" }
name = "{{ project-name }}" name = "{{ project-name }}"
path = "src/main.rs" path = "src/main.rs"
[profile.dev]
panic = "abort"
debug = 1
opt-level = 2
overflow-checks = false
[profile.release] [profile.release]
panic = "abort" panic = "abort"

@ -67,11 +67,6 @@ async fn main() -> Result<(), anyhow::Error> {
// runtime. This approach is recommended for most real-world use cases. If you would // runtime. This approach is recommended for most real-world use cases. If you would
// like to specify the eBPF program at runtime rather than at compile-time, you can // like to specify the eBPF program at runtime rather than at compile-time, you can
// reach for `Bpf::load_file` instead. // reach for `Bpf::load_file` instead.
#[cfg(debug_assertions)]
let mut bpf = Bpf::load(include_bytes_aligned!(
"../../target/bpfel-unknown-none/debug/{{project-name}}"
))?;
#[cfg(not(debug_assertions))]
let mut bpf = Bpf::load(include_bytes_aligned!( let mut bpf = Bpf::load(include_bytes_aligned!(
"../../target/bpfel-unknown-none/release/{{project-name}}" "../../target/bpfel-unknown-none/release/{{project-name}}"
))?; ))?;

Loading…
Cancel
Save