1IDL2WRS(1) The Wireshark Network Analyzer IDL2WRS(1)
2
3
4
6 idl2wrs - CORBA IDL to Wireshark Plugin Generator
7
9 idl2wrs filename
10
12 idl2wrs is a program that takes a user specified CORBA IDL file and
13 generates "C" source code for an Wireshark "plugin".
14
15 This resulting file can be compiled as an Wireshark plugin, and used to
16 monitor GIOP/IIOP traffic that is using this IDL.
17
18 idl2wrs is actually a shell script wrapper for two Python programs.
19
20 These programs are:
21
22 wireshark_be.py - Contains the main IDL Visitor Class
23
24 wireshark_gen.py - Contains the Source Code Generator Class
25
26 idl2wrs supports heuristic dissection of GIOP/IIOP traffic, and some
27 experimental code for explicit dissection, based on Object Key <->
28 Repository Id mapping. However, code for heuristic based plugins is
29 generated by default, and users should consider this the preferred
30 method unless you have some namespace collisions.
31
33 Currently there are no options. idl2wrs can be invoked as follows.
34
35 1. To write the C code to stdout.
36
37 idl2wrs <your_file.idl>
38
39 eg: idl2wrs echo.idl
40
41 2. To write to a file, just redirect the output.
42
43 idl2wrs echo.idl > packet-test.c
44
46 idl2wrs will look for wireshark_be.py and wireshark_gen.py in $PYTHON‐
47 PATH/site-packages/ and if not found, will try the current directory ./
48
49 The -p option passed to omniidl (inside idl2wrs) indicates where wire‐
50 shark_be.py and wireshark_gen.py will be searched. This may need
51 tweaking if you place these files somewhere else.
52
53 If it complains about being unable to find some modules (eg temp‐
54 file.py), you may want to check if PYTHONPATH is set correctly.
55
56 eg: PYTHONPATH=/usr/lib/python1.5/
57
59 wireshark(1), tshark(1)
60
62 idl2wrs (including wireshark_be.py and wireshark_gen.py) are part of
63 the Wireshark distribution. The latest version of Wireshark can be
64 found at <http://www.wireshark.org>.
65
66 idl2wrs uses omniidl, an IDL parser, and can be found at
67 <http://omniorb.sourceforge.net/>
68
70 Some of the more important things to do are:
71
72 * Improve Explicit dissection code.
73 * Improve command line options.
74 * Improve decode algorithm when we have operation name collision.
75
77 Original Author
78 -------- ------
79 Frank Singleton <frank.singleton[AT]ericsson.com>
80
81 Contributors
82 ------------
83
84
85
861.0.0 2008-03-29 IDL2WRS(1)