suricata
app-layer-dnp3.h
Go to the documentation of this file.
1 /* Copyright (C) 2015 Open Information Security Foundation
2  *
3  * You can copy, redistribute or modify this Program under the terms of
4  * the GNU General Public License version 2 as published by the Free
5  * Software Foundation.
6  *
7  * This program is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10  * GNU General Public License for more details.
11  *
12  * You should have received a copy of the GNU General Public License
13  * version 2 along with this program; if not, write to the Free Software
14  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
15  * 02110-1301, USA.
16  */
17 
18 /**
19  * \file
20  *
21  * DNP3 application layer protocol header file
22  */
23 
24 #ifndef SURICATA_APP_LAYER_DNP3_H
25 #define SURICATA_APP_LAYER_DNP3_H
26 
27 #include "rust.h"
28 #include "app-layer-parser.h"
29 #if __BYTE_ORDER == __BIG_ENDIAN
30 #include "util-byte.h"
31 #endif
32 
33 /* DNP3 application request function codes. */
34 #define DNP3_APP_FC_CONFIRM 0x00
35 #define DNP3_APP_FC_READ 0x01
36 #define DNP3_APP_FC_WRITE 0x02
37 #define DNP3_APP_FC_SELECT 0x03
38 #define DNP3_APP_FC_OPERATE 0x04
39 #define DNP3_APP_FC_DIR_OPERATE 0x05
40 #define DNP3_APP_FC_DIR_OPERATE_NR 0x06
41 #define DNP3_APP_FC_FREEZE 0x07
42 #define DNP3_APP_FC_FREEZE_NR 0x08
43 #define DNP3_APP_FC_FREEZE_CLEAR 0x09
44 #define DNP3_APP_FC_FREEZE_CLEAR_NR 0x0a
45 #define DNP3_APP_FC_FREEZE_AT_TIME 0x0b
46 #define DNP3_APP_FC_FREEZE_AT_TIME_NR 0x0c
47 #define DNP3_APP_FC_COLD_RESTART 0x0d
48 #define DNP3_APP_FC_WARM_RESTART 0x0e
49 #define DNP3_APP_FC_INITIALIZE_DATA 0x0f
50 #define DNP3_APP_FC_INITIALIZE_APPLICATION 0x10
51 #define DNP3_APP_FC_START_APPLICATION 0x11
52 #define DNP3_APP_FC_STOP_APPLICATION 0x12
53 #define DNP3_APP_FC_SAVE_CONFIGURATION 0x13
54 #define DNP3_APP_FC_ENABLE_UNSOLICITED 0x14
55 #define DNP3_APP_FC_DISABLE_UNSOLICITED 0x15
56 #define DNP3_APP_FC_ASSIGN_CLASS 0x16
57 #define DNP3_APP_FC_DELAY_MEASUREMENT 0x17
58 #define DNP3_APP_FC_RECORD_CURRENT_TIME 0x18
59 #define DNP3_APP_FC_OPEN_TIME 0x19
60 #define DNP3_APP_FC_CLOSE_FILE 0x1a
61 #define DNP3_APP_FC_DELETE_FILE 0x1b
62 #define DNP3_APP_FC_GET_FILE_INFO 0x1c
63 #define DNP3_APP_FC_AUTHENTICATE_FILE 0x1d
64 #define DNP3_APP_FC_ABORT_FILE 0x1e
65 #define DNP3_APP_FC_ACTIVATE_CONFIG 0x1f
66 #define DNP3_APP_FC_AUTH_REQ 0x20
67 #define DNP3_APP_FC_AUTH_REQ_NR 0x21
68 
69 /* DNP3 application response function codes. */
70 #define DNP3_APP_FC_RESPONSE 0x81
71 #define DNP3_APP_FC_UNSOLICITED_RESP 0x82
72 #define DNP3_APP_FC_AUTH_RESP 0x83
73 
74 /* Extract fields from the link control octet. */
75 #define DNP3_LINK_DIR(control) (control & 0x80)
76 #define DNP3_LINK_PRI(control) (control & 0x40)
77 #define DNP3_LINK_FCB(control) (control & 0x20)
78 #define DNP3_LINK_FCV(control) (control & 0x10)
79 #define DNP3_LINK_FC(control) (control & 0x0f)
80 
81 /* Extract fields from transport layer header octet. */
82 #define DNP3_TH_FIN(x) (x & 0x80)
83 #define DNP3_TH_FIR(x) (x & 0x40)
84 #define DNP3_TH_SEQ(x) (x & 0x3f)
85 
86 /* Extract fields from the application control octet. */
87 #define DNP3_APP_FIR(x) (x & 0x80)
88 #define DNP3_APP_FIN(x) (x & 0x40)
89 #define DNP3_APP_CON(x) (x & 0x20)
90 #define DNP3_APP_UNS(x) (x & 0x10)
91 #define DNP3_APP_SEQ(x) (x & 0x0f)
92 
93 /* DNP3 values are stored in little endian on the wire, so swapping will be
94  * needed on big endian architectures. */
95 #if __BYTE_ORDER == __BIG_ENDIAN
96 #define DNP3_SWAP16(x) SCByteSwap16(x)
97 #define DNP3_SWAP32(x) SCByteSwap32(x)
98 #define DNP3_SWAP64(x) SCByteSwap64(x)
99 #elif __BYTE_ORDER == __LITTLE_ENDIAN
100 #define DNP3_SWAP16(x) x
101 #define DNP3_SWAP32(x) x
102 #define DNP3_SWAP64(x) x
103 #endif
104 
105 /* DNP3 decoder events. */
106 enum {
115 };
116 
117 /**
118  * \brief DNP3 link header.
119  */
120 typedef struct DNP3LinkHeader_ {
121  uint8_t start_byte0; /**< First check byte. */
122  uint8_t start_byte1; /**< Second check byte. */
123  uint8_t len; /**< Length of PDU without CRCs. */
124  uint8_t control; /**< Control flags. */
125  uint16_t dst; /**< DNP3 destination address. */
126  uint16_t src; /**< DNP3 source address. */
127  uint16_t crc; /**< Link header CRC. */
128 } __attribute__((__packed__)) DNP3LinkHeader;
129 
130 /**
131  * \brief DNP3 transport header.
132  */
133 typedef uint8_t DNP3TransportHeader;
134 
135 /**
136  * \brief DNP3 application header.
137  */
138 typedef struct DNP3ApplicationHeader_ {
139  uint8_t control; /**< Control flags. */
140  uint8_t function_code; /**< Application function code. */
141 } __attribute__((__packed__)) DNP3ApplicationHeader;
142 
143 /**
144  * \brief DNP3 internal indicators.
145  *
146  * Part of the application header for responses only.
147  */
148 typedef struct DNP3InternalInd_ {
149  uint8_t iin1;
150  uint8_t iin2;
151 } __attribute__((__packed__)) DNP3InternalInd;
152 
153 /**
154  * \brief A struct used for buffering incoming data prior to reassembly.
155  */
156 typedef struct DNP3Buffer_ {
157  uint8_t *buffer;
158  size_t size;
159  int len;
160  int offset;
162 
163 /**
164  * \brief DNP3 application object header.
165  */
166 typedef struct DNP3ObjHeader_ {
167  uint8_t group;
168  uint8_t variation;
169  uint8_t qualifier;
170 } __attribute__((packed)) DNP3ObjHeader;
171 
172 /**
173  * \brief DNP3 object point.
174  *
175  * Each DNP3 object can have 0 or more points representing the values
176  * of the object.
177  */
178 typedef struct DNP3Point_ {
179  uint32_t prefix; /**< Prefix value for point. */
180  uint32_t index; /**< Index of point. If the object is prefixed
181  * with an index then this will be that
182  * value. Otherwise this is the place the point
183  * was in the list of points (starting at 0). */
184  uint32_t size; /**< Size of point if the object prefix was a
185  * size. */
186  void *data; /**< Data for this point. */
189 
190 typedef TAILQ_HEAD(DNP3PointList_, DNP3Point_) DNP3PointList;
191 
192 /**
193  * \brief Struct to hold the list of decoded objects.
194  */
195 typedef struct DNP3Object_ {
196  uint8_t group;
197  uint8_t variation;
198  uint8_t qualifier;
199  uint8_t prefix_code;
200  uint8_t range_code;
201  uint32_t start;
202  uint32_t stop;
203  uint32_t count;
204  DNP3PointList *points; /**< List of points for this object. */
205 
208 
209 typedef TAILQ_HEAD(DNP3ObjectList_, DNP3Object_) DNP3ObjectList;
210 
211 /**
212  * \brief DNP3 transaction.
213  */
214 typedef struct DNP3Transaction_ {
216 
217  uint64_t tx_num; /**< Internal transaction ID. */
218  bool is_request; /**< Is this tx a request? */
219 
220  struct DNP3State_ *dnp3;
221 
222  uint8_t *buffer; /**< Reassembled request buffer. */
223  uint32_t buffer_len;
224  DNP3ObjectList objects;
225  DNP3LinkHeader lh;
227  DNP3ApplicationHeader ah;
228  DNP3InternalInd iin;
229  uint8_t done;
230  uint8_t complete; /**< Was the decode complete. It will not be
231  complete if we hit objects we do not know. */
232 
235 
237 
238 /**
239  * \brief Per flow DNP3 state.
240  */
241 typedef struct DNP3State_ {
244  DNP3Transaction *curr; /**< Current transaction. */
245  uint64_t transaction_max;
246  uint16_t events;
247  uint32_t unreplied; /**< Number of unreplied requests. */
248  uint8_t flooded; /**< Flag indicating flood. */
249 
250  DNP3Buffer request_buffer; /**< Request buffer for buffering
251  * incomplete request PDUs received
252  * over TCP. */
253  DNP3Buffer response_buffer; /**< Response buffer for buffering
254  * incomplete response PDUs received
255  * over TCP. */
256 
258 
259 void RegisterDNP3Parsers(void);
260 void DNP3ParserRegisterTests(void);
261 int DNP3PrefixIsSize(uint8_t);
262 
263 #endif /* SURICATA_APP_LAYER_DNP3_H */
DNP3Transaction_::TAILQ_ENTRY
TAILQ_ENTRY(DNP3Transaction_) next
util-byte.h
DNP3ParserRegisterTests
void DNP3ParserRegisterTests(void)
Definition: app-layer-dnp3.c:2661
DNP3Transaction_::complete
uint8_t complete
Definition: app-layer-dnp3.h:230
DNP3Transaction_::dnp3
struct DNP3State_ * dnp3
Definition: app-layer-dnp3.h:220
DNP3_DECODER_EVENT_TOO_MANY_POINTS
@ DNP3_DECODER_EVENT_TOO_MANY_POINTS
Definition: app-layer-dnp3.h:113
DNP3Buffer_::size
size_t size
Definition: app-layer-dnp3.h:158
DNP3_DECODER_EVENT_MALFORMED
@ DNP3_DECODER_EVENT_MALFORMED
Definition: app-layer-dnp3.h:111
DNP3State_::response_buffer
DNP3Buffer response_buffer
Definition: app-layer-dnp3.h:253
DNP3Transaction_::done
uint8_t done
Definition: app-layer-dnp3.h:229
DNP3Transaction_::th
DNP3TransportHeader th
Definition: app-layer-dnp3.h:226
next
struct HtpBodyChunk_ * next
Definition: app-layer-htp.h:0
DNP3_DECODER_EVENT_FLOODED
@ DNP3_DECODER_EVENT_FLOODED
Definition: app-layer-dnp3.h:107
DNP3LinkHeader_
DNP3 link header.
Definition: app-layer-dnp3.h:120
DNP3Object_
Struct to hold the list of decoded objects.
Definition: app-layer-dnp3.h:195
DNP3ObjHeader_::group
uint8_t group
Definition: app-layer-dnp3.h:167
DNP3Object
struct DNP3Object_ DNP3Object
Struct to hold the list of decoded objects.
AppLayerStateData
Definition: app-layer-parser.h:160
DNP3State_::transaction_max
uint64_t transaction_max
Definition: app-layer-dnp3.h:245
DNP3State_::flooded
uint8_t flooded
Definition: app-layer-dnp3.h:248
DNP3Buffer_::offset
int offset
Definition: app-layer-dnp3.h:160
__attribute__
struct DNP3LinkHeader_ __attribute__((__packed__)) DNP3LinkHeader
DNP3 link header.
Definition: decode-vlan.c:102
DNP3ApplicationHeader_::control
uint8_t control
Definition: app-layer-dnp3.h:139
DNP3Object_::stop
uint32_t stop
Definition: app-layer-dnp3.h:202
DNP3Transaction_::objects
DNP3ObjectList objects
Definition: app-layer-dnp3.h:224
rust.h
DNP3LinkHeader_::len
uint8_t len
Definition: app-layer-dnp3.h:123
TAILQ_HEAD
typedef TAILQ_HEAD(DNP3PointList_, DNP3Point_) DNP3PointList
DNP3ApplicationHeader_::function_code
uint8_t function_code
Definition: app-layer-dnp3.h:140
DNP3ObjHeader_::variation
uint8_t variation
Definition: app-layer-dnp3.h:168
RegisterDNP3Parsers
void RegisterDNP3Parsers(void)
Register the DNP3 application protocol parser.
Definition: app-layer-dnp3.c:1562
DNP3State_::request_buffer
DNP3Buffer request_buffer
Definition: app-layer-dnp3.h:250
DNP3ApplicationHeader_
DNP3 application header.
Definition: app-layer-dnp3.h:138
DNP3Transaction_::buffer_len
uint32_t buffer_len
Definition: app-layer-dnp3.h:223
DNP3Point_::data
void * data
Definition: app-layer-dnp3.h:186
DNP3Buffer_::len
int len
Definition: app-layer-dnp3.h:159
DNP3State_::events
uint16_t events
Definition: app-layer-dnp3.h:246
DNP3Object_::points
DNP3PointList * points
Definition: app-layer-dnp3.h:204
DNP3_DECODER_EVENT_UNKNOWN_OBJECT
@ DNP3_DECODER_EVENT_UNKNOWN_OBJECT
Definition: app-layer-dnp3.h:112
DNP3LinkHeader_::dst
uint16_t dst
Definition: app-layer-dnp3.h:125
DNP3InternalInd_::iin1
uint8_t iin1
Definition: app-layer-dnp3.h:149
DNP3Object_::TAILQ_ENTRY
TAILQ_ENTRY(DNP3Object_) next
DNP3LinkHeader_::control
uint8_t control
Definition: app-layer-dnp3.h:124
DNP3Transaction_::ah
DNP3ApplicationHeader ah
Definition: app-layer-dnp3.h:227
AppLayerTxData
Definition: app-layer-parser.h:177
DNP3Point_::size
uint32_t size
Definition: app-layer-dnp3.h:184
DNP3Transaction_::iin
DNP3InternalInd iin
Definition: app-layer-dnp3.h:228
DNP3InternalInd_
DNP3 internal indicators.
Definition: app-layer-dnp3.h:148
DNP3State
struct DNP3State_ DNP3State
Per flow DNP3 state.
DNP3Buffer_::buffer
uint8_t * buffer
Definition: app-layer-dnp3.h:157
app-layer-parser.h
DNP3State_::TAILQ_HEAD
TAILQ_HEAD(, DNP3Transaction_) tx_list
DNP3Object_::group
uint8_t group
Definition: app-layer-dnp3.h:196
DNP3Object_::start
uint32_t start
Definition: app-layer-dnp3.h:201
DNP3_DECODER_EVENT_TOO_MANY_OBJECTS
@ DNP3_DECODER_EVENT_TOO_MANY_OBJECTS
Definition: app-layer-dnp3.h:114
DNP3Transaction_::is_request
bool is_request
Definition: app-layer-dnp3.h:218
DNP3Object_::count
uint32_t count
Definition: app-layer-dnp3.h:203
DNP3State_::curr
DNP3Transaction * curr
Definition: app-layer-dnp3.h:244
DNP3_DECODER_EVENT_BAD_LINK_CRC
@ DNP3_DECODER_EVENT_BAD_LINK_CRC
Definition: app-layer-dnp3.h:109
DNP3Object_::range_code
uint8_t range_code
Definition: app-layer-dnp3.h:200
DNP3Point
struct DNP3Point_ DNP3Point
DNP3 object point.
DNP3State_::state_data
AppLayerStateData state_data
Definition: app-layer-dnp3.h:242
DNP3_DECODER_EVENT_BAD_TRANSPORT_CRC
@ DNP3_DECODER_EVENT_BAD_TRANSPORT_CRC
Definition: app-layer-dnp3.h:110
DNP3Object_::prefix_code
uint8_t prefix_code
Definition: app-layer-dnp3.h:199
DNP3Transaction
struct DNP3Transaction_ DNP3Transaction
DNP3 transaction.
DNP3Transaction_::tx_num
uint64_t tx_num
Definition: app-layer-dnp3.h:217
DNP3Buffer
struct DNP3Buffer_ DNP3Buffer
A struct used for buffering incoming data prior to reassembly.
DNP3Object_::variation
uint8_t variation
Definition: app-layer-dnp3.h:197
DNP3Point_::TAILQ_ENTRY
TAILQ_ENTRY(DNP3Point_) next
DNP3State_
Per flow DNP3 state.
Definition: app-layer-dnp3.h:241
DNP3Object_::qualifier
uint8_t qualifier
Definition: app-layer-dnp3.h:198
DNP3LinkHeader_::src
uint16_t src
Definition: app-layer-dnp3.h:126
DNP3Point_::index
uint32_t index
Definition: app-layer-dnp3.h:180
DNP3InternalInd_::iin2
uint8_t iin2
Definition: app-layer-dnp3.h:150
DNP3State_::unreplied
uint32_t unreplied
Definition: app-layer-dnp3.h:247
DNP3ObjHeader_::qualifier
uint8_t qualifier
Definition: app-layer-dnp3.h:169
DNP3TransportHeader
uint8_t DNP3TransportHeader
DNP3 transport header.
Definition: app-layer-dnp3.h:133
DNP3ObjHeader_
DNP3 application object header.
Definition: app-layer-dnp3.h:166
DNP3Point_::prefix
uint32_t prefix
Definition: app-layer-dnp3.h:179
DNP3Transaction_::tx_data
AppLayerTxData tx_data
Definition: app-layer-dnp3.h:215
DNP3LinkHeader_::crc
uint16_t crc
Definition: app-layer-dnp3.h:127
DNP3PrefixIsSize
int DNP3PrefixIsSize(uint8_t)
Check if the prefix code is a size prefix.
Definition: app-layer-dnp3.c:1512
DNP3Transaction_::lh
DNP3LinkHeader lh
Definition: app-layer-dnp3.h:225
DNP3LinkHeader_::start_byte1
uint8_t start_byte1
Definition: app-layer-dnp3.h:122
DNP3LinkHeader_::start_byte0
uint8_t start_byte0
Definition: app-layer-dnp3.h:121
DNP3Point_
DNP3 object point.
Definition: app-layer-dnp3.h:178
DNP3Transaction_
DNP3 transaction.
Definition: app-layer-dnp3.h:214
DNP3Buffer_
A struct used for buffering incoming data prior to reassembly.
Definition: app-layer-dnp3.h:156
DNP3Transaction_::buffer
uint8_t * buffer
Definition: app-layer-dnp3.h:222
DNP3_DECODER_EVENT_LEN_TOO_SMALL
@ DNP3_DECODER_EVENT_LEN_TOO_SMALL
Definition: app-layer-dnp3.h:108