diff options
Diffstat (limited to 'include/linux/audit.h')
| -rw-r--r-- | include/linux/audit.h | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/include/linux/audit.h b/include/linux/audit.h index c78327507f4e..e1c1dbdf9efb 100644 --- a/include/linux/audit.h +++ b/include/linux/audit.h | |||
| @@ -310,7 +310,7 @@ extern void audit_syscall_entry(int arch, | |||
| 310 | extern void audit_syscall_exit(int failed, long return_code); | 310 | extern void audit_syscall_exit(int failed, long return_code); |
| 311 | extern void __audit_getname(const char *name); | 311 | extern void __audit_getname(const char *name); |
| 312 | extern void audit_putname(const char *name); | 312 | extern void audit_putname(const char *name); |
| 313 | extern void __audit_inode(const char *name, const struct inode *inode, unsigned flags); | 313 | extern void __audit_inode(const char *name, const struct inode *inode); |
| 314 | extern void __audit_inode_child(const char *dname, const struct inode *inode, | 314 | extern void __audit_inode_child(const char *dname, const struct inode *inode, |
| 315 | unsigned long pino); | 315 | unsigned long pino); |
| 316 | static inline void audit_getname(const char *name) | 316 | static inline void audit_getname(const char *name) |
| @@ -318,10 +318,9 @@ static inline void audit_getname(const char *name) | |||
| 318 | if (unlikely(current->audit_context)) | 318 | if (unlikely(current->audit_context)) |
| 319 | __audit_getname(name); | 319 | __audit_getname(name); |
| 320 | } | 320 | } |
| 321 | static inline void audit_inode(const char *name, const struct inode *inode, | 321 | static inline void audit_inode(const char *name, const struct inode *inode) { |
| 322 | unsigned flags) { | ||
| 323 | if (unlikely(current->audit_context)) | 322 | if (unlikely(current->audit_context)) |
| 324 | __audit_inode(name, inode, flags); | 323 | __audit_inode(name, inode); |
| 325 | } | 324 | } |
| 326 | static inline void audit_inode_child(const char *dname, | 325 | static inline void audit_inode_child(const char *dname, |
| 327 | const struct inode *inode, | 326 | const struct inode *inode, |
| @@ -398,9 +397,9 @@ static inline int audit_mq_getsetattr(mqd_t mqdes, struct mq_attr *mqstat) | |||
| 398 | #define audit_syscall_exit(f,r) do { ; } while (0) | 397 | #define audit_syscall_exit(f,r) do { ; } while (0) |
| 399 | #define audit_getname(n) do { ; } while (0) | 398 | #define audit_getname(n) do { ; } while (0) |
| 400 | #define audit_putname(n) do { ; } while (0) | 399 | #define audit_putname(n) do { ; } while (0) |
| 401 | #define __audit_inode(n,i,f) do { ; } while (0) | 400 | #define __audit_inode(n,i) do { ; } while (0) |
| 402 | #define __audit_inode_child(d,i,p) do { ; } while (0) | 401 | #define __audit_inode_child(d,i,p) do { ; } while (0) |
| 403 | #define audit_inode(n,i,f) do { ; } while (0) | 402 | #define audit_inode(n,i) do { ; } while (0) |
| 404 | #define audit_inode_child(d,i,p) do { ; } while (0) | 403 | #define audit_inode_child(d,i,p) do { ; } while (0) |
| 405 | #define auditsc_get_stamp(c,t,s) do { BUG(); } while (0) | 404 | #define auditsc_get_stamp(c,t,s) do { BUG(); } while (0) |
| 406 | #define audit_get_loginuid(c) ({ -1; }) | 405 | #define audit_get_loginuid(c) ({ -1; }) |
| @@ -435,6 +434,9 @@ extern void audit_log_hex(struct audit_buffer *ab, | |||
| 435 | size_t len); | 434 | size_t len); |
| 436 | extern const char * audit_log_untrustedstring(struct audit_buffer *ab, | 435 | extern const char * audit_log_untrustedstring(struct audit_buffer *ab, |
| 437 | const char *string); | 436 | const char *string); |
| 437 | extern const char * audit_log_n_untrustedstring(struct audit_buffer *ab, | ||
| 438 | size_t n, | ||
| 439 | const char *string); | ||
| 438 | extern void audit_log_d_path(struct audit_buffer *ab, | 440 | extern void audit_log_d_path(struct audit_buffer *ab, |
| 439 | const char *prefix, | 441 | const char *prefix, |
| 440 | struct dentry *dentry, | 442 | struct dentry *dentry, |
| @@ -452,6 +454,7 @@ extern int audit_receive_filter(int type, int pid, int uid, int seq, | |||
| 452 | #define audit_log_end(b) do { ; } while (0) | 454 | #define audit_log_end(b) do { ; } while (0) |
| 453 | #define audit_log_hex(a,b,l) do { ; } while (0) | 455 | #define audit_log_hex(a,b,l) do { ; } while (0) |
| 454 | #define audit_log_untrustedstring(a,s) do { ; } while (0) | 456 | #define audit_log_untrustedstring(a,s) do { ; } while (0) |
| 457 | #define audit_log_n_untrustedstring(a,n,s) do { ; } while (0) | ||
| 455 | #define audit_log_d_path(b,p,d,v) do { ; } while (0) | 458 | #define audit_log_d_path(b,p,d,v) do { ; } while (0) |
| 456 | #endif | 459 | #endif |
| 457 | #endif | 460 | #endif |
