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

Annotation of www/33.html, Revision 1.31

1.27      david       1: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
1.1       miod        2: <html>
                      3: <head>
                      4: <title>OpenBSD 3.3 Release</title>
                      5: <link rev=made href="mailto:www@openbsd.org">
                      6: <meta name="resource-type" content="document">
                      7: <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
                      8: <meta name="description" content="OpenBSD 3.3">
                      9: <meta name="keywords" content="openbsd,main">
                     10: <meta name="distribution" content="global">
                     11: <meta name="copyright" content="This document copyright 2003 by OpenBSD.">
                     12: </head>
                     13:
                     14: <body bgcolor="#ffffff" text="#000000" link="#24248E">
                     15:
                     16: <a href="index.html">
                     17: <img alt="[OpenBSD]" height="30" width="141" hspace="24" src="images/smalltitle.gif" border="0"></a>
                     18: <hr>
                     19:
                     20: <p>
1.5       deraadt    21: <a href="images/Barbarian.gif">
                     22: <img align="left" width="255" height="343" hspace="24"
                     23: src="images/Barbarian.gif" alt="OpenBSD 3.3 logo"></a>
1.1       miod       24: <h2><font color="#0000e0">The OpenBSD 3.3 Release:</font></h2>
                     25: <p>
                     26:
                     27: Released May 1, 2003<br>
                     28: Copyright 1997-2003, Theo de Raadt.<br>
                     29: <font color="#e00000">ISBN 0-9731791-1-2</font>
                     30: <p>
                     31:
                     32: <a href="#new">What's New</a><br>
                     33: <a href="#install">How to install</a><br>
                     34: <a href="#ports">How to use the ports tree</a><br>
                     35: <a href="orders.html">Ordering a CD set</a><br>
                     36:
                     37: <p>
                     38: <h3><font color="#0000e0">
                     39: To get the files for this release:
                     40: <ul>
                     41: <li>Order a CDROM from our <a href="orders.html">ordering system</a>.
                     42: <li>See the information on <a href="ftp.html">The FTP page</a> for
                     43:        a list of mirror machines.
                     44: <li>Go to the <font color="#e00000">pub/OpenBSD/3.3/</font> directory on
                     45:        one of the mirror sites.
                     46: <li>Briefly read the rest of this document.
1.31    ! david      47: <li>Have a look at <a href="errata33.html">The 3.3 Errata page</a> for a list
1.1       miod       48:        of bugs and workarounds.
1.14      deraadt    49: <li>See a <a href="plus33.html">detailed log of changes</a> between the
1.1       miod       50:        3.2 and 3.3 releases.
                     51: </ul>
                     52: </font></h3>
                     53: <br clear=all>
                     54: <br>
                     55: <p>
                     56:
                     57: <strong>Note:</strong> All applicable copyrights and credits can be found
1.29      pb         58: in the applicable file sources found in the files src.tar.gz, sys.tar.gz,
1.1       miod       59: XF4.tar.gz, or in the files fetched via ports.tar.gz.  The distribution
                     60: files used to build packages from the ports.tar.gz file are not included on
                     61: the CDROM because of lack of space.
                     62: <p>
                     63:
                     64: <a name="new"></a>
                     65: <hr>
                     66: <p>
                     67: <h3><font color="#0000e0">What's New</font></h3>
                     68: <p>
                     69: This is a partial list of new features and systems included in OpenBSD 3.3.
1.18      deraadt    70: For a comprehensive list, see the <a href="plus33.html">changelog</a> leading
1.1       miod       71: to 3.3.
                     72: <p>
                     73:
                     74: <ul>
                     75: <li>Integration of the
1.30      david      76: <a href="http://www.research.ibm.com/trl/projects/security/ssp/">ProPolice</a>
1.26      deraadt    77: stack protection technology, by Hiroaki Etoh, into the system
                     78: compiler. This protection is enabled by default.  With this change,
                     79: function prologues are modified to rearrange the stack: a random
                     80: canary is placed before the return address, and buffer variables are
                     81: moved closer to the canary so that regular variables are below, and
                     82: harder to smash.  The function epilogue then checks if the canary is
                     83: still intact.  If it is not, the process is terminated.  This change
                     84: makes it very hard for an attacker to modify the return address used
                     85: when returning from a function.
1.2       deraadt    86: <p>
1.1       miod       87:
1.22      deraadt    88: <li>W^X (pronounced: "W xor X") on architectures capable of
1.10      deraadt    89: pure execute-bit support in the MMU (sparc, sparc64, alpha,
                     90: hppa). This is a fine-grained memory permissions layout, ensuring that
                     91: memory which can be written to by application programs can not be
1.22      deraadt    92: executable at the same time and vice versa.  This raises the bar on
                     93: potential buffer overflows and other attacks: as a result, an attacker
                     94: is unable to write code anywhere in memory where it can be executed.
1.26      deraadt    95: (NOTE: i386 and powerpc do not support W^X in 3.3; however, 3.3-current
                     96: already supports it on i386, and both these processors are expected to
                     97: support this change in 3.4).
1.1       miod       98: <p>
                     99:
1.2       deraadt   100: <li>Still more reduction in setuid and setgid binaries, and more chroot
1.22      deraadt   101: use throughout the system.  While some programs are still setuid or
                    102: setgid, almost all of them grab a resource and then quickly revoke
                    103: privilege.
1.1       miod      104: <p>
                    105:
1.22      deraadt   106: <li>The X window server and xconsole now use privilege separation,
                    107: for better security.  Also, xterm has been modified to do privilege
                    108: revocation.  xdm runs as a special user and group, to further constrain
                    109: what might go wrong.
1.1       miod      110: <p>
                    111:
                    112: <li>As usual, improvements to the documentation, notably the man pages and
1.7       jsyn      113: the Web FAQ. An increasingly large part of the website is available in several
1.1       miod      114: languages.
                    115: <p>
                    116:
                    117: <li>More complete collection and better tested set of "ports".
                    118: setuid/setgid ports have been significantly reduced as well.  Many of the
                    119: ones that remain setuid have been modified to revoke privileges as early
                    120: as possible.
                    121: <p>
                    122:
                    123: <li>Over 2000 pre-built and tested packages.
                    124: <p>
                    125:
                    126: <li>Significant improvements to the pthread library.
                    127: <p>
                    128:
                    129: <li>An incredible amount of enhancements and stability improvements to
                    130: our packet filter, <a
                    131: href="http://www.openbsd.org/cgi-bin/man.cgi?query=pf&amp;sektion=4">pf</a>,
1.8       henning   132: including:
1.1       miod      133: <ul>
1.17      deraadt   134: <li>Queue, a bandwidth management system (uses altq underneath)
                    135: <li>Anchors, allowing subrulesets which can be loaded and modified independently
                    136: <li>Tables, a very efficient way for large address lists in rules
                    137: <li>Address pools, redirect/NAT to multiple addresses and thus load balancing
                    138: <li>Configuration language has been made much more flexible
                    139: <li>TCP window scaling support
                    140: <li>Full CIDR support
                    141: <li>Early checksum verification return on invalid packets
                    142: <li>Performance boost: large rulesets load much faster now
1.22      deraadt   143: <li><a href="http://www.openbsd.org/cgi-bin/man.cgi?query=spamd">spamd</a>,
                    144:     a spam deferral daemon, which SMTP connections can be redirected to.
                    145:     This daemon handles connections based on black lists and white lists,
                    146:     tar-pits the connections, and ensures that the spammer knows why their
                    147:     mail has not been accepted.
1.1       miod      148: </ul>
1.11      jason     149:
                    150: <p>
                    151:
                    152: <li>Much improved <a href="sparc64.html">sparc64</a> support: support for
1.13      miod      153: more models and several major bugs eradicated.
1.8       henning   154:
1.1       miod      155: <p>
                    156:
                    157: <li>The system includes the following major components from outside suppliers:
                    158: <ul>
                    159: <li>XFree86 4.2.1 (and i386 contains 3.3.X servers also, thus providing support for all chipsets)
1.4       miod      160: <li>Gcc 2.95.3 (+ patches)
                    161: <li>Perl 5.8.0 (+ patches)
1.3       henning   162: <li>Apache 1.3.27, mod_ssl 2.8.12, DSO support (+ patches)
1.1       miod      163: <li>OpenSSL 0.9.7beta3 (+ patches)
1.4       miod      164: <li>Groff 1.15
1.24      miod      165: <li>Sendmail 8.12.9
1.4       miod      166: <li>Bind 9.2.2 (+ patches)
1.23      margarid  167: <li>Lynx 2.8.2rel.1 with HTTPS support added (+ patches)
1.4       miod      168: <li>Sudo 1.6.7
                    169: <li>Ncurses 5.2
1.1       miod      170: <li>Latest KAME IPv6
1.12      hin       171: <li>KTH Kerberos 1.1.1
1.1       miod      172: <li>Heimdal 0.4e (+ patches)
                    173: <li>OpenSSH 3.6
                    174: </ul>
                    175: <p>
                    176:
                    177: <li>Many improvements for security and reliability (look for the red
1.18      deraadt   178: print in the <a href="plus33.html">complete changelog</a>).
1.1       miod      179: <p>
1.11      jason     180: <li> and much more.
                    181:
1.1       miod      182: </ul>
                    183:
                    184: <a name="install"></a>
                    185: <hr>
                    186: <p>
                    187: <h3><font color="#0000e0">How to install</font></h3>
                    188: <p>
                    189: Following this are the instructions which you would have on a piece of
                    190: paper if you had purchased a CDROM set instead of doing an alternate
                    191: form of install.  The instructions for doing an ftp (or other style
                    192: of) install are very similar; the CDROM instructions are left intact
                    193: so that you can see how much easier it would have been if you had
                    194: purchased a CDROM instead.
                    195: <p>
                    196:
                    197: <hr>
1.15      drahn     198: Please refer to the following files on the three CDROMs or ftp mirror for
                    199: extensive details on how to install OpenBSD 3.3 on your machine:
1.1       miod      200: <p>
                    201: <ul>
                    202: <li>   CD1:3.3/i386/INSTALL.i386
                    203: <p>
                    204: <li>   CD2:3.3/macppc/INSTALL.macppc
                    205: <li>   CD2:3.3/vax/INSTALL.vax
                    206: <p>
                    207: <li>   CD3:3.3/sparc/INSTALL.sparc
                    208: <li>   CD3:3.3/sparc64/INSTALL.sparc64
1.15      drahn     209: <p>
                    210: <li>   FTP:.../OpenBSD/3.3/alpha/INSTALL.alpha
                    211: <li>   FTP:.../OpenBSD/3.3/hp300/INSTALL.hp300
1.20      mickey    212: <li>   FTP:.../OpenBSD/3.3/hppa/INSTALL.hppa
1.15      drahn     213: <li>   FTP:.../OpenBSD/3.3/mac68k/INSTALL.mac68k
                    214: <li>   FTP:.../OpenBSD/3.3/mvme68k/INSTALL.mvme68k
1.1       miod      215: </ul>
                    216: <hr>
                    217:
                    218: <p>
                    219: Quick installer information for people familiar with OpenBSD, and the
                    220: use of the "disklabel -E" command.  If you are at all confused when
                    221: installing OpenBSD, read the relevant INSTALL.* file as listed above!
                    222: <p>
                    223:
                    224: <h3><font color="#e00000">OpenBSD/i386:</font></h3>
                    225: <ul>
                    226: Play with your BIOS options to enable booting from a CD. The OpenBSD/i386
                    227: release is on CD1. If your BIOS does not support booting from CD, you will need
                    228: to create a boot floppy to install from. To create a boot floppy write
                    229: <i>CD1:3.3/i386/floppy33.fs</i> to a floppy and boot via the floppy drive.
                    230:
                    231: <p>
                    232: Use <i>CD1:3.3/i386/floppyB33.fs</i> instead for greater scsi controller
                    233: support, or <i>CD1:3.3/i386/floppyC33.fs</i> for better laptop support.
                    234:
                    235: <p>
                    236: If you are planning on dual booting OpenBSD with another OS, you will need to read the included INSTALL.i386 document.
                    237:
                    238: <p>
                    239: To make a boot floppy under MS-DOS, use the &quot;rawrite&quot; utility located
                    240: at <i>CD:/3.3/tools/rawrite.exe</i>. To make the boot floppy under a Unix OS, use the <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=dd&amp;sektion=1">dd(1)</a> utility. The following is an example usage of <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=dd&amp;sektion=1">dd(1)</a>, where the device could be &quot;floppy&quot;, &quot;rfd0c&quot;, or &quot;rfd0a&quot;.
                    241:
                    242: <ul><pre>
                    243: # <strong>dd if=&lt;file&gt; of=/dev/&lt;device&gt; bs=32k</strong>
                    244: </pre></ul>
                    245:
                    246: <p>
1.18      deraadt   247: Make sure you use properly formatted perfect floppies with NO BAD BLOCKS or your install will most likely fail. For more information on creating a boot floppy and installing OpenBSD/i386 please refer to <a href="faq/faq4.html#MkFlop">FAQ4.1</a>.
1.1       miod      248: </ul>
                    249:
                    250: <p>
                    251: <h3><font color="#e00000">OpenBSD/macppc:</font></h3>
                    252: <ul>
                    253: Put the CD2 in your CDROM drive and poweron your machine while holding down the
                    254: <i>C</i> key until the display turns on and shows <i>OpenBSD/macppc boot</i>.
                    255:
                    256: <p>
                    257: Alternatively, at the Open Firmware prompt, enter <i>boot cd:,ofwboot
                    258: /3.3/macppc/bsd.rd</i>
                    259: </ul>
                    260:
                    261: <p>
                    262: <h3><font color="#e00000">OpenBSD/vax:</font></h3>
                    263: <ul>
                    264: Boot over the network via mopbooting as described in INSTALL.vax.
                    265: </ul>
                    266:
                    267: <p>
                    268: <h3><font color="#e00000">OpenBSD/sparc:</font></h3>
                    269: <ul>
                    270: The 3.3 release of OpenBSD/sparc is located on CD3. To boot off of this CD you can use one of the two commands listed below, depending on the version of your ROM.
                    271:
                    272: <ul><pre>
                    273: > <strong>boot cdrom 3.3/sparc/bsd.rd</strong>
                    274: or
                    275: > <strong>b sd(0,6,0)3.3/sparc/bsd.rd</strong>
                    276: </pre></ul>
                    277:
                    278: <p>
                    279: If your sparc does not have a CD drive, you can alternatively boot from floppy.
1.18      deraadt   280: To do so you need to write &quot;CD3:3.3/sparc/floppy33.fs&quot; to a floppy. For more information see <a href="faq/faq4.html#MkFlop">FAQ4.1</a>. To boot from the floppy use one of the two commands listed below, depending on the version of your ROM.
1.1       miod      281:
                    282: <ul><pre>
                    283: > <strong>boot floppy</strong>
                    284: or
                    285: > <strong>boot fd()</strong>
                    286: </pre></ul>
                    287:
                    288: <p>
                    289: Make sure you use a properly formatted floppy with NO BAD BLOCKS or your install will most likely fail.
                    290:
                    291: <p>
                    292: If your sparc doesn't have a floppy drive nor a CD drive, you can either
                    293: setup a bootable tape, or install via network, as told in the
                    294: INSTALL.sparc file.
                    295: </ul>
                    296:
                    297: <p>
                    298: <h3><font color="#e00000">OpenBSD/sparc64:</font></h3>
                    299: <ul>
                    300: Put the CD3 in your CDROM drive and type <i>boot cdrom</i>.
                    301:
                    302: <p>
                    303: If this doesn't work, or if you don't have a CDROM drive, you can write
                    304: <i>CD3:3.3/sparc64/floppy33.fs</i> to a floppy and boot it with <i>boot
                    305: floppy</i>.<br>
                    306: Make sure you use a properly formatted floppy with NO BAD BLOCKS or your install will most likely fail.
                    307:
                    308: <p>
                    309: You can also write <i>CD3:3.3/sparc64/miniroot33.fs</i> to the swap partition on
                    310: the disk and boot with <i>boot disk:b</i>.
                    311:
                    312: <p>
                    313: If nothing works, you can boot over the network as described in INSTALL.sparc64
                    314: </ul>
                    315:
                    316: <p>
1.15      drahn     317: <h3><font color="#e00000">OpenBSD/alpha:</font></h3>
                    318: <ul>
                    319: <p>Write <i>FTP:3.3/alpha/floppy33.fs</i> or
                    320: <i>FTP:3.3/alpha/floppyB33.fs</i> (depending on your machine) to a diskette and
                    321: enter <i>boot dva0</i>. Refer to INSTALL.alpha for more details.
                    322:
                    323: <p>
                    324: Make sure you use a properly formatted floppy with NO BAD BLOCKS or your install will most likely fail.
                    325:
                    326: </ul>
                    327:
                    328: <p>
                    329: <h3><font color="#e00000">OpenBSD/hp300:</font></h3>
                    330: <ul>
                    331: <p>
                    332: Boot over the network by following the instructions in INSTALL.hp300.
                    333: </ul>
                    334:
                    335: <p>
1.28      miod      336: <h3><font color="#e00000">OpenBSD/hppa:</font></h3>
                    337: <ul>
                    338: <p>
                    339: Boot over the network by following the instructions in INSTALL.hppa or the
                    340: <a href="hppa.html#netboot">hppa platform page</a>.
                    341: </ul>
                    342:
                    343: <p>
1.15      drahn     344: <h3><font color="#e00000">OpenBSD/mac68k:</font></h3>
                    345: <ul>
                    346: <p>
                    347: Boot MacOS as normal and partition your disk with the appropriate A/UX
                    348: configurations.  Then, extract the Macside utilities from
1.25      nick      349: <i>FTP:3.3/mac68k/utils</i> onto your hard disk.  Run Mkfs to create your
1.15      drahn     350: filesystems on the A/UX partitions you just made.  Then, use the
1.25      nick      351: "BSD/Mac68k Installer" to copy all the sets in <i>FTP:3.3/mac68k/</i> onto your
                    352: partitions.  Finally, you will be ready to configure the "BSD/Mac68k
                    353: Booter" with the location of your kernel and boot the system.
1.15      drahn     354: </ul>
                    355:
                    356: <p>
                    357: <h3><font color="#e00000">OpenBSD/mvme68k:</font></h3>
                    358: <ul>
                    359: <p>
                    360: You can create a bootable installation tape or boot over the network.<br>
                    361: The network boot requires a MVME68K BUG version that supports the <i>NIOT</i>
                    362: and <i>NBO</i> debugger commands. Follow the instructions in INSTALL.mvme68k
                    363: for more details.
                    364: </ul>
                    365:
                    366: <p>
1.1       miod      367: <h3><font color="#e00000">Notes about the source code:</font></h3>
                    368: <ul>
                    369: src.tar.gz contains a source archive starting at /usr/src.  This file
                    370: contains everything you need except for the kernel sources, which are
                    371: in a separate archive.  To extract:
                    372: <p>
                    373: <ul><pre>
                    374: # <strong>mkdir -p /usr/src</strong>
                    375: # <strong>cd /usr/src</strong>
                    376: # <strong>tar xvfz /tmp/src.tar.gz</strong>
                    377: </pre></ul>
                    378: <p>
1.29      pb        379: sys.tar.gz contains a source archive starting at /usr/src/sys.
1.1       miod      380: This file contains all the kernel sources you need to rebuild kernels.
                    381: To extract:
                    382: <p>
                    383: <ul><pre>
                    384: # <strong>mkdir -p /usr/src/sys</strong>
                    385: # <strong>cd /usr/src</strong>
1.29      pb        386: # <strong>tar xvfz /tmp/sys.tar.gz</strong>
1.1       miod      387: </pre></ul>
                    388: <p>
                    389: Both of these trees are a regular CVS checkout.  Using these trees it
                    390: is possible to get a head-start on using the anoncvs servers as
1.18      deraadt   391: described <a href="anoncvs.html">here</a>.
1.1       miod      392: Using these files
                    393: results in a much faster initial CVS update than you could expect from
                    394: a fresh checkout of the full OpenBSD source tree.
                    395: <p>
                    396: </ul>
                    397: <a name="ports"></a>
                    398: <hr>
                    399: <p>
                    400: <h3><font color="#0000e0">Ports Tree</font></h3>
                    401: <p>
                    402: A ports tree archive is also provided.  To extract:
                    403: <p>
                    404: <ul><pre>
                    405: # <strong>cd /usr</strong>
                    406: # <strong>tar xvfz /tmp/ports.tar.gz</strong>
                    407: # <strong>cd ports</strong>
                    408: </pre></ul>
                    409: <p>
                    410: The <i>ports/</i> subdirectory is a checkout of the OpenBSD ports tree.  Go
1.18      deraadt   411: read the <a href="ports.html">ports</a> page
1.1       miod      412: if you know nothing about ports
                    413: at this point.  This text is not a manual of how to use ports.
                    414: Rather, it is a set of notes meant to kickstart the user on the
                    415: OpenBSD ports system.
                    416: <p>
                    417: Certainly, the OpenBSD ports system is not complete.  It is doubtful it
                    418: will ever be. However, it is growing very fast and getting more stable.
                    419: Almost all ports provided with this release should build without problems
                    420: on most architectures (over 2000 packages build on i386, for instance).
                    421: <p>
                    422: The <i>ports/</i> directory represents a CVS (see the manpage for
                    423: <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=cvs&amp;apropos=0&amp;sektion=1&amp;manpath=OpenBSD+Current&amp;arch=i386&amp;format=html">
                    424: cvs(1)</a> if
                    425: you aren't familiar with CVS) checkout of our ports.  As with our complete
                    426: source tree, our ports tree is available via anoncvs.  So, in
                    427: order to keep current with it, you must make the <i>ports/</i> tree
                    428: available on a read-write medium and update the tree with a command
                    429: like:
                    430: <p>
                    431: <ul><pre>
1.15      drahn     432: # <strong>cd [portsdir]/; cvs -d anoncvsserver.openbsd.org:/cvs update -Pd -rOPENBSD_3_3</strong>
1.1       miod      433: </pre></ul>
                    434: <p>
                    435: [Of course, you must replace the local directory and server name here
                    436: with the location of your ports collection and a nearby anoncvs
                    437: server.]
                    438: <p>
                    439: Note that most ports are available as packages through ftp. Updated
                    440: packages for the 3.3 release will be made available if problems arise.
                    441: <p>
                    442: If you're interested in seeing a port added, would like to help out, or just
                    443: would like to know more, the mailing list ports@openbsd.org is a good
                    444: place to know.
                    445: <p>
                    446:
                    447: <hr>
                    448: <a href="index.html"><img height="24" width="24" src="back.gif" border="0"
                    449: alt="OpenBSD"></a>
                    450: <a href="mailto:www@openbsd.org">www@openbsd.org</a>
                    451: <br><small>
1.31    ! david     452: $OpenBSD: 33.html,v 1.30 2003/09/04 03:11:23 david Exp $
1.1       miod      453: </small>
                    454:
                    455: </body>
                    456: </html>