Page MenuHomeFreeBSD

Potential integer overflowing expression
ClosedPublic

Authored by bret_ketchum_dell.com on Aug 21 2020, 11:37 AM.
Tags
None
Referenced Files
Unknown Object (File)
Wed, May 1, 6:36 AM
Unknown Object (File)
Wed, May 1, 6:36 AM
Unknown Object (File)
Wed, May 1, 6:12 AM
Unknown Object (File)
Wed, May 1, 12:51 AM
Unknown Object (File)
Sat, Apr 27, 2:38 AM
Unknown Object (File)
Thu, Apr 25, 8:26 AM
Unknown Object (File)
Fri, Apr 19, 3:43 AM
Unknown Object (File)
Feb 12 2024, 5:07 PM
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