Skip to content

Commit 58b2fb0

Browse files
David Andersoncixtor
David Anderson
authored andcommitted
ipv4: support attaching packet filters to PacketConn/RawConn.
Updates golang/go#14974 Change-Id: I80da378a788d5d826b3b79ab308372231c012391 Reviewed-on: https://go-review.googlesource.com/23105 Reviewed-by: Mikio Hara <mikioh.mikioh@gmail.com> Run-TryBot: Mikio Hara <mikioh.mikioh@gmail.com> TryBot-Result: Gobot Gobot <gobot@golang.org>
1 parent 30be488 commit 58b2fb0

12 files changed

+273
-0
lines changed

ipv4/bpf_test.go

+93
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
// Copyright 2016 The Go Authors. All rights reserved.
2+
// Use of this source code is governed by a BSD-style
3+
// license that can be found in the LICENSE file.
4+
5+
package ipv4_test
6+
7+
import (
8+
"net"
9+
"runtime"
10+
"testing"
11+
"time"
12+
13+
"golang.org/x/net/bpf"
14+
"golang.org/x/net/ipv4"
15+
)
16+
17+
func TestBPF(t *testing.T) {
18+
if runtime.GOOS != "linux" {
19+
t.Skipf("not supported on %s", runtime.GOOS)
20+
}
21+
22+
l, err := net.ListenPacket("udp4", "127.0.0.1:0")
23+
if err != nil {
24+
t.Fatal(err)
25+
}
26+
defer l.Close()
27+
28+
p := ipv4.NewPacketConn(l)
29+
30+
// This filter accepts UDP packets whose first payload byte is
31+
// even.
32+
prog, err := bpf.Assemble([]bpf.Instruction{
33+
// Load the first byte of the payload (skipping UDP header).
34+
bpf.LoadAbsolute{Off: 8, Size: 1},
35+
// Select LSB of the byte.
36+
bpf.ALUOpConstant{Op: bpf.ALUOpAnd, Val: 1},
37+
// Byte is even?
38+
bpf.JumpIf{Cond: bpf.JumpEqual, Val: 0, SkipFalse: 1},
39+
// Accept.
40+
bpf.RetConstant{Val: 4096},
41+
// Ignore.
42+
bpf.RetConstant{Val: 0},
43+
})
44+
if err != nil {
45+
t.Fatalf("compiling BPF: %s", err)
46+
}
47+
48+
if err = p.SetBPF(prog); err != nil {
49+
t.Fatalf("attaching filter to Conn: %s", err)
50+
}
51+
52+
s, err := net.Dial("udp4", l.LocalAddr().String())
53+
if err != nil {
54+
t.Fatal(err)
55+
}
56+
defer s.Close()
57+
go func() {
58+
for i := byte(0); i < 10; i++ {
59+
s.Write([]byte{i})
60+
}
61+
}()
62+
63+
l.SetDeadline(time.Now().Add(2 * time.Second))
64+
seen := make([]bool, 5)
65+
for {
66+
var b [512]byte
67+
n, _, err := l.ReadFrom(b[:])
68+
if err != nil {
69+
t.Fatalf("reading from listener: %s", err)
70+
}
71+
if n != 1 {
72+
t.Fatalf("unexpected packet length, want 1, got %d", n)
73+
}
74+
if b[0] >= 10 {
75+
t.Fatalf("unexpected byte, want 0-9, got %d", b[0])
76+
}
77+
if b[0]%2 != 0 {
78+
t.Fatalf("got odd byte %d, wanted only even bytes", b[0])
79+
}
80+
seen[b[0]/2] = true
81+
82+
seenAll := true
83+
for _, v := range seen {
84+
if !v {
85+
seenAll = false
86+
break
87+
}
88+
}
89+
if seenAll {
90+
break
91+
}
92+
}
93+
}

ipv4/bpfopt_linux.go

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
// Copyright 2016 The Go Authors. All rights reserved.
2+
// Use of this source code is governed by a BSD-style
3+
// license that can be found in the LICENSE file.
4+
5+
package ipv4
6+
7+
import (
8+
"os"
9+
"unsafe"
10+
11+
"golang.org/x/net/bpf"
12+
)
13+
14+
// SetBPF attaches a BPF program to the connection.
15+
//
16+
// Only supported on Linux.
17+
func (c *dgramOpt) SetBPF(filter []bpf.RawInstruction) error {
18+
fd, err := c.sysfd()
19+
if err != nil {
20+
return err
21+
}
22+
prog := sysSockFProg{
23+
Len: uint16(len(filter)),
24+
Filter: (*sysSockFilter)(unsafe.Pointer(&filter[0])),
25+
}
26+
return os.NewSyscallError("setsockopt", setsockopt(fd, sysSOL_SOCKET, sysSO_ATTACH_FILTER, unsafe.Pointer(&prog), uint32(unsafe.Sizeof(prog))))
27+
}

ipv4/bpfopt_stub.go

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// Copyright 2016 The Go Authors. All rights reserved.
2+
// Use of this source code is governed by a BSD-style
3+
// license that can be found in the LICENSE file.
4+
5+
// +build !linux
6+
7+
package ipv4
8+
9+
import "golang.org/x/net/bpf"
10+
11+
// SetBPF attaches a BPF program to the connection.
12+
//
13+
// Only supported on Linux.
14+
func (c *dgramOpt) SetBPF(filter []bpf.RawInstruction) error {
15+
return errOpNoSupport
16+
}

ipv4/defs_linux.go

+9
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ package ipv4
1414
#include <linux/errqueue.h>
1515
#include <linux/icmp.h>
1616
#include <linux/in.h>
17+
#include <linux/filter.h>
18+
#include <sys/socket.h>
1719
*/
1820
import "C"
1921

@@ -76,6 +78,9 @@ const (
7678
sysSO_EE_ORIGIN_TXSTATUS = C.SO_EE_ORIGIN_TXSTATUS
7779
sysSO_EE_ORIGIN_TIMESTAMPING = C.SO_EE_ORIGIN_TIMESTAMPING
7880

81+
sysSOL_SOCKET = C.SOL_SOCKET
82+
sysSO_ATTACH_FILTER = C.SO_ATTACH_FILTER
83+
7984
sysSizeofKernelSockaddrStorage = C.sizeof_struct___kernel_sockaddr_storage
8085
sysSizeofSockaddrInet = C.sizeof_struct_sockaddr_in
8186
sysSizeofInetPktinfo = C.sizeof_struct_in_pktinfo
@@ -109,3 +114,7 @@ type sysGroupReq C.struct_group_req
109114
type sysGroupSourceReq C.struct_group_source_req
110115

111116
type sysICMPFilter C.struct_icmp_filter
117+
118+
type sysSockFProg C.struct_sock_fprog
119+
120+
type sysSockFilter C.struct_sock_filter

ipv4/zsys_linux_386.go

+16
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,9 @@ const (
5555
sysSO_EE_ORIGIN_TXSTATUS = 0x4
5656
sysSO_EE_ORIGIN_TIMESTAMPING = 0x4
5757

58+
sysSOL_SOCKET = 0x1
59+
sysSO_ATTACH_FILTER = 0x1a
60+
5861
sysSizeofKernelSockaddrStorage = 0x80
5962
sysSizeofSockaddrInet = 0x10
6063
sysSizeofInetPktinfo = 0xc
@@ -128,3 +131,16 @@ type sysGroupSourceReq struct {
128131
type sysICMPFilter struct {
129132
Data uint32
130133
}
134+
135+
type sysSockFProg struct {
136+
Len uint16
137+
Pad_cgo_0 [2]byte
138+
Filter *sysSockFilter
139+
}
140+
141+
type sysSockFilter struct {
142+
Code uint16
143+
Jt uint8
144+
Jf uint8
145+
K uint32
146+
}

ipv4/zsys_linux_amd64.go

+16
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,9 @@ const (
5555
sysSO_EE_ORIGIN_TXSTATUS = 0x4
5656
sysSO_EE_ORIGIN_TIMESTAMPING = 0x4
5757

58+
sysSOL_SOCKET = 0x1
59+
sysSO_ATTACH_FILTER = 0x1a
60+
5861
sysSizeofKernelSockaddrStorage = 0x80
5962
sysSizeofSockaddrInet = 0x10
6063
sysSizeofInetPktinfo = 0xc
@@ -130,3 +133,16 @@ type sysGroupSourceReq struct {
130133
type sysICMPFilter struct {
131134
Data uint32
132135
}
136+
137+
type sysSockFProg struct {
138+
Len uint16
139+
Pad_cgo_0 [6]byte
140+
Filter *sysSockFilter
141+
}
142+
143+
type sysSockFilter struct {
144+
Code uint16
145+
Jt uint8
146+
Jf uint8
147+
K uint32
148+
}

ipv4/zsys_linux_arm.go

+16
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,9 @@ const (
5555
sysSO_EE_ORIGIN_TXSTATUS = 0x4
5656
sysSO_EE_ORIGIN_TIMESTAMPING = 0x4
5757

58+
sysSOL_SOCKET = 0x1
59+
sysSO_ATTACH_FILTER = 0x1a
60+
5861
sysSizeofKernelSockaddrStorage = 0x80
5962
sysSizeofSockaddrInet = 0x10
6063
sysSizeofInetPktinfo = 0xc
@@ -128,3 +131,16 @@ type sysGroupSourceReq struct {
128131
type sysICMPFilter struct {
129132
Data uint32
130133
}
134+
135+
type sysSockFProg struct {
136+
Len uint16
137+
Pad_cgo_0 [2]byte
138+
Filter *sysSockFilter
139+
}
140+
141+
type sysSockFilter struct {
142+
Code uint16
143+
Jt uint8
144+
Jf uint8
145+
K uint32
146+
}

ipv4/zsys_linux_arm64.go

+16
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,9 @@ const (
5757
sysSO_EE_ORIGIN_TXSTATUS = 0x4
5858
sysSO_EE_ORIGIN_TIMESTAMPING = 0x4
5959

60+
sysSOL_SOCKET = 0x1
61+
sysSO_ATTACH_FILTER = 0x1a
62+
6063
sysSizeofKernelSockaddrStorage = 0x80
6164
sysSizeofSockaddrInet = 0x10
6265
sysSizeofInetPktinfo = 0xc
@@ -132,3 +135,16 @@ type sysGroupSourceReq struct {
132135
type sysICMPFilter struct {
133136
Data uint32
134137
}
138+
139+
type sysSockFProg struct {
140+
Len uint16
141+
Pad_cgo_0 [6]byte
142+
Filter *sysSockFilter
143+
}
144+
145+
type sysSockFilter struct {
146+
Code uint16
147+
Jt uint8
148+
Jf uint8
149+
K uint32
150+
}

ipv4/zsys_linux_mips64.go

+16
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,9 @@ const (
5757
sysSO_EE_ORIGIN_TXSTATUS = 0x4
5858
sysSO_EE_ORIGIN_TIMESTAMPING = 0x4
5959

60+
sysSOL_SOCKET = 0x1
61+
sysSO_ATTACH_FILTER = 0x1a
62+
6063
sysSizeofKernelSockaddrStorage = 0x80
6164
sysSizeofSockaddrInet = 0x10
6265
sysSizeofInetPktinfo = 0xc
@@ -132,3 +135,16 @@ type sysGroupSourceReq struct {
132135
type sysICMPFilter struct {
133136
Data uint32
134137
}
138+
139+
type sysSockFProg struct {
140+
Len uint16
141+
Pad_cgo_0 [6]byte
142+
Filter *sysSockFilter
143+
}
144+
145+
type sysSockFilter struct {
146+
Code uint16
147+
Jt uint8
148+
Jf uint8
149+
K uint32
150+
}

ipv4/zsys_linux_mips64le.go

+16
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,9 @@ const (
5757
sysSO_EE_ORIGIN_TXSTATUS = 0x4
5858
sysSO_EE_ORIGIN_TIMESTAMPING = 0x4
5959

60+
sysSOL_SOCKET = 0x1
61+
sysSO_ATTACH_FILTER = 0x1a
62+
6063
sysSizeofKernelSockaddrStorage = 0x80
6164
sysSizeofSockaddrInet = 0x10
6265
sysSizeofInetPktinfo = 0xc
@@ -132,3 +135,16 @@ type sysGroupSourceReq struct {
132135
type sysICMPFilter struct {
133136
Data uint32
134137
}
138+
139+
type sysSockFProg struct {
140+
Len uint16
141+
Pad_cgo_0 [6]byte
142+
Filter *sysSockFilter
143+
}
144+
145+
type sysSockFilter struct {
146+
Code uint16
147+
Jt uint8
148+
Jf uint8
149+
K uint32
150+
}

ipv4/zsys_linux_ppc64.go

+16
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,9 @@ const (
5757
sysSO_EE_ORIGIN_TXSTATUS = 0x4
5858
sysSO_EE_ORIGIN_TIMESTAMPING = 0x4
5959

60+
sysSOL_SOCKET = 0x1
61+
sysSO_ATTACH_FILTER = 0x1a
62+
6063
sysSizeofKernelSockaddrStorage = 0x80
6164
sysSizeofSockaddrInet = 0x10
6265
sysSizeofInetPktinfo = 0xc
@@ -132,3 +135,16 @@ type sysGroupSourceReq struct {
132135
type sysICMPFilter struct {
133136
Data uint32
134137
}
138+
139+
type sysSockFProg struct {
140+
Len uint16
141+
Pad_cgo_0 [6]byte
142+
Filter *sysSockFilter
143+
}
144+
145+
type sysSockFilter struct {
146+
Code uint16
147+
Jt uint8
148+
Jf uint8
149+
K uint32
150+
}

ipv4/zsys_linux_ppc64le.go

+16
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,9 @@ const (
5757
sysSO_EE_ORIGIN_TXSTATUS = 0x4
5858
sysSO_EE_ORIGIN_TIMESTAMPING = 0x4
5959

60+
sysSOL_SOCKET = 0x1
61+
sysSO_ATTACH_FILTER = 0x1a
62+
6063
sysSizeofKernelSockaddrStorage = 0x80
6164
sysSizeofSockaddrInet = 0x10
6265
sysSizeofInetPktinfo = 0xc
@@ -132,3 +135,16 @@ type sysGroupSourceReq struct {
132135
type sysICMPFilter struct {
133136
Data uint32
134137
}
138+
139+
type sysSockFProg struct {
140+
Len uint16
141+
Pad_cgo_0 [6]byte
142+
Filter *sysSockFilter
143+
}
144+
145+
type sysSockFilter struct {
146+
Code uint16
147+
Jt uint8
148+
Jf uint8
149+
K uint32
150+
}

0 commit comments

Comments
 (0)