Skip to content
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

Native nftables dataplane #8780

Merged
merged 58 commits into from
Jul 8, 2024

Conversation

caseydavenport
Copy link
Member

@caseydavenport caseydavenport commented May 2, 2024

Description

ref: #8025

Todos

  • UTs for new nftables code
  • FVs for nftables
  • Existing tests passing
  • Add FelixConfiguration option to enable nftables
  • Release note

Release Note

Tech-preview support for nftables dataplane and nftables kube-proxy compatibility

Reminder for the reviewer

Make sure that this PR has the correct labels and milestone set.

Every PR needs one docs-* label.

  • docs-pr-required: This change requires a change to the documentation that has not been completed yet.
  • docs-completed: This change has all necessary documentation completed.
  • docs-not-required: This change has no user-facing impact and requires no docs.

Every PR needs one release-note-* label.

  • release-note-required: This PR has user-facing changes. Most PRs should have this label.
  • release-note-not-required: This PR has no user-facing changes.

Other optional labels:

  • cherry-pick-candidate: This PR should be cherry-picked to an earlier release. For bug fixes only.
  • needs-operator-pr: This PR is related to install and requires a corresponding change to the operator.

@caseydavenport caseydavenport requested a review from a team as a code owner May 2, 2024 17:54
@marvin-tigera marvin-tigera added this to the Calico v3.29.0 milestone May 2, 2024
@marvin-tigera marvin-tigera added release-note-required Change has user-facing impact (no matter how small) docs-pr-required Change is not yet documented labels May 2, 2024
rules = append(rules, Rule{
Action: JumpAction{Target: failsafeChain},
rules = append(rules, generictables.Rule{
Match: r.NewMatch(),
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

One of the unfortunate consequences of using an interface type for the match is that leaving the Match type nil is no longer viable, as it results in nil pointer exceptions when calling bound functions where previously the function would have been called on a nil slice.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, I was trying to think of a way around that. Probably not worth it, but you could maybe do it with generics:

type Rule[M Match, A Action] {
  Match M
  Action A
}

Then the rule renderer could have [M Match, A Action] too and pass them through. Would create a different kind of boilerplate everywhere! Advantage would be that the compiler would enforce getting it right.

Copy link
Contributor

@tomastigera tomastigera left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would it make sense to rename generictables (sounds pretty generic, but it is not so much ;-) ) to say linuxtables or nettables and place both iptables and nftables below that? Now we have 3 top level tables packages, which are for linux only and one is just interfaces.

UpdateChains([]*iptables.Chain)
RemoveChains([]*iptables.Chain)
// Table is a shim interface for generictables.Table.
type Table interface {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: What if we move this type now to generictables as say RuleChains and embed it in Table?

@caseydavenport
Copy link
Member Author

Would it make sense to rename generictables (sounds pretty generic, but it is not so much ;-) ) to say linuxtables or nettables and

@tomastigera yep, I think those are both better!

@caseydavenport caseydavenport force-pushed the casey-nft-proto branch 2 times, most recently from 6d4c097 to e7f8874 Compare May 20, 2024 21:31
@caseydavenport caseydavenport force-pushed the casey-nft-proto branch 3 times, most recently from 88a480e to 02e3b17 Compare June 6, 2024 22:59
@marvin-tigera marvin-tigera added release-note-required Change has user-facing impact (no matter how small) docs-pr-required Change is not yet documented and removed release-note-required Change has user-facing impact (no matter how small) docs-pr-required Change is not yet documented labels Jun 28, 2024
Copy link
Member

@fasaxc fasaxc left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

:shipit:

@caseydavenport caseydavenport merged commit a91c52b into projectcalico:master Jul 8, 2024
1 of 2 checks passed
@caseydavenport caseydavenport deleted the casey-nft-proto branch July 8, 2024 20:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
docs-pr-required Change is not yet documented release-note-required Change has user-facing impact (no matter how small)
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants