Compare commits
2 Commits
24b208f66c
...
90eef68fb3
Author | SHA1 | Date |
---|---|---|
|
90eef68fb3 | |
|
198b2be135 |
150
nftables_test.go
150
nftables_test.go
|
@ -7669,88 +7669,80 @@ func TestNftablesCompat(t *testing.T) {
|
|||
}
|
||||
|
||||
func TestNftablesDeadlock(t *testing.T) {
|
||||
t.Parallel()
|
||||
|
||||
tests := []struct {
|
||||
name string
|
||||
readBufSize int
|
||||
writeBufSize int
|
||||
sendRules int
|
||||
wantRules int
|
||||
wantErr error
|
||||
}{
|
||||
{
|
||||
name: "recv",
|
||||
readBufSize: 1024,
|
||||
writeBufSize: 1 * 1024 * 1024,
|
||||
sendRules: 2048,
|
||||
wantRules: 2048,
|
||||
wantErr: syscall.ENOBUFS,
|
||||
},
|
||||
{
|
||||
name: "send",
|
||||
readBufSize: 1 * 1024 * 1024,
|
||||
writeBufSize: 1024,
|
||||
sendRules: 2048,
|
||||
wantRules: 0,
|
||||
wantErr: syscall.EMSGSIZE,
|
||||
},
|
||||
}
|
||||
|
||||
for _, tt := range tests {
|
||||
t.Run(tt.name, func(t *testing.T) {
|
||||
_, newNS := nftest.OpenSystemConn(t, *enableSysTests)
|
||||
conn, err := nftables.New(nftables.WithNetNSFd(int(newNS)), nftables.WithSockOptions(func(conn *netlink.Conn) error {
|
||||
if err := conn.SetWriteBuffer(tt.writeBufSize); err != nil {
|
||||
return err
|
||||
}
|
||||
if err := conn.SetReadBuffer(tt.readBufSize); err != nil {
|
||||
return err
|
||||
}
|
||||
return nil
|
||||
}))
|
||||
if err != nil {
|
||||
t.Fatalf("nftables.New() failed: %v", err)
|
||||
helperConn := func(t *testing.T, readBufSize, writeBufSize, wantRules int) (error, int) {
|
||||
_, newNS := nftest.OpenSystemConn(t, *enableSysTests)
|
||||
conn, err := nftables.New(nftables.WithNetNSFd(int(newNS)), nftables.WithSockOptions(func(conn *netlink.Conn) error {
|
||||
if err := conn.SetWriteBuffer(writeBufSize); err != nil {
|
||||
return err
|
||||
}
|
||||
defer nftest.CleanupSystemConn(t, newNS)
|
||||
conn.FlushRuleset()
|
||||
defer conn.FlushRuleset()
|
||||
|
||||
table := conn.AddTable(&nftables.Table{
|
||||
Name: "test_deadlock",
|
||||
Family: nftables.TableFamilyIPv4,
|
||||
})
|
||||
|
||||
chain := conn.AddChain(&nftables.Chain{
|
||||
Name: "filter",
|
||||
Table: table,
|
||||
})
|
||||
|
||||
for i := 0; i < tt.sendRules; i++ {
|
||||
conn.AddRule(&nftables.Rule{
|
||||
Table: table,
|
||||
Chain: chain,
|
||||
Exprs: []expr.Any{
|
||||
&expr.Verdict{
|
||||
Kind: expr.VerdictAccept,
|
||||
},
|
||||
},
|
||||
})
|
||||
if err := conn.SetReadBuffer(readBufSize); err != nil {
|
||||
return err
|
||||
}
|
||||
return nil
|
||||
}))
|
||||
if err != nil {
|
||||
t.Fatalf("nftables.New() failed: %v", err)
|
||||
}
|
||||
defer nftest.CleanupSystemConn(t, newNS)
|
||||
conn.FlushRuleset()
|
||||
defer conn.FlushRuleset()
|
||||
|
||||
flushErr := conn.Flush()
|
||||
rules, err := conn.GetRules(table, chain)
|
||||
if err != nil {
|
||||
t.Fatalf("conn.GetRules() failed: %v", err)
|
||||
}
|
||||
|
||||
if !errors.Is(flushErr, tt.wantErr) {
|
||||
t.Errorf("conn.Flush() failed: %v", flushErr)
|
||||
}
|
||||
|
||||
if got, want := len(rules), tt.wantRules; got != want {
|
||||
t.Fatalf("got rules %d, want rules %d", got, want)
|
||||
}
|
||||
table := conn.AddTable(&nftables.Table{
|
||||
Name: "test_deadlock",
|
||||
Family: nftables.TableFamilyIPv4,
|
||||
})
|
||||
|
||||
chain := conn.AddChain(&nftables.Chain{
|
||||
Name: "filter",
|
||||
Table: table,
|
||||
})
|
||||
|
||||
for i := 0; i < wantRules; i++ {
|
||||
conn.AddRule(&nftables.Rule{
|
||||
Table: table,
|
||||
Chain: chain,
|
||||
Exprs: []expr.Any{
|
||||
&expr.Verdict{
|
||||
Kind: expr.VerdictAccept,
|
||||
},
|
||||
},
|
||||
})
|
||||
}
|
||||
|
||||
flushErr := conn.Flush()
|
||||
|
||||
rules, err := conn.GetRules(table, chain)
|
||||
if err != nil {
|
||||
t.Fatalf("conn.GetRules() failed: %v", err)
|
||||
}
|
||||
|
||||
return flushErr, len(rules)
|
||||
}
|
||||
|
||||
t.Run("recv", func(t *testing.T) {
|
||||
sendRules := 2048
|
||||
wantRules := 2048
|
||||
|
||||
flushErr, rulesLen := helperConn(t, 1024, 1*1024*1024, sendRules)
|
||||
if !errors.Is(flushErr, syscall.ENOBUFS) {
|
||||
t.Errorf("conn.Flush() failed: %v", flushErr)
|
||||
}
|
||||
|
||||
if got, want := rulesLen, wantRules; got != want {
|
||||
t.Fatalf("got rules %d, want rules %d", got, want)
|
||||
}
|
||||
})
|
||||
t.Run("send", func(t *testing.T) {
|
||||
sendRules := 2048
|
||||
wantRules := 0
|
||||
|
||||
flushErr, rulesLen := helperConn(t, 1*1024*1024, 1024, sendRules)
|
||||
if !errors.Is(flushErr, syscall.EMSGSIZE) {
|
||||
t.Errorf("conn.Flush() failed: %v", flushErr)
|
||||
}
|
||||
|
||||
if got, want := rulesLen, wantRules; got != want {
|
||||
t.Fatalf("got rules %d, want rules %d", got, want)
|
||||
}
|
||||
})
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue