cc-mek-scada/supervisor/supervisor.lua

412 lines
21 KiB
Lua
Raw Normal View History

local comms = require("scada-common.comms")
local log = require("scada-common.log")
local util = require("scada-common.util")
local config = require("supervisor.config")
2022-05-11 15:31:02 +00:00
local svsessions = require("supervisor.session.svsessions")
local supervisor = {}
2022-04-22 15:07:59 +00:00
2023-02-21 16:05:57 +00:00
local PROTOCOL = comms.PROTOCOL
local DEVICE_TYPE = comms.DEVICE_TYPE
local ESTABLISH_ACK = comms.ESTABLISH_ACK
2023-02-21 16:05:57 +00:00
local SCADA_MGMT_TYPE = comms.SCADA_MGMT_TYPE
2022-04-22 15:07:59 +00:00
2022-03-25 16:18:33 +00:00
-- supervisory controller communications
2023-02-25 04:36:16 +00:00
---@nodiscard
2023-05-05 18:02:25 +00:00
---@param _version string supervisor version
---@param nic nic network interface device
---@param fp_ok boolean if the front panel UI is running
2023-04-17 23:48:03 +00:00
---@diagnostic disable-next-line: unused-local
function supervisor.comms(_version, nic, fp_ok)
-- print a log message to the terminal as long as the UI isn't running
local function println(message) if not fp_ok then util.println_ts(message) end end
-- channel list from config
local svr_channel = config.SVR_CHANNEL
local plc_channel = config.PLC_CHANNEL
local rtu_channel = config.RTU_CHANNEL
local crd_channel = config.CRD_CHANNEL
local pkt_channel = config.PKT_CHANNEL
-- configuration data
local num_reactors = config.NUM_REACTORS
local cooling_conf = config.REACTOR_COOLING
2023-06-05 05:13:22 +00:00
2022-03-25 16:18:33 +00:00
local self = {
2023-02-25 04:36:16 +00:00
last_est_acks = {}
2022-03-25 16:18:33 +00:00
}
2022-04-18 15:07:16 +00:00
comms.set_trusted_range(config.TRUSTED_RANGE)
2022-04-18 15:07:16 +00:00
-- PRIVATE FUNCTIONS --
-- configure modem channels
nic.closeAll()
nic.open(svr_channel)
-- pass modem, status, and config data to svsessions
svsessions.init(nic, fp_ok, num_reactors, cooling_conf)
2022-04-23 16:12:33 +00:00
2023-06-05 05:13:22 +00:00
-- send an establish request response
---@param packet scada_packet
---@param ack ESTABLISH_ACK
---@param data? any optional data
local function _send_establish(packet, ack, data)
local s_pkt = comms.scada_packet()
local m_pkt = comms.mgmt_packet()
2023-06-05 05:13:22 +00:00
m_pkt.make(SCADA_MGMT_TYPE.ESTABLISH, { ack, data })
s_pkt.make(packet.src_addr(), packet.seq_num() + 1, PROTOCOL.SCADA_MGMT, m_pkt.raw_sendable())
nic.transmit(packet.remote_channel(), svr_channel, s_pkt)
2023-06-05 05:13:22 +00:00
self.last_est_acks[packet.src_addr()] = ack
end
2022-04-18 15:07:16 +00:00
-- PUBLIC FUNCTIONS --
2023-02-25 04:36:16 +00:00
---@class superv_comms
local public = {}
2022-04-22 15:07:59 +00:00
-- parse a packet
2023-02-25 04:36:16 +00:00
---@nodiscard
2022-05-11 16:31:19 +00:00
---@param side string
---@param sender integer
---@param reply_to integer
---@param message any
---@param distance integer
---@return modbus_frame|rplc_frame|mgmt_frame|crdn_frame|nil packet
2022-05-31 19:36:17 +00:00
function public.parse_packet(side, sender, reply_to, message, distance)
2022-04-22 15:07:59 +00:00
local pkt = nil
local s_pkt = comms.scada_packet()
2022-04-22 15:07:59 +00:00
-- parse packet as generic SCADA packet
s_pkt.receive(side, sender, reply_to, message, distance)
2022-04-22 15:07:59 +00:00
if s_pkt.is_valid() then
-- get as MODBUS TCP packet
2023-02-21 16:05:57 +00:00
if s_pkt.protocol() == PROTOCOL.MODBUS_TCP then
2022-04-22 15:07:59 +00:00
local m_pkt = comms.modbus_packet()
if m_pkt.decode(s_pkt) then
pkt = m_pkt.get()
end
-- get as RPLC packet
2023-02-21 16:05:57 +00:00
elseif s_pkt.protocol() == PROTOCOL.RPLC then
2022-04-22 15:07:59 +00:00
local rplc_pkt = comms.rplc_packet()
if rplc_pkt.decode(s_pkt) then
pkt = rplc_pkt.get()
end
-- get as SCADA management packet
2023-02-21 16:05:57 +00:00
elseif s_pkt.protocol() == PROTOCOL.SCADA_MGMT then
2022-04-22 15:07:59 +00:00
local mgmt_pkt = comms.mgmt_packet()
if mgmt_pkt.decode(s_pkt) then
2022-05-02 21:43:23 +00:00
pkt = mgmt_pkt.get()
2022-04-22 15:07:59 +00:00
end
-- get as coordinator packet
2023-02-21 16:05:57 +00:00
elseif s_pkt.protocol() == PROTOCOL.SCADA_CRDN then
local crdn_pkt = comms.crdn_packet()
if crdn_pkt.decode(s_pkt) then
pkt = crdn_pkt.get()
2022-04-22 15:07:59 +00:00
end
else
log.debug("attempted parse of illegal packet type " .. s_pkt.protocol(), true)
2022-04-22 15:07:59 +00:00
end
end
return pkt
end
2022-05-11 16:31:19 +00:00
-- handle a packet
---@param packet modbus_frame|rplc_frame|mgmt_frame|crdn_frame|nil
2022-05-31 19:36:17 +00:00
function public.handle_packet(packet)
2022-04-22 15:07:59 +00:00
if packet ~= nil then
2023-06-05 05:13:22 +00:00
local l_chan = packet.scada_frame.local_channel()
local r_chan = packet.scada_frame.remote_channel()
local src_addr = packet.scada_frame.src_addr()
2022-04-22 15:07:59 +00:00
local protocol = packet.scada_frame.protocol()
2023-06-05 05:13:22 +00:00
if l_chan ~= svr_channel then
log.debug("received packet on unconfigured channel " .. l_chan, true)
elseif r_chan == plc_channel then
2023-06-05 05:13:22 +00:00
-- look for an associated session
local session = svsessions.find_plc_session(src_addr)
2022-05-13 15:38:56 +00:00
2023-06-05 05:13:22 +00:00
if protocol == PROTOCOL.RPLC then
---@cast packet rplc_frame
2022-04-22 15:07:59 +00:00
-- reactor PLC packet
2022-05-11 16:31:19 +00:00
if session ~= nil then
-- pass the packet onto the session handler
session.in_queue.push_packet(packet)
2022-04-22 15:07:59 +00:00
else
-- unknown session, force a re-link
log.debug("PLC_ESTABLISH: no session but not an establish, forcing relink")
2023-06-05 05:13:22 +00:00
_send_establish(packet.scada_frame, ESTABLISH_ACK.DENY)
2022-04-22 15:07:59 +00:00
end
2023-02-21 16:05:57 +00:00
elseif protocol == PROTOCOL.SCADA_MGMT then
2023-02-25 04:36:16 +00:00
---@cast packet mgmt_frame
2022-04-22 15:07:59 +00:00
-- SCADA management packet
2022-05-11 16:31:19 +00:00
if session ~= nil then
2022-05-02 15:42:24 +00:00
-- pass the packet onto the session handler
session.in_queue.push_packet(packet)
2023-02-21 16:05:57 +00:00
elseif packet.type == SCADA_MGMT_TYPE.ESTABLISH then
-- establish a new session
local last_ack = self.last_est_acks[src_addr]
2022-05-19 14:21:04 +00:00
-- validate packet and continue
if packet.length >= 3 and type(packet.data[1]) == "string" and type(packet.data[2]) == "string" then
2023-06-05 05:13:22 +00:00
local comms_v = packet.data[1]
local firmware_v = packet.data[2]
2023-06-05 05:13:22 +00:00
local dev_type = packet.data[3]
if comms_v ~= comms.version then
2023-06-05 05:13:22 +00:00
if last_ack ~= ESTABLISH_ACK.BAD_VERSION then
log.info(util.c("dropping PLC establish packet with incorrect comms version v", comms_v, " (expected v", comms.version, ")"))
2023-02-25 04:36:16 +00:00
end
2023-06-05 05:13:22 +00:00
_send_establish(packet.scada_frame, ESTABLISH_ACK.BAD_VERSION)
2023-02-25 04:36:16 +00:00
elseif dev_type == DEVICE_TYPE.PLC then
-- PLC linking request
if packet.length == 4 and type(packet.data[4]) == "number" then
local reactor_id = packet.data[4]
local plc_id = svsessions.establish_plc_session(src_addr, reactor_id, firmware_v)
2022-10-20 17:53:39 +00:00
if plc_id == false then
-- reactor already has a PLC assigned
2023-06-05 05:13:22 +00:00
if last_ack ~= ESTABLISH_ACK.COLLISION then
2023-02-25 04:36:16 +00:00
log.warning(util.c("PLC_ESTABLISH: assignment collision with reactor ", reactor_id))
end
2023-06-05 05:13:22 +00:00
_send_establish(packet.scada_frame, ESTABLISH_ACK.COLLISION)
else
-- got an ID; assigned to a reactor successfully
println(util.c("PLC (", firmware_v, ") [@", src_addr, "] \xbb reactor ", reactor_id, " connected"))
log.info(util.c("PLC_ESTABLISH: PLC (", firmware_v, ") [@", src_addr, "] reactor unit ", reactor_id, " PLC connected with session ID ", plc_id))
2023-06-05 05:13:22 +00:00
_send_establish(packet.scada_frame, ESTABLISH_ACK.ALLOW)
end
else
log.debug("PLC_ESTABLISH: packet length mismatch/bad parameter type")
2023-06-05 05:13:22 +00:00
_send_establish(packet.scada_frame, ESTABLISH_ACK.DENY)
end
2023-06-05 05:13:22 +00:00
else
log.debug(util.c("illegal establish packet for device ", dev_type, " on PLC channel"))
2023-06-05 05:13:22 +00:00
_send_establish(packet.scada_frame, ESTABLISH_ACK.DENY)
end
else
log.debug("invalid establish packet (on PLC channel)")
2023-06-05 05:13:22 +00:00
_send_establish(packet.scada_frame, ESTABLISH_ACK.DENY)
end
else
-- any other packet should be session related, discard it
log.debug(util.c("discarding PLC SCADA_MGMT packet without a known session from computer ", src_addr))
2023-06-05 05:13:22 +00:00
end
else
log.debug(util.c("illegal packet type ", protocol, " on PLC channel"))
2023-06-05 05:13:22 +00:00
end
elseif r_chan == rtu_channel then
-- look for an associated session
local session = svsessions.find_rtu_session(src_addr)
2023-06-05 05:13:22 +00:00
if protocol == PROTOCOL.MODBUS_TCP then
---@cast packet modbus_frame
-- MODBUS response
if session ~= nil then
-- pass the packet onto the session handler
session.in_queue.push_packet(packet)
else
-- any other packet should be session related, discard it
log.debug("discarding MODBUS_TCP packet without a known session")
end
elseif protocol == PROTOCOL.SCADA_MGMT then
---@cast packet mgmt_frame
-- SCADA management packet
if session ~= nil then
-- pass the packet onto the session handler
session.in_queue.push_packet(packet)
elseif packet.type == SCADA_MGMT_TYPE.ESTABLISH then
-- establish a new session
local last_ack = self.last_est_acks[src_addr]
2023-06-05 05:13:22 +00:00
-- validate packet and continue
if packet.length >= 3 and type(packet.data[1]) == "string" and type(packet.data[2]) == "string" then
local comms_v = packet.data[1]
local firmware_v = packet.data[2]
local dev_type = packet.data[3]
if comms_v ~= comms.version then
if last_ack ~= ESTABLISH_ACK.BAD_VERSION then
log.info(util.c("dropping RTU establish packet with incorrect comms version v", comms_v, " (expected v", comms.version, ")"))
end
_send_establish(packet.scada_frame, ESTABLISH_ACK.BAD_VERSION)
2023-02-21 16:05:57 +00:00
elseif dev_type == DEVICE_TYPE.RTU then
if packet.length == 4 then
-- this is an RTU advertisement for a new session
local rtu_advert = packet.data[4]
local s_id = svsessions.establish_rtu_session(src_addr, rtu_advert, firmware_v)
2023-02-25 04:36:16 +00:00
println(util.c("RTU (", firmware_v, ") [@", src_addr, "] \xbb connected"))
log.info(util.c("RTU_ESTABLISH: RTU (",firmware_v, ") [@", src_addr, "] connected with session ID ", s_id))
2023-06-05 05:13:22 +00:00
_send_establish(packet.scada_frame, ESTABLISH_ACK.ALLOW)
else
log.debug("RTU_ESTABLISH: packet length mismatch")
2023-06-05 05:13:22 +00:00
_send_establish(packet.scada_frame, ESTABLISH_ACK.DENY)
end
else
log.debug(util.c("illegal establish packet for device ", dev_type, " on RTU channel"))
2023-06-05 05:13:22 +00:00
_send_establish(packet.scada_frame, ESTABLISH_ACK.DENY)
end
else
log.debug("invalid establish packet (on RTU channel)")
2023-06-05 05:13:22 +00:00
_send_establish(packet.scada_frame, ESTABLISH_ACK.DENY)
end
2022-05-19 14:21:04 +00:00
else
-- any other packet should be session related, discard it
log.debug(util.c("discarding RTU SCADA_MGMT packet without a known session from computer ", src_addr))
2022-05-02 15:42:24 +00:00
end
2022-04-22 15:07:59 +00:00
else
log.debug(util.c("illegal packet type ", protocol, " on RTU channel"))
2022-04-22 15:07:59 +00:00
end
2023-06-05 05:13:22 +00:00
elseif r_chan == crd_channel then
2022-05-13 15:38:56 +00:00
-- look for an associated session
local session = svsessions.find_crd_session(src_addr)
2022-05-13 15:38:56 +00:00
2023-02-21 16:05:57 +00:00
if protocol == PROTOCOL.SCADA_MGMT then
2023-02-25 04:36:16 +00:00
---@cast packet mgmt_frame
2022-04-22 15:07:59 +00:00
-- SCADA management packet
if session ~= nil then
-- pass the packet onto the session handler
session.in_queue.push_packet(packet)
2023-02-21 16:05:57 +00:00
elseif packet.type == SCADA_MGMT_TYPE.ESTABLISH then
-- establish a new session
local last_ack = self.last_est_acks[src_addr]
-- validate packet and continue
if packet.length >= 3 and type(packet.data[1]) == "string" and type(packet.data[2]) == "string" then
2023-06-05 05:13:22 +00:00
local comms_v = packet.data[1]
local firmware_v = packet.data[2]
2023-06-05 05:13:22 +00:00
local dev_type = packet.data[3]
if comms_v ~= comms.version then
2023-06-05 05:13:22 +00:00
if last_ack ~= ESTABLISH_ACK.BAD_VERSION then
2023-02-25 04:36:16 +00:00
log.info(util.c("dropping coordinator establish packet with incorrect comms version v", comms_v, " (expected v", comms.version, ")"))
end
2023-06-05 05:13:22 +00:00
_send_establish(packet.scada_frame, ESTABLISH_ACK.BAD_VERSION)
elseif dev_type == DEVICE_TYPE.CRDN then
-- this is an attempt to establish a new coordinator session
local s_id = svsessions.establish_crd_session(src_addr, firmware_v)
2023-02-25 04:36:16 +00:00
if s_id ~= false then
local cfg = { num_reactors }
2023-02-25 04:36:16 +00:00
for i = 1, #cooling_conf do
table.insert(cfg, cooling_conf[i].BOILERS)
table.insert(cfg, cooling_conf[i].TURBINES)
2023-02-25 04:36:16 +00:00
end
println(util.c("CRD (", firmware_v, ") [@", src_addr, "] \xbb connected"))
log.info(util.c("CRD_ESTABLISH: coordinator (", firmware_v, ") [@", src_addr, "] connected with session ID ", s_id))
_send_establish(packet.scada_frame, ESTABLISH_ACK.ALLOW, cfg)
2023-02-25 04:36:16 +00:00
else
2023-06-05 05:13:22 +00:00
if last_ack ~= ESTABLISH_ACK.COLLISION then
log.info("CRD_ESTABLISH: denied new coordinator [@" .. src_addr .. "] due to already being connected to another coordinator")
2023-02-25 04:36:16 +00:00
end
2023-06-05 05:13:22 +00:00
_send_establish(packet.scada_frame, ESTABLISH_ACK.COLLISION)
2023-02-25 04:36:16 +00:00
end
else
log.debug(util.c("illegal establish packet for device ", dev_type, " on coordinator channel"))
_send_establish(packet.scada_frame, ESTABLISH_ACK.DENY)
end
else
log.debug("CRD_ESTABLISH: establish packet length mismatch")
_send_establish(packet.scada_frame, ESTABLISH_ACK.DENY)
end
else
-- any other packet should be session related, discard it
log.debug(util.c("discarding coordinator SCADA_MGMT packet without a known session from computer ", src_addr))
end
elseif protocol == PROTOCOL.SCADA_CRDN then
---@cast packet crdn_frame
-- coordinator packet
if session ~= nil then
-- pass the packet onto the session handler
session.in_queue.push_packet(packet)
else
-- any other packet should be session related, discard it
log.debug(util.c("discarding coordinator SCADA_CRDN packet without a known session from computer ", src_addr))
end
else
log.debug(util.c("illegal packet type ", protocol, " on coordinator channel"))
end
elseif r_chan == pkt_channel then
-- look for an associated session
local session = svsessions.find_pdg_session(src_addr)
if protocol == PROTOCOL.SCADA_MGMT then
---@cast packet mgmt_frame
-- SCADA management packet
if session ~= nil then
-- pass the packet onto the session handler
session.in_queue.push_packet(packet)
elseif packet.type == SCADA_MGMT_TYPE.ESTABLISH then
-- establish a new session
local last_ack = self.last_est_acks[src_addr]
-- validate packet and continue
if packet.length >= 3 and type(packet.data[1]) == "string" and type(packet.data[2]) == "string" then
local comms_v = packet.data[1]
local firmware_v = packet.data[2]
local dev_type = packet.data[3]
if comms_v ~= comms.version then
if last_ack ~= ESTABLISH_ACK.BAD_VERSION then
log.info(util.c("dropping PDG establish packet with incorrect comms version v", comms_v, " (expected v", comms.version, ")"))
end
_send_establish(packet.scada_frame, ESTABLISH_ACK.BAD_VERSION)
elseif dev_type == DEVICE_TYPE.PKT then
-- this is an attempt to establish a new pocket diagnostic session
local s_id = svsessions.establish_pdg_session(src_addr, firmware_v)
println(util.c("PKT (", firmware_v, ") [@", src_addr, "] \xbb connected"))
log.info(util.c("PDG_ESTABLISH: pocket (", firmware_v, ") [@", src_addr, "] connected with session ID ", s_id))
2023-06-05 05:13:22 +00:00
_send_establish(packet.scada_frame, ESTABLISH_ACK.ALLOW)
else
log.debug(util.c("illegal establish packet for device ", dev_type, " on pocket channel"))
2023-06-05 05:13:22 +00:00
_send_establish(packet.scada_frame, ESTABLISH_ACK.DENY)
2022-10-20 17:53:39 +00:00
end
else
log.debug("PDG_ESTABLISH: establish packet length mismatch")
2023-06-05 05:13:22 +00:00
_send_establish(packet.scada_frame, ESTABLISH_ACK.DENY)
end
else
-- any other packet should be session related, discard it
log.debug(util.c("discarding pocket SCADA_MGMT packet without a known session from computer ", src_addr))
end
2023-02-21 16:05:57 +00:00
elseif protocol == PROTOCOL.SCADA_CRDN then
2023-02-25 04:36:16 +00:00
---@cast packet crdn_frame
-- coordinator packet
if session ~= nil then
-- pass the packet onto the session handler
session.in_queue.push_packet(packet)
else
-- any other packet should be session related, discard it
log.debug(util.c("discarding pocket SCADA_CRDN packet without a known session from computer ", src_addr))
end
2022-04-22 15:07:59 +00:00
else
log.debug(util.c("illegal packet type ", protocol, " on pocket channel"))
2022-04-22 15:07:59 +00:00
end
else
2023-06-05 05:13:22 +00:00
log.debug("received packet for unknown channel " .. r_chan, true)
2022-04-22 15:07:59 +00:00
end
end
end
2022-05-11 16:31:19 +00:00
return public
2022-03-25 16:18:33 +00:00
end
return supervisor