-
Notifications
You must be signed in to change notification settings - Fork 1k
Fixes for AF-ALG code paths and add CI test #11162
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
Open
JacobBarthelmeh
wants to merge
5
commits into
wolfSSL:master
Choose a base branch
from
JacobBarthelmeh:afalg
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
500c708
Fix for reuse of AES-GCM struct with encrypt and decrypt f-7442
JacobBarthelmeh ae692e7
add documentation for f-8238 report
JacobBarthelmeh f4de1c0
add github actions CI test for AF-ALG
JacobBarthelmeh b18382b
AF-ALG redirect for AES-ECB function
JacobBarthelmeh ca940c3
add better sanity checks on input arguments
JacobBarthelmeh File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,198 @@ | ||
| name: AF_ALG Tests | ||
|
|
||
| # START OF COMMON SECTION | ||
| on: | ||
| push: | ||
| branches: [ 'release/**' ] | ||
| pull_request: | ||
| types: [opened, synchronize, reopened, ready_for_review] | ||
| branches: [ '*' ] | ||
| # Weekday-morning cron (10:00 UTC) seeds the master-scoped ccache that PR runs | ||
| # restore: re-runs --build-only (compile only, no tests) on the | ||
| # default branch. PR runs are read-only (see ccache-setup). | ||
| schedule: | ||
| - cron: '2 10 * * 1-5' | ||
|
|
||
| concurrency: | ||
| group: ${{ github.workflow }}-${{ github.ref }} | ||
| cancel-in-progress: true | ||
|
|
||
| permissions: | ||
| contents: read | ||
| # END OF COMMON SECTION | ||
|
|
||
| jobs: | ||
| # The Linux AF_ALG port (wolfcrypt/src/port/af_alg/) offloads AES and SHA-256 | ||
| # to the kernel crypto API over AF_ALG sockets. Note that Docker's default | ||
| # seccomp profile blocks socket(AF_ALG). | ||
| # | ||
| # Both configs build on one runner via .github/scripts/parallel-make-check.py | ||
| # (see os-check.yml for the full pattern): each builds in its own out-of-tree | ||
| # ("VPATH") build directory off one checkout/autogen, on a pool of one-per-CPU | ||
| # worker threads, longest first. | ||
| make_check: | ||
| name: make check | ||
| if: ${{ (github.repository_owner == 'wolfssl') && (github.event_name != 'pull_request' || github.event.pull_request.draft == false) }} | ||
| runs-on: ubuntu-24.04 | ||
| # Generous for a cold ccache; warm reruns finish in a fraction. | ||
| timeout-minutes: 20 | ||
| steps: | ||
| - uses: actions/checkout@v5 | ||
| name: Checkout wolfSSL | ||
|
|
||
| - name: Install dependencies | ||
| uses: ./.github/actions/install-apt-deps | ||
| with: | ||
| packages: autoconf automake libtool build-essential bubblewrap | ||
| ghcr-debs-tag: ubuntu-24.04-minimal | ||
|
|
||
| # Ubuntu 24.04 can restrict unprivileged user namespaces via AppArmor, | ||
| # which would stop the test scripts from re-execing under | ||
| # bwrap --unshare-net (their port-isolation mechanism). | ||
| - name: Allow unprivileged user namespaces (for bwrap) | ||
| run: sudo sysctl -w kernel.apparmor_restrict_unprivileged_userns=0 || true | ||
|
|
||
| # The socket families the port binds through (algif_hash, algif_skcipher, | ||
| # algif_aead) are loadable modules, normally autoloaded on bind() via | ||
| # their module aliases. On the -azure kernels the hosted runners boot, | ||
| # algif_aead is not in the installed linux-modules-azure package, and | ||
| # Ubuntu's generated blacklist neutralizes it with an | ||
| # "install algif_aead /bin/false" rule -- which defeats the bind-time | ||
| # autoload too, so aead/gcm(aes) is unreachable until it is loaded by | ||
| # hand. The underlying cipher is not the problem: gcm(aes) is already | ||
| # registered by aesni_intel. | ||
| # | ||
| # --ignore-install skips that /bin/false rule; linux-modules-extra | ||
| # supplies the .ko if the base package really lacks it (that package is | ||
| # often absent from the mirrors for the runner's exact kernel revision, | ||
| # so it is a best-effort second try, not a dependency). Failures stay | ||
| # non-fatal here: the probe below is what turns a missing algorithm into | ||
| # a red check, and it names the algorithm when it does. | ||
| - name: Load AF_ALG kernel modules | ||
| run: | | ||
| uname -r | ||
| missing= | ||
| for m in algif_hash algif_skcipher algif_aead gcm; do | ||
| if sudo modprobe --ignore-install "$m"; then | ||
| echo "modprobe $m: ok" | ||
| else | ||
| echo "modprobe $m: not loadable, will retry after modules-extra" | ||
| missing="$missing $m" | ||
| fi | ||
| done | ||
| if [ -n "$missing" ]; then | ||
| grep -rn 'algif_' /etc/modprobe.d /lib/modprobe.d || true | ||
| sudo apt-get update -qq || true | ||
| sudo apt-get install -y "linux-modules-extra-$(uname -r)" || true | ||
| for m in $missing; do | ||
| if sudo modprobe --ignore-install "$m"; then | ||
| echo "modprobe $m: ok after modules-extra" | ||
| else | ||
| echo "modprobe $m: still not loadable" | ||
| fi | ||
| done | ||
| fi | ||
| echo '--- registered AES/SHA-256 algorithms (name/driver) ---' | ||
| awk '/^name/ { n = $3 } /^driver/ { print n "\t" $3 }' /proc/crypto \ | ||
| | grep -E 'aes|sha256' | sort -u || true | ||
|
|
||
| # Preflight: bind every (type, name) pair wolfcrypt/src/port/af_alg/ uses, | ||
| # so a runner image without one of them fails here with the missing | ||
| # algorithm named, rather than deep inside testwolfcrypt. Deliberately a | ||
| # hard failure and not a skip: a green check that exercised no AF_ALG code | ||
| # would be worse than a red one. The set mirrors afalg_hash.c (sha256) and | ||
| # afalg_aes.c (cbc/ecb/ctr/gcm); extend it when the port grows an | ||
| # algorithm. | ||
| - name: Verify the kernel provides the algorithms the port needs | ||
| run: | | ||
| cat > "$RUNNER_TEMP/afalg-probe.c" <<'EOF' | ||
| #include <stdio.h> | ||
| #include <string.h> | ||
| #include <unistd.h> | ||
| #include <sys/socket.h> | ||
| #include <linux/if_alg.h> | ||
|
|
||
| static const char* types[] = { | ||
| "hash", "skcipher", "skcipher", "skcipher", "aead" | ||
| }; | ||
| static const char* names[] = { | ||
| "sha256", "cbc(aes)", "ecb(aes)", "ctr(aes)", "gcm(aes)" | ||
| }; | ||
|
|
||
| int main(void) | ||
| { | ||
| struct sockaddr_alg sa; | ||
| size_t i; | ||
| int fd; | ||
| int missing = 0; | ||
|
|
||
| for (i = 0; i < sizeof(types) / sizeof(types[0]); i++) { | ||
| fd = socket(AF_ALG, SOCK_SEQPACKET, 0); | ||
| if (fd < 0) { | ||
| printf("::error::socket(AF_ALG) unavailable on this kernel\n"); | ||
| return 1; | ||
| } | ||
| memset(&sa, 0, sizeof(sa)); | ||
| sa.salg_family = AF_ALG; | ||
| strncpy((char*)sa.salg_type, types[i], sizeof(sa.salg_type) - 1); | ||
| strncpy((char*)sa.salg_name, names[i], sizeof(sa.salg_name) - 1); | ||
| if (bind(fd, (struct sockaddr*)&sa, sizeof(sa)) < 0) { | ||
| printf("::error::kernel is missing %s/%s\n", types[i], names[i]); | ||
| missing = 1; | ||
| } | ||
| else { | ||
| printf("ok: %s/%s\n", types[i], names[i]); | ||
| } | ||
| close(fd); | ||
| } | ||
| return missing; | ||
| } | ||
| EOF | ||
| gcc -Wall -Werror -o "$RUNNER_TEMP/afalg-probe" "$RUNNER_TEMP/afalg-probe.c" | ||
| "$RUNNER_TEMP/afalg-probe" | ||
|
|
||
| # ccache via the cross-platform composite; the script passes the | ||
| # compiler to configure as CC="ccache gcc" (or a per-config "cc"). | ||
| - name: Set up ccache | ||
| uses: ./.github/actions/ccache-setup | ||
| with: | ||
| workflow-id: afalg | ||
| read-only: ${{ github.event_name == 'pull_request' }} | ||
| max-size: 100M | ||
|
|
||
| - name: Build all configs (parallel, out-of-tree) | ||
| run: | | ||
| cat > "$RUNNER_TEMP/afalg-configs.json" <<'EOF' | ||
| [ | ||
| {"name": "defaults-afalg", "minutes": 2, | ||
| "configure": ["--enable-afalg"], | ||
| "cflags": "-pedantic -Wdeclaration-after-statement -Wnull-dereference -Wno-overlength-strings"}, | ||
| {"name": "all-afalg", "minutes": 5, | ||
| "configure": ["--enable-all", "--enable-testcert", "--enable-acert", | ||
| "--enable-dtls13", "--enable-dtls-mtu", "--enable-dtls-frag-ch", | ||
| "--enable-dtlscid", "--enable-quic", "--enable-afalg", | ||
| "--disable-srtp", "--disable-sha224", "--disable-hashflags", | ||
| "--disable-cryptocb", "--disable-aesgcm-stream"], | ||
| "cflags": "-pedantic -Wdeclaration-after-statement -Wnull-dereference -Wno-overlength-strings"} | ||
| ] | ||
| EOF | ||
| .github/scripts/parallel-make-check.py \ | ||
| ${{ github.event_name == 'schedule' && '--build-only' || '' }} \ | ||
| --private-dir=certs \ | ||
| "$RUNNER_TEMP/afalg-configs.json" | ||
|
|
||
| - name: ccache stats | ||
| if: always() | ||
| run: ccache -s || true | ||
|
|
||
| - name: Upload logs on failure | ||
| if: failure() | ||
| uses: actions/upload-artifact@v6 | ||
| with: | ||
| retention-days: 7 | ||
| name: afalg-logs | ||
| path: | | ||
| build-*/make-check.log | ||
| build-*/test-suite.log | ||
| build-*/config.log | ||
| if-no-files-found: ignore |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.