3 * $Id: packet-rtcp.c,v 1.22 2001/09/08 00:43:51 guy Exp $
5 * Routines for RTCP dissection
6 * RTCP = Real-time Transport Control Protocol
8 * Copyright 2000, Philips Electronics N.V.
9 * Written by Andreas Sikkema <andreas.sikkema@philips.com>
11 * Ethereal - Network traffic analyzer
12 * By Gerald Combs <gerald@ethereal.com>
13 * Copyright 1998 Gerald Combs
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.
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.
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.
31 * This dissector tries to dissect the RTCP protocol according to Annex A
32 * of ITU-T Recommendation H.225.0 (02/98) and RFC 1889
33 * H.225.0 literally copies RFC 1889, but omitting a few sections.
35 * RTCP traffic is handled by an uneven UDP portnumber. This can be any
36 * port number, but there is a registered port available, port 5005
37 * See Annex B of ITU-T Recommendation H.225.0, section B.7
49 #ifdef HAVE_SYS_TYPES_H
50 # include <sys/types.h>
53 #ifdef HAVE_NETINET_IN_H
54 # include <netinet/in.h>
60 #include "packet-rtcp.h"
62 #include "packet-ntp.h"
64 #include "conversation.h"
66 /* Version is the first 2 bits of the first octet*/
67 #define RTCP_VERSION(octet) ((octet) >> 6)
69 /* Padding is the third bit; no need to shift, because true is any value
71 #define RTCP_PADDING(octet) ((octet) & 0x20)
73 /* Receiver/ Sender count is the 5 last bits */
74 #define RTCP_COUNT(octet) ((octet) & 0x1F)
76 static const value_string rtcp_version_vals[] =
78 { 0, "Old VAT Version" },
79 { 1, "First Draft Version" },
80 { 2, "RFC 1889 Version" },
84 /* RTCP packet types according to Section A.11.1 */
90 /* Supplemental H.261 specific RTCP packet types according to Section C.3.5 */
94 static const value_string rtcp_packet_type_vals[] =
96 { RTCP_SR, "Sender Report" },
97 { RTCP_RR, "Receiver Report" },
98 { RTCP_SDES, "Source description" },
99 { RTCP_BYE, "Goodbye" },
100 { RTCP_APP, "Application specific" },
101 { RTCP_FIR, "Full Intra-frame Request (H.261)" },
102 { RTCP_NACK, "Negative Acknowledgement (H.261)" },
106 /* RTCP SDES types (Section A.11.2) */
107 #define RTCP_SDES_END 0
108 #define RTCP_SDES_CNAME 1
109 #define RTCP_SDES_NAME 2
110 #define RTCP_SDES_EMAIL 3
111 #define RTCP_SDES_PHONE 4
112 #define RTCP_SDES_LOC 5
113 #define RTCP_SDES_TOOL 6
114 #define RTCP_SDES_NOTE 7
115 #define RTCP_SDES_PRIV 8
117 static const value_string rtcp_sdes_type_vals[] =
119 { RTCP_SDES_END, "END" },
120 { RTCP_SDES_CNAME, "CNAME (user and domain)" },
121 { RTCP_SDES_NAME, "NAME (common name)" },
122 { RTCP_SDES_EMAIL, "EMAIL (e-mail address)" },
123 { RTCP_SDES_PHONE, "PHONE (phone number)" },
124 { RTCP_SDES_LOC, "LOC (geographic location)" },
125 { RTCP_SDES_TOOL, "TOOL (name/version of source app)" },
126 { RTCP_SDES_NOTE, "NOTE (note about source)" },
127 { RTCP_SDES_PRIV, "PRIV (private extensions)" },
131 /* RTCP header fields */
132 static int proto_rtcp = -1;
133 static int hf_rtcp_version = -1;
134 static int hf_rtcp_padding = -1;
135 static int hf_rtcp_rc = -1;
136 static int hf_rtcp_sc = -1;
137 static int hf_rtcp_pt = -1;
138 static int hf_rtcp_length = -1;
139 static int hf_rtcp_ssrc_sender = -1;
140 static int hf_rtcp_ntp = -1;
141 static int hf_rtcp_rtp_timestamp = -1;
142 static int hf_rtcp_sender_pkt_cnt = -1;
143 static int hf_rtcp_sender_oct_cnt = -1;
144 static int hf_rtcp_ssrc_source = -1;
145 static int hf_rtcp_ssrc_fraction = -1;
146 static int hf_rtcp_ssrc_cum_nr = -1;
147 /* First the 32 bit number, then the split
148 * up 16 bit values */
149 /* These two are added to a subtree */
150 static int hf_rtcp_ssrc_ext_high_seq = -1;
151 static int hf_rtcp_ssrc_high_seq = -1;
152 static int hf_rtcp_ssrc_high_cycles = -1;
153 static int hf_rtcp_ssrc_jitter = -1;
154 static int hf_rtcp_ssrc_lsr = -1;
155 static int hf_rtcp_ssrc_dlsr = -1;
156 static int hf_rtcp_ssrc_csrc = -1;
157 static int hf_rtcp_ssrc_type = -1;
158 static int hf_rtcp_ssrc_length = -1;
159 static int hf_rtcp_ssrc_text = -1;
160 static int hf_rtcp_ssrc_prefix_len = -1;
161 static int hf_rtcp_ssrc_prefix_string= -1;
162 static int hf_rtcp_subtype = -1;
163 static int hf_rtcp_name_ascii = -1;
164 static int hf_rtcp_app_data = -1;
165 static int hf_rtcp_fsn = -1;
166 static int hf_rtcp_blp = -1;
167 static int hf_rtcp_padding_count = -1;
168 static int hf_rtcp_padding_data = -1;
170 /* RTCP fields defining a sub tree */
171 static gint ett_rtcp = -1;
172 static gint ett_ssrc = -1;
173 static gint ett_ssrc_item = -1;
174 static gint ett_ssrc_ext_high = -1;
175 static gint ett_sdes = -1;
176 static gint ett_sdes_item = -1;
178 static address fake_addr;
179 static int heur_init = FALSE;
181 static gboolean dissect_rtcp_heur( tvbuff_t *tvb, packet_info *pinfo,
184 void rtcp_add_address( packet_info *pinfo, const unsigned char* ip_addr,
188 conversation_t* pconv;
191 * If this isn't the first time this packet has been processed,
192 * we've already done this work, so we don't need to do it
195 if (pinfo->fd->flags.visited)
198 src_addr.type = AT_IPv4;
200 src_addr.data = ip_addr;
203 * The first time the function is called let the udp dissector
204 * know that we're interested in traffic
207 heur_dissector_add( "udp", dissect_rtcp_heur, proto_rtcp );
212 * Check if the ip address and port combination is not
215 pconv = find_conversation( &src_addr, &fake_addr, PT_UDP, prt, 0, 0 );
219 * XXX - use wildcard address and port B?
222 pconv = conversation_new( &src_addr, &fake_addr, PT_UDP,
223 (guint32) prt, (guint32) 0, 0 );
224 conversation_add_proto_data(pconv, proto_rtcp, NULL);
230 static void rtcp_init( void )
232 unsigned char* tmp_data;
235 /* Create a fake adddress... */
236 fake_addr.type = AT_IPv4;
239 tmp_data = malloc( fake_addr.len );
240 for ( i = 0; i < fake_addr.len; i++) {
243 fake_addr.data = tmp_data;
248 dissect_rtcp_heur( tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree )
250 conversation_t* pconv;
252 if (!proto_is_protocol_enabled(proto_rtcp))
253 return FALSE; /* RTCP has been disabled */
255 /* This is a heuristic dissector, which means we get all the UDP
256 * traffic not sent to a known dissector and not claimed by
257 * a heuristic dissector called before us!
258 * So we first check if the frame is really meant for us.
260 if ( ( pconv = find_conversation( &pinfo->src, &fake_addr, pinfo->ptype,
261 pinfo->srcport, 0, 0 ) ) == NULL ) {
263 * The source ip:port combination was not what we were
264 * looking for, check the destination
266 if ( ( pconv = find_conversation( &pinfo->dst, &fake_addr,
267 pinfo->ptype, pinfo->destport, 0, 0 ) ) == NULL ) {
274 * An RTCP conversation always has a data item for RTCP.
275 * (Its existence is sufficient to indicate that this is an RTCP
278 if (conversation_get_proto_data(pconv, proto_rtcp) == NULL)
282 * The message is a valid RTCP message!
284 dissect_rtcp( tvb, pinfo, tree );
291 dissect_rtcp_nack( tvbuff_t *tvb, int offset, frame_data *fd, proto_tree *tree )
293 /* Packet type = FIR (H261) */
294 proto_tree_add_uint( tree, hf_rtcp_rc, tvb, offset, 1, tvb_get_guint8( tvb, offset ) & 31 );
296 /* Packet type, 8 bits = APP */
297 proto_tree_add_item( tree, hf_rtcp_pt, tvb, offset, 1, FALSE );
300 /* Packet length in 32 bit words minus one */
301 proto_tree_add_uint( tree, hf_rtcp_length, tvb, offset, 2, tvb_get_ntohs( tvb, offset ) );
305 proto_tree_add_uint( tree, hf_rtcp_ssrc_source, tvb, offset, 4, tvb_get_ntohl( tvb, offset ) );
309 proto_tree_add_uint( tree, hf_rtcp_fsn, tvb, offset, 2, tvb_get_ntohs( tvb, offset ) );
313 proto_tree_add_uint( tree, hf_rtcp_blp, tvb, offset, 2, tvb_get_ntohs( tvb, offset ) );
320 dissect_rtcp_fir( tvbuff_t *tvb, int offset, frame_data *fd, proto_tree *tree )
322 /* Packet type = FIR (H261) */
323 proto_tree_add_uint( tree, hf_rtcp_rc, tvb, offset, 1, tvb_get_guint8( tvb, offset ) & 31 );
325 /* Packet type, 8 bits = APP */
326 proto_tree_add_item( tree, hf_rtcp_pt, tvb, offset, 1, FALSE );
329 /* Packet length in 32 bit words minus one */
330 proto_tree_add_uint( tree, hf_rtcp_length, tvb, offset, 2, tvb_get_ntohs( tvb, offset ) );
334 proto_tree_add_uint( tree, hf_rtcp_ssrc_source, tvb, offset, 4, tvb_get_ntohl( tvb, offset ) );
341 dissect_rtcp_app( tvbuff_t *tvb, int offset, frame_data *fd, proto_tree *tree,
342 unsigned int padding, unsigned int packet_len )
344 unsigned int counter = 0;
348 proto_tree_add_uint( tree, hf_rtcp_ssrc_source, tvb, offset, 4, tvb_get_ntohl( tvb, offset ) );
353 for( counter = 0; counter < 4; counter++ )
354 ascii_name[ counter ] = tvb_get_guint8( tvb, offset + counter );
355 /* strncpy( ascii_name, pd + offset, 4 ); */
356 ascii_name[4] = '\0';
357 proto_tree_add_string( tree, hf_rtcp_name_ascii, tvb, offset, 4,
362 /* Applications specific data */
364 /* If there's padding present, we have to remove that from the data part
365 * The last octet of the packet contains the length of the padding
367 packet_len -= tvb_get_guint8( tvb, offset + packet_len - 1 );
369 proto_tree_add_item( tree, hf_rtcp_app_data, tvb, offset, packet_len, FALSE );
370 offset += packet_len;
376 dissect_rtcp_bye( tvbuff_t *tvb, int offset, frame_data *fd, proto_tree *tree,
379 unsigned int chunk = 1;
380 unsigned int reason_length = 0;
381 unsigned int counter = 0;
382 char* reason_text = NULL;
384 while ( chunk <= count ) {
385 /* source identifier, 32 bits */
386 proto_tree_add_uint( tree, hf_rtcp_ssrc_source, tvb, offset, 4, tvb_get_ntohl( tvb, offset ) );
390 /* Bye reason consists of an 8 bit length l and a string with length l */
391 reason_length = tvb_get_guint8( tvb, offset );
392 proto_tree_add_item( tree, hf_rtcp_ssrc_length, tvb, offset, 1, FALSE );
395 reason_text = ( char* ) malloc( reason_length + 1 );
396 for ( counter = 0; counter < reason_length; counter++ ) reason_text[ counter ] = tvb_get_guint8( tvb, offset + counter );
397 /* strncpy( reason_text, pd + offset, reason_length ); */
398 reason_text[ reason_length ] = '\0';
399 proto_tree_add_string( tree, hf_rtcp_ssrc_text, tvb, offset, reason_length, reason_text );
401 offset += reason_length;
408 dissect_rtcp_sdes( tvbuff_t *tvb, int offset, frame_data *fd, proto_tree *tree,
411 unsigned int chunk = 1;
412 proto_item *sdes_item;
413 proto_tree *sdes_tree;
414 proto_tree *sdes_item_tree;
417 int items_start_offset;
419 unsigned int item_len = 0;
420 unsigned int sdes_type = 0;
421 unsigned int counter = 0;
422 unsigned int prefix_len = 0;
423 char *prefix_string = NULL;
425 while ( chunk <= count ) {
426 /* Create a subtree for this chunk; we don't yet know
428 start_offset = offset;
430 ssrc = tvb_get_ntohl( tvb, offset );
431 sdes_item = proto_tree_add_text(tree, tvb, offset, 0,
432 "Chunk %u, SSRC/CSRC %u", chunk, ssrc);
433 sdes_tree = proto_item_add_subtree( sdes_item, ett_sdes );
435 /* SSRC_n source identifier, 32 bits */
436 proto_tree_add_uint( sdes_tree, hf_rtcp_ssrc_source, tvb, offset, 4, ssrc );
439 /* Create a subtree for the SDES items; we don't yet know
441 items_start_offset = offset;
442 ti = proto_tree_add_text(sdes_tree, tvb, offset, 0,
444 sdes_item_tree = proto_item_add_subtree( ti, ett_sdes_item );
447 * Not every message is ended with "null" bytes, so check for
448 * end of frame instead.
450 while ( ( tvb_reported_length_remaining( tvb, offset ) > 0 )
451 && ( tvb_get_guint8( tvb, offset ) != RTCP_SDES_END ) ) {
453 sdes_type = tvb_get_guint8( tvb, offset );
454 proto_tree_add_item( sdes_item_tree, hf_rtcp_ssrc_type, tvb, offset, 1, FALSE );
457 /* Item length, 8 bits */
458 item_len = tvb_get_guint8( tvb, offset );
459 proto_tree_add_item( sdes_item_tree, hf_rtcp_ssrc_length, tvb, offset, 1, FALSE );
462 if ( sdes_type == RTCP_SDES_PRIV ) {
463 /* PRIV adds two items between the SDES length
464 * and value - an 8 bit length giving the
465 * length of a "prefix string", and the string.
467 prefix_len = tvb_get_guint8( tvb, offset );
468 proto_tree_add_item( sdes_item_tree, hf_rtcp_ssrc_prefix_len, tvb, offset, 1, FALSE );
471 prefix_string = ( char * ) malloc( prefix_len + 1 );
472 for ( counter = 0; counter < prefix_len; counter++ )
473 prefix_string[ counter ] =
474 tvb_get_guint8( tvb, offset + counter );
475 /* strncpy( prefix_string, pd + offset, prefix_len ); */
476 prefix_string[ prefix_len ] = '\0';
477 proto_tree_add_string( sdes_item_tree, hf_rtcp_ssrc_prefix_string, tvb, offset, prefix_len, prefix_string );
478 free( prefix_string );
479 offset += prefix_len;
481 prefix_string = ( char * ) malloc( item_len + 1 );
482 for ( counter = 0; counter < item_len; counter++ )
483 prefix_string[ counter ] =
484 tvb_get_guint8( tvb, offset + counter );
485 /* strncpy( prefix_string, pd + offset, item_len ); */
486 prefix_string[ item_len] = 0;
487 proto_tree_add_string( sdes_item_tree, hf_rtcp_ssrc_text, tvb, offset, item_len, prefix_string );
488 free( prefix_string );
492 /* Set the length of the items subtree. */
493 proto_item_set_len(ti, offset - items_start_offset);
495 /* 32 bits = 4 bytes, so.....
496 * If offset % 4 != 0, we divide offset by 4, add one and then
497 * multiply by 4 again to reach the boundary
499 if ( offset % 4 != 0 )
500 offset = ((offset / 4) + 1 ) * 4;
502 /* Set the length of this chunk. */
503 proto_item_set_len(sdes_item, offset - start_offset);
513 dissect_rtcp_rr( tvbuff_t *tvb, int offset, frame_data *fd, proto_tree *tree,
516 unsigned int counter = 1;
517 proto_tree *ssrc_tree = (proto_tree*) NULL;
518 proto_tree *ssrc_sub_tree = (proto_tree*) NULL;
519 proto_tree *high_sec_tree = (proto_tree*) NULL;
520 proto_item *ti = (proto_item*) NULL;
522 unsigned int cum_nr = 0;
524 while ( counter <= count ) {
525 /* Create a new subtree for a length of 24 bytes */
526 ti = proto_tree_add_text(tree, tvb, offset, 24,
527 "Source %u", counter );
528 ssrc_tree = proto_item_add_subtree( ti, ett_ssrc );
530 /* SSRC_n source identifier, 32 bits */
531 proto_tree_add_uint( ssrc_tree, hf_rtcp_ssrc_source, tvb, offset, 4, tvb_get_ntohl( tvb, offset ) );
534 ti = proto_tree_add_text(ssrc_tree, tvb, offset, 20, "SSRC contents" );
535 ssrc_sub_tree = proto_item_add_subtree( ti, ett_ssrc_item );
537 /* Fraction lost, 8bits */
538 rr_flt = tvb_get_guint8( tvb, offset );
539 proto_tree_add_uint_format( ssrc_sub_tree, hf_rtcp_ssrc_fraction, tvb,
540 offset, 1, rr_flt, "Fraction lost: %u / 256", rr_flt );
543 /* Cumulative number of packets lost, 24 bits */
544 cum_nr = tvb_get_ntohl( tvb, offset ) >> 8;
545 proto_tree_add_uint( ssrc_sub_tree, hf_rtcp_ssrc_cum_nr, tvb,
549 /* Extended highest sequence nr received, 32 bits
550 * Just for the sake of it, let's add another subtree
551 * because this might be a little clearer
553 ti = proto_tree_add_uint( ssrc_tree, hf_rtcp_ssrc_ext_high_seq,
554 tvb, offset, 4, tvb_get_ntohl( tvb, offset ) );
555 high_sec_tree = proto_item_add_subtree( ti, ett_ssrc_ext_high );
556 /* Sequence number cycles */
557 proto_tree_add_uint( high_sec_tree, hf_rtcp_ssrc_high_cycles,
558 tvb, offset, 2, tvb_get_ntohs( tvb, offset ) );
560 /* highest sequence number received */
561 proto_tree_add_uint( high_sec_tree, hf_rtcp_ssrc_high_seq,
562 tvb, offset, 2, tvb_get_ntohs( tvb, offset ) );
565 /* Interarrival jitter */
566 proto_tree_add_uint( ssrc_tree, hf_rtcp_ssrc_jitter, tvb,
567 offset, 4, tvb_get_ntohl( tvb, offset ) );
570 /* Last SR timestamp */
571 proto_tree_add_uint( ssrc_tree, hf_rtcp_ssrc_lsr, tvb,
572 offset, 4, tvb_get_ntohl( tvb, offset ) );
575 /* Delay since last SR timestamp */
576 proto_tree_add_uint( ssrc_tree, hf_rtcp_ssrc_dlsr, tvb,
577 offset, 4, tvb_get_ntohl( tvb, offset ) );
586 dissect_rtcp_sr( tvbuff_t *tvb, int offset, frame_data *fd, proto_tree *tree,
590 gchar buff[ NTP_TS_SIZE ];
591 char* ptime = tvb_get_ptr( tvb, offset, 8 );
593 /* Retreive the NTP timestamp. Using the NTP dissector for this */
594 ntp_fmt_ts( ptime, buff );
595 proto_tree_add_string_format( tree, hf_rtcp_ntp, tvb, offset, 8, ( const char* ) &buff, "NTP timestamp: %s", &buff );
596 free( ptime ); ??????????????????????????????????????????????????????????????????
600 * XXX - RFC 1889 says this is an NTP timestamp, but that appears
601 * not to be the case.
603 proto_tree_add_text(tree, tvb, offset, 4, "Timestamp, MSW: %u",
604 tvb_get_ntohl(tvb, offset));
606 proto_tree_add_text(tree, tvb, offset, 4, "Timestamp, LSW: %u",
607 tvb_get_ntohl(tvb, offset));
610 /* RTP timestamp, 32 bits */
611 proto_tree_add_uint( tree, hf_rtcp_rtp_timestamp, tvb, offset, 4, tvb_get_ntohl( tvb, offset ) );
613 /* Sender's packet count, 32 bits */
614 proto_tree_add_uint( tree, hf_rtcp_sender_pkt_cnt, tvb, offset, 4, tvb_get_ntohl( tvb, offset ) );
616 /* Sender's octet count, 32 bits */
617 proto_tree_add_uint( tree, hf_rtcp_sender_oct_cnt, tvb, offset, 4, tvb_get_ntohl( tvb, offset ) );
620 /* The rest of the packet is equal to the RR packet */
622 offset = dissect_rtcp_rr( tvb, offset, fd, tree, count );
628 dissect_rtcp( tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree )
630 proto_item *ti = NULL;
631 proto_tree *rtcp_tree = NULL;
632 unsigned int temp_byte = 0;
633 unsigned int padding_set = 0;
634 unsigned int elem_count = 0;
635 unsigned int packet_type = 0;
636 unsigned int offset = 0;
637 guint16 packet_length = 0;
639 CHECK_DISPLAY_AS_DATA(proto_rtcp, tvb, pinfo, tree);
641 pinfo->current_proto = "RTCP";
643 if ( check_col( pinfo->fd, COL_PROTOCOL ) ) {
644 col_set_str( pinfo->fd, COL_PROTOCOL, "RTCP" );
647 if ( check_col( pinfo->fd, COL_INFO) ) {
648 /* The second octet contains the packet type */
649 /* switch ( pd[ offset + 1 ] ) { */
650 switch ( tvb_get_guint8( tvb, 1 ) ) {
652 col_set_str( pinfo->fd, COL_INFO, "Sender Report");
655 col_set_str( pinfo->fd, COL_INFO, "Receiver Report");
658 col_set_str( pinfo->fd, COL_INFO, "Source Description");
661 col_set_str( pinfo->fd, COL_INFO, "Goodbye");
664 col_set_str( pinfo->fd, COL_INFO, "Application defined");
667 col_set_str( pinfo->fd, COL_INFO, "Full Intra-frame Request (H.261)");
670 col_set_str( pinfo->fd, COL_INFO, "Negative Acknowledgement (H.261)");
673 col_set_str( pinfo->fd, COL_INFO, "Unknown packet type");
681 * Check if there are at least 4 bytes left in the frame,
682 * the last 16 bits of those is the length of the current
683 * RTCP message. The last compound message contains padding,
684 * that enables us to break from the while loop.
686 while ( tvb_bytes_exist( tvb, offset, 4) ) {
688 * First retreive the packet_type
690 packet_type = tvb_get_guint8( tvb, offset + 1 );
693 * Check if it's a valid type
695 if ( ( packet_type < 192 ) || ( packet_type > 204 ) )
699 * get the packet-length for the complete RTCP packet
701 packet_length = ( tvb_get_ntohs( tvb, offset + 2 ) + 1 ) * 4;
703 ti = proto_tree_add_item(tree, proto_rtcp, tvb, offset, packet_length, FALSE );
704 rtcp_tree = proto_item_add_subtree( ti, ett_rtcp );
706 temp_byte = tvb_get_guint8( tvb, offset );
708 proto_tree_add_uint( rtcp_tree, hf_rtcp_version, tvb,
709 offset, 1, RTCP_VERSION( temp_byte ) );
710 padding_set = RTCP_PADDING( temp_byte );
711 proto_tree_add_boolean( rtcp_tree, hf_rtcp_padding, tvb,
712 offset, 1, padding_set );
713 elem_count = RTCP_COUNT( temp_byte );
715 switch ( packet_type ) {
718 /* Receiver report count, 5 bits */
719 proto_tree_add_uint( rtcp_tree, hf_rtcp_rc, tvb, offset, 1, elem_count );
721 /* Packet type, 8 bits */
722 proto_tree_add_item( rtcp_tree, hf_rtcp_pt, tvb, offset, 1, FALSE );
724 /* Packet length in 32 bit words MINUS one, 16 bits */
725 proto_tree_add_uint( rtcp_tree, hf_rtcp_length, tvb, offset, 2, tvb_get_ntohs( tvb, offset ) );
727 /* Sender Synchronization source, 32 bits */
728 proto_tree_add_uint( rtcp_tree, hf_rtcp_ssrc_sender, tvb, offset, 4, tvb_get_ntohl( tvb, offset ) );
731 if ( packet_type == RTCP_SR ) offset = dissect_rtcp_sr( tvb, offset, pinfo->fd, rtcp_tree, elem_count );
732 else offset = dissect_rtcp_rr( tvb, offset, pinfo->fd, rtcp_tree, elem_count );
735 /* Source count, 5 bits */
736 proto_tree_add_uint( rtcp_tree, hf_rtcp_sc, tvb, offset, 1, elem_count );
738 /* Packet type, 8 bits */
739 proto_tree_add_item( rtcp_tree, hf_rtcp_pt, tvb, offset, 1, FALSE );
741 /* Packet length in 32 bit words MINUS one, 16 bits */
742 proto_tree_add_uint( rtcp_tree, hf_rtcp_length, tvb, offset, 2, tvb_get_ntohs( tvb, offset ) );
744 offset = dissect_rtcp_sdes( tvb, offset, pinfo->fd, rtcp_tree, elem_count );
747 /* Source count, 5 bits */
748 proto_tree_add_uint( rtcp_tree, hf_rtcp_sc, tvb, offset, 1, elem_count );
750 /* Packet type, 8 bits */
751 proto_tree_add_item( rtcp_tree, hf_rtcp_pt, tvb, offset, 1, FALSE );
753 /* Packet length in 32 bit words MINUS one, 16 bits */
754 proto_tree_add_uint( rtcp_tree, hf_rtcp_length, tvb, offset, 2, tvb_get_ntohs( tvb, offset ) );
756 offset = dissect_rtcp_bye( tvb, offset, pinfo->fd, rtcp_tree, elem_count );
759 /* Subtype, 5 bits */
760 proto_tree_add_uint( rtcp_tree, hf_rtcp_subtype, tvb, offset, 1, elem_count );
762 /* Packet type, 8 bits */
763 proto_tree_add_item( rtcp_tree, hf_rtcp_pt, tvb, offset, 1, FALSE );
765 /* Packet length in 32 bit words MINUS one, 16 bits */
766 proto_tree_add_uint( rtcp_tree, hf_rtcp_length, tvb, offset, 2, tvb_get_ntohs( tvb, offset ) );
768 offset = dissect_rtcp_app( tvb, offset,
769 pinfo->fd, rtcp_tree, padding_set,
773 offset = dissect_rtcp_fir( tvb, offset, pinfo->fd, rtcp_tree );
776 offset = dissect_rtcp_nack( tvb, offset, pinfo->fd, rtcp_tree );
780 * To prevent endless loops in case of an unknown message type
781 * increase offset. Some time the while will end :-)
787 /* If the padding bit is set, the last octet of the
788 * packet contains the length of the padding
789 * We only have to check for this at the end of the LAST RTCP message
792 /* If everything went according to plan offset should now point to the
793 * first octet of the padding
795 proto_tree_add_item( rtcp_tree, hf_rtcp_padding_data, tvb, offset, tvb_length_remaining( tvb, offset) - 1, FALSE );
796 offset += tvb_length_remaining( tvb, offset) - 1;
797 proto_tree_add_item( rtcp_tree, hf_rtcp_padding_count, tvb, offset, 1, FALSE );
803 proto_register_rtcp(void)
805 static hf_register_info hf[] =
814 VALS(rtcp_version_vals),
834 "Reception report count",
862 VALS( rtcp_packet_type_vals ),
880 &hf_rtcp_ssrc_sender,
895 "rtcp.timestamp.ntp",
904 &hf_rtcp_rtp_timestamp,
907 "rtcp.timestamp.rtp",
916 &hf_rtcp_sender_pkt_cnt,
918 "Sender's packet count",
919 "rtcp.sender.packetcount",
928 &hf_rtcp_sender_oct_cnt,
930 "Sender's octet count",
931 "rtcp.sender.octetcount",
940 &hf_rtcp_ssrc_source,
943 "rtcp.ssrc.identifier",
952 &hf_rtcp_ssrc_fraction,
955 "rtcp.ssrc.fraction",
964 &hf_rtcp_ssrc_cum_nr,
966 "Cumulative number of packets lost",
976 &hf_rtcp_ssrc_ext_high_seq,
978 "Extended highest sequence number received",
979 "rtcp.ssrc.ext_high",
988 &hf_rtcp_ssrc_high_seq,
990 "Highest sequence number received",
991 "rtcp.ssrc.high_seq",
1000 &hf_rtcp_ssrc_high_cycles,
1002 "Sequence number cycles count",
1003 "rtcp.ssrc.high_cycles",
1012 &hf_rtcp_ssrc_jitter,
1014 "Interarrival jitter",
1026 "Last SR timestamp",
1038 "Delay since last SR timestamp",
1050 "SSRC / CSRC identifier",
1051 "rtcp.sdes.ssrc_csrc",
1066 VALS( rtcp_sdes_type_vals ),
1072 &hf_rtcp_ssrc_length,
1096 &hf_rtcp_ssrc_prefix_len,
1099 "rtcp.sdes.prefix.length",
1108 &hf_rtcp_ssrc_prefix_string,
1111 "rtcp.sdes.prefix.string",
1132 &hf_rtcp_name_ascii,
1146 "Application specific data",
1158 "First sequence number",
1170 "Bitmask of following lost packets",
1180 &hf_rtcp_padding_count,
1183 "rtcp.padding.count",
1192 &hf_rtcp_padding_data,
1195 "rtcp.padding.data",
1205 static gint *ett[] =
1216 proto_rtcp = proto_register_protocol("Real-time Transport Control Protocol",
1218 proto_register_field_array(proto_rtcp, hf, array_length(hf));
1219 proto_register_subtree_array(ett, array_length(ett));
1221 register_dissector("rtcp", dissect_rtcp, proto_rtcp);
1224 register_init_routine( &rtcp_init );
1229 proto_reg_handoff_rtcp(void)
1232 * Register this dissector as one that can be assigned to a
1235 conv_dissector_add("udp", dissect_rtcp, proto_rtcp);