Re: [RFC -next v0 1/3] bpf: modular maps

From: Alexei Starovoitov
Date: Tue Dec 04 2018 - 21:49:37 EST


On Fri, Nov 30, 2018 at 08:49:17AM -0500, Aaron Conole wrote:
>
> While this is one reason to use hash map, I don't think we should use
> this as a reason to exclude development of a data type that may work
> better. After all, if we can do better then we should.

I'm all for improving existing hash map or implementing new data types.
Like classifier map == same as wild-card match map == ACL map.
The one that OVS folks could use and other folks wanted for long time.

But I don't want bpf to become a collection of single purpose solutions.
Like mega-flow style OVS map.
That one does linear number of lookups applying mask at a time.

It sounds to me that you're proposing "NAT-as-bpf-helper"
or "NAT-as-bpf-map" type of solution.
That falls into single purpose solution category.
I'd rather see generic connection tracking building block.
The one that works out of skb and out of XDP layer.
Existing stack-queue-map can already be used to allocate integers
out of specified range. It can be used to implement port allocation for NAT.
If generic stack-queue-map is not enough, let's improve it.

> >> forward direction addresses could be different from reverse direction so
> >> just swapping addresses / ports will not match).
> >
> > That makes no sense to me. What would be an example of such flow?
> > Certainly not a tcp flow.
>
> Maybe it's poorly worded on my part. Think about this scenario (ipv4, tcp):
>
> Interfaces A(internet), B(lan)
>
> When XDP program receives a packet from B, it will have a tuple like:
>
> source=B-subnet:B-port dest=inet-addr:inet-port
>
> When XDP program receives a packet from A, it will have a tuple like:
>
> source=inet-addr:inet-port dest=gw-addr:gw-port

first of all there are two netdevs.
one XDP program can attach to multiple netdevs, but in this
case we're dealing with two indepedent tcp flows.

> The only data in common there is inet-addr:inet-port, and that will
> likely be shared among too many connections to be a valid key.

two independent tcp flows don't make a 'connection'.
That definition of connection is only meaningful in the context
of the particular problem you're trying to solve and
confuses me quite a bit.

> I don't know how to figure out from A the same connetion that
> corresponds to B. A really simple static map works, *except*, when
> something causes either side of the connection to become invalid, I
> can't mark the other side. For instance, even if I have some static
> mapping, I might not be able to infer the correct B-side tuple from the
> A-side tuple to do the teardown.

I don't think I got enough information from the above description to
understand why two tcp flows (same as two tcp connections) will
form single 'connection' in your definition of connection.

> 1. Port / address reservation. If I want to do NAT, I need to reserve
> ports and addresses correctly. That requires knowing the interface
> addresses, and which addresses are currently allocated. The stack
> knows this already, let it do these allocations then. Then when
> packets arrive for the connection that the stack set up, just forward
> via XDP.

I beg to disagree. For NAT use case the stack has nothing to do with
port allocation for NATing. It's all within NAT framework
(whichever way it's implemented).
The stack cares about sockets and ports that are open on the host
to be consumed by the host.
NAT function is independent of that.

> 2. Helpers. Parsing an in-flight stream is always going to be slow.
> Let the stack do that. But when it sets up an expectation, then use
> that information to forward that via XDP.

XDP parses packets way faster than the stack, since XDP deals with linear
buffers whereas stack has to do pskb_may_pull at every step.
The stack can be optimized further, but assuming that packet parsing
by the stack is faster than XDP and making techincal decisions based
on that just doesn't seem like the right approach to take.