[BACK]Return to errata.html CVS log [TXT][DIR] Up to [local] / www

Annotation of www/errata.html, Revision 1.88

1.1       deraadt     1: <!DOCTYPE HTML PUBLIC  "-//IETF//DTD HTML Strict//EN">
                      2: <html>
                      3: <head>
1.64      deraadt     4: <title>OpenBSD release errata</title>
1.1       deraadt     5: <link rev=made href=mailto:www@openbsd.org>
                      6: <meta name="resource-type" content="document">
                      7: <meta name="description" content="the OpenBSD CD errata page">
                      8: <meta name="keywords" content="openbsd,cd,errata">
                      9: <meta name="distribution" content="global">
                     10: <meta name="copyright" content="This document copyright 1997 by OpenBSD.">
                     11: </head>
                     12:
                     13: <BODY BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#23238E">
                     14:
1.37      deraadt    15: <img alt="[OpenBSD]" SRC="images/smalltitle.gif">
1.68      deraadt    16: <h2><font color=#0000e0>
                     17: This is the OpenBSD 2.2 release errata & patch list:
                     18: </font></h2>
                     19:
1.25      deraadt    20: <ul>
1.43      deraadt    21: <a name=all></a>
1.67      deraadt    22: <li><h3><font color=#e00000>All architectures</font></h3>
1.25      deraadt    23: <ul>
1.87      deraadt    24: <a name=named></a>
                     25: <li><font color=#009000><strong>SECURITY FIX</strong></font><br>
                     26: A vulnerability exists when (and only when) /etc/named.conf has the
1.88    ! deraadt    27: <strong>fake-iquery</strong> option enabled.
1.87      deraadt    28: <a href=ftp://ftp.openbsd.org/pub/OpenBSD/patches/2.2/common/named.patch>
                     29: A patch is available which corrects this behaviour</a>.
                     30: <p>
                     31: <a name=ping></a>
                     32: <li><font color=#009000><strong>SECURITY FIX</strong></font><br>
                     33: A vulnerability exists in ping(8); if the -R option is used to record
                     34: routes, an attacker can spoof a reply packet that will overflow inside
1.88    ! deraadt    35: ping.  Preliminary investigation makes it look the worst attack
        !            36: possible is to make ping crash, but one never knows...
1.87      deraadt    37: <a href=ftp://ftp.openbsd.org/pub/OpenBSD/patches/2.2/common/ping.patch>
                     38: A patch is available which corrects this behaviour</a>.
                     39: <p>
1.72      deraadt    40: <a name=sourceroute></a>
                     41: <li><strong><font color=#009000>SECURITY FIX</strong></font><br>
                     42: If the sysctl variable <strong>net.inet.ip.forwarding</strong> is
                     43: enabled (value 1), but the variable <strong>net.inet.ip.sourceroute</strong>
1.73      deraadt    44: is disabled (value 0), the kernel will block source routed packets from
                     45: going through, but will still accept source routing packets destined for
1.72      deraadt    46: itself.  Our fix changes the <strong>net.inet.ip.sourceroute</strong>
1.77      deraadt    47: variable semantics to mean that all source routed packets should
1.73      deraadt    48: be blocked completely.
1.72      deraadt    49: <a href=ftp://ftp.openbsd.org/pub/OpenBSD/patches/2.2/common/sourceroute.patch>
                     50: A kernel patch is provided</a>.
1.39      deraadt    51: <p>
1.62      deraadt    52: <a name=ruserok></a>
1.72      deraadt    53: <li><font color=#009000><strong>SECURITY FIX</strong></font><br>
1.61      deraadt    54: A combination localhost+remote host security problem exists if a
                     55: local user running a setuid binary causes a non-existant root .rhosts
                     56: file to be created via a symbolic link with a specific kind of corefile,
                     57: and then subsequently uses rsh/rlogin to enter the machine from remote.
                     58: A similar exploit might also be possible using sshd which lacks any code
                     59: for checking for deviations from the expected format in the .rhosts or
                     60: .shosts files, but we have not confirmed this yet.  The following two
                     61: fixes are recommended:
                     62: <p>
                     63: <ul>
                     64: <li>
                     65: <a href=ftp://ftp.openbsd.org/pub/OpenBSD/patches/2.2/common/nosuidcoredump.patch>
1.72      deraadt    66: (1) A kernel patch which adds a new sysctl option which permits the
                     67: administrator to decide whether setuid corefiles should be written or not</a>.
1.61      deraadt    68: <p>
                     69: <li><a href=ftp://ftp.openbsd.org/pub/OpenBSD/patches/2.2/common/rcmd.patch>
1.74      deraadt    70: (2) Replaces the libc ruserok() function with a more paranoid
                     71: version which detects bogus looking .rhosts files better.</a>
1.61      deraadt    72: </ul>
                     73: <p>
1.74      deraadt    74: If the
                     75: first patch is used to stop setuid coredumps, then the second patch is
                     76: not as important.
1.61      deraadt    77: This problem is fixed much better in OpenBSD-current, where the kernel's
                     78: symbolic link handling has been improved such that coredumping will not
                     79: create a file on the other side of a symbolic link.  Such a patch is not
1.81      deraadt    80: possible for the 4.4lite1 VFS layer in the OpenBSD 2.2 kernel.<p>
                     81: The problem with the ruserok() function appears to also exist in
                     82: ssh 1.2.21 and previous (the ssh people have been alerted).
1.61      deraadt    83: <p>
1.72      deraadt    84: <a name=mmap></a>
                     85: <li><strong><font color=#009000>SECURITY FIX</strong></font><br>
1.80      deraadt    86: A bug in the vm system permits a file descriptor opened read-only on a
                     87: device, to later on be mmap(2)'d read-write, and then modified.  This
                     88: does not result in a security hole by itself, but it does violate the
                     89: safety semantics which securelevels are supposed to provide.  If a user
                     90: manages to gain kmem group permissions, using this problem they can then
                     91: gain root trivially and/or turn securelevels off.
1.72      deraadt    92: <a href=ftp://ftp.openbsd.org/pub/OpenBSD/patches/2.2/common/vm_mmap.patch>
1.79      deraadt    93: A kernel patch is available which corrects this behaviour (this is
1.83      deraadt    94: revision 3 of this patch)</a>.
1.72      deraadt    95: <p>
                     96: <li><font color=#009000><strong>BUILD PROCESS FIX</strong></font><br>
                     97: Building an object tree from a read-only source tree (such as off a CDROM)
                     98: may fail under certain circumstances (e.g. when creating a symlink on sparc
                     99: whose target name is exactly 33 characters).  As a workaround you have to
                    100: either provide the source tree read/write, or install a newer version of
                    101: /usr/bin/readlink.
                    102: <a href=ftp://ftp.openbsd.org/pub/OpenBSD/patches/2.2/common/readlink.c>
                    103: A replacement source file exists</a>.
                    104: <p>
1.85      deraadt   105: <a name=mountd></a>
1.84      deraadt   106: <li><font color=#009000><strong>SECURITY FIX</strong></font><br>
                    107: If a line in /etc/exports which contains hostnames results in an empty
                    108: list because none of the supplied hostnames is known, mountd(8) will
                    109: accidentally export the filesystem to the world.
                    110: <a href=ftp://ftp.openbsd.org/pub/OpenBSD/patches/2.2/common/mountd.patch>
                    111: A patch is available which corrects this behaviour</a>.
                    112: <p>
1.86      millert   113: <li><font color=#009000><strong>RELIABILITY FIX</strong></font><br>
                    114: Setting the MSG_EOR flag on a tcp packet in the send(2) family of
                    115: system calls could cause a kernel panic.
                    116: <a href=ftp://ftp.openbsd.org/pub/OpenBSD/patches/2.2/common/send.patch>
                    117: A patch</a> to return EINVAL in this case is available.
                    118: <p>
1.25      deraadt   119: </ul>
1.42      deraadt   120: <a name=i386></a>
1.67      deraadt   121: <li><h3><font color=#e00000>i386</font></h3>
1.25      deraadt   122: <ul>
1.76      deraadt   123: <a name=f00f></a>
1.72      deraadt   124: <li><font color=#009000><strong>RELIABILITY FIX</strong></font><br>
                    125: The Intel P5 F00F bug was discovered after the CDR's had already been
1.39      deraadt   126: sent to the manufacturer.  This problem permits any user who has an account
                    127: to lock your machine up using a 4-line program.  The problem only affects
                    128: Intel P5 processors (the i386, i486, P-Pro, and P-II are not vulnerable,
                    129: nor are processors by other manufacturers).
1.44      deraadt   130: <a href=ftp://ftp.openbsd.org/pub/OpenBSD/patches/2.2/i386/f00f.patch>
1.39      deraadt   131: A kernel source-code patch is available</a>.
                    132: <p>
1.72      deraadt   133: <li><font color=#009000><strong>FUNCTIONALITY FIX</strong></font><br>
                    134: Some Linux binaries will execute in SVR4 emulation mode, which is
1.33      deraadt   135: definately a problem for people who need Linux emulation to work correctly.
1.39      deraadt   136: To solve this mis-identification problem,
1.32      deraadt   137: <a href=ftp://ftp.openbsd.org/pub/OpenBSD/patches/2.2/i386/compat_linux.patch>
1.72      deraadt   138: a patch file is provided</a>.
1.39      deraadt   139: <p>
1.72      deraadt   140: <li><font color=#009000><strong>RELIABILITY FIX</strong></font><br>
                    141: APM can crash on machines without it.
1.45      deraadt   142: <a href=ftp://ftp.openbsd.org/pub/OpenBSD/patches/2.2/i386/apm.patch>
                    143: A kernel source-code patch is available</a>.
                    144: <p>
1.72      deraadt   145: <li><font color=#009000><strong>INSTALLATION PROCESS FLAW</strong></font><br>
                    146: A few people are running into this problem, particularily if they had some
1.39      deraadt   147: other *BSD operating system on their machine before trying OpenBSD: if after
                    148: installation onto an IDE-based machine, the kernel fails to mount the root
                    149: partition because it thinks that it should be opening sd0 (0x400), this means
                    150: you have incorrectly setup your disklabel for the IDE drive -- the disklabel
                    151: is indicating that the drive is SCSI.
                    152: To repair this, use the floppy to run "disklabel -E wd0", then using the
                    153: "edit" command ensure the type field is set to "ST506".
                    154: <p>
                    155: </ul>
1.47      deraadt   156: <a name=mac68k></a>
1.67      deraadt   157: <li><h3><font color=#e00000>mac68k</font></h3>
1.39      deraadt   158: <ul>
1.72      deraadt   159: <li><font color=#009000><strong>NEW SOFTWARE</strong></font><br>
                    160: Unfortunately, X11 binaries for the mac68k did not manage to make it onto the
1.69      deraadt   161: CDROM.  However, X11 for the mac68k is immediately available from
1.46      gene      162: <a href="ftp://ftp.openbsd.org/pub/OpenBSD/2.2/mac68k/X11/X11R6.tar.gz">
                    163: ftp://ftp.OpenBSD.org/pub/OpenBSD/2.2/mac68k/X11/X11R6.tar.gz</a>.  Please
                    164: be sure to read the <a href="ftp://ftp.openbsd.org/pub/OpenBSD/2.2/mac68k/X11/README.X11">README file</a> also in that directory for instructions on installing
                    165: and setting up X.
1.39      deraadt   166: <p>
1.72      deraadt   167: <li><font color=#009000><strong>INSTALLATION PROCESS FLAW</strong></font><br>
                    168: As shipped on the CDROM, both the
                    169: <a href="ftp://ftp.openbsd.org/pub/OpenBSD/2.2/mac68k/bsd-generic.tar.gz">
                    170: generic kernel</a>
                    171: and the
1.70      gene      172: <a href="ftp://ftp.openbsd.org/pub/OpenBSD/2.2/bsd-genericbsc.tar.gz">
1.72      deraadt   173: genericsbc kernel</a>
                    174: extract themselves into the wrong place in the filesystem.
1.70      gene      175: Both <strong>should</strong> extract a kernel named <tt>/bsd</tt>, but they extract
                    176: the kernel into <tt>/usr/src/sys/arch/mac68k/compile</tt> instead.
                    177: <p>
1.74      deraadt   178: This has been fixed on the ftp release of <a href=22.html>OpenBSD 2.2</a>, and
1.71      gene      179: fresh kernels are available from <a href="ftp://ftp.openbsd.org/pub/OpenBSD/2.2/mac68k">
                    180: ftp://ftp.OpenBSD.ORG/pub/OpenBSD/2.2/mac68k/</a>.  If at all possible,
                    181: installing these kernels is recommended.
                    182: <p>
                    183: A number of possible workarounds exist if you don't have easy access to ftp
                    184: the updated kernels.  The simplest of these is to use a
1.70      gene      185: MacOS program to uncompress and untar the kernel aad use the Installer's
                    186: mini-shell to "cpin" the kernel.  Alternately, you could install the kernel
                    187: with the Installer and use the mini-shell to move the binary from <tt>/usr/src/...</tt> to <tt>/bsd</tt>.
                    188: <p>
1.25      deraadt   189: </ul>
1.65      deraadt   190: <a name=sparc></a>
1.67      deraadt   191: <li><h3><font color=#e00000>sparc</font></h3>
1.25      deraadt   192: <ul>
1.72      deraadt   193: <li><font color=#009000><strong>RELIABILITY FIX</strong></font><br>
                    194: Older 4/xxx systems (particularily the 4/300's) cannot boot
1.58      deraadt   195: with the 2.2 kernel due to bugs in the scsi device driver.
1.57      jason     196: <a href=ftp://ftp.OpenBSD.org/pub/OpenBSD/patches/2.2/sparc/esp.patch>
1.72      deraadt   197: A kernel source patch is available</a>.
1.60      jason     198: Replacement kernels are available for:
                    199: <a href=ftp://ftp.OpenBSD.org/pub/OpenBSD/patches/2.2/sparc/bsd>bsd</a>,
                    200: <a href=ftp://ftp.OpenBSD.org/pub/OpenBSD/patches/2.2/sparc/bsd.scsi3>bsd.scsi3</a>,
                    201: and a replacement for bsd.rd is coming soon.
1.39      deraadt   202: <p>
1.65      deraadt   203: <a name=sparciommu></a>
1.72      deraadt   204: <li><font color=#009000><strong>RELIABILITY FIX</strong></font><br>
                    205: SPARCstation 4 and 5 (Microsparc 2) users may see kernel panics when
1.63      marc      206: using a custom kernel configured for option sun4m only.
                    207: <a href=ftp://ftp.OpenBSD.org/pub/OpenBSD/patches/2.2/sparc/sun4m.patch>
1.72      deraadt   208: A workaround (kernel source patch) is available</a>.  Apply the patch and
1.63      marc      209: then re-build your kernel.
                    210: <p>
1.39      deraadt   211: </ul>
1.67      deraadt   212: <li><h3><font color=#e00000>amiga</font></h3>
1.39      deraadt   213: <p>
                    214: <ul>
1.72      deraadt   215: <li><font color=#009000><strong>FUNCTIONALITY FIX</strong></font><br>
                    216: Missing Xamiga manual pages.  Get
1.48      niklas    217: <a href=ftp://ftp.openbsd.org/pub/OpenBSD/patches/2.2/amiga/Xamiga-manual.tgz>
                    218: this package</a> and execute, <i>as root</i>:<br>
1.74      deraadt   219: <strong><b># </b>pkg_add Xamiga-manual.tgz</strong><br>
1.51      deraadt   220: The MD5 checksum of this package is:<br>
1.49      deraadt   221: <b>MD5 (Xamiga-manual.tgz) = 2362a7857264b9d17f65cca258b42031</b><p>
1.72      deraadt   222: <li><font color=#009000><strong>FUNCTIONALITY FIX</strong></font><br>
                    223: The Ariadne ethernet support was broken, there will be both binary and
1.48      niklas    224: source level fixes available shortly.  If you are in a hurry mail
1.49      deraadt   225: <a href=mailto:niklas@openbsd.org>Niklas</a> for a test kernel.<p>
1.25      deraadt   226: </ul>
1.65      deraadt   227: <a name=pmax></a>
1.67      deraadt   228: <li><h3><font color=#e00000>pmax</font></h3>
1.25      deraadt   229: <ul>
1.72      deraadt   230: <li><font color=#009000><strong>FUNCTIONALITY FIX</strong></font><br>
                    231: There is a Year-1998 problem in the time-setting code (which causes the
1.53      deraadt   232: date and time to be set incorrectly after a reboot in 1998).
                    233: <a href=ftp://ftp.openbsd.org/pub/OpenBSD/patches/2.2/pmax/clock.patch>
1.72      deraadt   234: A source code patch file is available</a> plus replacement installation
1.53      deraadt   235: kernels for the 2.2 release at
                    236: <a href=ftp://ftp.openbsd.org/pub/OpenBSD/patches/2.2/pmax/bsd.NFS>bsd.NFS</a>,
                    237: <a href=ftp://ftp.openbsd.org/pub/OpenBSD/patches/2.2/pmax/bsd>bsd</a>,
                    238: <a href=ftp://ftp.openbsd.org/pub/OpenBSD/patches/2.2/pmax/bsd.rz0>bsd.rz0</a>.
1.66      deraadt   239: <p>
1.72      deraadt   240: <li><font color=#009000><strong>FUNCTIONALITY FIX</strong></font><br>
                    241: X11 support for the 3min and 3maxplus machines was broken
1.53      deraadt   242: due to a kernel bug.
                    243: <a href=ftp://ftp.openbsd.org/pub/OpenBSD/patches/2.2/pmax/fb.patch>
                    244: A source code patch is available</a>.
1.66      deraadt   245: <p>
1.82      deraadt   246: <a name=ldso></a>
1.72      deraadt   247: <li><font color=#009000><strong>SECURITY FIX</strong></font><br>
1.82      deraadt   248: A security problem in the shared library linker <strong>ld.so</strong>
                    249: requires that you replace it with a new binary.  The following binary
                    250: will work on both pmax and arc machines.
                    251: <a href=ftp://ftp.openbsd.org/pub/OpenBSD/patches/2.2/pmax/ld.so>
1.72      deraadt   252: The replacement binary is here</a>.
1.39      deraadt   253: <p>
1.25      deraadt   254: </ul>
1.65      deraadt   255: <a name=arc></a>
1.67      deraadt   256: <li><h3><font color=#e00000>arc</font></h3>
1.59      deraadt   257: <ul>
1.72      deraadt   258: <li><font color=#009000><strong>SECURITY FIX</strong></font><br>
                    259: A security problem in the shared library linker <strong>ld.so</strong> requires
1.82      deraadt   260: that you replace it with a new binary.  The following binary
                    261: will work on both pmax and arc machines.
                    262: <a href=ftp://ftp.openbsd.org/pub/OpenBSD/patches/2.2/pmax/ld.so>
1.72      deraadt   263: The replacement binary is here</a>.
1.69      deraadt   264: <p>
1.59      deraadt   265: </ul>
1.67      deraadt   266: <li><h3><font color=#e00000>alpha</font></h3>
1.56      deraadt   267: <p>
                    268: <ul>
1.82      deraadt   269: <li><font color=#009000><strong>MISSING FUNCTIONALITY</strong></font><br>
                    270: Network Address Translation and other parts of IP Filtering to not work
                    271: on the alpha.  This will be fixed in the 2.3 release, and perhaps earlier
                    272: in a snapshot.  There is no patch for 2.2.
1.56      deraadt   273: <p>
                    274: </ul>
1.67      deraadt   275: <li><h3><font color=#e00000>hp300</font></h3>
1.56      deraadt   276: <p>
                    277: <ul>
                    278: <li>No problems identified yet.
                    279: <p>
                    280: </ul>
1.67      deraadt   281: <li><h3><font color=#e00000>mvme68k</font></h3>
1.25      deraadt   282: <ul>
1.39      deraadt   283: <li>No problems identified yet.
                    284: <p>
1.25      deraadt   285: </ul>
                    286: </ul>
                    287: <br>
1.75      deraadt   288:
1.25      deraadt   289: <hr>
1.75      deraadt   290: <a href=errata21.html>For 2.1 errata, please refer here</a>.
1.2       deraadt   291: <hr>
                    292: <a href=orders.html><img src=back.gif border=0 alt=OpenBSD></a>
                    293: <a href=mailto:www@openbsd.org>www@openbsd.org</a>
1.88    ! deraadt   294: <br><small>$OpenBSD: errata.html,v 1.87 1998/03/31 23:24:26 deraadt Exp $</small>
1.2       deraadt   295:
                    296: </body>
                    297: </html>