| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | tcp: Move connection state structures into a shared header | David Gibson | 2022-11-25 | 1 | -156/+50 |
* | tcp: Better helpers for converting between connection pointer and index | David Gibson | 2022-11-25 | 1 | -38/+45 |
* | tcp, udp: Don't initialise IPv6/IPv4 sockets if IPv4/IPv6 are not enabled | Stefano Brivio | 2022-11-10 | 1 | -2/+2 |
* | tcp: Correct function comments for address types | David Gibson | 2022-11-04 | 1 | -6/+6 |
* | Use typing to reduce chances of IPv4 endianness errors | David Gibson | 2022-11-04 | 1 | -25/+23 |
* | Don't create 'tap' socket for ports that are bound to loopback only | Stefano Brivio | 2022-10-15 | 1 | -69/+114 |
* | tcp, tcp_splice: Fix port remapping for inbound, spliced connections | Stefano Brivio | 2022-10-15 | 1 | -4/+3 |
* | tcp, tcp_splice: Adjust comments to current meaning of inbound and outbound | Stefano Brivio | 2022-10-15 | 1 | -1/+1 |
* | conf, tcp, udp: Allow specification of interface to bind to | Stefano Brivio | 2022-10-15 | 1 | -12/+15 |
* | Move logging functions to a new file, log.c | Stefano Brivio | 2022-10-14 | 1 | -0/+1 |
* | cppcheck: Suppress NULL pointer warning in tcp_sock_consume() | David Gibson | 2022-09-29 | 1 | -0/+1 |
* | cppcheck: Work around false positive NULL pointer dereference error | David Gibson | 2022-09-29 | 1 | -0/+1 |
* | Fix widespread off-by-one error dealing with port numbers | David Gibson | 2022-09-24 | 1 | -6/+6 |
* | Treat port numbers as unsigned | David Gibson | 2022-09-24 | 1 | -2/+2 |
* | Don't use indirect remap functions for conf_ports() | David Gibson | 2022-09-24 | 1 | -22/+0 |
* | Consolidate port forwarding configuration into a common structure | David Gibson | 2022-09-24 | 1 | -23/+19 |
* | Improve types and names for port forwarding configuration | David Gibson | 2022-09-24 | 1 | -6/+6 |
* | Make substructures for IPv4 and IPv6 specific context information | David Gibson | 2022-07-30 | 1 | -17/+17 |
* | Separate IPv4 and IPv6 configuration | David Gibson | 2022-07-30 | 1 | -10/+10 |
* | Allow different external interfaces for IPv4 and IPv6 connectivity | David Gibson | 2022-07-30 | 1 | -1/+1 |
* | tcp: Silence warning from gcc 11.3 with -Ofast | Stefano Brivio | 2022-06-08 | 1 | -2/+8 |
* | tcp: Work around gcc 12 bogus warning in tcp_rtt_dst_check() | Stefano Brivio | 2022-05-20 | 1 | -0/+6 |
* | conf, tcp, udp: Allow address specification for forwarded ports | Stefano Brivio | 2022-05-01 | 1 | -27/+36 |
* | tcp: False "Out-of-bounds read" positive, CWE-125 | Stefano Brivio | 2022-04-07 | 1 | -1/+5 |
* | tcp, tcp_splice: False "Negative array index read" positives, CWE-129 | Stefano Brivio | 2022-04-07 | 1 | -4/+8 |
* | tcp: Dereference null return value, CWE-476 | Stefano Brivio | 2022-04-07 | 1 | -1/+1 |
* | treewide: Unchecked return value from library, CWE-252 | Stefano Brivio | 2022-04-07 | 1 | -7/+12 |
* | tcp: False "Untrusted loop bound" positive, CWE-606 | Stefano Brivio | 2022-04-05 | 1 | -0/+2 |
* | treewide: Invalid type in argument to printf format specifier, CWE-686 | Stefano Brivio | 2022-04-05 | 1 | -19/+19 |
* | tap, tcp, udp, icmp: Cut down on some oversized buffers | Stefano Brivio | 2022-03-29 | 1 | -10/+41 |
* | tcp: Fix warning by gcc 5.4 on ppc64le about comparison in CONN_OR_NULL() | Stefano Brivio | 2022-03-29 | 1 | -13/+13 |
* | treewide: Mark constant references as const | Stefano Brivio | 2022-03-29 | 1 | -44/+51 |
* | treewide: Packet abstraction with mandatory boundary checks | Stefano Brivio | 2022-03-29 | 1 | -195/+247 |
* | tcp, tcp_splice: Use less awkward syntax to swap in/out sockets from pools | Stefano Brivio | 2022-03-29 | 1 | -5/+4 |
* | tcp: Fit struct tcp_conn into a single 64-byte cacheline | Stefano Brivio | 2022-03-29 | 1 | -135/+163 |
* | tcp_splice: Close sockets right away on high number of open files | Stefano Brivio | 2022-03-29 | 1 | -0/+1 |
* | tcp: Rework timers to use timerfd instead of periodic bitmap scan | Stefano Brivio | 2022-03-29 | 1 | -231/+272 |
* | tcp, udp, util: Enforce 24-bit limit on socket numbers | Stefano Brivio | 2022-03-29 | 1 | -0/+17 |
* | dhcpv6, tap, tcp: Use IN6_ARE_ADDR_EQUAL instead of open-coded memcmp() | Stefano Brivio | 2022-03-28 | 1 | -6/+6 |
* | tcp: Refactor to use events instead of states, split out spliced implementation | Stefano Brivio | 2022-03-28 | 1 | -1495/+851 |
* | seccomp, tcp: Add fcntl64 to pasta syscalls for armv6l, armv7l | Stefano Brivio | 2022-02-28 | 1 | -1/+1 |
* | tcp, udp: Receive batching doesn't pay off when writing single frames to tap | Stefano Brivio | 2022-02-21 | 1 | -16/+20 |
* | passt, pasta: Namespace-based sandboxing, defer seccomp policy application | Stefano Brivio | 2022-02-21 | 1 | -8/+5 |
* | passt: Address new clang-tidy warnings from LLVM 13.0.1 | Stefano Brivio | 2022-01-30 | 1 | -5/+5 |
* | passt, tap: Daemonise once socket is ready without waiting for connection | Stefano Brivio | 2022-01-28 | 1 | -1/+1 |
* | seccomp: Add a number of alternate and per-arch syscalls | Stefano Brivio | 2022-01-26 | 1 | -1/+1 |
* | tcp: Don't round down MSS to >= 64KiB page size, but clamp it in any case | Stefano Brivio | 2022-01-26 | 1 | -3/+3 |
* | tcp, udp, util: Fixes for bitmap handling on big-endian, casts | Stefano Brivio | 2022-01-26 | 1 | -1/+1 |
* | tcp, netlink, HAS{BYTES_ACKED,MIN_RTT,GETRANDOM} and NETLINK_GET_STRICT_CHK | Stefano Brivio | 2022-01-26 | 1 | -0/+36 |
* | passt: Drop <linux/ipv6.h> include, carry own ipv6hdr and opt_hdr definitions | Stefano Brivio | 2022-01-26 | 1 | -1/+0 |