Skip to content

Commit

Permalink
audit: add support for the openat2 syscall
Browse files Browse the repository at this point in the history
The openat2(2) syscall was added in kernel v5.6 with commit
fddb5d4 ("open: introduce openat2(2) syscall").

Add the openat2(2) syscall to the audit syscall classifier.

Link: linux-audit/audit-kernel#67
Link: https://lore.kernel.org/r/f5f1a4d8699613f8c02ce762807228c841c2e26f.1621363275.git.rgb@redhat.com
Signed-off-by: Richard Guy Briggs <rgb@redhat.com>
Acked-by: Christian Brauner <christian.brauner@ubuntu.com>
[PM: merge fuzz due to previous header rename, commit line wraps]
Signed-off-by: Paul Moore <paul@paul-moore.com>
  • Loading branch information
rgbriggs authored and pcmoore committed Oct 1, 2021
1 parent 42f355e commit 1c30e3a
Show file tree
Hide file tree
Showing 16 changed files with 36 additions and 0 deletions.
2 changes: 2 additions & 0 deletions arch/alpha/kernel/audit.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ int audit_classify_syscall(int abi, unsigned syscall)
return AUDITSC_OPENAT;
case __NR_execve:
return AUDITSC_EXECVE;
case __NR_openat2:
return AUDITSC_OPENAT2;
default:
return AUDITSC_NATIVE;
}
Expand Down
2 changes: 2 additions & 0 deletions arch/ia64/kernel/audit.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ int audit_classify_syscall(int abi, unsigned syscall)
return AUDITSC_OPENAT;
case __NR_execve:
return AUDITSC_EXECVE;
case __NR_openat2:
return AUDITSC_OPENAT2;
default:
return AUDITSC_NATIVE;
}
Expand Down
2 changes: 2 additions & 0 deletions arch/parisc/kernel/audit.c
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ int audit_classify_syscall(int abi, unsigned syscall)
return AUDITSC_OPENAT;
case __NR_execve:
return AUDITSC_EXECVE;
case __NR_openat2:
return AUDITSC_OPENAT2;
default:
return AUDITSC_NATIVE;
}
Expand Down
2 changes: 2 additions & 0 deletions arch/parisc/kernel/compat_audit.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ int parisc32_classify_syscall(unsigned syscall)
return AUDITSC_OPENAT;
case __NR_execve:
return AUDITSC_EXECVE;
case __NR_openat2:
return AUDITSC_OPENAT2;
default:
return AUDITSC_COMPAT;
}
Expand Down
2 changes: 2 additions & 0 deletions arch/powerpc/kernel/audit.c
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ int audit_classify_syscall(int abi, unsigned syscall)
return AUDITSC_SOCKETCALL;
case __NR_execve:
return AUDITSC_EXECVE;
case __NR_openat2:
return AUDITSC_OPENAT2;
default:
return AUDITSC_NATIVE;
}
Expand Down
2 changes: 2 additions & 0 deletions arch/powerpc/kernel/compat_audit.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ int ppc32_classify_syscall(unsigned syscall)
return AUDITSC_SOCKETCALL;
case __NR_execve:
return AUDITSC_EXECVE;
case __NR_openat2:
return AUDITSC_OPENAT2;
default:
return AUDITSC_COMPAT;
}
Expand Down
2 changes: 2 additions & 0 deletions arch/s390/kernel/audit.c
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ int audit_classify_syscall(int abi, unsigned syscall)
return AUDITSC_SOCKETCALL;
case __NR_execve:
return AUDITSC_EXECVE;
case __NR_openat2:
return AUDITSC_OPENAT2;
default:
return AUDITSC_NATIVE;
}
Expand Down
2 changes: 2 additions & 0 deletions arch/s390/kernel/compat_audit.c
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ int s390_classify_syscall(unsigned syscall)
return AUDITSC_SOCKETCALL;
case __NR_execve:
return AUDITSC_EXECVE;
case __NR_openat2:
return AUDITSC_OPENAT2;
default:
return AUDITSC_COMPAT;
}
Expand Down
2 changes: 2 additions & 0 deletions arch/sparc/kernel/audit.c
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ int audit_classify_syscall(int abi, unsigned int syscall)
return AUDITSC_SOCKETCALL;
case __NR_execve:
return AUDITSC_EXECVE;
case __NR_openat2:
return AUDITSC_OPENAT2;
default:
return AUDITSC_NATIVE;
}
Expand Down
2 changes: 2 additions & 0 deletions arch/sparc/kernel/compat_audit.c
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ int sparc32_classify_syscall(unsigned int syscall)
return AUDITSC_SOCKETCALL;
case __NR_execve:
return AUDITSC_EXECVE;
case __NR_openat2:
return AUDITSC_OPENAT2;
default:
return AUDITSC_COMPAT;
}
Expand Down
2 changes: 2 additions & 0 deletions arch/x86/ia32/audit.c
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ int ia32_classify_syscall(unsigned syscall)
case __NR_execve:
case __NR_execveat:
return AUDITSC_EXECVE;
case __NR_openat2:
return AUDITSC_OPENAT2;
default:
return AUDITSC_COMPAT;
}
Expand Down
2 changes: 2 additions & 0 deletions arch/x86/kernel/audit_64.c
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ int audit_classify_syscall(int abi, unsigned syscall)
case __NR_execve:
case __NR_execveat:
return AUDITSC_EXECVE;
case __NR_openat2:
return AUDITSC_OPENAT2;
default:
return AUDITSC_NATIVE;
}
Expand Down
1 change: 1 addition & 0 deletions include/linux/audit_arch.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ enum auditsc_class_t {
AUDITSC_OPENAT,
AUDITSC_SOCKETCALL,
AUDITSC_EXECVE,
AUDITSC_OPENAT2,

AUDITSC_NVALS /* count */
};
Expand Down
3 changes: 3 additions & 0 deletions kernel/auditsc.c
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@
#include <linux/fsnotify_backend.h>
#include <uapi/linux/limits.h>
#include <uapi/linux/netfilter/nf_tables.h>
#include <uapi/linux/openat2.h>

#include "audit.h"

Expand Down Expand Up @@ -183,6 +184,8 @@ static int audit_match_perm(struct audit_context *ctx, int mask)
return ((mask & AUDIT_PERM_WRITE) && ctx->argv[0] == SYS_BIND);
case AUDITSC_EXECVE:
return mask & AUDIT_PERM_EXEC;
case AUDITSC_OPENAT2:
return mask & ACC_MODE((u32)((struct open_how *)ctx->argv[2])->flags);
default:
return 0;
}
Expand Down
4 changes: 4 additions & 0 deletions lib/audit.c
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@ int audit_classify_syscall(int abi, unsigned syscall)
#endif
case __NR_execve:
return AUDITSC_EXECVE;
#ifdef __NR_openat2
case __NR_openat2:
return AUDITSC_OPENAT2;
#endif
default:
return AUDITSC_NATIVE;
}
Expand Down
4 changes: 4 additions & 0 deletions lib/compat_audit.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ int audit_classify_compat_syscall(int abi, unsigned syscall)
#endif
case __NR_execve:
return AUDITSC_EXECVE;
#ifdef __NR_openat2
case __NR_openat2:
return AUDITSC_OPENAT2;
#endif
default:
return AUDITSC_COMPAT;
}
Expand Down

0 comments on commit 1c30e3a

Please sign in to comment.