Linux-audit Archive on lore.kernel.org
 help / color / mirror / Atom feed
* Troubleshooting Custom audispd Plugin
@ 2018-09-07 11:30 Osama Elnaggar
  2018-09-07 12:57 ` Steve Grubb
  0 siblings, 1 reply; 5+ messages in thread
From: Osama Elnaggar @ 2018-09-07 11:30 UTC (permalink / raw)
  To: linux-audit


[-- Attachment #1.1: Type: text/plain, Size: 1733 bytes --]

Hi,

I'm working on a custom audispd plugin written in Python 3.  It’s a work in
progress and I’ve successfully run it numerous times as an audispd plugin.
However, I sometimes make modifications that result in the audispd plugin
failing and I end up with the following in /var/log/syslog

Sep  6 20:52:05 ubuntu-hypervisor audispd: plugin /usr/bin/python3
terminated unexpectedly
Sep  6 20:52:05 ubuntu-hypervisor audispd: plugin /usr/bin/python3 was
restarted
...

This is repeated several times until audispd gives up and I see the
following message:

Sep  6 20:52:14 ubuntu-hypervisor audispd: plugin /usr/bin/python3 has
exceeded max_restarts

To troubleshoot, I modify my code to read from /var/log/audit/audit.log
instead.  I modify a single line (with fileinput.input() to read from
myfile as shown in the commented line below).

Here is the code snippet (a colorized easier to read version is available
here - https://pastebin.com/84Nxu3Rp):

# let us initialize the AuParser
aup = auparse.AuParser(auparse.AUSOURCE_FEED)

# we initalize the callback to be fn_process_event
aup.add_callback(fn_process_event, None, None)

myfile = "/var/log/audit/audit.log"

while True:
    try:
        # we read in line by line from stdin
        for line in fileinput.input():
        #for line in fileinput.input(myfile):
            aup.feed(line)
    except:
        logger.error("Fatal error in while loop", exc_info=True)

# we flush the feed when we quit
aup.flush_feed()

Any suggestions on how to troubleshoot these types of issues when reading
from a file works fine without issue but running it as a plugin fails as
shown in /var/log/syslog?  Thanks.

-- 
Osama Elnaggar

[-- Attachment #1.2: Type: text/html, Size: 4157 bytes --]

[-- Attachment #2: Type: text/plain, Size: 0 bytes --]



^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2018-09-07 20:18 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-09-07 11:30 Troubleshooting Custom audispd Plugin Osama Elnaggar
2018-09-07 12:57 ` Steve Grubb
2018-09-07 13:19   ` Osama Elnaggar
2018-09-07 13:42     ` Steve Grubb
2018-09-07 20:18       ` Osama Elnaggar

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox