Add a new "prefs_register_protocol()" routine, which is like
[obnox/wireshark/wip.git] / packet-osi-options.c
1 /* packet-osi-options.c
2  * Routines for the decode of ISO/OSI option part 
3  * Covers:
4  * ISO  8473 CLNP (ConnectionLess Mode Network Service Protocol)
5  * ISO 10589 ISIS (Intradomain Routeing Information Exchange Protocol)
6  * ISO  9542 ESIS (End System To Intermediate System Routeing Exchange Protocol)
7  *
8  * $Id: packet-osi-options.c,v 1.4 2000/11/19 04:14:26 guy Exp $
9  * Ralf Schneider <Ralf.Schneider@t-online.de>
10  *
11  * Ethereal - Network traffic analyzer
12  * By Gerald Combs <gerald@zing.org>
13  * Copyright 1998 Gerald Combs
14  *
15  * 
16  * This program is free software; you can redistribute it and/or
17  * modify it under the terms of the GNU General Public License
18  * as published by the Free Software Foundation; either version 2
19  * of the License, or (at your option) any later version.
20  * 
21  * This program is distributed in the hope that it will be useful,
22  * but WITHOUT ANY WARRANTY; without even the implied warranty of
23  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24  * GNU General Public License for more details.
25  * 
26  * You should have received a copy of the GNU General Public License
27  * along with this program; if not, write to the Free Software
28  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
29  *
30  *
31  */
32
33 #ifdef HAVE_CONFIG_H
34 # include "config.h"
35 #endif
36
37 #ifdef HAVE_SYS_TYPES_H
38 # include <sys/types.h>
39 #endif
40
41 #include <stdio.h>
42 #include <string.h>
43 #include <glib.h>
44 #include "packet.h"
45 #include "nlpid.h"
46 #include "packet-osi.h"
47 #include "packet-isis.h"
48 #include "packet-isis-clv.h"
49 #include "packet-isis-hello.h"
50 #include "packet-isis-lsp.h"
51 #include "packet-isis-snp.h"
52 #include "packet-esis.h"
53 #include "packet-osi-options.h"
54
55 #define OSI_OPT_SECURITY           0xc5
56 #define OSI_OPT_QOS_MAINTANANCE    0xc3
57 #define OSI_OPT_PRIORITY           0xcd
58 #define OSI_OPT_ADDRESS_MASK       0xe1
59 #define OSI_OPT_SNPA_MASK          0xe2
60 #define OSI_OPT_ES_CONFIG_TIMER    0xc6
61
62 #define OSI_OPT_MAX_PRIORITY       0x0e
63
64 #define OSI_OPT_PADDING            0xcc
65 #define OSI_OPT_SOURCE_ROUTING     0xc8
66 #define OSI_OPT_RECORD_OF_ROUTE    0xcb
67 #define OSI_OPT_REASON_OF_DISCARD  0xc1
68
69 #define OSI_OPT_SEC_MASK           0xc0
70 #define OSI_OPT_SEC_RESERVED       0x00
71 #define OSI_OPT_SEC_SRC_ADR_SPEC   0x40
72 #define OSI_OPT_SEC_DST_ADR_SPEC   0x80
73 #define OSI_OPT_SEC_GLOBAL_UNIQUE  0xc0
74
75 #define OSI_OPT_QOS_MASK           0xc0
76 #define OSI_OPT_QOS_RESERVED       0x00
77 #define OSI_OPT_QOS_SRC_ADR_SPEC   0x40
78 #define OSI_OPT_QOS_DST_ADR_SPEC   0x80
79 #define OSI_OPT_QOS_GLOBAL_UNIQUE  0xc0
80  
81 #define OSI_OPT_QOS_SUB_MASK        0x3f
82 #define OSI_OPT_QOS_SUB_RSVD        0x20
83 #define OSI_OPT_QOS_SUB_SEQ_VS_TRS  0x10
84 #define OSI_OPT_QOS_SUB_CONG_EXPED  0x08
85 #define OSI_OPT_QOS_SUB_TSD_VS_COST 0x04
86 #define OSI_OPT_QOS_SUB_RESERR_TRS  0x02
87 #define OSI_OPT_QOS_SUB_RESERR_COST 0x01
88
89 #define OSI_OPT_RFD_GENERAL         0x00
90 #define OSI_OPT_RFD_ADDRESS         0x80
91 #define OSI_OPT_RFD_SOURCE_ROUTEING 0x90
92 #define OSI_OPT_RFD_LIFETIME        0xa0
93 #define OSI_OPT_RFD_PDU_DISCARDED   0xb0
94 #define OSI_OPT_RFD_REASSEMBLY      0xc0
95
96 #define OSI_OPT_RFD_MASK            0xf0
97 #define OSI_OPT_RFD_SUB_MASK        0x0f
98
99
100
101
102 static gint ott_osi_options       = -1;
103 static gint ott_osi_qos           = -1;
104 static gint ott_osi_route         = -1;
105 static gint ott_osi_redirect      = -1;
106
107 static const value_string osi_opt_sec_vals[] = {
108         { OSI_OPT_SEC_RESERVED,      "Reserved"},
109         { OSI_OPT_SEC_SRC_ADR_SPEC,  "Source Address Specific"},
110         { OSI_OPT_SEC_DST_ADR_SPEC,  "Destination Address Specific"},
111         { OSI_OPT_SEC_GLOBAL_UNIQUE, "Globally Unique"},
112         { 0,            NULL} };
113      
114 static const value_string osi_opt_qos_vals[] = {
115         { OSI_OPT_QOS_RESERVED,      "Reserved"},
116         { OSI_OPT_QOS_SRC_ADR_SPEC,  "Source Address Specific"},
117         { OSI_OPT_QOS_DST_ADR_SPEC,  "Destination Address Specific"},
118         { OSI_OPT_QOS_GLOBAL_UNIQUE, "Globally Unique"},
119         { 0,            NULL} };
120      
121 static const value_string osi_opt_qos_sub_vals[] = {
122         { 0x20,  " xx10 0000 Reserved"},
123         { 0x10,  " xx01 0000 Sequencing versus transit delay"},
124         { 0x08,  " xx00 1000 Congestion experienced"},
125         { 0x04,  " xx00 0100 Transit delay versus cost"},
126         { 0x02,  " xx00 0010 Residual error probability versus transit delay"},
127         { 0x01,  " xx00 0001 Residual error probability versus cost"},
128         { 0,            NULL} };
129   
130 static const value_string osi_opt_rfd_general[] = {
131         { 0x00, "Reason not specified"},
132         { 0x01, "Protocol procedure error"},
133         { 0x02, "Incorrect checksum"},
134         { 0x03, "PDU discarded due to congestion"},
135         { 0x04, "Header syntax error ( cannot be parsed )"},
136         { 0x05, "Segmentation needed but not permitted"},
137         { 0x06, "Incomplete PDU received"},
138         { 0x07, "Duplicate option"},
139         { 0,    NULL} };
140      
141 static const value_string osi_opt_rfd_address[] = {
142         { 0x00, "Destination Address unreachable"},
143         { 0x01, "Destination Address unknown"},
144         { 0,    NULL} };
145      
146 static const value_string osi_opt_rfd_src_route[] = {
147         { 0x00, "Unspecified source routeing error"},
148         { 0x01, "Syntax error in source routeing field"},
149         { 0x02, "Unknown address in source routeing field"},
150         { 0x03, "Path not acceptable"},
151         { 0,    NULL} };
152      
153 static const value_string osi_opt_rfd_lifetime[] = {
154         { 0x00, "Lifetime expired while data unit in transit"},
155         { 0x01, "Lifetime expired during reassembly"},
156         { 0,    NULL} };
157      
158 static const value_string osi_opt_rfd_discarded[] = {
159         { 0x00, "Unsupported option not specified"},
160         { 0x01, "Unsupported protocol version"},
161         { 0x02, "Unsupported security option"},
162         { 0x03, "Unsupported source routeing option"},
163         { 0x04, "Unsupported recording of route option"},
164         { 0,    NULL} };
165      
166 static const value_string osi_opt_rfd_reassembly[] = {
167         { 0x00, "Reassembly interference"},
168         { 0,    NULL} };
169      
170
171 void
172 dissect_option_qos( const u_char type, const u_char sub_type, u_char offset,
173                     u_char len, tvbuff_t *tvb, proto_tree *tree ) {
174
175   u_char      tmp_type = 0;
176   proto_item *ti;
177   proto_tree *osi_qos_tree = NULL;
178   
179   
180   ti = proto_tree_add_text( tree, NullTVB, offset, len,
181                             "Quality of service maintenance: %s",
182                        val_to_str( type, osi_opt_qos_vals, "Unknown (0x%x)") );
183   
184   osi_qos_tree = proto_item_add_subtree( ti, ott_osi_qos );
185                            
186   if ( OSI_OPT_SEC_MASK == type ) {     /* Analye BIT field to get all Values */
187
188     tmp_type = sub_type & OSI_OPT_QOS_SUB_RSVD;
189     if ( tmp_type ) {
190          proto_tree_add_text( osi_qos_tree, NullTVB, offset, len,
191          val_to_str( tmp_type, osi_opt_qos_sub_vals, "Unknown (0x%x)") );
192     }
193     tmp_type = sub_type & OSI_OPT_QOS_SUB_SEQ_VS_TRS;
194     if ( tmp_type ) {
195          proto_tree_add_text( osi_qos_tree, NullTVB, offset, len,
196          val_to_str( tmp_type, osi_opt_qos_sub_vals, "Unknown (0x%x)") );
197     }
198     tmp_type = sub_type &OSI_OPT_QOS_SUB_CONG_EXPED;
199     if ( tmp_type ) {
200          proto_tree_add_text( osi_qos_tree, NullTVB, offset, len,
201          val_to_str( tmp_type, osi_opt_qos_sub_vals, "Unknown (0x%x)") );
202     }
203     tmp_type = sub_type & OSI_OPT_QOS_SUB_TSD_VS_COST;
204     
205     if ( tmp_type ) {
206          proto_tree_add_text( osi_qos_tree, NullTVB, offset, len,
207          val_to_str( tmp_type, osi_opt_qos_sub_vals, "Unknown (0x%x)") );
208     }
209     tmp_type = sub_type & OSI_OPT_QOS_SUB_RESERR_TRS;
210     if ( tmp_type ) {
211          proto_tree_add_text( osi_qos_tree, NullTVB, offset, len,
212          val_to_str( tmp_type, osi_opt_qos_sub_vals, "Unknown (0x%x)") );
213     }
214     tmp_type = sub_type & OSI_OPT_QOS_SUB_RESERR_COST;
215     if ( tmp_type ) {
216          proto_tree_add_text( osi_qos_tree, NullTVB, offset, len,
217          val_to_str( tmp_type, osi_opt_qos_sub_vals, "Unknown (0x%x)") );
218     }
219   }
220 };
221 void
222 dissect_option_route( u_char parm_type, u_char offset, u_char parm_len, 
223                       tvbuff_t *tvb, proto_tree *tree ) {
224
225   u_char      next_hop = 0;
226   u_char      this_hop = 0;
227   u_char      netl     = 0;
228   u_char      last_hop = 0;
229   u_char      cnt_hops = 0;
230   
231   proto_item *ti;
232   proto_tree *osi_route_tree = NULL;
233
234   static const value_string osi_opt_route[] = {
235         { 0x03, "No Network Entity Titles Recorded Yet"},
236         { 0xff, "Recording Terminated !"},
237         { 0,    NULL} };
238
239   if ( parm_type == OSI_OPT_SOURCE_ROUTING ) {
240     next_hop = tvb_get_guint8(tvb, offset + 1 );
241     netl     = tvb_get_guint8(tvb, next_hop + 2 );
242     this_hop = offset + 3;         /* points to first netl */
243
244     ti = proto_tree_add_text( tree, tvb, offset + next_hop, netl, 
245             "Source Routing: %s   ( Next Hop Highlighted In Data Buffer )",
246             (tvb_get_guint8(tvb, offset) == 0) ? "Partial Source Routeing" :
247                                                  "Complete Source Routeing"  ); 
248   }
249   else {
250     last_hop = tvb_get_guint8(tvb, offset + 1 );
251         /* points to the end of the list */
252     netl     = tvb_get_guint8(tvb, last_hop );
253         /* mis-used to highlight buffer */
254
255     ti = proto_tree_add_text( tree, tvb, offset + next_hop, netl,
256             "Record of Route: %s : %s",
257             (tvb_get_guint8(tvb, offset) == 0) ? "Partial Source Routeing" :
258                                                  "Complete Source Routeing" ,
259             val_to_str( last_hop, osi_opt_route, "Unknown (0x%x" ) );
260     if ( 255 == last_hop ) 
261       this_hop = parm_len + 1;   /* recording terminated, nothing to show */
262     else
263       this_hop = offset + 3;
264   }
265   osi_route_tree = proto_item_add_subtree( ti, ott_osi_route );
266   
267   while ( this_hop < parm_len ) {
268     netl = tvb_get_guint8(tvb, this_hop + 1);
269     proto_tree_add_text( osi_route_tree, tvb, offset + this_hop, netl,
270                   "Hop #%3u NETL: %2u, NET: %s",
271                   cnt_hops++,
272                   netl,
273                   print_nsap_net( tvb_get_ptr(tvb, this_hop + 1, netl), netl ) );
274     this_hop += 1 + netl;
275   }
276 };
277
278
279
280
281
282 void
283 dissect_option_rfd( const u_char error, const u_char field, u_char offset,
284                           u_char len, tvbuff_t *tvb, proto_tree *tree ) {
285   u_char error_class = 0;
286   char   *format_string[] = 
287              { "Reason for discard {General}        : %s, in field %u",
288                "Reason for discard {Address}        : %s, in field %u",
289                "Reason for discard {Source Routeing}: %s, in field %u",
290                "Reason for discard {Lifetime}       : %s, in field %u",
291                "Reason for discard {PDU discarded}  : %s, in field %u",
292                "Reason for discard {Reassembly}     : %s, in field %u"
293              };
294   
295   error_class = error & OSI_OPT_RFD_MASK;
296
297   if ( OSI_OPT_RFD_GENERAL == error_class ) {
298     proto_tree_add_text( tree, tvb, offset + field, 1, format_string[0],
299                          val_to_str( error & OSI_OPT_RFD_SUB_MASK,
300                                osi_opt_rfd_general, "Unknown (0x%x)"), field );
301   }
302   else if ( OSI_OPT_RFD_ADDRESS == error_class ) {
303     proto_tree_add_text( tree, tvb, offset + field, 1, format_string[1],
304                          val_to_str( error & OSI_OPT_RFD_SUB_MASK,
305                                osi_opt_rfd_address, "Unknown (0x%x)"), field );
306   }
307   else if ( OSI_OPT_RFD_SOURCE_ROUTEING == error_class ) {
308     proto_tree_add_text( tree, tvb, offset + field, 1, format_string[2],
309                          val_to_str( error & OSI_OPT_RFD_SUB_MASK,
310                              osi_opt_rfd_src_route, "Unknown (0x%x)"), field );
311   }
312   else if ( OSI_OPT_RFD_LIFETIME == error_class ) {
313     proto_tree_add_text( tree, tvb, offset + field, 1, format_string[3],
314                          val_to_str( error & OSI_OPT_RFD_SUB_MASK,
315                               osi_opt_rfd_lifetime, "Unknown (0x%x)"), field );
316   }
317   else if ( OSI_OPT_RFD_PDU_DISCARDED == error_class ) {
318     proto_tree_add_text( tree, tvb, offset + field, 1, format_string[4],
319                          val_to_str( error & OSI_OPT_RFD_SUB_MASK,
320                              osi_opt_rfd_discarded, "Unknown (0x%x)"), field );
321   }
322   else if ( OSI_OPT_RFD_REASSEMBLY == error_class ) {
323     proto_tree_add_text( tree, tvb, offset + field, 1, format_string[5],
324                          val_to_str( error & OSI_OPT_RFD_SUB_MASK,
325                             osi_opt_rfd_reassembly, "Unknown (0x%x)"), field );
326   }
327   else {
328     proto_tree_add_text( tree, tvb, offset, len,
329                          "Reason for discard: UNKNOWN Error Class" );
330   } 
331 };
332
333 /* ############################## Dissection Functions ###################### */
334
335 /*
336  * Name: dissect_osi_options()
337  * 
338  * Description:
339  *   Main entry area for esis de-mangling.  This will build the
340  *   main esis tree data and call the sub-protocols as needed.
341  *
342  * Input:
343  *   u_char       : PDU type to check if option is allowed or not
344  *   u_char       : length of option section 
345  *   u_char *     : packet data
346  *   int          : offset into packet where we are (packet_data[offset]== start
347  *                  of what we care about)
348  *   frame_data * : frame data (whole packet with extra info)
349  *   proto_tree * : tree of display data.  May be NULL.
350  *
351  * Output:
352  *   void, but we will add to the proto_tree if it is not NULL.
353  */
354 void
355 dissect_osi_options( u_char pdu_type, u_char opt_len, tvbuff_t *tvb, 
356                      int offset, packet_info *pinfo, proto_tree *tree) {
357    proto_item *ti;
358    proto_tree *osi_option_tree = NULL;
359    u_char      parm_len        = 0;
360    u_char      parm_type       = 0;
361    guint8      octet;
362
363    if (tree) {
364      if ( 0 == opt_len ) {
365        proto_tree_add_text( tree, tvb, offset, 0, 
366                             "### No Options for this PDU ###" );
367        return;
368      }
369      
370      if ( opt_len > END_OF_FRAME ) {
371        proto_tree_add_text( tree, tvb, offset, END_OF_FRAME, 
372            "### Options go past the end of the captured data in this PDU ###" );
373        return;
374      }
375
376      ti = proto_tree_add_text( tree, tvb, offset, opt_len,
377                                "### Option Section ###" );
378      osi_option_tree = proto_item_add_subtree( ti, ott_osi_options );
379
380      while ( 0 < opt_len ) {
381         parm_type   = (int) tvb_get_guint8(tvb, offset);
382         offset++;
383         parm_len    = (int) tvb_get_guint8(tvb, offset);
384         offset++;
385          
386         switch ( parm_type ) {
387           case   OSI_OPT_QOS_MAINTANANCE:
388                  octet = tvb_get_guint8(tvb, offset);
389                  dissect_option_qos( octet&OSI_OPT_QOS_MASK,
390                                      octet&OSI_OPT_QOS_SUB_MASK,
391                                      offset, parm_len, tvb, osi_option_tree );
392           break;
393           case   OSI_OPT_SECURITY:
394                  octet = tvb_get_guint8(tvb, offset);
395                  proto_tree_add_text( osi_option_tree, tvb, offset, parm_len,
396                   "Security type: %s",
397                   val_to_str( octet&OSI_OPT_SEC_MASK,
398                               osi_opt_sec_vals, "Unknown (0x%x)")  );
399           break;
400           case   OSI_OPT_PRIORITY:
401                  octet = tvb_get_guint8(tvb, offset);
402                  if ( OSI_OPT_MAX_PRIORITY >= octet ) { 
403                    proto_tree_add_text( osi_option_tree, tvb, offset, parm_len,
404                                         "Priority    : %u", octet );
405                  }
406                  else {
407                    proto_tree_add_text( osi_option_tree, tvb, offset, parm_len,
408                                         "Priority    : %u ( Invalid )", 
409                                         octet );
410                  } 
411           break;
412           case   OSI_OPT_ADDRESS_MASK:
413                  proto_tree_add_text( osi_option_tree, tvb, offset, parm_len,
414                   "Address Mask: %s",
415                   print_area( tvb_get_ptr(tvb, offset, parm_len), parm_len ) );
416           break;
417           case   OSI_OPT_SNPA_MASK:
418                  proto_tree_add_text( osi_option_tree, tvb, offset, parm_len,
419                   "SNPA Mask   : %s",
420                   print_system_id( tvb_get_ptr(tvb, offset, parm_len), parm_len ));
421           break;
422           case   OSI_OPT_ES_CONFIG_TIMER:
423                  proto_tree_add_text( osi_option_tree, tvb, offset, parm_len,
424                   "ESCT     : %u seconds", tvb_get_ntohs( tvb, offset ) ); 
425           break;
426           case   OSI_OPT_PADDING:
427                  proto_tree_add_text( osi_option_tree, tvb, offset, parm_len,
428                   "Padding  : %u Octets", parm_len ) ;
429           break;
430           case   OSI_OPT_SOURCE_ROUTING:
431           case   OSI_OPT_RECORD_OF_ROUTE:
432                  dissect_option_route( parm_type,
433                                        offset, parm_len, tvb, osi_option_tree );
434           break;
435           case   OSI_OPT_REASON_OF_DISCARD:
436                  dissect_option_rfd( tvb_get_guint8(tvb, offset),
437                                      tvb_get_guint8(tvb, offset + 1),
438                                      offset, parm_len, tvb, osi_option_tree );
439           break;
440         }
441         opt_len -= parm_len + 2;
442         offset  += parm_len;
443       }
444    } 
445 }; /* dissect-osi-options */
446
447
448 /*
449  * Name: proto_register_osi_options()
450  *
451  * Description:
452  *      main register for esis protocol set.  We register some display
453  *      formats and the protocol module variables.
454  *
455  *      NOTE: this procedure to autolinked by the makefile process that
456  *      builds register.c
457  *
458  * Input:
459  *      void
460  *
461  * Output:
462  *      void
463  */
464
465 void
466 proto_register_osi_options(void) {
467   static gint *ott[] = {
468     &ott_osi_options,
469     &ott_osi_qos,
470     &ott_osi_route,
471     &ott_osi_redirect,
472   };
473   proto_register_subtree_array( ott, array_length(ott));
474 };
475