OpenBSD CVS

CVS log for src/sys/netinet/icmp6.h


[BACK] Up to [local] / src / sys / netinet

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.53 / (download) - annotate - [select for diffs], Mon May 13 01:15:53 2024 UTC (4 weeks, 1 day ago) by jsg
Branch: MAIN
CVS Tags: HEAD
Changes since 1.52: +1 -3 lines
Diff to previous 1.52 (colored)

remove prototypes with no matching function
ok mpi@

Revision 1.52 / (download) - annotate - [select for diffs], Wed Apr 5 21:51:47 2023 UTC (14 months ago) by bluhm
Branch: MAIN
CVS Tags: OPENBSD_7_5_BASE, OPENBSD_7_5, OPENBSD_7_4_BASE, OPENBSD_7_4
Changes since 1.51: +4 -3 lines
Diff to previous 1.51 (colored)

ARP has a sysctl to show the number of packets waiting for an arp
response.  Implement analog sysctl net.inet6.icmp6.nd6_queued for
ND6 to reduce places where mbufs can hide within the kernel.
Atomic operations operate on unsigned int.  Make the type of total
hold queue length consistent.
Use atomic load to read the value for the sysctl.  This clarifies
why no lock around sysctl_rdint() is needed.
OK mvs@ kn@

Revision 1.51 / (download) - annotate - [select for diffs], Mon Jan 11 13:28:53 2021 UTC (3 years, 4 months ago) by bluhm
Branch: MAIN
CVS Tags: OPENBSD_7_3_BASE, OPENBSD_7_3, OPENBSD_7_2_BASE, OPENBSD_7_2, OPENBSD_7_1_BASE, OPENBSD_7_1, OPENBSD_7_0_BASE, OPENBSD_7_0, OPENBSD_6_9_BASE, OPENBSD_6_9
Changes since 1.50: +2 -1 lines
Diff to previous 1.50 (colored)

Create a path MTU host route for IPsec over IPv6.  Basically the
code is copied from IPv4 and adapted.  Some things are changed in
v4 to make it look similar.
- ip6_forward increases the noroute error counter, do that in
  ip_forward, too.
- Pass more specific sockaddr_in6 to icmp6_mtudisc_clone().
- IPv6 may also use reject routes for IPsec PMTU clones.
- To pass a route_in6 to ip6_output_ipsec_send() introduce one in
  ip6_forward().  That is the same what IPv4 does.  Note
  that dst and sin6 switch roles.
- Copy comments from ip_output_ipsec_send() to ip6_output_ipsec_send()
  to make code similar.
- Implement dynamic IPv6 IPsec PMTU routes.
OK tobhe@

Revision 1.48.8.1 / (download) - annotate - [select for diffs], Wed Oct 28 17:29:15 2020 UTC (3 years, 7 months ago) by bluhm
Branch: OPENBSD_6_7
Changes since 1.48: +2 -2 lines
Diff to previous 1.48 (colored) next main 1.49 (colored)

When generating the ICMP6 response to an IPv6 packet, the kernel
could use mbuf memory after freeing it.  If m_pullup() allocates a
new mbuf, the caller uses the old pointer.
found and reported by Maxime Villard, thanks
OK claudio@ markus@ denis@
this is errata/6.7/026_icmp6.patch.sig

Revision 1.49.4.1 / (download) - annotate - [select for diffs], Wed Oct 28 17:28:31 2020 UTC (3 years, 7 months ago) by bluhm
Branch: OPENBSD_6_8
Changes since 1.49: +2 -2 lines
Diff to previous 1.49 (colored) next main 1.50 (colored)

When generating the ICMP6 response to an IPv6 packet, the kernel
could use mbuf memory after freeing it.  If m_pullup() allocates a
new mbuf, the caller uses the old pointer.
found and reported by Maxime Villard, thanks
OK claudio@ markus@ denis@
this is errata/6.8/002_icmp6.patch.sig

Revision 1.50 / (download) - annotate - [select for diffs], Wed Oct 28 17:27:35 2020 UTC (3 years, 7 months ago) by bluhm
Branch: MAIN
Changes since 1.49: +2 -2 lines
Diff to previous 1.49 (colored)

When generating the ICMP6 response to an IPv6 packet, the kernel
could use mbuf memory after freeing it.  If m_pullup() allocates a
new mbuf, the caller uses the old pointer.
found and reported by Maxime Villard, thanks
OK claudio@ markus@ denis@

Revision 1.49 / (download) - annotate - [select for diffs], Tue Sep 1 01:53:13 2020 UTC (3 years, 9 months ago) by gnezdo
Branch: MAIN
CVS Tags: OPENBSD_6_8_BASE
Branch point for: OPENBSD_6_8
Changes since 1.48: +1 -23 lines
Diff to previous 1.48 (colored)

Convert icmp6_sysct to sysctl_bounded_args

The best-guessed limits will be tested by trial.

Revision 1.48 / (download) - annotate - [select for diffs], Tue Dec 25 19:28:25 2018 UTC (5 years, 5 months ago) by denis
Branch: MAIN
CVS Tags: OPENBSD_6_7_BASE, OPENBSD_6_6_BASE, OPENBSD_6_6, OPENBSD_6_5_BASE, OPENBSD_6_5
Branch point for: OPENBSD_6_7
Changes since 1.47: +12 -11 lines
Diff to previous 1.47 (colored)

rework icmp6_error() to be closer to icmp_error()

input & OK mpi@

Revision 1.47 / (download) - annotate - [select for diffs], Tue Aug 8 18:15:58 2017 UTC (6 years, 10 months ago) by florian
Branch: MAIN
CVS Tags: OPENBSD_6_4_BASE, OPENBSD_6_4, OPENBSD_6_3_BASE, OPENBSD_6_3, OPENBSD_6_2_BASE, OPENBSD_6_2
Changes since 1.46: +3 -4 lines
Diff to previous 1.46 (colored)

Stop running nd6_expire every second.
We know when pltime or vltime decrease to zero. Run nd6_expire then.
Input & OK mpi, bluhm

Revision 1.46 / (download) - annotate - [select for diffs], Thu Aug 3 17:36:06 2017 UTC (6 years, 10 months ago) by florian
Branch: MAIN
Changes since 1.45: +1 -2 lines
Diff to previous 1.45 (colored)

Since nearly 20 years the correct spelling of
ICMP6_DST_UNREACH_NOTNEIGHBOR is ICMP6_DST_UNREACH_BEYONDSCOPE (RFC
1885 was obsoleted).
sthen grepped the ports sources to make sure nothing uses it.
OK millert, jca

Revision 1.45 / (download) - annotate - [select for diffs], Wed Jul 12 16:53:58 2017 UTC (6 years, 11 months ago) by florian
Branch: MAIN
Changes since 1.44: +2 -8 lines
Diff to previous 1.44 (colored)

Get rid of ICMPV6CTL_ND6_DRLIST and ICMPV6CTL_ND6_PRLIST sysctls
With this we can also get rid of in6_prefix and in6_defrouter. They
are meaningless, the kernel no longer tracks this information.

Pointed out by & OK mpi

Revision 1.44 / (download) - annotate - [select for diffs], Fri Apr 14 20:46:31 2017 UTC (7 years, 1 month ago) by bluhm
Branch: MAIN
Changes since 1.43: +2 -2 lines
Diff to previous 1.43 (colored)

Pass down the address family through the pr_input calls.  This
allows to simplify code used for both IPv4 and IPv6.
OK mikeb@ deraadt@

Revision 1.43 / (download) - annotate - [select for diffs], Thu Feb 9 15:23:35 2017 UTC (7 years, 4 months ago) by jca
Branch: MAIN
CVS Tags: OPENBSD_6_1_BASE, OPENBSD_6_1
Changes since 1.42: +59 -36 lines
Diff to previous 1.42 (colored)

percpu counters for raw ipv6 and icmp6 stats

ok mpi@

Revision 1.42 / (download) - annotate - [select for diffs], Wed Sep 9 15:51:40 2015 UTC (8 years, 9 months ago) by mpi
Branch: MAIN
CVS Tags: OPENBSD_6_0_BASE, OPENBSD_6_0, OPENBSD_5_9_BASE, OPENBSD_5_9
Changes since 1.41: +1 -59 lines
Diff to previous 1.41 (colored)

Kill icmp6_ifstat_inc() and associated per-ifp storage.

The SIOCGIFSTAT_ICMP6 is no longer supported.

ok dlg@, mikeb@, claudio@

Revision 1.41 / (download) - annotate - [select for diffs], Wed Aug 27 14:04:15 2014 UTC (9 years, 9 months ago) by florian
Branch: MAIN
CVS Tags: OPENBSD_5_8_BASE, OPENBSD_5_8, OPENBSD_5_7_BASE, OPENBSD_5_7
Changes since 1.40: +3 -4 lines
Diff to previous 1.40 (colored)

Nuke net.inet6.icmp6.rediraccept and allow redirects on interfaces
with autoconf enabled.
If one is doing SLAAC one does already trust link local icmp6 so the
policy for icmp6 redirects should be the same.
pointed out by & OK bluhm@; OK henning@

Revision 1.40 / (download) - annotate - [select for diffs], Fri Jul 11 12:20:26 2014 UTC (9 years, 11 months ago) by benno
Branch: MAIN
CVS Tags: OPENBSD_5_6_BASE, OPENBSD_5_6
Changes since 1.39: +3 -3 lines
Diff to previous 1.39 (colored)

Remove rfc 4620 Node Information Query support (from the kernel).

ok henning@ stu@, Yay! weerd@

Revision 1.39 / (download) - annotate - [select for diffs], Wed May 7 08:14:59 2014 UTC (10 years, 1 month ago) by mpi
Branch: MAIN
Changes since 1.38: +3 -4 lines
Diff to previous 1.38 (colored)

Kill the {nd6_,}useloopback buttons, using the loopback interface for
local traffic is not optional.

ok mikeb@, stsp@, jca@

Revision 1.38 / (download) - annotate - [select for diffs], Thu Oct 24 11:20:16 2013 UTC (10 years, 7 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_5_5_BASE, OPENBSD_5_5
Changes since 1.37: +20 -112 lines
Diff to previous 1.37 (colored)

Significant namespace cleanup of netinet6 symbols.

One worrying bit is in icmp6.h where some htols() and htonl() are
added, which may affect compatibility down the line.  This component
can be reverted if issues show up.  Ports tree greps indicate no issue.

ok claudio mpi etc

Revision 1.37 / (download) - annotate - [select for diffs], Mon Oct 21 08:42:24 2013 UTC (10 years, 7 months ago) by phessler
Branch: MAIN
Changes since 1.36: +2 -2 lines
Diff to previous 1.36 (colored)

Sprinkle a lot more IPv6 routing domains support in the kernel.

Mostly mechanical, setting and passing the rdomain and rtable correctly.
Not yet enabled.

Lots of help and hints from claudio and bluhm

OK claudio@, bluhm@

Revision 1.36 / (download) - annotate - [select for diffs], Sat Jun 1 01:30:53 2013 UTC (11 years ago) by brad
Branch: MAIN
CVS Tags: OPENBSD_5_4_BASE, OPENBSD_5_4
Changes since 1.35: +10 -1 lines
Diff to previous 1.35 (colored)

Add support for advertising route information (RFC 4191).

From FreeBSD via UMEZAWA Takeshi

ok bluhm@

Revision 1.35 / (download) - annotate - [select for diffs], Sun Mar 17 00:38:29 2013 UTC (11 years, 2 months ago) by brad
Branch: MAIN
Changes since 1.34: +9 -1 lines
Diff to previous 1.34 (colored)

Add the router preference defines to the icmp6.h header and remove the
defines that were part of rtadvd's code.

ok bluhm@

Revision 1.34 / (download) - annotate - [select for diffs], Sun Jul 8 10:45:46 2012 UTC (11 years, 11 months ago) by phessler
Branch: MAIN
CVS Tags: OPENBSD_5_3_BASE, OPENBSD_5_3, OPENBSD_5_2_BASE, OPENBSD_5_2
Changes since 1.33: +19 -1 lines
Diff to previous 1.33 (colored)

Add support for advertising dns servers and search paths in router
advertisements, according to RFC 6106.

original diff from Stephane A. Sezer on tech@, many thanks!

OK phessler@, todd@

Revision 1.33 / (download) - annotate - [select for diffs], Mon Mar 22 12:23:32 2010 UTC (14 years, 2 months ago) by jsg
Branch: MAIN
CVS Tags: OPENBSD_5_1_BASE, OPENBSD_5_1, OPENBSD_5_0_BASE, OPENBSD_5_0, OPENBSD_4_9_BASE, OPENBSD_4_9, OPENBSD_4_8_BASE, OPENBSD_4_8
Changes since 1.32: +2 -1 lines
Diff to previous 1.32 (colored)

Add some MLDv2 definitions from FreeBSD.

Revision 1.32 / (download) - annotate - [select for diffs], Thu Jul 6 02:56:58 2006 UTC (17 years, 11 months ago) by brad
Branch: MAIN
CVS Tags: OPENBSD_4_7_BASE, OPENBSD_4_7, OPENBSD_4_6_BASE, OPENBSD_4_6, OPENBSD_4_5_BASE, OPENBSD_4_5, OPENBSD_4_4_BASE, OPENBSD_4_4, OPENBSD_4_3_BASE, OPENBSD_4_3, OPENBSD_4_2_BASE, OPENBSD_4_2, OPENBSD_4_1_BASE, OPENBSD_4_1, OPENBSD_4_0_BASE, OPENBSD_4_0
Changes since 1.31: +32 -32 lines
Diff to previous 1.31 (colored)

u_quad_t -> u_int64_t

no functional change.

Revision 1.31 / (download) - annotate - [select for diffs], Thu Apr 27 02:19:32 2006 UTC (18 years, 1 month ago) by tedu
Branch: MAIN
Changes since 1.30: +13 -13 lines
Diff to previous 1.30 (colored)

use underscore variants of _BYTE_ORDER macros which are always defined
ok deraadt millert

Revision 1.30 / (download) - annotate - [select for diffs], Tue Mar 7 09:21:55 2006 UTC (18 years, 3 months ago) by jmc
Branch: MAIN
Changes since 1.29: +3 -3 lines
Diff to previous 1.29 (colored)

advertisment -> advertisement; from leonardo chiquitto filho

Revision 1.2.2.10 / (download) - annotate - [select for diffs], Sat Jun 5 23:11:25 2004 UTC (20 years ago) by niklas
Branch: SMP
Changes since 1.2.2.9: +24 -0 lines
Diff to previous 1.2.2.9 (colored) to branchpoint 1.2 (colored) next main 1.3 (colored)

Merge with the trunk

Revision 1.2.2.9 / (download) - annotate - [select for diffs], Thu Feb 19 10:57:23 2004 UTC (20 years, 3 months ago) by niklas
Branch: SMP
Changes since 1.2.2.8: +64 -37 lines
Diff to previous 1.2.2.8 (colored) to branchpoint 1.2 (colored)

Merge of current from two weeks agointo the SMP branch

Revision 1.29 / (download) - annotate - [select for diffs], Sun Feb 15 11:16:08 2004 UTC (20 years, 4 months ago) by markus
Branch: MAIN
CVS Tags: SMP_SYNC_B, SMP_SYNC_A, OPENBSD_3_9_BASE, OPENBSD_3_9, OPENBSD_3_8_BASE, OPENBSD_3_8, OPENBSD_3_7_BASE, OPENBSD_3_7, OPENBSD_3_6_BASE, OPENBSD_3_6, OPENBSD_3_5_BASE, OPENBSD_3_5
Changes since 1.28: +25 -1 lines
Diff to previous 1.28 (colored)

switch to sysctl_int_arr(); ok itojun, henning, miod, deraadt

Revision 1.28 / (download) - annotate - [select for diffs], Sun Nov 16 20:30:07 2003 UTC (20 years, 6 months ago) by avsm
Branch: MAIN
Changes since 1.27: +19 -19 lines
Diff to previous 1.27 (colored)

convert __attribute__((__packed__)) to __packed so that parsers unaware
of gcc extensions have more of a chance.
ok mcbride@, no objections from millert@, deraadt@

Revision 1.27 / (download) - annotate - [select for diffs], Wed Jun 11 02:54:02 2003 UTC (21 years ago) by itojun
Branch: MAIN
CVS Tags: OPENBSD_3_4_BASE, OPENBSD_3_4
Changes since 1.26: +45 -18 lines
Diff to previous 1.26 (colored)

- sync up MLD declaration with RFC3542 (s/MLD6/MLD/)
- routing header declaration with RFC3542
  (note: sizeof(ip6_rthdr0) has changed!)
  also, sync up with RFC2460 routing header definition (no "strict" source
  routing mode any more)

part of advanced API update (RFC2292 -> 3542).

markus, todd, millert, henning ok

Revision 1.2.2.8 / (download) - annotate - [select for diffs], Sat Jun 7 11:06:08 2003 UTC (21 years ago) by ho
Branch: SMP
Changes since 1.2.2.7: +2 -6 lines
Diff to previous 1.2.2.7 (colored) to branchpoint 1.2 (colored)

Sync SMP branch to -current

Revision 1.26 / (download) - annotate - [select for diffs], Mon Jun 2 23:28:13 2003 UTC (21 years ago) by millert
Branch: MAIN
Changes since 1.25: +2 -6 lines
Diff to previous 1.25 (colored)

Remove the advertising clause in the UCB license which Berkeley
rescinded 22 July 1999.  Proofed by myself and Theo.

Revision 1.2.2.7 / (download) - annotate - [select for diffs], Fri Mar 28 00:06:54 2003 UTC (21 years, 2 months ago) by niklas
Branch: SMP
Changes since 1.2.2.6: +11 -10 lines
Diff to previous 1.2.2.6 (colored) to branchpoint 1.2 (colored)

Sync the SMP branch with 3.3

Revision 1.18.2.3 / (download) - annotate - [select for diffs], Tue Oct 29 00:36:46 2002 UTC (21 years, 7 months ago) by art
Branch: UBC
Changes since 1.18.2.2: +2 -2 lines
Diff to previous 1.18.2.2 (colored) to branchpoint 1.18 (colored) next main 1.19 (colored)

sync to -current

Revision 1.18.2.2 / (download) - annotate - [select for diffs], Tue Jun 11 03:31:36 2002 UTC (22 years ago) by art
Branch: UBC
Changes since 1.18.2.1: +23 -22 lines
Diff to previous 1.18.2.1 (colored) to branchpoint 1.18 (colored)

Sync UBC branch to -current

Revision 1.25 / (download) - annotate - [select for diffs], Sun Jun 9 16:26:10 2002 UTC (22 years ago) by itojun
Branch: MAIN
CVS Tags: UBC_SYNC_B, UBC_SYNC_A, OPENBSD_3_3_BASE, OPENBSD_3_3, OPENBSD_3_2_BASE, OPENBSD_3_2
Changes since 1.24: +2 -2 lines
Diff to previous 1.24 (colored)

whitespace

Revision 1.24 / (download) - annotate - [select for diffs], Sun Jun 9 02:11:47 2002 UTC (22 years ago) by jsyn
Branch: MAIN
Changes since 1.23: +3 -3 lines
Diff to previous 1.23 (colored)

fix the use of "cuz" in the tree; these are all in comments

noticed by aaron@, recommended by deraadt@

Revision 1.23 / (download) - annotate - [select for diffs], Sat Jun 8 21:22:02 2002 UTC (22 years ago) by itojun
Branch: MAIN
Changes since 1.22: +7 -3 lines
Diff to previous 1.22 (colored)

sync with latest KAME in6_ifaddr/prefix/default router manipulation.
behavior changes:
- two iocts used by ndp(8) are now obsolete (backward compat provided).
  use sysctl path instead.
- lo0 does not get ::1 automatically.  it will get ::1 when lo0 comes up.

Revision 1.22 / (download) - annotate - [select for diffs], Wed May 29 02:59:12 2002 UTC (22 years ago) by itojun
Branch: MAIN
Changes since 1.21: +3 -6 lines
Diff to previous 1.21 (colored)

move per-interface ip6/icmp6 stat to ifnet->if_afdata.   sync w/kame

Revision 1.2.2.6 / (download) - annotate - [select for diffs], Thu Mar 28 14:56:45 2002 UTC (22 years, 2 months ago) by niklas
Branch: SMP
Changes since 1.2.2.5: +12 -12 lines
Diff to previous 1.2.2.5 (colored) to branchpoint 1.2 (colored)

Merge in -current from roughly a week ago

Revision 1.21 / (download) - annotate - [select for diffs], Thu Mar 14 03:16:11 2002 UTC (22 years, 3 months ago) by millert
Branch: MAIN
CVS Tags: OPENBSD_3_1_BASE, OPENBSD_3_1
Changes since 1.20: +2 -2 lines
Diff to previous 1.20 (colored)

Final __P removal plus some cosmetic fixups

Revision 1.20 / (download) - annotate - [select for diffs], Thu Mar 14 01:27:11 2002 UTC (22 years, 3 months ago) by millert
Branch: MAIN
Changes since 1.19: +12 -12 lines
Diff to previous 1.19 (colored)

First round of __P removal in sys

Revision 1.2.2.5 / (download) - annotate - [select for diffs], Wed Mar 6 02:15:07 2002 UTC (22 years, 3 months ago) by niklas
Branch: SMP
Changes since 1.2.2.4: +28 -26 lines
Diff to previous 1.2.2.4 (colored) to branchpoint 1.2 (colored)

Merge in trunk

Revision 1.18.2.1 / (download) - annotate - [select for diffs], Thu Jan 31 22:55:44 2002 UTC (22 years, 4 months ago) by niklas
Branch: UBC
Changes since 1.18: +4 -4 lines
Diff to previous 1.18 (colored)

Merge in -current, builds on i386, otherwise untested

Revision 1.19 / (download) - annotate - [select for diffs], Fri Dec 28 02:29:13 2001 UTC (22 years, 5 months ago) by itojun
Branch: MAIN
Changes since 1.18: +4 -4 lines
Diff to previous 1.18 (colored)

move experimental icmp6 type to 200; 141-142 are used for inverse neighbor
discovery.  sync with kame

Revision 1.18 / (download) - annotate - [select for diffs], Fri Dec 7 09:33:10 2001 UTC (22 years, 6 months ago) by itojun
Branch: MAIN
CVS Tags: UBC_BASE
Branch point for: UBC
Changes since 1.17: +1 -3 lines
Diff to previous 1.17 (colored)

correct icmp6 MIB counter mistake

Revision 1.17 / (download) - annotate - [select for diffs], Thu Dec 6 03:28:49 2001 UTC (22 years, 6 months ago) by itojun
Branch: MAIN
Changes since 1.16: +25 -21 lines
Diff to previous 1.16 (colored)

put __attribute__ to header decls to avoid align strangeness.  sync with kame

Revision 1.2.2.4 / (download) - annotate - [select for diffs], Wed Jul 4 10:54:27 2001 UTC (22 years, 11 months ago) by niklas
Branch: SMP
Changes since 1.2.2.3: +2 -3 lines
Diff to previous 1.2.2.3 (colored) to branchpoint 1.2 (colored)

Merge in -current from two days ago in the SMP branch.
As usual with merges, they do not indicate progress, so do not hold
your breath for working SMP, and do not mail me and ask about the
state of it.  It has not changed.  There is work ongoing, but very, very
slowly.  The commit is done in parts as to not lock up the tree in too
big chunks at a time.

Revision 1.16 / (download) - annotate - [select for diffs], Sat Jun 9 07:03:39 2001 UTC (23 years ago) by angelos
Branch: MAIN
CVS Tags: OPENBSD_3_0_BASE, OPENBSD_3_0
Changes since 1.15: +2 -3 lines
Diff to previous 1.15 (colored)

Inclusion protection.

Revision 1.2.2.3 / (download) - annotate - [select for diffs], Mon May 14 22:40:06 2001 UTC (23 years, 1 month ago) by niklas
Branch: SMP
Changes since 1.2.2.2: +112 -89 lines
Diff to previous 1.2.2.2 (colored) to branchpoint 1.2 (colored)

merge in approximately 2.9 into SMP branch

Revision 1.15 / (download) - annotate - [select for diffs], Wed Feb 7 11:43:52 2001 UTC (23 years, 4 months ago) by itojun
Branch: MAIN
CVS Tags: OPENBSD_2_9_BASE, OPENBSD_2_9
Changes since 1.14: +11 -3 lines
Diff to previous 1.14 (colored)

by default, don't bark on inbound ND messages, as outsider may be able to
fill up /var with bogus packets.
setting net.inet6.icmp6.nd6_debug will re-enable kernel messages on invalid
ND packet and other occasions.

improve icmp6 stats.

Revision 1.14 / (download) - annotate - [select for diffs], Mon Jan 22 04:31:21 2001 UTC (23 years, 4 months ago) by itojun
Branch: MAIN
Changes since 1.13: +4 -4 lines
Diff to previous 1.13 (colored)

fix router renumbering bit decl for little endian.  KAME PR 320

Revision 1.13 / (download) - annotate - [select for diffs], Sun Jan 21 15:42:35 2001 UTC (23 years, 4 months ago) by itojun
Branch: MAIN
Changes since 1.12: +8 -8 lines
Diff to previous 1.12 (colored)

sync router renumbering flag bit to conform to 2292bis-02 and RR RFC.
sync with latest kame rtadvd (again).  mostly cosmetic.

Revision 1.12 / (download) - annotate - [select for diffs], Mon Dec 11 08:04:55 2000 UTC (23 years, 6 months ago) by itojun
Branch: MAIN
Changes since 1.11: +12 -3 lines
Diff to previous 1.11 (colored)

nuke #ifdef TCP6 (no longer supported).
validate ICMPv6 too big messages (pmtud) based on pcb.  we accept
certain amount of non-validated ones, as IPv6 mandates ICMPv6 (so even for
traffic from unconnected pcb, we need pmtud).
sync with kame

Revision 1.11 / (download) - annotate - [select for diffs], Tue Oct 10 15:53:07 2000 UTC (23 years, 8 months ago) by itojun
Branch: MAIN
CVS Tags: OPENBSD_2_8_BASE, OPENBSD_2_8
Changes since 1.10: +2 -2 lines
Diff to previous 1.10 (colored)

little bit of sync with kame ($KAME, s/u_char/u_int8_t/)

Revision 1.10 / (download) - annotate - [select for diffs], Tue Oct 10 14:24:32 2000 UTC (23 years, 8 months ago) by itojun
Branch: MAIN
Changes since 1.9: +4 -2 lines
Diff to previous 1.9 (colored)

bring in icmp rate limitation code.
make icmp6 rate limitation to latest (uses ppsratecheck only).
(sync with netbsd)
TODO: tcp SYN rate limit?

Revision 1.9 / (download) - annotate - [select for diffs], Sat Aug 19 09:17:36 2000 UTC (23 years, 9 months ago) by itojun
Branch: MAIN
Changes since 1.8: +4 -3 lines
Diff to previous 1.8 (colored)

- upgrade icmp6 node information query support to 06 draft.
- pedant: possible alignment issue in ALIGN > 8 arch (should be okay for now)
(sync with kame)

Revision 1.8 / (download) - annotate - [select for diffs], Thu Aug 3 14:39:23 2000 UTC (23 years, 10 months ago) by itojun
Branch: MAIN
Changes since 1.7: +5 -4 lines
Diff to previous 1.7 (colored)

typo in #define.  ICMP6_NI_SUCESS -> SUCCESS.

Revision 1.7 / (download) - annotate - [select for diffs], Thu Jul 6 10:11:21 2000 UTC (23 years, 11 months ago) by itojun
Branch: MAIN
Changes since 1.6: +80 -81 lines
Diff to previous 1.6 (colored)

- more icmp6/ip6 stats.
- protect IPv6 ND from being hosed (due to neighbor unreachability detection
  hint) by wrong tcp traffic.  still not sure if there's real attack, but
  it is good to be cautious.
- avoid bitfield for router renumbering header decl.
- implement packet-per-sec limitation for icmp6 errors, turn interval
  limit off (it is not very useful due to unix timer resolution).

Revision 1.6 / (download) - annotate - [select for diffs], Mon Jun 12 17:24:26 2000 UTC (24 years ago) by itojun
Branch: MAIN
Changes since 1.5: +9 -6 lines
Diff to previous 1.5 (colored)

update icmp6 name lookup code to conform to 05 draft.  previous code
was 03/05 chimera.

ping6: -n by default due to too many false error report due to too long
reverse query delay.

Revision 1.2.2.2 / (download) - annotate - [select for diffs], Fri Mar 24 09:09:35 2000 UTC (24 years, 2 months ago) by niklas
Branch: SMP
Changes since 1.2.2.1: +5 -5 lines
Diff to previous 1.2.2.1 (colored) to branchpoint 1.2 (colored)

Sync with -current

Revision 1.5 / (download) - annotate - [select for diffs], Thu Mar 9 21:21:12 2000 UTC (24 years, 3 months ago) by itojun
Branch: MAIN
CVS Tags: OPENBSD_2_7_BASE, OPENBSD_2_7
Changes since 1.4: +6 -6 lines
Diff to previous 1.4 (colored)

change struct icmp6_filter member name: s/icmp6_filter/icmp6_filt/,
to be compliant with RFC2292.
From: Francis Dupont

Revision 1.2.2.1 / (download) - annotate - [select for diffs], Thu Mar 2 07:04:42 2000 UTC (24 years, 3 months ago) by niklas
Branch: SMP
Changes since 1.2: +32 -25 lines
Diff to previous 1.2 (colored)

Sync with -current

Revision 1.4 / (download) - annotate - [select for diffs], Mon Feb 28 14:05:59 2000 UTC (24 years, 3 months ago) by itojun
Branch: MAIN
Changes since 1.3: +28 -3 lines
Diff to previous 1.3 (colored)

upgrade node information query protocol support from 04 draft to
draft-ietf-ipngwg-icmp-name-lookups-05.txt.

NOTE: 04 and 05 has no interoperability, in terms of "ping6 -a".

Revision 1.3 / (download) - annotate - [select for diffs], Mon Feb 28 11:55:20 2000 UTC (24 years, 3 months ago) by itojun
Branch: MAIN
Changes since 1.2: +5 -23 lines
Diff to previous 1.2 (colored)

bring in recent KAME changes (only important and stable ones, as usual).
- remove net.inet6.ip6.nd6_proxyall.  introduce proxy NDP code works
  just like "arp -s".
- revise source address selection.
  be more careful about use of yet-to-be-valid addresses as source.
- as router, transmit ICMP6_DST_UNREACH_BEYONDSCOPE against out-of-scope
  packet forwarding attempt.
- path MTU discovery takes care of routing header properly.
- be more strict about mbuf chain parsing.
- nuke xxCTL_VARS #define, they are for BSDI.
- disable SIOCSIFDSTADDR_IN6/SIOCSIFNETMASK_IN6 ioctl, they do not fit
  IPv6 model where multiple address on interface is normal.
  (kernel side supports them for a while for backward compat,
  the support will be nuked shortly)
- introduce "default outgoing interface" (for spec conformance in very
  rare case)

Revision 1.2 / (download) - annotate - [select for diffs], Mon Feb 7 05:45:55 2000 UTC (24 years, 4 months ago) by itojun
Branch: MAIN
CVS Tags: SMP_BASE
Branch point for: SMP
Changes since 1.1: +619 -3 lines
Diff to previous 1.1 (colored)

for more strict rfc2292 compliance swap netinet{,6}/{ip6,icmp6}.h.
netinet6/{ip6,icmp6}.h will be nuked afterwards.

Revision 1.1 / (download) - annotate - [select for diffs], Wed Dec 8 06:50:18 1999 UTC (24 years, 6 months ago) by itojun
Branch: MAIN
CVS Tags: kame_19991208

bring in KAME IPv6 code, dated 19991208.
replaces NRL IPv6 layer.  reuses NRL pcb layer.  no IPsec-on-v6 support.
see sys/netinet6/{TODO,IMPLEMENTATION} for more details.

GENERIC configuration should work fine as before.  GENERIC.v6 works fine
as well, but you'll need KAME userland tools to play with IPv6 (will be
bringed into soon).

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.