From: Wolfgang Bumiller <w.bumiller@proxmox.com>
To: netdev@vger.kernel.org
Cc: linux-kernel@vger.kernel.org, Jamal Hadi Salim <jhs@mojatatu.com>,
"David S. Miller" <davem@davemloft.net>
Subject: [PATCH linux 2/2] net sched actions: fix refcount decrement on error
Date: Wed, 12 Apr 2017 16:21:40 +0200 [thread overview]
Message-ID: <20170412142140.26649-3-w.bumiller@proxmox.com> (raw)
In-Reply-To: <20170412142140.26649-1-w.bumiller@proxmox.com>
If memory allocation for nla_memdup_cookie() fails
module_put has to be guarded by the same condition as it was
before the TCA_ACT_COOKIE has been added as stated in the
comment afterwards:
/* module count goes up only when brand new policy is created
* if it exists and is only bound to in a_o->init() then
* ACT_P_CREATED is not returned (a zero is).
*/
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
---
Note that I'm unsure about this patch. The hangups weren't very reliable
and I couldn't actually reproduce them when building from git/master (as
I can only test a fraction of my usual workload with it as a lot of my
data (VMs & containers utilizing veths and tap devices) is on ZFS...).
In any case it can't harm to take another look at the error handling
here.
net/sched/act_api.c | 12 ++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)
diff --git a/net/sched/act_api.c b/net/sched/act_api.c
index 8cc883c063f0..795ac092b723 100644
--- a/net/sched/act_api.c
+++ b/net/sched/act_api.c
@@ -608,15 +608,19 @@ struct tc_action *tcf_action_init_1(struct net *net, struct nlattr *nla,
int cklen = nla_len(tb[TCA_ACT_COOKIE]);
if (cklen > TC_COOKIE_MAX_SIZE) {
- err = -EINVAL;
tcf_hash_release(a, bind);
- goto err_mod;
+ if (err != ACT_P_CREATED)
+ module_put(a_o->owner);
+ err = -EINVAL;
+ goto err_out;
}
if (nla_memdup_cookie(a, tb) < 0) {
- err = -ENOMEM;
tcf_hash_release(a, bind);
- goto err_mod;
+ if (err != ACT_P_CREATED)
+ module_put(a_o->owner);
+ err = -ENOMEM;
+ goto err_out;
}
}
--
2.11.0
next prev parent reply other threads:[~2017-04-12 14:21 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-04-12 14:21 [RFC PATCH linux 0/2] net sched actions: access to uninitialized data and error handling Wolfgang Bumiller
2017-04-12 14:21 ` [PATCH linux 1/2] net sched actions: fix access to uninitialized data Wolfgang Bumiller
2017-04-12 14:21 ` Wolfgang Bumiller [this message]
2017-04-13 4:27 ` [PATCH linux 2/2] net sched actions: fix refcount decrement on error Cong Wang
2017-04-13 8:06 ` Wolfgang Bumiller
2017-04-13 18:03 ` Cong Wang
2017-04-14 9:08 ` Wolfgang Bumiller
2017-04-15 18:20 ` Cong Wang
2017-04-15 18:48 ` Wolfgang Bumiller
2017-04-16 14:30 ` Jamal Hadi Salim
2017-04-17 18:10 ` Cong Wang
2017-04-13 13:39 ` Roman Mashak
2017-04-13 1:22 ` [RFC PATCH linux 0/2] net sched actions: access to uninitialized data and error handling Cong Wang
2017-04-15 14:12 ` Jamal Hadi Salim
2017-04-15 16:51 ` Jamal Hadi Salim
2017-04-17 14:59 ` David Miller
2017-04-17 16:41 ` Jamal Hadi Salim
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20170412142140.26649-3-w.bumiller@proxmox.com \
--to=w.bumiller@proxmox.com \
--cc=davem@davemloft.net \
--cc=jhs@mojatatu.com \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).