Go to file
Robert Watson 0489082737 o Disable two "allow this" exceptions in p_cansched()m retricting the
ability of unprivileged processes to modify the scheduling properties
  of daemons temporarily taking on unprivileged effective credentials.
  These cases (p1->p_cred->p_ruid == p2->p_ucred->cr_uid) and
  (p1->p_ucred->cr_uid == p2->p_ucred->cr_uid), respectively permitting
  a subject process to influence the scheduling of a daemon if the subject
  process has the same real uid or effective uid as the daemon's effective
  uid.  This removes a number of the warning cases identified by the
  proc_to_proc iner-process authorization regression test.
o As these are new restrictions, we'll have to watch out carefully for
  possible side effects on running code: they seem reasonable to me,
  but it's possible this change might have to be backed out if problems
  are experienced.

Reported by:	src/tools/regression/security/proc_to_proc/testuid
Obtained from:	TrustedBSD Project
2001-04-12 22:46:07 +00:00
bin Correct some markup 2001-04-12 20:04:54 +00:00
contrib Activate backward-compatible prototypes 2001-04-12 17:18:46 +00:00
crypto
etc Actually install include/fs/smbfs and include/netsmb directories. 2001-04-11 09:00:09 +00:00
games beforeinstall -> SCRIPTS. 2001-04-07 11:21:35 +00:00
gnu Install history.3 as rlhistory.3 to not conflict with existing libedit function 2001-04-12 09:54:44 +00:00
include Actually install include/fs/smbfs and include/netsmb directories. 2001-04-11 09:00:09 +00:00
kerberos5
kerberosIV beforeinstall -> SCRIPTS. 2001-04-07 11:21:35 +00:00
lib Back out history.3 link removing - conflict fixed in libreadline instead 2001-04-12 09:57:12 +00:00
libexec beforeinstall -> SCRIPTS. 2001-04-07 11:21:35 +00:00
release New release notes: vidcontrol(1) update (submitted by sobomax). 2001-04-11 16:23:58 +00:00
sbin Fix a typo relating to the "-U" (force UDP for mount protocol) 2001-04-11 00:21:16 +00:00
secure
share vnconfig(8) -> mdconfig(8). 2001-04-10 16:29:41 +00:00
sys o Disable two "allow this" exceptions in p_cansched()m retricting the 2001-04-12 22:46:07 +00:00
tools o Expand inter-process authorization regression test to include 2001-04-12 17:46:20 +00:00
usr.bin o The -s limit is ARG_MAX - 4K, not ARG_MAX - 2K. 2001-04-10 23:16:55 +00:00
usr.sbin Source rc.conf so that named.restart can restart named with the correct 2001-04-11 02:12:14 +00:00
COPYRIGHT
Makefile
Makefile.inc1
Makefile.upgrade
README
UPDATING

README

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