Page MenuHomeFreeBSD

Require uint32_t alignment for ipfw_insn
ClosedPublic

Authored by arichardson on Jan 1 2021, 1:41 PM.
Tags
None
Referenced Files
F167384016: D27879.id81469.diff
Fri, Aug 21, 11:56 AM
Unknown Object (File)
Thu, Aug 20, 5:07 PM
Unknown Object (File)
Thu, Aug 20, 2:35 PM
Unknown Object (File)
Wed, Aug 19, 8:38 PM
Unknown Object (File)
Wed, Aug 19, 8:36 PM
Unknown Object (File)
Wed, Aug 19, 5:24 PM
Unknown Object (File)
Tue, Aug 18, 8:02 PM
Unknown Object (File)
Wed, Aug 12, 6:55 PM
Subscribers

Details

Summary

There are many casts of this struct to uint32_t, so we also need to ensure
that it is sufficiently aligned to safely perform this cast on architectures
that don't allow unaligned accesses. This fixes lots of -Wcast-align warnings.

Test Plan

fixes lots of compiler warnings

Diff Detail

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

Event Timeline

sys/netinet/ip_fw.h
342

This could be _Alignas(uint32_t) with C11, but if we fall back to attribute((aligned)), we need an integer and can't use a type name.

This revision is now accepted and ready to land.Jan 19 2021, 10:24 AM

I have some doubts, that this change is safe. But probably we will see the result quickly.

This revision was automatically updated to reflect the committed changes.