summaryrefslogtreecommitdiff
path: root/sys/netinet6
AgeCommit message (Expand)Author
2022-08-15Run IPv6 hop-by-hop options processing in parallel. The ip6_hbhchcheck()Alexander Bluhm
2022-08-15Introduce 'pr_usrreqs' structure and move existing user-protocolVitaliy Makkoveev
2022-08-12Remove differences between ip_fragment() and ip6_fragment(). TheyAlexander Bluhm
2022-08-12There are some places in ip and ip6 input where operations fail dueAlexander Bluhm
2022-08-12At successful return ip6_check_rh0hdr() keeps *offp unmodified.Alexander Bluhm
2022-08-09Backout "Call getuptime() just once per function"Klemens Nanni
2022-08-08If interface drivers had enabled transmit offloading of the payloadAlexander Bluhm
2022-08-08Constify in6_addr pointer arguments in nd6_*() functionsKlemens Nanni
2022-08-08Call getuptime() just once per functionKlemens Nanni
2022-08-08To make protocol input functions MP safe, internet PCB need protection.Alexander Bluhm
2022-08-06Clean up the netlock macros. Merge NET_RLOCK_IN_SOFTNET andAlexander Bluhm
2022-07-28Zap prototypes for nonexistent nd6_setmtu() and in6_ifdel()Klemens Nanni
2022-07-28Zap outdated nd6_free() comment about staticKlemens Nanni
2022-07-24Fix assertion for write netlock in rip6_input(). ip6_input() hasAlexander Bluhm
2022-07-22Zap nd6_recalc_reachtm_interval indirectionKlemens Nanni
2022-07-22Leftovers from florian's RS/NA purge from the kernel in 2017.Klemens Nanni
2022-07-22Zap dead store nd6_allocatedKlemens Nanni
2022-07-22Call nd6_timer() without argumentKlemens Nanni
2022-06-29Pass a pointer to mbuf pointer further down into ip6_process_hopopts()Alexander Bluhm
2022-06-29Pass down the pointer to mbuf pointer into ip6_hbhchcheck(). ThisAlexander Bluhm
2022-06-28The ip6_hbhchcheck() function never reads the nxtp parameter, itAlexander Bluhm
2022-05-09Protect sbappendaddr() in divert_packet() with kernel lock. WithAlexander Bluhm
2022-05-05Clean up divert_packet(). Function does not return error, make itAlexander Bluhm
2022-05-05Use static objects for struct rttimer_queue instead of dynamicallyClaudio Jeker
2022-05-04Move rttimer callback function from the rttimer itself to rttimer_queue.Claudio Jeker
2022-04-30Convert the 2nd rttimer callback from struct rttimer to u_int rtableid.Claudio Jeker
2022-04-28In the multicast router code don't allocate a rt timer queue for eachClaudio Jeker
2022-04-28Decouple IP input and forwarding from protocol input. This allowsAlexander Bluhm
2022-04-20Route timeout was a mixture of int, u_int and long. Use type intAlexander Bluhm
2022-04-14Relax address availability check for multicast binds.Claudio Jeker
2022-03-23For raw IPv6 packets rip6_input() traverses the loop of all PCBs.Alexander Bluhm
2022-03-22Extract the type from the ICMP6 header before looping over Raw IPv6Alexander Bluhm
2022-03-21Header netinet/in_pcb.h includes sys/mutex.h now. Recommit mutexAlexander Bluhm
2022-03-14Unbreak the tree, revert commitid aZ8fm4iaUnTCc0ulTheo Buehler
2022-03-14pf_socket_lookup() calls in_pcbhashlookup() in the PCB layer. ToAlexander Bluhm
2022-03-02The return value of in6_pcbnotify() is never used. Make it a voidAlexander Bluhm
2022-02-25Reported-by: syzbot+1b5b209ce506db4d411d@syzkaller.appspotmail.comPhilip Guenther
2022-02-25Move pr_attach and pr_detach to a new structure pr_usrreqs that canPhilip Guenther
2022-02-25in6_ioctl() is declared in in6_var.h as it's used in if_umb.c, soPhilip Guenther
2022-02-22Delete unnecessary #includes of <netinet6/ip6protosw.h>: some neverPhilip Guenther
2022-02-22Delete unnecessary #includes of <sys/domain.h> and/or <sys/protosw.h>Philip Guenther
2022-02-22Move declarations of ip6_protox[] and inet6sw[] to <sys/protosw.h>Philip Guenther
2022-02-21futther -> furtherJonathan Gray
2022-02-07Checking ifaddr pointer for NULL without checking in6_ifaddr worksAlexander Bluhm
2022-01-04Add `ipsec_flows_mtx' mutex(9) to protect `ipsp_ids_*' list andYASUOKA Masahiko
2022-01-02spellingJonathan Gray
2021-12-25For a long time ip_ours() and ip6_ours() are calling ip_deliver()Alexander Bluhm
2021-12-23IPsec is not MP safe yet. To allow forwarding in parallel withoutAlexander Bluhm
2021-12-20Use per-CPU counters for tunnel descriptor block (TDB) statistics.Vitaliy Makkoveev
2021-12-15structure pads can leak uninitialized memory to userland via copyout,Theo de Raadt