You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can confirm your observations on Arch Linux with linux-lts 5.4.98. Luckily linux-lts 5.10.16 is in testing so I tried that as well and that works as expected (no output from your test.c). Looks like a kernel issue IMO.
Since a recent kernel update I got the error "Warning: Cannot confine the application using AppArmor" when using the "--apparmor" flag"
The verification performed in src/firejail/sandbox.c failed with the error EINVAL:
test.c:
#include <sys/apparmor.h>
#include <stdio.h>
int main() {
if(aa_change_onexec("firejail-default")<0) { perror(NULL); }
}
$ gcc -lapparmor test.c
$ ./a.out
Invalid argument
Still the "aa-status" command shows that the firejail-default profile is correctly loaded in the kernel.
Don't know if this is a distro specfic issue.
The text was updated successfully, but these errors were encountered: