Hello Mr. Steve£¬ In src/auditd-config.c and audisp/audispd-config.c, the function priority_boost_parser() and freq_parse() use strtoul to convert the numeric and then compare it with INT_MAX. It meant that the value of priority_boost and freq in /etc/audit/auditd.conf should not be larger than INT_MAX.
But there is a little error in the codes: it uses an int variable to store the result of strtoul() and then compare the variable with INT_MAX. So the result of comparison is always "not larger than". I think it's better to modify the codes to implement its intention. The attached patch fixes the problem in src/auditd-config.c and audisp/audispd-config.c of audit-1.7.4. What's your opinion about such modification? PS: priority_boost: a non-negative number that tells the audit daemon how much of a priority boost it should take. freq: a non-negative number that tells the audit damon how many records to write before issuing an explicit flush to disk command. Signed-off-by: Chu Li<[EMAIL PROTECTED]> --- diff --git a/src/auditd-config.c b/src/auditd-config.c index 8a81b46..e9111a4 100644 --- a/src/auditd-config.c +++ b/src/auditd-config.c @@ -782,7 +782,7 @@ static int freq_parser(struct nv_pair *nv, int line, struct daemon_conf *config) { const char *ptr = nv->value; - int i; + unsigned long i; audit_msg(LOG_DEBUG, "freq_parser called with: %s", nv->value); @@ -1112,7 +1112,7 @@ static int priority_boost_parser(struct nv_pair *nv, int line, struct daemon_conf *config) { const char *ptr = nv->value; - int i; + unsigned long i; audit_msg(LOG_DEBUG, "priority_boost_parser called with: %s", nv->value); diff --git a/audisp/audispd-config.c b/audisp/audispd-config.c index b0bcaef..e9d254a 100644 --- a/audisp/audispd-config.c +++ b/audisp/audispd-config.c @@ -387,7 +387,7 @@ static int priority_boost_parser(struct nv_pair *nv, int line, struct daemon_conf *config) { const char *ptr = nv->value; - int i; + unsigned long i; audit_msg(LOG_DEBUG, "priority_boost_parser called with: %s", nv->value); Regards Chu Li -- Linux-audit mailing list Linux-audit@redhat.com https://www.redhat.com/mailman/listinfo/linux-audit