Coverage Report

Created: 2025-02-15 06:25

/src/wireshark/epan/dissectors/packet-osi.c
Line
Count
Source (jump to first uncovered line)
1
/* packet-osi.c
2
 * Routines for ISO/OSI network and transport protocol packet disassembly
3
 * Main entrance point and common functions
4
 *
5
 * Laurent Deniel <laurent.deniel@free.fr>
6
 * Ralf Schneider <Ralf.Schneider@t-online.de>
7
 *
8
 * Wireshark - Network traffic analyzer
9
 * By Gerald Combs <gerald@wireshark.org>
10
 * Copyright 1998 Gerald Combs
11
 *
12
 * SPDX-License-Identifier: GPL-2.0-or-later
13
 */
14
15
#include "config.h"
16
17
#include <epan/packet.h>
18
#include <epan/prefs.h>
19
#include <epan/llcsaps.h>
20
#include <epan/aftypes.h>
21
#include <epan/nlpid.h>
22
#include <epan/ppptypes.h>
23
#include <epan/chdlctypes.h>
24
#include <epan/ipproto.h>
25
#include "packet-osi.h"
26
#include "packet-tpkt.h"
27
#include "packet-juniper.h"
28
29
void proto_reg_handoff_osi(void);
30
void proto_register_osi(void);
31
32
int  proto_osi;
33
34
static int hf_osi_nlpid;
35
36
static dissector_handle_t osi_handle;
37
static dissector_handle_t osi_tpkt_handle;
38
static dissector_handle_t osi_juniper_handle;
39
40
41
/* Preferences for OSI over TPKT over TCP */
42
static bool tpkt_desegment;
43
44
bool
45
216
osi_calc_checksum( tvbuff_t *tvb, int offset, unsigned len, uint32_t* c0, uint32_t* c1) {
46
216
  unsigned      available_len;
47
216
  const uint8_t *p;
48
216
  unsigned      seglen;
49
216
  unsigned      i;
50
51
216
  available_len = tvb_captured_length_remaining( tvb, offset );
52
216
  if ( available_len < len )
53
17
    return false;
54
55
199
  p = tvb_get_ptr( tvb, offset, len );
56
57
  /*
58
   * The maximum values of c0 and c1 will occur if all bytes have the
59
   * value 255; if so, then c0 will be len*255 and c1 will be
60
   * (len*255 + (len-1)*255 + ... + 255), which is
61
   * (len + (len - 1) + ... + 1)*255, or 255*(len*(len + 1))/2.
62
   * This means it can overflow if "len" is 5804 or greater.
63
   *
64
   * (A+B) mod 255 = ((A mod 255) + (B mod 255) mod 255, so
65
   * we can solve this by taking c0 and c1 mod 255 every
66
   * 5803 bytes.
67
   */
68
199
  *c0 = 0;
69
199
  *c1 = 0;
70
393
  while (len != 0) {
71
194
    seglen = len;
72
194
    if (seglen > 5803)
73
0
      seglen = 5803;
74
9.37k
    for (i = 0; i < seglen; i++) {
75
9.18k
      (*c0) += *(p++);
76
9.18k
      (*c1) += (*c0);
77
9.18k
    }
78
79
194
    (*c0) = (*c0) % 255;
80
194
    (*c1) = (*c1) % 255;
81
82
194
    len -= seglen;
83
194
  }
84
85
199
  return true;
86
216
}
87
88
89
bool
90
23
osi_check_and_get_checksum( tvbuff_t *tvb, int offset, unsigned len, int offset_check, uint16_t* result) {
91
23
  const uint8_t *p;
92
23
  uint8_t       discard         = 0;
93
23
  uint32_t      c0, c1, factor;
94
23
  unsigned      seglen, initlen = len;
95
23
  unsigned      i;
96
23
  int           block, x, y;
97
98
  /* Make sure the checksum is part of the data being checksummed. */
99
23
  DISSECTOR_ASSERT(offset_check >= offset);
100
23
  DISSECTOR_ASSERT((unsigned)offset_check + 2 <= (unsigned)offset + len);
101
102
  /*
103
   * If we don't have all the data to be checksummed, report that and don't
104
   * try checksumming.
105
   */
106
23
  if (!tvb_bytes_exist(tvb, offset, len))
107
3
    return false;
108
20
  offset_check -= offset;
109
110
20
  p = tvb_get_ptr( tvb, offset, len );
111
20
  block  = offset_check / 5803;
112
113
  /*
114
   * The maximum values of c0 and c1 will occur if all bytes have the
115
   * value 255; if so, then c0 will be len*255 and c1 will be
116
   * (len*255 + (len-1)*255 + ... + 255), which is
117
   * (len + (len - 1) + ... + 1)*255, or 255*(len*(len + 1))/2.
118
   * This means it can overflow if "len" is 5804 or greater.
119
   *
120
   * (A+B) mod 255 = ((A mod 255) + (B mod 255) mod 255, so
121
   * we can solve this by taking c0 and c1 mod 255 every
122
   * 5803 bytes.
123
   */
124
20
  c0 = 0;
125
20
  c1 = 0;
126
127
60
  while (len != 0) {
128
40
    seglen = len;
129
40
    if ( block-- == 0 ) {
130
20
      seglen = offset_check % 5803;
131
20
      discard = 1;
132
20
    } else if ( seglen > 5803 )
133
0
      seglen = 5803;
134
9.55k
    for (i = 0; i < seglen; i++) {
135
9.51k
      c0 = c0 + *(p++);
136
9.51k
      c1 += c0;
137
9.51k
    }
138
40
    if ( discard ) {
139
      /*
140
       * This works even if (offset_check % 5803) == 5802
141
       */
142
20
      p += 2;
143
20
      c1 += 2*c0;
144
20
      len -= 2;
145
20
      discard = 0;
146
20
    }
147
148
40
    c0 = c0 % 255;
149
40
    c1 = c1 % 255;
150
151
40
    len -= seglen;
152
40
  }
153
154
20
  factor = ( initlen - offset_check ) * c0;
155
20
  x = factor - c0 - c1;
156
20
  y = c1 - factor - 1;
157
158
  /*
159
   * This algorithm uses the 8 bits one's complement arithmetic.
160
   * Therefore, we must correct an effect produced
161
   * by the "standard" arithmetic (two's complement)
162
   */
163
164
20
  if (x < 0 ) x--;
165
20
  if (y > 0 ) y++;
166
167
20
  x %= 255;
168
20
  y %= 255;
169
170
20
  if (x == 0) x = 0xFF;
171
20
  if (y == 0) y = 0x01;
172
173
20
  *result = ( x << 8 ) | ( y & 0xFF );
174
20
  return true;
175
23
}
176
177
/* 4 octet ATN extended checksum: ICAO doc 9705 Ed3 Volume V section 5.5.4.6.4 */
178
/* It is calculated over TP4 userdata (all checksums set to zero ) and a pseudo tailer */
179
/* of length SRC-NSAP, SRC-NSAP, length DST-NSAP, DST-NSAP and ATN extended checksum. */
180
/* In case of a CR TPDU, the value of the ISO 8073 16-bit fletcher checksum parameter shall */
181
/* be set to zero. */
182
uint32_t check_atn_ec_32(
183
  tvbuff_t *tvb, unsigned tpdu_len,
184
  unsigned offset_ec_32_val,   /* offset ATN extended checksum value, calculated at last as part of pseudo trailer */
185
  unsigned offset_iso8073_val, /* offset ISO 8073 fletcher checksum, CR only*/
186
  unsigned clnp_dst_len,       /* length of DST-NSAP */
187
  const uint8_t *clnp_dst,   /* DST-NSAP */
188
  unsigned clnp_src_len,       /* length of SRC-NSAP */
189
  const uint8_t *clnp_src)   /* SRC-NSAP */
190
0
{
191
0
  unsigned  i = 0;
192
0
  uint32_t c0 = 0;
193
0
  uint32_t c1 = 0;
194
0
  uint32_t c2 = 0;
195
0
  uint32_t c3 = 0;
196
0
  uint32_t sum = 0;
197
198
  /* sum across complete TPDU  */
199
0
  for ( i =0; i< tpdu_len; i++){
200
0
    c0 += tvb_get_uint8(tvb, i) ;
201
202
0
    if( ( i >= offset_ec_32_val ) &&  /* ignore 32 bit ATN extended checksum value */
203
0
        ( i < ( offset_ec_32_val + 4 ) ) ) {
204
0
      c0 -= tvb_get_uint8(tvb, i);
205
0
    }
206
207
0
    if( ( offset_iso8073_val ) && /* ignore 16 bit ISO 8073 checksum, if present*/
208
0
        ( i >= offset_iso8073_val ) &&
209
0
        ( i < ( offset_iso8073_val + 2 ) ) ) {
210
0
      c0 -= tvb_get_uint8(tvb, i);
211
0
    }
212
213
0
    if ( c0 >= 0x000000FF )
214
0
      c0 -= 0x00000FF;
215
0
    c1 += c0;
216
0
    if ( c1 >= 0x000000FF )
217
0
      c1 -= 0x000000FF;
218
0
    c2 += c1;
219
0
    if ( c2 >= 0x000000FF )
220
0
      c2 -= 0x000000FF;
221
0
    c3 += c2;
222
0
    if ( c3 >= 0x000000FF )
223
0
      c3 -= 0x000000FF;
224
0
  }
225
  /* add NSAP parts of pseudo trailer */
226
0
  c0 += clnp_dst_len;
227
0
  if ( c0 >= 0x000000FF )
228
0
    c0 -= 0x000000FF;
229
0
  c1 += c0;
230
0
  if ( c1 >= 0x000000FF )
231
0
    c1 -= 0x000000FF;
232
0
  c2 += c1;
233
0
  if ( c2 >= 0x000000FF )
234
0
    c2 -= 0x000000FF;
235
0
  c3 += c2;
236
0
  if ( c3 >= 0x000000FF )
237
0
    c3 -= 0x000000FF;
238
0
  for ( i =0; i< clnp_dst_len; i++){
239
0
    c0 += clnp_dst[i];
240
0
    if ( c0 >= 0x000000FF )
241
0
      c0 -= 0x000000FF;
242
0
    c1 += c0;
243
0
    if ( c1 >= 0x000000FF )
244
0
      c1 -= 0x000000FF;
245
0
    c2 += c1;
246
0
    if ( c2 >= 0x000000FF )
247
0
      c2 -= 0x000000FF;
248
0
    c3 += c2;
249
0
    if ( c3 >= 0x000000FF )
250
0
      c3 -= 0x000000FF;
251
0
  }
252
0
  c0 += clnp_src_len;
253
0
  if ( c0 >= 0x000000FF )
254
0
    c0 -= 0x000000FF;
255
0
  c1 += c0;
256
0
  if ( c1 >= 0x000000FF )
257
0
    c1 -= 0x000000FF;
258
0
  c2 += c1;
259
0
  if ( c2 >= 0x000000FF )
260
0
    c2 -= 0x000000FF;
261
0
  c3 += c2;
262
0
  if ( c3 >= 0x000000FF )
263
0
    c3 -= 0x000000FF;
264
0
  for ( i =0; i< clnp_src_len; i++){
265
0
    c0 += clnp_src[i];
266
0
    if ( c0 >= 0x000000FF )
267
0
      c0 -= 0x000000FF;
268
0
    c1 += c0;
269
0
    if ( c1 >= 0x000000FF )
270
0
      c1 -= 0x000000FF;
271
0
    c2 += c1;
272
0
    if ( c2 >= 0x000000FF )
273
0
      c2 -= 0x000000FF;
274
0
    c3 += c2;
275
0
    if ( c3 >= 0x000000FF )
276
0
      c3 -= 0x000000FF;
277
0
  }
278
  /* add extended checksum as last part of the pseudo trailer */
279
0
  for ( i = offset_ec_32_val; i< (offset_ec_32_val+4); i++){
280
0
    c0 += tvb_get_uint8(tvb, i) ;
281
282
0
    if ( c0 >= 0x000000FF )
283
0
      c0 -= 0x00000FF;
284
0
    c1 += c0;
285
0
    if ( c1 >= 0x000000FF )
286
0
      c1 -= 0x000000FF;
287
0
    c2 += c1;
288
0
    if ( c2 >= 0x000000FF )
289
0
      c2 -= 0x000000FF;
290
0
    c3 += c2;
291
0
    if ( c3 >= 0x000000FF )
292
0
      c3 -= 0x000000FF;
293
0
  }
294
295
0
  sum = (c3 << 24) + (c2 << 16 ) + (c1 << 8) + c0;
296
0
  return sum;
297
0
}
298
299
/* 2 octet ATN extended checksum: ICAO doc 9705 Ed3 Volume V section 5.5.4.6.4 */
300
/* It is calculated over TP4 userdata (all checksums set to zero ) and a pseudo tailer */
301
/* of length SRC-NSAP, SRC-NSAP, length DST-NSAP, DST-NSAP and ATN extended checksum. */
302
/* In case of a CR TPDU, the value of the ISO 8073 16-bit fletcher checksum parameter shall */
303
/* be set to zero. */
304
/* this routine is currently *untested* because of the unavailability of samples.*/
305
uint16_t check_atn_ec_16(
306
  tvbuff_t *tvb,
307
  unsigned tpdu_len,
308
  unsigned offset_ec_16_val,   /* offset ATN extended checksum value, calculated at last as part of pseudo trailer */
309
  unsigned offset_iso8073_val, /* offset ISO 8073 fletcher checksum, CR only*/
310
  unsigned clnp_dst_len,       /* length of DST-NSAP */
311
  const uint8_t *clnp_dst,   /* DST-NSAP */
312
  unsigned clnp_src_len,       /* length of SRC-NSAP */
313
  const uint8_t *clnp_src)   /* SRC-NSAP */
314
0
{
315
0
  unsigned i = 0;
316
0
  uint16_t c0 = 0;
317
0
  uint16_t c1 = 0;
318
0
  uint16_t sum;
319
320
  /* sum across complete TPDU */
321
0
  for ( i =0; i< tpdu_len; i++){
322
323
0
    c0 += tvb_get_uint8(tvb, i);
324
325
0
    if( (i >= offset_ec_16_val) && /* ignore 16 bit extended checksum */
326
0
        (i < (offset_ec_16_val + 2) ) ) {
327
0
      c0 -= tvb_get_uint8(tvb, i) ;
328
0
    }
329
330
0
    if( (i >= offset_iso8073_val) && /* ignore 16 bit ISO 8073 checksum, if present*/
331
0
        (i < (offset_iso8073_val + 2) ) ) {
332
0
      c0 -= tvb_get_uint8(tvb, i) ;
333
0
    }
334
335
0
    if ( c0 >= 0x00FF )
336
0
       c0 -= 0x00FF;
337
0
    c1 += c0;
338
0
    if ( c1 >= 0x00FF )
339
0
      c1 -= 0x00FF;
340
0
  }
341
  /* add NSAP parts of pseudo trailer */
342
0
  c0 += clnp_dst_len;
343
0
  if ( c0 >= 0x00FF )
344
0
    c0 -= 0x00FF;
345
0
  c1 += c0;
346
0
  if ( c1 >= 0x00FF )
347
0
    c1 -= 0x00FF;
348
0
  for ( i =0; i< clnp_dst_len; i++){
349
0
    c0 += clnp_dst[i];
350
0
    if ( c0 >= 0x00FF )
351
0
      c0 -= 0x00FF;
352
0
    c1 += c0;
353
0
    if ( c1 >= 0x00FF )
354
0
      c1 -= 0x00FF;
355
0
  }
356
0
  c0 += clnp_src_len;
357
0
  if ( c0 >= 0x00FF )
358
0
    c0 -= 0x00FF;
359
0
  c1 += c0;
360
0
  if ( c1 >= 0x00FF )
361
0
    c1 -= 0x00FF;
362
0
  for ( i =0; i< clnp_src_len; i++){
363
0
    c0 += clnp_src[i];
364
0
    if ( c0 >= 0x00FF )
365
0
      c0 -= 0x00FF;
366
0
    c1 += c0;
367
0
    if ( c1 >= 0x00FF )
368
0
      c1 -= 0x00FF;
369
0
  }
370
  /* add extended checksum as last part of the pseudo trailer */
371
0
  for ( i = offset_ec_16_val; i< (offset_ec_16_val+2); i++){
372
0
    c0 += tvb_get_uint8(tvb, i) ;
373
374
0
    if ( c0 >= 0x00FF )
375
0
      c0 -= 0x00FF;
376
0
    c1 += c0;
377
0
    if ( c1 >= 0x00FF )
378
0
      c1 -= 0x00FF;
379
0
  }
380
381
0
  sum =  (c1 << 8) + c0 ;
382
0
  return sum;
383
0
}
384
385
386
/* main entry point */
387
388
/*
389
 * These assume the NLPID is a secondary protocol identifier, not an
390
 * initial protocol identifier.
391
 *
392
 * This is an issue only if, in any packet where an NLPID appears, it's
393
 * an initial protocol identifier *AND* it can have the value 1, which
394
 * means T.70 for an IPI and X.29 for an SPI.
395
 */
396
const value_string nlpid_vals[] = {
397
  { NLPID_NULL,            "NULL" },
398
  { NLPID_SPI_X_29,        "X.29" },
399
  { NLPID_X_633,           "X.633" },
400
  { NLPID_Q_931,           "Q.931" },
401
  { NLPID_Q_2931,          "Q.2931" },
402
  { NLPID_Q_2119,          "Q.2119" },
403
  { NLPID_SNAP,            "SNAP" },
404
  { NLPID_ISO8473_CLNP,    "CLNP" },
405
  { NLPID_ISO9542_ESIS,    "ESIS" },
406
  { NLPID_ISO10589_ISIS,   "ISIS" },
407
  { NLPID_ISO10747_IDRP,   "IDRP" },
408
  { NLPID_AVAYA_IPVPN,     "Avaya SPBM Fabric IPVPN" },
409
  { NLPID_ISO9542X25_ESIS, "ESIS (X.25)" },
410
  { NLPID_ISO10030,        "ISO 10030" },
411
  { NLPID_ISO11577,        "ISO 11577" },
412
  { NLPID_COMPRESSED,      "Data compression protocol" },
413
  { NLPID_IP,              "IP" },
414
  { NLPID_TRILL,           "TRILL" },
415
  { NLPID_SNDCF,           "SubNetwork Dependent Convergence Function"},
416
  { NLPID_IP6,             "IPv6" },
417
  { NLPID_PPP,             "PPP" },
418
  { 0,                     NULL },
419
};
420
421
static dissector_table_t osinl_incl_subdissector_table;
422
static dissector_table_t osinl_excl_subdissector_table;
423
static dissector_handle_t ppp_handle;
424
425
/* Dissect OSI over TCP over TPKT */
426
static int
427
dissect_osi_tpkt(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data _U_)
428
0
{
429
0
  dissect_tpkt_encap(tvb, pinfo, tree, tpkt_desegment, osi_handle);
430
0
  return tvb_captured_length(tvb);
431
0
}
432
433
static int dissect_osi_juniper(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data _U_)
434
0
{
435
0
  uint8_t    nlpid;
436
0
  tvbuff_t   *next_tvb;
437
438
0
  nlpid = tvb_get_uint8(tvb, 0);
439
0
  if(dissector_try_uint(osinl_incl_subdissector_table, nlpid, tvb, pinfo, tree))
440
0
    return tvb_captured_length(tvb);
441
442
0
  next_tvb = tvb_new_subset_remaining(tvb, 1);
443
0
  dissector_try_uint(osinl_excl_subdissector_table, nlpid, next_tvb, pinfo, tree);
444
0
  return tvb_captured_length(tvb);
445
0
}
446
447
static int dissect_osi(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data _U_)
448
6.62k
{
449
6.62k
  uint8_t   nlpid;
450
6.62k
  tvbuff_t *new_tvb;
451
452
6.62k
  nlpid = tvb_get_uint8(tvb, 0);
453
454
  /*
455
   * Try the subdissector table for protocols in which the NLPID is
456
   * considered part of the PDU; it should be handed a tvbuff that
457
   * includes the NLPID, and should put the NLPID into the protocol
458
   * tree itself.
459
   */
460
6.62k
  if (dissector_try_uint(osinl_incl_subdissector_table, nlpid, tvb, pinfo, tree))
461
4.37k
    return tvb_captured_length(tvb);
462
463
  /*
464
   * Try the subdissector table for protocols in which the NLPID is
465
   * *not* considered part of the PDU; it should be handed a tvbuff
466
   * that doesn't include the NLPID, and we should put the NLPID into
467
   * the protocol tree ourselves.
468
   */
469
2.25k
  proto_tree_add_uint(tree, hf_osi_nlpid, tvb, 0, 1, nlpid);
470
2.25k
  new_tvb = tvb_new_subset_remaining(tvb, 1);
471
2.25k
  if (dissector_try_uint(osinl_excl_subdissector_table, nlpid, new_tvb, pinfo, tree))
472
3
    return tvb_captured_length(tvb);
473
474
2.24k
  switch (nlpid) {
475
476
    /* ESIS (X.25) is not currently decoded */
477
478
2
    case NLPID_ISO9542X25_ESIS:
479
2
      col_set_str(pinfo->cinfo, COL_PROTOCOL, "ESIS (X.25)");
480
2
      call_data_dissector(tvb, pinfo, tree);
481
2
      break;
482
47
    case NLPID_ISO10747_IDRP:
483
47
      col_set_str(pinfo->cinfo, COL_PROTOCOL, "IDRP");
484
47
      call_data_dissector(tvb, pinfo, tree);
485
47
      break;
486
614
    default:
487
614
      col_set_str(pinfo->cinfo, COL_PROTOCOL, "ISO");
488
614
      col_add_fstr(pinfo->cinfo, COL_INFO, "Unknown ISO protocol (%02x)", nlpid);
489
490
614
      call_data_dissector(tvb, pinfo, tree);
491
614
      break;
492
2.24k
  }
493
663
  return tvb_captured_length(tvb);
494
2.24k
} /* dissect_osi */
495
496
void
497
proto_reg_handoff_osi(void)
498
14
{
499
14
  dissector_add_uint("llc.dsap", SAP_OSINL1, osi_handle);
500
14
  dissector_add_uint("llc.dsap", SAP_OSINL2, osi_handle);
501
14
  dissector_add_uint("llc.dsap", SAP_OSINL3, osi_handle);
502
14
  dissector_add_uint("llc.dsap", SAP_OSINL4, osi_handle);
503
14
  dissector_add_uint("llc.dsap", SAP_OSINL5, osi_handle);
504
14
  dissector_add_uint("ppp.protocol", PPP_OSI, osi_handle);
505
14
  dissector_add_uint("chdlc.protocol", CHDLCTYPE_OSI, osi_handle);
506
14
  dissector_add_uint("null.type", BSD_AF_ISO, osi_handle);
507
14
  dissector_add_uint("gre.proto", SAP_OSINL5, osi_handle);
508
14
  dissector_add_uint("ip.proto", IP_PROTO_ISOIP, osi_handle); /* ISO network layer PDUs [RFC 1070] */
509
510
14
  dissector_add_uint("juniper.proto", JUNIPER_PROTO_ISO, osi_juniper_handle);
511
14
  dissector_add_uint("juniper.proto", JUNIPER_PROTO_CLNP, osi_juniper_handle);
512
14
  dissector_add_uint("juniper.proto", JUNIPER_PROTO_MPLS_CLNP, osi_juniper_handle);
513
514
14
  ppp_handle  = find_dissector("ppp");
515
516
14
  dissector_add_for_decode_as_with_preference("tcp.port", osi_tpkt_handle);
517
14
}
518
519
void
520
proto_register_osi(void)
521
14
{
522
14
  static hf_register_info hf[] = {
523
14
    { &hf_osi_nlpid,
524
14
      { "Network Layer Protocol Identifier", "osi.nlpid", FT_UINT8, BASE_HEX,
525
14
        VALS(nlpid_vals), 0x0, NULL, HFILL }},
526
14
  };
527
14
  module_t *osi_module;
528
529
14
  proto_osi = proto_register_protocol("OSI", "OSI", "osi");
530
14
  proto_register_field_array(proto_osi, hf, array_length(hf));
531
532
  /* There's no "OSI" protocol *per se*, but we do register a
533
     dissector table so various protocols running at the
534
     network layer can register themselves.
535
     all protocols that require inclusion of the NLPID
536
     should register here
537
  */
538
14
  osinl_incl_subdissector_table = register_dissector_table("osinl.incl",
539
14
                                                           "OSI incl NLPID", proto_osi, FT_UINT8, BASE_HEX);
540
541
  /* This dissector table is for those protocols whose PDUs
542
   * aren't* defined to begin with an NLPID.
543
   * (typically non OSI protocols like IP,IPv6,PPP */
544
14
  osinl_excl_subdissector_table = register_dissector_table("osinl.excl",
545
14
                                                           "OSI excl NLPID", proto_osi, FT_UINT8, BASE_HEX);
546
547
  /* Preferences how OSI protocols should be dissected */
548
14
  osi_module = prefs_register_protocol(proto_osi, NULL);
549
550
14
  prefs_register_bool_preference(osi_module, "tpkt_reassemble",
551
14
                                 "Reassemble segmented TPKT datagrams",
552
14
                                 "Whether segmented TPKT datagrams should be reassembled",
553
14
                                 &tpkt_desegment);
554
555
  /* Register the dissector handles */
556
14
  osi_handle = register_dissector("osi", dissect_osi, proto_osi);
557
14
  osi_juniper_handle = register_dissector("osi_juniper", dissect_osi_juniper, proto_osi);
558
14
  osi_tpkt_handle = register_dissector("osi_tpkt", dissect_osi_tpkt, proto_osi);
559
14
}
560
561
/*
562
 * Editor modelines  -  https://www.wireshark.org/tools/modelines.html
563
 *
564
 * Local Variables:
565
 * c-basic-offset: 2
566
 * tab-width: 8
567
 * indent-tabs-mode: nil
568
 * End:
569
 *
570
 * ex: set shiftwidth=2 tabstop=8 expandtab:
571
 * :indentSize=2:tabSize=8:noTabs=true:
572
 */