On Thu, 26 Mar 2020 at 21:07, Alexei Starovoitov <alexei.starovoitov@xxxxxxxxx> wrote: > > On Thu, Mar 26, 2020 at 10:13:31AM +0000, Lorenz Bauer wrote: > > > > + > > > > + if (ipv4) { > > > > + if (tuple->ipv4.dport != bpf_htons(4321)) > > > > + return TC_ACT_OK; > > > > + > > > > + ln.ipv4.daddr = bpf_htonl(0x7f000001); > > > > + ln.ipv4.dport = bpf_htons(1234); > > > > + > > > > + sk = bpf_skc_lookup_tcp(skb, &ln, sizeof(ln.ipv4), > > > > + BPF_F_CURRENT_NETNS, 0); > > > > + } else { > > > > + if (tuple->ipv6.dport != bpf_htons(4321)) > > > > + return TC_ACT_OK; > > > > + > > > > + /* Upper parts of daddr are already zero. */ > > > > + ln.ipv6.daddr[3] = bpf_htonl(0x1); > > > > + ln.ipv6.dport = bpf_htons(1234); > > > > + > > > > + sk = bpf_skc_lookup_tcp(skb, &ln, sizeof(ln.ipv6), > > > > + BPF_F_CURRENT_NETNS, 0); > > > > + } > > > > + > > > > + /* We can't do a single skc_lookup_tcp here, because then the compiler > > > > + * will likely spill tuple_len to the stack. This makes it lose all > > > > + * bounds information in the verifier, which then rejects the call as > > > > + * unsafe. > > > > + */ > > > > > > This is a known issue. For scalars, only constant is restored properly > > > in verifier at this moment. I did some hacking before to enable any > > > scalars. The fear is this will make pruning performs worse. More > > > study is needed here. > > > > Of topic, but: this is actually one of the most challenging issues for > > us when writing > > BPF. It forces us to have very deep call graphs to hopefully avoid clang > > spilling the constants. Please let me know if I can help in any way. > > Thanks for bringing this up. > Yonghong, please correct me if I'm wrong. > I think you've experimented with tracking spilled constants. The first issue > came with spilling of 4 byte constant. The verifier tracks 8 byte slots and > lots of places assume that slot granularity. It's not clear yet how to refactor > the verifier. Ideas, help are greatly appreciated. > The second concern was pruning, but iirc the experiments were inconclusive. > selftests/bpf only has old fb progs. Hence, I think, the step zero is for > everyone to contribute their bpf programs written in C. If we have both > cilium and cloudflare progs as selftests it will help a lot to guide such long > lasting verifier decisions. Ok, I'll try to get something sorted out. We have a TC classifier that would be suitable, and I've been meaning to get it open sourced. Does the integration into the test suite have to involve running packets through it, or is compile and load enough? -- Lorenz Bauer | Systems Engineer 6th Floor, County Hall/The Riverside Building, SE1 7PB, UK www.cloudflare.com