diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-06-08 21:54:52 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-06-08 21:54:52 +0000 |
commit | 2be8f3e875aa6f9f32837904e0f6252bf86c0298 (patch) | |
tree | f913a56fe5ed2c9b52e7323513f1c3597cb2e1bf /packet-sctp.c | |
parent | 9920d2c2578b8ff6bca57cc72b4971a02c0605f0 (diff) | |
download | wireshark-2be8f3e875aa6f9f32837904e0f6252bf86c0298.tar.gz wireshark-2be8f3e875aa6f9f32837904e0f6252bf86c0298.tar.bz2 wireshark-2be8f3e875aa6f9f32837904e0f6252bf86c0298.zip |
When looking for dissectors for the source and destination port numbers
in TCP, UDP, and SCTP, try the lower port number first, and then the
higher port number; this means that, for packets where a dissector is
registered for *both* port numbers:
1) we pick the same dissector for traffic going in both directions;
2) we prefer the port number that's more likely to be the right
one (as that prefers well-known ports to reserved ports);
although there is, of course, no guarantee that any such strategy will
always pick the right port number.
Ignore port numbers of 0, as some dissectors use a port number of 0 to
disable the port, and as RFC 768 says that the source port in UDP
datagrams is optional and is 0 if not used.
svn path=/trunk/; revision=5656
Diffstat (limited to 'packet-sctp.c')
-rw-r--r-- | packet-sctp.c | 61 |
1 files changed, 44 insertions, 17 deletions
diff --git a/packet-sctp.c b/packet-sctp.c index 47536178b0..1587dd937e 100644 --- a/packet-sctp.c +++ b/packet-sctp.c @@ -10,7 +10,7 @@ * - support for reassembly * - code cleanup * - * $Id: packet-sctp.c,v 1.37 2002/05/30 08:34:18 guy Exp $ + * $Id: packet-sctp.c,v 1.38 2002/06/08 21:54:52 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -1317,24 +1317,51 @@ static gboolean dissect_payload(tvbuff_t *payload_tvb, packet_info *pinfo, proto_tree *tree, proto_tree *chunk_tree, guint32 ppi, guint16 payload_length, guint16 padding_length) { - /* do lookup with the subdissector table */ - if (dissector_try_port (sctp_ppi_dissector_table, ppi, payload_tvb, pinfo, tree) || - dissector_try_port(sctp_port_dissector_table, pinfo->srcport, payload_tvb, pinfo, tree) || - dissector_try_port(sctp_port_dissector_table, pinfo->destport, payload_tvb, pinfo, tree)){ + guint32 low_port, high_port; + + /* Do lookups with the subdissector table. + + When trying port numbers, we try the port number with the lower value + first, followed by the port number with the higher value. This means + that, for packets where a dissector is registered for *both* port + numbers, and where there's no match on the PPI: + + 1) we pick the same dissector for traffic going in both directions; + + 2) we prefer the port number that's more likely to be the right + one (as that prefers well-known ports to reserved ports); + + although there is, of course, no guarantee that any such strategy + will always pick the right port number. + + XXX - we ignore port numbers of 0, as some dissectors use a port + number of 0 to disable the port. */ + if (dissector_try_port(sctp_ppi_dissector_table, ppi, payload_tvb, pinfo, tree)) return TRUE; + if (pinfo->srcport > pinfo->destport) { + low_port = pinfo->destport; + high_port = pinfo->srcport; + } else { + low_port = pinfo->srcport; + high_port = pinfo->destport; } - else { - if (check_col(pinfo->cinfo, COL_INFO)) - col_append_str(pinfo->cinfo, COL_INFO, "DATA "); - proto_tree_add_text(chunk_tree, payload_tvb, 0, payload_length, - "Payload (%u byte%s)", - payload_length, plurality(payload_length, "", "s")); - if (padding_length > 0) - proto_tree_add_text(chunk_tree, payload_tvb, payload_length, padding_length, - "Padding: %u byte%s", - padding_length, plurality(padding_length, "", "s")); - return FALSE; - } + if (low_port != 0 && + dissector_try_port(sctp_port_dissector_table, low_port, payload_tvb, pinfo, tree)) + return TRUE; + if (high_port != 0 && + dissector_try_port(sctp_port_dissector_table, high_port, payload_tvb, pinfo, tree)) + return TRUE; + + if (check_col(pinfo->cinfo, COL_INFO)) + col_append_str(pinfo->cinfo, COL_INFO, "DATA "); + proto_tree_add_text(chunk_tree, payload_tvb, 0, payload_length, + "Payload (%u byte%s)", + payload_length, plurality(payload_length, "", "s")); + if (padding_length > 0) + proto_tree_add_text(chunk_tree, payload_tvb, payload_length, padding_length, + "Padding: %u byte%s", + padding_length, plurality(padding_length, "", "s")); + return FALSE; } static gboolean |