Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1370225 > unrolled thread
| Started by | Haishuang Yan <yanhaishuang@cmss.chinamobile.com> |
|---|---|
| First post | 2016-04-03 16:10 +0200 |
| Last post | 2016-04-04 22:10 +0200 |
| Articles | 4 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH 1/2] ipv4: l2tp: fix a potential issue in l2tp_ip_recv Haishuang Yan <yanhaishuang@cmss.chinamobile.com> - 2016-04-03 16:10 +0200
[PATCH 2/2] ipv6: l2tp: fix a potential issue in l2tp_ip6_recv Haishuang Yan <yanhaishuang@cmss.chinamobile.com> - 2016-04-03 16:10 +0200
Re: [PATCH 2/2] ipv6: l2tp: fix a potential issue in l2tp_ip6_recv David Miller <davem@davemloft.net> - 2016-04-04 22:10 +0200
Re: [PATCH 1/2] ipv4: l2tp: fix a potential issue in l2tp_ip_recv David Miller <davem@davemloft.net> - 2016-04-04 22:10 +0200
| From | Haishuang Yan <yanhaishuang@cmss.chinamobile.com> |
|---|---|
| Date | 2016-04-03 16:10 +0200 |
| Subject | [PATCH 1/2] ipv4: l2tp: fix a potential issue in l2tp_ip_recv |
| Message-ID | <rjQT0-4uF-1@gated-at.bofh.it> |
pskb_may_pull() can change skb->data, so we have to load ptr/optr at the
right place.
Signed-off-by: Haishuang Yan <yanhaishuang@cmss.chinamobile.com>
---
net/l2tp/l2tp_ip.c | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/net/l2tp/l2tp_ip.c b/net/l2tp/l2tp_ip.c
index ec22078..42de4cc 100644
--- a/net/l2tp/l2tp_ip.c
+++ b/net/l2tp/l2tp_ip.c
@@ -123,12 +123,11 @@ static int l2tp_ip_recv(struct sk_buff *skb)
struct l2tp_tunnel *tunnel = NULL;
int length;
- /* Point to L2TP header */
- optr = ptr = skb->data;
-
if (!pskb_may_pull(skb, 4))
goto discard;
+ /* Point to L2TP header */
+ optr = ptr = skb->data;
session_id = ntohl(*((__be32 *) ptr));
ptr += 4;
@@ -156,6 +155,9 @@ static int l2tp_ip_recv(struct sk_buff *skb)
if (!pskb_may_pull(skb, length))
goto discard;
+ /* Point to L2TP header */
+ optr = ptr = skb->data;
+ ptr += 4;
pr_debug("%s: ip recv\n", tunnel->name);
print_hex_dump_bytes("", DUMP_PREFIX_OFFSET, ptr, length);
}
--
1.8.3.1
[toc] | [next] | [standalone]
| From | Haishuang Yan <yanhaishuang@cmss.chinamobile.com> |
|---|---|
| Date | 2016-04-03 16:10 +0200 |
| Subject | [PATCH 2/2] ipv6: l2tp: fix a potential issue in l2tp_ip6_recv |
| Message-ID | <rjQT0-4uF-15@gated-at.bofh.it> |
| In reply to | #1370225 |
pskb_may_pull() can change skb->data, so we have to load ptr/optr at the
right place.
Signed-off-by: Haishuang Yan <yanhaishuang@cmss.chinamobile.com>
---
net/l2tp/l2tp_ip6.c | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/net/l2tp/l2tp_ip6.c b/net/l2tp/l2tp_ip6.c
index 6b54ff3..cd47990 100644
--- a/net/l2tp/l2tp_ip6.c
+++ b/net/l2tp/l2tp_ip6.c
@@ -136,12 +136,11 @@ static int l2tp_ip6_recv(struct sk_buff *skb)
struct l2tp_tunnel *tunnel = NULL;
int length;
- /* Point to L2TP header */
- optr = ptr = skb->data;
-
if (!pskb_may_pull(skb, 4))
goto discard;
+ /* Point to L2TP header */
+ optr = ptr = skb->data;
session_id = ntohl(*((__be32 *) ptr));
ptr += 4;
@@ -169,6 +168,9 @@ static int l2tp_ip6_recv(struct sk_buff *skb)
if (!pskb_may_pull(skb, length))
goto discard;
+ /* Point to L2TP header */
+ optr = ptr = skb->data;
+ ptr += 4;
pr_debug("%s: ip recv\n", tunnel->name);
print_hex_dump_bytes("", DUMP_PREFIX_OFFSET, ptr, length);
}
--
1.8.3.1
[toc] | [prev] | [next] | [standalone]
| From | David Miller <davem@davemloft.net> |
|---|---|
| Date | 2016-04-04 22:10 +0200 |
| Subject | Re: [PATCH 2/2] ipv6: l2tp: fix a potential issue in l2tp_ip6_recv |
| Message-ID | <rkiYV-5L-7@gated-at.bofh.it> |
| In reply to | #1370227 |
From: Haishuang Yan <yanhaishuang@cmss.chinamobile.com> Date: Sun, 3 Apr 2016 22:09:24 +0800 > pskb_may_pull() can change skb->data, so we have to load ptr/optr at the > right place. > > Signed-off-by: Haishuang Yan <yanhaishuang@cmss.chinamobile.com> Applied and queued up for -stable.
[toc] | [prev] | [next] | [standalone]
| From | David Miller <davem@davemloft.net> |
|---|---|
| Date | 2016-04-04 22:10 +0200 |
| Message-ID | <rkiYW-5L-23@gated-at.bofh.it> |
| In reply to | #1370225 |
From: Haishuang Yan <yanhaishuang@cmss.chinamobile.com> Date: Sun, 3 Apr 2016 22:09:23 +0800 > pskb_may_pull() can change skb->data, so we have to load ptr/optr at the > right place. > > Signed-off-by: Haishuang Yan <yanhaishuang@cmss.chinamobile.com> Applied and queued up for -stable.
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web