1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
## Implementation that outputs the register identification and the register
## value. The correct register count is not checked and might lead to indexing
## errors.
module Pasad;
## DATA STRUCTURES
export {
redef enum Log::ID += { LOG };
type Transaction: record {
start_address: count;
quantity: count;
};
type TransactionTable: table[count] of Transaction;
type Info: record {
transactions: TransactionTable &default=TransactionTable();
};
type Entry: record {
ip: addr &log;
uid: count &log;
regtype: string &log;
address: count &log;
register: count &log;
};
}
redef record connection += {
pasad: Info &default=Info();
};
## CUSTOM EVENTS
event pasad_entry(entry: Entry)
{
Log::write(Pasad::LOG, entry);
}
event pasad_unmatched(tid: count)
{
print fmt("Unmatched response: tid=%d", tid);
}
## CUSTOM FUNCTIONS
function pasad_generate_events(transaction: Transaction, c: connection, headers: ModbusHeaders, registers: ModbusRegisters, regtype: string)
{
# TODO: check registers size
local i = 0;
while ( i < transaction$quantity )
{
local entry = Entry(
$ip=c$id$orig_h,
$uid=headers$uid,
$regtype=regtype,
$address=transaction$start_address + i,
$register=registers[i]
);
event pasad_entry(entry);
++i;
}
}
## EVENT HANDLERS
event bro_init() &priority=5
{
Log::create_stream(Pasad::LOG, [$columns=Entry, $path="pasad-parsed"]);
}
event modbus_read_holding_registers_request(c: connection, headers: ModbusHeaders, start_address: count, quantity: count)
{
local tid = headers$tid;
local transaction = Transaction(
$start_address=start_address,
$quantity=quantity
);
c$pasad$transactions[tid] = transaction;
}
event modbus_read_holding_registers_response(c: connection, headers: ModbusHeaders, registers: ModbusRegisters)
{
local tid = headers$tid;
if ( tid !in c$pasad$transactions )
{
event pasad_unmatched(tid);
return;
}
local transaction = c$pasad$transactions[tid];
delete c$pasad$transactions[tid];
pasad_generate_events(transaction, c, headers, registers, "h");
}
|