-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
nftables configuration design issues #153
Comments
Hello @pdf ! First of all thanks for the detailed proposal. I think this shows that some of our choices were a bit naive and I overall agree with what you pointed out. I'll have a look at it w/ the team and let you know, but I overall agree, |
@pdf This looks much better than our current config. One minor improvement to your proposal IMHO would be to eliminate the extra nesting caused by Something like this: nftables:
enabled: true
targets:
- blacklist: crowdsec-blacklist
set-only: false
table: crowdsec
chain: crowdsec-input
family: ip # TODO: new functionality
hook: input # TODO: new functionality
- blacklist: crowdsec-blacklist
set-only: false
table: crowdsec
chain: crowdsec-forward
family: ip # TODO: new functionality
hook: forward # TODO: new functionality |
Not quite - table families like This is what that might look like for an nftables:
enabled: true
targets:
- blacklist: crowdsec-blacklist4
set-only: false
table: crowdsec-inet
chain: crowdsec-input
family: inet # TODO: new functionality
protocol: ip # TODO: new functionality
hook: input # TODO: new functionality
- blacklist: crowdsec-blacklist6
set-only: false
table: crowdsec-inet
chain: crowdsec-input
family: inet # TODO: new functionality
protocol: ip6 # TODO: new functionality
hook: input # TODO: new functionality |
@pdf yes this makes sense. I think your original proposal is better t\and cleaner then. |
Hello @pdf, We did some tests with your proposal and the current configuration file for the backward compatibility and this will not be an issue. Thanks for the great proposal! |
@pdf @sbs2001 the main idea of #111 was the introduction of The I use crowdsec in I think your proposal is a good improvement. 👍 |
Wasnt this resolved with #231 ? EDIT: well kind off |
In #111 a new configuration structure was introduced to supprt custom table/chain names, however I think this has some deficiencies, though these probably stem somewhat from the initial design.
I am investigating adding support for filter hooks other than
input
(primarilyforward
), however in attempting to do so I find that this is incompatible with the current structure, since adding support for multiple hooks requires adding multiple chains. The current structure:is clearly predicated on operating on a single chain. My initial thought was to add a
hooks
as an array of strings, however this would requirechain
to be treated as a base name (ie forhooks: [input, filter]
, the chains might becrowdsec6-chain-input
/crowdsec6-chain-forward
), and I suspect this is undesirable.For my use-case I thought I might be able to make use of the new
set-only
functionality, however this surfaces another issue: in my firewall deployments I implement blocklists on bothnetdev
(for early filtering) andinet
(rather than separateip
/ip6
, to reduce duplication) address families (it's conceivable that users may also want to block onbridge
), however the configuration structure does not allow specifying the family, nor does it allow specifying multiple tables/chains.This leads me to believe we probably need an additional level of nesting, to allow enough flexibility to support all desired behaviour. I'd propose something like:
Then multiple blocklists in
set-only
mode might look like:And multiple hooks might look like:
This will introduce some complexity, as we'll need to dedup set operations based on
family
+table
+blacklist
, but this should be relatively easy to resolve. It also may require some additional config validation to avoid some obvious footguns for users.I'd certainly be open to alternative proposals, if anyone has better ideas.
I realise there's a bit to digest here, but it would be ideal if we could examine this before the current config makes it out of pre-release to avoid breaking user configs or having to maintain backwards-compatibility (the latter would be quite ugly).
The text was updated successfully, but these errors were encountered: