-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathdevices_linux.go
224 lines (192 loc) · 4.86 KB
/
devices_linux.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
package main
import (
"C"
"net"
"os"
"strings"
"syscall"
"unsafe"
"github.com/sirupsen/logrus"
"golang.org/x/sys/unix"
)
// Device information for linux
var (
DefaultDevices = []*Device{
// /dev/urandom
{
Path: "/dev/urandom",
Type: 'c',
Major: 1,
Minor: 9,
Permissions: "rwm",
FileMode: 0666,
},
// /dev/net/tun
{
Path: "/dev/net/tun",
Type: 'c',
Major: 10,
Minor: 200,
Permissions: "rwm",
FileMode: 0666,
},
}
)
const (
tunDevice = "/dev/net/tun"
tunFCsum = 0x01
tunFTso4 = 0x02
virtioNetHdrSize = 12
)
const (
_ETHTOOL_GTXCSUM = 0x00000016 // linux/ethtool.h
_ETHTOOL_STXCSUM = 0x00000017 // linux/ethtool.h
)
type ifReq struct {
Name [syscall.IFNAMSIZ]byte
Flags uint16
}
type ifReqData struct {
Name [syscall.IFNAMSIZ]byte
Data uintptr
}
// linux/ethtool.h 'struct ethtool_value'
type ethtoolValue struct {
Cmd uint32
Data uint32
}
func openNetTapFd(ifname string, specEnv []string) (*os.File, bool) {
var ifr ifReq
var vnetHdrSz int
var offload string
for _, v := range specEnv {
if strings.HasPrefix(v, "LKL_OFFLOAD=") {
offload = "1"
break
}
}
tapDev, err := os.OpenFile(tunDevice, os.O_RDWR|unix.O_NONBLOCK, 0666)
if err != nil {
logrus.Errorf("open %s error: %s\n", tunDevice, err)
panic(err)
}
copy(ifr.Name[:(syscall.IFNAMSIZ-1)], ifname)
ifr.Flags = syscall.IFF_TAP | syscall.IFF_NO_PI
if offload != "" {
ifr.Flags |= syscall.IFF_VNET_HDR
vnetHdrSz = virtioNetHdrSize
}
_, _, errno := syscall.Syscall(syscall.SYS_IOCTL,
uintptr(tapDev.Fd()),
uintptr(syscall.TUNSETIFF),
uintptr(unsafe.Pointer(&ifr)),
)
if errno != 0 {
panic(errno)
}
if offload != "" {
/* XXX: offload feature should be configurable */
_, _, errno := syscall.Syscall(syscall.SYS_IOCTL,
uintptr(tapDev.Fd()),
uintptr(syscall.TUNSETVNETHDRSZ),
uintptr(unsafe.Pointer(&vnetHdrSz)),
)
if errno != 0 {
panic(errno)
}
tapArg := tunFCsum | tunFTso4
_, _, errno = syscall.Syscall(syscall.SYS_IOCTL,
uintptr(tapDev.Fd()),
uintptr(syscall.TUNSETOFFLOAD),
uintptr(tapArg),
)
if errno != 0 {
panic(errno)
}
}
return tapDev, true
}
func htons(i uint16) uint16 {
return (i<<8)&0xff00 | i>>8
}
func disableTxCsumOffloadForRawsock(ifname string) error {
// XXX: disable tx csum offload (may need vnet_hdr impl in raw sock)
iocSock, err := syscall.Socket(syscall.AF_INET, syscall.SOCK_DGRAM, 0)
if err != nil {
logrus.Errorf("socket for ioctl failure error: %s\n", err)
panic(err)
}
defer syscall.Close(iocSock)
value := ethtoolValue{Cmd: _ETHTOOL_STXCSUM, Data: 0}
request := ifReqData{Data: uintptr(unsafe.Pointer(&value))}
copy(request.Name[:], ifname)
_, _, errno := syscall.RawSyscall(syscall.SYS_IOCTL, uintptr(iocSock),
uintptr(unix.SIOCETHTOOL), uintptr(unsafe.Pointer(&request)))
if errno != 0 {
logrus.Errorf("disabling csum offload failure: %d\n", errno)
panic("ETHTOOL_STXCSUM")
}
value.Cmd = _ETHTOOL_GTXCSUM
_, _, errno = syscall.RawSyscall(syscall.SYS_IOCTL, uintptr(iocSock),
uintptr(unix.SIOCETHTOOL), uintptr(unsafe.Pointer(&request)))
if errno != 0 {
logrus.Errorf("disabling csum offload failure: %d\n", errno)
panic("ETHTOOL_GTXCSUM")
}
logrus.Debugf("ifreq rx csum flag is %d\n", value.Data)
return nil
}
func openNetRawsockFd(ifname string, specEnv []string) (*os.File, bool) {
fd, err := syscall.Socket(syscall.AF_PACKET, syscall.SOCK_RAW,
int(htons(syscall.ETH_P_ALL)))
if err != nil {
logrus.Errorf("open raw socket error: %s\n", err)
panic(err)
}
// bind to ifname
ifi, err := net.InterfaceByName(ifname)
if err != nil {
logrus.Errorf("can't find interface %s: %s\n", ifname, err)
panic(err)
}
sa := &unix.SockaddrLinklayer{
Protocol: htons(unix.ETH_P_ALL),
Ifindex: ifi.Index,
}
err = unix.Bind(fd, sa)
if err != nil {
logrus.Errorf("can't bind to interface %s: %s\n", ifname, err)
panic(err)
}
// set promisc
mreq := unix.PacketMreq{
Ifindex: int32(ifi.Index),
Type: unix.PACKET_MR_PROMISC,
}
if err = unix.SetsockoptPacketMreq(int(fd), unix.SOL_PACKET,
unix.PACKET_ADD_MEMBERSHIP, &mreq); err != nil {
logrus.Errorf("set nonblocking error: %s\n", err)
panic(err)
}
// vnethdr
var on uint64
if err = unix.SetsockoptUint64(int(fd), unix.SOL_PACKET,
unix.PACKET_VNET_HDR, on); err != nil {
logrus.Errorf("set vnethdr sockopt error: %s\n", err)
panic(err)
}
// set nonblock sock
if err = unix.SetNonblock(fd, true); err != nil {
logrus.Errorf("set nonblocking error: %s\n", err)
panic(err)
}
return os.NewFile(uintptr(fd), "eth-packet-socket"), true
}
func openNetFd(ifname string, specEnv []string) (*os.File, bool) {
if strings.HasPrefix(ifname, "eth") {
return openNetRawsockFd(ifname, specEnv)
} else if strings.HasPrefix(ifname, "tap") {
return openNetTapFd(ifname, specEnv)
}
return nil, false
}