FreeBSD src
Go to file
Kyle Evans 6a5abb1ee5 Provide O_SEARCH
O_SEARCH is defined by POSIX [0] to open a directory for searching, skipping
permissions checks on the directory itself after the initial open(). This is
close to the semantics we've historically applied for O_EXEC on a directory,
which is UB according to POSIX. Conveniently, O_SEARCH on a file is also
explicitly undefined behavior according to POSIX, so O_EXEC would be a fine
choice. The spec goes on to state that O_SEARCH and O_EXEC need not be
distinct values, but they're not defined to be the same value.

This was pointed out as an incompatibility with other systems that had made
its way into libarchive, which had assumed that O_EXEC was an alias for
O_SEARCH.

This defines compatibility O_SEARCH/FSEARCH (equivalent to O_EXEC and FEXEC
respectively) and expands our UB for O_EXEC on a directory. O_EXEC on a
directory is checked in vn_open_vnode already, so for completeness we add a
NOEXECCHECK when O_SEARCH has been specified on the top-level fd and do not
re-check that when descending in namei.

[0] https://pubs.opengroup.org/onlinepubs/9699919799/

Reviewed by:	kib
Differential Revision:	https://reviews.freebsd.org/D23247
2020-02-02 16:34:57 +00:00
bin Restore previous usage presentation (without "pwait: " prefix). 2020-02-01 09:13:11 +00:00
cddl Speed up "zpool import" in the presence of many zvols 2020-01-28 23:07:31 +00:00
contrib Provide O_SEARCH 2020-02-02 16:34:57 +00:00
crypto
etc Merge ^/head r357179 through r357269. 2020-01-29 21:09:36 +00:00
gnu retire BSD_CRTBEGIN option 2020-01-31 18:04:04 +00:00
include rand(3): Replace implementation with one backed by random(3) algorithm 2020-02-01 20:33:23 +00:00
kerberos5 Update Makefile.depend files 2019-12-11 17:37:53 +00:00
lib Provide O_SEARCH 2020-02-02 16:34:57 +00:00
libexec Fix the following -Werror warning from clang 10.0.0 in rbootd: 2020-01-28 19:19:55 +00:00
release RPI3: Add RPi4 firmware files to the FAT partition 2020-01-31 15:56:08 +00:00
rescue
sbin Fix the following -Werror warning from clang 10.0.0 in newfs_msdos: 2020-01-28 20:10:26 +00:00
secure pkgbase: fix caroot packaging and add post-install script 2020-01-29 18:47:08 +00:00
share Remove vpo.4 2020-02-02 04:53:27 +00:00
stand Work around assembler error from clang 10.0.0 in gptboot: 2020-01-28 21:41:37 +00:00
sys Provide O_SEARCH 2020-02-02 16:34:57 +00:00
targets retire BSD_CRTBEGIN option 2020-01-31 18:04:04 +00:00
tests tests: epair: Don't fail if we load if_epair 2020-02-01 19:40:11 +00:00
tools smrstress: Add 'publishing' fences to operations on smrs_current. 2020-01-31 20:30:50 +00:00
usr.bin Merge r357345 from the clang1000-import branch: 2020-01-31 19:06:49 +00:00
usr.sbin services: Add PROFInet and EtherCAT. 2020-01-31 18:55:21 +00:00
.arcconfig
.arclint
.cirrus.yml Cirrus-CI: add make packages to CI test 2020-01-19 22:29:22 +00:00
.clang-format
.gitattributes
.gitignore
COPYRIGHT Happy New Year 2020! 2019-12-31 16:01:36 +00:00
LOCKS
MAINTAINERS Move all sources from the llvm project into contrib/llvm-project. 2019-12-20 19:53:05 +00:00
Makefile Per the firm plan, start to remove sparc64 2020-02-02 11:37:27 +00:00
Makefile.inc1 Per the firm plan, start to remove sparc64 2020-02-02 11:37:27 +00:00
Makefile.libcompat
Makefile.sys.inc
ObsoleteFiles.inc Remove vpo.4 2020-02-02 04:53:27 +00:00
README
README.md
RELNOTES Add an entry to RELNOTES for r355677. 2019-12-13 16:28:48 +00:00
UPDATING * Bump version numbers to 10.0.0 2020-01-25 16:23:49 +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