Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
audit: don't WARN_ON_ONCE(!current->mm) in audit_exe_compare()
commit 969d90e upstream. eBPF can end up calling into the audit code from some odd places, and some of these places don't have @current set properly so we end up tripping the `WARN_ON_ONCE(!current->mm)` near the top of `audit_exe_compare()`. While the basic `!current->mm` check is good, the `WARN_ON_ONCE()` results in some scary console messages so let's drop that and just do the regular `!current->mm` check to avoid problems. Cc: <[email protected]> Fixes: 47846d5 ("audit: don't take task_lock() in audit_exe_compare() code path") Reported-by: Artem Savkov <[email protected]> Signed-off-by: Paul Moore <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
- Loading branch information