[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <alpine.DEB.2.20.1907110845551.3626@hadrien>
Date: Thu, 11 Jul 2019 08:46:56 +0200 (CEST)
From: Julia Lawall <julia.lawall@...6.fr>
To: wen.yang99@....com.cn
cc: Markus.Elfring@....de, rjw@...ysocki.net,
daniel.lezcano@...aro.org, linux-pm@...r.kernel.org,
kernel-janitors@...r.kernel.org, benh@...nel.crashing.org,
cheng.shengyu@....com.cn, galak@...nel.crashing.org,
mpe@...erman.id.au, paulus@...ba.org, oss@...error.net,
xue.zhihong@....com.cn, wang.yi59@....com.cn,
linux-kernel@...r.kernel.org, linuxppc-dev@...ts.ozlabs.org
Subject: Re: Coccinelle: Checking of_node_put() calls with SmPL
On Thu, 11 Jul 2019, wen.yang99@....com.cn wrote:
> > > we developed a coccinelle script to detect such problems.
> >
> > Would you find the implementation of the function “dt_init_idle_driver”
> > suspicious according to discussed source code search patterns?
> > https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/drivers/cpuidle/dt_idle_states.c?id=e9a83bd2322035ed9d7dcf35753d3f984d76c6a5#n208
> > https://elixir.bootlin.com/linux/v5.2/source/drivers/cpuidle/dt_idle_states.c#L208
> >
> >
> > > This script is still being improved.
> >
> > Will corresponding software development challenges become more interesting?
>
> Hello Markus,
> This is the simplified code pattern for it:
>
> 172 for (i = 0; ; i++) {
> 173 state_node = of_parse_phandle(...); ---> Obtain here
> ...
> 177 match_id = of_match_node(matches, state_node);
> 178 if (!match_id) {
> 179 err = -ENODEV;
> 180 break; ---> Jump out of the loop without releasing it
> 181 }
> 182
> 183 if (!of_device_is_available(state_node)) {
> 184 of_node_put(state_node);
> 185 continue; ---> Release the object references within a loop
> 186 }
> ...
> 208 of_node_put(state_node); --> Release the object references within a loop
> 209 }
> 210
> 211 of_node_put(state_node); --> There may be double free here.
>
> This code pattern is very interesting and the coccinelle software should also recognize this pattern.
In my experience, when you start looking at these of_node_put things, all
sorts of strange things appear...
julia
Powered by blists - more mailing lists