Put the correct IE names in GTPv1 messages.
[obnox/wireshark/wip.git] / epan / osi-utils.c
1 /* osi-utils.c
2  * Routines for ISO/OSI network and transport protocol packet disassembly
3  * Main entrance point and common functions
4  *
5  * $Id$
6  * Laurent Deniel <laurent.deniel@free.fr>
7  * Ralf Schneider <Ralf.Schneider@t-online.de>
8  *
9  * Wireshark - Network traffic analyzer
10  * By Gerald Combs <gerald@wireshark.org>
11  * Copyright 1998 Gerald Combs
12  *
13  * This program is free software; you can redistribute it and/or
14  * modify it under the terms of the GNU General Public License
15  * as published by the Free Software Foundation; either version 2
16  * of the License, or (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software
25  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
26  */
27
28 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
31
32 #include <stdio.h>
33 #include <string.h>
34 #include <glib.h>
35
36 #include "osi-utils.h"
37 #include "emem.h"
38
39 /*
40  * XXX - shouldn't there be a centralized routine for dissecting NSAPs?
41  * See also "dissect_atm_nsap()" in epan/dissectors/packet-arp.c and
42  * "dissect_nsap()" in epan/dissectors/packet-isup.c.
43  */
44 gchar *
45 print_nsap_net( const guint8 *ad, int length )
46 {
47   gchar *cur;
48
49   cur = ep_alloc(MAX_NSAP_LEN * 3 + 50);
50   print_nsap_net_buf( ad, length, cur, MAX_NSAP_LEN * 3 + 50);
51   return( cur );
52 }
53
54 void
55 print_nsap_net_buf( const guint8 *ad, int length, gchar *buf, int buf_len)
56 {
57   gchar *cur;
58
59   /* to do : NSAP / NET decoding */
60
61   if ( (length <= 0 ) || ( length > MAX_NSAP_LEN ) ) {
62     g_snprintf(buf, buf_len, "<Invalid length of NSAP>");
63     return;
64   }
65   cur = buf;
66   if ( ( length == RFC1237_NSAP_LEN ) || ( length == RFC1237_NSAP_LEN + 1 ) ) {
67     print_area_buf(ad, RFC1237_FULLAREA_LEN, cur, buf_len-(cur-buf));
68     cur += strlen( cur );
69     print_system_id_buf( ad + RFC1237_FULLAREA_LEN, RFC1237_SYSTEMID_LEN, cur, buf_len-(cur-buf));
70     cur += strlen( cur );
71     cur += g_snprintf(cur, buf_len-(cur-buf), "[%02x]",
72                     ad[ RFC1237_FULLAREA_LEN + RFC1237_SYSTEMID_LEN ] );
73     if ( length == RFC1237_NSAP_LEN + 1 ) {
74       cur += g_snprintf(cur, buf_len-(cur-buf), "-%02x", ad[ length -1 ] );
75     }
76   }
77   else {    /* probably format as standard */
78     print_area_buf( ad, length, buf, buf_len);
79   }
80 } /* print_nsap */
81
82 gchar *
83 print_system_id( const guint8 *ad, int length )
84 {
85   gchar        *cur;
86
87   cur = ep_alloc(MAX_SYSTEMID_LEN * 3 + 5);
88   print_system_id_buf(ad, length, cur, MAX_SYSTEMID_LEN * 3 + 5);
89   return( cur );
90 }
91
92 void
93 print_system_id_buf( const guint8 *ad, int length, gchar *buf, int buf_len)
94 {
95   gchar        *cur;
96   int           tmp;
97
98   if ( ( length <= 0 ) || ( length > MAX_SYSTEMID_LEN ) ) {
99     g_snprintf(buf, buf_len, "<Invalid length of SYSTEM ID>");
100     return;
101   }
102
103   cur = buf;
104   if ( ( 6 == length ) || /* System-ID */
105        ( 7 == length ) || /* LAN-ID */
106        ( 8 == length )) { /* LSP-ID */
107     cur += g_snprintf(cur, buf_len-(cur-buf), "%02x%02x.%02x%02x.%02x%02x", ad[0], ad[1],
108                     ad[2], ad[3], ad[4], ad[5] );
109     if ( ( 7 == length ) ||
110          ( 8 == length )) {
111         cur += g_snprintf(cur, buf_len-(cur-buf), ".%02x", ad[6] );
112     }
113     if ( 8 == length ) {
114         cur += g_snprintf(cur, buf_len-(cur-buf), "-%02x", ad[7] );
115     }
116   }
117   else {
118     tmp = 0;
119     while ( tmp < length / 4 ) { /* 16 / 4 == 4 > four Octets left to print */
120       cur += g_snprintf(cur, buf_len-(cur-buf), "%02x", ad[tmp++] );
121       cur += g_snprintf(cur, buf_len-(cur-buf), "%02x", ad[tmp++] );
122       cur += g_snprintf(cur, buf_len-(cur-buf), "%02x", ad[tmp++] );
123       cur += g_snprintf(cur, buf_len-(cur-buf), "%02x.", ad[tmp++] );
124     }
125     if ( 1 == tmp ) {   /* Special case for Designated IS */
126       cur--;
127       g_snprintf(cur, buf_len-(cur-buf), ".%02x", ad[tmp] );
128     }
129     else {
130       for ( ; tmp < length; ) {  /* print the rest without dot */
131         cur += g_snprintf(cur, buf_len-(cur-buf), "%02x", ad[tmp++] );
132       }
133     }
134   }
135 }
136
137 gchar *
138 print_area(const guint8 *ad, int length)
139 {
140   gchar *cur;
141
142   cur = ep_alloc(MAX_AREA_LEN * 3 + 20);
143   print_area_buf(ad, length, cur, MAX_AREA_LEN * 3 + 20);
144   return cur;
145 }
146
147 void
148 print_area_buf(const guint8 *ad, int length, gchar *buf, int buf_len)
149 {
150   gchar *cur;
151   int  tmp  = 0;
152
153   /* to do : all real area decoding now: NET is assumed if id len is 1 more byte
154    * and take away all these stupid resource consuming local statics
155    */
156   if (length <= 0 || length > MAX_AREA_LEN) {
157     g_snprintf(buf, buf_len, "<Invalid length of AREA>");
158     return;
159   }
160
161   cur = buf;
162   if ( (  ( NSAP_IDI_ISODCC          == *ad )
163        || ( NSAP_IDI_GOSIP2          == *ad )
164        )
165        &&
166        (  ( RFC1237_FULLAREA_LEN     ==  length )
167        || ( RFC1237_FULLAREA_LEN + 1 ==  length )
168        )
169      ) {    /* AFI is good and length is long enough  */
170
171     /* there used to be a check for (length > RFC1237_FULLAREA_LEN + 1) here,
172      * in order to report an invalied length of AREA for DCC / GOSIP AFI,
173      * but that can *never* be the case because the if() test above explicitly
174      * tests for (length == RFC1237_FULLAREA_LEN) or (length == RFC1237_FULLAREA_LEN + 1)
175      */
176
177     cur += g_snprintf(cur, buf_len-(cur-buf), "[%02x|%02x:%02x][%02x|%02x:%02x:%02x|%02x:%02x]",
178                     ad[0], ad[1], ad[2], ad[3], ad[4],
179                     ad[5], ad[6], ad[7], ad[8] );
180     cur += g_snprintf(cur, buf_len-(cur-buf), "[%02x:%02x|%02x:%02x]",
181                     ad[9], ad[10],  ad[11], ad[12] );
182     if ( RFC1237_FULLAREA_LEN + 1 == length )
183       g_snprintf(cur, buf_len-(cur-buf), "-[%02x]", ad[20] );
184   }
185   else { /* print standard format */
186     if ( length == RFC1237_AREA_LEN ) {
187       g_snprintf(buf, buf_len, "%02x.%02x%02x", ad[0], ad[1], ad[2] );
188       return;
189     }
190     if ( 4 < length ) {
191       while ( tmp < length / 4 ) {      /* 16/4==4 > four Octets left to print */
192         cur += g_snprintf(cur, buf_len-(cur-buf), "%02x", ad[tmp++] );
193         cur += g_snprintf(cur, buf_len-(cur-buf), "%02x", ad[tmp++] );
194         cur += g_snprintf(cur, buf_len-(cur-buf), "%02x", ad[tmp++] );
195         cur += g_snprintf(cur, buf_len-(cur-buf), "%02x.", ad[tmp++] );
196       }
197       if ( 1 == tmp ) {                     /* Special case for Designated IS */
198         cur--;
199         g_snprintf(cur, buf_len-(cur-buf), "-%02x", ad[tmp] );
200       }
201       else {
202         for ( ; tmp < length; ) {  /* print the rest without dot */
203           cur += g_snprintf(cur, buf_len-(cur-buf), "%02x", ad[tmp++] );
204         }
205       }
206     }
207   }
208 } /* print_area_buf */
209