1
0
Fork 0
alistair23-linux/net/ipv6/ila
Johannes Berg ef6243acb4 genetlink: optionally validate strictly/dumps
Add options to strictly validate messages and dump messages,
sometimes perhaps validating dump messages non-strictly may
be required, so add an option for that as well.

Since none of this can really be applied to existing commands,
set the options everwhere using the following spatch:

    @@
    identifier ops;
    expression X;
    @@
    struct genl_ops ops[] = {
    ...,
     {
            .cmd = X,
    +       .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
            ...
     },
    ...
    };

For new commands one should just not copy the .validate 'opt-out'
flags and thus get strict validation.

Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2019-04-27 17:07:22 -04:00
..
Makefile ila: Create main ila source file 2018-06-29 11:32:55 +09:00
ila.h ila: Flush netlink command to clear xlat table 2018-06-29 11:32:55 +09:00
ila_common.c ila: remove blank lines at EOF 2018-07-24 14:10:42 -07:00
ila_lwt.c netlink: make validation more configurable for future strictness 2019-04-27 17:07:21 -04:00
ila_main.c genetlink: optionally validate strictly/dumps 2019-04-27 17:07:22 -04:00
ila_xlat.c ila: Fix rhashtable walker list corruption 2019-03-27 22:46:16 -07:00