Bugzilla – Attachment 3382 Details for
Bug 3085
seccomp issue after upgrading openssl
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
A patch that fixed my seccomp syscall issue
0001-Fix-on-aarch64-musl-where-certain-syscalls-were-not-.patch (text/plain), 746 bytes, created by
Nicholas Niro
on 2020-04-15 09:16:16 AEST
(
hide
)
Description:
A patch that fixed my seccomp syscall issue
Filename:
MIME Type:
Creator:
Nicholas Niro
Created:
2020-04-15 09:16:16 AEST
Size:
746 bytes
patch
obsolete
>From 78766ec0bee5916d92dcedae15670086c47f9772 Mon Sep 17 00:00:00 2001 >From: Nicholas Niro <blowfist@xroutine.net> >Date: Tue, 14 Apr 2020 19:05:45 -0400 >Subject: [PATCH] Fix on aarch64 musl where certain syscalls were not being > detected. > >__NR_pselect6 was not being set (probably among others) and including sys/syscall.h fixes this. >--- > sandbox-seccomp-filter.c | 1 + > 1 file changed, 1 insertion(+) > >diff --git a/sandbox-seccomp-filter.c b/sandbox-seccomp-filter.c >index f80981fa..e0768c06 100644 >--- a/sandbox-seccomp-filter.c >+++ b/sandbox-seccomp-filter.c >@@ -43,6 +43,7 @@ > #include <sys/resource.h> > #include <sys/prctl.h> > #include <sys/mman.h> >+#include <sys/syscall.h> > > #include <linux/net.h> > #include <linux/audit.h> >-- >2.25.1 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 3085
: 3382 |
3427