| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | conf, tcp, udp: Allow specification of interface to bind to | Stefano Brivio | 2022-10-15 | 1 | -17/+18 |
* | Move logging functions to a new file, log.c | Stefano Brivio | 2022-10-14 | 1 | -0/+1 |
* | udp: Replace pragma to ignore bogus stringop-overread warning with workaround | Stefano Brivio | 2022-09-29 | 1 | -8/+18 |
* | Fix widespread off-by-one error dealing with port numbers | David Gibson | 2022-09-24 | 1 | -5/+5 |
* | Treat port numbers as unsigned | David Gibson | 2022-09-24 | 1 | -1/+1 |
* | Don't use indirect remap functions for conf_ports() | David Gibson | 2022-09-24 | 1 | -22/+0 |
* | udp: Delay initialization of UDP reversed port mapping table | David Gibson | 2022-09-24 | 1 | -3/+22 |
* | Consolidate port forwarding configuration into a common structure | David Gibson | 2022-09-24 | 1 | -17/+13 |
* | udp: Don't drop zero-length outbound UDP packets | David Gibson | 2022-09-13 | 1 | -7/+10 |
* | udp: Don't pre-initialize msghdr array | David Gibson | 2022-09-13 | 1 | -1/+5 |
* | Make substructures for IPv4 and IPv6 specific context information | David Gibson | 2022-07-30 | 1 | -31/+31 |
* | Separate IPv4 and IPv6 configuration | David Gibson | 2022-07-30 | 1 | -4/+4 |
* | udp: Ignore bogus -Wstringop-overread for write() from gcc 12.1 | Stefano Brivio | 2022-05-19 | 1 | -0/+4 |
* | conf, tcp, udp: Allow address specification for forwarded ports | Stefano Brivio | 2022-05-01 | 1 | -63/+99 |
* | udp: Out-of-bounds read, CWE-125 in udp_timer() | Stefano Brivio | 2022-04-07 | 1 | -1/+1 |
* | treewide: Unchecked return value from library, CWE-252 | Stefano Brivio | 2022-04-07 | 1 | -1/+2 |
* | tap, tcp, udp, icmp: Cut down on some oversized buffers | Stefano Brivio | 2022-03-29 | 1 | -2/+2 |
* | udp: Move flags before ts in struct udp_tap_port, avoid end padding | Stefano Brivio | 2022-03-29 | 1 | -3/+3 |
* | treewide: Mark constant references as const | Stefano Brivio | 2022-03-29 | 1 | -16/+18 |
* | treewide: Packet abstraction with mandatory boundary checks | Stefano Brivio | 2022-03-29 | 1 | -20/+26 |
* | tcp, udp, util: Enforce 24-bit limit on socket numbers | Stefano Brivio | 2022-03-29 | 1 | -0/+7 |
* | udp: Use flags for local, loopback, and configured unicast binds | Stefano Brivio | 2022-03-28 | 1 | -25/+23 |
* | udp: Split buffer queueing/writing parts of udp_sock_handler() | Stefano Brivio | 2022-03-28 | 1 | -171/+193 |
* | udp: Drop _splice from recv, send, sendto static buffer names | Stefano Brivio | 2022-03-28 | 1 | -29/+23 |
* | udp: Explicitly initialise sin6_scope_id and sin_zero in sockaddr_in{,6} | Stefano Brivio | 2022-02-25 | 1 | -0/+2 |
* | tcp, udp: Receive batching doesn't pay off when writing single frames to tap | Stefano Brivio | 2022-02-21 | 1 | -16/+17 |
* | udp: Allow loopback connections from host using configured unicast address | Stefano Brivio | 2022-02-21 | 1 | -2/+18 |
* | conf, udp: Introduce basic DNS forwarding | Stefano Brivio | 2022-02-21 | 1 | -0/+16 |
* | passt, pasta: Namespace-based sandboxing, defer seccomp policy application | Stefano Brivio | 2022-02-21 | 1 | -2/+5 |
* | tcp, udp, util: Fixes for bitmap handling on big-endian, casts | Stefano Brivio | 2022-01-26 | 1 | -2/+2 |
* | passt: Drop <linux/ipv6.h> include, carry own ipv6hdr and opt_hdr definitions | Stefano Brivio | 2022-01-26 | 1 | -2/+0 |
* | passt: Add cppcheck target, test, and address resulting warnings | Stefano Brivio | 2021-10-21 | 1 | -10/+8 |
* | udp: Avoid static initialiser for udp{4,6}_l2_buf | Stefano Brivio | 2021-10-21 | 1 | -18/+23 |
* | udp: Fix maximum payload size calculation for IPv4 buffers, bump UDP_TAP_FRAMES | Stefano Brivio | 2021-10-21 | 1 | -2/+3 |
* | passt: Fix build with gcc 7, use std=c99, enable some more Clang checkers | Stefano Brivio | 2021-10-21 | 1 | -43/+46 |
* | ndp, dhcpv6, tcp, udp: Always use link-local as source if gateway isn't | Stefano Brivio | 2021-10-20 | 1 | -0/+5 |
* | passt: Add clang-tidy Makefile target and test, take care of warnings | Stefano Brivio | 2021-10-20 | 1 | -9/+9 |
* | passt: Address warnings from Clang's scan-build | Stefano Brivio | 2021-10-20 | 1 | -4/+11 |
* | passt: Address gcc 11 warnings | Stefano Brivio | 2021-10-20 | 1 | -3/+5 |
* | udp: drop bogus udp_tap_map ts assignment | Stefan Hajnoczi | 2021-10-15 | 1 | -1/+0 |
* | conf, tcp, udp: Add --no-map-gw to disable mapping gateway address to host | Stefano Brivio | 2021-10-14 | 1 | -2/+2 |
* | passt, pasta: Add seccomp support | Stefano Brivio | 2021-10-14 | 1 | -0/+7 |
* | pasta: Allow specifying paths and names of namespaces | Giuseppe Scrivano | 2021-10-07 | 1 | -2/+2 |
* | tap: Completely de-serialise input message batches | Stefano Brivio | 2021-09-27 | 1 | -4/+9 |
* | udp: Switch to new socket message after 32KiB instead of 64KiB | Stefano Brivio | 2021-09-27 | 1 | -2/+2 |
* | udp: Decrease UDP_TAP_FRAMES to 16 | Stefano Brivio | 2021-09-27 | 1 | -1/+1 |
* | udp: Reset iov_base after sending partial message on sendmmsg() failure | Stefano Brivio | 2021-09-09 | 1 | -0/+2 |
* | udp: Fix comparison of seen IPv4 address for local connections | Stefano Brivio | 2021-09-09 | 1 | -1/+2 |
* | udp: Fix retry mechanism on partial sendmmsg() | Stefano Brivio | 2021-09-09 | 1 | -3/+3 |
* | tcp, udp: Restore usage of gateway for guest to connect to local host | Stefano Brivio | 2021-09-01 | 1 | -6/+6 |