Page MenuHomeFreeBSD

tip: Fix pointer-vs-integer confusion
ClosedPublic

Authored by jrtc27 on Jun 8 2021, 3:07 PM.
Tags
None
Referenced Files
Unknown Object (File)
Thu, Apr 25, 8:52 AM
Unknown Object (File)
Thu, Apr 18, 3:38 PM
Unknown Object (File)
Feb 20 2024, 11:19 PM
Unknown Object (File)
Jan 18 2024, 10:16 PM
Unknown Object (File)
Jan 14 2024, 4:55 AM
Unknown Object (File)
Jan 3 2024, 3:09 PM
Unknown Object (File)
Dec 23 2023, 3:30 AM
Unknown Object (File)
Nov 28 2023, 7:47 AM
Subscribers
None

Details

Summary

Currently IREMOTE assumes that every value is (initially) a pointer to a
long. This is true for NUMBERs, but false for STRINGs, which are instead
pointers to pointers, though on ILP32 and LP64 systems these happen to
have the same representation, but this is still a strict aliasing
violation, and of course breaks on systems where the representations are
not the same, such as CHERI. We do not currently have any BOOLs (short,
curiously) or CHARs used with IREMOTE, though the code should not be
relying on that.

This removes the unused setaddress macro, and the now-unused address
macro due to the above issue.

Obtained from: CheriBSD

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable