summaryrefslogtreecommitdiff
path: root/sys/net
AgeCommit message (Expand)Author
2022-06-28Use refcnt API for struct rtentry instead of hand-crafted atomicAlexander Bluhm
2022-06-28ifconfig(8) return "Not supported" if you try to configure tso on a non-tsoJan Klemkow
2022-06-28Introduce `pipexoutq' mbuf(9) queue, and put outgoing pipex(4) relatedVitaliy Makkoveev
2022-06-27Rework the rttimer code. Instead of a global queue and a global timeoutClaudio Jeker
2022-06-27Push the kernel lock down into arpresolve(). We still need it toAlexander Bluhm
2022-06-27Fix white space and wrap long lines.Alexander Bluhm
2022-06-27Introduce Large Receive Offloading of TCP segment offloading for ix(4). It isJan Klemkow
2022-06-27Don't copy more than sa_len from the sockaddr to the sysctl / rt msg buffer.Claudio Jeker
2022-06-26Mark `pipex_enable' as atomic. We never check `pipex_enable' withinVitaliy Makkoveev
2022-06-26Don't reset `idle_time' timeout on closed pipex(4) sessions in packetVitaliy Makkoveev
2022-06-26Don't take kernel lock on pipex(4) pppoe input. This extra serializationVitaliy Makkoveev
2022-06-26Fix spacing.Vitaliy Makkoveev
2022-06-26Switch walkargs for the buffer size to size_t and change the overflowClaudio Jeker
2022-06-26The "ifq_set_maxlen(..., 1);" hack we use to enforce pipex(4) relatedVitaliy Makkoveev
2022-06-26'pipex_mppe' and 'pipex_session' structures have uint16_t bit fieldsVitaliy Makkoveev
2022-06-26Allow waiting during ktable allocation in pf_ioctl.mbuhl
2022-06-16pfctl reports existing table as being added. glitch hasAlexandr Nedvedicky
2022-06-16Mark routes sent via sysctl(2) with RTF_DONE like it is done on theClaudio Jeker
2022-06-13fix logic bug in pf_find_state()Henning Brauer
2022-06-07fixes potential memory leak. if_vinput() should always consume packetAlexandr Nedvedicky
2022-06-07fixes NULL pointer dereference panic triggered by relayd.Alexandr Nedvedicky
2022-06-06Simplify solock() and sounlock(). There is no reason to return a valueClaudio Jeker
2022-06-01callers to pf(4) must continue to run with packet as returnedAlexandr Nedvedicky
2022-05-23In pf the kernel paniced if IP options in packet within ICMP payloadAlexander Bluhm
2022-05-23Fix white space.Alexander Bluhm
2022-05-18Remove #ifdef DDB specific includes, added in 1.968 but related code bitsMiod Vallat
2022-05-16pfi_kif_alloc() may be called with M_NOWAIT. Add NULL check toAlexander Bluhm
2022-05-15Use strncmp() and IFNAMSIZ for if_xname in veb(4) consistently.Alexander Bluhm
2022-05-15gcc insists the decl for veb_ports_free also use inlineTheo de Raadt
2022-05-15avoid calling if_enqueue from an smr critical section.David Gwynne
2022-05-14When receiving a PADO offer, clear stored tags from previous PADO packets.Tobias Heider
2022-05-10move memory allocations in pfr_add_tables() out ofAlexandr Nedvedicky
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-05-03Make pf(4) more paranoid about IGMP/MLP messages. MLD/IGMP messagesAlexandr Nedvedicky
2022-05-03Activate parallel IP forwarding. Start 4 softnet tasks. Limit theAlexander Bluhm
2022-04-30Run IP input and forwarding with shared netlock. Also distributeAlexander Bluhm
2022-04-30Convert the 2nd rttimer callback from struct rttimer to u_int rtableid.Claudio Jeker
2022-04-29Release PF und NET lock before calling copyout for DIOCIGETIFACES.mbuhl
2022-04-29IGMP and ICMP6 MLD packets always have the router alert option set.Alexander Bluhm
2022-04-28Route timers were not MP safe. Protect the global lists with aAlexander Bluhm
2022-04-28Decouple IP input and forwarding from protocol input. This allowsAlexander Bluhm
2022-04-22ARP, ND6 and PPPoE are not MP safe. Protect them with kernel lockAlexander Bluhm
2022-04-21Introduce a dedicated link entries for snapshots in pfsync(4). The purposeAlexandr Nedvedicky
2022-04-20In pfsync there were some KASSERT hidden behind #ifdef PFSYNC_DEBUG.Alexander Bluhm
2022-04-20Fix white space and wrap long lines.Alexander Bluhm
2022-04-20Route timeout was a mixture of int, u_int and long. Use type intAlexander Bluhm
2022-04-19Use a pool instead of malloc for struct rttimer_queue. As routingAlexander Bluhm
2022-04-19Instead of a MP unsafe global variable to initialize at first use,Alexander Bluhm