RHEL Engineering is moving the tracking of its product development work on RHEL 6 through RHEL 9 to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "RHEL project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs in the statuses "NEW", "ASSIGNED", and "POST" are being migrated throughout September 2023. Bugs of Red Hat partners with an assigned Engineering Partner Manager (EPM) are migrated in late September as per pre-agreed dates. Bugs against components "kernel", "kernel-rt", and "kpatch" are only migrated if still in "NEW" or "ASSIGNED". If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "RHEL project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/RHEL-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.
Bug 1733074 - auditd raises error when excluding exec watch on missing files
Summary: auditd raises error when excluding exec watch on missing files
Keywords:
Status: CLOSED NOTABUG
Alias: None
Product: Red Hat Enterprise Linux 7
Classification: Red Hat
Component: audit
Version: 7.0
Hardware: x86_64
OS: Linux
unspecified
high
Target Milestone: rc
: ---
Assignee: Steve Grubb
QA Contact: Ondrej Moriš
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2019-07-25 07:26 UTC by Andreas Bleischwitz
Modified: 2019-10-09 13:16 UTC (History)
1 user (show)

Fixed In Version:
Doc Type: If docs needed, set a value
Doc Text:
Clone Of:
Environment:
Last Closed: 2019-10-09 13:16:48 UTC
Target Upstream Version:
Embargoed:


Attachments (Terms of Use)


Links
System ID Private Priority Status Summary Last Updated
Red Hat Knowledge Base (Solution) 4304001 0 None None None 2019-07-25 07:27:53 UTC

Description Andreas Bleischwitz 2019-07-25 07:26:39 UTC
Description of problem:
When adding excludes to audit-exec watches (like backup or other agents) which are not commonly installed and missing on a machine, the auditctl raises an error about "No such file or directory" on loading such common ruling.

Version-Release number of selected component (if applicable):
audit-2.8.4-4.el7.x86_64

How reproducible:
(Re)-load of audit-rules containing excludes on exec-watches for files which do not exist and also the parent directory does not exist.

Steps to Reproduce:
1. Add exec-exclude rule to audit:
  -a never,exit -F arch=b64 -S execve -F exe=/nonexisting-dir/nonexisting-exec
2. Reload audit rules
3. Get error

Actual results:
The user is faced with a "No such file or directory" message.

Expected results:
Audit silently skips that rule, or raises a warning

Additional info:
The customer is running at least two different types of machines, having different agents in place. As they are monitoring exec calls and those agents bloat the logs, they added this exclude. But this agent not installed at any machine and the ones lacking the installation are currently refusing to load that audit-ruling.

When creating the parent directory of that exclude (and of course it's parents as well), the exclude is accepted and auditd adds the rules. For the given example, "/nonexisting-dir" will need to exist to load the rule.

Comment 3 Steve Grubb 2019-08-09 12:37:07 UTC
The audit system is really based on inodes and devices - meaning numbers. When the rule is loaded, it tries to map the rule to the device/inode so that it can do the right thing. If the file is missing, then this mapping will fail. The best thing to do it tell auditd to ignore the failure with either the -c or the -i option. Also, the audit daemon's rules are meant to be modular. Meaning that the rules file can be broken into 2 and dropped into /etc/audit/rules.d/ The machine that has the file can get both rule files and the machine without it can get only one rule file. This is another and better way of handling this kind of problem.

In short, I think the audit system is working per design. This just needs to be worked around on the user's end by ignoring the issue or decomposing the rules.

Comment 4 Andreas Bleischwitz 2019-08-09 14:53:55 UTC
(In reply to Steve Grubb from comment #3)
> The audit system is really based on inodes and devices - meaning numbers.
> When the rule is loaded, it tries to map the rule to the device/inode so
> that it can do the right thing. If the file is missing, then this mapping
> will fail. The best thing to do it tell auditd to ignore the failure with
> either the -c or the -i option. Also, the audit daemon's rules are meant to
> be modular. Meaning that the rules file can be broken into 2 and dropped
> into /etc/audit/rules.d/ The machine that has the file can get both rule
> files and the machine without it can get only one rule file. This is another
> and better way of handling this kind of problem.

AFAIK "augenrules" will merge the files from rules.d to build a audit.rules which then will be loaded - having a missing file in an exclude will render auditd to bail out with an error and ignoring further rules.

> 
> In short, I think the audit system is working per design. This just needs to
> be worked around on the user's end by ignoring the issue or decomposing the
> rules.

Probably one improvement would be to have "exclude" rules with missing files to raise a warning instead of raising this as an error. Adding "-c" or "-i" would additionally ignore other, and probably more critical errors in the audit.rules as well. In that case the user may want to have auditd to refuse loading the rules. With exceptions, I would consider this as a warning by default instead of errors.

Hope that this explains the requested change.

/Andreas

Comment 5 Steve Grubb 2019-10-02 19:52:44 UTC
The way that the kernel works is that if the file does exist but the directory does, then it accepts the rule in case the file is created. If the directory doesn't exist, then the kernel returns an error and auditctl passes that to the user. This is how it's designed to work. We really can't tell the difference between /tmp and /ttmp. If we start ignoring errors and you typed ttmp when you meant tmp, how do we know? It's best to just flag that as a problem and let someone fix it.

Comment 6 Steve Grubb 2019-10-09 13:16:48 UTC
Closing out this bz. I think everything is working as intended. The design is to get someone's attention in case there is a typo which cannot be determined programmatically.


Note You need to log in before you can comment on or make changes to this bug.