Age | Commit message (Expand) | Author |
2022-05-15 | have in_pcbselsrc copy the selected address to memory provided by the caller. | David Gwynne |
2022-03-23 | Move global variable ripsrc onto stack, it is only used once within | Alexander Bluhm |
2022-03-22 | For raw IP packets rip_input() traverses the loop of all PCBs. From | Alexander Bluhm |
2022-03-21 | Header netinet/in_pcb.h includes sys/mutex.h now. Recommit mutex | Alexander Bluhm |
2022-03-21 | call in_pcbselsrc from rip_output so route sourceaddr can take effect. | David Gwynne |
2022-03-14 | Unbreak the tree, revert commitid aZ8fm4iaUnTCc0ul | Theo Buehler |
2022-03-14 | pf_socket_lookup() calls in_pcbhashlookup() in the PCB layer. To | Alexander Bluhm |
2022-02-25 | Reported-by: syzbot+1b5b209ce506db4d411d@syzkaller.appspotmail.com | Philip Guenther |
2022-02-25 | Move pr_attach and pr_detach to a new structure pr_usrreqs that can | Philip Guenther |
2019-02-04 | Avoid an mbuf double free in the oob soreceive() path. In the | Alexander Bluhm |
2019-01-08 | Botched up an if conditional in the last commit. The IP length needs to | Claudio Jeker |
2019-01-07 | Validate the version, and all length fields of IP packets passed to a raw socket | Claudio Jeker |
2018-12-03 | In PRU_DISCONNECT don't fall through into PRU_ABORT since the latter frees | Claudio Jeker |
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-09-13 | Add reference counting for inet pcb, this will be needed when we | Alexander Bluhm |
2018-07-05 | It was possible to leak the control mbuf in raw ip user request | Alexander Bluhm |
2018-07-04 | Prevent a mbuf double free by not freeing it along the error-path in | anton |
2018-04-24 | Push NET_LOCK down in the default ifioctl case. | Paul Irofti |
2017-12-04 | Make divert lookup similar for all socket types. If PF_TAG_DIVERTED | Alexander Bluhm |
2017-11-28 | The divert structure was using the port number to indicate that | Alexander Bluhm |
2017-11-20 | Sprinkle some NET_ASSERT_LOCKED(), const and co to prepare running | Martin Pieuchot |
2017-11-02 | Move PRU_DETACH out of pr_usrreq into per proto pr_detach | Florian Obser |
2017-10-06 | Kill the divert-packet socket option IP_DIVERTFL to filter packets. | Alexander Bluhm |
2017-09-05 | Replace NET_ASSERT_LOCKED() by soassertlocked() in *_usrreq(). | Martin Pieuchot |
2017-09-01 | Change sosetopt() to no longer free the mbuf it receives and change | Martin Pieuchot |
2017-08-11 | Validate sockaddr from userland in central functions. This results | Alexander Bluhm |
2017-06-26 | Assert that the corresponding socket is locked when manipulating socket | Martin Pieuchot |
2017-04-17 | The raw ip input functions are called from several places. Use the | Alexander Bluhm |
2017-04-14 | Pass down the address family through the pr_input calls. This | Alexander Bluhm |
2017-03-13 | Move PRU_ATTACH out of the pr_usrreq functions into pr_attach. | Claudio Jeker |
2017-03-03 | Convert the variable argument list of the pr_output functions to | Alexander Bluhm |
2017-02-01 | In sogetopt, preallocate an mbuf to avoid using sleeping mallocs with | David Hill |
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 |
2017-01-23 | The function raw_input() has not been called since netiso has been | Alexander Bluhm |
2017-01-10 | Remove NULL checks before m_free(9), it deals with it. | Martin Pieuchot |
2016-12-19 | Extend the multicast sockets and multicast hash table support to multiple | Rafael Zalamena |
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-11-14 | turn ipstat into a set of percpu counters. | David Gwynne |
2016-03-07 | Sync no-argument function declaration and definition by adding (void). | Christian Weisgerber |
2015-12-03 | Remove broadcast matching from ifa_ifwithaddr(), use in_broadcast() where | Vincent Gross |
2015-07-28 | Implement pf divert-reply for raw sockets. Note that an empty | Alexander Bluhm |
2015-07-15 | use mp for the name of a variable of type struct mbuf **, rather than m | Theo de Raadt |
2015-07-15 | m_freem() can handle NULL, do not check for this condition beforehands. | Theo de Raadt |
2015-06-30 | Get rid of the undocumented & temporary* m_copy() macro added for | Martin Pieuchot |
2015-06-07 | Replace a bunch of == 0 with == NULL in pointer tests. Nuke some | Kenneth R Westerback |
2015-01-24 | Userland (base & ports) was adapted to always include <netinet/in.h> | Theo de Raadt |