Page MenuHomeFreeBSD

sys: protect the kernel build from accidental _FORTIFY_SOURCE
ClosedPublic

Authored by kevans on Apr 11 2025, 3:33 AM.
Tags
None
Referenced Files
Unknown Object (File)
Wed, Sep 16, 8:37 PM
Unknown Object (File)
Wed, Sep 16, 3:49 PM
Unknown Object (File)
Wed, Sep 16, 8:50 AM
Unknown Object (File)
Fri, Sep 11, 11:19 PM
Unknown Object (File)
Sat, Aug 29, 5:33 PM
Unknown Object (File)
Fri, Aug 28, 1:50 PM
Unknown Object (File)
Aug 12 2026, 8:10 PM
Unknown Object (File)
Aug 10 2026, 9:23 AM

Details

Summary

Fortification is a userland feature, thus the flag makes no sense in a
kernel context at the moment. Move the relevant includes that aren't
already in a !_KERNEL block under a !_KERNEL condition to avoid breaking
kernel/kmod builds that are catching a stray -D_FORTIFY_SOURCE in their
CFLAGS.

PR: 286010

Diff Detail

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

Event Timeline

markj added inline comments.
sys/sys/poll.h
112 ↗(On Diff #153493)

We're already in a ifndef _KERNEL block here.

This revision is now accepted and ready to land.Apr 11 2025, 1:33 PM
sys/sys/poll.h
112 ↗(On Diff #153493)

Whoops, missed that; will remove, thanks.

imp added inline comments.
sys/sys/poll.h
112 ↗(On Diff #153493)

my approval is conditional on dropping this one change.