| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | dhcp: Use tap_udp4_send() helper in dhcp() | David Gibson | 2022-10-19 | 2 | -17/+2 |
* | tap: Split tap_ip4_send() into UDP and ICMP variants | David Gibson | 2022-10-19 | 3 | -21/+66 |
* | ndp: Use tap_icmp6_send() helper | David Gibson | 2022-10-19 | 1 | -17/+4 |
* | ndp: Remove unneeded eh_source parameter | David Gibson | 2022-10-19 | 3 | -7/+4 |
* | tap: Split tap_ip6_send() into UDP and ICMP variants | David Gibson | 2022-10-19 | 4 | -40/+75 |
* | Split tap_ip_send() into IPv4 and IPv6 specific functions | David Gibson | 2022-10-19 | 4 | -96/+103 |
* | tap: Remove unhelpeful vnet_pre optimization from tap_send() | David Gibson | 2022-10-19 | 5 | -24/+13 |
* | Remove support for TCP packets from tap_ip_send() | David Gibson | 2022-10-19 | 3 | -44/+2 |
* | Add helpers for normal inbound packet destination addresses | David Gibson | 2022-10-19 | 2 | -5/+31 |
* | Add csum_ip4_header() helper to calculate IPv4 header checksums | David Gibson | 2022-10-19 | 4 | -4/+13 |
* | Add csum_udp4() helper for calculating UDP over IPv4 checksums | David Gibson | 2022-10-19 | 4 | -2/+37 |
* | Add csum_udp6() helper for calculating UDP over IPv6 checksums | David Gibson | 2022-10-19 | 3 | -3/+28 |
* | Add csum_icmp4() helper for calculating ICMP checksums | David Gibson | 2022-10-19 | 3 | -3/+19 |
* | Add csum_icmp6() helper for calculating ICMPv6 checksums | David Gibson | 2022-10-19 | 4 | -8/+33 |
* | passt.1: Add David to AUTHORS2022_10_15.b3f3591 | Stefano Brivio | 2022-10-15 | 1 | -2/+2 |
* | conf: Bind inbound ports with CAP_NET_BIND_SERVICE before isolate_user() | Stefano Brivio | 2022-10-15 | 5 | -63/+98 |
* | Rename pasta_setup_ns() to pasta_spawn_cmd() | David Gibson | 2022-10-15 | 1 | -9/+9 |
* | isolation: Only configure UID/GID mappings in userns when spawning shell | David Gibson | 2022-10-15 | 4 | -16/+18 |
* | isolation: Prevent any child processes gaining capabilities | David Gibson | 2022-10-15 | 1 | -0/+56 |
* | isolation: Replace drop_caps() with a version that actually does something | David Gibson | 2022-10-15 | 3 | -11/+92 |
* | isolation: Refactor isolate_user() to allow for a common exit path | David Gibson | 2022-10-15 | 1 | -24/+16 |
* | Replace FWRITE with a function | David Gibson | 2022-10-15 | 4 | -22/+45 |
* | isolation: Clarify various self-isolation steps | David Gibson | 2022-10-15 | 3 | -13/+86 |
* | Remove unhelpful drop_caps() call in pasta_start_ns() | David Gibson | 2022-10-15 | 1 | -2/+0 |
* | pasta_start_ns() always ends in parent context | David Gibson | 2022-10-15 | 1 | -4/+1 |
* | pasta: More general way of starting spawned shell as a login shell | David Gibson | 2022-10-15 | 1 | -12/+20 |
* | test: Move slower tests to end of test run | David Gibson | 2022-10-15 | 1 | -10/+10 |
* | log.h: Avoid unnecessary GNU extension for token pasting | Stefano Brivio | 2022-10-15 | 1 | -2/+2 |
* | util.h: Add missing gcc pragma push before pragma pop | Stefano Brivio | 2022-10-15 | 1 | -0/+1 |
* | icmp: Set sin6_scope_id for outbound ICMPv6 echo requests | Stefano Brivio | 2022-10-15 | 1 | -0/+1 |
* | conf: Drop excess colons in usage for DHCP and DNS options | Stefano Brivio | 2022-10-15 | 1 | -4/+4 |
* | netlink: Disable duplicate address detection for configured IPv6 address | Stefano Brivio | 2022-10-15 | 1 | -0/+3 |
* | Don't create 'tap' socket for ports that are bound to loopback only | Stefano Brivio | 2022-10-15 | 2 | -69/+117 |
* | tcp, tcp_splice: Fix port remapping for inbound, spliced connections | Stefano Brivio | 2022-10-15 | 3 | -11/+18 |
* | tcp, tcp_splice: Adjust comments to current meaning of inbound and outbound | Stefano Brivio | 2022-10-15 | 2 | -2/+2 |
* | udp: Fix port and address checks for DNS forwarder | Stefano Brivio | 2022-10-15 | 1 | -3/+3 |
* | tap: Don't check sequence counts when adding packets to pool | Stefano Brivio | 2022-10-15 | 1 | -6/+6 |
* | packet: Fix off-by-one in packet_get_do() sanity checks | Stefano Brivio | 2022-10-15 | 1 | -1/+1 |
* | conf: Report usage for --no-netns-quit | Stefano Brivio | 2022-10-15 | 1 | -0/+2 |
* | conf, tcp, udp: Allow specification of interface to bind to | Stefano Brivio | 2022-10-15 | 9 | -47/+88 |
* | conf, tap: Add option to quit once the client closes the connection | Stefano Brivio | 2022-10-15 | 4 | -1/+27 |
* | util: Check return value of lseek() while reading bound ports from procfs | Stefano Brivio | 2022-10-15 | 1 | -3/+7 |
* | conf, log, Makefile: Add versioning information | Stefano Brivio | 2022-10-15 | 6 | -3/+26 |
* | log: Add missing function comment for trace_init() | Stefano Brivio | 2022-10-14 | 1 | -0/+4 |
* | log, conf: Add support for logging to file | Stefano Brivio | 2022-10-14 | 7 | -29/+316 |
* | passt.h: Include netinet/if_ether.h before struct ctx declaration | Stefano Brivio | 2022-10-14 | 1 | -0/+2 |
* | conf: Drop duplicate, diverging optstring assignments | Stefano Brivio | 2022-10-14 | 1 | -14/+6 |
* | Move logging functions to a new file, log.c | Stefano Brivio | 2022-10-14 | 20 | -138/+187 |
* | test: Add rudimentary support to run selected tests only | Stefano Brivio | 2022-10-14 | 3 | -2/+53 |
* | Makefile: Hack for optimised-away store in ndp() before checksum calculation2022_09_29.06aa26f | Stefano Brivio | 2022-09-29 | 2 | -0/+10 |