Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build sudo-rs outside of the docker container #883

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ jobs:
key: docker-buildx-rs-${{ github.sha }}
restore-keys: docker-buildx-rs-

- name: Install dependencies
run: |
sudo apt update
sudo apt install libpam0g-dev

- name: Rust Cache
uses: Swatinem/rust-cache@v2
with:
Expand Down Expand Up @@ -97,6 +102,11 @@ jobs:
key: docker-buildx-rs-${{ github.sha }}
restore-keys: docker-buildx-rs-

- name: Install dependencies
run: |
sudo apt update
sudo apt install libpam0g-dev

- name: Rust Cache
uses: Swatinem/rust-cache@v2
with:
Expand Down
25 changes: 24 additions & 1 deletion test-framework/sudo-test/src/docker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use core::str;
use std::{
env,
fs::{self, File},
io::{Seek, SeekFrom, Write},
io::{Seek, SeekFrom, Write, ErrorKind},
path::{Path, PathBuf},
process::{self, Command as StdCommand, Stdio},
};
Expand Down Expand Up @@ -146,6 +146,29 @@ pub fn build_base_image() -> Result<()> {

match SudoUnderTest::from_env()? {
SudoUnderTest::Ours => {
// Build sudo-rs
let mut cargo_cmd = StdCommand::new("cargo");
cargo_cmd.args(["build", "--locked", "--features=dev", "--bins"]);
cargo_cmd.current_dir(&repo_root);
if env::var_os("SUDO_TEST_VERBOSE_DOCKER_BUILD").is_none() {
cargo_cmd.stderr(Stdio::null()).stdout(Stdio::null());
}
if !cargo_cmd.status()?.success() {
return Err("`cargo build --locked --features=dev --bins` failed".into());
}

// Copy all binaries to a single place where the Dockerfile will find them
let target_debug_dir = repo_root.join("target").join("debug");
let build_dir = repo_root.join("target").join("build");
match fs::create_dir(&build_dir) {
Ok(()) => {}
Err(e) if e.kind() == ErrorKind::AlreadyExists => {}
Err(e) => return Err(e.into()),
}
for f in ["sudo", "su", "visudo"] {
fs::copy(target_debug_dir.join(f), build_dir.join(f))?;
}

// needed for dockerfile-specific dockerignore (e.g. `Dockerfile.dockerignore`) support
cmd.current_dir(repo_root);
cmd.args(["-f", "test-framework/sudo-test/src/ours.Dockerfile", "."]);
Expand Down
11 changes: 3 additions & 8 deletions test-framework/sudo-test/src/ours.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,18 +1,13 @@
FROM rust:1-slim-bookworm
FROM debian:bookworm-slim
RUN apt-get update && \
apt-get install -y --no-install-recommends clang libclang-dev libpam0g-dev procps sshpass rsyslog
# cache the crates.io index in the image for faster local testing
RUN cargo search sudo
apt-get install -y --no-install-recommends procps sshpass rsyslog
WORKDIR /usr/src/sudo
COPY . .
RUN --mount=type=cache,target=/usr/src/sudo/target cargo build --locked --features="dev" --bins && mkdir -p build && cp target/debug/sudo build/sudo && cp target/debug/su build/su && cp target/debug/visudo build/visudo
COPY target/build build
# set setuid on install
RUN install --mode 4755 build/sudo /usr/bin/sudo
RUN install --mode 4755 build/su /usr/bin/su
RUN install --mode 755 build/visudo /usr/sbin/visudo
# `apt-get install sudo` creates this directory; creating it in the image saves us the work of creating it in each compliance test
RUN mkdir -p /etc/sudoers.d
# remove build dependencies
RUN apt-get autoremove -y clang libclang-dev
# set the default working directory to somewhere world writable so sudo / su can create .profraw files there
WORKDIR /tmp
6 changes: 1 addition & 5 deletions test-framework/sudo-test/src/ours.Dockerfile.dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,4 @@
*

# but these
!Cargo.lock
!Cargo.toml
!src/**/*
!bin/**/*
!build.rs
!/target/build
Loading