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
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
|
// Copyright (C) 2014,2015 Nippon Telegraph and Telephone Corporation.
//
// 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.
package server
import (
"fmt"
log "github.com/Sirupsen/logrus"
"github.com/osrg/gobgp/api"
"github.com/osrg/gobgp/packet"
"golang.org/x/net/context"
"google.golang.org/grpc"
"io"
"net"
)
const (
_ = iota
REQ_NEIGHBOR
REQ_NEIGHBORS
REQ_ADJ_RIB_IN
REQ_ADJ_RIB_OUT
REQ_LOCAL_RIB
REQ_NEIGHBOR_SHUTDOWN
REQ_NEIGHBOR_RESET
REQ_NEIGHBOR_SOFT_RESET
REQ_NEIGHBOR_SOFT_RESET_IN
REQ_NEIGHBOR_SOFT_RESET_OUT
REQ_NEIGHBOR_ENABLE
REQ_NEIGHBOR_DISABLE
REQ_NEIGHBOR_POLICY
REQ_NEIGHBOR_POLICY_ADD_IMPORT
REQ_NEIGHBOR_POLICY_ADD_EXPORT
REQ_NEIGHBOR_POLICY_DEL_IMPORT
REQ_NEIGHBOR_POLICY_DEL_EXPORT
REQ_GLOBAL_RIB
REQ_GLOBAL_ADD
REQ_GLOBAL_DELETE
REQ_POLICY_PREFIX
REQ_POLICY_PREFIXES
REQ_POLICY_PREFIX_ADD
REQ_POLICY_PREFIX_DELETE
REQ_POLICY_PREFIXES_DELETE
REQ_POLICY_NEIGHBOR
REQ_POLICY_NEIGHBORS
REQ_POLICY_NEIGHBOR_ADD
REQ_POLICY_NEIGHBOR_DELETE
REQ_POLICY_NEIGHBORS_DELETE
REQ_POLICY_ASPATH
REQ_POLICY_ASPATHS
REQ_POLICY_ASPATH_ADD
REQ_POLICY_ASPATH_DELETE
REQ_POLICY_ASPATHS_DELETE
REQ_POLICY_ROUTEPOLICIES
REQ_POLICY_ROUTEPOLICY
REQ_POLICY_ROUTEPOLICY_ADD
REQ_POLICY_ROUTEPOLICY_DELETE
REQ_POLICY_ROUTEPOLICIES_DELETE
)
const GRPC_PORT = 8080
func convertAf2Rf(af *api.AddressFamily) (bgp.RouteFamily, error) {
if af == nil {
return bgp.RouteFamily(0), fmt.Errorf("address family is nil")
}
if af.Equal(api.AF_IPV4_UC) {
return bgp.RF_IPv4_UC, nil
} else if af.Equal(api.AF_IPV6_UC) {
return bgp.RF_IPv6_UC, nil
} else if af.Equal(api.AF_EVPN) {
return bgp.RF_EVPN, nil
} else if af.Equal(api.AF_ENCAP) {
return bgp.RF_ENCAP, nil
} else if af.Equal(api.AF_RTC) {
return bgp.RF_RTC_UC, nil
}
return bgp.RouteFamily(0), fmt.Errorf("unsupported address family: %v", af)
}
type Server struct {
grpcServer *grpc.Server
bgpServerCh chan *GrpcRequest
}
func (s *Server) Serve() error {
lis, err := net.Listen("tcp", fmt.Sprintf(":%d", GRPC_PORT))
if err != nil {
return fmt.Errorf("failed to listen: %v", err)
}
s.grpcServer.Serve(lis)
return nil
}
func (s *Server) GetNeighbor(ctx context.Context, arg *api.Arguments) (*api.Peer, error) {
var rf bgp.RouteFamily
req := NewGrpcRequest(REQ_NEIGHBOR, arg.RouterId, rf, nil)
s.bgpServerCh <- req
res := <-req.ResponseCh
if err := res.Err(); err != nil {
log.Debug(err.Error())
return nil, err
}
return res.Data.(*api.Peer), nil
}
func (s *Server) GetNeighbors(_ *api.Arguments, stream api.Grpc_GetNeighborsServer) error {
var rf bgp.RouteFamily
req := NewGrpcRequest(REQ_NEIGHBORS, "", rf, nil)
s.bgpServerCh <- req
for res := range req.ResponseCh {
if err := res.Err(); err != nil {
log.Debug(err.Error())
return err
}
if err := stream.Send(res.Data.(*api.Peer)); err != nil {
return err
}
}
return nil
}
func (s *Server) GetAdjRib(arg *api.Arguments, stream api.Grpc_GetAdjRibServer) error {
var reqType int
switch arg.Resource {
case api.Resource_ADJ_IN:
reqType = REQ_ADJ_RIB_IN
case api.Resource_ADJ_OUT:
reqType = REQ_ADJ_RIB_OUT
default:
return fmt.Errorf("unsupported resource type: %v", arg.Resource)
}
rf, err := convertAf2Rf(arg.Af)
if err != nil {
return err
}
req := NewGrpcRequest(reqType, arg.RouterId, rf, nil)
s.bgpServerCh <- req
for res := range req.ResponseCh {
if err := res.Err(); err != nil {
log.Debug(err.Error())
return err
}
if err := stream.Send(res.Data.(*api.Path)); err != nil {
return err
}
}
return nil
}
func (s *Server) GetRib(arg *api.Arguments, stream api.Grpc_GetRibServer) error {
var reqType int
switch arg.Resource {
case api.Resource_LOCAL:
reqType = REQ_LOCAL_RIB
case api.Resource_GLOBAL:
reqType = REQ_GLOBAL_RIB
default:
return fmt.Errorf("unsupported resource type: %v", arg.Resource)
}
rf, err := convertAf2Rf(arg.Af)
if err != nil {
return err
}
req := NewGrpcRequest(reqType, arg.RouterId, rf, nil)
s.bgpServerCh <- req
for res := range req.ResponseCh {
if err := res.Err(); err != nil {
log.Debug(err.Error())
return err
}
if err := stream.Send(res.Data.(*api.Destination)); err != nil {
return err
}
}
return nil
}
func (s *Server) neighbor(reqType int, arg *api.Arguments) (*api.Error, error) {
rf, err := convertAf2Rf(arg.Af)
if err != nil {
return nil, err
}
none := &api.Error{}
req := NewGrpcRequest(reqType, arg.RouterId, rf, nil)
s.bgpServerCh <- req
res := <-req.ResponseCh
if err := res.Err(); err != nil {
log.Debug(err.Error())
return nil, err
}
return none, nil
}
func (s *Server) Reset(ctx context.Context, arg *api.Arguments) (*api.Error, error) {
return s.neighbor(REQ_NEIGHBOR_RESET, arg)
}
func (s *Server) SoftReset(ctx context.Context, arg *api.Arguments) (*api.Error, error) {
return s.neighbor(REQ_NEIGHBOR_SOFT_RESET, arg)
}
func (s *Server) SoftResetIn(ctx context.Context, arg *api.Arguments) (*api.Error, error) {
return s.neighbor(REQ_NEIGHBOR_SOFT_RESET_IN, arg)
}
func (s *Server) SoftResetOut(ctx context.Context, arg *api.Arguments) (*api.Error, error) {
return s.neighbor(REQ_NEIGHBOR_SOFT_RESET_OUT, arg)
}
func (s *Server) Shutdown(ctx context.Context, arg *api.Arguments) (*api.Error, error) {
return s.neighbor(REQ_NEIGHBOR_SHUTDOWN, arg)
}
func (s *Server) Enable(ctx context.Context, arg *api.Arguments) (*api.Error, error) {
return s.neighbor(REQ_NEIGHBOR_ENABLE, arg)
}
func (s *Server) Disable(ctx context.Context, arg *api.Arguments) (*api.Error, error) {
return s.neighbor(REQ_NEIGHBOR_DISABLE, arg)
}
func (s *Server) ModPath(stream api.Grpc_ModPathServer) error {
for {
arg, err := stream.Recv()
if err == io.EOF {
return nil
} else if err != nil {
return err
}
if arg.Resource != api.Resource_GLOBAL {
return fmt.Errorf("unsupported resource: %s", arg.Resource)
}
reqType := REQ_GLOBAL_ADD
if arg.Path.IsWithdraw {
reqType = REQ_GLOBAL_DELETE
}
rf, err := convertAf2Rf(arg.Path.Nlri.Af)
if err != nil {
return err
}
req := NewGrpcRequest(reqType, "", rf, arg.Path)
s.bgpServerCh <- req
res := <-req.ResponseCh
if err := res.Err(); err != nil {
log.Debug(err.Error())
return err
}
err = stream.Send(&api.Error{
Code: api.Error_SUCCESS,
})
if err != nil {
return err
}
}
}
func (s *Server) GetNeighborPolicy(ctx context.Context, arg *api.Arguments) (*api.ApplyPolicy, error) {
rf, err := convertAf2Rf(arg.Af)
if err != nil {
return nil, err
}
req := NewGrpcRequest(REQ_NEIGHBOR_POLICY, arg.RouterId, rf, nil)
s.bgpServerCh <- req
res := <-req.ResponseCh
if err := res.Err(); err != nil {
log.Debug(err.Error())
return nil, err
}
return res.Data.(*api.ApplyPolicy), nil
}
func (s *Server) ModNeighborPolicy(stream api.Grpc_ModNeighborPolicyServer) error {
for {
arg, err := stream.Recv()
if err == io.EOF {
return nil
} else if err != nil {
return err
}
if arg.Resource != api.Resource_POLICY_ROUTEPOLICY {
return fmt.Errorf("unsupported resource: %s", arg.Resource)
}
var rf bgp.RouteFamily
var reqType int
switch arg.Operation {
case api.Operation_ADD:
switch arg.Name {
case "import":
reqType = REQ_NEIGHBOR_POLICY_ADD_IMPORT
case "export":
reqType = REQ_NEIGHBOR_POLICY_ADD_EXPORT
}
case api.Operation_DEL:
switch arg.Name {
case "import":
reqType = REQ_NEIGHBOR_POLICY_DEL_IMPORT
case "export":
reqType = REQ_NEIGHBOR_POLICY_DEL_EXPORT
}
}
req := NewGrpcRequest(reqType, arg.RouterId, rf, arg.ApplyPolicy)
s.bgpServerCh <- req
res := <-req.ResponseCh
if err := res.Err(); err != nil {
log.Debug(err.Error())
return err
}
err = stream.Send(&api.Error{
Code: api.Error_SUCCESS,
})
if err != nil {
return err
}
}
}
func (s *Server) modPolicy(arg *api.PolicyArguments, stream interface{}) error {
var rf bgp.RouteFamily
var reqType int
var err error
switch arg.Resource {
case api.Resource_POLICY_PREFIX:
switch arg.Operation {
case api.Operation_ADD:
reqType = REQ_POLICY_PREFIX_ADD
case api.Operation_DEL:
reqType = REQ_POLICY_PREFIX_DELETE
case api.Operation_DEL_ALL:
reqType = REQ_POLICY_PREFIXES_DELETE
default:
return fmt.Errorf("unsupported operation: %s", arg.Operation)
}
case api.Resource_POLICY_NEIGHBOR:
switch arg.Operation {
case api.Operation_ADD:
reqType = REQ_POLICY_NEIGHBOR_ADD
case api.Operation_DEL:
reqType = REQ_POLICY_NEIGHBOR_DELETE
case api.Operation_DEL_ALL:
reqType = REQ_POLICY_NEIGHBORS_DELETE
default:
return fmt.Errorf("unsupported operation: %s", arg.Operation)
}
case api.Resource_POLICY_ASPATH:
switch arg.Operation {
case api.Operation_ADD:
reqType = REQ_POLICY_ASPATH_ADD
case api.Operation_DEL:
reqType = REQ_POLICY_ASPATH_DELETE
case api.Operation_DEL_ALL:
reqType = REQ_POLICY_ASPATHS_DELETE
default:
return fmt.Errorf("unsupported operation: %s", arg.Operation)
}
case api.Resource_POLICY_ROUTEPOLICY:
switch arg.Operation {
case api.Operation_ADD:
reqType = REQ_POLICY_ROUTEPOLICY_ADD
case api.Operation_DEL:
reqType = REQ_POLICY_ROUTEPOLICY_DELETE
case api.Operation_DEL_ALL:
reqType = REQ_POLICY_ROUTEPOLICIES_DELETE
default:
return fmt.Errorf("unsupported operation: %s", arg.Operation)
}
}
req := NewGrpcRequest(reqType, "", rf, arg.PolicyDefinition)
s.bgpServerCh <- req
res := <-req.ResponseCh
if err := res.Err(); err != nil {
log.Debug(err.Error())
return err
}
err = stream.(api.Grpc_ModPolicyRoutePolicyServer).Send(&api.Error{
Code: api.Error_SUCCESS,
})
if err != nil {
return err
}
return nil
}
func (s *Server) GetPolicyRoutePolicies(arg *api.PolicyArguments, stream api.Grpc_GetPolicyRoutePoliciesServer) error {
var rf bgp.RouteFamily
var reqType int
switch arg.Resource {
case api.Resource_POLICY_PREFIX:
reqType = REQ_POLICY_PREFIXES
case api.Resource_POLICY_NEIGHBOR:
reqType = REQ_POLICY_NEIGHBORS
case api.Resource_POLICY_ASPATH:
reqType = REQ_POLICY_ASPATHS
case api.Resource_POLICY_ROUTEPOLICY:
reqType = REQ_POLICY_ROUTEPOLICIES
default:
return fmt.Errorf("unsupported resource type: %v", arg.Resource)
}
req := NewGrpcRequest(reqType, "", rf, nil)
s.bgpServerCh <- req
for res := range req.ResponseCh {
if err := res.Err(); err != nil {
log.Debug(err.Error())
return err
}
if err := stream.(api.Grpc_GetPolicyRoutePoliciesServer).Send(res.Data.(*api.PolicyDefinition)); err != nil {
return err
}
}
return nil
}
func (s *Server) GetPolicyRoutePolicy(ctx context.Context, arg *api.PolicyArguments) (*api.PolicyDefinition, error) {
var rf bgp.RouteFamily
var reqType int
switch arg.Resource {
case api.Resource_POLICY_PREFIX:
reqType = REQ_POLICY_PREFIX
case api.Resource_POLICY_NEIGHBOR:
reqType = REQ_POLICY_NEIGHBOR
case api.Resource_POLICY_ASPATH:
reqType = REQ_POLICY_ASPATH
case api.Resource_POLICY_ROUTEPOLICY:
reqType = REQ_POLICY_ROUTEPOLICY
default:
return nil, fmt.Errorf("unsupported resource type: %v", arg.Resource)
}
req := NewGrpcRequest(reqType, "", rf, arg.Name)
s.bgpServerCh <- req
res := <-req.ResponseCh
if err := res.Err(); err != nil {
log.Debug(err.Error())
return nil, err
}
return res.Data.(*api.PolicyDefinition), nil
}
func (s *Server) ModPolicyRoutePolicy(stream api.Grpc_ModPolicyRoutePolicyServer) error {
for {
arg, err := stream.Recv()
if err == io.EOF {
return nil
} else if err != nil {
return err
}
if err := s.modPolicy(arg, stream); err != nil {
return err
}
return nil
}
}
type GrpcRequest struct {
RequestType int
RemoteAddr string
RouteFamily bgp.RouteFamily
ResponseCh chan *GrpcResponse
Err error
Data interface{}
}
func NewGrpcRequest(reqType int, remoteAddr string, rf bgp.RouteFamily, d interface{}) *GrpcRequest {
r := &GrpcRequest{
RequestType: reqType,
RouteFamily: rf,
RemoteAddr: remoteAddr,
ResponseCh: make(chan *GrpcResponse),
Data: d,
}
return r
}
type GrpcResponse struct {
ResponseErr error
Data interface{}
}
func (r *GrpcResponse) Err() error {
return r.ResponseErr
}
func NewGrpcServer(port int, bgpServerCh chan *GrpcRequest) *Server {
grpcServer := grpc.NewServer()
server := &Server{
grpcServer: grpcServer,
bgpServerCh: bgpServerCh,
}
api.RegisterGrpcServer(grpcServer, server)
return server
}
|