3 * Jochen Friedrich <jochen@scram.de>
7 * Wireshark - Network traffic analyzer
8 * By Gerald Combs <gerald@wireshark.org>
9 * Copyright 1998 Gerald Combs
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version 2
14 * of the License, or (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
29 #include <epan/packet.h>
31 #include <epan/llcsaps.h>
32 #include "packet-llc.h"
34 static int proto_rpl
= -1;
36 static int hf_rpl_type
= -1;
37 static int hf_rpl_corrval
= -1;
38 static int hf_rpl_respval
= -1;
39 static int hf_rpl_maxframe
= -1;
40 static int hf_rpl_connclass
= -1;
41 static int hf_rpl_lmac
= -1;
42 static int hf_rpl_smac
= -1;
43 static int hf_rpl_sap
= -1;
44 static int hf_rpl_equipment
= -1;
45 static int hf_rpl_memsize
= -1;
46 static int hf_rpl_bsmversion
= -1;
47 static int hf_rpl_adapterid
= -1;
48 static int hf_rpl_shortname
= -1;
49 static int hf_rpl_laddress
= -1;
50 static int hf_rpl_xaddress
= -1;
51 static int hf_rpl_sequence
= -1;
52 static int hf_rpl_config
= -1;
53 static int hf_rpl_flags
= -1;
54 static int hf_rpl_data
= -1;
55 static int hf_rpl_ec
= -1;
57 static gint ett_rpl
= -1;
58 static gint ett_rpl_0004
= -1;
59 static gint ett_rpl_0008
= -1;
60 static gint ett_rpl_4003
= -1;
61 static gint ett_rpl_4006
= -1;
62 static gint ett_rpl_4007
= -1;
63 static gint ett_rpl_4009
= -1;
64 static gint ett_rpl_400a
= -1;
65 static gint ett_rpl_400b
= -1;
66 static gint ett_rpl_400c
= -1;
67 static gint ett_rpl_4011
= -1;
68 static gint ett_rpl_4018
= -1;
69 static gint ett_rpl_c005
= -1;
70 static gint ett_rpl_c014
= -1;
71 static gint ett_rpl_unkn
= -1;
73 static const value_string rpl_type_vals
[] = {
74 { 1, "FIND Command" },
76 { 4, "Search Vector" },
77 { 8, "Connect Info Vector" },
78 { 0x10, "Send File Request" },
79 { 0x20, "File Data Response" },
80 { 0x4003, "Correlator Vector" },
81 { 0x4006, "Loader Address Vector" },
82 { 0x4007, "Loader SAP Vector" },
83 { 0x4009, "Frame Size Sub-Vector" },
84 { 0x400a, "Connect Class Sub-Vector" },
85 { 0x400b, "Response Correlator" },
86 { 0x400c, "Set Address Vector" },
87 { 0x4011, "Sequence Header" },
88 { 0x4018, "File Data Vector" },
89 { 0xc005, "Loader Info Sub-Vector" },
90 { 0xc014, "Loader Header" },
94 static dissector_handle_t data_handle
;
97 dissect_rpl_container(tvbuff_t
*tvb
, packet_info
*pinfo
, proto_tree
*tree
)
99 guint16 len
, type
, sublen
, subtyp
;
101 proto_tree
*rpl_container_tree
;
104 gint length
, reported_length
;
106 len
= tvb_get_ntohs(tvb
, 0);
107 proto_tree_add_text(tree
, tvb
, 0, 2, "Length: %u", len
);
109 type
= tvb_get_ntohs(tvb
, 2);
110 proto_tree_add_text(tree
, tvb
, 2, 2, "Type: %s",
111 val_to_str_const(type
, rpl_type_vals
, "Unknown Type"));
121 while (len
>= offset
+4) {
122 sublen
= tvb_get_ntohs(tvb
, offset
);
123 subtyp
= tvb_get_ntohs(tvb
, offset
+2);
124 ett_type
= ett_rpl_unkn
;
125 if(subtyp
== 0x0004) ett_type
= ett_rpl_0004
;
126 if(subtyp
== 0x0008) ett_type
= ett_rpl_0008
;
127 if(subtyp
== 0x4003) ett_type
= ett_rpl_4003
;
128 if(subtyp
== 0x4006) ett_type
= ett_rpl_4006
;
129 if(subtyp
== 0x4007) ett_type
= ett_rpl_4007
;
130 if(subtyp
== 0x4009) ett_type
= ett_rpl_4009
;
131 if(subtyp
== 0x400a) ett_type
= ett_rpl_400a
;
132 if(subtyp
== 0x400b) ett_type
= ett_rpl_400b
;
133 if(subtyp
== 0x400c) ett_type
= ett_rpl_400c
;
134 if(subtyp
== 0x4011) ett_type
= ett_rpl_4011
;
135 if(subtyp
== 0x4018) ett_type
= ett_rpl_4018
;
136 if(subtyp
== 0xc005) ett_type
= ett_rpl_c005
;
137 if(subtyp
== 0xc014) ett_type
= ett_rpl_c014
;
138 ti
= proto_tree_add_text(tree
, tvb
,
139 offset
, sublen
, "%s",
140 val_to_str_const(subtyp
,
143 rpl_container_tree
= proto_item_add_subtree(ti
,
145 length
= tvb_length_remaining(tvb
, offset
);
148 reported_length
= tvb_reported_length_remaining(tvb
, offset
);
149 if (reported_length
> sublen
)
150 reported_length
= sublen
;
152 dissect_rpl_container(tvb_new_subset(tvb
,
153 offset
, length
, reported_length
),
154 pinfo
, rpl_container_tree
);
155 offset
+= reported_length
;
157 /* no more data, exit the loop */
158 offset
+= reported_length
;
165 proto_tree_add_item(tree
, hf_rpl_corrval
,
166 tvb
, offset
, 4, ENC_BIG_ENDIAN
);
171 proto_tree_add_item(tree
, hf_rpl_lmac
,
172 tvb
, offset
, 6, ENC_NA
);
177 proto_tree_add_item(tree
, hf_rpl_sap
,
178 tvb
, offset
, 1, ENC_BIG_ENDIAN
);
183 proto_tree_add_item(tree
, hf_rpl_maxframe
,
184 tvb
, offset
, 2, ENC_BIG_ENDIAN
);
189 proto_tree_add_item(tree
, hf_rpl_connclass
,
190 tvb
, offset
, 2, ENC_BIG_ENDIAN
);
195 proto_tree_add_item(tree
, hf_rpl_respval
,
196 tvb
, offset
, 1, ENC_BIG_ENDIAN
);
201 proto_tree_add_item(tree
, hf_rpl_smac
,
202 tvb
, offset
, 6, ENC_NA
);
207 proto_tree_add_item(tree
, hf_rpl_sequence
,
208 tvb
, offset
, 4, ENC_BIG_ENDIAN
);
213 proto_tree_add_item(tree
, hf_rpl_data
,
214 tvb
, offset
, len
-4, ENC_NA
);
219 proto_tree_add_item(tree
, hf_rpl_config
,
220 tvb
, offset
, 8, ENC_NA
);
222 proto_tree_add_item(tree
, hf_rpl_equipment
,
223 tvb
, offset
, 2, ENC_BIG_ENDIAN
);
225 proto_tree_add_item(tree
, hf_rpl_memsize
,
226 tvb
, offset
, 2, ENC_BIG_ENDIAN
);
228 proto_tree_add_item(tree
, hf_rpl_bsmversion
,
229 tvb
, offset
, 2, ENC_BIG_ENDIAN
);
231 proto_tree_add_item(tree
, hf_rpl_ec
,
232 tvb
, offset
, 6, ENC_NA
);
234 proto_tree_add_item(tree
, hf_rpl_adapterid
,
235 tvb
, offset
, 2, ENC_BIG_ENDIAN
);
237 proto_tree_add_item(tree
, hf_rpl_shortname
,
238 tvb
, offset
, 10, ENC_NA
);
243 proto_tree_add_item(tree
, hf_rpl_laddress
,
244 tvb
, offset
, 4, ENC_BIG_ENDIAN
);
246 proto_tree_add_item(tree
, hf_rpl_xaddress
,
247 tvb
, offset
, 4, ENC_BIG_ENDIAN
);
249 proto_tree_add_item(tree
, hf_rpl_flags
,
250 tvb
, offset
, 1, ENC_BIG_ENDIAN
);
255 call_dissector(data_handle
,
256 tvb_new_subset_remaining(tvb
, 4), pinfo
,
260 if (tvb_reported_length(tvb
) > offset
)
261 call_dissector(data_handle
,
262 tvb_new_subset_remaining(tvb
, offset
), pinfo
, tree
);
266 dissect_rpl(tvbuff_t
*tvb
, packet_info
*pinfo
, proto_tree
*tree
)
268 guint16 rpl_len
, rpl_type
;
269 proto_item
*ti
, *hidden_item
;
270 proto_tree
*rpl_tree
;
273 col_set_str(pinfo
->cinfo
, COL_PROTOCOL
, "RPL");
275 rpl_len
= tvb_get_ntohs(tvb
, 0);
276 rpl_type
= tvb_get_ntohs(tvb
, 2);
278 col_set_str(pinfo
->cinfo
, COL_INFO
,
279 val_to_str_const(rpl_type
, rpl_type_vals
, "Unknown Type"));
282 ti
= proto_tree_add_item(tree
, proto_rpl
, tvb
, 0,
284 rpl_tree
= proto_item_add_subtree(ti
, ett_rpl
);
285 hidden_item
= proto_tree_add_uint(rpl_tree
, hf_rpl_type
, tvb
, 2, 2,
287 PROTO_ITEM_SET_HIDDEN(hidden_item
);
288 next_tvb
= tvb_new_subset_remaining(tvb
, 0);
289 set_actual_length(next_tvb
, rpl_len
);
290 dissect_rpl_container(next_tvb
, pinfo
, rpl_tree
);
292 if (tvb_reported_length(tvb
) > rpl_len
)
293 call_dissector(data_handle
,
294 tvb_new_subset_remaining(tvb
, rpl_len
), pinfo
,
300 proto_register_rpl(void)
302 static hf_register_info hf
[] = {
304 { "Type", "rpl.type",
305 FT_UINT16
, BASE_DEC
, NULL
, 0x0,
306 "RPL Packet Type", HFILL
}},
308 { "Correlator Value", "rpl.corrval",
309 FT_UINT32
, BASE_HEX
, NULL
, 0x0,
310 "RPL Correlator Value", HFILL
}},
312 { "Response Code", "rpl.respval",
313 FT_UINT8
, BASE_DEC
, NULL
, 0x0,
314 "RPL Response Code", HFILL
}},
316 { "Maximum Frame Size", "rpl.maxframe",
317 FT_UINT16
, BASE_DEC
, NULL
, 0x0,
318 "RPL Maximum Frame Size", HFILL
}},
320 { "Connection Class", "rpl.connclass",
321 FT_UINT16
, BASE_HEX
, NULL
, 0x0,
322 "RPL Connection Class", HFILL
}},
324 { "Loader MAC Address", "rpl.lmac",
325 FT_ETHER
, BASE_NONE
, NULL
, 0x0,
326 "RPL Loader MAC Address", HFILL
}},
328 { "Set MAC Address", "rpl.smac",
329 FT_ETHER
, BASE_NONE
, NULL
, 0x0,
330 "RPL Set MAC Address", HFILL
}},
333 FT_UINT8
, BASE_HEX
, VALS(sap_vals
), 0x0,
336 { "Equipment", "rpl.equipment",
337 FT_UINT16
, BASE_HEX
, NULL
, 0x0,
338 "RPL Equipment - AX from INT 11h", HFILL
}},
340 { "Memory Size", "rpl.memsize",
341 FT_UINT16
, BASE_DEC
, NULL
, 0x0,
342 "RPL Memory Size - AX from INT 12h MINUS 32k MINUS the Boot ROM Size", HFILL
}},
343 { &hf_rpl_bsmversion
,
344 { "BSM Version", "rpl.bsmversion",
345 FT_UINT16
, BASE_HEX
, NULL
, 0x0,
346 "RPL Version of BSM.obj", HFILL
}},
348 { "Adapter ID", "rpl.adapterid",
349 FT_UINT16
, BASE_HEX
, NULL
, 0x0,
350 "RPL Adapter ID", HFILL
}},
352 { "Short Name", "rpl.shortname",
353 FT_BYTES
, BASE_NONE
, NULL
, 0x0,
354 "RPL BSM Short Name", HFILL
}},
356 { "Locate Address", "rpl.laddress",
357 FT_UINT32
, BASE_HEX
, NULL
, 0x0,
358 "RPL Locate Address", HFILL
}},
360 { "XFER Address", "rpl.xaddress",
361 FT_UINT32
, BASE_HEX
, NULL
, 0x0,
362 "RPL Transfer Control Address", HFILL
}},
364 { "Sequence Number", "rpl.sequence",
365 FT_UINT32
, BASE_HEX
, NULL
, 0x0,
366 "RPL Sequence Number", HFILL
}},
368 { "Configuration", "rpl.config",
369 FT_BYTES
, BASE_NONE
, NULL
, 0x0,
370 "RPL Configuration", HFILL
}},
372 { "Flags", "rpl.flags",
373 FT_UINT8
, BASE_HEX
, NULL
, 0x0,
374 "RPL Bit Significant Option Flags", HFILL
}},
376 { "Data", "rpl.data",
377 FT_BYTES
, BASE_NONE
, NULL
, 0x0,
378 "RPL Binary File Data", HFILL
}},
381 FT_BYTES
, BASE_NONE
, NULL
, 0x0,
385 static gint
*ett
[] = {
403 proto_rpl
= proto_register_protocol("Remote Program Load",
405 proto_register_field_array(proto_rpl
, hf
, array_length(hf
));
406 proto_register_subtree_array(ett
, array_length(ett
));
407 register_dissector("rpl", dissect_rpl
, proto_rpl
);
411 proto_reg_handoff_rpl(void)
413 dissector_handle_t rpl_handle
;
415 data_handle
= find_dissector("data");
416 rpl_handle
= find_dissector("rpl");
417 dissector_add_uint("llc.dsap", SAP_RPL
, rpl_handle
);