Find a file
Marcel Moolenaar f2e6a017d5 Fix "automatic" login, broken by revision 69825 (12 years, 5 months ago).
The "automatic" login feature is described as follows:
The USER environment variable holds the name of the person telnetting in.
This is the username of the person on the client machine. The traditional
behaviour is to execute login(1) with this username first, meaning that
login(1) will prompt for the password only. If login fails, login(1) will
retry, but now prompt for the username before prompting for the password.

This feature got broken by how the environment got scrubbed. Before the
change in r69825 we removed variables that we deemed dangerous. Starting
with r69825 we only keep those variable we know to be safe.

The USER environment variable fell through the cracks. It suddenly got
scrubbed (i.e. removed from the environment) while still being checked
for. It also got explicitly removed from the environment to handle the
failed login case.

The fix is to obtain the value of the USER environment variable before
we scrub the environment and used the "cached" in subsequent checks.
This guarantees that the environment does not contain the USER variable
in the end, while still being able to implement "automatic" login.

Obtained from:	Juniper Networks, Inc.
2013-05-31 17:30:12 +00:00
bin sleep: Improve nanosleep() error handling: 2013-05-28 22:07:31 +00:00
cddl Remove a block of code that was not intended to be part of the previous 2013-05-20 02:10:18 +00:00
contrib Fix "automatic" login, broken by revision 69825 (12 years, 5 months ago). 2013-05-31 17:30:12 +00:00
crypto Revert a local change that sets the default for UsePrivilegeSeparation to 2013-05-29 00:19:58 +00:00
etc Refine the "nojail" rc keyword, adding "nojailvnet" for files that don't 2013-05-19 04:10:34 +00:00
games Remove a reference to instant-server which has been removed from the 2013-03-21 12:42:25 +00:00
gnu Don't look for headers outside of the source or object directories. In 2013-05-21 17:30:27 +00:00
include I'm happy to finally commit stephen@'s implementations of cacos, 2013-05-30 04:49:26 +00:00
kerberos5 Fix the getpwnam_r() call in the pname_to_uid() kerberos library function so 2013-05-02 12:52:49 +00:00
lib fork(2): #include <sys/types.h> is not needed. 2013-05-31 14:48:37 +00:00
libexec mdoc sweep. 2013-05-12 22:22:12 +00:00
release Fix typo introduced in r251084. 2013-05-28 23:46:13 +00:00
rescue Add less to rescue build. On amd64, this increases rescue size by about 2013-05-13 22:16:33 +00:00
sbin Improve compatibility with old flex and fix build with GCC. 2013-05-22 17:47:45 +00:00
secure Remove references to MK_IDEA. 2013-04-27 05:44:39 +00:00
share Add my entry. 2013-05-29 13:36:33 +00:00
sys Explicitly use a pair of parentheses to ensure correct evaluation 2013-05-31 17:27:44 +00:00
tools sh: Add test cases for break outside a loop. 2013-05-31 14:45:25 +00:00
usr.bin If the -r option is given we cannot enter capability mode. 2013-05-30 21:59:29 +00:00
usr.sbin Fix a long standing logic bug introduced in r167814. The code was added to 2013-05-31 17:23:38 +00:00
COPYRIGHT Happy New Year 2013! 2012-12-31 11:22:55 +00:00
LOCKS Test commit to make sure commit mail works after moving the server. 2012-12-29 16:03:23 +00:00
MAINTAINERS Use my @freebsd.org username, rather than ${WORK} username. 2013-05-18 14:05:32 +00:00
Makefile Make the instruction order for buildworld agree with UPDATING and the 2013-05-29 19:16:59 +00:00
Makefile.inc1 Restore (at least temporarily) SHARED=symlinks in the build includes 2013-05-30 15:25:54 +00:00
ObsoleteFiles.inc Move libmd.so.5 to the proper place and add missing lib32 entry. 2013-05-26 09:25:14 +00:00
README Vendor import of tcpdump 4.4.0. 2013-05-30 06:46:26 +00:00
UPDATING Mention the switch to bmake by default. 2013-05-21 18:38:09 +00:00

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 ``world''
target should only be used in cases where the source tree has not
changed from the currently running version.  See:
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/makeworld.html
for more information, including setting make(1) variables.

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/doc/en_US.ISO8859-1/books/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 might need to build
world before.  More information is available in the handbook.

The sample kernel configuration files reside in the sys/<arch>/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.

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.

games		Amusements.

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.

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/doc/en_US.ISO8859-1/books/handbook/synching.html