summaryrefslogtreecommitdiffstats
path: root/sys/netinet6
Commit message (Collapse)AuthorAgeFilesLines
* Fix broken const'ness in declaration of sha1_loop().archie2000-10-091-4/+4
|
* make pr_type type meet with struct protosw. sync with kameitojun2000-10-031-2/+2
|
* add missing \n. sync with kame.itojun2000-10-011-3/+3
|
* Make ip6fw as loadable module.ume2000-09-235-24/+54
|
* examined the gateway (from the routing table) only when the addressume2000-09-151-0/+10
| | | | | | family of the gateway is AF_INET6. Submitted by: JINMEI Tatuya <jinmei@isl.rdc.toshiba.co.jp>
* Follow BSD/OS and NetBSD, keep the ip_id field in network order all the time.ru2000-09-141-2/+0
| | | | Requested by: wollman
* add attrbute(packed) to union def with specific align constraitn.itojun2000-09-091-11/+11
| | | | | | | move file static variable to auto variable, make in6_cksum() work better in kernel-MP environment. sync with kame. From: Alfred Perlstein <bright@wintelcom.net>
* repair type 0 routing header support. it was caused by RFC2292/2292bisitojun2000-09-031-1/+2
| | | | difference. from: jinmei@kame.net
* warn that setsockopt/sysctl # spaces are shared among *BSD, and should betteritojun2000-08-271-0/+2
| | | | be consulted with KAME guys if you want a number.
* Replace the mbuf external reference counting code with somethingdwmalone2000-08-191-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | that should be better. The old code counted references to mbuf clusters by using the offset of the cluster from the start of memory allocated for mbufs and clusters as an index into an array of chars, which did the reference counting. If the external storage was not a cluster then reference counting had to be done by the code using that external storage. NetBSD's system of linked lists of mbufs was cosidered, but Alfred felt it would have locking issues when the kernel was made more SMP friendly. The system implimented uses a pool of unions to track external storage. The union contains an int for counting the references and a pointer for forming a free list. The reference counts are incremented and decremented atomically and so should be SMP friendly. This system can track reference counts for any sort of external storage. Access to the reference counting stuff is now through macros defined in mbuf.h, so it should be easier to make changes to the system in the future. The possibility of storing the reference count in one of the referencing mbufs was considered, but was rejected 'cos it would often leave extra mbufs allocated. Storing the reference count in the cluster was also considered, but because the external storage may not be a cluster this isn't an option. The size of the pool of reference counters is available in the stats provided by "netstat -m". PR: 19866 Submitted by: Bosko Milekic <bmilekic@dsuper.net> Reviewed by: alfred (glanced at by others on -net)
* add missing splx(), when outgoing interface queue is full on tunnelleditojun2000-08-162-0/+4
| | | | IPsec packet output. KAME PR 280.
* Make compilable with -DIPFILTER.ume2000-08-122-2/+7
| | | | | | | Because I don't use ipfilter at all, this is not tested. I don't know if ipfilter is work for IPv6. Submitted by: yoshiaki@kt.rim.or.jp
* backout ND6_USE_RTSOCK change in previousitojun2000-08-111-0/+2
|
* avoid duplicated rtfree() on default router list change (could cause panic).itojun2000-08-111-6/+9
| | | | sync with kame 1.46 -> 1.47.
* Make ip6fw zero work.ume2000-08-101-1/+1
| | | | PR: bin/20522
* GRRR! Fix the 'panic: ip6_init' caused by darrenr's incomplete changespeter2000-08-021-0/+6
| | | | | for the pfil hooks. The protosw and ip6protosw structures were out of sync with each other. :-(
* activate pfil_hooks and covert ipfilter to use itdarrenr2000-07-312-0/+60
|
* s/IPSEC_IPV6FWD/IPSEC/. this avoids unexpected behavior on ipv6 fowarding.itojun2000-07-161-10/+10
| | | | | (even if you ask for tunnel-mode encryption packets will go out in clear) sync with kame.
* remove m_pulldown statistics, which is highly experimental and does notitojun2000-07-121-14/+0
| | | | belong to *bsd-merged tree
* correct rtentry reference count in in6_ifloop_request().itojun2000-07-121-3/+5
| | | | | if you reconfigure inet6 too much, the reference count can go into negative by mistake. KAME in6.c 1.98 -> 1.99.
* Suppress a warning message about trigraphs.grog2000-07-071-1/+1
| | | | Approved-by: itojun
* add list of KAME files - may not be 100% correctitojun2000-07-051-0/+53
|
* split net.inet6.ip6.rtexpire (and others) from net.inet.ip.*.itojun2000-07-052-4/+12
| | | | From: Andrzej Bialecki <abial@webgiro.com>
* correct compilation with IPSEC_IPV6FWD.itojun2000-07-051-0/+1
| | | | From: Ollivier Robert <roberto@keltia.freenix.fr>
* sync with kame tree as of july00. tons of bug fixes/improvements.itojun2000-07-0465-6148/+11365
| | | | | | | API changes: - additional IPv6 ioctls - IPsec PF_KEY API was changed, it is mandatory to upgrade setkey(8). (also syntax change)
* Previous commit changing SYSCTL_HANDLER_ARGS violated KNF.phk2000-07-042-2/+2
| | | | Pointed out by: bde
* Style police catches up with rev 1.26 of src/sys/sys/sysctl.h:phk2000-07-032-2/+2
| | | | | | | | Sanitize SYSCTL_HANDLER_ARGS so that simplistic tools can grog our sources: -sysctl_vm_zone SYSCTL_HANDLER_ARGS +sysctl_vm_zone (SYSCTL_HANDLER_ARGS)
* Inhibit successful DAD messages and "no default interface" messages.ume2000-06-221-2/+4
| | | | | | | It seems that people find them too noisy. (ND6_DEBUG will enable them) Obtained from: KAME Project
* correct bad TTL with packets generated by v4 mapped udp. from kameitojun2000-06-221-0/+7
|
* Back out the previous change to the queue(3) interface.jake2000-05-268-19/+19
| | | | | | It was not discussed and should probably not happen. Requested by: msmith and others
* Just need to pass the address family to if_simloop(), not the whole sockaddr.archie2000-05-242-2/+2
|
* Change the way that the queue(3) structures are declared; don't assume thatjake2000-05-238-19/+19
| | | | | | | | the type argument to *_HEAD and *_ENTRY is a struct. Suggested by: phk Reviewed by: phk Approved by: mdodd
* Fixed missing prototype for inet6_rthdr_reverse().bde2000-05-111-0/+2
|
* Add missing include machine/in_cksum.h.ps2000-05-091-0/+2
| | | | Submitted by: n_hibma
* Remove unneeded #include <sys/kernel.h>phk2000-04-299-9/+0
|
* Remove ~25 unneeded #include <sys/conf.h>phk2000-04-199-9/+0
| | | | Remove ~60 unneeded #include <sys/malloc.h>
* even if nd6_nud_hint is called, do not change a neighbor's statussumikawa2000-04-171-1/+1
| | | | | | | unless the old status is probably reachable (i.e. the link-layer address has already been resolved). Obtained from: KAME Project
* Support per socket based IPv4 mapped IPv6 addr enable/disable control.shin2000-04-012-5/+5
| | | | Submitted by: ume
* in6_pcb.c:green2000-03-221-3/+2
| | | | | | | | | | | Remove a bogus (redundant, just weird, etc.) key_freeso(so). There are no consumers of it now, nor does it seem there ever will be. in6?_pcb.c: Add an if (inp->in6?p_sp != NULL) before the call to ipsec[46]_delete_pcbpolicy(inp). In low-memory conditions this can cause a crash because in6?_sp can be NULL...
* Backout the previous change to __KAME_VERSION (FreeBSD4.x addition),shin2000-03-131-1/+1
| | | | because this is now 5.0-current.
* Change __KAME_VERSION value. Added the word "FreeBSD4.x" to identify theshin2000-03-121-1/+1
| | | | | | | system with other platform and/or other version of FreeBSD, which is also integrated KAME code based on another date. Approved by: jkh
* Forbid include of netinet6/ip6.h from user-land, and if included,shin2000-03-111-2/+0
| | | | | | | | | | print an error message which say, "include netinet/ip6.h". This is postponed to apply to avoid tcpdump compile error. Now apply this because tcpdump has been already fixed. Approved by: jkh Obtained from: KAME project
* Replace m_pkthdr.rcvif with oif when oif is not NULL, to countshin2000-03-111-0/+2
| | | | | | | | | | icmp6 error statistics based on sending interface. This also prevent kernel panic when rcvif is not initialized after M_PKTHDR(). (The initialization issue also need to be fixed in the future.) Approved by: jkh Submitted by: k-sugyou@kame.net
* Initialize mbuf pointer at getting ipsec policy.shin2000-03-091-8/+6
| | | | | | | | | | Without this, kernel will panic at getsockopt() of IPSEC_POLICY. Also make compilable libipsec/test-policy.c which tries getsockopt() of IPSEC_POLICY. Approved by: jkh Submitted by: sakane@kame.net
* Update icmp node info query message bit order of query types,shin2000-03-092-17/+25
| | | | | | | | | | | | | according to draft-ietf-ipngwg-icmp-name-lookups-04 to 05 change. This is necessary before 4.0, because, -This change is non backword compatible -Other KAME derived platforms applied 05 -Author of the draft said he never do backword imcompatible changes again. Approved by: jkh Obtained from: KAME project
* CMSG_XXX macros alignment fixes to follow RFC2292.shin2000-03-031-2/+2
| | | | | | | Approved by: jkh Submitted by: Partly from tech@openbsd Reviewed by: itojun
* At detaching IPv6 raw socket, also finish IPv6 multicast router.shin2000-02-271-0/+2
| | | | | | Approved by: jkh Submitted by: fenner
* Clean up some loose ends in the network code, including the X.25 and ISOpeter2000-02-131-2/+1
| | | | | | | #ifdefs. Clean out unused netisr's and leftover netisr linker set gunk. Tested on x86 and alpha, including world. Approved by: jkh
* Prototype fix for IPsec authentication related functionsshin2000-02-102-11/+13
| | | | | | | | | | | | Some of IPsec authentication related functions should have 'const' for its 2nd argument, but not now. But if someone try to use them, and passed const data for those functions, then much bogus compile warnings will be generated. So those funcs prototype should be modified. Requested by: archie Approved by: jkh
* Forbid include of soem inet6 header files from wrong placeshin2000-02-103-0/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | KAME put INET6 related stuff into sys/netinet6 dir, but IPv6 standard API(RFC2553) require following files to be under sys/netinet. netinet/ip6.h netinet/icmp6.h Now those header files just include each following files. netinet6/ip6.h netinet6/icmp6.h Also KAME has netinet6/in6.h for easy INET6 common defs sharing between different BSDs, but RFC2553 requires only netinet/in.h should be included from userland. So netinet/in.h also includes netinet6/in6.h inside. To keep apps portability, apps should not directly include above files from netinet6 dir. Ideally, all contents of, netinet6/ip6.h netinet6/icmp6.h netinet6/in6.h should be moved into netinet/ip6.h netinet/icmp6.h netinet/in.h but to avoid big changes in this stage, add some hack, that -Put some special macro define into those files under neitnet -Let files under netinet6 cause error if it is included from some apps, and, if the specifal macro define is not defined. (which should have been defined if files under netinet is included) -And let them print an error message which tells the correct name of the include file to be included. Also fix apps which includes invalid header files. Approved by: jkh Obtained from: KAME project
OpenPOWER on IntegriCloud