Handle ppc64 and ppc64le syscall lookups#72
Merged
andrewkroh merged 1 commit intoelastic:masterfrom Jul 20, 2020
Merged
Conversation
ppc64 and ppc64le use the same syscall table as ppc. But we were missing an entry in the syscall table for these two architectures so lookups would fail if you tried to install an audit rule with `-F arch=ppc64le` or if you go-libaudit tried to enrich messages with the syscall names while running on those arches.
adriansr
approved these changes
Jul 20, 2020
6 tasks
andrewkroh
added a commit
to andrewkroh/beats
that referenced
this pull request
Jul 20, 2020
Fixes auditd module syscall table for ppc64 and ppc64le. elastic/go-libaudit#72
andrewkroh
added a commit
to elastic/beats
that referenced
this pull request
Jul 28, 2020
Fixes auditd module syscall table for ppc64 and ppc64le. elastic/go-libaudit#72
6 tasks
andrewkroh
added a commit
to andrewkroh/beats
that referenced
this pull request
Jul 29, 2020
Fixes auditd module syscall table for ppc64 and ppc64le. elastic/go-libaudit#72 (cherry picked from commit 401b4ea)
andrewkroh
added a commit
to elastic/beats
that referenced
this pull request
Jul 30, 2020
Fixes auditd module syscall table for ppc64 and ppc64le. elastic/go-libaudit#72 (cherry picked from commit 401b4ea)
melchiormoulin
pushed a commit
to melchiormoulin/beats
that referenced
this pull request
Oct 14, 2020
Fixes auditd module syscall table for ppc64 and ppc64le. elastic/go-libaudit#72
renini
pushed a commit
to renini/go-libaudit
that referenced
this pull request
Jun 26, 2024
ppc64 and ppc64le use the same syscall table as ppc. But we were missing an entry in the syscall table for these two architectures so lookups would fail if you tried to install an audit rule with `-F arch=ppc64le` or if go-libaudit tried to enrich messages with the syscall names while running on those arches.
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
ppc64 and ppc64le use the same syscall table as ppc. But we were missing an entry
in the syscall table for these two architectures so lookups would fail if you tried to install
an audit rule with
-F arch=ppc64leor if go-libaudit tried to enrich messages withthe syscall names while running on those arches.