* ipqueue allocation failure. @ 2011-04-20 1:42 Dave Jones 2011-04-20 3:41 ` David Miller 2011-04-21 15:13 ` ipqueue allocation failure Patrick McHardy 0 siblings, 2 replies; 12+ messages in thread From: Dave Jones @ 2011-04-20 1:42 UTC (permalink / raw) To: netdev Not catastrophic, but ipqueue seems to be too trusting of what it gets passed from userspace, and passes it on down to the page allocator, where it will spew warnings if the page order is too high. __ipq_rcv_skb has several checks for lengths too small, but doesn't seem to have any for oversized ones. I'm not sure what the maximum we should check for is. I'll code up a diff if anyone has any ideas on a sane maximum. Dave ------------[ cut here ]------------ WARNING: at mm/page_alloc.c:2032 __alloc_pages_nodemask+0x17d/0x7e6() Hardware name: GA-MA78GM-S2H Modules linked in: rfcomm hidp can_raw can_bcm sctp libcrc32c ip_queue decnet pppoe pppox ppp_generic slhc can ipx p8022 p8023 phonet bluetooth rfkill a] Pid: 20393, comm: trinity Not tainted 2.6.39-rc4+ #6 Call Trace: [<ffffffff81056a9c>] warn_slowpath_common+0x83/0x9b [<ffffffff81056ace>] warn_slowpath_null+0x1a/0x1c [<ffffffff810ed743>] __alloc_pages_nodemask+0x17d/0x7e6 [<ffffffff811206c9>] ? check_object+0x174/0x1ae [<ffffffff81120a43>] ? check_slab+0xc7/0xd5 [<ffffffff813f42fe>] ? __alloc_skb+0x40/0x133 [<ffffffff813f42fe>] ? __alloc_skb+0x40/0x133 [<ffffffff814b7487>] kmalloc_large_node+0x56/0x95 [<ffffffff811235c1>] __kmalloc_node_track_caller+0x32/0x139 [<ffffffff81421b68>] ? netlink_ack+0x4a/0xe8 [<ffffffffa0500475>] ? ipq_rcv_skb+0x27/0x340 [ip_queue] [<ffffffff813f4333>] __alloc_skb+0x75/0x133 [<ffffffff81421b68>] netlink_ack+0x4a/0xe8 [<ffffffffa050076a>] ipq_rcv_skb+0x31c/0x340 [ip_queue] [<ffffffff8142174a>] netlink_unicast+0xec/0x156 [<ffffffff81421a33>] netlink_sendmsg+0x27f/0x2c0 [<ffffffff813ed76c>] __sock_sendmsg+0x69/0x75 [<ffffffff813ed834>] sock_aio_write+0xbc/0xcc [<ffffffff8113242b>] do_sync_write+0xbf/0xff [<ffffffff81206e18>] ? security_file_permission+0x2e/0x33 [<ffffffff81132861>] ? rw_verify_area+0xb6/0xd3 [<ffffffff81132b02>] vfs_write+0xb6/0xf6 [<ffffffff8113400b>] ? fget_light+0x3a/0xa1 [<ffffffff81132cf6>] sys_write+0x4d/0x74 [<ffffffff814c5d82>] system_call_fastpath+0x16/0x1b ---[ end trace cd56dc75cfeab436 ]--- ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: ipqueue allocation failure. 2011-04-20 1:42 ipqueue allocation failure Dave Jones @ 2011-04-20 3:41 ` David Miller 2011-04-20 5:27 ` Eric Dumazet 2011-05-28 0:36 ` [PATCH] Use unsigned variables for packet lengths in ip[6]_queue Dave Jones 2011-04-21 15:13 ` ipqueue allocation failure Patrick McHardy 1 sibling, 2 replies; 12+ messages in thread From: David Miller @ 2011-04-20 3:41 UTC (permalink / raw) To: davej; +Cc: netdev From: Dave Jones <davej@redhat.com> Date: Tue, 19 Apr 2011 21:42:22 -0400 > Not catastrophic, but ipqueue seems to be too trusting of what it gets > passed from userspace, and passes it on down to the page allocator, > where it will spew warnings if the page order is too high. > > __ipq_rcv_skb has several checks for lengths too small, but doesn't > seem to have any for oversized ones. I'm not sure what the maximum > we should check for is. I'll code up a diff if anyone has any ideas > on a sane maximum. Maybe the thing to do is to simply pass __GFP_NOWARN to nlmsg_new() in netlink_ack()? Anyone else have a better idea? ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: ipqueue allocation failure. 2011-04-20 3:41 ` David Miller @ 2011-04-20 5:27 ` Eric Dumazet 2011-05-28 0:36 ` [PATCH] Use unsigned variables for packet lengths in ip[6]_queue Dave Jones 1 sibling, 0 replies; 12+ messages in thread From: Eric Dumazet @ 2011-04-20 5:27 UTC (permalink / raw) To: David Miller; +Cc: davej, netdev Le mardi 19 avril 2011 à 20:41 -0700, David Miller a écrit : > From: Dave Jones <davej@redhat.com> > Date: Tue, 19 Apr 2011 21:42:22 -0400 > > > Not catastrophic, but ipqueue seems to be too trusting of what it gets > > passed from userspace, and passes it on down to the page allocator, > > where it will spew warnings if the page order is too high. > > > > __ipq_rcv_skb has several checks for lengths too small, but doesn't > > seem to have any for oversized ones. I'm not sure what the maximum > > we should check for is. I'll code up a diff if anyone has any ideas > > on a sane maximum. > > Maybe the thing to do is to simply pass __GFP_NOWARN to nlmsg_new() > in netlink_ack()? > > Anyone else have a better idea? > -- It should be fine, since we already checked sk->sk_sndbuf in netlink_sendmsg() if (len > sk->sk_sndbuf - 32) goto out; Maybe the 32 magic value is too small to take into account struct nlmsgerr that is prepended in netlink_ack() Hmm, no, sizeof(struct nlmsgerr) is 20 ^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH] Use unsigned variables for packet lengths in ip[6]_queue. 2011-04-20 3:41 ` David Miller 2011-04-20 5:27 ` Eric Dumazet @ 2011-05-28 0:36 ` Dave Jones 2011-06-02 19:24 ` Dave Jones ` (2 more replies) 1 sibling, 3 replies; 12+ messages in thread From: Dave Jones @ 2011-05-28 0:36 UTC (permalink / raw) To: David Miller; +Cc: netdev On Tue, Apr 19, 2011 at 08:41:05PM -0700, David Miller wrote: > From: Dave Jones <davej@redhat.com> > Date: Tue, 19 Apr 2011 21:42:22 -0400 > > > Not catastrophic, but ipqueue seems to be too trusting of what it gets > > passed from userspace, and passes it on down to the page allocator, > > where it will spew warnings if the page order is too high. > > > > __ipq_rcv_skb has several checks for lengths too small, but doesn't > > seem to have any for oversized ones. I'm not sure what the maximum > > we should check for is. I'll code up a diff if anyone has any ideas > > on a sane maximum. > > Maybe the thing to do is to simply pass __GFP_NOWARN to nlmsg_new() > in netlink_ack()? > > Anyone else have a better idea? So I went back to this today, and found something that doesn't look right. After adding some instrumentation, and re-running my tests, I found that the reason we were blowing up with enormous allocations was that we were passing down a nlmsglen's like -1061109568 Is there any reason for that to be signed ? The nlmsg_len entry of nlmsghdr is a u32, so I'm assuming this is a bug. With the patch below, I haven't been able to reproduce the problem, but I don't know if I've inadvertantly broken some other behaviour somewhere deeper in netlink where this is valid. Dave -- Netlink message lengths can't be negative, so use unsigned variables. Signed-off-by: Dave Jones <davej@redhat.com> diff --git a/net/ipv4/netfilter/ip_queue.c b/net/ipv4/netfilter/ip_queue.c index d2c1311..f7f9bd7 100644 --- a/net/ipv4/netfilter/ip_queue.c +++ b/net/ipv4/netfilter/ip_queue.c @@ -402,7 +402,8 @@ ipq_dev_drop(int ifindex) static inline void __ipq_rcv_skb(struct sk_buff *skb) { - int status, type, pid, flags, nlmsglen, skblen; + int status, type, pid, flags; + unsigned int nlmsglen, skblen; struct nlmsghdr *nlh; skblen = skb->len; diff --git a/net/ipv6/netfilter/ip6_queue.c b/net/ipv6/netfilter/ip6_queue.c index 413ab07..065fe40 100644 --- a/net/ipv6/netfilter/ip6_queue.c +++ b/net/ipv6/netfilter/ip6_queue.c @@ -403,7 +403,8 @@ ipq_dev_drop(int ifindex) static inline void __ipq_rcv_skb(struct sk_buff *skb) { - int status, type, pid, flags, nlmsglen, skblen; + int status, type, pid, flags; + unsigned int nlmsglen, skblen; struct nlmsghdr *nlh; skblen = skb->len; ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH] Use unsigned variables for packet lengths in ip[6]_queue. 2011-05-28 0:36 ` [PATCH] Use unsigned variables for packet lengths in ip[6]_queue Dave Jones @ 2011-06-02 19:24 ` Dave Jones 2011-06-02 20:57 ` David Miller 2011-06-03 10:07 ` Pablo Neira Ayuso 2 siblings, 0 replies; 12+ messages in thread From: Dave Jones @ 2011-06-02 19:24 UTC (permalink / raw) To: netdev On Fri, May 27, 2011 at 08:36:51PM -0400, Dave Jones wrote: > > > Not catastrophic, but ipqueue seems to be too trusting of what it gets > > > passed from userspace, and passes it on down to the page allocator, > > > where it will spew warnings if the page order is too high. > > > > > > __ipq_rcv_skb has several checks for lengths too small, but doesn't > > > seem to have any for oversized ones. I'm not sure what the maximum > > > we should check for is. I'll code up a diff if anyone has any ideas > > > on a sane maximum. > > > > Maybe the thing to do is to simply pass __GFP_NOWARN to nlmsg_new() > > in netlink_ack()? > > > > Anyone else have a better idea? > > So I went back to this today, and found something that doesn't look right. > After adding some instrumentation, and re-running my tests, I found that > the reason we were blowing up with enormous allocations was that we > were passing down a nlmsglen's like -1061109568 > > Is there any reason for that to be signed ? > The nlmsg_len entry of nlmsghdr is a u32, so I'm assuming this is a bug. > > With the patch below, I haven't been able to reproduce the problem, but > I don't know if I've inadvertantly broken some other behaviour somewhere > deeper in netlink where this is valid. any feedback on this ? am I barking up the wrong tree ? Dave ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH] Use unsigned variables for packet lengths in ip[6]_queue. 2011-05-28 0:36 ` [PATCH] Use unsigned variables for packet lengths in ip[6]_queue Dave Jones 2011-06-02 19:24 ` Dave Jones @ 2011-06-02 20:57 ` David Miller 2011-06-07 12:59 ` Patrick McHardy 2011-06-03 10:07 ` Pablo Neira Ayuso 2 siblings, 1 reply; 12+ messages in thread From: David Miller @ 2011-06-02 20:57 UTC (permalink / raw) To: davej; +Cc: netdev, netfilter-devel, pablo, kaber From: Dave Jones <davej@redhat.com> Date: Fri, 27 May 2011 20:36:51 -0400 > On Tue, Apr 19, 2011 at 08:41:05PM -0700, David Miller wrote: > > From: Dave Jones <davej@redhat.com> > > Date: Tue, 19 Apr 2011 21:42:22 -0400 > > > > > Not catastrophic, but ipqueue seems to be too trusting of what it gets > > > passed from userspace, and passes it on down to the page allocator, > > > where it will spew warnings if the page order is too high. > > > > > > __ipq_rcv_skb has several checks for lengths too small, but doesn't > > > seem to have any for oversized ones. I'm not sure what the maximum > > > we should check for is. I'll code up a diff if anyone has any ideas > > > on a sane maximum. > > > > Maybe the thing to do is to simply pass __GFP_NOWARN to nlmsg_new() > > in netlink_ack()? > > > > Anyone else have a better idea? > > So I went back to this today, and found something that doesn't look right. > After adding some instrumentation, and re-running my tests, I found that > the reason we were blowing up with enormous allocations was that we > were passing down a nlmsglen's like -1061109568 > > Is there any reason for that to be signed ? > The nlmsg_len entry of nlmsghdr is a u32, so I'm assuming this is a bug. > > With the patch below, I haven't been able to reproduce the problem, but > I don't know if I've inadvertantly broken some other behaviour somewhere > deeper in netlink where this is valid. netfilter-devel and maintainers CC:'d > -- > > Netlink message lengths can't be negative, so use unsigned variables. > > Signed-off-by: Dave Jones <davej@redhat.com> > > diff --git a/net/ipv4/netfilter/ip_queue.c b/net/ipv4/netfilter/ip_queue.c > index d2c1311..f7f9bd7 100644 > --- a/net/ipv4/netfilter/ip_queue.c > +++ b/net/ipv4/netfilter/ip_queue.c > @@ -402,7 +402,8 @@ ipq_dev_drop(int ifindex) > static inline void > __ipq_rcv_skb(struct sk_buff *skb) > { > - int status, type, pid, flags, nlmsglen, skblen; > + int status, type, pid, flags; > + unsigned int nlmsglen, skblen; > struct nlmsghdr *nlh; > > skblen = skb->len; > diff --git a/net/ipv6/netfilter/ip6_queue.c b/net/ipv6/netfilter/ip6_queue.c > index 413ab07..065fe40 100644 > --- a/net/ipv6/netfilter/ip6_queue.c > +++ b/net/ipv6/netfilter/ip6_queue.c > @@ -403,7 +403,8 @@ ipq_dev_drop(int ifindex) > static inline void > __ipq_rcv_skb(struct sk_buff *skb) > { > - int status, type, pid, flags, nlmsglen, skblen; > + int status, type, pid, flags; > + unsigned int nlmsglen, skblen; > struct nlmsghdr *nlh; > > skblen = skb->len; ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH] Use unsigned variables for packet lengths in ip[6]_queue. 2011-06-02 20:57 ` David Miller @ 2011-06-07 12:59 ` Patrick McHardy 2011-06-07 14:19 ` Patrick McHardy 0 siblings, 1 reply; 12+ messages in thread From: Patrick McHardy @ 2011-06-07 12:59 UTC (permalink / raw) To: David Miller; +Cc: davej, netdev, netfilter-devel, pablo [-- Attachment #1: Type: text/plain, Size: 2230 bytes --] On 02.06.2011 22:57, David Miller wrote: > From: Dave Jones <davej@redhat.com> > Date: Fri, 27 May 2011 20:36:51 -0400 > >> On Tue, Apr 19, 2011 at 08:41:05PM -0700, David Miller wrote: >> > From: Dave Jones <davej@redhat.com> >> > Date: Tue, 19 Apr 2011 21:42:22 -0400 >> > >> > > Not catastrophic, but ipqueue seems to be too trusting of what it gets >> > > passed from userspace, and passes it on down to the page allocator, >> > > where it will spew warnings if the page order is too high. >> > > >> > > __ipq_rcv_skb has several checks for lengths too small, but doesn't >> > > seem to have any for oversized ones. I'm not sure what the maximum >> > > we should check for is. I'll code up a diff if anyone has any ideas >> > > on a sane maximum. >> > >> > Maybe the thing to do is to simply pass __GFP_NOWARN to nlmsg_new() >> > in netlink_ack()? >> > >> > Anyone else have a better idea? >> >> So I went back to this today, and found something that doesn't look right. >> After adding some instrumentation, and re-running my tests, I found that >> the reason we were blowing up with enormous allocations was that we >> were passing down a nlmsglen's like -1061109568 >> >> Is there any reason for that to be signed ? >> The nlmsg_len entry of nlmsghdr is a u32, so I'm assuming this is a bug. >> >> With the patch below, I haven't been able to reproduce the problem, but >> I don't know if I've inadvertantly broken some other behaviour somewhere >> deeper in netlink where this is valid. This is fine, but I'm wondering whether this can really fix the problem you've been seeing. Before the packet is reallocated, the length of nlmsglen - NLMSGLEN(0) - sizeof(struct ipq_peer_msg) is compared to ipq_peer_msg->data_len, so both values need to be wrong. ipq_peer_msg->data_len is a size_t, so it's unsigned. I think what we should additionally do is verify that data_len < 65535 since that's the maximum size of an IP packet. Using __GFP_NOWARN also makes sense in my opinion since ip_queue prints a warning anyways and we return an errno code to userspace. On second thought, we could also simply use GFP_KERNEL, AFAICS packet reinjection does not happen in atomic context. I'll give that a try. [-- Attachment #2: x --] [-- Type: text/plain, Size: 920 bytes --] diff --git a/net/ipv4/netfilter/ip_queue.c b/net/ipv4/netfilter/ip_queue.c index f7f9bd7..8ded42d 100644 --- a/net/ipv4/netfilter/ip_queue.c +++ b/net/ipv4/netfilter/ip_queue.c @@ -279,6 +279,9 @@ ipq_mangle_ipv4(ipq_verdict_msg_t *v, struct nf_queue_entry *e) if (v->data_len < sizeof(*user_iph)) return 0; + if (v->data_len > 65535) + return -EMSGSIZE; + diff = v->data_len - e->skb->len; if (diff < 0) { if (pskb_trim(e->skb, v->data_len)) diff --git a/net/ipv6/netfilter/ip6_queue.c b/net/ipv6/netfilter/ip6_queue.c index 065fe40..4ea6a9d 100644 --- a/net/ipv6/netfilter/ip6_queue.c +++ b/net/ipv6/netfilter/ip6_queue.c @@ -279,6 +279,9 @@ ipq_mangle_ipv6(ipq_verdict_msg_t *v, struct nf_queue_entry *e) if (v->data_len < sizeof(*user_iph)) return 0; + if (v->data_len > 65535) + return -EMSGSIZE; + diff = v->data_len - e->skb->len; if (diff < 0) { if (pskb_trim(e->skb, v->data_len)) ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH] Use unsigned variables for packet lengths in ip[6]_queue. 2011-06-07 12:59 ` Patrick McHardy @ 2011-06-07 14:19 ` Patrick McHardy 2011-06-07 14:39 ` Dave Jones 0 siblings, 1 reply; 12+ messages in thread From: Patrick McHardy @ 2011-06-07 14:19 UTC (permalink / raw) To: davej; +Cc: David Miller, netdev, netfilter-devel, pablo On 07.06.2011 14:59, Patrick McHardy wrote: > On 02.06.2011 22:57, David Miller wrote: >> From: Dave Jones <davej@redhat.com> >> Date: Fri, 27 May 2011 20:36:51 -0400 >> >>> So I went back to this today, and found something that doesn't look right. >>> After adding some instrumentation, and re-running my tests, I found that >>> the reason we were blowing up with enormous allocations was that we >>> were passing down a nlmsglen's like -1061109568 >>> >>> Is there any reason for that to be signed ? >>> The nlmsg_len entry of nlmsghdr is a u32, so I'm assuming this is a bug. >>> >>> With the patch below, I haven't been able to reproduce the problem, but >>> I don't know if I've inadvertantly broken some other behaviour somewhere >>> deeper in netlink where this is valid. > > This is fine, but I'm wondering whether this can really fix the problem > you've been seeing. Before the packet is reallocated, the length of > nlmsglen - NLMSGLEN(0) - sizeof(struct ipq_peer_msg) is compared to > ipq_peer_msg->data_len, so both values need to be wrong. > ipq_peer_msg->data_len is a size_t, so it's unsigned. > > I think what we should additionally do is verify that data_len < 65535 > since that's the maximum size of an IP packet. We're actually already doing this. This makes it even more strange that you're seeing this problem. Could you send me your testcase? ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH] Use unsigned variables for packet lengths in ip[6]_queue. 2011-06-07 14:19 ` Patrick McHardy @ 2011-06-07 14:39 ` Dave Jones 2011-06-07 15:19 ` Patrick McHardy 0 siblings, 1 reply; 12+ messages in thread From: Dave Jones @ 2011-06-07 14:39 UTC (permalink / raw) To: Patrick McHardy; +Cc: David Miller, netdev, netfilter-devel, pablo On Tue, Jun 07, 2011 at 04:19:08PM +0200, Patrick McHardy wrote: > >>> With the patch below, I haven't been able to reproduce the problem, but > >>> I don't know if I've inadvertantly broken some other behaviour somewhere > >>> deeper in netlink where this is valid. > > > > This is fine, but I'm wondering whether this can really fix the problem > > you've been seeing. Before the packet is reallocated, the length of > > nlmsglen - NLMSGLEN(0) - sizeof(struct ipq_peer_msg) is compared to > > ipq_peer_msg->data_len, so both values need to be wrong. > > ipq_peer_msg->data_len is a size_t, so it's unsigned. > > > > I think what we should additionally do is verify that data_len < 65535 > > since that's the maximum size of an IP packet. > > We're actually already doing this. This makes it even more strange that > you're seeing this problem. Could you send me your testcase? I don't have a standalone test-case, just a generic fuzzing tool that passes sockets to various syscalls. You can clone it from git://git.codemonkey.org.uk/trinity.git/ (the test-random.sh should explain how to use it) Dave. ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH] Use unsigned variables for packet lengths in ip[6]_queue. 2011-06-07 14:39 ` Dave Jones @ 2011-06-07 15:19 ` Patrick McHardy 0 siblings, 0 replies; 12+ messages in thread From: Patrick McHardy @ 2011-06-07 15:19 UTC (permalink / raw) To: Dave Jones; +Cc: David Miller, netdev, netfilter-devel, pablo On 07.06.2011 16:39, Dave Jones wrote: > On Tue, Jun 07, 2011 at 04:19:08PM +0200, Patrick McHardy wrote: > > > >>> With the patch below, I haven't been able to reproduce the problem, but > > >>> I don't know if I've inadvertantly broken some other behaviour somewhere > > >>> deeper in netlink where this is valid. > > > > > > This is fine, but I'm wondering whether this can really fix the problem > > > you've been seeing. Before the packet is reallocated, the length of > > > nlmsglen - NLMSGLEN(0) - sizeof(struct ipq_peer_msg) is compared to > > > ipq_peer_msg->data_len, so both values need to be wrong. > > > ipq_peer_msg->data_len is a size_t, so it's unsigned. > > > > > > I think what we should additionally do is verify that data_len < 65535 > > > since that's the maximum size of an IP packet. > > > > We're actually already doing this. This makes it even more strange that > > you're seeing this problem. Could you send me your testcase? > > I don't have a standalone test-case, just a generic fuzzing tool that passes > sockets to various syscalls. You can clone it from git://git.codemonkey.org.uk/trinity.git/ > (the test-random.sh should explain how to use it) Thanks, that explains the weird values. Still wondering how it managed to get passed the ipq_peer_msg length check. Anyways, I'll give it a try myself. ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH] Use unsigned variables for packet lengths in ip[6]_queue. 2011-05-28 0:36 ` [PATCH] Use unsigned variables for packet lengths in ip[6]_queue Dave Jones 2011-06-02 19:24 ` Dave Jones 2011-06-02 20:57 ` David Miller @ 2011-06-03 10:07 ` Pablo Neira Ayuso 2 siblings, 0 replies; 12+ messages in thread From: Pablo Neira Ayuso @ 2011-06-03 10:07 UTC (permalink / raw) To: Dave Jones; +Cc: David Miller, netdev, Netfilter Development Mailinglist On 28/05/11 02:36, Dave Jones wrote: > On Tue, Apr 19, 2011 at 08:41:05PM -0700, David Miller wrote: > > From: Dave Jones <davej@redhat.com> > > Date: Tue, 19 Apr 2011 21:42:22 -0400 > > > > > Not catastrophic, but ipqueue seems to be too trusting of what it gets > > > passed from userspace, and passes it on down to the page allocator, > > > where it will spew warnings if the page order is too high. > > > > > > __ipq_rcv_skb has several checks for lengths too small, but doesn't > > > seem to have any for oversized ones. I'm not sure what the maximum > > > we should check for is. I'll code up a diff if anyone has any ideas > > > on a sane maximum. > > > > Maybe the thing to do is to simply pass __GFP_NOWARN to nlmsg_new() > > in netlink_ack()? > > > > Anyone else have a better idea? > > So I went back to this today, and found something that doesn't look right. > After adding some instrumentation, and re-running my tests, I found that > the reason we were blowing up with enormous allocations was that we > were passing down a nlmsglen's like -1061109568 > > Is there any reason for that to be signed ? > The nlmsg_len entry of nlmsghdr is a u32, so I'm assuming this is a bug. > > With the patch below, I haven't been able to reproduce the problem, but > I don't know if I've inadvertantly broken some other behaviour somewhere > deeper in netlink where this is valid. I have applied this. Thanks. BTW, ip[6]_queue has been marked obsoleted since long time, probably we can schedule this for removal anytime soon. The nfnetlink_queue successor has been there to provide a replacement for this since long time. ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: ipqueue allocation failure. 2011-04-20 1:42 ipqueue allocation failure Dave Jones 2011-04-20 3:41 ` David Miller @ 2011-04-21 15:13 ` Patrick McHardy 1 sibling, 0 replies; 12+ messages in thread From: Patrick McHardy @ 2011-04-21 15:13 UTC (permalink / raw) To: Dave Jones; +Cc: netdev Am 20.04.2011 03:42, schrieb Dave Jones: > Not catastrophic, but ipqueue seems to be too trusting of what it gets > passed from userspace, and passes it on down to the page allocator, > where it will spew warnings if the page order is too high. > > __ipq_rcv_skb has several checks for lengths too small, but doesn't > seem to have any for oversized ones. I'm not sure what the maximum > we should check for is. I'll code up a diff if anyone has any ideas > on a sane maximum. A sane maximum seems to be 2^16 - 1, the maximum size of an IPv4 packet. Please also update ip6queue and nfnetlink_queue. ^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2011-06-07 15:19 UTC | newest] Thread overview: 12+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2011-04-20 1:42 ipqueue allocation failure Dave Jones 2011-04-20 3:41 ` David Miller 2011-04-20 5:27 ` Eric Dumazet 2011-05-28 0:36 ` [PATCH] Use unsigned variables for packet lengths in ip[6]_queue Dave Jones 2011-06-02 19:24 ` Dave Jones 2011-06-02 20:57 ` David Miller 2011-06-07 12:59 ` Patrick McHardy 2011-06-07 14:19 ` Patrick McHardy 2011-06-07 14:39 ` Dave Jones 2011-06-07 15:19 ` Patrick McHardy 2011-06-03 10:07 ` Pablo Neira Ayuso 2011-04-21 15:13 ` ipqueue allocation failure Patrick McHardy
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).