Page MenuHomeFreeBSD

Potential integer overflowing expression
ClosedPublic

Authored by bret_ketchum_dell.com on Aug 21 2020, 11:37 AM.
Tags
None
Referenced Files
F157128125: D26141.diff
Mon, May 18, 3:28 PM
Unknown Object (File)
Thu, Apr 30, 8:43 AM
Unknown Object (File)
Thu, Apr 30, 8:43 AM
Unknown Object (File)
Thu, Apr 30, 8:42 AM
Unknown Object (File)
Wed, Apr 29, 11:02 PM
Unknown Object (File)
Tue, Apr 28, 1:59 AM
Unknown Object (File)
Mon, Apr 27, 7:07 PM
Unknown Object (File)
Sat, Apr 25, 6:41 AM
Subscribers

Details

Summary

Coverity has identified the line in this change as "Potential integer overflowing expression" due to the variable i declared as an int and used in an expression with vm_paddr_t, a 64bit variable.

This change has very little effect as when this line is execute nkpt is small and phys_addr is a the beginning of physical memory. But there is no explicit protection that the above is true.

Test Plan

A kernel with this change boots reliably.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

markj added inline comments.
sys/amd64/amd64/pmap.c
2114 ↗(On Diff #76053)

Per style(9) there should be no space in (vm_paddr_t)i.

This revision is now accepted and ready to land.Aug 21 2020, 1:56 PM