Skip to content

Commit

Permalink
inet: frag: enforce memory limits earlier
Browse files Browse the repository at this point in the history
We currently check current frags memory usage only when
a new frag queue is created. This allows attackers to first
consume the memory budget (default : 4 MB) creating thousands
of frag queues, then sending tiny skbs to exceed high_thresh
limit by 2 to 3 order of magnitude.

Note that before commit 648700f ("inet: frags: use rhashtables
for reassembly units"), work queue could be starved under DOS,
getting no cpu cycles.
After commit 648700f, only the per frag queue timer can eventually
remove an incomplete frag queue and its skbs.

Fixes: b13d3cb ("inet: frag: move eviction of queues to work queue")
Signed-off-by: Eric Dumazet <edumazet@google.com>
Reported-by: Jann Horn <jannh@google.com>
Cc: Florian Westphal <fw@strlen.de>
Cc: Peter Oskolkov <posk@google.com>
Cc: Paolo Abeni <pabeni@redhat.com>
Acked-by: Florian Westphal <fw@strlen.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Eric Dumazet authored and David S. Miller committed Jul 31, 2018
1 parent e39eb59 commit 56e2c94
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions net/ipv4/inet_fragment.c
Original file line number Diff line number Diff line change
Expand Up @@ -157,9 +157,6 @@ static struct inet_frag_queue *inet_frag_alloc(struct netns_frags *nf,
{
struct inet_frag_queue *q;

if (!nf->high_thresh || frag_mem_limit(nf) > nf->high_thresh)
return NULL;

q = kmem_cache_zalloc(f->frags_cachep, GFP_ATOMIC);
if (!q)
return NULL;
Expand Down Expand Up @@ -204,6 +201,9 @@ struct inet_frag_queue *inet_frag_find(struct netns_frags *nf, void *key)
{
struct inet_frag_queue *fq;

if (!nf->high_thresh || frag_mem_limit(nf) > nf->high_thresh)
return NULL;

rcu_read_lock();

fq = rhashtable_lookup(&nf->rhashtable, key, nf->f->rhash_params);
Expand Down

0 comments on commit 56e2c94

Please sign in to comment.