HardenedBSD src tree
Go to file
Alexander V. Chernikov 2fe5a79425 Fix dst/netmask handling in routing socket code.
Traditionally routing socket code did almost zero checks on
 the input message except for the most basic size checks.

This resulted in the unclear KPI boundary for the routing system code
 (`rtrequest*` and now `rib_action()`) w.r.t message validness.

Multiple potential problems and nuances exists:
* Host bits in RTAX_DST sockaddr. Existing applications do send prefixes
 with hostbits uncleared. Even `route(8)` does this, as they hope the kernel
 would do the job of fixing it. Code inside `rib_action()` needs to handle
 it on its own (see `rt_maskedcopy()` ugly hack).
* There are multiple way of adding the host route: it can be DST without
 netmask or DST with /32(/128) netmask. Also, RTF_HOST has to be set correspondingly.
 Currently, these 2 options create 2 DIFFERENT routes in the kernel.
* no sockaddr length/content checking for the "secondary" fields exists: nothing
 stops rtsock application to send sockaddr_in with length of 25 (instead of 16).
 Kernel will accept it, install to RIB as is and propagate to all rtsock consumers,
 potentially triggering bugs in their code. Same goes for sin_port, sin_zero, etc.

The goal of this change is to make rtsock verify all sockaddr and prefix consistency.
Said differently, `rib_action()` or internals should NOT require to change any of the
 sockaddrs supplied by `rt_addrinfo` structure due to incorrectness.

To be more specific, this change implements the following:
* sockaddr cleanup/validation check is added immediately after getting sockaddrs from rtm.
* Per-family dst/netmask checks clears host bits in dst and zeros all dst/netmask "secondary" fields.
* The same netmask checking code converts /32(/128) netmasks to "host" route case
 (NULL netmask, RTF_HOST), removing the dualism.
* Instead of allowing ANY "known" sockaddr families (0<..<AF_MAX), allow only actually
 supported ones (inet, inet6, link).
* Automatically convert `sockaddr_sdl` (AF_LINK) gateways to
  `sockaddr_sdl_short`.

Reported by:	Guy Yur <guyyur at gmail.com>
Reviewed By:	donner
Differential Revision: https://reviews.freebsd.org/D28668
MFC after:	3 days
2021-02-16 20:30:04 +00:00
.github/workflows Update OpenZFS to master-c1c31a835 2021-02-14 01:09:23 +01:00
bin bin/pkill: Fix {pgrep,pkill}-j_test.sh 2021-02-13 13:53:51 +00:00
cddl zfs: merge OpenZFS master-436ab35a5 2021-02-16 02:46:28 +01:00
contrib Update capsicum-test to git commit 7707222b46abe52d18fd4fbb76115ffdb3e6f74b 2021-02-16 14:35:12 +00:00
crypto openssh: port upgrade doc and script to git 2021-02-14 16:41:11 -05:00
etc Update OpenZFS to master-c1c31a835 2021-02-14 01:09:23 +01:00
gnu Bump shared library versions after ncurses bump in 13. 2021-02-01 17:11:49 -08:00
include Update OpenZFS to master-436ab35a5 2021-02-16 00:33:50 +01:00
kerberos5 kerberos5: fix the WITH_OPENLDAP build 2021-01-30 00:07:50 -06:00
lib msun: ctanh/ctanhf: Import fix from musl libc 2021-02-15 22:55:12 +00:00
libexec Don't check compat.linux.emul_path before loading linux(4) 2021-02-08 22:00:25 +00:00
release release.sh: fix OSVERSION and UNAME_r overrides 2021-02-11 10:46:38 -05:00
rescue
sbin ifconfig: fix incorrect wg allowed-ips netmask 2021-02-15 02:39:05 +00:00
secure OpenSSL: Regenerate manual pages. 2021-01-28 10:24:24 -08:00
share update the SACK loss recovery to RFC6675, with the following new features: 2021-02-16 13:08:37 +01:00
stand bi_load: only add MODULEP on arches that have it defined 2021-02-16 16:14:32 +01:00
sys Fix dst/netmask handling in routing socket code. 2021-02-16 20:30:04 +00:00
targets ndis(4): remove as previous announced 2021-01-25 21:45:03 +00:00
tests Fix dst/netmask handling in routing socket code. 2021-02-16 20:30:04 +00:00
tools tools/build/make.py: drop workaround for cc --version not being parsed 2021-02-13 13:54:25 +00:00
usr.bin Source repo changes to add new committer Rajesh Kumar M A 2021-02-16 08:52:09 +00:00
usr.sbin fmtree: add a deprecation notice to the manpage 2021-02-12 23:15:58 -06:00
.arcconfig
.arclint
.cirrus.yml Revert "Cirrus-CI: Use the default Git history depth" 2021-01-29 11:22:03 -05:00
.clang-format
.gitattributes
.gitignore gitignore: expand list of ignored files 2021-01-14 17:03:57 +01:00
COPYRIGHT
LOCKS
MAINTAINERS
Makefile
Makefile.inc1 Remove the MK_LIBCPLUSPLUS option 2021-02-01 09:32:07 +00:00
Makefile.libcompat
Makefile.sys.inc
ObsoleteFiles.inc Bump shared library versions after ncurses bump in 13. 2021-02-01 17:11:49 -08:00
README
README.md
RELNOTES Bump CURRENT to 14.0 2021-01-21 19:10:07 -05:00
UPDATING Bump __FreeBSD_version for multiple LinuxKPI updates conflicting 2021-01-28 16:37:28 +00:00

FreeBSD Source:

This is the top level of the FreeBSD source directory. This file was last revised on: FreeBSD

FreeBSD is an operating system used to power modern servers, desktops, and embedded platforms. A large community has continually developed it for more than thirty years. Its advanced networking, security, and storage features have made FreeBSD the platform of choice for many of the busiest web sites and most pervasive embedded networking and storage devices.

For copyright information, please see the file COPYRIGHT in this directory. Additional copyright information also exists for some sources in this tree - please see the specific source directories for more information.

The Makefile in this directory supports a number of targets for building components (or all) of the FreeBSD source tree. See build(7), config(8), https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/makeworld.html, and https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig.html for more information, including setting make(1) variables.

Source Roadmap:

bin		System/user commands.

cddl		Various commands and libraries under the Common Development
		and Distribution License.

contrib		Packages contributed by 3rd parties.

crypto		Cryptography stuff (see crypto/README).

etc		Template files for /etc.

gnu		Various commands and libraries under the GNU Public License.
		Please see gnu/COPYING* for more information.

include		System include files.

kerberos5	Kerberos5 (Heimdal) package.

lib		System libraries.

libexec		System daemons.

release		Release building Makefile & associated tools.

rescue		Build system for statically linked /rescue utilities.

sbin		System commands.

secure		Cryptographic libraries and commands.

share		Shared resources.

stand		Boot loader sources.

sys		Kernel sources.

sys/<arch>/conf Kernel configuration files. GENERIC is the configuration
		used in release builds. NOTES contains documentation of
		all possible entries.

tests		Regression tests which can be run by Kyua.  See tests/README
		for additional information.

tools		Utilities for regression testing and miscellaneous tasks.

usr.bin		User commands.

usr.sbin	System administration commands.

For information on synchronizing your source tree with one or more of the FreeBSD Project's development branches, please see:

https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/current-stable.html