diff options
author | James Morris <jmorris@namei.org> | 2006-10-30 15:08:42 -0800 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-10-30 15:24:42 -0800 |
commit | bcd620757d3a4ae78ef0ca41adb5d9e400ed92b6 (patch) | |
tree | 35267772a114c8e450bf167076d5cef1c1e81e75 /net | |
parent | a27b58fed90cc5654e2daf1d292cc5bc61be4dd7 (diff) | |
download | linux-3.10-bcd620757d3a4ae78ef0ca41adb5d9e400ed92b6.tar.gz linux-3.10-bcd620757d3a4ae78ef0ca41adb5d9e400ed92b6.tar.bz2 linux-3.10-bcd620757d3a4ae78ef0ca41adb5d9e400ed92b6.zip |
[IPV6]: fix lockup via /proc/net/ip6_flowlabel
There's a bug in the seqfile handling for /proc/net/ip6_flowlabel, where,
after finding a flowlabel, the code will loop forever not finding any
further flowlabels, first traversing the rest of the hash bucket then just
looping.
This patch fixes the problem by breaking after the hash bucket has been
traversed.
Note that this bug can cause lockups and oopses, and is trivially invoked
by an unpriveleged user.
Signed-off-by: James Morris <jmorris@namei.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/ipv6/ip6_flowlabel.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/ipv6/ip6_flowlabel.c b/net/ipv6/ip6_flowlabel.c index 1d672b0547f..062e526a668 100644 --- a/net/ipv6/ip6_flowlabel.c +++ b/net/ipv6/ip6_flowlabel.c @@ -587,6 +587,8 @@ static struct ip6_flowlabel *ip6fl_get_next(struct seq_file *seq, struct ip6_flo while (!fl) { if (++state->bucket <= FL_HASH_MASK) fl = fl_ht[state->bucket]; + else + break; } return fl; } |