On Fri, Sep 26, 2014 at 12:06 PM, David Miller <davem@xxxxxxxxxxxxx> wrote: > From: Alexei Starovoitov <ast@xxxxxxxxxxxx> > Date: Fri, 26 Sep 2014 00:16:56 -0700 > >> v14 -> v15: >> - got rid of macros with hidden control flow (suggested by David) >> replaced macro with explicit goto or return and simplified >> where possible (affected patches #9 and #10) >> - rebased, retested > > Series applied to net-next, thanks. Hi all- I read through the verifier. Sorry this email is a little bit late. Here are some thoughts, in no particular order. Programs should IMO have feature flags. One such feature would be "can use pointers as integers", for example. UNKNOWN_VALUE is IMO a crappy type. I think that it should renamed to INTEGER and that a bunch of the things that generate it should be errors. ALU ops like adding two pointers should IMO be failures. I don't think that they should result in UNKNOWN_VALUE. I don't like PTR_TO_MAP_VALUE as a type. I think that there should instead be "pointer to (const?) buffer of N bytes". ARG_PTR_TO_MAP_KEY is odd. Why do we care what a function does with a key? It just needs to be a big enough buffer, right? All of the stack spill stuff seems overcomplicated. Can you just disallow unaligned stack access? Right off the bat, that will delete a bunch of code and cut down runtime memory use by nearly a factor of eight. Also, there are no calls to functions written eBPF, right? If so, why not just give each stack slot a *fixed* type for the lifetime of the program? That would be a huge time complexity win, not to mention being more comprehensible. When function calls get added, they'll need a whole pile of new infrastructure anyway. check_call is a mess. I predict that it will be unmaintainable. check_ld_abs is messy, IMO. Can't there be a real type "pointer to object of type [type]", where skb would be a type? Then you could use the normal function call logic for skb pointers instead of hardcoded crud. You're doing a depth-first search. I don't like it. You need complex pruning logic to avoid exponential behavior, and it's not obvious to me that pathological programs that cause exponential blowups in the verifier don't exist. Wouldn't it make more sense to do a breadth-first search instead and to give each reg/stack slot a definite type at each point in the control flow? You'd need a function to find the intersection of two types, but I think that would be preferable to the current code that tests whether one type is a subset of another. At some point someone will want loops, and that will open a huge can of worms involving explicit typing or type inference. It might pay to add some kind of stack slot (and maybe even register slot) type declarations now to get things ready for that. NB: If this code is actually invoked in net-next when loading a filter, please don't push to Linus until there's a convincing argument that the verifier has acceptable asymptotic complexity. --Andy -- To unsubscribe from this list: send the line "unsubscribe linux-api" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html