INCLUDE = -I.
#INCLUDE =
#<<need getopt()>>
-LIBS = -lselinux -lpam -lpam_misc
+LIBS = -lselinux -lpam -lpam_misc -laudit
#<<optimize or debug?>>
#CDEBUG = -O
#CDEBUG = -g
#<<want to use a nonstandard CC?>>
CC = gcc -Wall -Wno-unused -Wno-comment
#<<manifest defines>>
-DEFS = -DWITH_SELINUX -DWITH_PAM
+DEFS = -DWITH_SELINUX -DWITH_PAM -DWITH_AUDIT
#(SGI IRIX systems need this)
#DEFS = -D_BSD_SIGNALS -Dconst=
#<<the name of the BSD-like install program>>
#include "cron.h"
#include <limits.h>
+#ifdef WITH_AUDIT
+#include <libaudit.h>
+#endif
#if defined(SYSLOG) && defined(LOG_FILE)
# undef LOG_FILE
isallowed = TRUE;
}
}
+#ifdef WITH_AUDIT
+ if (isallowed == FALSE) {
+ int audit_fd = audit_open();
+ audit_log_user_message(audit_fd, AUDIT_USER_START, "cron deny",
+ NULL, NULL, NULL, 0);
+ close(audit_fd);
+ }
+#endif
return (isallowed);
}