aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/docsis/packet-dccreq.c
blob: 1f3c74d77ee540a991b26ef5d7d3516fa40c3c49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
/* packet-dccreq.c
 * Routines for DCC Request Message  dissection
 * Copyright 2004, Darryl Hymel <darryl.hymel[AT]arrisi.com>
 *
 * $Id$
 *
 * Wireshark - Network traffic analyzer
 * By Gerald Combs <gerald@wireshark.org>
 * Copyright 1998 Gerald Combs
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 */

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif


#include "moduleinfo.h"

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include <gmodule.h>

#include <epan/packet.h>

#define DCCREQ_UP_CHAN_ID 1
#define DCCREQ_DS_PARAMS 2
#define DCCREQ_INIT_TECH 3
#define DCCREQ_UCD_SUB 4
#define DCCREQ_SAID_SUB 6
#define DCCREQ_SF_SUB 7
#define DCCREQ_CMTS_MAC_ADDR 8
#define DCCREQ_KEY_SEQ_NUM 31
#define DCCREQ_HMAC_DIGEST 27

/* Define Downstrean Parameters subtypes
 * These are subtype of DCCREQ_DS_PARAMS (2)
 */

#define DCCREQ_DS_FREQ 1
#define DCCREQ_DS_MOD_TYPE 2
#define DCCREQ_DS_SYM_RATE 3
#define DCCREQ_DS_INTLV_DEPTH 4
#define DCCREQ_DS_CHAN_ID 5
#define DCCREQ_DS_SYNC_SUB 6

/* Define Service Flow Substitution subtypes
 * These are subtypes of DCCREQ_SF_SUB (7)
 */
#define DCCREQ_SF_SFID 1
#define DCCREQ_SF_SID 2
#define DCCREQ_SF_UNSOL_GRANT_TREF 5

/* Initialize the protocol and registered fields */
static int proto_docsis_dccreq = -1;

static int hf_docsis_dccreq_tran_id = -1;
static int hf_docsis_dccreq_up_chan_id = -1;
static int hf_docsis_dccreq_ds_freq = -1;
static int hf_docsis_dccreq_ds_mod_type = -1;
static int hf_docsis_dccreq_ds_sym_rate = -1;
static int hf_docsis_dccreq_ds_intlv_depth_i = -1;
static int hf_docsis_dccreq_ds_intlv_depth_j = -1;
static int hf_docsis_dccreq_ds_chan_id = -1;
static int hf_docsis_dccreq_ds_sync_sub = -1;
static int hf_docsis_dccreq_init_tech = -1;
static int hf_docsis_dccreq_ucd_sub = -1;
static int hf_docsis_dccreq_said_sub_cur = -1;
static int hf_docsis_dccreq_said_sub_new = -1;
static int hf_docsis_dccreq_sf_sfid_cur = -1;
static int hf_docsis_dccreq_sf_sfid_new = -1;
static int hf_docsis_dccreq_sf_sid_cur = -1;
static int hf_docsis_dccreq_sf_sid_new = -1;
static int hf_docsis_dccreq_sf_unsol_grant_tref = -1;
static int hf_docsis_dccreq_cmts_mac_addr = -1;
static int hf_docsis_dccreq_key_seq_num = -1;
static int hf_docsis_dccreq_hmac_digest = -1;

/* Initialize the subtree pointers */
static gint ett_docsis_dccreq = -1;
static gint ett_docsis_dccreq_ds_params = -1;
static gint ett_docsis_dccreq_sf_sub = -1;


value_string ds_mod_type_vals[] = {
     {0 , "64 QAM"},
     {1 , "256 QAM"},
     {0, NULL}
};

value_string ds_sym_rate_vals[] = {
     {0 , "5.056941 Msym/sec"},
     {1 , "5.360537 Msym/sec"},
     {2 , "6.952 Msym/sec"},
     {0, NULL}
};
value_string init_tech_vals[] = {
     {0 , "Reinitialize MAC"},
     {1 , "Broadcast Init RNG on new chanbefore normal op"},
     {2 , "Unicast RNG on new chan before normal op"},
     {3 , "Either Unicast or broadcast RNG on new chan before normal op"},
     {4 , "Use new chan directly without re-init or RNG"},
     {0, NULL}
};
/* Code to actually dissect the packets */
static void
dissect_dccreq_ds_params (tvbuff_t * tvb, proto_tree * tree, int start, guint16 len)
{
  guint8 type, length;
  proto_item *dcc_item;
  proto_tree *dcc_tree;
  int pos;

  pos = start;
  dcc_item = proto_tree_add_text ( tree, tvb, start, len, "2 DCC-REQ Downstream Params Encodings (Length = %u)", len);
  dcc_tree = proto_item_add_subtree ( dcc_item , ett_docsis_dccreq_ds_params);
  
  while ( pos < ( start + len) ) 
    {
	type = tvb_get_guint8 (tvb, pos++);
	length = tvb_get_guint8 (tvb, pos++);
	
	switch (type)
	  {
	    case DCCREQ_DS_FREQ:
	      if (length == 4)
		{
		  proto_tree_add_item (dcc_tree, hf_docsis_dccreq_ds_freq, tvb,
				       pos, length, FALSE);
		}
	      else
		{
		  THROW (ReportedBoundsError);
		}
	      break;
	    case DCCREQ_DS_MOD_TYPE:
	      if (length == 1)
		{
	          proto_tree_add_item (dcc_tree, hf_docsis_dccreq_ds_mod_type, tvb,
				   pos, length, FALSE);
		}
              else 
		{
		  THROW (ReportedBoundsError);
		}
	      break;
	    case DCCREQ_DS_SYM_RATE:
	      if (length == 1)
		{
	          proto_tree_add_item (dcc_tree, hf_docsis_dccreq_ds_sym_rate, tvb,
				   pos, length, FALSE);
		}
              else 
		{
		  THROW (ReportedBoundsError);
		}
	      break;
	    case DCCREQ_DS_INTLV_DEPTH:
	      if (length == 2)
		{
	          proto_tree_add_item (dcc_tree, hf_docsis_dccreq_ds_intlv_depth_i, tvb,
				   pos, 1, FALSE);
	          proto_tree_add_item (dcc_tree, hf_docsis_dccreq_ds_intlv_depth_j, tvb,
				   pos + 1, 1, FALSE);
		}
              else 
		{
		  THROW (ReportedBoundsError);
		}
	      break;
	    case DCCREQ_DS_CHAN_ID:
	      if (length == 1)
		{
	          proto_tree_add_item (dcc_tree, hf_docsis_dccreq_ds_chan_id, tvb,
				   pos, length, FALSE);
		}
              else 
		{
		  THROW (ReportedBoundsError);
		}
	      break;
	    case DCCREQ_DS_SYNC_SUB:
	          proto_tree_add_item (dcc_tree, hf_docsis_dccreq_ds_sync_sub, tvb,
				   pos, length, FALSE);
	      break;

	    }
	  pos = pos + length;
      }
}
static void
dissect_dccreq_sf_sub (tvbuff_t * tvb, proto_tree * tree, int start, guint16 len)
{
  guint8 type, length;
  proto_item *dcc_item;
  proto_tree *dcc_tree;
  int pos;
   
  pos = start;
  dcc_item = proto_tree_add_text ( tree, tvb, start, len, "7 DCC-REQ Service Flow Substitution Encodings (Length = %u)", len);
  dcc_tree = proto_item_add_subtree ( dcc_item , ett_docsis_dccreq_sf_sub);
  
  while ( pos < ( start + len) ) 
    {
	type = tvb_get_guint8 (tvb, pos++);
	length = tvb_get_guint8 (tvb, pos++);
	
	switch (type)
	  {
	    case DCCREQ_SF_SFID:
	      if (length == 8)
		{
		  proto_tree_add_item (dcc_tree, hf_docsis_dccreq_sf_sfid_cur, tvb,
				       pos, 4, FALSE);
		  proto_tree_add_item (dcc_tree, hf_docsis_dccreq_sf_sfid_new, tvb,
				       pos + 4, 4, FALSE);
		}
	      else
		{
		  THROW (ReportedBoundsError);
		}
	      break;
	    case DCCREQ_SF_SID:
	      if (length == 4)
		{
		  proto_tree_add_item (dcc_tree, hf_docsis_dccreq_sf_sid_cur, tvb,
				       pos, 2, FALSE);
		  proto_tree_add_item (dcc_tree, hf_docsis_dccreq_sf_sid_new, tvb,
				       pos + 2, 2, FALSE);
		}
	      else
		{
		  THROW (ReportedBoundsError);
		}
	      break;
	    case DCCREQ_SF_UNSOL_GRANT_TREF:
	      if (length == 4)
		{
		  proto_tree_add_item (dcc_tree, hf_docsis_dccreq_sf_unsol_grant_tref, tvb,
				       pos, length, FALSE);
		}
	      else
		{
		  THROW (ReportedBoundsError);
		}
		break;
	    }
	  pos = pos + length;
      }
}
static void
dissect_dccreq (tvbuff_t * tvb, packet_info * pinfo, proto_tree * tree)
{
  guint16 pos;
  guint8 type, length;
  proto_tree *dcc_tree;
  proto_item *dcc_item;
  guint16 len;

  len = tvb_length_remaining (tvb, 0);

  if (check_col (pinfo->cinfo, COL_INFO))
    {
      col_clear (pinfo->cinfo, COL_INFO);
      col_add_fstr (pinfo->cinfo, COL_INFO,"DCC-REQ Message: ");
    }

  if (tree)
    {
      dcc_item =
	proto_tree_add_protocol_format (tree, proto_docsis_dccreq, tvb, 0,
					tvb_length_remaining (tvb, 0),
					"DCC-REQ Message");
      dcc_tree = proto_item_add_subtree (dcc_item, ett_docsis_dccreq);
      proto_tree_add_item (dcc_tree, hf_docsis_dccreq_tran_id, tvb, 0, 2, FALSE);

      pos = 2;
      while (pos < len)
	{
	  type = tvb_get_guint8 (tvb, pos++);
	  length = tvb_get_guint8 (tvb, pos++);

	  switch (type)
	    {
	    case DCCREQ_UP_CHAN_ID:
	      if (length == 1)
		{
		  proto_tree_add_item (dcc_tree, hf_docsis_dccreq_up_chan_id, tvb,
				       pos, length, FALSE);
		}
	      else
		{
		  THROW (ReportedBoundsError);
		}
	      break;
	    case DCCREQ_DS_PARAMS:
	      dissect_dccreq_ds_params (tvb , dcc_tree , pos , length );
	      break;
	    case DCCREQ_INIT_TECH:
	      if (length == 1)
		{
		  proto_tree_add_item (dcc_tree, hf_docsis_dccreq_init_tech, tvb,
				       pos, length, FALSE);
		}
	      else
		{
		  THROW (ReportedBoundsError);
		}
	      break;
	    case DCCREQ_UCD_SUB:
		  proto_tree_add_item (dcc_tree, hf_docsis_dccreq_ucd_sub, tvb,
				       pos, length, FALSE);
	      break;
	    case DCCREQ_SAID_SUB:
	      if (length == 4)
		{
		  proto_tree_add_item (dcc_tree, hf_docsis_dccreq_said_sub_cur, tvb,
				       pos, 2, FALSE);
		  proto_tree_add_item (dcc_tree, hf_docsis_dccreq_said_sub_new, tvb,
				       pos + 2, 2, FALSE);
		}
	      else
		{
		  THROW (ReportedBoundsError);
		}
	      break;
	    case DCCREQ_SF_SUB:
	      dissect_dccreq_sf_sub (tvb , dcc_tree , pos , length );
	      break;
	    case DCCREQ_CMTS_MAC_ADDR:
	      if (length == 6)
		{
		  proto_tree_add_item (dcc_tree, hf_docsis_dccreq_cmts_mac_addr, tvb,
				       pos, length, FALSE);
		}
	      else
		{
		  THROW (ReportedBoundsError);
		}
	      break;
	    case DCCREQ_KEY_SEQ_NUM:
	      if (length == 1)
		{
		  proto_tree_add_item (dcc_tree, hf_docsis_dccreq_key_seq_num, tvb,
				       pos, length, FALSE);
		}
	      else
		{
		  THROW (ReportedBoundsError);
		}
	      break;
	    case DCCREQ_HMAC_DIGEST:
	      if (length == 20)
		{
		  proto_tree_add_item (dcc_tree, hf_docsis_dccreq_hmac_digest, tvb,
				       pos, length, FALSE);
		}
	      else
		{
		  THROW (ReportedBoundsError);
		}
	      break;
	    }			/* switch(type) */
	  pos = pos + length;
	}			/* while (pos < len) */
    }				/* if (tree) */

}
/* Register the protocol with Ethereal */

/* this format is require because a script is used to build the C function
   that calls all the protocol registration.
*/


void
proto_register_docsis_dccreq (void)
{
/* Setup list of header fields  See Section 1.6.1 for details*/
  static hf_register_info hf[] = {
    {&hf_docsis_dccreq_tran_id ,
      {
      "Transaction ID ", 
      "docsis.dccreq.tran_id",
      FT_UINT16, BASE_DEC, NULL, 0x0,
      "Transaction ID ", 
      HFILL
      }
    },
    {&hf_docsis_dccreq_up_chan_id ,
      {
      "Up Channel ID ", 
      "docsis.dccreq.up_chan_id",
      FT_UINT8, BASE_DEC, NULL, 0x0,
      "Up Channel ID ", 
      HFILL
      }
    },
    {&hf_docsis_dccreq_ds_freq ,
      {
      "Frequency ", 
      "docsis.dccreq.ds_freq",
      FT_UINT32, BASE_DEC, NULL, 0x0,
      "Frequency ", 
      HFILL
      }
    },
    {&hf_docsis_dccreq_ds_mod_type ,
      {
      "Modulation Type ", 
      "docsis.dccreq.ds_mod_type",
      FT_UINT8, BASE_DEC, VALS (ds_mod_type_vals), 0x0,
      "Modulation Type ", 
      HFILL
      }
    },
    {&hf_docsis_dccreq_ds_sym_rate ,
      {
      "Symbol Rate", 
      "docsis.dccreq.ds_sym_rate",
      FT_UINT8, BASE_DEC, VALS (ds_sym_rate_vals), 0x0,
      "Symbol Rate", 
      HFILL
      }
    },
    {&hf_docsis_dccreq_ds_intlv_depth_i ,
      {
      "Interleaver Depth I Value", 
      "docsis.dccreq.ds_intlv_depth_i",
      FT_UINT8, BASE_DEC, NULL, 0x0,
      "Interleaver Depth I Value", 
      HFILL
      }
    },
    {&hf_docsis_dccreq_ds_intlv_depth_j ,
      {
      "Interleaver Depth J Value", 
      "docsis.dccreq.ds_intlv_depth_j",
      FT_UINT8, BASE_DEC, NULL, 0x0,
      "Interleaver Depth J Value", 
      HFILL
      }
    },
    {&hf_docsis_dccreq_ds_chan_id ,
      {
      "Downstream Channel ID",
      "docsis.dccreq.ds_chan_id",
      FT_UINT8, BASE_DEC, NULL, 0x0,
      "Downstream Channel ID",
      HFILL
      }
    },
    {&hf_docsis_dccreq_ds_sync_sub ,
      {
      "SYNC Substitution",
      "docsis.dccreq.ds_sync_sub",
      FT_UINT8, BASE_DEC, NULL, 0x0,
      "SYNC Substitution",
      HFILL
      }
    },
    {&hf_docsis_dccreq_init_tech ,
      {
      "Initialization Technique", 
      "docsis.dccreq.init_tech",
      FT_UINT8, BASE_DEC, VALS (init_tech_vals), 0x0,
      "Initialization Technique", 
      HFILL
      }
    },
    {&hf_docsis_dccreq_ucd_sub ,
      {
      "UCD Substitution ", 
      "docsis.dccreq.ucd_sub",
      FT_BYTES, BASE_HEX, NULL, 0x0,
      "UCD Substitution ", 
      HFILL
      }
    },
    {&hf_docsis_dccreq_said_sub_cur ,
      {
      "SAID Sub - Current Value",
      "docsis.dccreq.said_sub_cur",
      FT_UINT16, BASE_DEC, NULL, 0x0,
      "SAID Sub - Current Value",
      HFILL
      }
    },
    {&hf_docsis_dccreq_said_sub_new ,
      {
      "SAID Sub - New Value",
      "docsis.dccreq.said_sub_new",
      FT_UINT16, BASE_DEC, NULL, 0x0,
      "SAID Sub - New Value",
      HFILL
      }
    },
    {&hf_docsis_dccreq_sf_sfid_cur ,
      {
      "SF Sub - SFID Current Value",
      "docsis.dccreq.sf_sfid_cur",
      FT_UINT32, BASE_DEC, NULL, 0x0,
      "SF Sub - SFID Current Value",
      HFILL
      }
    },
    {&hf_docsis_dccreq_sf_sfid_new ,
      {
      "SF Sub - SFID New Value",
      "docsis.dccreq.sf_sfid_new",
      FT_UINT32, BASE_DEC, NULL, 0x0,
      "SF Sub - SFID New Value",
      HFILL
      }
    },
    {&hf_docsis_dccreq_sf_sid_cur ,
      {
      "SF Sub - SID Current Value",
      "docsis.dccreq.sf_sid_cur",
      FT_UINT16, BASE_DEC, NULL, 0x0,
      "SF Sub - SID Current Value",
      HFILL
      }
    },
    {&hf_docsis_dccreq_sf_sid_new ,
      {
      "SF Sub - SID New Value",
      "docsis.dccreq.sf_sid_new",
      FT_UINT16, BASE_DEC, NULL, 0x0,
      "SF Sub - SID New Value",
      HFILL
      }
    },
    {&hf_docsis_dccreq_sf_unsol_grant_tref ,
      {
      "SF Sub - Unsolicited Grant Time Reference ",
      "docsis.dccreq.sf_unsol_grant_tref",
      FT_UINT32, BASE_DEC, NULL, 0x0,
      "SF Sub - Unsolicited Grant Time Reference ",
      HFILL
      }
    },
    {&hf_docsis_dccreq_cmts_mac_addr ,
      {
      "CMTS Mac Address ",
      "docsis.dccreq.cmts_mac_addr",
      FT_ETHER, BASE_DEC, NULL, 0x0,
      "CMTS Mac Address ",
      HFILL
      }
    },
    {&hf_docsis_dccreq_key_seq_num ,
      {
      "Auth Key Sequence Number ",
      "docsis.dccreq.key_seq_num",
      FT_UINT8, BASE_DEC, NULL, 0x0,
      "Auth Key Sequence Number ",
      HFILL
      }
    },
    {&hf_docsis_dccreq_hmac_digest ,
      {
      "HMAC-DigestNumber ",
      "docsis.dccreq.hmac_digest",
      FT_BYTES, BASE_DEC, NULL, 0x0,
      "HMAC-DigestNumber ",
      HFILL
      }
    },

  };

/* Setup protocol subtree array */
  static gint *ett[] = {
    &ett_docsis_dccreq,
    &ett_docsis_dccreq_sf_sub,
    &ett_docsis_dccreq_ds_params,
  };

/* Register the protocol name and description */
  proto_docsis_dccreq =
    proto_register_protocol ("DOCSIS Downstream Channel Change Request ",
			     "DOCSIS DCC-REQ", "docsis_dccreq");

/* Required function calls to register the header fields and subtrees used */
  proto_register_field_array (proto_docsis_dccreq, hf, array_length (hf));
  proto_register_subtree_array (ett, array_length (ett));

  register_dissector ("docsis_dccreq", dissect_dccreq, proto_docsis_dccreq);
}


/* If this dissector uses sub-dissector registration add a registration routine.
   This format is required because a script is used to find these routines and
   create the code that calls these routines.
*/
void
proto_reg_handoff_docsis_dccreq (void)
{
  dissector_handle_t docsis_dccreq_handle;

  docsis_dccreq_handle = find_dissector ("docsis_dccreq");
  dissector_add ("docsis_mgmt", 0x17, docsis_dccreq_handle);

}