ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/src/trunk/UPDATING
(Generate patch)

Comparing trunk/UPDATING (file contents):
Revision 4166 by laffer1, Thu Sep 29 00:04:55 2011 UTC vs.
Revision 7687 by laffer1, Sun Aug 7 21:03:26 2016 UTC

# Line 1 | Line 1
1 < Updating Information for MidnightBSD users
1 > Updating Information for MidnightBSD users.
2  
3 + 20160807:
4 +        Implement several changes to libmport to fix some memory corruption issues.
5 +
6 + 20160806:
7 +        sqlite3 3.13.0
8 +
9 + 20160805:
10 +        Merged fixes for libmport that improve error handling when installing packages. Also
11 +        support mkdir -p like behavior for plist entries.
12 +
13 + 20160531:
14 +        Fix four security issues with MidnightBSD.
15 +
16 +        The implementation of TIOCGSERIAL ioctl(2) does not clear the output
17 +        struct before sending to userland in the linux emulation layer.
18 +
19 +        The compat 43 stat(2) system call exposes kernel stack to userland.
20 +
21 +        libarchive - CVE-2015-2304 and CVE-2013-0211 fix issues with
22 +        cpio directory traversal and an integer signedness error in the archive
23 +        write zip data routine.
24 +
25 +
26 + 20160528:
27 +        Fixed minor issues with mined(1) and msearch(1).
28 +
29 + 20160526:
30 +        Add support for Ivybridge and Haswell Intel CPUs to hwpmc(4).
31 +
32 +        Fix libpmc(3) build with clang compiler.
33 +
34 + 20160519:
35 +        Kernel Security updates
36 +
37 +        atkbd(4) - Incorrect signedness comparison in the ioctl(2) handler allows a malicious
38 +        local user to overwrite a portion of the kernel memory.
39 +
40 +        Incorrect argument handling in sendmsg(2)
41 +
42 +        Incorrect argument handling in the socket code allows malicious local
43 +        user to overwrite large portion of the kernel memory.
44 +
45 + 20160505:
46 +        OpenSSL security patch
47 +
48 +        The padding check in AES-NI CBC MAC was rewritten to be in constant time
49 +        by making sure that always the same bytes are read and compared against
50 +        either the MAC or padding bytes. But it no longer checked that there was
51 +        enough data to have both the MAC and padding bytes. [CVE-2016-2107]
52 +
53 +        An overflow can occur in the EVP_EncodeUpdate() function which is used for
54 +        Base64 encoding of binary data. [CVE-2016-2105]
55 +
56 +        An overflow can occur in the EVP_EncryptUpdate() function, however it is
57 +        believed that there can be no overflows in internal code due to this problem.
58 +        [CVE-2016-2106]
59 +
60 +        When ASN.1 data is read from a BIO using functions such as d2i_CMS_bio()
61 +        a short invalid encoding can casuse allocation of large amounts of memory
62 +        potentially consuming excessive resources or exhausting memory.
63 +        [CVE-2016-2109]
64 +
65 + 20160412:
66 +        0.8 stable branch created. Continue development as 0.9.
67 +
68 +        Fix several issues with wait6 system call addition.
69 +
70 + 20160409:
71 +        libmport now supports two new plist formats:
72 +        @(root,wheel,4775) myfile
73 +        @dir(root,wheel,775) mydir
74 +
75 +        On delete, absoluate paths are now handled properly.
76 +
77 + 20160317:
78 +        OpenSSH doesn't have the luck of the Irish.
79 +
80 +        Fix a security issue with OpenSSH X11 forwarding that can allow an attacker
81 +        run shell commands on the call to xauth.
82 +
83 +        Incorrect argument validation in sysarch(2)
84 +
85 +        A special combination of sysarch(2) arguments, specify a request to
86 +        uninstall a set of descriptors from the LDT.  The start descriptor
87 +        is cleared and the number of descriptors are provided.  Due to invalid
88 +        use of a signed intermediate value in the bounds checking during argument
89 +        validity verification, unbound zero'ing of the process LDT and adjacent
90 +        memory can be initiated from usermode.
91 +
92 +        Patch obtained from FreeBSD.
93 +
94 + 20160229:
95 +        top now displays information on ZFS arc cache.
96 +
97 + 20160228:
98 +        llvm + clang 3.3 is now the default compiler in MidnightBSD.
99 +
100 + 20160222:
101 +        Introduce pipe2 to linux emulation layer.
102 +
103 + 20160114:
104 +        OpenSSL
105 +
106 +        The signature verification routines will crash with a NULL pointer dereference
107 +        if presented with an ASN.1 signature using the RSA PSS algorithm and absent
108 +        mask generation function parameter. [CVE-2015-3194]
109 +
110 +        When presented with a malformed X509_ATTRIBUTE structure, OpenSSL will leak
111 +        memory. [CVE-2015-3195]
112 +
113 +        If PSK identity hints are received by a multi-threaded client then the values
114 +        are incorrectly updated in the parent SSL_CTX structure.  [CVE-2015-3196]
115 +
116 +        Fix security on bsnmpd configuration file during installation.
117 +
118 +        TCP MD5 signature denial of service
119 +
120 +        A programming error in processing a TCP connection with both TCP_MD5SIG
121 +        and TCP_NOOPT socket options may lead to kernel crash.
122 +
123 +        SCTP
124 +
125 +        A lack of proper input checks in the ICMPv6 processing in the SCTP stack
126 +        can lead to either a failed kernel assertion or to a NULL pointer
127 +        dereference.  In either case, a kernel panic will follow.
128 +
129 + 20160102:
130 +        Happy New Year
131 +
132 + 20151101:
133 +        Increase kern.ipc.somaxconn default to 256.
134 +
135 + 20151017:
136 +        Add initial statistics api to libmport and a driver to print
137 +        it in mport(1).
138 +
139 + 20151002:
140 +        Revised rpcbind(8) patch to fix issues with NIS
141 +
142 + 20150930:
143 +        In rpcbind(8), netbuf structures are copied directly, which would result in
144 +        two netbuf structures that reference to one shared address buffer.  When one
145 +        of the two netbuf structures is freed, access to the other netbuf structure
146 +        would result in an undefined result that may crash the rpcbind(8) daemon.
147 +
148 + 20150926:
149 +        libmport now supports @preexec, @postexec, @preunexec and @postunexec
150 +        to replace @exec and @unexec.  
151 +
152 +        pre exec runs afer pre-install scripts but before actual installation
153 +
154 +        post exec runs after install but before post install scripts and
155 +        pkg message.
156 +
157 +        pre unexec runs before pre uninstall scripts
158 +
159 +        post unexec runs before de-install scripts and after file removal.
160 +
161 + 20150917:
162 +        Fix kqueue write events for files > 2GB
163 +
164 + 20150825:
165 +        kernel:
166 +        fix a security issue on amd64 where the GS segment CPU register can be changed via
167 +        userland value in kernel mode by using an IRET with #SS or #NP exceptions.
168 +
169 +        openssh:
170 +        A programming error in the privileged monitor process of the sshd(8)
171 +        service may allow the username of an already-authenticated user to be
172 +        overwritten by the unprivileged child process.
173 +
174 +        A use-after-free error in the privileged monitor process of he sshd(8)
175 +        service may be deterministically triggered by the actions of a
176 +        compromised unprivileged child process.
177 +
178 +        A use-after-free error in the session multiplexing code in the sshd(8)
179 +        service may result in unintended termination of the connection.
180 +
181 + 20150818:
182 +        expat security fix
183 +
184 + 20150815:
185 +        libc changes:
186 +        setmode(3) now returns errno consistently on error.
187 +        libc will compile without error using clang
188 +
189 + 20150814:
190 +        wait6 system call added.
191 +
192 +        date(1) now handles non numeric numbers passed to -r
193 +        like GNU coreutils for improved compatibility.
194 +
195 + 20150811:
196 +        ata(4) AMD Hudson2 SATA controller support.
197 +        Intel lynxpoint SATA.
198 +
199 +        Fix some const warnings when building several device drivers
200 +        with llvm/clang.
201 +
202 +        Sync cas(4) with FreeBSD 9-stable.
203 +
204 +        Fix some minor issues with ath(4).
205 +
206 + 20150809:
207 +        xz 5.0.8
208 +
209 + 20150808:
210 +        libmport now logs installation and removal of packages to syslog.
211 +
212 + 20150805:
213 +        routed - fix a potential security issue where traffic from outside
214 +        the network can disrupt routing.
215 +
216 +        bsd patch - fix a bug with ed(1) scripts allowing unsanitized input
217 +        to run.
218 +
219 + 20150802:
220 +        jansson 2.7 library added. (libjansson is a JSON library in C)
221 +
222 + 20150728:
223 +        Heimdal 1.5.2 (kerberos implementation)
224 +
225 +        OpenSSL 1.0.1o
226 +
227 +        cpucontrol(8) now supports VIA CPUs. Synced with FreeBSD 9.2.
228 +
229 +        TCP Resassemly resource exhaustion bug:
230 +        There is a mistake with the introduction of VNET, which converted the
231 +        global limit on the number of segments that could belong to reassembly
232 +        queues into a per-VNET limit.  Because mbufs are allocated from a
233 +        global pool, in the presence of a sufficient number of VNETs, the
234 +        total number of mbufs attached to reassembly queues can grow to the
235 +        total number of mbufs in the system, at which point all network
236 +        traffic would cease.
237 +        Obtained from: FreeBSD 8
238 +
239 +        OpenSSH
240 +
241 +        Fix two security vulnerabilities:
242 +        OpenSSH clients does not correctly verify DNS SSHFP records when a server
243 +        offers a certificate. [CVE-2014-2653]
244 +
245 +        OpenSSH servers which are configured to allow password authentication
246 +        using PAM (default) would allow many password attempts. A bug allows
247 +        MaxAuthTries to be bypassed. [CVE-2015-5600]
248 +
249 +
250 +        Switch to bsdpatch (from FreeBSD & OpenBSD)
251 +
252 + 20150726:
253 +        BSD Sort updated
254 +
255 +        sqlite 3.8.10.2
256 +
257 + 20150725:
258 +        Import reallocarray from OpenBSD's libc.  
259 +
260 +        The reallocarray() function is similar to realloc() except it operates on
261 +        nmemb members of size size and checks for integer overflow in the
262 +        calculation nmemb * size.
263 +
264 + 20150722:
265 +        Fix a bug where TCP connections transitioning to LAST_ACK
266 +        state can get stuck. This can result in a denial of service.
267 +
268 + 20150715:
269 +        libmport now supports @shell and @sample in plists. This means that
270 +        a shell port can automatically add an entry to /etc/shells and remove
271 +        it upon uninstallation. For sample files, a copy is made without the
272 +        .sample extension if one does not exist and it is removed automatically
273 +        only if the md5 hash of the two files is the same.
274 +
275 + 20150709:
276 +        flex 2.5.39
277 +
278 + 20150702:
279 +        ZFS in MidnightBSD now supports lz4 compression. You can enable it
280 +        with zfs set compression=lz4 pool/path.
281 +
282 +        Verify it's working with
283 +        zfs get compressratio pool/path
284 +        du -h -s *
285 +
286 +        Note you must write new data when turning on compression to see
287 +        changes. Existing files are not compressed.
288 +
289 +        Note: While we used the same basic implementation of lz4 that
290 +        FreeBSD and OpenZFS uses, we did not yet implement features support
291 +        and the zfs version still reports 28. This may come in a future update
292 +        to ZFS.
293 +
294 + 20150621:
295 +        libmport now automatically stops services when deleting packages.
296 +
297 +        The package must have installed an rc.d script in /usr/local/etc
298 +        for this to work. This is equivalent to running service <name> onestop
299 +
300 + 20150618:
301 +        Sendmail
302 +
303 +        With the recent changes to OpenSSL to block 512 bit certificates,
304 +        sendmail can't connect with TLS to some servers.
305 +
306 +        Increase the default size to 1024 bit for client connections to
307 +        match the server configuration.
308 +
309 +        ZFS
310 +
311 +        Added ZFS TRIM support which is enabled by default. To disable
312 +        ZFS TRIM support set vfs.zfs.trim.enabled=0 in loader.conf.
313 +
314 +        Creating new ZFS pools and adding new devices to existing pools
315 +        first performs a full device level TRIM which can take a significant
316 +        amount of time. The sysctl vfs.zfs.vdev.trim_on_init can be set to 0
317 +        to disable this behaviour.
318 +
319 +        ZFS TRIM requires the underlying device support BIO_DELETE which
320 +        is currently provided by methods such as ATA TRIM and SCSI UNMAP
321 +        via CAM, which are typically supported by SSD's.
322 +
323 +        Stats for ZFS TRIM can be monitored by looking at the sysctl's
324 +        under kstat.zfs.misc.zio_trim.
325 +
326 +        rc.d
327 +
328 +        Reworked handling of cleanvar and FILESYSTEMS so that FILESYSTEMS
329 +        implies everything is mounted and ready to go.
330 +
331 +        Changed how ip6addressctl maps IPv6 on startup.
332 +
333 + 20150613:
334 +        tzdata 2015d
335 +
336 + 20150612:
337 +        OpenSSL 0.9.8zg
338 +
339 + 20150419:
340 +        MidnightBSD 0.6 stable branch created. Continue 0.7
341 +        development.
342 +
343 + 20150418:
344 +        sqlite 3.8.9
345 +
346 + 20150407:
347 +        Fix two security vulnerabilities:
348 +
349 +        The previous fix for IGMP had an overflow issue. This has been corrected.
350 +
351 +        ipv6: The Neighbor Discover Protocol allows a local router to advertise a
352 +        suggested Current Hop Limit value of a link, which will replace
353 +        Current Hop Limit on an interface connected to the link on the MidnightBSD
354 +        system.
355 +
356 + 20150319:
357 +        OpenSSL 0.9.8.zf
358 +
359 +        mksh R50e
360 +
361 +        Apple mDNSResponder 561.1.1
362 +
363 + 20150306:
364 +        Upgrade OpenSSL to 0.9.8ze
365 +
366 + 20150225:
367 +        Fix two security vulnerabilities.
368 +
369 +        1. BIND servers which are configured to perform DNSSEC validation and which
370 +        are using managed keys (which occurs implicitly when using
371 +        "dnssec-validation auto;" or "dnssec-lookaside auto;") may exhibit
372 +        unpredictable behavior due to the use of an improperly initialized
373 +        variable.
374 +
375 +        CVE-2015-1349
376 +
377 +        2. An integer overflow in computing the size of IGMPv3 data buffer can result
378 +        in a buffer which is too small for the requested operation.
379 +
380 +        This can result in a DOS attack.
381 +
382 + 20141211:
383 +        Fix a security issue with file and libmagic that can allow
384 +        an attacker to create a denial of service attack on any
385 +        program that uses libmagic.
386 +
387 + 20141109:
388 +        Fix building perl during buildworld when the GDBM port is installed.
389 +
390 + 20141106:
391 +        tzdata 2014i
392 +
393 + 20141102:
394 +        serf 1.3.8
395 +
396 + 20141031:
397 +        tnftp 20141031 fixes a security vulnerability with tnftp,
398 +        CVE-2014-8517.
399 +
400 + 20141028:
401 +        OpenSSL 0.9.8zc
402 +
403 + 20141021:
404 +        Fix several security vulnerabilities in routed, rtsold,
405 +        and namei with respect to Capsicum sandboxes looking up
406 +        nonexistent path names and leaking memory.
407 +
408 +        The input path in routed(8) will accept queries from any source and
409 +        attempt to answer them.  However, the output path assumes that the
410 +        destination address for the response is on a directly connected
411 +        network.
412 +
413 +        Due to a missing length check in the code that handles DNS parameters,
414 +        a malformed router advertisement message can result in a stack buffer
415 +        overflow in rtsold(8).
416 +
417 + 20141011:
418 +        mksh R50d - fix field splitting regression and null
419 +        pointer dereference
420 +
421 +        xz 5.0.7
422 +
423 +        OpenSSH 6.6p1
424 +
425 + 20141004:
426 +        mksh R50c - security update for environment var bug with
427 +        foo vs foo+    
428 +
429 + 20141002:
430 +        sqlite 3.8.6
431 +
432 +        sudo 1.7.8 - some issues with the current version, but we're slowly
433 +        getting up to date.
434 +
435 + 20141001:
436 +        mksh R50b
437 +
438 +        libmport now supports plist commands @dir, @owner, @group, @mode.
439 +
440 +        sudo 1.7.6p2
441 +
442 + 20140916:
443 +        Fix a security issue with TCP SYN.
444 +
445 +        When a segment with the SYN flag for an already existing connection arrives,
446 +        the TCP stack tears down the connection, bypassing a check that the
447 +        sequence number in the segment is in the expected window.
448 +
449 + 20140909:
450 +        Fixed a bug with our clearenv(3) implementation that caused segfaults
451 +        with some programs including Dovecot.
452 +
453 +        OpenSSL security patch:
454 +
455 +        The receipt of a specifically crafted DTLS handshake message may cause OpenSSL
456 +        to consume large amounts of memory. [CVE-2014-3506]
457 +
458 +        The receipt of a specifically crafted DTLS packet could cause OpenSSL to leak
459 +        memory. [CVE-2014-3507]
460 +
461 +        A flaw in OBJ_obj2txt may cause pretty printing functions such as
462 +        X509_name_oneline, X509_name_print_ex et al. to leak some information from
463 +        the stack. [CVE-2014-3508]
464 +
465 +        OpenSSL DTLS clients enabling anonymous (EC)DH ciphersuites are subject to
466 +        a denial of service attack. [CVE-2014-3510]
467 +
468 + 20140902:
469 +        We're now 0.6-CURRENT
470 +
471 +        Update USB quirks to support K70 Corsair keyboard, and several
472 +        other devices.
473 +
474 + 20140827:
475 +        Perl 5.18.2
476 +
477 + 20140728:
478 +        Jails now run shutdown scripts.
479 +
480 + 20140710:
481 +        Fix a vulnerability in the control message API. A buffer is not properly cleared
482 +        before sharing with userland.
483 +
484 + 20140701:
485 +        MKSH R50
486 +
487 + 20140630:
488 +        File 5.19
489 +
490 + 20140605:
491 +        Fix four security issues with OpenSSL
492 +
493 + 20140604:
494 +        Sendmail failed to properly set close-on-exec for open file descriptors.
495 +
496 +        ktrace page fault kernel trace entries were set to an incorrect size which resulted
497 +        in a leak of information.
498 +
499 + 20140430:
500 +        Fix a TCP reassembly bug that could result in a DOS attack
501 +        of the system. It may be possible to obtain portions
502 +        of kernel memory as well.
503 +
504 + 20140411:
505 +        Update zlib to 1.2.7
506 +
507 + 20140122:
508 +        Support for username with length 32. Previous limit was 16
509 +
510 + 20140114:
511 +        Fix two security vulnerabilities.
512 +
513 +        bsnmpd contains a stack overflow when sent certain queries.
514 +
515 +        bind 9.8 when using NSEC3-signed zones zones, will crash with special
516 +        crafted packets.
517 +
518 + 20131228:
519 +        Imported FreeBSD 9.2 usb stack (plus z87 patches from stable)
520 +
521 +        Updated em(4), igb(4) and ixgbe(4)
522 +
523 +        MidnightBSD now works with Z87 Intel chipsets.
524 +
525 + 20131207:
526 +        Remove sparc64 architecture. It hasn't been working for awhile
527 +        and it's not useful for desktops anymore.
528 +
529 + 20131205:
530 +        OpenSSH 6.4p1
531 +
532 + 20131203:
533 +        Perl 5.18.1 imported.
534 +
535 +        Update less to v458
536 +
537 + 20131130:
538 +        Remove named from base. We still include the client utilities for
539 +        now until replacements can be found.
540 +
541 + 20131004:
542 +        rarpd supports vlan(4) and has a pid flag. (from FreeBSD)
543 +
544 + 20130917:
545 +        Support for 65,536 routing tables was added.  A new fib specific
546 +        field has been added to mbuf.  This is an increase from 16.
547 +
548 + 20130910:
549 +        Security updates: (kern.osreldate 5001)
550 +
551 +        nullfs(5)
552 +
553 +        The nullfs(5) implementation of the VOP_LINK(9) VFS operation does not
554 +        check whether the source and target of the link are both in the same
555 +        nullfs instance.  It is therefore possible to create a hardlink from a
556 +        location in one nullfs instance to a file in another, as long as the
557 +        underlying (source) filesystem is the same.
558 +
559 +        ifioctl
560 +
561 +        As is commonly the case, the IPv6 and ATM network layer ioctl request
562 +        handlers are written in such a way that an unrecognized request is
563 +        passed on unmodified to the link layer, which will either handle it or
564 +        return an error code.
565 +
566 +        Network interface drivers, however, assume that the SIOCSIFADDR,
567 +        SIOCSIFBRDADDR, SIOCSIFDSTADDR and SIOCSIFNETMASK requests have been
568 +        handled at the network layer, and therefore do not perform input
569 +        validation or verify the caller's credentials.  Typical link-layer
570 +        actions for these requests may include marking the interface as "up"
571 +        and resetting the underlying hardware.
572 +
573 + 20130824:
574 +        Fix a bug in sendmail 8.14.7 that interferes with how it
575 +        handles AAAA records interoperating with Microsoft DNS servers.
576 +        FreeBSD has already reported this to Sendmail and a fix
577 +        will be included in the next release.
578 +
579 +        Subversion 1.8.1 is now in the base system as a static
580 +        binary.  It has limited functionality, but can be used to
581 +        checkout/commit code.  It is named svnlite.
582 +
583 + 20130822:
584 +        Fix two security vulnerabilities.
585 +
586 +        Fix an integer overflow in IP_MSFILTER (IP MULTICAST).
587 +        This could be exploited to read memory by a user process.
588 +
589 +        When initializing the SCTP state cookie being sent in INIT-ACK chunks,
590 +        a buffer allocated from the kernel stack is not completely initialized.
591 +
592 +        Import xz 5.0.4
593 +
594 +        Import sqlite 3.7.17
595 +
596 +        Import BIND 9.8.5-P2
597 +
598 + 20130814:
599 +        mksh R48 imported.
600 +
601 +        Sendmail 8.14.7 imported.
602 +
603 + 20130717:
604 +        libmport bug was fixed causing hash verification to fail.
605 +
606 +        virtio(4) imported from FreeBSD 9-stable. SCSI support not
607 +        included.
608 +
609 + 20130612:
610 +        RELENG_0_4 created for 0.4. Development continues on 0.5.
611 +
612 + 20130402:
613 +        Update BIND and OpenSSL to resolve security advisories.
614 +
615 + 20130305:
616 +        MKSH R44 imported.
617 +
618 + 20130213:
619 +        MKSH R42b imported
620 +
621 + 20130211:
622 +        MKSH R42 imported
623 +
624 + 20130125:
625 +        MKSH R41 imported
626 +
627 + 20130122:
628 +        OpenSSH 5.8p2 imported
629 +
630 +        SQLite 3.7.15.2 imported
631 +
632 +        Fixed a longstanding bug in libmport extrating new index files.
633 +
634 + 20120710:
635 +        BSD licensed sort imported from FreeBSD-CURRENT
636 +
637 +        For now, GNU sort is installed as gnusort, but it will
638 +        go away in time.
639 +
640 + 20120708:
641 +        tcsh 6.18.01 imported.
642 +
643 +        NetBSD's iconv imported.
644 +
645 +        libc gains strnlen(3), memrchr(3), stpncpy(3).
646 +
647 + 20120612:
648 +        BIND security update related to CVE-2012-1667.
649 +
650 +        Zero length resource records can cause BIND to crash resulting
651 +        in a DOS attack or information disclosure.
652 +
653 + 20120407:
654 +        mksh R40f (fixes regression)
655 +
656 + 20120328:
657 +        mksh R40e
658 +
659 +        Perl 5.14.2
660 +
661 + 20120229:
662 +        cpucontrol(8) and cpuctl(4) added from FreeBSD 7-stable.
663 +
664 + 20120209:
665 +        mDNSResponder 333.10 imported
666 +
667 + 20111227:
668 +        import raid5 module for GEOM, graid5(8)
669 +
670 +        This is experimental and known to use a lot of kernel
671 +        memory.
672 +
673 + 20111223:
674 +        telnetd: fix a root exploit from a fixed buffer that was not checked
675 +
676 +        pam: don't allow escape from policy path.  Exploitable in KDE, etc.
677 +
678 +        Fix pam_ssh module:
679 +
680 +        If the pam_ssh module is enabled, attackers may be able to gain access
681 +        to user accounts which have unencrypted SSH private keys.
682 +
683 +        This has to due with the way that openssl works.  It ignores unencrpted data.
684 +
685 +        Fix security issue with chroot and ftpd.
686 +
687 +        nsdispatch(3) doesn't know it's working in a chroot and some
688 +        operations can cause files to get reloaded causing a security
689 +        hole in things like ftpd.
690 +
691 + 20111217:
692 +        libdialog/dialog upgraded to an lgpl version. As it's not
693 +        backwardly compatable, include the old libdialog as libodialog
694 +
695 + 20111212:
696 +        mksh r40d imported
697 +
698 + 20111210:
699 +        re(4) and rl(4) updated to support new chips.
700 +
701 +        GEOM synced with FreeBSD 7-stable.
702 +
703 +        MidnightBSD GPT partition types created in sys/gpt.h and
704 +        setup in boot loader and GEOM.
705 +
706 +        amdsbwd(4) (amd watchdog for south bridge) updated to support
707 +        8xx series chipset.
708 +
709 + 20111207:
710 +        import bsd grep from FreeBSD/OpenBSD.
711 +
712 +        MK_BSD_GREP controls which grep is installed
713 +        as grep with the other as bsdgrep or gnugrep.
714 +
715 + 20111122:
716 +        mksh vR40c imported.
717 +
718 + 20111117:
719 +        BIND 9.6 ESV R5 P1
720 +
721 + 20111107:
722 +        tzdata 2011n
723 +
724 + 20111026:
725 +        mDNSResponder v320
726 +
727 +        BIND 9.6 ESV R5
728 +
729 + 20111022:
730 +        cflow 0.0.6 imported
731 +
732 + 20111020:
733 +        less v436 imported
734 +
735 +        amdsbwd(4) AMD southbridge watchdog
736 +
737 + 20111019:
738 +        awk 20110810 imported
739 +
740 +        et(4) Agere Gigabit Ethernet/Fast Ethernet driver added, but
741 +        not included in GENERIC kernel.  The kernel module needs
742 +        testing before we can include it in GENERIC.
743 +
744 +        intr_bind code ported to allow an IRQ to be bound to one
745 +        specific CPU core.
746 +
747 + 20111017:
748 +        Time Zone Data v. 2011l (Released 10 October 2011)
749 +
750 +        Updated list of countries (iso3166) to work with new timezone data.
751 +
752 + 20111015:
753 +        Introduce CPU Affinity in MidnightBSD. cpuset(1) can be used
754 +        to control which core or group of cores can be used for a given
755 +        process. Several new system calls were added to support this
756 +        functionality in the running kernel and for 32bit binary
757 +        compatibility on amd64.
758 +
759 +        The scheduler default has been changed to ULE in i386 and
760 +        amd64.  Changes were made to both schedulers (4BSD AND ULE)
761 +        for this feature.
762 +
763 +        This work is based on Jeff Roberson's FreeBSD 7.1 patches.
764 +
765 + 20111004:
766 +        Fix a problem with unix socket handling caused by the recent
767 +        patch to unix socket path handling. This allows network
768 +        apps to work under the linuxolator again.
769 +
770 + 20111001:
771 +        Import libfetch & fetch(1) from FreeBSD 9. Passive FTP is
772 +        now default and an environment variable must be set to use
773 +        active.
774 +
775 + 20110930:
776 +        Introduce quirks handling for several umass devices including
777 +        USB cameras.  Add workaround for Cyberpower UPS devices.
778 +
779 +        Bring in further bug fixes from FreeBSD and NetBSD for alc(4).
780 +        Stale ip/tcp header pointers are no longer used, lockups fixed
781 +        when network cable is unplugged on bootup, enable TX checksum
782 +        offloading.
783 +
784 +        Add a new man page for gcache(8), a useful geom class when
785 +        working with large raid3 sets.
786 +
787 +        Restore previous workaround for Cypress pata storage controller.
788 +
789 + 20110929:
790 +        Sync ath(4) with FreeBSD 7.3.
791 +
792 +        The following modules are no longer available, and should be
793 +        removed from loader.conf:
794 +        ath_hal ath_rate_amrr ath_rate_onoe ath_rate_sample
795 +
796 +        alc(4) would hibernate when a cable was unplugged and often
797 +        required bring the interface down and up to "wake up" so that
798 +        a connection could be established.  Disable hibernation.
799 +
800   20110928:
801          Fix security issues with gzip and compress related to .Z
802          files that are corrupted.
# Line 1050 | Line 1847 | Contact Warner Losh if you have any questions about yo
1847   this document.
1848  
1849   $FreeBSD: src/UPDATING,v 1.416.2.18 2006/02/22 11:51:57 yar Exp $
1850 < $MidnightBSD: src/UPDATING,v 1.132 2011/09/18 20:20:42 laffer1 Exp $
1850 > $MidnightBSD$

Comparing trunk/UPDATING (property cvs2svn:cvs-rev):
Revision 4166 by laffer1, Thu Sep 29 00:04:55 2011 UTC vs.
Revision 7687 by laffer1, Sun Aug 7 21:03:26 2016 UTC

# Line 1 | Line 0
1 1.133

Comparing trunk/UPDATING (property svn:keywords):
Revision 4166 by laffer1, Thu Sep 29 00:04:55 2011 UTC vs.
Revision 7687 by laffer1, Sun Aug 7 21:03:26 2016 UTC

# Line 0 | Line 1
1 + MidnightBSD=%H

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines