forked from ligato/vpp-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrest_handlers.go
417 lines (368 loc) · 13.2 KB
/
rest_handlers.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
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
// Copyright (c) 2017 Cisco and/or its affiliates.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at:
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//go:generate go-bindata-assetfs -pkg rest -o bindata.go ./templates/...
package rest
import (
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
govppapi "git.fd.io/govpp.git/api"
"github.com/ligato/vpp-agent/plugins/govppmux/vppcalls"
"github.com/ligato/vpp-agent/plugins/rest/resturl"
"github.com/ligato/vpp-agent/plugins/vpp/binapi/vpe"
"github.com/ligato/vpp-agent/plugins/vpp/model/interfaces"
"github.com/unrolled/render"
)
// Registers access list REST handlers
func (plugin *Plugin) registerAccessListHandlers() {
// GET IP ACLs
plugin.registerHTTPHandler(resturl.ACLIP, GET, func() (interface{}, error) {
return plugin.aclHandler.DumpIPACL(nil)
})
// GET MACIP ACLs
plugin.registerHTTPHandler(resturl.ACLMACIP, GET, func() (interface{}, error) {
return plugin.aclHandler.DumpMACIPACL(nil)
})
}
// Registers interface REST handlers
func (plugin *Plugin) registerInterfaceHandlers() {
// GET all interfaces
plugin.registerHTTPHandler(resturl.Interface, GET, func() (interface{}, error) {
return plugin.ifHandler.DumpInterfaces()
})
// GET loopback interfaces
plugin.registerHTTPHandler(resturl.Loopback, GET, func() (interface{}, error) {
return plugin.ifHandler.DumpInterfacesByType(interfaces.InterfaceType_SOFTWARE_LOOPBACK)
})
// GET ethernet interfaces
plugin.registerHTTPHandler(resturl.Ethernet, GET, func() (interface{}, error) {
return plugin.ifHandler.DumpInterfacesByType(interfaces.InterfaceType_ETHERNET_CSMACD)
})
// GET memif interfaces
plugin.registerHTTPHandler(resturl.Memif, GET, func() (interface{}, error) {
return plugin.ifHandler.DumpInterfacesByType(interfaces.InterfaceType_MEMORY_INTERFACE)
})
// GET tap interfaces
plugin.registerHTTPHandler(resturl.Tap, GET, func() (interface{}, error) {
return plugin.ifHandler.DumpInterfacesByType(interfaces.InterfaceType_TAP_INTERFACE)
})
// GET af-packet interfaces
plugin.registerHTTPHandler(resturl.AfPacket, GET, func() (interface{}, error) {
return plugin.ifHandler.DumpInterfacesByType(interfaces.InterfaceType_AF_PACKET_INTERFACE)
})
// GET VxLAN interfaces
plugin.registerHTTPHandler(resturl.VxLan, GET, func() (interface{}, error) {
return plugin.ifHandler.DumpInterfacesByType(interfaces.InterfaceType_VXLAN_TUNNEL)
})
}
// Registers BFD REST handlers
func (plugin *Plugin) registerBfdHandlers() {
// GET BFD configuration
plugin.registerHTTPHandler(resturl.BfdURL, GET, func() (interface{}, error) {
return plugin.bfdHandler.DumpBfdSingleHop()
})
// GET BFD sessions
plugin.registerHTTPHandler(resturl.BfdSession, GET, func() (interface{}, error) {
return plugin.bfdHandler.DumpBfdSessions()
})
// GET BFD authentication keys
plugin.registerHTTPHandler(resturl.BfdAuthKey, GET, func() (interface{}, error) {
return plugin.bfdHandler.DumpBfdAuthKeys()
})
}
// Registers NAT REST handlers
func (plugin *Plugin) registerNatHandlers() {
// GET NAT configuration
plugin.registerHTTPHandler(resturl.NatURL, GET, func() (interface{}, error) {
return plugin.natHandler.Nat44Dump()
})
// GET NAT global config
plugin.registerHTTPHandler(resturl.NatGlobal, GET, func() (interface{}, error) {
return plugin.natHandler.Nat44GlobalConfigDump()
})
// GET DNAT config
plugin.registerHTTPHandler(resturl.NatDNat, GET, func() (interface{}, error) {
return plugin.natHandler.Nat44DNatDump()
})
}
// Registers STN REST handlers
func (plugin *Plugin) registerStnHandlers() {
// GET STN configuration
plugin.registerHTTPHandler(resturl.StnURL, GET, func() (interface{}, error) {
return plugin.stnHandler.DumpStnRules()
})
}
// Registers IPSec REST handlers
func (plugin *Plugin) registerIPSecHandlers() {
// GET IPSec SPD configuration
plugin.registerHTTPHandler(resturl.IPSecSpd, GET, func() (interface{}, error) {
return plugin.ipSecHandler.DumpIPSecSPD()
})
// GET IPSec SA configuration
plugin.registerHTTPHandler(resturl.IPSecSa, GET, func() (interface{}, error) {
return plugin.ipSecHandler.DumpIPSecSA()
})
// GET IPSec Tunnel configuration
plugin.registerHTTPHandler(resturl.IPSecTnIf, GET, func() (interface{}, error) {
return plugin.ipSecHandler.DumpIPSecTunnelInterfaces()
})
}
// Registers L2 plugin REST handlers
func (plugin *Plugin) registerL2Handlers() {
// GET bridge domain IDs
plugin.registerHTTPHandler(resturl.BdID, GET, func() (interface{}, error) {
return plugin.bdHandler.DumpBridgeDomainIDs()
})
// GET bridge domains
plugin.registerHTTPHandler(resturl.Bd, GET, func() (interface{}, error) {
return plugin.bdHandler.DumpBridgeDomains()
})
// GET FIB entries
plugin.registerHTTPHandler(resturl.Fib, GET, func() (interface{}, error) {
return plugin.fibHandler.DumpFIBTableEntries()
})
// GET cross connects
plugin.registerHTTPHandler(resturl.Xc, GET, func() (interface{}, error) {
return plugin.xcHandler.DumpXConnectPairs()
})
}
// Registers L3 plugin REST handlers
func (plugin *Plugin) registerL3Handlers() {
// GET ARP entries
plugin.registerHTTPHandler(resturl.Arps, GET, func() (interface{}, error) {
return plugin.arpHandler.DumpArpEntries()
})
// GET proxy ARP interfaces
plugin.registerHTTPHandler(resturl.PArpIfs, GET, func() (interface{}, error) {
return plugin.pArpHandler.DumpProxyArpInterfaces()
})
// GET proxy ARP ranges
plugin.registerHTTPHandler(resturl.PArpRngs, GET, func() (interface{}, error) {
return plugin.pArpHandler.DumpProxyArpRanges()
})
// GET static routes
plugin.registerHTTPHandler(resturl.Routes, GET, func() (interface{}, error) {
return plugin.rtHandler.DumpStaticRoutes()
})
}
// Registers L3 plugin REST handlers
func (plugin *Plugin) registerL4Handlers() {
// GET static routes
plugin.registerHTTPHandler(resturl.Sessions, GET, func() (interface{}, error) {
return plugin.l4Handler.DumpL4Config()
})
}
// Registers Telemetry handler
func (plugin *Plugin) registerTelemetryHandlers() {
plugin.HTTPHandlers.RegisterHTTPHandler(resturl.Telemetry, plugin.telemetryHandler, GET)
plugin.HTTPHandlers.RegisterHTTPHandler(resturl.TMemory, plugin.telemetryMemoryHandler, GET)
plugin.HTTPHandlers.RegisterHTTPHandler(resturl.TRuntime, plugin.telemetryRuntimeHandler, GET)
plugin.HTTPHandlers.RegisterHTTPHandler(resturl.TNodeCount, plugin.telemetryNodeCountHandler, GET)
}
// Registers command handler
func (plugin *Plugin) registerCommandHandler() {
plugin.HTTPHandlers.RegisterHTTPHandler(resturl.Command, plugin.commandHandler, POST)
}
// Registers index page
func (plugin *Plugin) registerIndexHandlers() {
r := render.New(render.Options{
Directory: "templates",
Asset: Asset,
AssetNames: AssetNames,
})
handlerFunc := func(formatter *render.Render) http.HandlerFunc {
return func(w http.ResponseWriter, req *http.Request) {
plugin.Log.Debugf("%v - %s %q", req.RemoteAddr, req.Method, req.URL)
r.HTML(w, http.StatusOK, "index", plugin.index)
}
}
plugin.HTTPHandlers.RegisterHTTPHandler(resturl.Index, handlerFunc, GET)
}
// registerHTTPHandler is common register method for all handlers
func (plugin *Plugin) registerHTTPHandler(key, method string, f func() (interface{}, error)) {
handlerFunc := func(formatter *render.Render) http.HandlerFunc {
return func(w http.ResponseWriter, req *http.Request) {
plugin.govppmux.Lock()
defer plugin.govppmux.Unlock()
res, err := f()
if err != nil {
plugin.Deps.Log.Errorf("Error: %v", err)
errStr := fmt.Sprintf("500 Internal server error: %s\n", err.Error())
formatter.Text(w, http.StatusInternalServerError, errStr)
return
}
plugin.Deps.Log.Debugf("Rest uri: %s, data: %v", key, res)
formatter.JSON(w, http.StatusOK, res)
}
}
plugin.HTTPHandlers.RegisterHTTPHandler(key, handlerFunc, method)
}
// commandHandler - used to execute VPP CLI commands
func (plugin *Plugin) commandHandler(formatter *render.Render) http.HandlerFunc {
return func(w http.ResponseWriter, req *http.Request) {
body, err := ioutil.ReadAll(req.Body)
if err != nil {
plugin.Log.Error("Failed to parse request body.")
formatter.JSON(w, http.StatusBadRequest, err)
return
}
var reqParam map[string]string
err = json.Unmarshal(body, &reqParam)
if err != nil {
plugin.Log.Error("Failed to unmarshal request body.")
formatter.JSON(w, http.StatusBadRequest, err)
return
}
command, ok := reqParam["vppclicommand"]
if !ok || command == "" {
plugin.Log.Error("vppclicommand parameter missing or empty")
formatter.JSON(w, http.StatusBadRequest, "vppclicommand parameter missing or empty")
return
}
plugin.Log.Debugf("VPPCLI command: %v", command)
ch, err := plugin.GoVppmux.NewAPIChannel()
if err != nil {
plugin.Log.Errorf("Error creating channel: %v", err)
formatter.JSON(w, http.StatusInternalServerError, err)
return
}
defer ch.Close()
r := &vpe.CliInband{
Length: uint32(len(command)),
Cmd: []byte(command),
}
reply := &vpe.CliInbandReply{}
err = ch.SendRequest(r).ReceiveReply(reply)
if err != nil {
err = fmt.Errorf("sending request failed: %v", err)
plugin.Log.Error(err)
formatter.JSON(w, http.StatusInternalServerError, err)
return
} else if reply.Retval > 0 {
err = fmt.Errorf("request returned error code: %v", reply.Retval)
plugin.Log.Error(err)
formatter.JSON(w, http.StatusInternalServerError, err)
return
}
plugin.Log.Debugf("VPPCLI response: %s", reply.Reply)
formatter.Text(w, http.StatusOK, string(reply.Reply))
}
}
func (plugin *Plugin) sendCommand(ch govppapi.Channel, command string) ([]byte, error) {
r := &vpe.CliInband{
Length: uint32(len(command)),
Cmd: []byte(command),
}
reply := &vpe.CliInbandReply{}
if err := ch.SendRequest(r).ReceiveReply(reply); err != nil {
return nil, fmt.Errorf("sending request failed: %v", err)
} else if reply.Retval > 0 {
return nil, fmt.Errorf("request returned error code: %v", reply.Retval)
}
return reply.Reply[:reply.Length], nil
}
// telemetryHandler - returns various telemetry data
func (plugin *Plugin) telemetryHandler(formatter *render.Render) http.HandlerFunc {
return func(w http.ResponseWriter, req *http.Request) {
ch, err := plugin.GoVppmux.NewAPIChannel()
if err != nil {
plugin.Log.Errorf("Error creating channel: %v", err)
formatter.JSON(w, http.StatusInternalServerError, err)
return
}
defer ch.Close()
type cmdOut struct {
Command string
Output interface{}
}
var cmdOuts []cmdOut
var runCmd = func(command string) {
out, err := plugin.sendCommand(ch, command)
if err != nil {
plugin.Log.Errorf("Sending command failed: %v", err)
formatter.JSON(w, http.StatusInternalServerError, err)
return
}
cmdOuts = append(cmdOuts, cmdOut{
Command: command,
Output: string(out),
})
}
runCmd("show node counters")
runCmd("show runtime")
runCmd("show buffers")
runCmd("show memory")
runCmd("show ip fib")
runCmd("show ip6 fib")
formatter.JSON(w, http.StatusOK, cmdOuts)
}
}
// telemetryMemoryHandler - returns various telemetry data
func (plugin *Plugin) telemetryMemoryHandler(formatter *render.Render) http.HandlerFunc {
return func(w http.ResponseWriter, req *http.Request) {
ch, err := plugin.GoVppmux.NewAPIChannel()
if err != nil {
plugin.Log.Errorf("Error creating channel: %v", err)
formatter.JSON(w, http.StatusInternalServerError, err)
return
}
defer ch.Close()
info, err := vppcalls.GetMemory(ch)
if err != nil {
plugin.Log.Errorf("Sending command failed: %v", err)
formatter.JSON(w, http.StatusInternalServerError, err)
return
}
formatter.JSON(w, http.StatusOK, info)
}
}
// telemetryHandler - returns various telemetry data
func (plugin *Plugin) telemetryRuntimeHandler(formatter *render.Render) http.HandlerFunc {
return func(w http.ResponseWriter, req *http.Request) {
ch, err := plugin.GoVppmux.NewAPIChannel()
if err != nil {
plugin.Log.Errorf("Error creating channel: %v", err)
formatter.JSON(w, http.StatusInternalServerError, err)
return
}
defer ch.Close()
runtimeInfo, err := vppcalls.GetRuntimeInfo(ch)
if err != nil {
plugin.Log.Errorf("Sending command failed: %v", err)
formatter.JSON(w, http.StatusInternalServerError, err)
return
}
formatter.JSON(w, http.StatusOK, runtimeInfo)
}
}
// telemetryHandler - returns various telemetry data
func (plugin *Plugin) telemetryNodeCountHandler(formatter *render.Render) http.HandlerFunc {
return func(w http.ResponseWriter, req *http.Request) {
ch, err := plugin.GoVppmux.NewAPIChannel()
if err != nil {
plugin.Log.Errorf("Error creating channel: %v", err)
formatter.JSON(w, http.StatusInternalServerError, err)
return
}
defer ch.Close()
nodeCounters, err := vppcalls.GetNodeCounters(ch)
if err != nil {
plugin.Log.Errorf("Sending command failed: %v", err)
formatter.JSON(w, http.StatusInternalServerError, err)
return
}
formatter.JSON(w, http.StatusOK, nodeCounters)
}
}