freebsd kernel with SKQ
Go to file
rwatson 9c993b44d0 o Introduce new VOP_ACCESS() flag VADMIN, allowing file systems to perform
"administrative" authorization checks.  In most cases, the VADMIN test
  checks to make sure the credential effective uid is the same as the file
  owner.
o Modify vaccess() to set VADMIN as an available right if the uid is
  appropriate.
o Modify references to uid-based access control operations such that they
  now always invoke VOP_ACCESS() instead of using hard-coded policy checks.
o This allows alternative UFS policies to be implemented by replacing only
  ufs_access() (such as mandatory system policies).
o VOP_ACCESS() requires the caller to hold an exclusive vnode lock on the
  vnode: I believe that new invocations of VOP_ACCESS() are always called
  with the lock held.
o Some direct checks of the uid remain, largely associated with the QUOTA
  and SUIDDIR code.

Reviewed by:	eivind
Obtained from:	TrustedBSD Project
2000-10-19 07:53:59 +00:00
bin Include sys/types.h 2000-10-16 07:11:30 +00:00
contrib Remove GLOBAL -- it has moved to Ports. 2000-10-15 07:01:47 +00:00
crypto
etc Use dd to better block the data being sent to /dev/random. 2000-10-18 05:29:26 +00:00
games
gnu Include sys/types.h 2000-10-16 07:11:30 +00:00
include Add netnatm to LDIRS 2000-10-16 07:00:18 +00:00
kerberos5 Fix ordering for real this time. 2000-08-30 03:44:30 +00:00
kerberosIV
lib Argh! Fix passive mode selection (again) 2000-10-17 19:01:18 +00:00
libexec
release ObCommit from BSDCon: Update SMPng note and add an entry for devfs, 2000-10-18 23:45:31 +00:00
sbin Work much harder at obtaining a correct device node. If what devname(3) 2000-10-17 22:43:41 +00:00
secure Do not override BINDIR settings from subdirectory Makefiles. 2000-10-13 16:57:03 +00:00
share Reference Larry Wall's perlstyle man page, and recommend it's use where 2000-10-18 21:57:37 +00:00
sys o Introduce new VOP_ACCESS() flag VADMIN, allowing file systems to perform 2000-10-19 07:53:59 +00:00
tools Teach kerninclude to check <machine/*> #includes as well. 2000-10-13 12:03:01 +00:00
usr.bin Fix the build break. 2000-10-17 17:13:38 +00:00
usr.sbin Trim index lines down to 79 characters, not 80. 2000-10-18 20:16:26 +00:00
COPYRIGHT
Makefile
Makefile.inc1 Number the stages in the documentation to match what is printed out when 2000-10-13 01:19:36 +00:00
Makefile.upgrade
README
UPDATING

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

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, the most
commonly used one being ``world'', which rebuilds and installs
everything in the FreeBSD system from the source tree except the
kernel, the kernel-modules and the contents of /etc.  The
``buildkernel'' and ``installkernel'' targets build and install
the kernel and the modules (see below).  Please see the top of
the Makefile in this directory for more information on the
standard build targets and compile-time flags.

Building a kernel is a somewhat more involved process, documentation
for which can be found at:
   http://www.freebsd.org/handbook/kernelconfig.html
And in the config(8) man page.
Note: If you want to build and install the kernel with the
``buildkernel'' and ``installkernel'' targets, you have to build
world before.  More information is available in the handbook.

The sample kernel configuration files reside in the sys/i386/conf
sub-directory (assuming that you've installed the kernel sources), the
file named GENERIC being the one used to build your initial installation
kernel.  The file NOTES contains entries and documentation for all possible
devices, not just those commonly used.  It is the successor of the ancient
LINT file, but in contrast to LINT, it is not buildable as a kernel but a
pure reference and documentation file.


Source Roadmap:
---------------
bin		System/User commands.

contrib		Packages contributed by 3rd parties.

crypto		Cryptography stuff (see crypto/README).

etc		Template files for /etc

games		Amusements.

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

include		System include files.

kerberosIV	Kerberos package.

lib		System libraries.

libexec		System daemons.

release		Release building Makefile & associated tools.

sbin		System commands.

secure		Cryptographic libraries and commands.

share		Shared resources.

sys		Kernel sources.

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:

  http://www.freebsd.org/handbook/synching.html