Age | Commit message (Expand) | Author |
2019-02-04 | Avoid an mbuf double free in the oob soreceive() path. In the | Alexander Bluhm |
2018-11-10 | Do not translate the EACCES error from pf(4) to EHOSTUNREACH anymore. | Alexander Bluhm |
2018-10-04 | Revert the inpcb table mutex commit. It triggers a witness panic | Alexander Bluhm |
2018-09-20 | As a step towards per inpcb or socket locks, remove the net lock | Alexander Bluhm |
2018-04-24 | Push NET_LOCK down in the default ifioctl case. | Paul Irofti |
2017-11-02 | Move PRU_DETACH out of pr_usrreq into per proto pr_detach | Florian Obser |
2017-10-09 | Reduces the scope of the NET_LOCK() in sysctl(2) path. | Martin Pieuchot |
2017-10-06 | Unfortunately I removed too much in my previous commit and broke | Alexander Bluhm |
2017-10-06 | Kill the divert-packet socket option IP_DIVERTFL to filter packets. | Alexander Bluhm |
2017-09-06 | Replace the call to ifa_ifwithaddr() in divert6_output() with a | Alexander Bluhm |
2017-09-06 | Replace the call to ifa_ifwithaddr() in divert_output() with a route | Alexander Bluhm |
2017-09-05 | Replace NET_ASSERT_LOCKED() by soassertlocked() in *_usrreq(). | Martin Pieuchot |
2017-07-27 | Grab the KERNEL_LOCK() before calling sorwakeup(). | Martin Pieuchot |
2017-06-26 | Assert that the corresponding socket is locked when manipulating socket | Martin Pieuchot |
2017-05-30 | Introduce ipv{4,6}_input(), two wrappers around IP queues. | Martin Pieuchot |
2017-04-05 | When building counter memory in preparation to copy to userland, always | Theo de Raadt |
2017-03-13 | Move PRU_ATTACH out of the pr_usrreq functions into pr_attach. | Claudio Jeker |
2017-02-09 | percpu counters for divert(4) stats | Jeremie Courreges-Anglas |
2017-01-29 | Change the IPv4 pr_input function to the way IPv6 is implemented, | Alexander Bluhm |
2017-01-25 | Since raw_input() and route_input() are gone from pr_input, we can | Alexander Bluhm |
2016-12-19 | Introduce the NET_LOCK() a rwlock used to serialize accesses to the parts | Martin Pieuchot |
2016-11-21 | Enforce that pr_usrreq functions are called at IPL_SOFTNET. | Martin Pieuchot |
2016-03-07 | Sync no-argument function declaration and definition by adding (void). | Christian Weisgerber |
2015-09-09 | if_put after if_get | David Gwynne |
2015-09-01 | Replace sockaddr casts with the proper satosin(), ... calls. | Alexander Bluhm |
2015-08-14 | Replace sockaddr casts with the proper satosin() or satosin6() calls. | Alexander Bluhm |
2015-07-15 | m_freem() can handle NULL, do not check for this condition beforehands. | Theo de Raadt |
2015-06-16 | Store a unique ID, an interface index, rather than a pointer to the | Martin Pieuchot |
2015-04-10 | replace the use of ifqueues for most input queues serviced by netisr | David Gwynne |
2015-01-24 | Userland (base & ports) was adapted to always include <netinet/in.h> | Theo de Raadt |
2014-12-05 | Explicitly include <net/if_var.h> instead of pulling it in <net/if.h>. | Martin Pieuchot |
2014-09-08 | remove uneeded route.h includes | Jonathan Gray |
2014-08-10 | Fix the length check for reinjected ICMP packets: sizeof(struct icmp) is | Lawrence Teo |
2014-08-10 | Rename p_hdrlen to min_hdrlen to better reflect its purpose. | Lawrence Teo |
2014-07-22 | Fewer <netinet/in_systm.h> ! | Martin Pieuchot |
2014-07-12 | Remove the redundant csum_flag variable and just set the checksum flag | Lawrence Teo |
2014-07-12 | Protocol checksums have been recalculated on reinjection for a while | Lawrence Teo |
2014-07-12 | Implement checksum offload for divert(4): simply set the checksum flag | Lawrence Teo |
2014-07-10 | Simplify the way divert(4) sends packets to userspace: Instead of | Lawrence Teo |
2014-04-23 | No need for vargs here. | Florian Obser |
2014-04-21 | ip_output() using varargs always struck me as bizarre, esp since it's only | Henning Brauer |
2014-04-14 | "struct pkthdr" holds a routing table ID, not a routing domain one. | Martin Pieuchot |
2014-04-07 | Retire kernel support for SO_DONTROUTE, this time without breaking | Martin Pieuchot |
2014-03-28 | revert "Retire kernel support for SO_DONTROUTE" diff, which does bad things | Stuart Henderson |
2014-03-27 | Retire kernel support for SO_DONTROUTE, since the plan is to always | Martin Pieuchot |
2014-01-09 | bzero/bcmp -> memset/memcmp. ok matthew | Ted Unangst |
2013-12-20 | Switch inpt_queue from CIRCLEQ to TAILQ. Thus ending use of CIRCLEQ | Kenneth R Westerback |
2013-11-15 | Rename the struct pf_divert variable in divert_packet() and | Lawrence Teo |
2013-04-08 | Recalculate the IP and protocol checksums of packets (re)injected via | Lawrence Teo |
2013-04-02 | Use macros sotoinpcb() and intotcpcb() instead of casts. Use NULL | Alexander Bluhm |