Skip to content

Commit

Permalink
Merge branch 'net-sched-use-after-free'
Browse files Browse the repository at this point in the history
Cong Wang says:

====================
net_sched: fix a use-after-free for tc actions

This patchset fixes a use-after-free reported by Lucas
and closes potential races too.

Please see each patch for details.
====================

Signed-off-by: Cong Wang <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
davem330 committed Nov 3, 2017
2 parents 74784da + ceffcc5 commit 2f2b1ae
Show file tree
Hide file tree
Showing 18 changed files with 26 additions and 18 deletions.
6 changes: 5 additions & 1 deletion include/net/act_api.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
struct tcf_idrinfo {
spinlock_t lock;
struct idr action_idr;
struct net *net;
};

struct tc_action_ops;
Expand Down Expand Up @@ -104,14 +105,15 @@ struct tc_action_net {

static inline
int tc_action_net_init(struct tc_action_net *tn,
const struct tc_action_ops *ops)
const struct tc_action_ops *ops, struct net *net)
{
int err = 0;

tn->idrinfo = kmalloc(sizeof(*tn->idrinfo), GFP_KERNEL);
if (!tn->idrinfo)
return -ENOMEM;
tn->ops = ops;
tn->idrinfo->net = net;
spin_lock_init(&tn->idrinfo->lock);
idr_init(&tn->idrinfo->action_idr);
return err;
Expand All @@ -122,7 +124,9 @@ void tcf_idrinfo_destroy(const struct tc_action_ops *ops,

static inline void tc_action_net_exit(struct tc_action_net *tn)
{
rtnl_lock();
tcf_idrinfo_destroy(tn->ops, tn->idrinfo);
rtnl_unlock();
kfree(tn->idrinfo);
}

Expand Down
4 changes: 4 additions & 0 deletions net/sched/act_api.c
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ static void tcf_idr_remove(struct tcf_idrinfo *idrinfo, struct tc_action *p)
spin_lock_bh(&idrinfo->lock);
idr_remove_ext(&idrinfo->action_idr, p->tcfa_index);
spin_unlock_bh(&idrinfo->lock);
put_net(idrinfo->net);
gen_kill_estimator(&p->tcfa_rate_est);
free_tcf(p);
}
Expand All @@ -86,6 +87,8 @@ int __tcf_idr_release(struct tc_action *p, bool bind, bool strict)
{
int ret = 0;

ASSERT_RTNL();

if (p) {
if (bind)
p->tcfa_bindcnt--;
Expand Down Expand Up @@ -334,6 +337,7 @@ int tcf_idr_create(struct tc_action_net *tn, u32 index, struct nlattr *est,
p->idrinfo = idrinfo;
p->ops = ops;
INIT_LIST_HEAD(&p->list);
get_net(idrinfo->net);
*a = p;
return 0;
}
Expand Down
2 changes: 1 addition & 1 deletion net/sched/act_bpf.c
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ static __net_init int bpf_init_net(struct net *net)
{
struct tc_action_net *tn = net_generic(net, bpf_net_id);

return tc_action_net_init(tn, &act_bpf_ops);
return tc_action_net_init(tn, &act_bpf_ops, net);
}

static void __net_exit bpf_exit_net(struct net *net)
Expand Down
2 changes: 1 addition & 1 deletion net/sched/act_connmark.c
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ static __net_init int connmark_init_net(struct net *net)
{
struct tc_action_net *tn = net_generic(net, connmark_net_id);

return tc_action_net_init(tn, &act_connmark_ops);
return tc_action_net_init(tn, &act_connmark_ops, net);
}

static void __net_exit connmark_exit_net(struct net *net)
Expand Down
2 changes: 1 addition & 1 deletion net/sched/act_csum.c
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,7 @@ static __net_init int csum_init_net(struct net *net)
{
struct tc_action_net *tn = net_generic(net, csum_net_id);

return tc_action_net_init(tn, &act_csum_ops);
return tc_action_net_init(tn, &act_csum_ops, net);
}

static void __net_exit csum_exit_net(struct net *net)
Expand Down
2 changes: 1 addition & 1 deletion net/sched/act_gact.c
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ static __net_init int gact_init_net(struct net *net)
{
struct tc_action_net *tn = net_generic(net, gact_net_id);

return tc_action_net_init(tn, &act_gact_ops);
return tc_action_net_init(tn, &act_gact_ops, net);
}

static void __net_exit gact_exit_net(struct net *net)
Expand Down
2 changes: 1 addition & 1 deletion net/sched/act_ife.c
Original file line number Diff line number Diff line change
Expand Up @@ -818,7 +818,7 @@ static __net_init int ife_init_net(struct net *net)
{
struct tc_action_net *tn = net_generic(net, ife_net_id);

return tc_action_net_init(tn, &act_ife_ops);
return tc_action_net_init(tn, &act_ife_ops, net);
}

static void __net_exit ife_exit_net(struct net *net)
Expand Down
4 changes: 2 additions & 2 deletions net/sched/act_ipt.c
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ static __net_init int ipt_init_net(struct net *net)
{
struct tc_action_net *tn = net_generic(net, ipt_net_id);

return tc_action_net_init(tn, &act_ipt_ops);
return tc_action_net_init(tn, &act_ipt_ops, net);
}

static void __net_exit ipt_exit_net(struct net *net)
Expand Down Expand Up @@ -384,7 +384,7 @@ static __net_init int xt_init_net(struct net *net)
{
struct tc_action_net *tn = net_generic(net, xt_net_id);

return tc_action_net_init(tn, &act_xt_ops);
return tc_action_net_init(tn, &act_xt_ops, net);
}

static void __net_exit xt_exit_net(struct net *net)
Expand Down
2 changes: 1 addition & 1 deletion net/sched/act_mirred.c
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ static __net_init int mirred_init_net(struct net *net)
{
struct tc_action_net *tn = net_generic(net, mirred_net_id);

return tc_action_net_init(tn, &act_mirred_ops);
return tc_action_net_init(tn, &act_mirred_ops, net);
}

static void __net_exit mirred_exit_net(struct net *net)
Expand Down
2 changes: 1 addition & 1 deletion net/sched/act_nat.c
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ static __net_init int nat_init_net(struct net *net)
{
struct tc_action_net *tn = net_generic(net, nat_net_id);

return tc_action_net_init(tn, &act_nat_ops);
return tc_action_net_init(tn, &act_nat_ops, net);
}

static void __net_exit nat_exit_net(struct net *net)
Expand Down
2 changes: 1 addition & 1 deletion net/sched/act_pedit.c
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ static __net_init int pedit_init_net(struct net *net)
{
struct tc_action_net *tn = net_generic(net, pedit_net_id);

return tc_action_net_init(tn, &act_pedit_ops);
return tc_action_net_init(tn, &act_pedit_ops, net);
}

static void __net_exit pedit_exit_net(struct net *net)
Expand Down
2 changes: 1 addition & 1 deletion net/sched/act_police.c
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ static __net_init int police_init_net(struct net *net)
{
struct tc_action_net *tn = net_generic(net, police_net_id);

return tc_action_net_init(tn, &act_police_ops);
return tc_action_net_init(tn, &act_police_ops, net);
}

static void __net_exit police_exit_net(struct net *net)
Expand Down
2 changes: 1 addition & 1 deletion net/sched/act_sample.c
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ static __net_init int sample_init_net(struct net *net)
{
struct tc_action_net *tn = net_generic(net, sample_net_id);

return tc_action_net_init(tn, &act_sample_ops);
return tc_action_net_init(tn, &act_sample_ops, net);
}

static void __net_exit sample_exit_net(struct net *net)
Expand Down
2 changes: 1 addition & 1 deletion net/sched/act_simple.c
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ static __net_init int simp_init_net(struct net *net)
{
struct tc_action_net *tn = net_generic(net, simp_net_id);

return tc_action_net_init(tn, &act_simp_ops);
return tc_action_net_init(tn, &act_simp_ops, net);
}

static void __net_exit simp_exit_net(struct net *net)
Expand Down
2 changes: 1 addition & 1 deletion net/sched/act_skbedit.c
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ static __net_init int skbedit_init_net(struct net *net)
{
struct tc_action_net *tn = net_generic(net, skbedit_net_id);

return tc_action_net_init(tn, &act_skbedit_ops);
return tc_action_net_init(tn, &act_skbedit_ops, net);
}

static void __net_exit skbedit_exit_net(struct net *net)
Expand Down
2 changes: 1 addition & 1 deletion net/sched/act_skbmod.c
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ static __net_init int skbmod_init_net(struct net *net)
{
struct tc_action_net *tn = net_generic(net, skbmod_net_id);

return tc_action_net_init(tn, &act_skbmod_ops);
return tc_action_net_init(tn, &act_skbmod_ops, net);
}

static void __net_exit skbmod_exit_net(struct net *net)
Expand Down
2 changes: 1 addition & 1 deletion net/sched/act_tunnel_key.c
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ static __net_init int tunnel_key_init_net(struct net *net)
{
struct tc_action_net *tn = net_generic(net, tunnel_key_net_id);

return tc_action_net_init(tn, &act_tunnel_key_ops);
return tc_action_net_init(tn, &act_tunnel_key_ops, net);
}

static void __net_exit tunnel_key_exit_net(struct net *net)
Expand Down
2 changes: 1 addition & 1 deletion net/sched/act_vlan.c
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ static __net_init int vlan_init_net(struct net *net)
{
struct tc_action_net *tn = net_generic(net, vlan_net_id);

return tc_action_net_init(tn, &act_vlan_ops);
return tc_action_net_init(tn, &act_vlan_ops, net);
}

static void __net_exit vlan_exit_net(struct net *net)
Expand Down

0 comments on commit 2f2b1ae

Please sign in to comment.