mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-30 07:59:35 +00:00
371 lines
11 KiB
Lua
371 lines
11 KiB
Lua
--
|
|
-- (C) 2013-20 - ntop.org
|
|
--
|
|
|
|
dirs = ntop.getDirs()
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
|
require "lua_utils"
|
|
local host_pools_utils = require "host_pools_utils"
|
|
local discover = require("discover_utils")
|
|
|
|
sendHTTPContentTypeHeader('text/html')
|
|
|
|
-- Table parameters
|
|
local all = _GET["all"]
|
|
local currentPage = _GET["currentPage"]
|
|
local perPage = _GET["perPage"]
|
|
local sortColumn = _GET["sortColumn"]
|
|
local sortOrder = _GET["sortOrder"]
|
|
local group_col = _GET["grouped_by"]
|
|
local network_n = _GET["network"]
|
|
local country_n = _GET["country"]
|
|
local os_n = _GET["os"]
|
|
local pool_n = _GET["pool"]
|
|
local ipver_n = _GET["version"]
|
|
|
|
interface.select(ifname)
|
|
local ifstats = interface.getStats()
|
|
|
|
if (group_col == nil) then
|
|
group_col = "asn"
|
|
end
|
|
|
|
-- Get from redis the throughput type bps or pps
|
|
local throughput_type = getThroughputType()
|
|
|
|
if ((sortColumn == nil) or (sortColumn == "column_")) then
|
|
sortColumn = getDefaultTableSort(group_col)
|
|
--if(sortColumn == "column_") then sortColumn = "column_name" end
|
|
else
|
|
if ((sortColumn ~= "column_") and (sortColumn ~= "")) then
|
|
tablePreferences("sort_"..group_col,sortColumn)
|
|
end
|
|
end
|
|
|
|
if(sortOrder == nil) then
|
|
sortOrder = getDefaultTableSortOrder(group_col)
|
|
else
|
|
if ((sortColumn ~= "column_") and (sortColumn ~= "")) then
|
|
tablePreferences("sort_order_"..group_col,sortOrder)
|
|
end
|
|
end
|
|
|
|
if(currentPage == nil) then
|
|
currentPage = 1
|
|
else
|
|
currentPage = tonumber(currentPage)
|
|
end
|
|
|
|
if(perPage == nil) then
|
|
perPage = getDefaultTableSize()
|
|
else
|
|
perPage = tonumber(perPage)
|
|
tablePreferences("rows_number",perPage)
|
|
end
|
|
|
|
local to_skip = (currentPage-1) * perPage
|
|
|
|
if (all ~= nil) then
|
|
perPage = 0
|
|
currentPage = 0
|
|
end
|
|
|
|
if (network_n == nil and country_n == nil and os_n == nil and pool_n == nil) then -- single group info requested
|
|
print ("{ \"currentPage\" : " .. currentPage .. ",\n \"data\" : [\n")
|
|
end
|
|
local num = 0
|
|
local total = 0
|
|
|
|
local now = os.time()
|
|
local vals = {}
|
|
|
|
local stats_by_group_col = {}
|
|
|
|
local stats_by_group_key = interface.getGroupedHosts(false, -- do not show details
|
|
"column_"..group_col, -- group column
|
|
country_n, -- country filter
|
|
os_n, -- OS filter
|
|
nil, -- VLAN filter
|
|
nil, -- ASN filter
|
|
tonumber(network_n), -- Network filter
|
|
tonumber(pool_n), -- Host Pool filter
|
|
tonumber(ipver_n)) -- IP version filter (4 or 6)
|
|
stats_by_group_col = stats_by_group_key
|
|
|
|
local function find_stats(value_id)
|
|
for _, group in pairs(stats_by_group_col or {}) do
|
|
if group["id"] == value_id then
|
|
return group
|
|
end
|
|
end
|
|
end
|
|
|
|
--[[
|
|
Prepares a json containing table data, together with HTML.
|
|
--]]
|
|
|
|
local function print_single_group(value)
|
|
print ('{ ')
|
|
print ('\"key\" : \"'..value["id"]..'\",')
|
|
|
|
print ("\"column_id\" : \"<A HREF='"..ntop.getHttpPrefix().."/lua/")
|
|
if (group_col == "country" or country_n ~= nil) then
|
|
print("hosts_stats.lua?country="..value["id"].."'>")
|
|
print(getFlag(value["country"]).."  ")
|
|
elseif (group_col == "os" or os_n ~= nil) then
|
|
print("hosts_stats.lua?os=".. value["id"] .."'>")
|
|
elseif (group_col == "local_network_id" or group_col == "local_network" or network_n ~= nil) then
|
|
print("hosts_stats.lua?network="..tostring(value["id"]))
|
|
if not isEmptyString(ipver_n) then print("&version="..ipver_n) end
|
|
print("'>")
|
|
elseif (group_col == "pool_id" or pool_n ~= nil) then
|
|
print("hosts_stats.lua?pool="..tostring(value["id"]).."'>")
|
|
elseif (group_col == "mac") then
|
|
print("hosts_stats.lua?mac="..value["name"].."'>")
|
|
else
|
|
print("hosts_stats.lua'>")
|
|
end
|
|
|
|
if (group_col == "local_network_id" or group_col == "local_network" or network_n ~= nil) then
|
|
print(getFullLocalNetworkName(value["name"])..'</A> ')
|
|
print('", "column_chart": "')
|
|
if tonumber(value["id"]) ~= -1 and interface.isPcapDumpInterface() == false then
|
|
print('<A HREF=\''..ntop.getHttpPrefix()..'/lua/network_details.lua?network='..value["id"]..'&page=historical\'><i class=\'fas fa-chart-area fa-lg\'></i></A>')
|
|
else
|
|
print("-")
|
|
end
|
|
print('", ')
|
|
elseif(group_col == "mac") then
|
|
manufacturer = get_manufacturer_mac(value["name"])
|
|
if(manufacturer == nil) then manufacturer = "" end
|
|
print(manufacturer..'</A>", ')
|
|
elseif(group_col == "pool_id") then
|
|
local pool_name = host_pools_utils.getPoolName(getInterfaceId(ifname), tostring(value["id"]))
|
|
|
|
print(pool_name..'</A> " , ')
|
|
print('"column_chart": "')
|
|
|
|
if areHostPoolsTimeseriesEnabled(getInterfaceId(ifname)) then
|
|
print('<A HREF='..ntop.getHttpPrefix()..'/lua/pool_details.lua?pool='..value["id"]..'&page=historical><i class=\'fas fa-chart-area fa-lg\'></i></A>')
|
|
else
|
|
print('')
|
|
end
|
|
|
|
print('", ')
|
|
elseif(group_col == "asn") then
|
|
print(value["id"]..'</A>", ')
|
|
print('"column_chart": "')
|
|
|
|
if areASTimeseriesEnabled(getInterfaceId(ifname)) then
|
|
print('<A HREF='..ntop.getHttpPrefix()..'/lua/as_details.lua?asn='..value["id"]..'&page=historical><i class=\'fas fa-chart-area fa-lg\'></i></A>')
|
|
else
|
|
print('')
|
|
end
|
|
print('", ')
|
|
elseif(group_col == "country" and value["id"] == "Uncategorized") then
|
|
print('</A>'..value["id"]..'", ')
|
|
elseif(group_col == "os") then
|
|
print(discover.getOsAndIcon(value["id"]) ..'</A>", ')
|
|
else
|
|
print(value["id"]..'</A>", ')
|
|
end
|
|
|
|
local alt = getHostAltName(value["id"])
|
|
|
|
if((alt ~= nil) and (alt ~= value["id"])) then alt = " ("..alt..")" else alt = "" end
|
|
print('"column_link": "<A HREF=\''..ntop.getHttpPrefix()..'/lua/mac_details.lua?mac='.. value["id"] ..'\'>'.. value["id"]..alt..'</A>')
|
|
|
|
-- TODO how is this used?
|
|
--[[if(not(isSpecialMac(value["id"]))) then
|
|
local icon = getHostIcon(value["id"])
|
|
|
|
if(icon ~= "") then
|
|
print(icon)
|
|
end
|
|
end]]
|
|
|
|
print('",')
|
|
|
|
if(group_col == "mac") then
|
|
print('"column_manufacturer": "'..manufacturer..'",')
|
|
end
|
|
|
|
print('"column_hosts" : "' .. formatValue(value["num_hosts"]) ..'",')
|
|
|
|
print('"column_num_flows" : "' .. formatValue(value["num_flows"]) ..'",')
|
|
|
|
if isBridgeInterface(ifstats) then
|
|
print('"column_num_dropped_flows" : "' .. formatValue(value["num_dropped_flows"] or 0) ..'",')
|
|
end
|
|
|
|
print ("\"column_alerts\" : \"")
|
|
if((value["num_alerts"] ~= nil) and (value["num_alerts"] > 0)) then
|
|
print("<font color=#B94A48>"..formatValue(value["num_alerts"]).."</font>")
|
|
else
|
|
print("0")
|
|
end
|
|
print('", ')
|
|
|
|
--- TODO: name for VLANs?
|
|
if ( group_col == "country" or country_n ~= nil) then
|
|
local charts_enabled = areCountryTimeseriesEnabled(interface.getId())
|
|
if(charts_enabled) then
|
|
print("\"column_chart\" : \"")
|
|
if areCountryTimeseriesEnabled(getInterfaceId(ifname)) then
|
|
print('<A HREF=\''..ntop.getHttpPrefix()..'/lua/country_details.lua?country='..value["id"]..'&page=historical\'><i class=\'fas fa-chart-area fa-lg\'></i></A>')
|
|
else
|
|
print("-")
|
|
end
|
|
print("\", ")
|
|
end
|
|
|
|
print("\"column_name\" : \""..value["id"])
|
|
elseif ( group_col == "os" or os_n ~= nil) then
|
|
print("\"column_name\" : \"".. discover.getOsName(value["id"]))
|
|
else
|
|
print("\"column_name\" : \""..value["name"])
|
|
end
|
|
print(" "..getFlag(value["country"])..'", ')
|
|
|
|
print("\"column_since\" : \"" .. secondsToTime(now-value["seen.first"]+1) .. "\", ")
|
|
|
|
sent2rcvd = round((value["bytes.sent"] * 100) / (value["bytes.sent"]+value["bytes.rcvd"]), 0)
|
|
print ("\"column_breakdown\" : \"<div class='progress'><div class='progress-bar bg-warning' style='width: "
|
|
.. sent2rcvd .."%;'>Sent</div><div class='progress-bar bg-info' style='width: "
|
|
.. (100-sent2rcvd) .. "%;'>Rcvd</div></div>")
|
|
print('", ')
|
|
|
|
if (throughput_type == "pps") then
|
|
print ("\"column_thpt\" : \"" .. pktsToSize(value["throughput_pps"]).. " ")
|
|
else
|
|
print ("\"column_thpt\" : \"" .. bitsToSize(8*value["throughput_bps"]).. " ")
|
|
end
|
|
print('", ')
|
|
|
|
print("\"column_traffic\" : \"" .. bytesToSize(value["bytes.sent"]+value["bytes.rcvd"]))
|
|
|
|
print("\" } ")
|
|
end
|
|
|
|
if (country_n ~= nil) then
|
|
country_val = find_stats(country_n)
|
|
if (country_val == nil) then
|
|
print('{}')
|
|
else
|
|
print_single_group(country_val)
|
|
end
|
|
stats_by_group_col = {}
|
|
|
|
elseif (os_n ~= nil) then
|
|
os_val = find_stats(os_n)
|
|
if (os_val == nil) then
|
|
print('{}')
|
|
else
|
|
print_single_group(os_val)
|
|
end
|
|
stats_by_group_col = {}
|
|
elseif (network_n ~= nil) then
|
|
network_val = find_stats(tonumber(network_n))
|
|
if (network_val == nil) then
|
|
print('{}')
|
|
else
|
|
print_single_group(network_val)
|
|
end
|
|
stats_by_group_col = {}
|
|
elseif (pool_n ~= nil) then
|
|
pool_val = find_stats(tonumber(pool_n))
|
|
if (pool_val == nil) then
|
|
print('{}')
|
|
else
|
|
print_single_group(pool_val)
|
|
end
|
|
stats_by_group_col = {}
|
|
end
|
|
|
|
vals = { }
|
|
for key,value in pairs(stats_by_group_col) do
|
|
v = stats_by_group_col[key]
|
|
if((key ~= nil) and (v ~= nil)) then
|
|
if(sortColumn == "column_id") then
|
|
vals[key] = v["id"]
|
|
elseif(sortColumn == "column_name") then
|
|
vals[key] = v["name"]
|
|
elseif(sortColumn == "column_hosts") then
|
|
vals[key] = v["num_hosts"]
|
|
elseif(sortColumn == "column_num_flows") then
|
|
vals[key] = v["num_flows"]
|
|
elseif(sortColumn == "column_num_dropped_flows") then
|
|
vals[key] = v["num_dropped_flows"]
|
|
elseif(sortColumn == "column_since") then
|
|
vals[key] = (now-v["seen.first"])
|
|
elseif(sortColumn == "column_alerts") then
|
|
vals[key] = (now-v["num_alerts"])
|
|
elseif(sortColumn == "column_last") then
|
|
vals[key] = (now-stats_by_group_key[col]["seen.last"]+1)
|
|
elseif(sortColumn == "column_thpt") then
|
|
vals[key] = v["throughput_"..throughput_type]
|
|
elseif(sortColumn == "column_queries") then
|
|
vals[key] = v["queries.rcvd"]
|
|
elseif(sortColumn == "column_manufacturer") then
|
|
local m = get_manufacturer_mac(key)
|
|
vals[key] = m
|
|
else
|
|
vals[key] = (v["bytes.sent"] + v["bytes.rcvd"])
|
|
end
|
|
end
|
|
end
|
|
|
|
--table.sort(vals)
|
|
|
|
if(sortOrder == "asc") then
|
|
funct = asc
|
|
else
|
|
funct = rev
|
|
end
|
|
|
|
local iterator
|
|
if sortColumn == "column_id" then
|
|
-- Sort for this column is already provided by C, only the sort order can be reversed here
|
|
iterator = pairsByKeys
|
|
else
|
|
-- We provide our own sort
|
|
iterator = pairsByValues
|
|
end
|
|
|
|
num = 0
|
|
for _key, _val in iterator(vals, funct) do
|
|
value = stats_by_group_col[_key]
|
|
|
|
-- e.g. this is empty for hosts without a country
|
|
if not isEmptyString(value["id"]) then
|
|
if(to_skip > 0) then
|
|
to_skip = to_skip-1
|
|
else
|
|
if((num < perPage) or (all ~= nil))then
|
|
if(num > 0) then
|
|
print ",\n"
|
|
end
|
|
print_single_group(value)
|
|
num = num + 1
|
|
end
|
|
end
|
|
total = total + 1
|
|
end
|
|
end -- for
|
|
|
|
if (network_n == nil and country_n == nil and os_n == nil and pool_n == nil) then -- single group info requested
|
|
print ("\n], \"perPage\" : " .. perPage .. ",\n")
|
|
end
|
|
|
|
if(sortColumn == nil) then
|
|
sortColumn = ""
|
|
end
|
|
|
|
if(sortOrder == nil) then
|
|
sortOrder = ""
|
|
end
|
|
|
|
if (network_n == nil and country_n == nil and os_n == nil and pool_n == nil) then -- single group info requested
|
|
print ("\"sort\" : [ [ \"" .. sortColumn .. "\", \"" .. sortOrder .."\" ] ],\n")
|
|
print ("\"totalRows\" : " .. total .. " \n}")
|
|
end
|