diff options
Diffstat (limited to 'include/linux/audit.h')
| -rw-r--r-- | include/linux/audit.h | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/include/linux/audit.h b/include/linux/audit.h index 9ae740936a65..c68781692838 100644 --- a/include/linux/audit.h +++ b/include/linux/audit.h | |||
| @@ -63,6 +63,8 @@ | |||
| 63 | #define AUDIT_ADD_RULE 1011 /* Add syscall filtering rule */ | 63 | #define AUDIT_ADD_RULE 1011 /* Add syscall filtering rule */ |
| 64 | #define AUDIT_DEL_RULE 1012 /* Delete syscall filtering rule */ | 64 | #define AUDIT_DEL_RULE 1012 /* Delete syscall filtering rule */ |
| 65 | #define AUDIT_LIST_RULES 1013 /* List syscall filtering rules */ | 65 | #define AUDIT_LIST_RULES 1013 /* List syscall filtering rules */ |
| 66 | #define AUDIT_TRIM 1014 /* Trim junk from watched tree */ | ||
| 67 | #define AUDIT_MAKE_EQUIV 1015 /* Append to watched tree */ | ||
| 66 | #define AUDIT_TTY_GET 1016 /* Get TTY auditing status */ | 68 | #define AUDIT_TTY_GET 1016 /* Get TTY auditing status */ |
| 67 | #define AUDIT_TTY_SET 1017 /* Set TTY auditing status */ | 69 | #define AUDIT_TTY_SET 1017 /* Set TTY auditing status */ |
| 68 | 70 | ||
| @@ -203,6 +205,7 @@ | |||
| 203 | #define AUDIT_SUCCESS 104 /* exit >= 0; value ignored */ | 205 | #define AUDIT_SUCCESS 104 /* exit >= 0; value ignored */ |
| 204 | #define AUDIT_WATCH 105 | 206 | #define AUDIT_WATCH 105 |
| 205 | #define AUDIT_PERM 106 | 207 | #define AUDIT_PERM 106 |
| 208 | #define AUDIT_DIR 107 | ||
| 206 | 209 | ||
| 207 | #define AUDIT_ARG0 200 | 210 | #define AUDIT_ARG0 200 |
| 208 | #define AUDIT_ARG1 (AUDIT_ARG0+1) | 211 | #define AUDIT_ARG1 (AUDIT_ARG0+1) |
| @@ -366,8 +369,8 @@ extern void audit_syscall_entry(int arch, | |||
| 366 | extern void audit_syscall_exit(int failed, long return_code); | 369 | extern void audit_syscall_exit(int failed, long return_code); |
| 367 | extern void __audit_getname(const char *name); | 370 | extern void __audit_getname(const char *name); |
| 368 | extern void audit_putname(const char *name); | 371 | extern void audit_putname(const char *name); |
| 369 | extern void __audit_inode(const char *name, const struct inode *inode); | 372 | extern void __audit_inode(const char *name, const struct dentry *dentry); |
| 370 | extern void __audit_inode_child(const char *dname, const struct inode *inode, | 373 | extern void __audit_inode_child(const char *dname, const struct dentry *dentry, |
| 371 | const struct inode *parent); | 374 | const struct inode *parent); |
| 372 | extern void __audit_ptrace(struct task_struct *t); | 375 | extern void __audit_ptrace(struct task_struct *t); |
| 373 | 376 | ||
| @@ -381,15 +384,15 @@ static inline void audit_getname(const char *name) | |||
| 381 | if (unlikely(!audit_dummy_context())) | 384 | if (unlikely(!audit_dummy_context())) |
| 382 | __audit_getname(name); | 385 | __audit_getname(name); |
| 383 | } | 386 | } |
| 384 | static inline void audit_inode(const char *name, const struct inode *inode) { | 387 | static inline void audit_inode(const char *name, const struct dentry *dentry) { |
| 385 | if (unlikely(!audit_dummy_context())) | 388 | if (unlikely(!audit_dummy_context())) |
| 386 | __audit_inode(name, inode); | 389 | __audit_inode(name, dentry); |
| 387 | } | 390 | } |
| 388 | static inline void audit_inode_child(const char *dname, | 391 | static inline void audit_inode_child(const char *dname, |
| 389 | const struct inode *inode, | 392 | const struct dentry *dentry, |
| 390 | const struct inode *parent) { | 393 | const struct inode *parent) { |
| 391 | if (unlikely(!audit_dummy_context())) | 394 | if (unlikely(!audit_dummy_context())) |
| 392 | __audit_inode_child(dname, inode, parent); | 395 | __audit_inode_child(dname, dentry, parent); |
| 393 | } | 396 | } |
| 394 | void audit_core_dumps(long signr); | 397 | void audit_core_dumps(long signr); |
| 395 | 398 | ||
| @@ -477,9 +480,9 @@ extern int audit_signals; | |||
| 477 | #define audit_dummy_context() 1 | 480 | #define audit_dummy_context() 1 |
| 478 | #define audit_getname(n) do { ; } while (0) | 481 | #define audit_getname(n) do { ; } while (0) |
| 479 | #define audit_putname(n) do { ; } while (0) | 482 | #define audit_putname(n) do { ; } while (0) |
| 480 | #define __audit_inode(n,i) do { ; } while (0) | 483 | #define __audit_inode(n,d) do { ; } while (0) |
| 481 | #define __audit_inode_child(d,i,p) do { ; } while (0) | 484 | #define __audit_inode_child(d,i,p) do { ; } while (0) |
| 482 | #define audit_inode(n,i) do { ; } while (0) | 485 | #define audit_inode(n,d) do { ; } while (0) |
| 483 | #define audit_inode_child(d,i,p) do { ; } while (0) | 486 | #define audit_inode_child(d,i,p) do { ; } while (0) |
| 484 | #define audit_core_dumps(i) do { ; } while (0) | 487 | #define audit_core_dumps(i) do { ; } while (0) |
| 485 | #define auditsc_get_stamp(c,t,s) do { BUG(); } while (0) | 488 | #define auditsc_get_stamp(c,t,s) do { BUG(); } while (0) |
