Go to the documentation of this file.
53 static SCJsonBuilder *CreateEveHeaderFromNetFlow(
const Flow *f,
int dir)
56 char srcip[46] = {0}, dstip[46] = {0};
59 SCJsonBuilder *js = SCJbNewObject();
72 PrintInet(AF_INET, (
const void *)&(f->
src.addr_data32[0]), srcip,
sizeof(srcip));
73 PrintInet(AF_INET, (
const void *)&(f->
dst.addr_data32[0]), dstip,
sizeof(dstip));
75 PrintInet(AF_INET, (
const void *)&(f->
dst.addr_data32[0]), srcip,
sizeof(srcip));
76 PrintInet(AF_INET, (
const void *)&(f->
src.addr_data32[0]), dstip,
sizeof(dstip));
97 SCJbSetString(js,
"timestamp", timebuf);
104 json_object_set_new(js,
"sensor_id", json_integer(sensor_id));
109 SCJbSetString(js,
"in_iface", f->
livedev->
dev);
116 SCJbOpenArray(js,
"vlan");
117 SCJbAppendUint(js, f->
vlan_id[0]);
119 SCJbAppendUint(js, f->
vlan_id[1]);
122 SCJbAppendUint(js, f->
vlan_id[2]);
128 SCJbSetString(js,
"src_ip", srcip);
135 SCJbSetUint(js,
"src_port", sp);
138 SCJbSetString(js,
"dest_ip", dstip);
145 SCJbSetUint(js,
"dest_port", dp);
154 SCJbSetString(js,
"proto",
proto);
159 case IPPROTO_ICMPV6: {
161 uint8_t code = f->
icmp_s.code;
167 SCJbSetUint(js,
"icmp_type",
type);
168 SCJbSetUint(js,
"icmp_code", code);
172 SCJbSetUint(js,
"spi", f->
esp.spi);
179 static void NetFlowLogEveToServer(SCJsonBuilder *js,
Flow *f)
183 SCJbOpenObject(js,
"netflow");
188 char timebuf1[64], timebuf2[64];
193 SCJbSetString(js,
"start", timebuf1);
194 SCJbSetString(js,
"end", timebuf2);
197 SCJbSetUint(js,
"age", age);
205 SCJbSetUint(js,
"tx_cnt", tx_id);
213 if (f->
proto == IPPROTO_TCP) {
214 SCJbOpenObject(js,
"tcp");
219 snprintf(hexflags,
sizeof(hexflags),
"%02x",
221 SCJbSetString(js,
"tcp_flags", hexflags);
229 static void NetFlowLogEveToClient(SCJsonBuilder *js,
Flow *f)
233 SCJbOpenObject(js,
"netflow");
238 char timebuf1[64], timebuf2[64];
243 SCJbSetString(js,
"start", timebuf1);
244 SCJbSetString(js,
"end", timebuf2);
247 SCJbSetUint(js,
"age", age);
258 SCJbSetUint(js,
"tx_cnt", tx_id);
266 if (f->
proto == IPPROTO_TCP) {
267 SCJbOpenObject(js,
"tcp");
272 snprintf(hexflags,
sizeof(hexflags),
"%02x",
274 SCJbSetString(js,
"tcp_flags", hexflags);
287 SCJsonBuilder *jb = CreateEveHeaderFromNetFlow(f, 0);
290 NetFlowLogEveToServer(jb, f);
297 jb = CreateEveHeaderFromNetFlow(f, 1);
300 NetFlowLogEveToClient(jb, f);
struct Flow_::@118::@124 icmp_s
void CreateIsoTimeString(const SCTime_t ts, char *str, size_t size)
OutputJsonCommonSettings cfg
TmEcode JsonLogThreadInit(ThreadVars *t, const void *initdata, void **data)
const char * AppProtoToString(AppProto alproto)
Maps the ALPROTO_*, to its string equivalent.
bool SCProtoNameValid(uint16_t proto)
Function to check if the received protocol number is valid and do we have corresponding name entry fo...
void EveTcpFlags(const uint8_t flags, SCJsonBuilder *js)
jsonify tcp flags field Only add 'true' fields in an attempt to keep things reasonably compact.
const char * known_proto[256]
void OutputJsonBuilderBuffer(ThreadVars *tv, const Packet *p, Flow *f, SCJsonBuilder *js, OutputJsonThreadCtx *ctx)
void CreateEveFlowId(SCJsonBuilder *js, const Flow *f)
OutputInitResult OutputJsonLogInitSub(SCConfNode *conf, OutputCtx *parent_ctx)
void OutputRegisterFlowSubModule(LoggerId id, const char *parent_name, const char *name, const char *conf_name, OutputInitSubFunc InitFunc, FlowLogger FlowLogFunc, ThreadInitFunc ThreadInit, ThreadDeinitFunc ThreadDeinit)
Register a flow output sub-module.
#define JB_SET_STRING(jb, key, val)
struct Flow_::@120::@126 icmp_d
void EveAddCommonOptions(const OutputJsonCommonSettings *cfg, const Packet *p, const Flow *f, SCJsonBuilder *js, enum SCOutputJsonLogDirection dir)
union FlowAddress_::@117 address
Per thread variable structure.
const char * PrintInet(int af, const void *src, char *dst, socklen_t size)
struct Flow_::@118::@125 esp
struct LiveDevice_ * livedev
uint16_t vlan_id[VLAN_MAX_LAYERS]
TmEcode JsonLogThreadDeinit(ThreadVars *t, void *data)
AppProto alproto
application level protocol
#define FLOW_DIR_REVERSED
uint64_t AppLayerParserGetTxCnt(const Flow *f, void *alstate)
void JsonNetFlowLogRegister(void)