2022-03-25 16:17:46 +00:00
|
|
|
-- #REQUIRES comms.lua
|
|
|
|
|
2022-01-14 21:33:09 +00:00
|
|
|
-- Internal Safety System
|
|
|
|
-- identifies dangerous states and SCRAMs reactor if warranted
|
2022-04-07 15:12:41 +00:00
|
|
|
-- autonomous from main SCADA supervisor/coordinator control
|
2022-01-14 21:33:09 +00:00
|
|
|
function iss_init(reactor)
|
|
|
|
local self = {
|
2022-01-22 19:26:25 +00:00
|
|
|
reactor = reactor,
|
|
|
|
timed_out = false,
|
|
|
|
tripped = false,
|
|
|
|
trip_cause = ""
|
2022-01-14 21:33:09 +00:00
|
|
|
}
|
|
|
|
|
2022-04-07 15:12:41 +00:00
|
|
|
-- re-link a reactor after a peripheral re-connect
|
2022-04-03 16:08:22 +00:00
|
|
|
local reconnect_reactor = function (reactor)
|
|
|
|
self.reactor = reactor
|
|
|
|
end
|
|
|
|
|
2022-04-07 15:12:41 +00:00
|
|
|
-- check for critical damage
|
2022-04-05 21:25:56 +00:00
|
|
|
local damage_critical = function ()
|
2022-04-07 15:12:41 +00:00
|
|
|
local damage_percent = self.reactor.getDamagePercent()
|
|
|
|
if damage_percent == nil then
|
|
|
|
-- lost the peripheral or terminated, handled later
|
|
|
|
log._error("ISS: failed to check reactor damage")
|
|
|
|
return false
|
|
|
|
else
|
|
|
|
return damage_percent >= 100
|
|
|
|
end
|
2022-04-05 21:25:56 +00:00
|
|
|
end
|
|
|
|
|
2022-04-07 15:12:41 +00:00
|
|
|
-- check for heated coolant backup
|
2022-04-05 21:25:56 +00:00
|
|
|
local excess_heated_coolant = function ()
|
2022-04-07 15:12:41 +00:00
|
|
|
local hc_needed = self.reactor.getHeatedCoolantNeeded()
|
|
|
|
if hc_needed == nil then
|
|
|
|
-- lost the peripheral or terminated, handled later
|
|
|
|
log._error("ISS: failed to check reactor heated coolant level")
|
|
|
|
return false
|
|
|
|
else
|
|
|
|
return hc_needed == 0
|
|
|
|
end
|
2022-04-05 21:25:56 +00:00
|
|
|
end
|
|
|
|
|
2022-04-07 15:12:41 +00:00
|
|
|
-- check for excess waste
|
2022-04-05 21:25:56 +00:00
|
|
|
local excess_waste = function ()
|
2022-04-07 15:12:41 +00:00
|
|
|
local w_needed = self.reactor.getWasteNeeded()
|
|
|
|
if w_needed == nil then
|
|
|
|
-- lost the peripheral or terminated, handled later
|
|
|
|
log._error("ISS: failed to check reactor waste level")
|
|
|
|
return false
|
|
|
|
else
|
|
|
|
return w_needed == 0
|
|
|
|
end
|
2022-04-05 21:25:56 +00:00
|
|
|
end
|
|
|
|
|
2022-04-07 15:12:41 +00:00
|
|
|
-- check if the reactor is at a critically high temperature
|
2022-04-05 21:25:56 +00:00
|
|
|
local high_temp = function ()
|
|
|
|
-- mekanism: MAX_DAMAGE_TEMPERATURE = 1_200
|
2022-04-07 15:12:41 +00:00
|
|
|
local temp = self.reactor.getTemperature()
|
|
|
|
if temp == nil then
|
|
|
|
-- lost the peripheral or terminated, handled later
|
|
|
|
log._error("ISS: failed to check reactor temperature")
|
|
|
|
return false
|
|
|
|
else
|
|
|
|
return temp >= 1200
|
|
|
|
end
|
2022-04-05 21:25:56 +00:00
|
|
|
end
|
|
|
|
|
2022-04-07 15:12:41 +00:00
|
|
|
-- check if there is no fuel
|
2022-04-05 21:25:56 +00:00
|
|
|
local insufficient_fuel = function ()
|
2022-04-07 15:12:41 +00:00
|
|
|
local fuel = self.reactor.getFuel()
|
|
|
|
if fuel == nil then
|
|
|
|
-- lost the peripheral or terminated, handled later
|
|
|
|
log._error("ISS: failed to check reactor fuel level")
|
|
|
|
return false
|
|
|
|
else
|
|
|
|
return fuel == 0
|
|
|
|
end
|
2022-04-05 21:25:56 +00:00
|
|
|
end
|
|
|
|
|
2022-04-07 15:12:41 +00:00
|
|
|
-- check if there is no coolant
|
2022-04-05 21:25:56 +00:00
|
|
|
local no_coolant = function ()
|
2022-04-07 15:12:41 +00:00
|
|
|
local coolant_filled = self.reactor.getCoolantFilledPercentage()
|
|
|
|
if coolant_filled == nil then
|
|
|
|
-- lost the peripheral or terminated, handled later
|
|
|
|
log._error("ISS: failed to check reactor coolant level")
|
|
|
|
return false
|
|
|
|
else
|
|
|
|
return coolant_filled < 2
|
|
|
|
end
|
2022-04-05 21:25:56 +00:00
|
|
|
end
|
|
|
|
|
2022-04-07 15:12:41 +00:00
|
|
|
-- if PLC timed out
|
2022-04-05 21:25:56 +00:00
|
|
|
local timed_out = function ()
|
|
|
|
return self.timed_out
|
|
|
|
end
|
|
|
|
|
2022-04-07 15:12:41 +00:00
|
|
|
-- check all safety conditions
|
2022-01-14 21:33:09 +00:00
|
|
|
local check = function ()
|
|
|
|
local status = "ok"
|
2022-01-22 19:26:25 +00:00
|
|
|
local was_tripped = self.tripped
|
2022-01-14 21:33:09 +00:00
|
|
|
|
|
|
|
-- check system states in order of severity
|
2022-04-05 21:25:56 +00:00
|
|
|
if damage_critical() then
|
2022-04-05 21:58:23 +00:00
|
|
|
log._warning("ISS: damage critical!")
|
2022-01-14 21:33:09 +00:00
|
|
|
status = "dmg_crit"
|
2022-04-05 21:25:56 +00:00
|
|
|
elseif high_temp() then
|
2022-04-05 21:58:23 +00:00
|
|
|
log._warning("ISS: high temperature!")
|
2022-01-14 21:33:09 +00:00
|
|
|
status = "high_temp"
|
2022-04-05 21:25:56 +00:00
|
|
|
elseif excess_heated_coolant() then
|
2022-04-05 21:58:23 +00:00
|
|
|
log._warning("ISS: heated coolant backup!")
|
2022-01-14 21:33:09 +00:00
|
|
|
status = "heated_coolant_backup"
|
2022-04-05 21:25:56 +00:00
|
|
|
elseif excess_waste() then
|
2022-04-05 21:58:23 +00:00
|
|
|
log._warning("ISS: full waste!")
|
2022-01-14 21:33:09 +00:00
|
|
|
status = "full_waste"
|
2022-04-05 21:25:56 +00:00
|
|
|
elseif insufficient_fuel() then
|
2022-04-05 21:58:23 +00:00
|
|
|
log._warning("ISS: no fuel!")
|
2022-01-14 21:33:09 +00:00
|
|
|
status = "no_fuel"
|
2022-01-22 19:26:25 +00:00
|
|
|
elseif self.tripped then
|
|
|
|
status = self.trip_cause
|
2022-01-02 00:45:33 +00:00
|
|
|
else
|
2022-01-22 19:26:25 +00:00
|
|
|
self.tripped = false
|
2022-01-02 00:45:33 +00:00
|
|
|
end
|
2022-01-14 21:33:09 +00:00
|
|
|
|
2022-04-07 15:12:41 +00:00
|
|
|
-- if a new trip occured...
|
2022-01-14 21:33:09 +00:00
|
|
|
if status ~= "ok" then
|
2022-04-05 21:58:23 +00:00
|
|
|
log._warning("ISS: reactor SCRAM")
|
2022-01-22 19:26:25 +00:00
|
|
|
self.tripped = true
|
|
|
|
self.trip_cause = status
|
|
|
|
self.reactor.scram()
|
2022-01-14 21:33:09 +00:00
|
|
|
end
|
2022-01-22 19:26:25 +00:00
|
|
|
|
2022-04-05 20:09:29 +00:00
|
|
|
local first_trip = not was_tripped and self.tripped
|
2022-01-14 21:33:09 +00:00
|
|
|
|
2022-01-22 19:26:25 +00:00
|
|
|
return self.tripped, status, first_trip
|
|
|
|
end
|
|
|
|
|
2022-04-07 15:12:41 +00:00
|
|
|
-- report a PLC comms timeout
|
2022-01-22 19:26:25 +00:00
|
|
|
local trip_timeout = function ()
|
|
|
|
self.tripped = false
|
|
|
|
self.trip_cause = "timeout"
|
|
|
|
self.timed_out = true
|
|
|
|
self.reactor.scram()
|
2022-01-02 00:45:33 +00:00
|
|
|
end
|
|
|
|
|
2022-04-07 15:12:41 +00:00
|
|
|
-- reset the ISS
|
2022-01-14 21:33:09 +00:00
|
|
|
local reset = function ()
|
2022-01-22 19:26:25 +00:00
|
|
|
self.timed_out = false
|
|
|
|
self.tripped = false
|
|
|
|
self.trip_cause = ""
|
|
|
|
end
|
|
|
|
|
2022-04-07 15:12:41 +00:00
|
|
|
-- get the ISS status
|
2022-01-22 19:26:25 +00:00
|
|
|
local status = function (named)
|
|
|
|
if named then
|
|
|
|
return {
|
|
|
|
damage_critical = damage_critical(),
|
|
|
|
excess_heated_coolant = excess_heated_coolant(),
|
|
|
|
excess_waste = excess_waste(),
|
|
|
|
high_temp = high_temp(),
|
|
|
|
insufficient_fuel = insufficient_fuel(),
|
|
|
|
no_coolant = no_coolant(),
|
|
|
|
timed_out = timed_out()
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return {
|
|
|
|
damage_critical(),
|
|
|
|
excess_heated_coolant(),
|
|
|
|
excess_waste(),
|
|
|
|
high_temp(),
|
|
|
|
insufficient_fuel(),
|
|
|
|
no_coolant(),
|
|
|
|
timed_out()
|
|
|
|
}
|
|
|
|
end
|
2022-01-14 21:33:09 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
return {
|
2022-04-03 16:08:22 +00:00
|
|
|
reconnect_reactor = reconnect_reactor,
|
2022-01-14 21:33:09 +00:00
|
|
|
check = check,
|
2022-01-22 19:26:25 +00:00
|
|
|
trip_timeout = trip_timeout,
|
2022-01-14 21:33:09 +00:00
|
|
|
reset = reset,
|
2022-01-22 19:26:25 +00:00
|
|
|
status = status,
|
2022-01-14 21:33:09 +00:00
|
|
|
damage_critical = damage_critical,
|
|
|
|
excess_heated_coolant = excess_heated_coolant,
|
|
|
|
excess_waste = excess_waste,
|
|
|
|
high_temp = high_temp,
|
|
|
|
insufficient_fuel = insufficient_fuel,
|
2022-01-22 19:26:25 +00:00
|
|
|
no_coolant = no_coolant,
|
|
|
|
timed_out = timed_out
|
2022-01-14 21:33:09 +00:00
|
|
|
}
|
2022-01-02 00:45:33 +00:00
|
|
|
end
|
2022-03-25 16:17:46 +00:00
|
|
|
|
2022-04-02 12:28:43 +00:00
|
|
|
function rplc_packet()
|
|
|
|
local self = {
|
|
|
|
frame = nil,
|
|
|
|
id = nil,
|
|
|
|
type = nil,
|
|
|
|
length = nil,
|
|
|
|
body = nil
|
|
|
|
}
|
|
|
|
|
|
|
|
local _rplc_type_valid = function ()
|
|
|
|
return self.type == RPLC_TYPES.KEEP_ALIVE or
|
|
|
|
self.type == RPLC_TYPES.LINK_REQ or
|
|
|
|
self.type == RPLC_TYPES.STATUS or
|
|
|
|
self.type == RPLC_TYPES.MEK_STRUCT or
|
|
|
|
self.type == RPLC_TYPES.MEK_SCRAM or
|
|
|
|
self.type == RPLC_TYPES.MEK_ENABLE or
|
|
|
|
self.type == RPLC_TYPES.MEK_BURN_RATE or
|
|
|
|
self.type == RPLC_TYPES.ISS_ALARM or
|
|
|
|
self.type == RPLC_TYPES.ISS_GET or
|
|
|
|
self.type == RPLC_TYPES.ISS_CLEAR
|
|
|
|
end
|
|
|
|
|
|
|
|
-- make an RPLC packet
|
|
|
|
local make = function (id, packet_type, length, data)
|
|
|
|
self.id = id
|
|
|
|
self.type = packet_type
|
|
|
|
self.length = length
|
|
|
|
self.data = data
|
|
|
|
end
|
|
|
|
|
|
|
|
-- decode an RPLC packet from a SCADA frame
|
|
|
|
local decode = function (frame)
|
|
|
|
if frame then
|
|
|
|
self.frame = frame
|
|
|
|
|
|
|
|
if frame.protocol() == comms.PROTOCOLS.RPLC then
|
|
|
|
local data = frame.data()
|
|
|
|
local ok = #data > 2
|
|
|
|
|
|
|
|
if ok then
|
|
|
|
make(data[1], data[2], data[3], { table.unpack(data, 4, #data) })
|
|
|
|
ok = _rplc_type_valid()
|
|
|
|
end
|
|
|
|
|
|
|
|
return ok
|
|
|
|
else
|
|
|
|
log._debug("attempted RPLC parse of incorrect protocol " .. frame.protocol(), true)
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
else
|
|
|
|
log._debug("nil frame encountered", true)
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
local get = function ()
|
|
|
|
return {
|
|
|
|
scada_frame = self.frame,
|
|
|
|
id = self.id,
|
|
|
|
type = self.type,
|
|
|
|
length = self.length,
|
|
|
|
data = self.data
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
return {
|
|
|
|
make = make,
|
|
|
|
decode = decode,
|
|
|
|
get = get
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2022-03-25 16:17:46 +00:00
|
|
|
-- reactor PLC communications
|
2022-04-03 16:08:22 +00:00
|
|
|
function comms_init(id, modem, local_port, server_port, reactor, iss)
|
2022-03-25 16:17:46 +00:00
|
|
|
local self = {
|
|
|
|
id = id,
|
|
|
|
seq_num = 0,
|
|
|
|
modem = modem,
|
|
|
|
s_port = server_port,
|
|
|
|
l_port = local_port,
|
|
|
|
reactor = reactor,
|
2022-04-02 18:43:36 +00:00
|
|
|
iss = iss,
|
2022-04-02 15:22:44 +00:00
|
|
|
status_cache = nil,
|
2022-04-02 15:46:14 +00:00
|
|
|
scrammed = false,
|
2022-04-02 15:22:44 +00:00
|
|
|
linked = false
|
2022-03-25 16:17:46 +00:00
|
|
|
}
|
|
|
|
|
2022-04-03 16:08:22 +00:00
|
|
|
-- open modem
|
|
|
|
if not self.modem.isOpen(self.l_port) then
|
|
|
|
self.modem.open(self.l_port)
|
|
|
|
end
|
|
|
|
|
2022-03-25 16:17:46 +00:00
|
|
|
-- PRIVATE FUNCTIONS --
|
|
|
|
|
|
|
|
local _send = function (msg)
|
|
|
|
local packet = scada_packet()
|
|
|
|
packet.make(self.seq_num, PROTOCOLS.RPLC, msg)
|
|
|
|
self.modem.transmit(self.s_port, self.l_port, packet.raw())
|
|
|
|
self.seq_num = self.seq_num + 1
|
|
|
|
end
|
|
|
|
|
|
|
|
-- variable reactor status information, excluding heating rate
|
|
|
|
local _reactor_status = function ()
|
|
|
|
return {
|
|
|
|
status = self.reactor.getStatus(),
|
|
|
|
burn_rate = self.reactor.getBurnRate(),
|
|
|
|
act_burn_r = self.reactor.getActualBurnRate(),
|
|
|
|
temp = self.reactor.getTemperature(),
|
|
|
|
damage = self.reactor.getDamagePercent(),
|
|
|
|
boil_eff = self.reactor.getBoilEfficiency(),
|
|
|
|
env_loss = self.reactor.getEnvironmentalLoss(),
|
|
|
|
|
|
|
|
fuel = self.reactor.getFuel(),
|
|
|
|
fuel_need = self.reactor.getFuelNeeded(),
|
|
|
|
fuel_fill = self.reactor.getFuelFilledPercentage(),
|
|
|
|
waste = self.reactor.getWaste(),
|
|
|
|
waste_need = self.reactor.getWasteNeeded(),
|
|
|
|
waste_fill = self.reactor.getWasteFilledPercentage(),
|
|
|
|
cool_type = self.reactor.getCoolant()['name'],
|
|
|
|
cool_amnt = self.reactor.getCoolant()['amount'],
|
|
|
|
cool_need = self.reactor.getCoolantNeeded(),
|
|
|
|
cool_fill = self.reactor.getCoolantFilledPercentage(),
|
|
|
|
hcool_type = self.reactor.getHeatedCoolant()['name'],
|
|
|
|
hcool_amnt = self.reactor.getHeatedCoolant()['amount'],
|
|
|
|
hcool_need = self.reactor.getHeatedCoolantNeeded(),
|
|
|
|
hcool_fill = self.reactor.getHeatedCoolantFilledPercentage()
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
local _update_status_cache = function ()
|
|
|
|
local status = _reactor_status()
|
|
|
|
local changed = false
|
|
|
|
|
|
|
|
for key, value in pairs(status) do
|
|
|
|
if value ~= self.status_cache[key] then
|
|
|
|
changed = true
|
|
|
|
break
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if changed then
|
|
|
|
self.status_cache = status
|
|
|
|
end
|
|
|
|
|
|
|
|
return changed
|
|
|
|
end
|
|
|
|
|
2022-04-02 18:43:36 +00:00
|
|
|
-- keep alive ack
|
|
|
|
local _send_keep_alive_ack = function ()
|
|
|
|
local keep_alive_data = {
|
|
|
|
id = self.id,
|
|
|
|
timestamp = os.time(),
|
|
|
|
type = RPLC_TYPES.KEEP_ALIVE
|
|
|
|
}
|
|
|
|
|
|
|
|
_send(keep_alive_data)
|
|
|
|
end
|
|
|
|
|
|
|
|
-- general ack
|
|
|
|
local _send_ack = function (type, succeeded)
|
|
|
|
local ack_data = {
|
|
|
|
id = self.id,
|
|
|
|
type = type,
|
|
|
|
ack = succeeded
|
|
|
|
}
|
|
|
|
|
|
|
|
_send(ack_data)
|
|
|
|
end
|
|
|
|
|
|
|
|
-- send structure properties (these should not change)
|
|
|
|
-- (server will cache these)
|
|
|
|
local _send_struct = function ()
|
|
|
|
local mek_data = {
|
|
|
|
heat_cap = self.reactor.getHeatCapacity(),
|
|
|
|
fuel_asm = self.reactor.getFuelAssemblies(),
|
|
|
|
fuel_sa = self.reactor.getFuelSurfaceArea(),
|
|
|
|
fuel_cap = self.reactor.getFuelCapacity(),
|
|
|
|
waste_cap = self.reactor.getWasteCapacity(),
|
|
|
|
cool_cap = self.reactor.getCoolantCapacity(),
|
|
|
|
hcool_cap = self.reactor.getHeatedCoolantCapacity(),
|
|
|
|
max_burn = self.reactor.getMaxBurnRate()
|
|
|
|
}
|
|
|
|
|
|
|
|
local struct_packet = {
|
|
|
|
id = self.id,
|
|
|
|
type = RPLC_TYPES.MEK_STRUCT,
|
|
|
|
mek_data = mek_data
|
|
|
|
}
|
|
|
|
|
|
|
|
_send(struct_packet)
|
|
|
|
end
|
|
|
|
|
|
|
|
local _send_iss_status = function ()
|
|
|
|
local iss_status = {
|
|
|
|
id = self.id,
|
|
|
|
type = RPLC_TYPES.ISS_GET,
|
|
|
|
status = iss.status()
|
|
|
|
}
|
|
|
|
|
|
|
|
_send(iss_status)
|
|
|
|
end
|
|
|
|
|
2022-03-25 16:17:46 +00:00
|
|
|
-- PUBLIC FUNCTIONS --
|
|
|
|
|
2022-04-03 16:08:22 +00:00
|
|
|
-- reconnect a newly connected modem
|
|
|
|
local reconnect_modem = function (modem)
|
|
|
|
self.modem = modem
|
|
|
|
|
|
|
|
-- open modem
|
|
|
|
if not self.modem.isOpen(self.l_port) then
|
|
|
|
self.modem.open(self.l_port)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
-- reconnect a newly connected reactor
|
|
|
|
local reconnect_reactor = function (reactor)
|
|
|
|
self.reactor = reactor
|
|
|
|
end
|
|
|
|
|
2022-03-25 16:17:46 +00:00
|
|
|
-- parse an RPLC packet
|
|
|
|
local parse_packet = function(side, sender, reply_to, message, distance)
|
|
|
|
local pkt = nil
|
|
|
|
local s_pkt = scada_packet()
|
|
|
|
|
|
|
|
-- parse packet as generic SCADA packet
|
|
|
|
s_pkt.recieve(side, sender, reply_to, message, distance)
|
|
|
|
|
2022-04-02 12:28:43 +00:00
|
|
|
if s_pkt.is_valid() then
|
|
|
|
-- get as RPLC packet
|
|
|
|
if s_pkt.protocol() == PROTOCOLS.RPLC then
|
|
|
|
local rplc_pkt = rplc_packet()
|
|
|
|
if rplc_pkt.decode(s_pkt) then
|
|
|
|
pkt = rplc_pkt.get()
|
|
|
|
end
|
|
|
|
-- get as SCADA management packet
|
|
|
|
elseif s_pkt.protocol() == PROTOCOLS.SCADA_MGMT then
|
|
|
|
local mgmt_pkt = mgmt_packet()
|
|
|
|
if mgmt_pkt.decode(s_pkt) then
|
|
|
|
pkt = mgmt_packet.get()
|
|
|
|
end
|
|
|
|
else
|
|
|
|
log._error("illegal packet type " .. s_pkt.protocol(), true)
|
2022-03-25 16:17:46 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
return pkt
|
|
|
|
end
|
|
|
|
|
|
|
|
-- handle an RPLC packet
|
2022-04-05 21:58:23 +00:00
|
|
|
local handle_packet = function (packet, plc_state)
|
2022-04-02 15:22:44 +00:00
|
|
|
if packet ~= nil then
|
|
|
|
if packet.scada_frame.protocol() == PROTOCOLS.RPLC then
|
|
|
|
if self.linked then
|
|
|
|
if packet.type == RPLC_TYPES.KEEP_ALIVE then
|
2022-04-02 18:43:36 +00:00
|
|
|
-- keep alive request received, echo back
|
|
|
|
local timestamp = packet.data[1]
|
|
|
|
local trip_time = os.time() - ts
|
|
|
|
|
|
|
|
if trip_time < 0 then
|
|
|
|
log._warning("PLC KEEP_ALIVE trip time less than 0 (" .. trip_time .. ")")
|
|
|
|
elseif trip_time > 1 then
|
|
|
|
log._warning("PLC KEEP_ALIVE trip time > 1s (" .. trip_time .. ")")
|
|
|
|
end
|
|
|
|
|
|
|
|
_send_keep_alive_ack()
|
2022-04-02 15:22:44 +00:00
|
|
|
elseif packet.type == RPLC_TYPES.LINK_REQ then
|
|
|
|
-- link request confirmation
|
2022-04-02 18:43:36 +00:00
|
|
|
log._debug("received unsolicited link request response")
|
|
|
|
|
|
|
|
local link_ack = packet.data[1]
|
|
|
|
|
|
|
|
if link_ack == RPLC_LINKING.ALLOW then
|
|
|
|
_send_struct()
|
|
|
|
send_status()
|
|
|
|
log._debug("re-sent initial status data")
|
|
|
|
elseif link_ack == RPLC_LINKING.DENY then
|
|
|
|
-- @todo: make sure this doesn't become an MITM security risk
|
|
|
|
print_ts("received unsolicited link denial, unlinking\n")
|
|
|
|
log._debug("unsolicited rplc link request denied")
|
|
|
|
elseif link_ack == RPLC_LINKING.COLLISION then
|
|
|
|
-- @todo: make sure this doesn't become an MITM security risk
|
|
|
|
print_ts("received unsolicited link collision, unlinking\n")
|
|
|
|
log._warning("unsolicited rplc link request collision")
|
|
|
|
else
|
|
|
|
print_ts("invalid unsolicited link response\n")
|
|
|
|
log._error("unsolicited unknown rplc link request response")
|
|
|
|
end
|
|
|
|
|
|
|
|
self.linked = link_ack == RPLC_LINKING.ALLOW
|
2022-04-02 15:22:44 +00:00
|
|
|
elseif packet.type == RPLC_TYPES.MEK_STRUCT then
|
|
|
|
-- request for physical structure
|
2022-04-02 18:43:36 +00:00
|
|
|
_send_struct()
|
2022-04-02 15:22:44 +00:00
|
|
|
elseif packet.type == RPLC_TYPES.MEK_SCRAM then
|
2022-04-02 18:43:36 +00:00
|
|
|
-- disable the reactor
|
2022-04-02 15:46:14 +00:00
|
|
|
self.scrammed = true
|
2022-04-05 21:58:23 +00:00
|
|
|
plc_state.scram = true
|
2022-04-02 18:43:36 +00:00
|
|
|
_send_ack(packet.type, self.reactor.scram())
|
2022-04-02 15:22:44 +00:00
|
|
|
elseif packet.type == RPLC_TYPES.MEK_ENABLE then
|
2022-04-02 18:43:36 +00:00
|
|
|
-- enable the reactor
|
2022-04-02 15:46:14 +00:00
|
|
|
self.scrammed = false
|
2022-04-05 21:58:23 +00:00
|
|
|
plc_state.scram = false
|
2022-04-02 18:43:36 +00:00
|
|
|
_send_ack(packet.type, self.reactor.activate())
|
2022-04-02 15:22:44 +00:00
|
|
|
elseif packet.type == RPLC_TYPES.MEK_BURN_RATE then
|
2022-04-02 18:43:36 +00:00
|
|
|
-- set the burn rate
|
|
|
|
local burn_rate = packet.data[1]
|
|
|
|
local max_burn_rate = self.reactor.getMaxBurnRate()
|
|
|
|
local success = false
|
|
|
|
|
2022-04-03 16:08:22 +00:00
|
|
|
if max_burn_rate ~= nil then
|
2022-04-02 18:43:36 +00:00
|
|
|
if burn_rate > 0 and burn_rate <= max_burn_rate then
|
|
|
|
success = self.reactor.setBurnRate(burn_rate)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
_send_ack(packet.type, success)
|
2022-04-02 15:22:44 +00:00
|
|
|
elseif packet.type == RPLC_TYPES.ISS_GET then
|
2022-04-02 18:43:36 +00:00
|
|
|
-- get the ISS status
|
|
|
|
_send_iss_status(iss.status())
|
2022-04-02 15:22:44 +00:00
|
|
|
elseif packet.type == RPLC_TYPES.ISS_CLEAR then
|
2022-04-02 18:43:36 +00:00
|
|
|
-- clear the ISS status
|
|
|
|
iss.reset()
|
|
|
|
_send_ack(packet.type, true)
|
|
|
|
else
|
|
|
|
log._warning("received unknown RPLC packet type " .. packet.type)
|
2022-04-02 15:22:44 +00:00
|
|
|
end
|
|
|
|
elseif packet.type == RPLC_TYPES.LINK_REQ then
|
|
|
|
-- link request confirmation
|
|
|
|
local link_ack = packet.data[1]
|
|
|
|
|
|
|
|
if link_ack == RPLC_LINKING.ALLOW then
|
|
|
|
print_ts("...linked!\n")
|
|
|
|
log._debug("rplc link request approved")
|
|
|
|
|
2022-04-02 18:43:36 +00:00
|
|
|
_send_struct()
|
|
|
|
send_status()
|
2022-04-02 15:22:44 +00:00
|
|
|
|
|
|
|
log._debug("sent initial status data")
|
|
|
|
elseif link_ack == RPLC_LINKING.DENY then
|
|
|
|
print_ts("...denied, retrying...\n")
|
|
|
|
log._debug("rplc link request denied")
|
|
|
|
elseif link_ack == RPLC_LINKING.COLLISION then
|
|
|
|
print_ts("reactor PLC ID collision (check config), retrying...\n")
|
|
|
|
log._warning("rplc link request collision")
|
|
|
|
else
|
|
|
|
print_ts("invalid link response, bad channel? retrying...\n")
|
|
|
|
log._error("unknown rplc link request response")
|
|
|
|
end
|
|
|
|
|
|
|
|
self.linked = link_ack == RPLC_LINKING.ALLOW
|
|
|
|
else
|
|
|
|
log._("discarding non-link packet before linked")
|
|
|
|
end
|
|
|
|
elseif packet.scada_frame.protocol() == PROTOCOLS.SCADA_MGMT then
|
|
|
|
end
|
2022-03-25 16:17:46 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
-- attempt to establish link with supervisor
|
|
|
|
local send_link_req = function ()
|
|
|
|
local linking_data = {
|
|
|
|
id = self.id,
|
|
|
|
type = RPLC_TYPES.LINK_REQ
|
|
|
|
}
|
|
|
|
|
|
|
|
_send(linking_data)
|
|
|
|
end
|
|
|
|
|
|
|
|
-- send live status information
|
2022-04-05 13:41:06 +00:00
|
|
|
-- overridden : if ISS force disabled reactor
|
|
|
|
local send_status = function (overridden)
|
2022-03-25 16:17:46 +00:00
|
|
|
local mek_data = nil
|
|
|
|
|
|
|
|
if _update_status_cache() then
|
|
|
|
mek_data = self.status_cache
|
|
|
|
end
|
|
|
|
|
|
|
|
local sys_status = {
|
|
|
|
id = self.id,
|
|
|
|
type = RPLC_TYPES.STATUS,
|
|
|
|
timestamp = os.time(),
|
2022-04-05 20:09:29 +00:00
|
|
|
control_state = not self.scrammed,
|
2022-03-25 16:17:46 +00:00
|
|
|
overridden = overridden,
|
|
|
|
heating_rate = self.reactor.getHeatingRate(),
|
|
|
|
mek_data = mek_data
|
|
|
|
}
|
|
|
|
|
|
|
|
_send(sys_status)
|
|
|
|
end
|
|
|
|
|
2022-04-02 18:43:36 +00:00
|
|
|
local send_iss_alarm = function (cause)
|
|
|
|
local iss_alarm = {
|
|
|
|
id = self.id,
|
|
|
|
type = RPLC_TYPES.ISS_ALARM,
|
|
|
|
cause = cause,
|
|
|
|
status = iss.status()
|
|
|
|
}
|
|
|
|
|
|
|
|
_send(iss_alarm)
|
|
|
|
end
|
|
|
|
|
2022-04-02 15:46:14 +00:00
|
|
|
local is_scrammed = function () return self.scrammed end
|
|
|
|
local is_linked = function () return self.linked end
|
2022-04-02 15:22:44 +00:00
|
|
|
local unlink = function () self.linked = false end
|
|
|
|
|
2022-03-25 16:17:46 +00:00
|
|
|
return {
|
2022-04-03 16:08:22 +00:00
|
|
|
reconnect_modem = reconnect_modem,
|
|
|
|
reconnect_reactor = reconnect_reactor,
|
2022-03-25 16:17:46 +00:00
|
|
|
parse_packet = parse_packet,
|
|
|
|
handle_packet = handle_packet,
|
|
|
|
send_link_req = send_link_req,
|
2022-04-02 15:22:44 +00:00
|
|
|
send_status = send_status,
|
2022-04-02 18:43:36 +00:00
|
|
|
send_iss_alarm = send_iss_alarm,
|
2022-04-02 15:46:14 +00:00
|
|
|
is_scrammed = is_scrammed,
|
|
|
|
is_linked = is_linked,
|
2022-04-02 15:22:44 +00:00
|
|
|
unlink = unlink
|
2022-03-25 16:17:46 +00:00
|
|
|
}
|
|
|
|
end
|