auditon(2): fix A_SETPOLICY with 64-bit values
A_SETPOLICY is supposed to work with either 64 or 32-bit values, but due to a typo the 64-bit version has never worked correctly. Submitted by: aniketp Reviewed by: asomers, cem MFC after: 2 weeks Sponsored by: Google, Inc. (GSoC 2018) Differential Revision: https://reviews.freebsd.org/D16222
This commit is contained in:
parent
89463812e3
commit
f7c188aeeb
@ -251,7 +251,7 @@ sys_auditon(struct thread *td, struct auditon_args *uap)
|
|||||||
case A_OLDSETPOLICY:
|
case A_OLDSETPOLICY:
|
||||||
case A_SETPOLICY:
|
case A_SETPOLICY:
|
||||||
if (uap->length == sizeof(udata.au_policy64)) {
|
if (uap->length == sizeof(udata.au_policy64)) {
|
||||||
if (udata.au_policy & (~AUDIT_CNT|AUDIT_AHLT|
|
if (udata.au_policy & ~(AUDIT_CNT|AUDIT_AHLT|
|
||||||
AUDIT_ARGV|AUDIT_ARGE))
|
AUDIT_ARGV|AUDIT_ARGE))
|
||||||
return (EINVAL);
|
return (EINVAL);
|
||||||
audit_fail_stop = ((udata.au_policy64 & AUDIT_CNT) ==
|
audit_fail_stop = ((udata.au_policy64 & AUDIT_CNT) ==
|
||||||
|
Loading…
Reference in New Issue
Block a user