blob: 41008aaacb6d5446d325dc15d091a72129dd63c1 [file] [log] [blame]
Don Newton98fd8812019-09-23 15:15:02 -04001/*
David K. Bainbridge157bdab2020-01-16 14:38:05 -08002 Copyright 2020 the original author or authors.
Don Newton98fd8812019-09-23 15:15:02 -04003
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15*/
16
17package openflow
18
19import (
Rohan Agrawalc32d9932020-06-15 11:01:47 +000020 "context"
Don Newton98fd8812019-09-23 15:15:02 -040021 "encoding/json"
Jonathan Hart828908c2020-04-15 14:23:45 -070022 "github.com/opencord/goloxi"
23 ofp "github.com/opencord/goloxi/of13"
Maninder12b909f2020-10-23 14:23:36 +053024 "github.com/opencord/voltha-lib-go/v4/pkg/log"
Don Newton98fd8812019-09-23 15:15:02 -040025)
26
Rohan Agrawalc32d9932020-06-15 11:01:47 +000027func (ofc *OFConnection) handleRoleRequest(ctx context.Context, request *ofp.RoleRequest) {
Girish Kumar01e0c632020-08-10 16:48:56 +000028 span, ctx := log.CreateChildSpan(ctx, "openflow-role")
29 defer span.Finish()
30
David K. Bainbridge157bdab2020-01-16 14:38:05 -080031 if logger.V(log.DebugLevel) {
Don Newton7577f072020-01-06 12:41:11 -050032 js, _ := json.Marshal(request)
Rohan Agrawalc32d9932020-06-15 11:01:47 +000033 logger.Debugw(ctx, "handleRoleRequest called",
David K. Bainbridge157bdab2020-01-16 14:38:05 -080034 log.Fields{
35 "device-id": ofc.DeviceID,
36 "request": js})
Don Newton7577f072020-01-06 12:41:11 -050037 }
Jonathan Hart4b110f62020-03-13 17:36:19 -070038
39 if request.Role == ofp.OFPCRRoleNochange {
40 reply := ofp.NewRoleReply()
41 reply.SetXid(request.GetXid())
42 reply.SetVersion(request.GetVersion())
43 reply.SetRole(ofp.ControllerRole(ofc.role))
44 reply.SetGenerationId(request.GetGenerationId())
Rohan Agrawalc32d9932020-06-15 11:01:47 +000045 if err := ofc.SendMessage(ctx, reply); err != nil {
46 logger.Errorw(ctx, "handle-role-request-send-message", log.Fields{
Jonathan Hart4b110f62020-03-13 17:36:19 -070047 "device-id": ofc.DeviceID,
48 "error": err})
49 }
50 }
51
Rohan Agrawalc32d9932020-06-15 11:01:47 +000052 ok := ofc.roleManager.UpdateRoles(ctx, ofc.OFControllerEndPoint, request)
Jonathan Hart4b110f62020-03-13 17:36:19 -070053
54 if ok {
55 reply := ofp.NewRoleReply()
56 reply.SetXid(request.GetXid())
57 reply.SetVersion(request.GetVersion())
58 reply.SetRole(request.GetRole())
59 reply.SetGenerationId(request.GetGenerationId())
Rohan Agrawalc32d9932020-06-15 11:01:47 +000060 if err := ofc.SendMessage(ctx, reply); err != nil {
61 logger.Errorw(ctx, "handle-role-request-send-message", log.Fields{
Jonathan Hart4b110f62020-03-13 17:36:19 -070062 "device-id": ofc.DeviceID,
63 "error": err})
64 }
65 } else {
66 reply := ofp.NewRoleRequestFailedErrorMsg()
67 reply.SetXid(request.GetXid())
68 reply.SetVersion(request.GetVersion())
69 reply.Code = ofp.OFPRRFCStale
70
71 enc := goloxi.NewEncoder()
72 err := request.Serialize(enc)
73 if err == nil {
74 reply.Data = enc.Bytes()
75 }
76
Rohan Agrawalc32d9932020-06-15 11:01:47 +000077 if err := ofc.SendMessage(ctx, reply); err != nil {
78 logger.Errorw(ctx, "handle-role-request-send-message", log.Fields{
Jonathan Hart4b110f62020-03-13 17:36:19 -070079 "device-id": ofc.DeviceID,
80 "error": err})
81 }
82 }
83}
84
Rohan Agrawalc32d9932020-06-15 11:01:47 +000085func (ofc *OFConnection) sendRoleSlaveError(ctx context.Context, request ofp.IHeader) {
Jonathan Hart4b110f62020-03-13 17:36:19 -070086 reply := ofp.NewBadRequestErrorMsg()
Don Newton98fd8812019-09-23 15:15:02 -040087 reply.SetXid(request.GetXid())
88 reply.SetVersion(request.GetVersion())
Jonathan Hart4b110f62020-03-13 17:36:19 -070089 reply.Code = ofp.OFPCRRoleSlave
90
91 enc := goloxi.NewEncoder()
92 err := request.Serialize(enc)
93 if err == nil {
94 reply.Data = enc.Bytes()
95 }
96
Rohan Agrawalc32d9932020-06-15 11:01:47 +000097 if err := ofc.SendMessage(ctx, reply); err != nil {
98 logger.Errorw(ctx, "send-role-slave-error", log.Fields{
David K. Bainbridgecac73ac2020-02-19 07:00:12 -080099 "device-id": ofc.DeviceID,
100 "error": err})
101 }
Don Newton98fd8812019-09-23 15:15:02 -0400102}