Re: [FreeBSD-Announce] FreeBSD Errata Notice FreeBSD-EN-09:05.null

2009-10-07 Thread Bjoern A. Zeeb

On Wed, 7 Oct 2009, Philip M. Gollucci wrote:




Corrected:  2009-10-02 18:09:56 UTC (RELENG_8, 8.0-RC2)
2009-10-02 18:09:56 UTC (RELENG_7, 7.2-STABLE)
2009-10-02 18:09:56 UTC (RELENG_7_2, 7.2-RELEASE-p4)
2009-10-02 18:09:56 UTC (RELENG_7_1, 7.1-RELEASE-p8)
2009-10-02 18:09:56 UTC (RELENG_6, 6.4-STABLE)
2009-10-02 18:09:56 UTC (RELENG_6_4, 6.4-RELEASE-p7)
2009-10-02 18:09:56 UTC (RELENG_6_3, 6.3-RELEASE-p13)



- -
RELENG_6
RELENG_6_4
RELENG_6_3
RELENG_7
RELENG_7_2
RELENG_7_1
RELENG_8
- -



Branch/path  Revision
- -
stable/6/ r197715
releng/6.4/   r197715
releng/6.3/   r197715
stable/7/ r197715
releng/7.2/   r197715
releng/7.1/   r197715
stable/8/ r197714
- -


Don't these usually mention HEAD/CURRENT ?


No.



and is the 197714 a typo ?


No. That was a separate MFC from HEAD in constrast to stable/7,8 which
were committed along with the 2 security advisories.


The correction date in the first line is a bit off though, as the 8.0-RC2
MFC had been a few minutes earlier.

/bz

--
Bjoern A. Zeeb It will not break if you know what you are doing.
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"


Re: [FreeBSD-Announce] FreeBSD Errata Notice FreeBSD-EN-09:05.null

2009-10-06 Thread Philip M. Gollucci

> Corrected:  2009-10-02 18:09:56 UTC (RELENG_8, 8.0-RC2)
> 2009-10-02 18:09:56 UTC (RELENG_7, 7.2-STABLE)
> 2009-10-02 18:09:56 UTC (RELENG_7_2, 7.2-RELEASE-p4)
> 2009-10-02 18:09:56 UTC (RELENG_7_1, 7.1-RELEASE-p8)
> 2009-10-02 18:09:56 UTC (RELENG_6, 6.4-STABLE)
> 2009-10-02 18:09:56 UTC (RELENG_6_4, 6.4-RELEASE-p7)
> 2009-10-02 18:09:56 UTC (RELENG_6_3, 6.3-RELEASE-p13)

> - -
> RELENG_6
> RELENG_6_4
> RELENG_6_3
> RELENG_7
> RELENG_7_2
> RELENG_7_1
> RELENG_8
> - -

> Branch/path  Revision
> - -
> stable/6/ r197715
> releng/6.4/   r197715
> releng/6.3/   r197715
> stable/7/ r197715
> releng/7.2/   r197715
> releng/7.1/   r197715
> stable/8/ r197714
> - -

Don't these usually mention HEAD/CURRENT ?

and is the 197714 a typo ?

-- 

1024D/DB9B8C1C B90B FBC3 A3A1 C71A 8E70  3F8C 75B8 8FFB DB9B 8C1C
Philip M. Gollucci (pgollu...@p6m7g8.com) c: 703.336.9354
Consultant  - P6M7G8 Inc.http://p6m7g8.net
Senior Sys Admin- RideCharge, Inc.   http://ridecharge.com
ASF Member  - Apache Software Foundation http://apache.org
FreeBSD Committer   - FreeBSD Foundation http://freebsd.org

Work like you don't need the money,
love like you'll never get hurt,
and dance like nobody's watching.
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"


ANNOUNCE: [FreeBSD-Announce] FreeBSD Errata Notice FreeBSD-EN-09:05.null

2009-10-02 Thread FreeBSD Errata Notices

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

=
FreeBSD-EN-09:05.null   Errata Notice
  The FreeBSD Project

Topic:  No zero mapping feature

Category:   core
Module: kern
Announced:  2009-10-02
Credits:John Baldwin, Konstantin Belousov, Alan Cox, and Bjoern Zeeb
Affects:All supported versions of FreeBSD.
Corrected:  2009-10-02 18:09:56 UTC (RELENG_8, 8.0-RC2)
2009-10-02 18:09:56 UTC (RELENG_7, 7.2-STABLE)
2009-10-02 18:09:56 UTC (RELENG_7_2, 7.2-RELEASE-p4)
2009-10-02 18:09:56 UTC (RELENG_7_1, 7.1-RELEASE-p8)
2009-10-02 18:09:56 UTC (RELENG_6, 6.4-STABLE)
2009-10-02 18:09:56 UTC (RELENG_6_4, 6.4-RELEASE-p7)
2009-10-02 18:09:56 UTC (RELENG_6_3, 6.3-RELEASE-p13)

For general information regarding FreeBSD Errata Notices and Security
Advisories, including descriptions of the fields above, security
branches, and the following sections, please visit
http://security.freebsd.org/>.

I.  Background

In the C programming language, address 0 (NULL) is used to represent
unallocated memory.  NULL pointer dereferences are a common class of C
programming bug in which pointers are not properly checked for NULL
before being used.  Dereferencing a NULL pointer normally terminates
execution, via a segmentation fault for user processes, or a page
fault panic in the kernel.

II. Problem Description

On most architectures, the FreeBSD kernel splits the process virtual
memory address space into two portions: user and kernel.  This
improves system call performance by avoiding a full address space
switch when a process enters the kernel, and improves performance for
kernel access to user memory.

However, in this design, address 0 is part of the user-controlled
portion of the virtual address space.  If the kernel dereferences a
NULL pointer due to a kernel bug, a malicious process that has mapped
code or data at address 0 may be able to manipulate kernel behavior.
For example, if a malicious user process maps code at address 0 and
then triggers a kernel bug in which a NULL function pointer is
invoked, the kernel may execute that code with kernel privilege rather
than panicking.

III.Impact

This errata patch introduces a mitigation feature in which user
mapping at address 0 is disallowed, limiting the attacker's ability to
convert a kernel NULL pointer dereference into a privilege escalation
attack.

The feature is disabled by default in FreeBSD 7 and lower, and must be
enabled by setting the sysctl(8) variable security.bsd.map_at_zero to
0.  In FreeBSD 8 and later feature is enabled by default.

While extremely rare, certain applications may rely on mapping memory
at address 0.  Careful testing is advised when enabling this feature
when using virtual machines, emulation technologies, and older a.out
format binaries.

Changing the mentioned sysctl(8) variable only affects processes
started after the sysctl(8) variable was set.  Processes started
before the sysctl(8) variable was changed will continue to run with
the setting of the sysctl(8) variable which existed when the processes
was started.

Consequently, to ensure that the sysctl(8) variable affects all
processes, a reboot is required with the sysctl(8) variable configured
as mentioned below.

IV. Workaround

No workaround is available.

V.  Solution

Perform one of the following:

1) Upgrade your system to 6-STABLE, 7-STABLE, or 8-RC, or to the
RELENG_7_2, RELENG_7_1, RELENG_6_4, or RELENG_6_3 security branch
dated after the correction date.

Enable feature as mentioned below.

2) To patch your present system:

The following patches have been verified to apply to FreeBSD 6.3, 6.4,
7.1, and 7.2 systems.

a) Download the relevant patch from the location below, and verify the
   detached PGP signature using your PGP utility.

[FreeBSD 7.x]
# fetch http://security.FreeBSD.org/patches/EN-09:05/null.patch
# fetch http://security.FreeBSD.org/patches/EN-09:05/null.patch.asc

[FreeBSD 6.x]
# fetch http://security.FreeBSD.org/patches/EN-09:05/null6.patch
# fetch http://security.FreeBSD.org/patches/EN-09:05/null6.patch.asc

NOTE WELL: The patch for FreeBSD 7.x can be used on FreeBSD 8, but
does not enable the feature by default!

b) Apply the patch.

# cd /usr/src
# patch < /path/to/patch

c) Recompile your kernel as described in
http://www.FreeBSD.org/handbook/kernelconfig.html> and reboot the
system.

To actually enable the feature in FreeBSD 6.x and 7.x, add the
following to either /boot/loader.conf or /etc/sysctl.conf:

security.bsd.map_at_zero="0"

VI. Correction details

The following list contains the revision numbers of each file that was
corrected in FreeBSD.

CVS:

Branch   Revisi

Re: [FreeBSD-Announce] FreeBSD Errata Notice FreeBSD-EN-09:05.null

2009-10-02 Thread Stef Walter
FreeBSD Errata Notices wrote:
> To actually enable the feature in FreeBSD 6.x and 7.x, add the
> following to either /boot/loader.conf or /etc/sysctl.conf:
> 
>   security.bsd.map_at_zero="0"

The sysctl.conf setting must not have quotes. Or you get this:

sysctl: invalid integer '"0"'

Instead one should use:

security.bsd.map_at_zero=0

Cheers,
Stef
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"


Re: [FreeBSD-Announce] FreeBSD Errata Notice FreeBSD-EN-09:05.null

2009-10-02 Thread Kim Scarborough
> To actually enable the feature in FreeBSD 6.x and 7.x, add the
> following to either /boot/loader.conf or /etc/sysctl.conf:
> 
>   security.bsd.map_at_zero="0"

Actually, on my 6.4 box I had to set it in loader.conf. Setting it in
sysctl.conf didn't work.

-- 
http://kim.scarborough.chicago.il.us/
http://www.dinosaurgardens.com/
http://www.mercurytheatre.info/
http://www.unknown.nu/
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"