Commit fb278072 authored by Victor Nogueira's avatar Victor Nogueira Committed by David S. Miller

net: sched: Move drop_reason to struct tc_skb_cb

Move drop_reason from struct tcf_result to skb cb - more specifically to
struct tc_skb_cb. With that, we'll be able to also set the drop reason for
the remaining qdiscs (aside from clsact) that do not have access to
tcf_result when time comes to set the skb drop reason.
Signed-off-by: default avatarVictor Nogueira <victor@mojatatu.com>
Acked-by: default avatarDaniel Borkmann <daniel@iogearbox.net>
Reviewed-by: default avatarSimon Horman <horms@kernel.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 18764b88
...@@ -154,10 +154,20 @@ __cls_set_class(unsigned long *clp, unsigned long cl) ...@@ -154,10 +154,20 @@ __cls_set_class(unsigned long *clp, unsigned long cl)
return xchg(clp, cl); return xchg(clp, cl);
} }
static inline void tcf_set_drop_reason(struct tcf_result *res, struct tc_skb_cb;
static inline struct tc_skb_cb *tc_skb_cb(const struct sk_buff *skb);
static inline enum skb_drop_reason
tcf_get_drop_reason(const struct sk_buff *skb)
{
return tc_skb_cb(skb)->drop_reason;
}
static inline void tcf_set_drop_reason(const struct sk_buff *skb,
enum skb_drop_reason reason) enum skb_drop_reason reason)
{ {
res->drop_reason = reason; tc_skb_cb(skb)->drop_reason = reason;
} }
static inline void static inline void
......
...@@ -277,12 +277,13 @@ static inline void skb_txtime_consumed(struct sk_buff *skb) ...@@ -277,12 +277,13 @@ static inline void skb_txtime_consumed(struct sk_buff *skb)
struct tc_skb_cb { struct tc_skb_cb {
struct qdisc_skb_cb qdisc_cb; struct qdisc_skb_cb qdisc_cb;
u32 drop_reason;
u16 zone; /* Only valid if post_ct = true */
u16 mru; u16 mru;
u8 post_ct:1; u8 post_ct:1;
u8 post_ct_snat:1; u8 post_ct_snat:1;
u8 post_ct_dnat:1; u8 post_ct_dnat:1;
u16 zone; /* Only valid if post_ct = true */
}; };
static inline struct tc_skb_cb *tc_skb_cb(const struct sk_buff *skb) static inline struct tc_skb_cb *tc_skb_cb(const struct sk_buff *skb)
......
...@@ -332,7 +332,6 @@ struct tcf_result { ...@@ -332,7 +332,6 @@ struct tcf_result {
}; };
const struct tcf_proto *goto_tp; const struct tcf_proto *goto_tp;
}; };
enum skb_drop_reason drop_reason;
}; };
struct tcf_chain; struct tcf_chain;
......
...@@ -3923,14 +3923,14 @@ static int tc_run(struct tcx_entry *entry, struct sk_buff *skb, ...@@ -3923,14 +3923,14 @@ static int tc_run(struct tcx_entry *entry, struct sk_buff *skb,
tc_skb_cb(skb)->mru = 0; tc_skb_cb(skb)->mru = 0;
tc_skb_cb(skb)->post_ct = false; tc_skb_cb(skb)->post_ct = false;
res.drop_reason = *drop_reason; tcf_set_drop_reason(skb, *drop_reason);
mini_qdisc_bstats_cpu_update(miniq, skb); mini_qdisc_bstats_cpu_update(miniq, skb);
ret = tcf_classify(skb, miniq->block, miniq->filter_list, &res, false); ret = tcf_classify(skb, miniq->block, miniq->filter_list, &res, false);
/* Only tcf related quirks below. */ /* Only tcf related quirks below. */
switch (ret) { switch (ret) {
case TC_ACT_SHOT: case TC_ACT_SHOT:
*drop_reason = res.drop_reason; *drop_reason = tcf_get_drop_reason(skb);
mini_qdisc_qstats_cpu_drop(miniq); mini_qdisc_qstats_cpu_drop(miniq);
break; break;
case TC_ACT_OK: case TC_ACT_OK:
......
...@@ -1119,7 +1119,7 @@ int tcf_action_exec(struct sk_buff *skb, struct tc_action **actions, ...@@ -1119,7 +1119,7 @@ int tcf_action_exec(struct sk_buff *skb, struct tc_action **actions,
} }
} else if (TC_ACT_EXT_CMP(ret, TC_ACT_GOTO_CHAIN)) { } else if (TC_ACT_EXT_CMP(ret, TC_ACT_GOTO_CHAIN)) {
if (unlikely(!rcu_access_pointer(a->goto_chain))) { if (unlikely(!rcu_access_pointer(a->goto_chain))) {
tcf_set_drop_reason(res, SKB_DROP_REASON_TC_ERROR); tcf_set_drop_reason(skb, SKB_DROP_REASON_TC_ERROR);
return TC_ACT_SHOT; return TC_ACT_SHOT;
} }
tcf_action_goto_chain_exec(a, res); tcf_action_goto_chain_exec(a, res);
......
...@@ -1657,7 +1657,6 @@ static inline int __tcf_classify(struct sk_buff *skb, ...@@ -1657,7 +1657,6 @@ static inline int __tcf_classify(struct sk_buff *skb,
int act_index, int act_index,
u32 *last_executed_chain) u32 *last_executed_chain)
{ {
u32 orig_reason = res->drop_reason;
#ifdef CONFIG_NET_CLS_ACT #ifdef CONFIG_NET_CLS_ACT
const int max_reclassify_loop = 16; const int max_reclassify_loop = 16;
const struct tcf_proto *first_tp; const struct tcf_proto *first_tp;
...@@ -1682,13 +1681,13 @@ static inline int __tcf_classify(struct sk_buff *skb, ...@@ -1682,13 +1681,13 @@ static inline int __tcf_classify(struct sk_buff *skb,
*/ */
if (unlikely(n->tp != tp || n->tp->chain != n->chain || if (unlikely(n->tp != tp || n->tp->chain != n->chain ||
!tp->ops->get_exts)) { !tp->ops->get_exts)) {
tcf_set_drop_reason(res, SKB_DROP_REASON_TC_ERROR); tcf_set_drop_reason(skb, SKB_DROP_REASON_TC_ERROR);
return TC_ACT_SHOT; return TC_ACT_SHOT;
} }
exts = tp->ops->get_exts(tp, n->handle); exts = tp->ops->get_exts(tp, n->handle);
if (unlikely(!exts || n->exts != exts)) { if (unlikely(!exts || n->exts != exts)) {
tcf_set_drop_reason(res, SKB_DROP_REASON_TC_ERROR); tcf_set_drop_reason(skb, SKB_DROP_REASON_TC_ERROR);
return TC_ACT_SHOT; return TC_ACT_SHOT;
} }
...@@ -1712,18 +1711,12 @@ static inline int __tcf_classify(struct sk_buff *skb, ...@@ -1712,18 +1711,12 @@ static inline int __tcf_classify(struct sk_buff *skb,
goto reset; goto reset;
} }
#endif #endif
if (err >= 0) { if (err >= 0)
/* Policy drop or drop reason is over-written by
* classifiers with a bogus value(0) */
if (err == TC_ACT_SHOT &&
res->drop_reason == SKB_NOT_DROPPED_YET)
tcf_set_drop_reason(res, orig_reason);
return err; return err;
}
} }
if (unlikely(n)) { if (unlikely(n)) {
tcf_set_drop_reason(res, SKB_DROP_REASON_TC_ERROR); tcf_set_drop_reason(skb, SKB_DROP_REASON_TC_ERROR);
return TC_ACT_SHOT; return TC_ACT_SHOT;
} }
...@@ -1735,7 +1728,7 @@ static inline int __tcf_classify(struct sk_buff *skb, ...@@ -1735,7 +1728,7 @@ static inline int __tcf_classify(struct sk_buff *skb,
tp->chain->block->index, tp->chain->block->index,
tp->prio & 0xffff, tp->prio & 0xffff,
ntohs(tp->protocol)); ntohs(tp->protocol));
tcf_set_drop_reason(res, SKB_DROP_REASON_TC_ERROR); tcf_set_drop_reason(skb, SKB_DROP_REASON_TC_ERROR);
return TC_ACT_SHOT; return TC_ACT_SHOT;
} }
...@@ -1773,7 +1766,7 @@ int tcf_classify(struct sk_buff *skb, ...@@ -1773,7 +1766,7 @@ int tcf_classify(struct sk_buff *skb,
n = tcf_exts_miss_cookie_lookup(ext->act_miss_cookie, n = tcf_exts_miss_cookie_lookup(ext->act_miss_cookie,
&act_index); &act_index);
if (!n) { if (!n) {
tcf_set_drop_reason(res, SKB_DROP_REASON_TC_ERROR); tcf_set_drop_reason(skb, SKB_DROP_REASON_TC_ERROR);
return TC_ACT_SHOT; return TC_ACT_SHOT;
} }
...@@ -1784,7 +1777,7 @@ int tcf_classify(struct sk_buff *skb, ...@@ -1784,7 +1777,7 @@ int tcf_classify(struct sk_buff *skb,
fchain = tcf_chain_lookup_rcu(block, chain); fchain = tcf_chain_lookup_rcu(block, chain);
if (!fchain) { if (!fchain) {
tcf_set_drop_reason(res, SKB_DROP_REASON_TC_ERROR); tcf_set_drop_reason(skb, SKB_DROP_REASON_TC_ERROR);
return TC_ACT_SHOT; return TC_ACT_SHOT;
} }
...@@ -1806,7 +1799,7 @@ int tcf_classify(struct sk_buff *skb, ...@@ -1806,7 +1799,7 @@ int tcf_classify(struct sk_buff *skb,
ext = tc_skb_ext_alloc(skb); ext = tc_skb_ext_alloc(skb);
if (WARN_ON_ONCE(!ext)) { if (WARN_ON_ONCE(!ext)) {
tcf_set_drop_reason(res, SKB_DROP_REASON_TC_ERROR); tcf_set_drop_reason(skb, SKB_DROP_REASON_TC_ERROR);
return TC_ACT_SHOT; return TC_ACT_SHOT;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment