ntopng/scripts/lua/modules/flow_field_value_maps.lua
2018-10-01 00:22:49 +02:00

65 lines
1.9 KiB
Lua

--
-- (C) 2014-18 - ntop.org
--
local dirs = ntop.getDirs()
package.path = dirs.installdir .. "/scripts/lua/modules/flow_field_value_maps/?.lua;" .. package.path
local os_utils = require "os_utils"
local flow_field_value_maps = {}
local pen_map = {}
local pen_to_map_file = {
["8741"] = "sonicwall_app_id"
}
-- ################################################################################
local function init_flow_field_value_map(field_pen)
if pen_to_map_file[field_pen] and not pen_map[field_pen] then
pen_map[field_pen] = require(pen_to_map_file[field_pen])
end
end
-- ################################################################################
function flow_field_value_maps.key_to_pen_type_and_value(field)
-- nProbe exports the field as the dot-concatenation
-- of PEN and TYPE
-- Example: 8741.22
-- 8741 is the PEN of Sonicwall
-- 22 is the TYPE 22 with pen Sonicwall
local pen_type = field:split("%.") or {}
-- tprint({field = field, field_pen = field_pen, field_type = field_type})
return pen_type[1], pen_type[2], pen_type[3]
end
-- ################################################################################
function flow_field_value_maps.map_field_value(field, value)
local field_pen, field_type = flow_field_value_maps.key_to_pen_type_and_value(field)
if field_pen ~= nil and field_type ~= nil then
-- if pen or type is nil then
-- it has not been possible to extract pen and type (string field?)
-- so no mapping can be found for this value
-- lazy init of the mapping
init_flow_field_value_map(field_pen)
-- do the actual mapping
if pen_map[field_pen] then
field, value = pen_map[field_pen].map_field_value(field_type, value)
end
end
return field, value
end
-- ################################################################################
return flow_field_value_maps