mirror of
https://github.com/zeek/zeek.git
synced 2025-10-08 01:28:20 +00:00

When not reporting via events, the final contents of the message buffer after formatting was being used as a format string to fprintf instead of writing out the actual string.
311 lines
5.6 KiB
C++
311 lines
5.6 KiB
C++
//
|
|
// See the file "COPYING" in the main distribution directory for copyright.
|
|
//
|
|
|
|
#include <syslog.h>
|
|
|
|
#include "config.h"
|
|
#include "Reporter.h"
|
|
#include "Event.h"
|
|
#include "NetVar.h"
|
|
#include "Net.h"
|
|
#include "Conn.h"
|
|
|
|
#ifdef SYSLOG_INT
|
|
extern "C" {
|
|
int openlog(const char* ident, int logopt, int facility);
|
|
int syslog(int priority, const char* message_fmt, ...);
|
|
int closelog();
|
|
}
|
|
#endif
|
|
|
|
Reporter* reporter = 0;
|
|
|
|
Reporter::Reporter()
|
|
{
|
|
errors = 0;
|
|
via_events = false;
|
|
in_error_handler = 0;
|
|
|
|
openlog("bro", 0, LOG_LOCAL5);
|
|
}
|
|
|
|
Reporter::~Reporter()
|
|
{
|
|
closelog();
|
|
}
|
|
|
|
void Reporter::Info(const char* fmt, ...)
|
|
{
|
|
va_list ap;
|
|
va_start(ap, fmt);
|
|
DoLog("", reporter_info, stderr, 0, 0, true, true, fmt, ap);
|
|
va_end(ap);
|
|
}
|
|
|
|
void Reporter::Warning(const char* fmt, ...)
|
|
{
|
|
va_list ap;
|
|
va_start(ap, fmt);
|
|
DoLog("warning", reporter_warning, stderr, 0, 0, true, true, fmt, ap);
|
|
va_end(ap);
|
|
}
|
|
|
|
void Reporter::Error(const char* fmt, ...)
|
|
{
|
|
++errors;
|
|
va_list ap;
|
|
va_start(ap, fmt);
|
|
DoLog("error", reporter_error, stderr, 0, 0, true, true, fmt, ap);
|
|
va_end(ap);
|
|
}
|
|
|
|
void Reporter::FatalError(const char* fmt, ...)
|
|
{
|
|
va_list ap;
|
|
va_start(ap, fmt);
|
|
|
|
// Always log to stderr.
|
|
DoLog("fatal error", 0, stderr, 0, 0, true, false, fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
set_processing_status("TERMINATED", "fatal_error");
|
|
exit(1);
|
|
}
|
|
|
|
void Reporter::FatalErrorWithCore(const char* fmt, ...)
|
|
{
|
|
va_list ap;
|
|
va_start(ap, fmt);
|
|
|
|
// Always log to stderr.
|
|
DoLog("fatal error", 0, stderr, 0, 0, true, false, fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
set_processing_status("TERMINATED", "fatal_error");
|
|
abort();
|
|
}
|
|
|
|
void Reporter::InternalError(const char* fmt, ...)
|
|
{
|
|
va_list ap;
|
|
va_start(ap, fmt);
|
|
|
|
// Always log to stderr.
|
|
DoLog("internal error", 0, stderr, 0, 0, true, false, fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
set_processing_status("TERMINATED", "internal_error");
|
|
abort();
|
|
}
|
|
|
|
void Reporter::InternalWarning(const char* fmt, ...)
|
|
{
|
|
va_list ap;
|
|
va_start(ap, fmt);
|
|
DoLog("internal warning", reporter_warning, stderr, 0, 0, true, true, fmt, ap);
|
|
va_end(ap);
|
|
}
|
|
|
|
void Reporter::Syslog(const char* fmt, ...)
|
|
{
|
|
if ( reading_traces )
|
|
return;
|
|
|
|
va_list ap;
|
|
va_start(ap, fmt);
|
|
vsyslog(LOG_NOTICE, fmt, ap);
|
|
va_end(ap);
|
|
}
|
|
|
|
void Reporter::WeirdHelper(EventHandlerPtr event, Val* conn_val, const char* name, const char* addl, ...)
|
|
{
|
|
val_list* vl = new val_list(1);
|
|
|
|
if ( conn_val )
|
|
vl->append(conn_val);
|
|
|
|
if ( addl )
|
|
vl->append(new StringVal(addl));
|
|
|
|
va_list ap;
|
|
va_start(ap, addl);
|
|
DoLog("weird", event, stderr, 0, vl, false, false, name, ap);
|
|
va_end(ap);
|
|
|
|
delete vl;
|
|
}
|
|
|
|
void Reporter::WeirdFlowHelper(const uint32* orig, const uint32* resp, const char* name, ...)
|
|
{
|
|
val_list* vl = new val_list(2);
|
|
vl->append(new AddrVal(orig));
|
|
vl->append(new AddrVal(resp));
|
|
|
|
va_list ap;
|
|
va_start(ap, name);
|
|
DoLog("weird", flow_weird, stderr, 0, vl, false, false, name, ap);
|
|
va_end(ap);
|
|
|
|
delete vl;
|
|
}
|
|
|
|
void Reporter::Weird(const char* name)
|
|
{
|
|
WeirdHelper(net_weird, 0, name, 0);
|
|
}
|
|
|
|
void Reporter::Weird(Connection* conn, const char* name, const char* addl)
|
|
{
|
|
WeirdHelper(conn_weird, conn->BuildConnVal(), name, addl);
|
|
}
|
|
|
|
void Reporter::Weird(Val* conn_val, const char* name, const char* addl)
|
|
{
|
|
WeirdHelper(conn_weird, conn_val, name, addl);
|
|
}
|
|
|
|
void Reporter::Weird(const uint32* orig, const uint32* resp, const char* name)
|
|
{
|
|
WeirdFlowHelper(orig, resp, name);
|
|
}
|
|
|
|
void Reporter::DoLog(const char* prefix, EventHandlerPtr event, FILE* out, Connection* conn, val_list* addl, bool location, bool time, const char* fmt, va_list ap)
|
|
{
|
|
static char tmp[512];
|
|
|
|
int size = sizeof(tmp);
|
|
char* buffer = tmp;
|
|
char* alloced = 0;
|
|
|
|
string loc_str;
|
|
|
|
if ( location )
|
|
{
|
|
string loc_file = "";
|
|
int loc_line = 0;
|
|
|
|
if ( locations.size() )
|
|
{
|
|
ODesc d;
|
|
|
|
std::pair<const Location*, const Location*> locs = locations.back();
|
|
|
|
if ( locs.first )
|
|
{
|
|
if ( locs.first != &no_location )
|
|
locs.first->Describe(&d);
|
|
|
|
else
|
|
d.Add("<no location>");
|
|
|
|
if ( locs.second )
|
|
{
|
|
d.Add(" and ");
|
|
|
|
if ( locs.second != &no_location )
|
|
locs.second->Describe(&d);
|
|
|
|
else
|
|
d.Add("<no location>");
|
|
|
|
}
|
|
}
|
|
|
|
loc_str = d.Description();
|
|
}
|
|
|
|
else if ( filename && *filename )
|
|
{
|
|
// Take from globals.
|
|
loc_str = filename;
|
|
char tmp[32];
|
|
snprintf(tmp, 32, "%d", line_number);
|
|
loc_str += string(", line ") + string(tmp);
|
|
}
|
|
}
|
|
|
|
while ( true )
|
|
{
|
|
va_list aq;
|
|
va_copy(aq, ap);
|
|
int n = vsnprintf(buffer, size, fmt, aq);
|
|
va_end(aq);
|
|
|
|
if ( n > -1 && n < size )
|
|
// We had enough space;
|
|
break;
|
|
|
|
// Enlarge buffer;
|
|
size *= 2;
|
|
buffer = alloced = (char *)realloc(alloced, size);
|
|
|
|
if ( ! buffer )
|
|
FatalError("out of memory in Reporter");
|
|
}
|
|
|
|
if ( event && via_events && ! in_error_handler )
|
|
{
|
|
val_list* vl = new val_list;
|
|
|
|
if ( time )
|
|
vl->append(new Val((bro_start_network_time != 0.0) ? network_time : 0, TYPE_TIME));
|
|
|
|
vl->append(new StringVal(buffer));
|
|
|
|
if ( location )
|
|
vl->append(new StringVal(loc_str.c_str()));
|
|
|
|
if ( conn )
|
|
vl->append(conn->BuildConnVal());
|
|
|
|
if ( addl )
|
|
{
|
|
loop_over_list(*addl, i)
|
|
vl->append((*addl)[i]);
|
|
}
|
|
|
|
if ( conn )
|
|
conn->ConnectionEvent(event, 0, vl);
|
|
else
|
|
mgr.QueueEvent(event, vl);
|
|
}
|
|
|
|
else
|
|
{
|
|
string s = "";
|
|
|
|
if ( bro_start_network_time != 0.0 )
|
|
{
|
|
char tmp[32];
|
|
snprintf(tmp, 32, "%.6f", network_time);
|
|
s += string(tmp) + " ";
|
|
}
|
|
|
|
if ( prefix && *prefix )
|
|
{
|
|
if ( loc_str != "" )
|
|
s += string(prefix) + " in " + loc_str + ": ";
|
|
else
|
|
s += string(prefix) + ": ";
|
|
}
|
|
|
|
else
|
|
{
|
|
if ( loc_str != "" )
|
|
s += loc_str + ": ";
|
|
}
|
|
|
|
s += buffer;
|
|
s += "\n";
|
|
|
|
fprintf(out, "%s", s.c_str());
|
|
}
|
|
|
|
if ( alloced )
|
|
free(alloced);
|
|
}
|
|
|