cc-mek-scada/supervisor/session/svsessions.lua

494 lines
15 KiB
Lua
Raw Normal View History

local log = require("scada-common.log")
local mqueue = require("scada-common.mqueue")
local util = require("scada-common.util")
local config = require("supervisor.config")
local databus = require("supervisor.databus")
local facility = require("supervisor.facility")
2022-10-03 01:17:13 +00:00
local svqtypes = require("supervisor.session.svqtypes")
2022-05-11 15:31:02 +00:00
local coordinator = require("supervisor.session.coordinator")
2022-05-31 19:36:17 +00:00
local plc = require("supervisor.session.plc")
local pocket = require("supervisor.session.pocket")
2022-05-31 19:36:17 +00:00
local rtu = require("supervisor.session.rtu")
2022-04-22 15:07:59 +00:00
-- Supervisor Sessions Handler
local SV_Q_DATA = svqtypes.SV_Q_DATA
local PLC_S_CMDS = plc.PLC_S_CMDS
local PLC_S_DATA = plc.PLC_S_DATA
local CRD_S_DATA = coordinator.CRD_S_DATA
2022-10-03 01:17:13 +00:00
local svsessions = {}
2023-05-05 17:04:13 +00:00
---@enum SESSION_TYPE
local SESSION_TYPE = {
RTU_SESSION = 0, -- RTU gateway
PLC_SESSION = 1, -- reactor PLC
CRD_SESSION = 2, -- coordinator
PDG_SESSION = 3 -- pocket diagnostics
2022-04-22 15:07:59 +00:00
}
svsessions.SESSION_TYPE = SESSION_TYPE
2022-04-22 15:07:59 +00:00
local self = {
modem = nil, ---@type table|nil
fp_ok = false,
2022-04-22 15:07:59 +00:00
num_reactors = 0,
facility = nil, ---@type facility|nil
sessions = { rtu = {}, plc = {}, crd = {}, pdg = {} },
next_ids = { rtu = 0, plc = 0, crd = 0, pdg = 0 }
2022-04-22 15:07:59 +00:00
}
---@alias sv_session_structs plc_session_struct|rtu_session_struct|crd_session_struct|pdg_session_struct
-- PRIVATE FUNCTIONS --
-- handle a session output queue
---@param session sv_session_structs
local function _sv_handle_outq(session)
-- record handler start time
local handle_start = util.time()
-- process output queue
while session.out_queue.ready() do
-- get a new message to process
local msg = session.out_queue.pop()
if msg ~= nil then
if msg.qtype == mqueue.TYPE.PACKET then
-- handle a packet to be sent
self.modem.transmit(session.r_chan, config.SVR_CHANNEL, msg.message.raw_sendable())
elseif msg.qtype == mqueue.TYPE.COMMAND then
-- handle instruction/notification
elseif msg.qtype == mqueue.TYPE.DATA then
-- instruction/notification with body
local cmd = msg.message ---@type queue_data
if cmd.key < SV_Q_DATA.__END_PLC_CMDS__ then
-- PLC commands from coordinator
local plc_s = svsessions.get_reactor_session(cmd.val[1])
if plc_s ~= nil then
if cmd.key == SV_Q_DATA.START then
plc_s.in_queue.push_command(PLC_S_CMDS.ENABLE)
elseif cmd.key == SV_Q_DATA.SCRAM then
plc_s.in_queue.push_command(PLC_S_CMDS.SCRAM)
elseif cmd.key == SV_Q_DATA.RESET_RPS then
plc_s.in_queue.push_command(PLC_S_CMDS.RPS_RESET)
elseif cmd.key == SV_Q_DATA.SET_BURN and type(cmd.val) == "table" and #cmd.val == 2 then
plc_s.in_queue.push_data(PLC_S_DATA.BURN_RATE, cmd.val[2])
else
log.debug(util.c("[SVS] unknown PLC SV queue command ", cmd.key))
end
end
else
local crd_s = svsessions.get_crd_session()
2023-02-20 05:49:37 +00:00
if crd_s ~= nil then
if cmd.key == SV_Q_DATA.CRDN_ACK then
-- ack to be sent to coordinator
crd_s.in_queue.push_data(CRD_S_DATA.CMD_ACK, cmd.val)
2023-02-20 05:49:37 +00:00
elseif cmd.key == SV_Q_DATA.PLC_BUILD_CHANGED then
-- a PLC build has changed
crd_s.in_queue.push_data(CRD_S_DATA.RESEND_PLC_BUILD, cmd.val)
elseif cmd.key == SV_Q_DATA.RTU_BUILD_CHANGED then
-- an RTU build has changed
crd_s.in_queue.push_data(CRD_S_DATA.RESEND_RTU_BUILD, cmd.val)
end
end
end
end
end
-- max 100ms spent processing queue
if util.time() - handle_start > 100 then
log.warning("[SVS] supervisor out queue handler exceeded 100ms queue process limit")
log.warning(util.c("[SVS] offending session: ", session))
break
end
end
end
-- iterate all the given sessions
2022-05-11 16:31:19 +00:00
---@param sessions table
local function _iterate(sessions)
for i = 1, #sessions do
local session = sessions[i] ---@type sv_session_structs
2022-10-03 01:17:13 +00:00
if session.open and session.instance.iterate() then
_sv_handle_outq(session)
2022-10-03 01:17:13 +00:00
else
session.open = false
end
end
end
-- cleanly close a session
---@param session sv_session_structs
local function _shutdown(session)
session.open = false
session.instance.close()
-- send packets in out queue (for the close packet)
while session.out_queue.ready() do
local msg = session.out_queue.pop()
2022-05-11 16:31:19 +00:00
if msg ~= nil and msg.qtype == mqueue.TYPE.PACKET then
self.modem.transmit(session.r_chan, config.SVR_CHANNEL, msg.message.raw_sendable())
end
end
log.debug(util.c("[SVS] closed session ", session))
end
-- close connections
2022-05-11 16:31:19 +00:00
---@param sessions table
local function _close(sessions)
for i = 1, #sessions do
local session = sessions[i] ---@type sv_session_structs
2023-04-17 23:48:03 +00:00
if session.open then _shutdown(session) end
end
end
-- check if a watchdog timer event matches that of one of the provided sessions
2022-05-11 16:31:19 +00:00
---@param sessions table
---@param timer_event number
local function _check_watchdogs(sessions, timer_event)
for i = 1, #sessions do
local session = sessions[i] ---@type sv_session_structs
if session.open then
local triggered = session.instance.check_wd(timer_event)
if triggered then
log.debug(util.c("[SVS] watchdog closing session ", session, "..."))
_shutdown(session)
end
end
end
end
-- delete any closed sessions
2022-05-11 16:31:19 +00:00
---@param sessions table
local function _free_closed(sessions)
2022-05-16 21:11:46 +00:00
local f = function (session) return session.open end
2022-10-03 01:17:13 +00:00
---@param session sv_session_structs
2022-10-03 01:17:13 +00:00
local on_delete = function (session)
log.debug(util.c("[SVS] free'ing closed session ", session))
2022-10-03 01:17:13 +00:00
end
2022-05-16 21:11:46 +00:00
util.filter_table(sessions, f, on_delete)
end
-- find a session by computer ID
2023-02-25 04:36:16 +00:00
---@nodiscard
---@param list table
---@param s_addr integer
---@return sv_session_structs|nil
local function _find_session(list, s_addr)
for i = 1, #list do
if list[i].s_addr == s_addr then return list[i] end
end
return nil
end
-- PUBLIC FUNCTIONS --
-- initialize svsessions
---@param modem table modem device
---@param fp_ok boolean front panel active
---@param num_reactors integer number of reactors
---@param cooling_conf table cooling configuration definition
function svsessions.init(modem, fp_ok, num_reactors, cooling_conf)
self.modem = modem
self.fp_ok = fp_ok
self.num_reactors = num_reactors
self.facility = facility.new(num_reactors, cooling_conf)
end
-- re-link the modem
2022-05-11 16:31:19 +00:00
---@param modem table
function svsessions.relink_modem(modem)
2022-04-23 16:12:33 +00:00
self.modem = modem
end
-- find an RTU session by the computer ID
2023-02-25 04:36:16 +00:00
---@nodiscard
---@param source_addr integer
2022-05-13 15:38:56 +00:00
---@return rtu_session_struct|nil
function svsessions.find_rtu_session(source_addr)
2022-05-13 15:38:56 +00:00
-- check RTU sessions
local session = _find_session(self.sessions.rtu, source_addr)
---@cast session rtu_session_struct|nil
2023-02-25 04:36:16 +00:00
return session
2022-05-13 15:38:56 +00:00
end
-- find a PLC session by the computer ID
2023-02-25 04:36:16 +00:00
---@nodiscard
---@param source_addr integer
2022-05-13 15:38:56 +00:00
---@return plc_session_struct|nil
function svsessions.find_plc_session(source_addr)
2022-05-13 15:38:56 +00:00
-- check PLC sessions
local session = _find_session(self.sessions.plc, source_addr)
---@cast session plc_session_struct|nil
2023-02-25 04:36:16 +00:00
return session
2022-05-13 15:38:56 +00:00
end
-- find a coordinator session by the computer ID
2023-02-25 04:36:16 +00:00
---@nodiscard
---@param source_addr integer
---@return crd_session_struct|nil
function svsessions.find_crd_session(source_addr)
2023-06-05 05:13:22 +00:00
-- check coordinator sessions
local session = _find_session(self.sessions.crd, source_addr)
---@cast session crd_session_struct|nil
2023-02-25 04:36:16 +00:00
return session
2022-05-13 15:38:56 +00:00
end
-- find a pocket diagnostics session by the computer ID
2023-02-25 04:36:16 +00:00
---@nodiscard
---@param source_addr integer
---@return pdg_session_struct|nil
function svsessions.find_pdg_session(source_addr)
-- check diagnostic sessions
local session = _find_session(self.sessions.pdg, source_addr)
---@cast session pdg_session_struct|nil
2023-02-25 04:36:16 +00:00
return session
2022-04-22 15:07:59 +00:00
end
2022-10-20 17:53:39 +00:00
-- get the a coordinator session if exists
2023-02-25 04:36:16 +00:00
---@nodiscard
---@return crd_session_struct|nil
function svsessions.get_crd_session()
return self.sessions.crd[1]
2022-10-20 17:53:39 +00:00
end
2022-05-02 15:42:24 +00:00
-- get a session by reactor ID
2023-02-25 04:36:16 +00:00
---@nodiscard
2022-05-11 16:31:19 +00:00
---@param reactor integer
2022-05-13 15:38:56 +00:00
---@return plc_session_struct|nil session
2022-05-31 19:36:17 +00:00
function svsessions.get_reactor_session(reactor)
2022-04-22 15:07:59 +00:00
local session = nil
for i = 1, #self.sessions.plc do
if self.sessions.plc[i].reactor == reactor then
session = self.sessions.plc[i]
2022-04-22 15:07:59 +00:00
end
end
return session
end
2022-05-02 15:42:24 +00:00
-- establish a new PLC session
2023-02-25 04:36:16 +00:00
---@nodiscard
---@param source_addr integer
2022-05-11 16:31:19 +00:00
---@param for_reactor integer
2022-05-19 14:21:04 +00:00
---@param version string
2022-05-11 16:31:19 +00:00
---@return integer|false session_id
function svsessions.establish_plc_session(source_addr, for_reactor, version)
if svsessions.get_reactor_session(for_reactor) == nil and for_reactor >= 1 and for_reactor <= self.num_reactors then
2022-05-11 16:31:19 +00:00
---@class plc_session_struct
2022-04-22 15:07:59 +00:00
local plc_s = {
s_type = "plc",
2022-04-22 15:07:59 +00:00
open = true,
reactor = for_reactor,
2022-05-19 14:21:04 +00:00
version = version,
r_chan = config.PLC_CHANNEL,
s_addr = source_addr,
2022-04-22 15:07:59 +00:00
in_queue = mqueue.new(),
out_queue = mqueue.new(),
instance = nil ---@type plc_session
2022-04-22 15:07:59 +00:00
}
local id = self.next_ids.plc
plc_s.instance = plc.new_session(id, source_addr, for_reactor, plc_s.in_queue, plc_s.out_queue,
config.PLC_TIMEOUT, self.fp_ok)
table.insert(self.sessions.plc, plc_s)
local units = self.facility.get_units()
units[for_reactor].link_plc_session(plc_s)
local mt = {
---@param s plc_session_struct
__to_string = function (s) return util.c("PLC [", s.instance.get_id(), "] for reactor #", s.reactor,
" (@", s.s_addr, ")") end
}
setmetatable(plc_s, mt)
databus.tx_plc_connected(for_reactor, version, source_addr)
log.debug(util.c("[SVS] established new session: ", plc_s))
self.next_ids.plc = id + 1
2022-04-22 15:07:59 +00:00
-- success
return plc_s.instance.get_id()
else
-- reactor already assigned to a PLC or ID out of range
2022-04-22 15:07:59 +00:00
return false
end
end
-- establish a new RTU session
2023-02-25 04:36:16 +00:00
---@nodiscard
---@param source_addr integer
---@param advertisement table
---@param version string
---@return integer session_id
function svsessions.establish_rtu_session(source_addr, advertisement, version)
---@class rtu_session_struct
local rtu_s = {
s_type = "rtu",
open = true,
2022-05-19 14:21:04 +00:00
version = version,
r_chan = config.RTU_CHANNEL,
s_addr = source_addr,
in_queue = mqueue.new(),
out_queue = mqueue.new(),
instance = nil ---@type rtu_session
}
local id = self.next_ids.rtu
rtu_s.instance = rtu.new_session(id, source_addr, rtu_s.in_queue, rtu_s.out_queue, config.RTU_TIMEOUT,
advertisement, self.facility, self.fp_ok)
table.insert(self.sessions.rtu, rtu_s)
local mt = {
---@param s rtu_session_struct
__to_string = function (s) return util.c("RTU [", s.instance.get_id(), "] (@", s.s_addr, ")") end
}
setmetatable(rtu_s, mt)
databus.tx_rtu_connected(id, version, source_addr)
log.debug(util.c("[SVS] established new session: ", rtu_s))
self.next_ids.rtu = id + 1
-- success
return id
end
-- establish a new coordinator session
2023-02-25 04:36:16 +00:00
---@nodiscard
---@param source_addr integer
---@param version string
---@return integer|false session_id
function svsessions.establish_crd_session(source_addr, version)
if svsessions.get_crd_session() == nil then
---@class crd_session_struct
local crd_s = {
2022-10-20 17:53:39 +00:00
s_type = "crd",
open = true,
version = version,
r_chan = config.CRD_CHANNEL,
s_addr = source_addr,
2022-10-20 17:53:39 +00:00
in_queue = mqueue.new(),
out_queue = mqueue.new(),
instance = nil ---@type crd_session
2022-10-20 17:53:39 +00:00
}
local id = self.next_ids.crd
crd_s.instance = coordinator.new_session(id, source_addr, crd_s.in_queue, crd_s.out_queue, config.CRD_TIMEOUT,
self.facility, self.fp_ok)
table.insert(self.sessions.crd, crd_s)
local mt = {
---@param s crd_session_struct
__to_string = function (s) return util.c("CRD [", s.instance.get_id(), "] (@", s.s_addr, ")") end
}
setmetatable(crd_s, mt)
databus.tx_crd_connected(version, source_addr)
log.debug(util.c("[SVS] established new session: ", crd_s))
self.next_ids.crd = id + 1
2022-10-20 17:53:39 +00:00
-- success
return id
2022-10-20 17:53:39 +00:00
else
-- we already have a coordinator linked
return false
end
end
-- establish a new pocket diagnostics session
---@nodiscard
---@param source_addr integer
---@param version string
---@return integer|false session_id
function svsessions.establish_pdg_session(source_addr, version)
---@class pdg_session_struct
local pdg_s = {
s_type = "pkt",
open = true,
version = version,
r_chan = config.PKT_CHANNEL,
s_addr = source_addr,
in_queue = mqueue.new(),
out_queue = mqueue.new(),
instance = nil ---@type pdg_session
}
local id = self.next_ids.pdg
pdg_s.instance = pocket.new_session(id, source_addr, pdg_s.in_queue, pdg_s.out_queue, config.PKT_TIMEOUT, self.fp_ok)
table.insert(self.sessions.pdg, pdg_s)
local mt = {
---@param s pdg_session_struct
__to_string = function (s) return util.c("PDG [", s.instance.get_id(), "] (@", s.s_addr, ")") end
}
setmetatable(pdg_s, mt)
databus.tx_pdg_connected(id, version, source_addr)
log.debug(util.c("[SVS] established new session: ", pdg_s))
self.next_ids.pdg = id + 1
-- success
return id
end
2022-05-02 15:42:24 +00:00
-- attempt to identify which session's watchdog timer fired
2022-05-11 16:31:19 +00:00
---@param timer_event number
2022-05-31 19:36:17 +00:00
function svsessions.check_all_watchdogs(timer_event)
for _, list in pairs(self.sessions) do _check_watchdogs(list, timer_event) end
2022-04-23 16:12:33 +00:00
end
-- iterate all sessions, and update facility/unit data & process control logic
2022-05-31 19:36:17 +00:00
function svsessions.iterate_all()
-- iterate sessions
for _, list in pairs(self.sessions) do _iterate(list) end
-- report RTU sessions to facility
self.facility.report_rtus(self.sessions.rtu)
-- iterate facility
self.facility.update()
-- iterate units
self.facility.update_units()
2022-04-22 15:07:59 +00:00
end
2022-05-02 15:42:24 +00:00
-- delete all closed sessions
2022-05-31 19:36:17 +00:00
function svsessions.free_all_closed()
for _, list in pairs(self.sessions) do _free_closed(list) end
2022-04-22 15:07:59 +00:00
end
2022-05-02 15:42:24 +00:00
-- close all open connections
2022-05-31 19:36:17 +00:00
function svsessions.close_all()
2022-05-02 15:42:24 +00:00
-- close sessions
for _, list in pairs(self.sessions) do _close(list) end
2022-05-02 15:42:24 +00:00
-- free sessions
svsessions.free_all_closed()
2022-05-02 15:42:24 +00:00
end
return svsessions