This repository has been archived by the owner on May 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathserver.go
299 lines (242 loc) · 6.89 KB
/
server.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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
package main
import (
"fmt"
"log"
"net"
"os"
"path"
"strconv"
"time"
"github.com/Mellanox/sriovnet"
"golang.org/x/net/context"
"google.golang.org/grpc"
pluginapi "k8s.io/kubernetes/pkg/kubelet/apis/deviceplugin/v1beta1"
)
const (
RdmaSriovDpSocket = "rdma-sriov-dp.sock"
)
const (
RdmaSriovResourceName = "rdma/vhca"
RdmaHcaResourceName = "rdma/hca"
RdmaHcaMaxResources = 1000
)
const (
RdmaDevices = "/dev/infiniband"
)
type UserConfig struct {
Mode string `json:"mode"`
PfNetdevices []string `json:"pfNetdevices"`
}
// RdmaDevPlugin implements the Kubernetes device plugin API
type RdmaDevPlugin struct {
resourceName string
socket string
devs []*pluginapi.Device
stop chan interface{}
health chan *pluginapi.Device
server *grpc.Server
}
func configSriov(pfNetdevName string) (*sriovnet.PfNetdevHandle, error) {
var err error
err = sriovnet.EnableSriov(pfNetdevName)
if err != nil {
fmt.Println("Fail to enable sriov for netdev =", pfNetdevName)
return nil, err
}
pfHandle, err := sriovnet.GetPfNetdevHandle(pfNetdevName)
if err != nil {
fmt.Println("Fail to get Pf handle for netdev =", pfNetdevName)
return nil, err
}
err = sriovnet.ConfigVfs(pfHandle, true)
if err != nil {
fmt.Println("Fail to config vfs for ndev =", pfNetdevName)
return nil, err
}
return pfHandle, err
}
// NewRdmaSriovDevPlugin returns an initialized RdmaDevPlugin
func NewRdmaSriovDevPlugin(config UserConfig) *RdmaDevPlugin {
var devs = []*pluginapi.Device{}
log.Println("sriov device mode")
if len(config.PfNetdevices) == 0 {
fmt.Println("Error: empty or invalid pf netdevice configuration")
} else {
for _, ndev := range config.PfNetdevices {
fmt.Println("Configuring SRIOV on ndev=", ndev, len(ndev))
pfHandle, err2 := configSriov(ndev)
if err2 != nil {
fmt.Println("Fail to configure sriov; error = ", err2)
continue
}
for _, vf := range pfHandle.List {
dpDevice := &pluginapi.Device{
ID: vf.PciAddress,
Health: pluginapi.Healthy,
}
devs = append(devs, dpDevice)
}
}
}
return &RdmaDevPlugin{
resourceName: RdmaSriovResourceName,
socket: pluginapi.DevicePluginPath + RdmaSriovDpSocket,
devs: devs,
stop: make(chan interface{}),
health: make(chan *pluginapi.Device),
}
}
// NewRdmaSharedDevPlugin returns an initialized RdmaDevPlugin
func NewRdmaSharedDevPlugin(config UserConfig) *RdmaDevPlugin {
var devs = []*pluginapi.Device{}
log.Println("shared hca mode")
for n := 0; n < RdmaHcaMaxResources; n++ {
id := n
dpDevice := &pluginapi.Device{
ID: strconv.Itoa(id),
Health: pluginapi.Healthy,
}
devs = append(devs, dpDevice)
}
return &RdmaDevPlugin{
resourceName: RdmaHcaResourceName,
socket: pluginapi.DevicePluginPath + RdmaSriovDpSocket,
devs: devs,
stop: make(chan interface{}),
health: make(chan *pluginapi.Device),
}
}
// dial establishes the gRPC communication with the registered device plugin.
func dial(unixSocketPath string, timeout time.Duration) (*grpc.ClientConn, error) {
c, err := grpc.Dial(unixSocketPath, grpc.WithInsecure(), grpc.WithBlock(),
grpc.WithTimeout(timeout),
grpc.WithDialer(func(addr string, timeout time.Duration) (net.Conn, error) {
return net.DialTimeout("unix", addr, timeout)
}),
)
if err != nil {
return nil, err
}
return c, nil
}
// Start starts the gRPC server of the device plugin
func (m *RdmaDevPlugin) Start() error {
err := m.cleanup()
if err != nil {
return err
}
sock, err := net.Listen("unix", m.socket)
if err != nil {
return err
}
m.server = grpc.NewServer([]grpc.ServerOption{}...)
pluginapi.RegisterDevicePluginServer(m.server, m)
go m.server.Serve(sock)
// Wait for server to start by launching a blocking connexion
conn, err := dial(m.socket, 5*time.Second)
if err != nil {
return err
}
conn.Close()
// go m.healthcheck()
return nil
}
// Stop stops the gRPC server
func (m *RdmaDevPlugin) Stop() error {
if m.server == nil {
return nil
}
m.server.Stop()
m.server = nil
close(m.stop)
return m.cleanup()
}
// Register registers the device plugin for the given resourceName with Kubelet.
func (m *RdmaDevPlugin) Register(kubeletEndpoint, resourceName string) error {
conn, err := dial(kubeletEndpoint, 5*time.Second)
if err != nil {
return err
}
defer conn.Close()
client := pluginapi.NewRegistrationClient(conn)
reqt := &pluginapi.RegisterRequest{
Version: pluginapi.Version,
Endpoint: path.Base(m.socket),
ResourceName: resourceName,
}
_, err = client.Register(context.Background(), reqt)
if err != nil {
return err
}
return nil
}
// ListAndWatch lists devices and update that list according to the health status
func (m *RdmaDevPlugin) ListAndWatch(e *pluginapi.Empty, s pluginapi.DevicePlugin_ListAndWatchServer) error {
fmt.Println("exposing devices: ", m.devs)
s.Send(&pluginapi.ListAndWatchResponse{Devices: m.devs})
for {
select {
case <-m.stop:
return nil
case d := <-m.health:
// FIXME: there is no way to recover from the Unhealthy state.
d.Health = pluginapi.Unhealthy
s.Send(&pluginapi.ListAndWatchResponse{Devices: m.devs})
}
}
}
func (m *RdmaDevPlugin) unhealthy(dev *pluginapi.Device) {
m.health <- dev
}
// Allocate which return list of devices.
func (m *RdmaDevPlugin) Allocate(ctx context.Context, r *pluginapi.AllocateRequest) (*pluginapi.AllocateResponse, error) {
log.Println("allocate request:", r)
ress := make([]*pluginapi.ContainerAllocateResponse, len(r.GetContainerRequests()))
for i, _ := range r.GetContainerRequests() {
ds := make([]*pluginapi.DeviceSpec, 1)
ds[0] = &pluginapi.DeviceSpec{
HostPath: RdmaDevices,
ContainerPath: RdmaDevices,
Permissions: "rwm",
}
ress[i] = &pluginapi.ContainerAllocateResponse{
Devices: ds,
}
}
response := pluginapi.AllocateResponse{
ContainerResponses: ress,
}
log.Println("allocate response: ", response)
return &response, nil
}
func (m *RdmaDevPlugin) GetDevicePluginOptions(context.Context, *pluginapi.Empty) (*pluginapi.DevicePluginOptions, error) {
return &pluginapi.DevicePluginOptions{
PreStartRequired: false,
}, nil
}
func (m *RdmaDevPlugin) PreStartContainer(context.Context, *pluginapi.PreStartContainerRequest) (*pluginapi.PreStartContainerResponse, error) {
return &pluginapi.PreStartContainerResponse{}, nil
}
func (m *RdmaDevPlugin) cleanup() error {
if err := os.Remove(m.socket); err != nil && !os.IsNotExist(err) {
return err
}
return nil
}
// Serve starts the gRPC server and register the device plugin to Kubelet
func (m *RdmaDevPlugin) Serve() error {
err := m.Start()
if err != nil {
log.Printf("Could not start device plugin: %s", err)
return err
}
log.Println("Starting to serve on", m.socket)
err = m.Register(pluginapi.KubeletSocket, m.resourceName)
if err != nil {
log.Printf("Could not register device plugin: %s", err)
m.Stop()
return err
}
log.Println("Registered device plugin with Kubelet")
return nil
}