Page MenuHomeFreeBSD

Fix memory corruption while configuring CPU windows on Marvell SoCs
ClosedPublic

Authored by mw_semihalf.com on May 14 2017, 12:58 AM.
Tags
Referenced Files
Unknown Object (File)
Mon, Nov 18, 7:00 AM
Unknown Object (File)
Tue, Nov 12, 12:40 AM
Unknown Object (File)
Tue, Nov 12, 12:22 AM
Unknown Object (File)
Tue, Oct 29, 9:34 PM
Unknown Object (File)
Oct 6 2024, 9:41 AM
Unknown Object (File)
Oct 2 2024, 12:25 PM
Unknown Object (File)
Oct 1 2024, 8:32 AM
Unknown Object (File)
Sep 30 2024, 9:27 PM

Details

Summary

Resolving CPU windows from localbus entry caused buffer overflow
and memory corruption. Fix wrong indexing and ensure the index
does not exceed table size.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Skipped
Unit
Tests Skipped

Event Timeline

I think it is easier to use nitems() here.

sys/arm/mv/mv_common.c
2158

if (tuples > nitems(cpu_win_tbl)) {

2196

if (t >= nitems(cpu_win_tbl)) {

Switched to nitems, thanks for the suggestion.

This revision was automatically updated to reflect the committed changes.