9816453b7a1c97d418d38f385f79d699bff451b3
[obnox/wireshark/wip.git] / epan / dissectors / packet-rx.c
1 /* packet-rx.c
2  * Routines for RX packet dissection
3  * Copyright 1999, Nathan Neulinger <nneul@umr.edu>
4  * Based on routines from tcpdump patches by
5  *   Ken Hornstein <kenh@cmf.nrl.navy.mil>
6  *
7  * $Id$
8  *
9  * Wireshark - Network traffic analyzer
10  * By Gerald Combs <gerald@wireshark.org>
11  * Copyright 1998 Gerald Combs
12  *
13  * Copied from packet-tftp.c
14  *
15  * This program is free software; you can redistribute it and/or
16  * modify it under the terms of the GNU General Public License
17  * as published by the Free Software Foundation; either version 2
18  * of the License, or (at your option) any later version.
19  *
20  * This program is distributed in the hope that it will be useful,
21  * but WITHOUT ANY WARRANTY; without even the implied warranty of
22  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23  * GNU General Public License for more details.
24  *
25  * You should have received a copy of the GNU General Public License
26  * along with this program; if not, write to the Free Software
27  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
28  */
29
30 #ifdef HAVE_CONFIG_H
31 # include "config.h"
32 #endif
33
34 #include <stdio.h>
35
36 #include <string.h>
37 #include <glib.h>
38 #include <epan/packet.h>
39 #include "packet-rx.h"
40 #include <epan/addr_resolv.h>
41
42 /*
43  * See
44  *
45  *      http://web.mit.edu/kolya/afs/rx/rx-spec
46  *
47  * XXX - is the "Epoch" really a UN*X time?  The high-order bit, according
48  * to that spec, is a flag bit.
49  */
50
51 #define UDP_PORT_RX_LOW         7000
52 #define UDP_PORT_RX_HIGH        7009
53 #define UDP_PORT_RX_AFS_BACKUPS 7021
54
55 static const value_string rx_types[] = {
56         { RX_PACKET_TYPE_DATA,          "data" },
57         { RX_PACKET_TYPE_ACK,           "ack" },
58         { RX_PACKET_TYPE_BUSY,          "busy" },
59         { RX_PACKET_TYPE_ABORT,         "abort" },
60         { RX_PACKET_TYPE_ACKALL,        "ackall" },
61         { RX_PACKET_TYPE_CHALLENGE,     "challenge" },
62         { RX_PACKET_TYPE_RESPONSE,      "response" },
63         { RX_PACKET_TYPE_DEBUG,         "debug" },
64         { RX_PACKET_TYPE_PARAMS,        "params" },
65         { RX_PACKET_TYPE_VERSION,       "version" },
66         { 0,                            NULL },
67 };
68
69 static const value_string rx_reason[] = {
70         { RX_ACK_REQUESTED,             "Ack Requested"         },
71         { RX_ACK_DUPLICATE,             "Duplicate Packet"      },
72         { RX_ACK_OUT_OF_SEQUENCE,       "Out Of Sequence"       },
73         { RX_ACK_EXEEDS_WINDOW,         "Exceeds Window"        },
74         { RX_ACK_NOSPACE,               "No Space"              },
75         { RX_ACK_PING,                  "Ping"                  },
76         { RX_ACK_PING_RESPONSE,         "Ping Response"         },
77         { RX_ACK_DELAY,                 "Delay"                 },
78         { RX_ACK_IDLE,                  "Idle"                  },
79         { 0,                            NULL                    }
80 };
81
82 static const value_string rx_ack_type[] = {
83         { RX_ACK_TYPE_NACK,     "NACK"  },
84         { RX_ACK_TYPE_ACK,      "ACK"   },
85         { 0,                    NULL    }
86 };
87
88 static int proto_rx = -1;
89 static int hf_rx_epoch = -1;
90 static int hf_rx_cid = -1;
91 static int hf_rx_seq = -1;
92 static int hf_rx_serial = -1;
93 static int hf_rx_callnumber = -1;
94 static int hf_rx_type = -1;
95 static int hf_rx_flags = -1;
96 static int hf_rx_flags_clientinit = -1;
97 static int hf_rx_flags_request_ack = -1;
98 static int hf_rx_flags_last_packet = -1;
99 static int hf_rx_flags_more_packets = -1;
100 static int hf_rx_flags_free_packet = -1;
101 static int hf_rx_userstatus = -1;
102 static int hf_rx_securityindex = -1;
103 static int hf_rx_spare = -1;
104 static int hf_rx_serviceid = -1;
105 static int hf_rx_bufferspace = -1;
106 static int hf_rx_maxskew = -1;
107 static int hf_rx_first_packet = -1;
108 static int hf_rx_prev_packet = -1;
109 static int hf_rx_reason = -1;
110 static int hf_rx_numacks = -1;
111 static int hf_rx_ack_type = -1;
112 static int hf_rx_ack = -1;
113 static int hf_rx_challenge = -1;
114 static int hf_rx_version = -1;
115 static int hf_rx_nonce = -1;
116 static int hf_rx_inc_nonce = -1;
117 static int hf_rx_min_level = -1;
118 static int hf_rx_level = -1;
119 static int hf_rx_response = -1;
120 static int hf_rx_encrypted = -1;
121 static int hf_rx_kvno = -1;
122 static int hf_rx_ticket_len = -1;
123 static int hf_rx_ticket = -1;
124 static int hf_rx_ifmtu = -1;
125 static int hf_rx_maxmtu = -1;
126 static int hf_rx_rwind = -1;
127 static int hf_rx_maxpackets = -1;
128 static int hf_rx_abort = -1;
129 static int hf_rx_abortcode = -1;
130
131 static gint ett_rx = -1;
132 static gint ett_rx_flags = -1;
133 static gint ett_rx_ack = -1;
134 static gint ett_rx_challenge = -1;
135 static gint ett_rx_response = -1;
136 static gint ett_rx_encrypted = -1;
137 static gint ett_rx_abort = -1;
138
139 static dissector_handle_t afs_handle;
140
141 static int
142 dissect_rx_response_encrypted(tvbuff_t *tvb, proto_tree *parent_tree, int offset)
143 {
144         proto_tree *tree;
145         proto_item *item;
146         int old_offset=offset;
147         int i;
148         guint32 callnumber;
149
150         item = proto_tree_add_item(parent_tree, hf_rx_encrypted, tvb, offset, -1, FALSE);
151         tree = proto_item_add_subtree(item, ett_rx_encrypted);
152
153         /* epoch : 4 bytes */
154         {
155                 nstime_t ts;
156                 ts.secs = tvb_get_ntohl(tvb, offset);
157                 ts.nsecs = 0;
158
159                 proto_tree_add_time(tree, hf_rx_epoch, tvb,
160                         offset, 4, &ts);
161                 offset += 4;
162         }
163
164         /* cid : 4 bytes */
165         proto_tree_add_item(tree, hf_rx_cid, tvb, offset, 4, FALSE);
166         offset += 4;
167
168         /*FIXME dont know how to handle this checksum, skipping it */
169         offset += 4;
170
171         /* sequrityindex : 1 byte */
172         proto_tree_add_item(tree, hf_rx_securityindex, tvb, offset, 1, FALSE);
173         offset += 4;
174
175         for (i=0; i<RX_MAXCALLS; i++) {
176                 /* callnumber : 4 bytes */
177                 callnumber = tvb_get_ntohl(tvb, offset);
178                 proto_tree_add_uint(tree, hf_rx_callnumber, tvb,
179                         offset, 4, callnumber);
180                 offset += 4;
181         }
182
183         /* inc nonce : 4 bytes */
184         proto_tree_add_item(tree, hf_rx_inc_nonce, tvb, offset, 4, FALSE);
185         offset += 4;
186
187         /* level : 4 bytes */
188         proto_tree_add_item(tree, hf_rx_level, tvb, offset, 4, FALSE);
189         offset += 4;
190
191         proto_item_set_len(item, offset-old_offset);
192         return offset;
193 }
194
195
196 static int
197 dissect_rx_response(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree, int offset, guint32 seq, guint32 callnumber)
198 {
199         proto_tree *tree;
200         proto_item *item;
201         guint32 version, tl;
202         int old_offset=offset;
203
204         if (check_col(pinfo->cinfo, COL_INFO)) {
205                 col_add_fstr(pinfo->cinfo, COL_INFO,
206                         "RESPONSE  "
207                         "Seq: %lu  "
208                         "Call: %lu  "
209                         "Source Port: %s  "
210                         "Destination Port: %s  ",
211                         (unsigned long)seq,
212                         (unsigned long)callnumber,
213                         get_udp_port(pinfo->srcport),
214                         get_udp_port(pinfo->destport)
215                 );
216         }
217
218         item = proto_tree_add_item(parent_tree, hf_rx_response, tvb, offset, -1, FALSE);
219         tree = proto_item_add_subtree(item, ett_rx_response);
220
221         version = tvb_get_ntohl(tvb, offset);
222         proto_tree_add_uint(tree, hf_rx_version, tvb,
223                 offset, 4, version);
224         offset += 4;
225
226         if (version==2) {
227                 /* skip unused */
228                 offset += 4;
229
230                 /* encrypted : struct */
231                 offset = dissect_rx_response_encrypted(tvb, tree, offset);
232
233                 /* kvno */
234                 proto_tree_add_item(tree, hf_rx_kvno, tvb, offset, 4, FALSE);
235                 offset += 4;
236
237                 /* ticket_len */
238                 tl = tvb_get_ntohl(tvb, offset);
239                 proto_tree_add_uint(tree, hf_rx_ticket_len, tvb,
240                         offset, 4, tl);
241                 offset += 4;
242
243                 tvb_ensure_bytes_exist(tvb, offset, tl);
244                 proto_tree_add_item(tree, hf_rx_ticket, tvb, offset, tl, FALSE);
245                 offset += tl;
246         }
247
248         proto_item_set_len(item, offset-old_offset);
249         return offset;
250 }
251
252 static int
253 dissect_rx_abort(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree, int offset, guint32 seq, guint32 callnumber)
254 {
255         proto_tree *tree;
256         proto_item *item;
257         int old_offset=offset;
258
259         if (check_col(pinfo->cinfo, COL_INFO)) {
260                 col_add_fstr(pinfo->cinfo, COL_INFO,
261                         "ABORT  "
262                         "Seq: %lu  "
263                         "Call: %lu  "
264                         "Source Port: %s  "
265                         "Destination Port: %s  ",
266                         (unsigned long)seq,
267                         (unsigned long)callnumber,
268                         get_udp_port(pinfo->srcport),
269                         get_udp_port(pinfo->destport)
270                 );
271         }
272
273         item = proto_tree_add_item(parent_tree, hf_rx_abort, tvb, offset, -1, FALSE);
274         tree = proto_item_add_subtree(item, ett_rx_abort);
275
276         /* kvno */
277         proto_tree_add_item(tree, hf_rx_abortcode, tvb, offset, 4, FALSE);
278         offset += 4;
279
280         proto_item_set_len(item, offset-old_offset);
281         return offset;
282 }
283
284
285 static int
286 dissect_rx_challenge(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree, int offset, guint32 seq, guint32 callnumber)
287 {
288         proto_tree *tree;
289         proto_item *item;
290         guint32 version;
291         int old_offset=offset;
292
293         if (check_col(pinfo->cinfo, COL_INFO)) {
294                 col_add_fstr(pinfo->cinfo, COL_INFO,
295                         "CHALLENGE  "
296                         "Seq: %lu  "
297                         "Call: %lu  "
298                         "Source Port: %s  "
299                         "Destination Port: %s  ",
300                         (unsigned long)seq,
301                         (unsigned long)callnumber,
302                         get_udp_port(pinfo->srcport),
303                         get_udp_port(pinfo->destport)
304                 );
305         }
306
307         item = proto_tree_add_item(parent_tree, hf_rx_challenge, tvb, offset, -1, FALSE);
308         tree = proto_item_add_subtree(item, ett_rx_challenge);
309
310         version = tvb_get_ntohl(tvb, offset);
311         proto_tree_add_uint(tree, hf_rx_version, tvb,
312                 offset, 4, version);
313         offset += 4;
314
315         if (version==2) {
316                 proto_tree_add_item(tree, hf_rx_nonce, tvb, offset, 4, FALSE);
317                 offset += 4;
318
319                 proto_tree_add_item(tree, hf_rx_min_level, tvb, offset, 4, FALSE);
320                 offset += 4;
321         }
322
323         proto_item_set_len(item, offset-old_offset);
324         return offset;
325 }
326
327 static int
328 dissect_rx_acks(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree, int offset, guint32 seq, guint32 callnumber)
329 {
330         proto_tree *tree;
331         proto_item *item;
332         guint8 num;
333         int old_offset = offset;
334
335         if (check_col(pinfo->cinfo, COL_INFO)) {
336                 col_add_fstr(pinfo->cinfo, COL_INFO,
337                         "ACK  "
338                         "Seq: %lu  "
339                         "Call: %lu  "
340                         "Source Port: %s  "
341                         "Destination Port: %s  ",
342                         (unsigned long)seq,
343                         (unsigned long)callnumber,
344                         get_udp_port(pinfo->srcport),
345                         get_udp_port(pinfo->destport)
346                 );
347         }
348
349         item = proto_tree_add_item(parent_tree, hf_rx_ack, tvb, offset, -1, FALSE);
350         tree = proto_item_add_subtree(item, ett_rx_ack);
351
352
353         /* bufferspace: 2 bytes*/
354         proto_tree_add_item(tree, hf_rx_bufferspace, tvb, offset, 2, FALSE);
355         offset += 2;
356
357         /* maxskew: 2 bytes*/
358         proto_tree_add_item(tree, hf_rx_maxskew, tvb, offset, 2, FALSE);
359         offset += 2;
360
361         /* first packet: 4 bytes*/
362         proto_tree_add_item(tree, hf_rx_first_packet, tvb, offset, 4, FALSE);
363         offset += 4;
364
365         /* prev packet: 4 bytes*/
366         proto_tree_add_item(tree, hf_rx_prev_packet, tvb, offset, 4, FALSE);
367         offset += 4;
368
369         /* serial : 4 bytes */
370         proto_tree_add_item(tree, hf_rx_serial, tvb, offset, 4, FALSE);
371         offset += 4;
372
373         /* reason : 1 byte */
374         proto_tree_add_item(tree, hf_rx_reason, tvb, offset, 1, FALSE);
375         offset += 1;
376
377         /* nACKs */
378         num = tvb_get_guint8(tvb, offset);
379         proto_tree_add_uint(tree, hf_rx_numacks, tvb, offset, 1, num);
380         offset += 1;
381
382         while(num--){
383                 proto_tree_add_item(tree, hf_rx_ack_type, tvb, offset, 1,
384                         FALSE);
385                 offset += 1;
386         }
387
388         /* Some implementations adds some extra fields.
389          * As far as I can see, these first add 3 padding bytes and then
390          * up to 4 32-bit values. (0,3,4 have been witnessed)
391          *
392          * RX as a protocol seems to be completely nondefined and seems to lack
393          * any sort of documentation other than "read the source of any of the
394          * (compatible?) implementations.
395          */
396         if (tvb_length_remaining(tvb, offset)>3) {
397                 offset += 3;    /* guess. some implementations adds 3 bytes */
398
399                 if (tvb_reported_length_remaining(tvb, offset) >= 4){
400                         proto_tree_add_item(tree, hf_rx_ifmtu, tvb, offset, 4,
401                                 FALSE);
402                         offset += 4;
403                 }
404                 if (tvb_reported_length_remaining(tvb, offset) >= 4){
405                         proto_tree_add_item(tree, hf_rx_maxmtu, tvb, offset, 4,
406                                 FALSE);
407                         offset += 4;
408                 }
409                 if (tvb_reported_length_remaining(tvb, offset) >= 4){
410                         proto_tree_add_item(tree, hf_rx_rwind, tvb, offset, 4,
411                                 FALSE);
412                         offset += 4;
413                 }
414                 if (tvb_reported_length_remaining(tvb, offset) >= 4){
415                         proto_tree_add_item(tree, hf_rx_maxpackets, tvb, offset, 4,
416                                 FALSE);
417                         offset += 4;
418                 }
419         }
420
421         proto_item_set_len(item, offset-old_offset);
422         return offset;
423 }
424
425
426 static int
427 dissect_rx_flags(tvbuff_t *tvb, struct rxinfo *rxinfo, proto_tree *parent_tree, int offset)
428 {
429         proto_tree *tree;
430         proto_item *item;
431         guint8 flags;
432
433         flags = tvb_get_guint8(tvb, offset);
434         rxinfo->flags = flags;
435
436         item = proto_tree_add_uint(parent_tree, hf_rx_flags, tvb,
437                 offset, 1, flags);
438         tree = proto_item_add_subtree(item, ett_rx_flags);
439
440         proto_tree_add_boolean(tree, hf_rx_flags_free_packet, tvb,
441                 offset, 1, flags);
442         proto_tree_add_boolean(tree, hf_rx_flags_more_packets, tvb,
443                 offset, 1, flags);
444         proto_tree_add_boolean(tree, hf_rx_flags_last_packet, tvb,
445                 offset, 1, flags);
446         proto_tree_add_boolean(tree, hf_rx_flags_request_ack, tvb,
447                 offset, 1, flags);
448         proto_tree_add_boolean(tree, hf_rx_flags_clientinit, tvb,
449                 offset, 1, flags);
450
451         offset += 1;
452         return offset;
453 }
454
455 static int
456 dissect_rx(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree)
457 {
458         proto_tree *tree;
459         proto_item *item;
460         int offset = 0;
461         struct rxinfo rxinfo;
462         guint8 type;
463         nstime_t ts;
464         guint32 seq, callnumber;
465         guint16 serviceid;
466
467         /* Ensure we have enough data */
468         if (tvb_length(tvb) < 28)
469                 return 0;
470
471         /* Make sure it's a known type */
472         type = tvb_get_guint8(tvb, 20);
473         if (type == 0 || type == 10 || type == 11 || type == 12 || type > 13)
474                 return 0;
475
476         col_set_str(pinfo->cinfo, COL_PROTOCOL, "RX");
477         col_clear(pinfo->cinfo, COL_INFO);
478
479         item = proto_tree_add_protocol_format(parent_tree, proto_rx, tvb,
480                 offset, 28, "RX Protocol");
481         tree = proto_item_add_subtree(item, ett_rx);
482
483         /* epoch : 4 bytes */
484         rxinfo.epoch = tvb_get_ntohl(tvb, offset);
485         ts.secs = rxinfo.epoch;
486         ts.nsecs = 0;
487         proto_tree_add_time(tree, hf_rx_epoch, tvb, offset, 4, &ts);
488         offset += 4;
489
490         /* cid : 4 bytes */
491         rxinfo.cid = tvb_get_ntohl(tvb, offset);
492         proto_tree_add_item(tree, hf_rx_cid, tvb, offset, 4, FALSE);
493         offset += 4;
494
495         /* callnumber : 4 bytes */
496         callnumber = tvb_get_ntohl(tvb, offset);
497         proto_tree_add_uint(tree, hf_rx_callnumber, tvb,
498                 offset, 4, callnumber);
499         offset += 4;
500         rxinfo.callnumber = callnumber;
501
502         /* seq : 4 bytes */
503         seq = tvb_get_ntohl(tvb, offset);
504         proto_tree_add_uint(tree, hf_rx_seq, tvb,
505                 offset, 4, seq);
506         offset += 4;
507         rxinfo.seq = seq;
508
509         /* serial : 4 bytes */
510         proto_tree_add_item(tree, hf_rx_serial, tvb, offset, 4, FALSE);
511         offset += 4;
512
513         /* type : 1 byte */
514         type = tvb_get_guint8(tvb, offset);
515         proto_tree_add_uint(tree, hf_rx_type, tvb,
516                 offset, 1, type);
517         offset += 1;
518         rxinfo.type = type;
519
520         /* flags : 1 byte */
521         offset = dissect_rx_flags(tvb, &rxinfo, tree, offset);
522
523         /* userstatus : 1 byte */
524         proto_tree_add_item(tree, hf_rx_userstatus, tvb, offset, 1, FALSE);
525         offset += 1;
526
527         /* sequrityindex : 1 byte */
528         proto_tree_add_item(tree, hf_rx_securityindex, tvb, offset, 1, FALSE);
529         offset += 1;
530
531         /*
532          * How clever: even though the AFS header files indicate that the
533          * serviceId is first, it's really encoded _after_ the spare field.
534          * I wasted a day figuring that out!
535          */
536
537         /* spare */
538         proto_tree_add_item(tree, hf_rx_spare, tvb, offset, 2, FALSE);
539         offset += 2;
540
541         /* service id : 2 bytes */
542         serviceid = tvb_get_ntohs(tvb, offset);
543         proto_tree_add_uint(tree, hf_rx_serviceid, tvb,
544                 offset, 2, serviceid);
545         offset += 2;
546         rxinfo.serviceid = serviceid;
547
548         switch (type) {
549         case RX_PACKET_TYPE_ACK:
550                 /*dissect_rx_acks(tvb, pinfo, parent_tree, offset,
551                         cant create it in a parallell tree, then ett seasrch
552                         wont work */
553                 dissect_rx_acks(tvb, pinfo, tree, offset,
554                         seq, callnumber);
555                 break;
556         case RX_PACKET_TYPE_ACKALL:
557                 /* does not contain any payload */
558                 if (check_col(pinfo->cinfo, COL_INFO)) {
559                         col_add_fstr(pinfo->cinfo, COL_INFO,
560                                 "ACKALL  "
561                                 "Seq: %lu  "
562                                 "Call: %lu  "
563                                 "Source Port: %s  "
564                                 "Destination Port: %s  ",
565                                 (unsigned long)seq,
566                                 (unsigned long)callnumber,
567                                 get_udp_port(pinfo->srcport),
568                                 get_udp_port(pinfo->destport)
569                         );
570                 }
571                 break;
572         case RX_PACKET_TYPE_CHALLENGE:
573                 dissect_rx_challenge(tvb, pinfo, tree, offset, seq, callnumber);
574                 break;
575         case RX_PACKET_TYPE_RESPONSE:
576                 dissect_rx_response(tvb, pinfo, tree, offset, seq, callnumber);
577                 break;
578         case RX_PACKET_TYPE_DATA: {
579                 tvbuff_t *next_tvb;
580                 void* pd_save;
581                 pd_save = pinfo->private_data;
582                 pinfo->private_data = &rxinfo;
583                 next_tvb = tvb_new_subset(tvb, offset, -1, -1);
584                 call_dissector(afs_handle, next_tvb, pinfo, parent_tree);
585                 pinfo->private_data = pd_save;
586                 };
587                 break;
588         case RX_PACKET_TYPE_ABORT:
589                 dissect_rx_abort(tvb, pinfo, tree, offset, seq, callnumber);
590                 break;
591         }
592
593         return(tvb_length(tvb));
594 }
595
596 void
597 proto_register_rx(void)
598 {
599         static hf_register_info hf[] = {
600                 { &hf_rx_epoch, {
601                         "Epoch", "rx.epoch", FT_ABSOLUTE_TIME, BASE_NONE,
602                         NULL, 0, NULL, HFILL }},
603
604                 { &hf_rx_cid, {
605                         "CID", "rx.cid", FT_UINT32, BASE_DEC,
606                         NULL, 0, NULL, HFILL }},
607
608                 { &hf_rx_callnumber, {
609                         "Call Number", "rx.callnumber", FT_UINT32, BASE_DEC,
610                         NULL, 0, NULL, HFILL }},
611
612                 { &hf_rx_seq, {
613                         "Sequence Number", "rx.seq", FT_UINT32, BASE_DEC,
614                         NULL, 0, NULL, HFILL }},
615
616                 { &hf_rx_serial, {
617                         "Serial", "rx.serial", FT_UINT32, BASE_DEC,
618                         NULL, 0, NULL, HFILL }},
619
620                 { &hf_rx_type, {
621                         "Type", "rx.type", FT_UINT8, BASE_DEC,
622                         VALS(rx_types), 0, NULL, HFILL }},
623
624                 { &hf_rx_flags, {
625                         "Flags", "rx.flags", FT_UINT8, BASE_HEX,
626                         NULL, 0, NULL, HFILL }},
627
628                 { &hf_rx_flags_clientinit, {
629                         "Client Initiated", "rx.flags.client_init", FT_BOOLEAN, 8,
630                         NULL, RX_CLIENT_INITIATED, NULL, HFILL }},
631
632                 { &hf_rx_flags_request_ack, {
633                         "Request Ack", "rx.flags.request_ack", FT_BOOLEAN, 8,
634                         NULL, RX_REQUEST_ACK, NULL, HFILL }},
635
636                 { &hf_rx_flags_last_packet, {
637                         "Last Packet", "rx.flags.last_packet", FT_BOOLEAN, 8,
638                         NULL, RX_LAST_PACKET, NULL, HFILL }},
639
640                 { &hf_rx_flags_more_packets, {
641                         "More Packets", "rx.flags.more_packets", FT_BOOLEAN, 8,
642                         NULL, RX_MORE_PACKETS, NULL, HFILL }},
643
644                 { &hf_rx_flags_free_packet, {
645                         "Free Packet", "rx.flags.free_packet", FT_BOOLEAN, 8,
646                         NULL, RX_FREE_PACKET, NULL, HFILL }},
647
648                 /* XXX - what about RX_SLOW_START_OR_JUMBO? */
649
650                 { &hf_rx_userstatus, {
651                         "User Status", "rx.userstatus", FT_UINT32, BASE_DEC,
652                         NULL, 0, NULL, HFILL }},
653
654                 { &hf_rx_securityindex, {
655                         "Security Index", "rx.securityindex", FT_UINT32, BASE_DEC,
656                         NULL, 0, NULL, HFILL }},
657
658                 { &hf_rx_spare, {
659                         "Spare/Checksum", "rx.spare", FT_UINT16, BASE_DEC,
660                         NULL, 0, NULL, HFILL }},
661
662                 { &hf_rx_serviceid, {
663                         "Service ID", "rx.serviceid", FT_UINT16, BASE_DEC,
664                         NULL, 0, NULL, HFILL }},
665
666                 { &hf_rx_bufferspace, {
667                         "Bufferspace", "rx.bufferspace", FT_UINT16, BASE_DEC,
668                         NULL, 0, "Number Of Packets Available", HFILL }},
669
670                 { &hf_rx_maxskew, {
671                         "Max Skew", "rx.maxskew", FT_UINT16, BASE_DEC,
672                         NULL, 0, NULL, HFILL }},
673
674                 { &hf_rx_first_packet, {
675                         "First Packet", "rx.first", FT_UINT32, BASE_DEC,
676                         NULL, 0, NULL, HFILL }},
677
678                 { &hf_rx_prev_packet, {
679                         "Prev Packet", "rx.prev", FT_UINT32, BASE_DEC,
680                         NULL, 0, "Previous Packet", HFILL }},
681
682                 { &hf_rx_reason, {
683                         "Reason", "rx.reason", FT_UINT8, BASE_DEC,
684                         VALS(rx_reason), 0, "Reason For This ACK", HFILL }},
685
686                 { &hf_rx_numacks, {
687                         "Num ACKs", "rx.num_acks", FT_UINT8, BASE_DEC,
688                         NULL, 0, "Number Of ACKs", HFILL }},
689
690                 { &hf_rx_ack_type, {
691                         "ACK Type", "rx.ack_type", FT_UINT8, BASE_DEC,
692                         VALS(rx_ack_type), 0, "Type Of ACKs", HFILL }},
693
694                 { &hf_rx_ack, {
695                         "ACK Packet", "rx.ack", FT_NONE, BASE_NONE,
696                         NULL, 0, NULL, HFILL }},
697
698                 { &hf_rx_challenge, {
699                         "CHALLENGE Packet", "rx.challenge", FT_NONE, BASE_NONE,
700                         NULL, 0, NULL, HFILL }},
701
702                 { &hf_rx_version, {
703                         "Version", "rx.version", FT_UINT32, BASE_DEC,
704                         NULL, 0, "Version Of Challenge/Response", HFILL }},
705
706                 { &hf_rx_nonce, {
707                         "Nonce", "rx.nonce", FT_UINT32, BASE_HEX,
708                         NULL, 0, NULL, HFILL }},
709
710                 { &hf_rx_inc_nonce, {
711                         "Inc Nonce", "rx.inc_nonce", FT_UINT32, BASE_HEX,
712                         NULL, 0, "Incremented Nonce", HFILL }},
713
714                 { &hf_rx_min_level, {
715                         "Min Level", "rx.min_level", FT_UINT32, BASE_DEC,
716                         NULL, 0, NULL, HFILL }},
717
718                 { &hf_rx_level, {
719                         "Level", "rx.level", FT_UINT32, BASE_DEC,
720                         NULL, 0, NULL, HFILL }},
721
722                 { &hf_rx_response, {
723                         "RESPONSE Packet", "rx.response", FT_NONE, BASE_NONE,
724                         NULL, 0, NULL, HFILL }},
725
726                 { &hf_rx_abort, {
727                         "ABORT Packet", "rx.abort", FT_NONE, BASE_NONE,
728                         NULL, 0, NULL, HFILL }},
729
730                 { &hf_rx_encrypted, {
731                         "Encrypted", "rx.encrypted", FT_NONE, BASE_NONE,
732                         NULL, 0, "Encrypted part of response packet", HFILL }},
733
734                 { &hf_rx_kvno, {
735                         "kvno", "rx.kvno", FT_UINT32, BASE_DEC,
736                         NULL, 0, NULL, HFILL }},
737
738                 { &hf_rx_ticket_len, {
739                         "Ticket len", "rx.ticket_len", FT_UINT32, BASE_DEC,
740                         NULL, 0, "Ticket Length", HFILL }},
741
742                 { &hf_rx_ticket, {
743                         "ticket", "rx.ticket", FT_BYTES, BASE_NONE,
744                         NULL, 0, "Ticket", HFILL }},
745
746                 { &hf_rx_ifmtu, {
747                         "Interface MTU", "rx.if_mtu", FT_UINT32, BASE_DEC,
748                         NULL, 0, NULL, HFILL }},
749
750                 { &hf_rx_maxmtu, {
751                         "Max MTU", "rx.max_mtu", FT_UINT32, BASE_DEC,
752                         NULL, 0, NULL, HFILL }},
753
754                 { &hf_rx_rwind, {
755                         "rwind", "rx.rwind", FT_UINT32, BASE_DEC,
756                         NULL, 0, NULL, HFILL }},
757
758                 { &hf_rx_maxpackets, {
759                         "Max Packets", "rx.max_packets", FT_UINT32, BASE_DEC,
760                         NULL, 0, NULL, HFILL }},
761
762                 { &hf_rx_abortcode, {
763                         "Abort Code", "rx.abort_code", FT_UINT32, BASE_DEC,
764                         NULL, 0, NULL, HFILL }},
765
766         };
767         static gint *ett[] = {
768                 &ett_rx,
769                 &ett_rx_flags,
770                 &ett_rx_ack,
771                 &ett_rx_challenge,
772                 &ett_rx_response,
773                 &ett_rx_encrypted,
774                 &ett_rx_abort
775         };
776
777         proto_rx = proto_register_protocol("RX Protocol", "RX", "rx");
778         proto_register_field_array(proto_rx, hf, array_length(hf));
779         proto_register_subtree_array(ett, array_length(ett));
780 }
781
782 void
783 proto_reg_handoff_rx(void)
784 {
785         dissector_handle_t rx_handle;
786
787         int port;
788
789         /*
790          * Get handle for the AFS dissector.
791          */
792         afs_handle = find_dissector("afs");
793
794         /* Ports in the range UDP_PORT_RX_LOW to UDP_PORT_RX_HIGH
795            are all used for various AFS services. */
796         rx_handle = new_create_dissector_handle(dissect_rx, proto_rx);
797         for (port = UDP_PORT_RX_LOW; port <= UDP_PORT_RX_HIGH; port++)
798                 dissector_add("udp.port", port, rx_handle);
799         dissector_add("udp.port", UDP_PORT_RX_AFS_BACKUPS, rx_handle);
800 }