Add an accounting flag for syscall pinning violations.
authorderaadt <deraadt@openbsd.org>
Mon, 11 Dec 2023 00:39:43 +0000 (00:39 +0000)
committerderaadt <deraadt@openbsd.org>
Mon, 11 Dec 2023 00:39:43 +0000 (00:39 +0000)
sys/sys/acct.h

index 6a7f51d..bd2ec24 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: acct.h,v 1.13 2023/02/21 14:31:07 deraadt Exp $       */
+/*     $OpenBSD: acct.h,v 1.14 2023/12/11 00:39:43 deraadt Exp $       */
 /*     $NetBSD: acct.h,v 1.16 1995/03/26 20:23:52 jtc Exp $    */
 
 /*-
@@ -67,6 +67,7 @@ struct acct {
 #define        ATRAP   0x00000040              /* memory access violation */
 #define        AUNVEIL 0x00000080              /* unveil access violation */
 #define        AEXECVE 0x00000100              /* execve from wrong libc stub */
+#define        APINSYS 0x00000200              /* syscall pin violation */
        u_int32_t ac_flag;              /* accounting flags */
 };