summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesse Gross <jesse@nicira.com>2012-03-23 13:14:51 -0700
committerBen Pfaff <blp@nicira.com>2012-10-25 12:36:00 -0700
commit2a393645ab89a6d4bfeeac30c05ab42af37c4467 (patch)
tree07ffe3ed0fa5800b86c6e9f13a723303dceb1b60
parentd2e120a872a7d39b280137c16476ecc3230d4154 (diff)
downloadopenvswitch-2a393645ab89a6d4bfeeac30c05ab42af37c4467.tar.gz
flow: Add length check when retrieving TCP flags.
When collecting TCP flags we check that the IP header indicates that a TCP header is present but not that the packet is actually long enough to contain the header. This adds a check to prevent reading off the end of the packet. In practice, this is only likely to result in reading of bad data and not a crash due to the presence of struct skb_shared_info at the end of the packet. This is a crossport of commit 9c47b45a3bb56009bf2553c493d097eeadd7e5c2 from master. Signed-off-by: Jesse Gross <jesse@nicira.com> Acked-by: Pravin B Shelar <pshelar@nicira.com>
-rw-r--r--datapath/flow.c3
-rw-r--r--lib/dpif-netdev.c3
2 files changed, 4 insertions, 2 deletions
diff --git a/datapath/flow.c b/datapath/flow.c
index c6f591afe..06df0f666 100644
--- a/datapath/flow.c
+++ b/datapath/flow.c
@@ -239,7 +239,8 @@ void ovs_flow_used(struct sw_flow *flow, struct sk_buff *skb)
u8 tcp_flags = 0;
if (flow->key.eth.type == htons(ETH_P_IP) &&
- flow->key.ip.proto == IPPROTO_TCP) {
+ flow->key.ip.proto == IPPROTO_TCP &&
+ likely(skb->len >= skb_transport_offset(skb) + sizeof(struct tcphdr))) {
u8 *tcp = (u8 *)tcp_hdr(skb);
tcp_flags = *(tcp + TCP_FLAGS_OFFSET) & TCP_FLAG_MASK;
}
diff --git a/lib/dpif-netdev.c b/lib/dpif-netdev.c
index 67b518964..0f93f9697 100644
--- a/lib/dpif-netdev.c
+++ b/lib/dpif-netdev.c
@@ -987,7 +987,8 @@ dp_netdev_flow_used(struct dp_netdev_flow *flow, struct flow *key,
flow->used = time_msec();
flow->packet_count++;
flow->byte_count += packet->size;
- if (key->dl_type == htons(ETH_TYPE_IP) && key->nw_proto == IPPROTO_TCP) {
+ if (key->dl_type == htons(ETH_TYPE_IP) &&
+ key->nw_proto == IPPROTO_TCP && packet->l7) {
struct tcp_header *th = packet->l4;
flow->tcp_ctl |= th->tcp_ctl;
}