Thread (5 messages) flat view 5 messages, 3 authors, 2016-08-08

RE: [5.3] ucc_geth: Fix to avoid IS_ERR_VALUE abuses and dead code on 64bit systems.

From: David Laight <hidden>
Date: 2016-08-08 15:51:22
Also in: linux-wireless, netdev

From: Arnd Bergmann
Sent: 08 August 2016 16:13
=20
On Monday, August 8, 2016 2:49:11 PM CEST David Laight wrote:
quoted
quoted
If qe_muram_alloc will return any error, Then IS_ERR_VALUE will alway=
s
quoted
quoted
return 0. it'll not call ucc_fast_free for any failure. Inside 'if co=
de'
quoted
quoted
will be a dead code on 64bit. Even qe_muram_addr will return wrong
virtual address. Which can cause an error.

 kfree((void *)ugeth->tx_bd_ring_offset[i]);
Erm, kfree() isn't the right function for things allocated by qe_muram_=
alloc().
quoted
I still thing you need to stop this code using IS_ERR_VALUE() at all.
=20
Those are two separate issues:
=20
a) The ucc_geth driver mixing kmalloc() memory with muram, and assigning
   the result to "u32" and "void __iomem *" variables, both of which
   are wrong at least half of the time.
=20
b) calling conventions of qe_muram_alloc() being defined in a way that
   requires the use of IS_ERR_VALUE(), because '0' is a valid address
   here.
Yep, it is all a big bag of worms...
'0' being valid is going to make tidying up after failure 'problematic'.
The first one can be solved by updating the network driver, ideally
by getting rid of the casts and using proper types and accessors,
while the second would require updating all users of that interface.
It might be worth (at least as a compilation option) of embedding the
'muram offset' in a structure (passed and returned by value).

The compiler can then check that the driver code is never be looking
directly at the value.

For 'b' zero can be made invalid by changing the places where the
offset is added/subtracted.
It could even be used to offset the saved physical and virtual
addresses of the area - so not needing any extra code when the values
are converted to physical/virtual addresses.

	David
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help