<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src/sys/netipsec/ipsec_input.c, branch release/7.0.0_cvs</title>
<subtitle>FreeBSD source tree</subtitle>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/'/>
<entry>
<title>This commit was manufactured by cvs2svn to create tag</title>
<updated>2008-02-24T05:45:17+00:00</updated>
<author>
<name>cvs2svn</name>
<email>cvs2svn@FreeBSD.org</email>
</author>
<published>2008-02-24T05:45:17+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=a9c219fa3cec18ef9f30edec6fa106bf0e2d423d'/>
<id>a9c219fa3cec18ef9f30edec6fa106bf0e2d423d</id>
<content type='text'>
'RELENG_7_0_0_RELEASE'.

This commit was manufactured to restore the state of the 7.0-RELEASE image.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
'RELENG_7_0_0_RELEASE'.

This commit was manufactured to restore the state of the 7.0-RELEASE image.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix for an infinite loop in processing ESP, IPv6 packets.</title>
<updated>2007-09-12T05:54:53+00:00</updated>
<author>
<name>George V. Neville-Neil</name>
<email>gnn@FreeBSD.org</email>
</author>
<published>2007-09-12T05:54:53+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=e61a9df52b49892676471f8ff40fe23e23f2c7e4'/>
<id>e61a9df52b49892676471f8ff40fe23e23f2c7e4</id>
<content type='text'>
The control input routine passes a NULL as its void argument when it
has reached the innermost header, which terminates the loop.

Reported by: Pawel Worach &lt;pawel.worach@gmail.com&gt;
Approved by: re
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The control input routine passes a NULL as its void argument when it
has reached the innermost header, which terminates the loop.

Reported by: Pawel Worach &lt;pawel.worach@gmail.com&gt;
Approved by: re
</pre>
</div>
</content>
</entry>
<entry>
<title>Replace hard coded options by their defined PFIL_{IN,OUT} names.</title>
<updated>2007-07-19T09:57:54+00:00</updated>
<author>
<name>Bjoern A. Zeeb</name>
<email>bz@FreeBSD.org</email>
</author>
<published>2007-07-19T09:57:54+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=b28cd3345920b8820e47bf2da8b3964b01126a87'/>
<id>b28cd3345920b8820e47bf2da8b3964b01126a87</id>
<content type='text'>
Approved by:	re (hrs)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Approved by:	re (hrs)
</pre>
</div>
</content>
</entry>
<entry>
<title>Looking at {ah,esp}_input_cb it seems we might be able to end up</title>
<updated>2007-06-15T22:23:33+00:00</updated>
<author>
<name>Bjoern A. Zeeb</name>
<email>bz@FreeBSD.org</email>
</author>
<published>2007-06-15T22:23:33+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=0e41ce659bd87a83b65bedcd2a733a38e99db41b'/>
<id>0e41ce659bd87a83b65bedcd2a733a38e99db41b</id>
<content type='text'>
without an mtag in ipsec4_common_input_cb.
So in case of !IPCOMP (AH,ESP) only change the m_tag_id if an mtag
was passed to ipsec4_common_input_cb.

Found with:	Coverity Prevent(tm)
CID:		2523
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
without an mtag in ipsec4_common_input_cb.
So in case of !IPCOMP (AH,ESP) only change the m_tag_id if an mtag
was passed to ipsec4_common_input_cb.

Found with:	Coverity Prevent(tm)
CID:		2523
</pre>
</div>
</content>
</entry>
<entry>
<title>s,#,*, in a multi-line comment. This is C.</title>
<updated>2007-06-15T21:34:12+00:00</updated>
<author>
<name>Bjoern A. Zeeb</name>
<email>bz@FreeBSD.org</email>
</author>
<published>2007-06-15T21:34:12+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=ceda1e7c3e0e4a540ff6881b7eee395a94b091a5'/>
<id>ceda1e7c3e0e4a540ff6881b7eee395a94b091a5</id>
<content type='text'>
No functional change.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
No functional change.
</pre>
</div>
</content>
</entry>
<entry>
<title>Though we are only called for the three security protocols we can</title>
<updated>2007-06-15T21:32:51+00:00</updated>
<author>
<name>Bjoern A. Zeeb</name>
<email>bz@FreeBSD.org</email>
</author>
<published>2007-06-15T21:32:51+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=f4760821dbe9934086f47ce9df51d43f2ca7d929'/>
<id>f4760821dbe9934086f47ce9df51d43f2ca7d929</id>
<content type='text'>
handle, document those sprotos using an IPSEC_ASSERT so that it will
be clear that 'spi' will always be initialized when used the first time.

Found with:	Coverity Prevent(tm)
CID:		2533
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
handle, document those sprotos using an IPSEC_ASSERT so that it will
be clear that 'spi' will always be initialized when used the first time.

Found with:	Coverity Prevent(tm)
CID:		2533
</pre>
</div>
</content>
</entry>
<entry>
<title>s,#if INET6,#ifdef INET6,</title>
<updated>2006-12-14T17:33:46+00:00</updated>
<author>
<name>Bjoern A. Zeeb</name>
<email>bz@FreeBSD.org</email>
</author>
<published>2006-12-14T17:33:46+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=224c45c4f2e2e95b514efe10668c9108b4ba81ce'/>
<id>224c45c4f2e2e95b514efe10668c9108b4ba81ce</id>
<content type='text'>
This unbreaks the build for FAST_IPSEC &amp;&amp; !INET6 and was wrong anyway.

Reported by:	Dmitry Pryanishnikov &lt;dmitry atlantis.dp.ua&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This unbreaks the build for FAST_IPSEC &amp;&amp; !INET6 and was wrong anyway.

Reported by:	Dmitry Pryanishnikov &lt;dmitry atlantis.dp.ua&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>MFp4: 92972, 98913 + one more change</title>
<updated>2006-12-12T12:17:58+00:00</updated>
<author>
<name>Bjoern A. Zeeb</name>
<email>bz@FreeBSD.org</email>
</author>
<published>2006-12-12T12:17:58+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=1d54aa3ba94f4d9883b0746ce45123d5b5be773b'/>
<id>1d54aa3ba94f4d9883b0746ce45123d5b5be773b</id>
<content type='text'>
In ip6_sprintf no longer use and return one of eight static buffers
for printing/logging ipv6 addresses.
The caller now has to hand in a sufficiently large buffer as first
argument.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In ip6_sprintf no longer use and return one of eight static buffers
for printing/logging ipv6 addresses.
The caller now has to hand in a sufficiently large buffer as first
argument.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add a pseudo interface for packet filtering IPSec connections before or after</title>
<updated>2006-06-26T22:30:08+00:00</updated>
<author>
<name>Andrew Thompson</name>
<email>thompsa@FreeBSD.org</email>
</author>
<published>2006-06-26T22:30:08+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=bdea400f3ba20dd0ffcaef20d68912f7041d9eeb'/>
<id>bdea400f3ba20dd0ffcaef20d68912f7041d9eeb</id>
<content type='text'>
encryption. There are two functions, a bpf tap which has a basic header with
the SPI number which our current tcpdump knows how to display, and handoff to
pfil(9) for packet filtering.

Obtained from:	OpenBSD
Based on:	kern/94829
No objections:	arch, net
MFC after:	1 month
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
encryption. There are two functions, a bpf tap which has a basic header with
the SPI number which our current tcpdump knows how to display, and handoff to
pfil(9) for packet filtering.

Obtained from:	OpenBSD
Based on:	kern/94829
No objections:	arch, net
MFC after:	1 month
</pre>
</div>
</content>
</entry>
<entry>
<title>Change '#if INET' and '#if INET6' to '#ifdef INET' and '#ifdef INET6'.</title>
<updated>2006-06-04T19:32:32+00:00</updated>
<author>
<name>Pawel Jakub Dawidek</name>
<email>pjd@FreeBSD.org</email>
</author>
<published>2006-06-04T19:32:32+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=49ddabdfce79924a090f5222943f8a2c13ce800f'/>
<id>49ddabdfce79924a090f5222943f8a2c13ce800f</id>
<content type='text'>
This unbreaks compiling a kernel with FAST_IPSEC and no INET6.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This unbreaks compiling a kernel with FAST_IPSEC and no INET6.
</pre>
</div>
</content>
</entry>
</feed>
