Skip to content

Conversation

kkaarreell
Copy link
Collaborator

@kkaarreell kkaarreell commented Oct 21, 2025

Summary by Sourcery

Preserve SSH keys and DNS resolution by copying the host’s /root/.ssh directory and /etc/resolv.conf into the test image context and including them in the container build

Enhancements:

  • Adapt test script to copy /root/.ssh and /etc/resolv.conf into the working directory for image inclusion
  • Extend Containerfile to copy the SSH keys directory and resolv.conf into the container image

@kkaarreell kkaarreell self-assigned this Oct 21, 2025
Copy link

sourcery-ai bot commented Oct 21, 2025

Reviewer's guide (collapsed on small PRs)

Reviewer's Guide

Updates the test harness and container build to preserve SSH keys and DNS resolver configuration by copying them into the build context and adding matching COPY directives in the Containerfile.

Class diagram for updated Containerfile build steps

classDiagram
    class Containerfile {
        +COPY 10-ima_kargs.toml /usr/lib/bootc/kargs.d/10-ima_kargs.toml
        +COPY ima-policy /etc/ima/ima-policy
        +COPY yum.repos.d/* /etc/yum.repos.d/
        +COPY .ssh /var/roothome/.ssh
        +COPY resolv.conf /etc/resolv.conf
        +RUN dnf -y install KEYLIME_BOOTC_INSTALL_PACKAGES
        +RUN sed -i '/tss/ d' /usr/lib/group
    }
    class BuildContext {
        +.ssh
        +resolv.conf
        +yum.repos.d/*
        +ima-policy
        +10-ima_kargs.toml
    }
    BuildContext <|-- Containerfile
Loading

File-Level Changes

Change Details Files
Backup host SSH directory and DNS config into build context
  • Add command to copy /root/.ssh to current directory
  • Add command to copy /etc/resolv.conf to current directory
setup/bootc_configure_kernel_ima_module/test.sh
Include SSH keys and resolv.conf in container image
  • Add COPY .ssh to /var/roothome/.ssh
  • Add COPY resolv.conf to /etc/resolv.conf
setup/bootc_configure_kernel_ima_module/Containerfile

Tips and commands

Interacting with Sourcery

  • Trigger a new review: Comment @sourcery-ai review on the pull request.
  • Continue discussions: Reply directly to Sourcery's review comments.
  • Generate a GitHub issue from a review comment: Ask Sourcery to create an
    issue from a review comment by replying to it. You can also reply to a
    review comment with @sourcery-ai issue to create an issue from it.
  • Generate a pull request title: Write @sourcery-ai anywhere in the pull
    request title to generate a title at any time. You can also comment
    @sourcery-ai title on the pull request to (re-)generate the title at any time.
  • Generate a pull request summary: Write @sourcery-ai summary anywhere in
    the pull request body to generate a PR summary at any time exactly where you
    want it. You can also comment @sourcery-ai summary on the pull request to
    (re-)generate the summary at any time.
  • Generate reviewer's guide: Comment @sourcery-ai guide on the pull
    request to (re-)generate the reviewer's guide at any time.
  • Resolve all Sourcery comments: Comment @sourcery-ai resolve on the
    pull request to resolve all Sourcery comments. Useful if you've already
    addressed all the comments and don't want to see them anymore.
  • Dismiss all Sourcery reviews: Comment @sourcery-ai dismiss on the pull
    request to dismiss all existing Sourcery reviews. Especially useful if you
    want to start fresh with a new review - don't forget to comment
    @sourcery-ai review to trigger a new review!

Customizing Your Experience

Access your dashboard to:

  • Enable or disable review features such as the Sourcery-generated pull request
    summary, the reviewer's guide, and others.
  • Change the review language.
  • Add, remove or edit custom review instructions.
  • Adjust other review settings.

Getting Help

Copy link

@sourcery-ai sourcery-ai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey there - I've reviewed your changes and they look great!

Prompt for AI Agents
Please address the comments from this code review:

## Individual Comments

### Comment 1
<location> `setup/bootc_configure_kernel_ima_module/Containerfile:8-10` </location>
<code_context>
 COPY 10-ima_kargs.toml /usr/lib/bootc/kargs.d/10-ima_kargs.toml
 COPY ima-policy /etc/ima/ima-policy
 COPY yum.repos.d/* /etc/yum.repos.d/
+COPY .ssh /var/roothome/.ssh
+COPY resolv.conf /etc/resolv.conf
 ARG KEYLIME_BOOTC_INSTALL_PACKAGES="rsync beakerlib selinux-policy-devel swtpm swtpm-tools nmap keylime expect"
</code_context>

<issue_to_address>
**🚨 suggestion (security):** Consider restricting permissions on the copied .ssh directory for security.

Set directory permissions to 700 and private key files to 600 after copying to prevent unauthorized access to SSH keys.

```suggestion
COPY .ssh /var/roothome/.ssh
RUN chmod 700 /var/roothome/.ssh && \
    find /var/roothome/.ssh -type f \( -name "id_*" -o -name "*_key" \) -exec chmod 600 {} +
COPY resolv.conf /etc/resolv.conf
ARG KEYLIME_BOOTC_INSTALL_PACKAGES="rsync beakerlib selinux-policy-devel swtpm swtpm-tools nmap keylime expect"
```
</issue_to_address>

### Comment 2
<location> `setup/bootc_configure_kernel_ima_module/Containerfile:9` </location>
<code_context>
 COPY ima-policy /etc/ima/ima-policy
 COPY yum.repos.d/* /etc/yum.repos.d/
+COPY .ssh /var/roothome/.ssh
+COPY resolv.conf /etc/resolv.conf
 ARG KEYLIME_BOOTC_INSTALL_PACKAGES="rsync beakerlib selinux-policy-devel swtpm swtpm-tools nmap keylime expect"
 RUN dnf -y install ${KEYLIME_BOOTC_INSTALL_PACKAGES}
</code_context>

<issue_to_address>
**question (bug_risk):** Overwriting /etc/resolv.conf may interfere with container DNS resolution.

This may disrupt DNS configuration set by the container runtime. Only copy resolv.conf if required, and verify its suitability for the container.
</issue_to_address>

Sourcery is free for open source - if you like our reviews please consider sharing them ✨
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.

Comment on lines +8 to 10
COPY .ssh /var/roothome/.ssh
COPY resolv.conf /etc/resolv.conf
ARG KEYLIME_BOOTC_INSTALL_PACKAGES="rsync beakerlib selinux-policy-devel swtpm swtpm-tools nmap keylime expect"
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚨 suggestion (security): Consider restricting permissions on the copied .ssh directory for security.

Set directory permissions to 700 and private key files to 600 after copying to prevent unauthorized access to SSH keys.

Suggested change
COPY .ssh /var/roothome/.ssh
COPY resolv.conf /etc/resolv.conf
ARG KEYLIME_BOOTC_INSTALL_PACKAGES="rsync beakerlib selinux-policy-devel swtpm swtpm-tools nmap keylime expect"
COPY .ssh /var/roothome/.ssh
RUN chmod 700 /var/roothome/.ssh && \
find /var/roothome/.ssh -type f \( -name "id_*" -o -name "*_key" \) -exec chmod 600 {} +
COPY resolv.conf /etc/resolv.conf
ARG KEYLIME_BOOTC_INSTALL_PACKAGES="rsync beakerlib selinux-policy-devel swtpm swtpm-tools nmap keylime expect"

COPY ima-policy /etc/ima/ima-policy
COPY yum.repos.d/* /etc/yum.repos.d/
COPY .ssh /var/roothome/.ssh
COPY resolv.conf /etc/resolv.conf
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

question (bug_risk): Overwriting /etc/resolv.conf may interfere with container DNS resolution.

This may disrupt DNS configuration set by the container runtime. Only copy resolv.conf if required, and verify its suitability for the container.

@kkaarreell kkaarreell merged commit aec482d into rhel-10-main Oct 21, 2025
4 of 5 checks passed
@kkaarreell kkaarreell deleted the ks_preserve_sshkey_10m branch October 21, 2025 10:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant