Page MenuHomeFreeBSD

Potential integer overflowing expression
ClosedPublic

Authored by bret_ketchum_dell.com on Aug 21 2020, 11:37 AM.
Tags
None
Referenced Files
F148330218: D26141.diff
Tue, Mar 17, 5:12 AM
Unknown Object (File)
Sun, Mar 15, 5:04 PM
Unknown Object (File)
Sat, Mar 14, 1:23 AM
Unknown Object (File)
Tue, Mar 10, 4:23 AM
Unknown Object (File)
Thu, Feb 26, 3:15 PM
Unknown Object (File)
Thu, Feb 26, 12:15 AM
Unknown Object (File)
Tue, Feb 17, 1:30 AM
Unknown Object (File)
Feb 1 2026, 2:32 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