<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src/include, branch releng/7.3</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src/atom?h=releng%2F7.3</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src/atom?h=releng%2F7.3'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/'/>
<updated>2011-12-23T15:00:37Z</updated>
<entry>
<title>Fix a problem whereby a corrupt DNS record can cause named to crash. [11:06]</title>
<updated>2011-12-23T15:00:37Z</updated>
<author>
<name>Colin Percival</name>
<email>cperciva@FreeBSD.org</email>
</author>
<published>2011-12-23T15:00:37Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=d7071cce137418952864dba0c9c57ee4f858a5d0'/>
<id>urn:sha1:d7071cce137418952864dba0c9c57ee4f858a5d0</id>
<content type='text'>
Add an API for alerting internal libc routines to the presence of
"unsafe" paths post-chroot, and use it in ftpd. [11:07]

Fix a buffer overflow in telnetd. [11:08]

Make pam_ssh ignore unpassphrased keys unless the "nullok" option is
specified. [11:09]

Add sanity checking of service names in pam_start. [11:10]

Approved by:    so (cperciva)
Approved by:    re (bz)
Security:       FreeBSD-SA-11:06.bind
Security:       FreeBSD-SA-11:07.chroot
Security:       FreeBSD-SA-11:08.telnetd
Security:       FreeBSD-SA-11:09.pam_ssh
Security:       FreeBSD-SA-11:10.pam
</content>
</entry>
<entry>
<title>MFC 196200,196211,196280-196282:</title>
<updated>2009-10-26T18:57:57Z</updated>
<author>
<name>John Baldwin</name>
<email>jhb@FreeBSD.org</email>
</author>
<published>2009-10-26T18:57:57Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=a2510069c0274a9330b723d43587db049a02d083'/>
<id>urn:sha1:a2510069c0274a9330b723d43587db049a02d083</id>
<content type='text'>
Introduce mfiutil, a basic utility for managing LSI SAS-RAID &amp; Dell PERC5/6
controllers.  Controller, array, and drive status can be checked, basic
attributes can be changed, and arrays and spares can be created and deleted.
Controller firmware can also be flashed.

This does not replace MegaCLI, found in ports, as that is officially sanctioned
and supported by LSI and includes vastly more functionality.  However, mfiutil
is open source and guaranteed to provide basic functionality, which can be
especially useful if you have a problem and can't get MegaCLI to work.
</content>
</entry>
<entry>
<title>MFC: Add a new 'void closefrom(int lowfd)' system call.  When called, it</title>
<updated>2009-07-14T19:48:31Z</updated>
<author>
<name>John Baldwin</name>
<email>jhb@FreeBSD.org</email>
</author>
<published>2009-07-14T19:48:31Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=bcfa76cba3b78244d3e574d2ff398e252a2ecb38'/>
<id>urn:sha1:bcfa76cba3b78244d3e574d2ff398e252a2ecb38</id>
<content type='text'>
closes any open file descriptors &gt;= 'lowfd'.  Bump  __FreeBSD_version to
702104.
</content>
</entry>
<entry>
<title>MFC: Add a feature_present(3) function which checks to see if a named kernel</title>
<updated>2009-06-10T19:57:54Z</updated>
<author>
<name>John Baldwin</name>
<email>jhb@FreeBSD.org</email>
</author>
<published>2009-06-10T19:57:54Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=38f31e1935df7970cb87d48587d188c0c7fc837f'/>
<id>urn:sha1:38f31e1935df7970cb87d48587d188c0c7fc837f</id>
<content type='text'>
feature is present by checking the kern.features sysctl MIB.
</content>
</entry>
<entry>
<title>merge r173762: use a forward declaration to avoid an aliasing warning</title>
<updated>2009-06-08T19:24:37Z</updated>
<author>
<name>Dag-Erling Smørgrav</name>
<email>des@FreeBSD.org</email>
</author>
<published>2009-06-08T19:24:37Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=71380867556d6bbc311a96a00a67969c0aa88b55'/>
<id>urn:sha1:71380867556d6bbc311a96a00a67969c0aa88b55</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Mostly synchronize  lib/libthr and sys/kern/kern_umtx.c with the code</title>
<updated>2009-03-24T20:57:10Z</updated>
<author>
<name>Konstantin Belousov</name>
<email>kib@FreeBSD.org</email>
</author>
<published>2009-03-24T20:57:10Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=5da9fe5b5d84c14339b36ecf7f6f52b5b95076cd'/>
<id>urn:sha1:5da9fe5b5d84c14339b36ecf7f6f52b5b95076cd</id>
<content type='text'>
from HEAD.

Since libkse is still built on RELENG_7, pthread_cleanup_push/pop
are left as the functions, but the support code in libthr is present for
the macro versions.

Malloc in RELENG_7 does not require thread exit hook, but I decided
to add empty handler for it, instead of removing callback from thr_exit().

No mergeinfo since this change is prepared by patching libthr and then
bringing in required missed bits.

Requested by:	bms
Reviewed by:	davidxu
Tested by:	bms, Mykola Dzham &lt;i levsha org ua&gt;
Approved by:	re (kensmith)
</content>
</entry>
<entry>
<title>MFC: r187724 / r187969: unsplit _PATH_SYSPATH &amp; _PATH_STDPATH.</title>
<updated>2009-03-24T00:30:06Z</updated>
<author>
<name>David E. O'Brien</name>
<email>obrien@FreeBSD.org</email>
</author>
<published>2009-03-24T00:30:06Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=b10f4fd98c0ff09cb45603274e1cd2f593c37b37'/>
<id>urn:sha1:b10f4fd98c0ff09cb45603274e1cd2f593c37b37</id>
<content type='text'>
</content>
</entry>
<entry>
<title>MFC r183057</title>
<updated>2009-03-05T17:54:28Z</updated>
<author>
<name>Maksim Yevmenkin</name>
<email>emax@FreeBSD.org</email>
</author>
<published>2009-03-05T17:54:28Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=3624c8511841d55fc1249cd497e0584e99f599ef'/>
<id>urn:sha1:3624c8511841d55fc1249cd497e0584e99f599ef</id>
<content type='text'>
Add missing prototypes for uuid_enc,dec_le,be() functions.
Pointy hat goes to me.
</content>
</entry>
<entry>
<title>MFC r183004 to stable/7:</title>
<updated>2009-01-10T11:45:47Z</updated>
<author>
<name>Antoine Brodin</name>
<email>antoine@FreeBSD.org</email>
</author>
<published>2009-01-10T11:45:47Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=7ea3329d5f138138384c6b8a5c2feeddf4251dd1'/>
<id>urn:sha1:7ea3329d5f138138384c6b8a5c2feeddf4251dd1</id>
<content type='text'>
  Fix TELOPT(opt) when opt &gt; TELOPT_TN3270E.

  PR:		127194
  Submitted by:	Joost Bekkers
  MFC after:	1 month
</content>
</entry>
<entry>
<title>MFC r185689:</title>
<updated>2009-01-08T09:50:20Z</updated>
<author>
<name>Konstantin Belousov</name>
<email>kib@FreeBSD.org</email>
</author>
<published>2009-01-08T09:50:20Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=fec8ca6f19563535919edcd8e1aa8ecd187533a0'/>
<id>urn:sha1:fec8ca6f19563535919edcd8e1aa8ecd187533a0</id>
<content type='text'>
Order the str*.c files mostly alphabetical.

MFC r185690:
Import the strndup(3) function.

MFC r185777:
Add strndup(3) prototype to string.h. Manually change
#undef HAVE_STRNDUP to #define HAVE_STRNDUP 1 for the configure.h
files that need it.
</content>
</entry>
</feed>
