diff options
author | Eric Dumazet <eric.dumazet@gmail.com> | 2012-01-04 06:23:01 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-01-04 14:12:48 -0500 |
commit | 02a9098ede0dc7e28c16a03fa7fba86a05219478 (patch) | |
tree | 689df90e53168b72b8f2f418853830747bba8e90 /net/sched | |
parent | bd16a6cce2a7f169b559abc5672fd2c66e91fb36 (diff) | |
download | linux-3.10-02a9098ede0dc7e28c16a03fa7fba86a05219478.tar.gz linux-3.10-02a9098ede0dc7e28c16a03fa7fba86a05219478.tar.bz2 linux-3.10-02a9098ede0dc7e28c16a03fa7fba86a05219478.zip |
net_sched: sfq: always randomize hash perturbation
SFQ q->perturbation is used in sfq_hash() as an input to Jenkins hash.
We currently randomize this 32bit value only if a perturbation timer is
setup.
Its much better to always initialize it to defeat attackers, or else
they can predict very well what kind of packets they have to forge to
hit a particular flow.
Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched')
-rw-r--r-- | net/sched/sch_sfq.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/net/sched/sch_sfq.c b/net/sched/sch_sfq.c index 16feb88503a..843018154a5 100644 --- a/net/sched/sch_sfq.c +++ b/net/sched/sch_sfq.c @@ -591,12 +591,12 @@ static int sfq_init(struct Qdisc *sch, struct nlattr *opt) q->cur_depth = 0; q->tail = NULL; q->divisor = SFQ_DEFAULT_HASH_DIVISOR; - if (opt == NULL) { - q->quantum = psched_mtu(qdisc_dev(sch)); - q->scaled_quantum = SFQ_ALLOT_SIZE(q->quantum); - q->perturb_period = 0; - q->perturbation = net_random(); - } else { + q->quantum = psched_mtu(qdisc_dev(sch)); + q->scaled_quantum = SFQ_ALLOT_SIZE(q->quantum); + q->perturb_period = 0; + q->perturbation = net_random(); + + if (opt) { int err = sfq_change(sch, opt); if (err) return err; |