aboutsummaryrefslogtreecommitdiffstats
path: root/packet-rsvp.c
diff options
context:
space:
mode:
authorgerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2002-06-02 23:55:11 +0000
committergerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2002-06-02 23:55:11 +0000
commit3f47d534cfb339577e73ccd97af6d68e5ec27325 (patch)
tree9fccc7d19dee57715669b6a1a5d675a78562f55a /packet-rsvp.c
parent599cc5fd9613d0215c2aff224e6def7949821c06 (diff)
Require that the LMP and RSVP message types be greater than 0.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@5612 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-rsvp.c')
-rw-r--r--packet-rsvp.c13
1 files changed, 10 insertions, 3 deletions
diff --git a/packet-rsvp.c b/packet-rsvp.c
index 2e5514f79a..5f6a8ed61c 100644
--- a/packet-rsvp.c
+++ b/packet-rsvp.c
@@ -3,7 +3,7 @@
*
* (c) Copyright Ashok Narayanan <ashokn@cisco.com>
*
- * $Id: packet-rsvp.c,v 1.65 2002/05/30 08:34:18 guy Exp $
+ * $Id: packet-rsvp.c,v 1.66 2002/06/02 23:55:11 gerald Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -74,6 +74,7 @@
#include "packet-rsvp.h"
#include "packet-ip.h"
+#include "packet-frame.h"
static int proto_rsvp = -1;
@@ -3590,12 +3591,18 @@ dissect_rsvp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
ver_flags & 0xf);
proto_tree_add_uint(rsvp_header_tree, rsvp_filter[RSVPF_MSG], tvb,
offset+1, 1, message_type);
- if (message_type <= RSVPF_RTEARCONFIRM &&
+ if (RSVPF_MSG + message_type <= RSVPF_RTEARCONFIRM &&
message_type != RSVPF_JUNK_MSG8 &&
- message_type != RSVPF_JUNK_MSG9 ) {
+ message_type != RSVPF_JUNK_MSG9 &&
+ message_type > 0) {
proto_tree_add_boolean_hidden(rsvp_header_tree, rsvp_filter[RSVPF_MSG + message_type], tvb,
offset+1, 1, 1);
+ } else {
+ proto_tree_add_protocol_format(rsvp_header_tree, proto_malformed, tvb, offset+1, 1,
+ "Invalid message type: %u", message_type);
+ return;
}
+
cksum = tvb_get_ntohs(tvb, offset+2);
if (!pinfo->fragmented && (int) tvb_length(tvb) >= msg_length) {
/* The packet isn't part of a fragmented datagram and isn't