acl-plugin: add whitelisted ethertype mode (VPP-1163) 34/10434/4
authorAndrew Yourtchenko <ayourtch@gmail.com>
Tue, 6 Feb 2018 16:42:32 +0000 (17:42 +0100)
committerNeale Ranns <nranns@cisco.com>
Thu, 8 Feb 2018 15:51:46 +0000 (15:51 +0000)
commitc43b3f986476ffb4506b7115898e809a6e34f601
tree63576d278689bfc0ebd6b15eb9178006151c33aa
parentbe2251b0c5b10a3a556e75c9bfbea96df4799297
acl-plugin: add whitelisted ethertype mode (VPP-1163)

Currently, ACL plugin largely does not care about the
ethertypes other than 0x0800 (IPv4) and 0x86dd (IPv6),
the only exception being 0x0806 (ARP), which is
dealt with by the MACIP ACLs.

The other ethertypes in L2 mode are just let through.

This adds a new API message acl_interface_set_etype_whitelist,
which allows to flip the mode of a given interface
into "ethertype whitelist mode": the caller of this message
must supply the two lists (inbound and outbound) of the ethertypes
that are to be permitted, the rest of the ethertypes are
dropped.

The whitelisting for a given interface and direction takes
effect only when a policy ACL is also applied.

This operates on the same classifier node as the one used for
dispatching the policy ACL, thus, if one wishes for most of the
reasonable IPv4 deployments to continue to operate within
the whitelist mode, they must permit ARP ethertype (0x0806)

The empty list for a given direction resets the processing
to allow the unknown ethertypes. So, if one wants to just
permit the IPv4 and IPv6 and nothing else, one can add
their ethertypes to the whitelist.

Add the "show acl-plugin interface" corresponding outputs
about the whitelists, vat command, and unittests.

Change-Id: I4659978c801f36d554b6615e56e424b77876662c
Signed-off-by: Andrew Yourtchenko <ayourtch@gmail.com>
src/plugins/acl/acl.api
src/plugins/acl/acl.c
src/plugins/acl/acl.h
src/plugins/acl/acl_test.c
src/plugins/acl/manual_fns.h
test/test_acl_plugin.py
test/vpp_papi_provider.py