blob: 0b251a2c5c5035d05d6d9e2820f33d75ccb011a3 [file] [log] [blame]
khenaidoobf6e7bb2018-08-14 22:27:29 -04001/*
2 * Copyright 2018-present Open Networking Foundation
3
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 */
khenaidoob9203542018-09-17 22:56:37 -040016package core
khenaidoobf6e7bb2018-08-14 22:27:29 -040017
18import (
19 "context"
20 "errors"
Richard Jankowskidbab94a2018-12-06 16:20:25 -050021 "github.com/golang-collections/go-datastructures/queue"
khenaidoobf6e7bb2018-08-14 22:27:29 -040022 "github.com/golang/protobuf/ptypes/empty"
23 da "github.com/opencord/voltha-go/common/core/northbound/grpc"
24 "github.com/opencord/voltha-go/common/log"
khenaidoo1ce37ad2019-03-24 22:07:24 -040025 "github.com/opencord/voltha-go/rw_core/utils"
William Kurkiandaa6bb22019-03-07 12:26:28 -050026 "github.com/opencord/voltha-protos/go/common"
William Kurkiandaa6bb22019-03-07 12:26:28 -050027 "github.com/opencord/voltha-protos/go/omci"
khenaidoo2c6a0992019-04-29 13:46:56 -040028 "github.com/opencord/voltha-protos/go/openflow_13"
William Kurkiandaa6bb22019-03-07 12:26:28 -050029 "github.com/opencord/voltha-protos/go/voltha"
khenaidoob9203542018-09-17 22:56:37 -040030 "google.golang.org/grpc/codes"
khenaidoobf6e7bb2018-08-14 22:27:29 -040031 "google.golang.org/grpc/metadata"
khenaidoob9203542018-09-17 22:56:37 -040032 "google.golang.org/grpc/status"
Stephane Barbarie6e1bd502018-11-05 22:44:45 -050033 "io"
34 "time"
khenaidoobf6e7bb2018-08-14 22:27:29 -040035)
36
khenaidoof5a5bfa2019-01-23 22:20:29 -050037const (
khenaidoo2c6a0992019-04-29 13:46:56 -040038 IMAGE_DOWNLOAD = iota
39 CANCEL_IMAGE_DOWNLOAD = iota
40 ACTIVATE_IMAGE = iota
41 REVERT_IMAGE = iota
khenaidoof5a5bfa2019-01-23 22:20:29 -050042)
43
khenaidoobf6e7bb2018-08-14 22:27:29 -040044type APIHandler struct {
khenaidoo2c6a0992019-04-29 13:46:56 -040045 deviceMgr *DeviceManager
46 logicalDeviceMgr *LogicalDeviceManager
47 adapterMgr *AdapterManager
48 packetInQueue *queue.Queue
49 changeEventQueue *queue.Queue
50 coreInCompetingMode bool
khenaidoob6080322019-01-29 21:47:38 -050051 longRunningRequestTimeout int64
khenaidoo2c6a0992019-04-29 13:46:56 -040052 defaultRequestTimeout int64
khenaidoobf6e7bb2018-08-14 22:27:29 -040053 da.DefaultAPIHandler
khenaidoo54e0ddf2019-02-27 16:21:33 -050054 core *Core
khenaidoobf6e7bb2018-08-14 22:27:29 -040055}
56
khenaidoo54e0ddf2019-02-27 16:21:33 -050057func NewAPIHandler(core *Core) *APIHandler {
Stephane Barbarie6e1bd502018-11-05 22:44:45 -050058 handler := &APIHandler{
khenaidoo2c6a0992019-04-29 13:46:56 -040059 deviceMgr: core.deviceMgr,
60 logicalDeviceMgr: core.logicalDeviceMgr,
61 adapterMgr: core.adapterMgr,
62 coreInCompetingMode: core.config.InCompetingMode,
63 longRunningRequestTimeout: core.config.LongRunningRequestTimeout,
64 defaultRequestTimeout: core.config.DefaultRequestTimeout,
Richard Jankowskidbab94a2018-12-06 16:20:25 -050065 // TODO: Figure out what the 'hint' parameter to queue.New does
khenaidoo2c6a0992019-04-29 13:46:56 -040066 packetInQueue: queue.New(10),
Richard Jankowski199fd862019-03-18 14:49:51 -040067 changeEventQueue: queue.New(10),
khenaidoo2c6a0992019-04-29 13:46:56 -040068 core: core,
Stephane Barbarie6e1bd502018-11-05 22:44:45 -050069 }
khenaidoobf6e7bb2018-08-14 22:27:29 -040070 return handler
71}
khenaidoo4d4802d2018-10-04 21:59:49 -040072
73// isTestMode is a helper function to determine a function is invoked for testing only
khenaidoobf6e7bb2018-08-14 22:27:29 -040074func isTestMode(ctx context.Context) bool {
75 md, _ := metadata.FromIncomingContext(ctx)
76 _, exist := md[common.TestModeKeys_api_test.String()]
77 return exist
78}
79
Richard Jankowskid42826e2018-11-02 16:06:37 -040080// This function attempts to extract the serial number from the request metadata
81// and create a KV transaction for that serial number for the current core.
82func (handler *APIHandler) createKvTransaction(ctx context.Context) (*KVTransaction, error) {
83 var (
khenaidoo43c82122018-11-22 18:38:28 -050084 err error
85 ok bool
86 md metadata.MD
Richard Jankowskid42826e2018-11-02 16:06:37 -040087 serNum []string
88 )
89 if md, ok = metadata.FromIncomingContext(ctx); !ok {
90 err = errors.New("metadata-not-found")
91 } else if serNum, ok = md["voltha_serial_number"]; !ok {
92 err = errors.New("serial-number-not-found")
93 }
khenaidoo2c6a0992019-04-29 13:46:56 -040094 if !ok || serNum == nil {
Richard Jankowskid42826e2018-11-02 16:06:37 -040095 log.Error(err)
96 return nil, err
97 }
98 // Create KV transaction
99 txn := NewKVTransaction(serNum[0])
100 return txn, nil
101}
102
Richard Jankowski2755adf2019-01-17 17:16:48 -0500103// isOFControllerRequest is a helper function to determine if a request was initiated
104// from the OpenFlow controller (or its proxy, e.g. OFAgent)
Richard Jankowski46464e92019-03-05 11:53:55 -0500105func (handler *APIHandler) isOFControllerRequest(ctx context.Context) bool {
khenaidoo9cdc1a62019-01-24 21:57:40 -0500106 if md, ok := metadata.FromIncomingContext(ctx); ok {
107 // Metadata in context
Richard Jankowski46464e92019-03-05 11:53:55 -0500108 if _, ok = md[handler.core.config.CoreBindingKey]; ok {
khenaidoo9cdc1a62019-01-24 21:57:40 -0500109 // OFAgent field in metadata
khenaidoo3d3b8c22019-05-22 18:10:39 -0400110 log.Debug("OFController-request")
khenaidoo9cdc1a62019-01-24 21:57:40 -0500111 return true
112 }
Richard Jankowski2755adf2019-01-17 17:16:48 -0500113 }
khenaidoo3d3b8c22019-05-22 18:10:39 -0400114 log.Debug("not-OFController-request")
khenaidoo9cdc1a62019-01-24 21:57:40 -0500115 return false
116}
117
118// competeForTransaction is a helper function to determine whether every request needs to compete with another
119// Core to execute the request
120func (handler *APIHandler) competeForTransaction() bool {
121 return handler.coreInCompetingMode
122}
123
Richard Jankowski199fd862019-03-18 14:49:51 -0400124// This function handles the creation of new devices
125func (handler *APIHandler) acquireRequest(ctx context.Context, id interface{}, maxTimeout ...int64) (*KVTransaction, error) {
khenaidoob6080322019-01-29 21:47:38 -0500126 timeout := handler.defaultRequestTimeout
khenaidoo9cdc1a62019-01-24 21:57:40 -0500127 if len(maxTimeout) > 0 {
128 timeout = maxTimeout[0]
Richard Jankowski2755adf2019-01-17 17:16:48 -0500129 }
khenaidoob6080322019-01-29 21:47:38 -0500130 log.Debugw("transaction-timeout", log.Fields{"timeout": timeout})
khenaidoo9cdc1a62019-01-24 21:57:40 -0500131 txn, err := handler.createKvTransaction(ctx)
132 if txn == nil {
khenaidoo2c6a0992019-04-29 13:46:56 -0400133 return nil, err
khenaidoo9cdc1a62019-01-24 21:57:40 -0500134 } else if txn.Acquired(timeout) {
135 return txn, nil
136 } else {
khenaidoo297cd252019-02-07 22:10:23 -0500137 if id != nil {
138 // The id can either be a device Id or a logical device id.
khenaidoo1ce37ad2019-03-24 22:07:24 -0400139 if dId, ok := id.(*utils.DeviceID); ok {
khenaidoo297cd252019-02-07 22:10:23 -0500140 // Since this core has not processed this request, let's load the device, along with its extended
141 // family (parents and children) in memory. This will keep this core in-sync with its paired core as
142 // much as possible. The watch feature in the core model will ensure that the contents of those objects in
143 // memory are in sync.
144 time.Sleep(2 * time.Second)
khenaidoo1ce37ad2019-03-24 22:07:24 -0400145 go handler.deviceMgr.load(dId.Id)
146 } else if ldId, ok := id.(*utils.LogicalDeviceID); ok {
khenaidoo297cd252019-02-07 22:10:23 -0500147 // This will load the logical device along with its children and grandchildren
khenaidoo1ce37ad2019-03-24 22:07:24 -0400148 go handler.logicalDeviceMgr.load(ldId.Id)
khenaidoo297cd252019-02-07 22:10:23 -0500149 }
150 }
khenaidoo9cdc1a62019-01-24 21:57:40 -0500151 return nil, errors.New("failed-to-seize-request")
Richard Jankowski2755adf2019-01-17 17:16:48 -0500152 }
Richard Jankowski2755adf2019-01-17 17:16:48 -0500153}
154
khenaidoo6d62c002019-05-15 21:57:03 -0400155// takeRequestOwnership creates a transaction in the dB for this request and handles the logic of transaction
156// acquisition. If the device is owned by this Core (in a core-pair) then acquire the transaction with a
157// timeout value (in the event of a timeout the other Core in the core-pair will proceed with the transaction). If the
158// device is not owned then this Core will just monitor the transaction for potential timeouts.
Richard Jankowski199fd862019-03-18 14:49:51 -0400159func (handler *APIHandler) takeRequestOwnership(ctx context.Context, id interface{}, maxTimeout ...int64) (*KVTransaction, error) {
khenaidoo6d62c002019-05-15 21:57:03 -0400160 t := time.Now()
Richard Jankowski199fd862019-03-18 14:49:51 -0400161 timeout := handler.defaultRequestTimeout
162 if len(maxTimeout) > 0 {
163 timeout = maxTimeout[0]
164 }
Richard Jankowski199fd862019-03-18 14:49:51 -0400165 txn, err := handler.createKvTransaction(ctx)
166 if txn == nil {
khenaidoo2c6a0992019-04-29 13:46:56 -0400167 return nil, err
Richard Jankowski199fd862019-03-18 14:49:51 -0400168 }
169
170 owned := false
171 if id != nil {
khenaidoo1ce37ad2019-03-24 22:07:24 -0400172 owned = handler.core.deviceOwnership.OwnedByMe(id)
Richard Jankowski199fd862019-03-18 14:49:51 -0400173 }
174 if owned {
175 if txn.Acquired(timeout) {
khenaidoo6d62c002019-05-15 21:57:03 -0400176 log.Debugw("acquired-transaction", log.Fields{"transaction-timeout": timeout})
Richard Jankowski199fd862019-03-18 14:49:51 -0400177 return txn, nil
178 } else {
179 return nil, errors.New("failed-to-seize-request")
180 }
181 } else {
182 if txn.Monitor(timeout) {
khenaidoo6d62c002019-05-15 21:57:03 -0400183 log.Debugw("acquired-transaction-after-timeout", log.Fields{"timeout": timeout, "waited-time": time.Since(t)})
Richard Jankowski199fd862019-03-18 14:49:51 -0400184 return txn, nil
185 } else {
khenaidoo6d62c002019-05-15 21:57:03 -0400186 log.Debugw("transaction-completed-by-other", log.Fields{"timeout": timeout, "waited-time": time.Since(t)})
187 return nil, errors.New(string(COMPLETED_BY_OTHER))
Richard Jankowski199fd862019-03-18 14:49:51 -0400188 }
189 }
190}
191
khenaidoo4d4802d2018-10-04 21:59:49 -0400192// waitForNilResponseOnSuccess is a helper function to wait for a response on channel ch where an nil
193// response is expected in a successful scenario
194func waitForNilResponseOnSuccess(ctx context.Context, ch chan interface{}) (*empty.Empty, error) {
195 select {
196 case res := <-ch:
197 if res == nil {
198 return new(empty.Empty), nil
199 } else if err, ok := res.(error); ok {
200 return new(empty.Empty), err
201 } else {
202 log.Warnw("unexpected-return-type", log.Fields{"result": res})
203 err = status.Errorf(codes.Internal, "%s", res)
204 return new(empty.Empty), err
205 }
206 case <-ctx.Done():
207 log.Debug("client-timeout")
208 return nil, ctx.Err()
209 }
210}
211
khenaidoobf6e7bb2018-08-14 22:27:29 -0400212func (handler *APIHandler) UpdateLogLevel(ctx context.Context, logging *voltha.Logging) (*empty.Empty, error) {
khenaidoo6f2fbe32019-01-18 16:16:50 -0500213 log.Debugw("UpdateLogLevel-request", log.Fields{"package": logging.PackageName, "intval": int(logging.Level)})
khenaidoo92e62c52018-10-03 14:02:54 -0400214 out := new(empty.Empty)
khenaidoo6f2fbe32019-01-18 16:16:50 -0500215 if logging.PackageName == "" {
216 log.SetAllLogLevel(int(logging.Level))
217 } else {
218 log.SetPackageLogLevel(logging.PackageName, int(logging.Level))
219 }
khenaidoo92e62c52018-10-03 14:02:54 -0400220 return out, nil
khenaidoobf6e7bb2018-08-14 22:27:29 -0400221}
222
khenaidoo54e0ddf2019-02-27 16:21:33 -0500223func (handler *APIHandler) UpdateMembership(ctx context.Context, membership *voltha.Membership) (*empty.Empty, error) {
224 log.Debugw("UpdateMembership-request", log.Fields{"membership": membership})
225 out := new(empty.Empty)
khenaidoo6417b6c2019-03-01 18:18:01 -0500226 if err := handler.core.updateCoreMembership(ctx, membership); err != nil {
khenaidoo54e0ddf2019-02-27 16:21:33 -0500227 return out, err
228 }
229 return out, nil
230}
231
khenaidoo6417b6c2019-03-01 18:18:01 -0500232func (handler *APIHandler) GetMembership(ctx context.Context, empty *empty.Empty) (*voltha.Membership, error) {
233 log.Debug("GetMembership-request")
234 if membership := handler.core.getCoreMembership(ctx); membership != nil {
235 return membership, nil
236 }
237 return &voltha.Membership{}, nil
238}
239
khenaidoobf6e7bb2018-08-14 22:27:29 -0400240func (handler *APIHandler) EnableLogicalDevicePort(ctx context.Context, id *voltha.LogicalPortId) (*empty.Empty, error) {
241 log.Debugw("EnableLogicalDevicePort-request", log.Fields{"id": id, "test": common.TestModeKeys_api_test.String()})
242 if isTestMode(ctx) {
243 out := new(empty.Empty)
244 return out, nil
245 }
Richard Jankowski2755adf2019-01-17 17:16:48 -0500246
khenaidoo9cdc1a62019-01-24 21:57:40 -0500247 if handler.competeForTransaction() {
khenaidoo2c6a0992019-04-29 13:46:56 -0400248 if txn, err := handler.takeRequestOwnership(ctx, &utils.LogicalDeviceID{Id: id.Id}); err != nil {
Richard Jankowski2755adf2019-01-17 17:16:48 -0500249 return new(empty.Empty), err
Richard Jankowski2755adf2019-01-17 17:16:48 -0500250 } else {
khenaidoo9cdc1a62019-01-24 21:57:40 -0500251 defer txn.Close()
Richard Jankowski2755adf2019-01-17 17:16:48 -0500252 }
253 }
khenaidoo9cdc1a62019-01-24 21:57:40 -0500254
khenaidoo4d4802d2018-10-04 21:59:49 -0400255 ch := make(chan interface{})
256 defer close(ch)
khenaidoo19d7b632018-10-30 10:49:50 -0400257 go handler.logicalDeviceMgr.enableLogicalPort(ctx, id, ch)
khenaidoo4d4802d2018-10-04 21:59:49 -0400258 return waitForNilResponseOnSuccess(ctx, ch)
khenaidoobf6e7bb2018-08-14 22:27:29 -0400259}
260
261func (handler *APIHandler) DisableLogicalDevicePort(ctx context.Context, id *voltha.LogicalPortId) (*empty.Empty, error) {
262 log.Debugw("DisableLogicalDevicePort-request", log.Fields{"id": id, "test": common.TestModeKeys_api_test.String()})
263 if isTestMode(ctx) {
264 out := new(empty.Empty)
265 return out, nil
266 }
Richard Jankowski2755adf2019-01-17 17:16:48 -0500267
khenaidoo9cdc1a62019-01-24 21:57:40 -0500268 if handler.competeForTransaction() {
khenaidoo2c6a0992019-04-29 13:46:56 -0400269 if txn, err := handler.takeRequestOwnership(ctx, &utils.LogicalDeviceID{Id: id.Id}); err != nil {
Richard Jankowski2755adf2019-01-17 17:16:48 -0500270 return new(empty.Empty), err
Richard Jankowski2755adf2019-01-17 17:16:48 -0500271 } else {
khenaidoo9cdc1a62019-01-24 21:57:40 -0500272 defer txn.Close()
Richard Jankowski2755adf2019-01-17 17:16:48 -0500273 }
274 }
khenaidoo9cdc1a62019-01-24 21:57:40 -0500275
khenaidoo19d7b632018-10-30 10:49:50 -0400276 ch := make(chan interface{})
277 defer close(ch)
278 go handler.logicalDeviceMgr.disableLogicalPort(ctx, id, ch)
279 return waitForNilResponseOnSuccess(ctx, ch)
khenaidoobf6e7bb2018-08-14 22:27:29 -0400280}
281
282func (handler *APIHandler) UpdateLogicalDeviceFlowTable(ctx context.Context, flow *openflow_13.FlowTableUpdate) (*empty.Empty, error) {
283 log.Debugw("UpdateLogicalDeviceFlowTable-request", log.Fields{"flow": flow, "test": common.TestModeKeys_api_test.String()})
284 if isTestMode(ctx) {
285 out := new(empty.Empty)
286 return out, nil
287 }
Richard Jankowski2755adf2019-01-17 17:16:48 -0500288
khenaidoo3d3b8c22019-05-22 18:10:39 -0400289 // TODO: Update this logic when the OF Controller (OFAgent in this case) is able to send a transaction Id in its
290 // request (the api-router binds the OfAgent to two Cores in a pair and let the traffic flows transparently)
khenaidoo9cdc1a62019-01-24 21:57:40 -0500291 if handler.competeForTransaction() {
khenaidoo3d3b8c22019-05-22 18:10:39 -0400292 if !handler.isOFControllerRequest(ctx) {
khenaidoo2c6a0992019-04-29 13:46:56 -0400293 if txn, err := handler.takeRequestOwnership(ctx, &utils.LogicalDeviceID{Id: flow.Id}); err != nil {
khenaidoo9cdc1a62019-01-24 21:57:40 -0500294 return new(empty.Empty), err
295 } else {
296 defer txn.Close()
297 }
khenaidoo3d3b8c22019-05-22 18:10:39 -0400298 } else if !handler.core.deviceOwnership.OwnedByMe(&utils.LogicalDeviceID{Id: flow.Id}) {
299 return new(empty.Empty), nil
Richard Jankowski2755adf2019-01-17 17:16:48 -0500300 }
301 }
khenaidoo9cdc1a62019-01-24 21:57:40 -0500302
khenaidoo19d7b632018-10-30 10:49:50 -0400303 ch := make(chan interface{})
304 defer close(ch)
305 go handler.logicalDeviceMgr.updateFlowTable(ctx, flow.Id, flow.FlowMod, ch)
306 return waitForNilResponseOnSuccess(ctx, ch)
khenaidoobf6e7bb2018-08-14 22:27:29 -0400307}
308
309func (handler *APIHandler) UpdateLogicalDeviceFlowGroupTable(ctx context.Context, flow *openflow_13.FlowGroupTableUpdate) (*empty.Empty, error) {
310 log.Debugw("UpdateLogicalDeviceFlowGroupTable-request", log.Fields{"flow": flow, "test": common.TestModeKeys_api_test.String()})
311 if isTestMode(ctx) {
312 out := new(empty.Empty)
313 return out, nil
314 }
Richard Jankowski2755adf2019-01-17 17:16:48 -0500315
khenaidoo3d3b8c22019-05-22 18:10:39 -0400316 // TODO: Update this logic when the OF Controller (OFAgent in this case) is able to send a transaction Id in its
317 // request (the api-router binds the OfAgent to two Cores in a pair and let the traffic flows transparently)
khenaidoo9cdc1a62019-01-24 21:57:40 -0500318 if handler.competeForTransaction() {
Richard Jankowski46464e92019-03-05 11:53:55 -0500319 if !handler.isOFControllerRequest(ctx) { // No need to acquire the transaction as request is sent to one core only
khenaidoo2c6a0992019-04-29 13:46:56 -0400320 if txn, err := handler.takeRequestOwnership(ctx, &utils.LogicalDeviceID{Id: flow.Id}); err != nil {
khenaidoo9cdc1a62019-01-24 21:57:40 -0500321 return new(empty.Empty), err
322 } else {
323 defer txn.Close()
324 }
khenaidoo3d3b8c22019-05-22 18:10:39 -0400325 } else if !handler.core.deviceOwnership.OwnedByMe(&utils.LogicalDeviceID{Id: flow.Id}) {
326 return new(empty.Empty), nil
Richard Jankowski2755adf2019-01-17 17:16:48 -0500327 }
328 }
khenaidoo9cdc1a62019-01-24 21:57:40 -0500329
khenaidoo19d7b632018-10-30 10:49:50 -0400330 ch := make(chan interface{})
331 defer close(ch)
332 go handler.logicalDeviceMgr.updateGroupTable(ctx, flow.Id, flow.GroupMod, ch)
333 return waitForNilResponseOnSuccess(ctx, ch)
khenaidoobf6e7bb2018-08-14 22:27:29 -0400334}
335
khenaidoob9203542018-09-17 22:56:37 -0400336// GetDevice must be implemented in the read-only containers - should it also be implemented here?
337func (handler *APIHandler) GetDevice(ctx context.Context, id *voltha.ID) (*voltha.Device, error) {
338 log.Debugw("GetDevice-request", log.Fields{"id": id})
khenaidoo19d7b632018-10-30 10:49:50 -0400339 return handler.deviceMgr.GetDevice(id.Id)
khenaidoob9203542018-09-17 22:56:37 -0400340}
341
342// GetDevice must be implemented in the read-only containers - should it also be implemented here?
343func (handler *APIHandler) ListDevices(ctx context.Context, empty *empty.Empty) (*voltha.Devices, error) {
344 log.Debug("ListDevices")
345 return handler.deviceMgr.ListDevices()
346}
347
khenaidoo7ccedd52018-12-14 16:48:54 -0500348// ListDeviceIds returns the list of device ids managed by a voltha core
349func (handler *APIHandler) ListDeviceIds(ctx context.Context, empty *empty.Empty) (*voltha.IDs, error) {
350 log.Debug("ListDeviceIDs")
351 if isTestMode(ctx) {
352 out := &voltha.IDs{Items: make([]*voltha.ID, 0)}
353 return out, nil
354 }
355 return handler.deviceMgr.ListDeviceIds()
356}
357
358//ReconcileDevices is a request to a voltha core to managed a list of devices based on their IDs
359func (handler *APIHandler) ReconcileDevices(ctx context.Context, ids *voltha.IDs) (*empty.Empty, error) {
360 log.Debug("ReconcileDevices")
361 if isTestMode(ctx) {
362 out := new(empty.Empty)
363 return out, nil
364 }
Richard Jankowski2755adf2019-01-17 17:16:48 -0500365
khenaidoo9cdc1a62019-01-24 21:57:40 -0500366 // No need to grab a transaction as this request is core specific
367
khenaidoo7ccedd52018-12-14 16:48:54 -0500368 ch := make(chan interface{})
369 defer close(ch)
370 go handler.deviceMgr.ReconcileDevices(ctx, ids, ch)
371 return waitForNilResponseOnSuccess(ctx, ch)
372}
373
khenaidoob9203542018-09-17 22:56:37 -0400374// GetLogicalDevice must be implemented in the read-only containers - should it also be implemented here?
375func (handler *APIHandler) GetLogicalDevice(ctx context.Context, id *voltha.ID) (*voltha.LogicalDevice, error) {
376 log.Debugw("GetLogicalDevice-request", log.Fields{"id": id})
377 return handler.logicalDeviceMgr.getLogicalDevice(id.Id)
378}
379
380// ListLogicalDevices must be implemented in the read-only containers - should it also be implemented here?
381func (handler *APIHandler) ListLogicalDevices(ctx context.Context, empty *empty.Empty) (*voltha.LogicalDevices, error) {
382 log.Debug("ListLogicalDevices")
383 return handler.logicalDeviceMgr.listLogicalDevices()
384}
385
khenaidoo21d51152019-02-01 13:48:37 -0500386// ListAdapters returns the contents of all adapters known to the system
387func (handler *APIHandler) ListAdapters(ctx context.Context, empty *empty.Empty) (*voltha.Adapters, error) {
388 log.Debug("ListDevices")
389 return handler.adapterMgr.listAdapters(ctx)
390}
391
khenaidoo19d7b632018-10-30 10:49:50 -0400392// ListLogicalDevicePorts must be implemented in the read-only containers - should it also be implemented here?
393func (handler *APIHandler) ListLogicalDevicePorts(ctx context.Context, id *voltha.ID) (*voltha.LogicalPorts, error) {
394 log.Debugw("ListLogicalDevicePorts", log.Fields{"logicaldeviceid": id})
395 return handler.logicalDeviceMgr.ListLogicalDevicePorts(ctx, id.Id)
396}
397
khenaidoo4d4802d2018-10-04 21:59:49 -0400398// CreateDevice creates a new parent device in the data model
khenaidoobf6e7bb2018-08-14 22:27:29 -0400399func (handler *APIHandler) CreateDevice(ctx context.Context, device *voltha.Device) (*voltha.Device, error) {
khenaidoob9203542018-09-17 22:56:37 -0400400 log.Debugw("createdevice", log.Fields{"device": *device})
khenaidoobf6e7bb2018-08-14 22:27:29 -0400401 if isTestMode(ctx) {
402 return &voltha.Device{Id: device.Id}, nil
403 }
Richard Jankowskid42826e2018-11-02 16:06:37 -0400404
khenaidoo9cdc1a62019-01-24 21:57:40 -0500405 if handler.competeForTransaction() {
Richard Jankowski199fd862019-03-18 14:49:51 -0400406 if txn, err := handler.acquireRequest(ctx, nil); err != nil {
Richard Jankowski2755adf2019-01-17 17:16:48 -0500407 return &voltha.Device{}, err
Richard Jankowski2755adf2019-01-17 17:16:48 -0500408 } else {
khenaidoo9cdc1a62019-01-24 21:57:40 -0500409 defer txn.Close()
Richard Jankowski2755adf2019-01-17 17:16:48 -0500410 }
411 }
khenaidoo9cdc1a62019-01-24 21:57:40 -0500412
khenaidoob9203542018-09-17 22:56:37 -0400413 ch := make(chan interface{})
414 defer close(ch)
415 go handler.deviceMgr.createDevice(ctx, device, ch)
416 select {
417 case res := <-ch:
khenaidoo92e62c52018-10-03 14:02:54 -0400418 if res != nil {
419 if err, ok := res.(error); ok {
420 return &voltha.Device{}, err
421 }
422 if d, ok := res.(*voltha.Device); ok {
khenaidoo2c6a0992019-04-29 13:46:56 -0400423 handler.core.deviceOwnership.OwnedByMe(&utils.DeviceID{Id: d.Id})
khenaidoo92e62c52018-10-03 14:02:54 -0400424 return d, nil
425 }
khenaidoob9203542018-09-17 22:56:37 -0400426 }
khenaidoo92e62c52018-10-03 14:02:54 -0400427 log.Warnw("create-device-unexpected-return-type", log.Fields{"result": res})
428 err := status.Errorf(codes.Internal, "%s", res)
429 return &voltha.Device{}, err
khenaidoob9203542018-09-17 22:56:37 -0400430 case <-ctx.Done():
431 log.Debug("createdevice-client-timeout")
432 return nil, ctx.Err()
433 }
khenaidoobf6e7bb2018-08-14 22:27:29 -0400434}
435
khenaidoo4d4802d2018-10-04 21:59:49 -0400436// EnableDevice activates a device by invoking the adopt_device API on the appropriate adapter
khenaidoobf6e7bb2018-08-14 22:27:29 -0400437func (handler *APIHandler) EnableDevice(ctx context.Context, id *voltha.ID) (*empty.Empty, error) {
khenaidoob9203542018-09-17 22:56:37 -0400438 log.Debugw("enabledevice", log.Fields{"id": id})
khenaidoobf6e7bb2018-08-14 22:27:29 -0400439 if isTestMode(ctx) {
khenaidoo4d4802d2018-10-04 21:59:49 -0400440 return new(empty.Empty), nil
khenaidoobf6e7bb2018-08-14 22:27:29 -0400441 }
Richard Jankowskid42826e2018-11-02 16:06:37 -0400442
khenaidoo9cdc1a62019-01-24 21:57:40 -0500443 if handler.competeForTransaction() {
khenaidoo2c6a0992019-04-29 13:46:56 -0400444 if txn, err := handler.takeRequestOwnership(ctx, &utils.DeviceID{Id: id.Id}, handler.longRunningRequestTimeout); err != nil {
Richard Jankowski2755adf2019-01-17 17:16:48 -0500445 return new(empty.Empty), err
Richard Jankowski2755adf2019-01-17 17:16:48 -0500446 } else {
khenaidoo9cdc1a62019-01-24 21:57:40 -0500447 defer txn.Close()
Richard Jankowski2755adf2019-01-17 17:16:48 -0500448 }
449 }
khenaidoo9cdc1a62019-01-24 21:57:40 -0500450
khenaidoob9203542018-09-17 22:56:37 -0400451 ch := make(chan interface{})
452 defer close(ch)
453 go handler.deviceMgr.enableDevice(ctx, id, ch)
khenaidoo4d4802d2018-10-04 21:59:49 -0400454 return waitForNilResponseOnSuccess(ctx, ch)
khenaidoobf6e7bb2018-08-14 22:27:29 -0400455}
456
khenaidoo4d4802d2018-10-04 21:59:49 -0400457// DisableDevice disables a device along with any child device it may have
khenaidoobf6e7bb2018-08-14 22:27:29 -0400458func (handler *APIHandler) DisableDevice(ctx context.Context, id *voltha.ID) (*empty.Empty, error) {
459 log.Debugw("disabledevice-request", log.Fields{"id": id})
460 if isTestMode(ctx) {
khenaidoo4d4802d2018-10-04 21:59:49 -0400461 return new(empty.Empty), nil
khenaidoobf6e7bb2018-08-14 22:27:29 -0400462 }
Richard Jankowski2755adf2019-01-17 17:16:48 -0500463
khenaidoo9cdc1a62019-01-24 21:57:40 -0500464 if handler.competeForTransaction() {
khenaidoo2c6a0992019-04-29 13:46:56 -0400465 if txn, err := handler.takeRequestOwnership(ctx, &utils.DeviceID{Id: id.Id}); err != nil {
Richard Jankowski2755adf2019-01-17 17:16:48 -0500466 return new(empty.Empty), err
Richard Jankowski2755adf2019-01-17 17:16:48 -0500467 } else {
khenaidoo9cdc1a62019-01-24 21:57:40 -0500468 defer txn.Close()
Richard Jankowski2755adf2019-01-17 17:16:48 -0500469 }
470 }
khenaidoo9cdc1a62019-01-24 21:57:40 -0500471
khenaidoo92e62c52018-10-03 14:02:54 -0400472 ch := make(chan interface{})
473 defer close(ch)
474 go handler.deviceMgr.disableDevice(ctx, id, ch)
khenaidoo4d4802d2018-10-04 21:59:49 -0400475 return waitForNilResponseOnSuccess(ctx, ch)
khenaidoobf6e7bb2018-08-14 22:27:29 -0400476}
477
khenaidoo4d4802d2018-10-04 21:59:49 -0400478//RebootDevice invoked the reboot API to the corresponding adapter
khenaidoobf6e7bb2018-08-14 22:27:29 -0400479func (handler *APIHandler) RebootDevice(ctx context.Context, id *voltha.ID) (*empty.Empty, error) {
khenaidoo4d4802d2018-10-04 21:59:49 -0400480 log.Debugw("rebootDevice-request", log.Fields{"id": id})
khenaidoobf6e7bb2018-08-14 22:27:29 -0400481 if isTestMode(ctx) {
khenaidoo4d4802d2018-10-04 21:59:49 -0400482 return new(empty.Empty), nil
khenaidoobf6e7bb2018-08-14 22:27:29 -0400483 }
Richard Jankowski2755adf2019-01-17 17:16:48 -0500484
khenaidoo9cdc1a62019-01-24 21:57:40 -0500485 if handler.competeForTransaction() {
khenaidoo2c6a0992019-04-29 13:46:56 -0400486 if txn, err := handler.takeRequestOwnership(ctx, &utils.DeviceID{Id: id.Id}); err != nil {
Richard Jankowski2755adf2019-01-17 17:16:48 -0500487 return new(empty.Empty), err
Richard Jankowski2755adf2019-01-17 17:16:48 -0500488 } else {
khenaidoo9cdc1a62019-01-24 21:57:40 -0500489 defer txn.Close()
Richard Jankowski2755adf2019-01-17 17:16:48 -0500490 }
491 }
khenaidoo9cdc1a62019-01-24 21:57:40 -0500492
khenaidoo4d4802d2018-10-04 21:59:49 -0400493 ch := make(chan interface{})
494 defer close(ch)
495 go handler.deviceMgr.rebootDevice(ctx, id, ch)
496 return waitForNilResponseOnSuccess(ctx, ch)
khenaidoobf6e7bb2018-08-14 22:27:29 -0400497}
498
khenaidoo4d4802d2018-10-04 21:59:49 -0400499// DeleteDevice removes a device from the data model
khenaidoobf6e7bb2018-08-14 22:27:29 -0400500func (handler *APIHandler) DeleteDevice(ctx context.Context, id *voltha.ID) (*empty.Empty, error) {
501 log.Debugw("deletedevice-request", log.Fields{"id": id})
502 if isTestMode(ctx) {
khenaidoo4d4802d2018-10-04 21:59:49 -0400503 return new(empty.Empty), nil
khenaidoobf6e7bb2018-08-14 22:27:29 -0400504 }
Richard Jankowski2755adf2019-01-17 17:16:48 -0500505
khenaidoo9cdc1a62019-01-24 21:57:40 -0500506 if handler.competeForTransaction() {
khenaidoo6d62c002019-05-15 21:57:03 -0400507 if txn, err := handler.takeRequestOwnership(ctx, &utils.DeviceID{Id: id.Id}); err != nil {
508 // Remove the device in memory
509 if err.Error() == (errors.New(string(COMPLETED_BY_OTHER)).Error()) {
510 handler.deviceMgr.stopManagingDevice(id.Id)
511 }
Richard Jankowski2755adf2019-01-17 17:16:48 -0500512 return new(empty.Empty), err
Richard Jankowski2755adf2019-01-17 17:16:48 -0500513 } else {
khenaidoo9cdc1a62019-01-24 21:57:40 -0500514 defer txn.Close()
Richard Jankowski2755adf2019-01-17 17:16:48 -0500515 }
516 }
khenaidoo9cdc1a62019-01-24 21:57:40 -0500517
khenaidoo4d4802d2018-10-04 21:59:49 -0400518 ch := make(chan interface{})
519 defer close(ch)
520 go handler.deviceMgr.deleteDevice(ctx, id, ch)
521 return waitForNilResponseOnSuccess(ctx, ch)
khenaidoobf6e7bb2018-08-14 22:27:29 -0400522}
523
khenaidoof5a5bfa2019-01-23 22:20:29 -0500524// processImageRequest is a helper method to execute an image download request
525func (handler *APIHandler) processImageRequest(ctx context.Context, img *voltha.ImageDownload, requestType int) (*common.OperationResp, error) {
526 log.Debugw("processImageDownload", log.Fields{"img": *img, "requestType": requestType})
527 if isTestMode(ctx) {
528 resp := &common.OperationResp{Code: common.OperationResp_OPERATION_SUCCESS}
529 return resp, nil
530 }
531
khenaidoo9cdc1a62019-01-24 21:57:40 -0500532 if handler.competeForTransaction() {
khenaidoo2c6a0992019-04-29 13:46:56 -0400533 if txn, err := handler.takeRequestOwnership(ctx, &utils.DeviceID{Id: img.Id}); err != nil {
khenaidoo9cdc1a62019-01-24 21:57:40 -0500534 return &common.OperationResp{}, err
535 } else {
536 defer txn.Close()
537 }
khenaidoof5a5bfa2019-01-23 22:20:29 -0500538 }
539
khenaidoo2c6a0992019-04-29 13:46:56 -0400540 failedresponse := &common.OperationResp{Code: voltha.OperationResp_OPERATION_FAILURE}
khenaidoof5a5bfa2019-01-23 22:20:29 -0500541
542 ch := make(chan interface{})
543 defer close(ch)
544 switch requestType {
545 case IMAGE_DOWNLOAD:
546 go handler.deviceMgr.downloadImage(ctx, img, ch)
547 case CANCEL_IMAGE_DOWNLOAD:
548 go handler.deviceMgr.cancelImageDownload(ctx, img, ch)
549 case ACTIVATE_IMAGE:
550 go handler.deviceMgr.activateImage(ctx, img, ch)
551 case REVERT_IMAGE:
552 go handler.deviceMgr.revertImage(ctx, img, ch)
553 default:
554 log.Warn("invalid-request-type", log.Fields{"requestType": requestType})
555 return failedresponse, status.Errorf(codes.InvalidArgument, "%d", requestType)
556 }
557 select {
558 case res := <-ch:
559 if res != nil {
560 if err, ok := res.(error); ok {
561 return failedresponse, err
562 }
563 if opResp, ok := res.(*common.OperationResp); ok {
564 return opResp, nil
565 }
566 }
567 log.Warnw("download-image-unexpected-return-type", log.Fields{"result": res})
568 return failedresponse, status.Errorf(codes.Internal, "%s", res)
569 case <-ctx.Done():
570 log.Debug("downloadImage-client-timeout")
571 return nil, ctx.Err()
572 }
573}
574
khenaidoobf6e7bb2018-08-14 22:27:29 -0400575func (handler *APIHandler) DownloadImage(ctx context.Context, img *voltha.ImageDownload) (*common.OperationResp, error) {
576 log.Debugw("DownloadImage-request", log.Fields{"img": *img})
577 if isTestMode(ctx) {
578 resp := &common.OperationResp{Code: common.OperationResp_OPERATION_SUCCESS}
579 return resp, nil
580 }
581
khenaidoof5a5bfa2019-01-23 22:20:29 -0500582 return handler.processImageRequest(ctx, img, IMAGE_DOWNLOAD)
khenaidoobf6e7bb2018-08-14 22:27:29 -0400583}
584
585func (handler *APIHandler) CancelImageDownload(ctx context.Context, img *voltha.ImageDownload) (*common.OperationResp, error) {
khenaidoof5a5bfa2019-01-23 22:20:29 -0500586 log.Debugw("cancelImageDownload-request", log.Fields{"img": *img})
khenaidoobf6e7bb2018-08-14 22:27:29 -0400587 if isTestMode(ctx) {
588 resp := &common.OperationResp{Code: common.OperationResp_OPERATION_SUCCESS}
589 return resp, nil
590 }
khenaidoof5a5bfa2019-01-23 22:20:29 -0500591 return handler.processImageRequest(ctx, img, CANCEL_IMAGE_DOWNLOAD)
khenaidoobf6e7bb2018-08-14 22:27:29 -0400592}
593
594func (handler *APIHandler) ActivateImageUpdate(ctx context.Context, img *voltha.ImageDownload) (*common.OperationResp, error) {
khenaidoof5a5bfa2019-01-23 22:20:29 -0500595 log.Debugw("activateImageUpdate-request", log.Fields{"img": *img})
khenaidoobf6e7bb2018-08-14 22:27:29 -0400596 if isTestMode(ctx) {
597 resp := &common.OperationResp{Code: common.OperationResp_OPERATION_SUCCESS}
598 return resp, nil
599 }
khenaidoof5a5bfa2019-01-23 22:20:29 -0500600
601 return handler.processImageRequest(ctx, img, ACTIVATE_IMAGE)
khenaidoobf6e7bb2018-08-14 22:27:29 -0400602}
603
604func (handler *APIHandler) RevertImageUpdate(ctx context.Context, img *voltha.ImageDownload) (*common.OperationResp, error) {
khenaidoof5a5bfa2019-01-23 22:20:29 -0500605 log.Debugw("revertImageUpdate-request", log.Fields{"img": *img})
khenaidoobf6e7bb2018-08-14 22:27:29 -0400606 if isTestMode(ctx) {
607 resp := &common.OperationResp{Code: common.OperationResp_OPERATION_SUCCESS}
608 return resp, nil
609 }
khenaidoof5a5bfa2019-01-23 22:20:29 -0500610
611 return handler.processImageRequest(ctx, img, REVERT_IMAGE)
khenaidoobf6e7bb2018-08-14 22:27:29 -0400612}
613
khenaidoof5a5bfa2019-01-23 22:20:29 -0500614func (handler *APIHandler) GetImageDownloadStatus(ctx context.Context, img *voltha.ImageDownload) (*voltha.ImageDownload, error) {
615 log.Debugw("getImageDownloadStatus-request", log.Fields{"img": *img})
616 if isTestMode(ctx) {
Stephane Barbariedf5479f2019-01-29 22:13:00 -0500617 resp := &voltha.ImageDownload{DownloadState: voltha.ImageDownload_DOWNLOAD_SUCCEEDED}
khenaidoof5a5bfa2019-01-23 22:20:29 -0500618 return resp, nil
619 }
620
Stephane Barbariedf5479f2019-01-29 22:13:00 -0500621 failedresponse := &voltha.ImageDownload{DownloadState: voltha.ImageDownload_DOWNLOAD_UNKNOWN}
khenaidoof5a5bfa2019-01-23 22:20:29 -0500622
khenaidoo9cdc1a62019-01-24 21:57:40 -0500623 if handler.competeForTransaction() {
khenaidoo2c6a0992019-04-29 13:46:56 -0400624 if txn, err := handler.takeRequestOwnership(ctx, &utils.DeviceID{Id: img.Id}); err != nil {
khenaidoo9cdc1a62019-01-24 21:57:40 -0500625 return failedresponse, err
626 } else {
627 defer txn.Close()
628 }
khenaidoof5a5bfa2019-01-23 22:20:29 -0500629 }
630
631 ch := make(chan interface{})
632 defer close(ch)
633 go handler.deviceMgr.getImageDownloadStatus(ctx, img, ch)
634
635 select {
636 case res := <-ch:
637 if res != nil {
638 if err, ok := res.(error); ok {
639 return failedresponse, err
640 }
641 if downloadResp, ok := res.(*voltha.ImageDownload); ok {
642 return downloadResp, nil
643 }
644 }
645 log.Warnw("download-image-status", log.Fields{"result": res})
646 return failedresponse, status.Errorf(codes.Internal, "%s", res)
647 case <-ctx.Done():
648 log.Debug("downloadImage-client-timeout")
649 return failedresponse, ctx.Err()
650 }
651}
652
653func (handler *APIHandler) GetImageDownload(ctx context.Context, img *voltha.ImageDownload) (*voltha.ImageDownload, error) {
654 log.Debugw("GetImageDownload-request", log.Fields{"img": *img})
655 if isTestMode(ctx) {
Stephane Barbariedf5479f2019-01-29 22:13:00 -0500656 resp := &voltha.ImageDownload{DownloadState: voltha.ImageDownload_DOWNLOAD_SUCCEEDED}
khenaidoof5a5bfa2019-01-23 22:20:29 -0500657 return resp, nil
658 }
659
660 if download, err := handler.deviceMgr.getImageDownload(ctx, img); err != nil {
Stephane Barbariedf5479f2019-01-29 22:13:00 -0500661 return &voltha.ImageDownload{DownloadState: voltha.ImageDownload_DOWNLOAD_UNKNOWN}, err
khenaidoof5a5bfa2019-01-23 22:20:29 -0500662 } else {
663 return download, nil
664 }
665}
666
667func (handler *APIHandler) ListImageDownloads(ctx context.Context, id *voltha.ID) (*voltha.ImageDownloads, error) {
668 log.Debugw("ListImageDownloads-request", log.Fields{"deviceId": id.Id})
669 if isTestMode(ctx) {
khenaidoo2c6a0992019-04-29 13:46:56 -0400670 resp := &voltha.ImageDownloads{Items: []*voltha.ImageDownload{}}
khenaidoof5a5bfa2019-01-23 22:20:29 -0500671 return resp, nil
672 }
673
674 if downloads, err := handler.deviceMgr.listImageDownloads(ctx, id.Id); err != nil {
675 failedResp := &voltha.ImageDownloads{
khenaidoo2c6a0992019-04-29 13:46:56 -0400676 Items: []*voltha.ImageDownload{
677 {DownloadState: voltha.ImageDownload_DOWNLOAD_UNKNOWN},
678 },
khenaidoof5a5bfa2019-01-23 22:20:29 -0500679 }
680 return failedResp, err
681 } else {
682 return downloads, nil
683 }
684}
685
khenaidoobf6e7bb2018-08-14 22:27:29 -0400686func (handler *APIHandler) UpdateDevicePmConfigs(ctx context.Context, configs *voltha.PmConfigs) (*empty.Empty, error) {
687 log.Debugw("UpdateDevicePmConfigs-request", log.Fields{"configs": *configs})
688 if isTestMode(ctx) {
689 out := new(empty.Empty)
690 return out, nil
691 }
692 return nil, errors.New("UnImplemented")
693}
694
695func (handler *APIHandler) CreateAlarmFilter(ctx context.Context, filter *voltha.AlarmFilter) (*voltha.AlarmFilter, error) {
696 log.Debugw("CreateAlarmFilter-request", log.Fields{"filter": *filter})
697 if isTestMode(ctx) {
698 f := &voltha.AlarmFilter{Id: filter.Id}
699 return f, nil
700 }
701 return nil, errors.New("UnImplemented")
702}
703
704func (handler *APIHandler) UpdateAlarmFilter(ctx context.Context, filter *voltha.AlarmFilter) (*voltha.AlarmFilter, error) {
705 log.Debugw("UpdateAlarmFilter-request", log.Fields{"filter": *filter})
706 if isTestMode(ctx) {
707 f := &voltha.AlarmFilter{Id: filter.Id}
708 return f, nil
709 }
710 return nil, errors.New("UnImplemented")
711}
712
713func (handler *APIHandler) DeleteAlarmFilter(ctx context.Context, id *voltha.ID) (*empty.Empty, error) {
714 log.Debugw("DeleteAlarmFilter-request", log.Fields{"id": *id})
715 if isTestMode(ctx) {
716 out := new(empty.Empty)
717 return out, nil
718 }
719 return nil, errors.New("UnImplemented")
720}
721
722func (handler *APIHandler) SelfTest(ctx context.Context, id *voltha.ID) (*voltha.SelfTestResponse, error) {
723 log.Debugw("SelfTest-request", log.Fields{"id": id})
724 if isTestMode(ctx) {
725 resp := &voltha.SelfTestResponse{Result: voltha.SelfTestResponse_SUCCESS}
726 return resp, nil
727 }
728 return nil, errors.New("UnImplemented")
729}
Stephane Barbarie6e1bd502018-11-05 22:44:45 -0500730
731func (handler *APIHandler) forwardPacketOut(packet *openflow_13.PacketOut) {
732 log.Debugw("forwardPacketOut-request", log.Fields{"packet": packet})
khenaidoo3d3b8c22019-05-22 18:10:39 -0400733 //TODO: Update this logic once the OF Controller (OFAgent in this case) can include a transaction Id in its
734 // request. For performance reason we can let both Cores in a Core-Pair forward the Packet to the adapters and
735 // let once of the shim layer (kafka proxy or adapter request handler filters out the duplicate packet)
736 if handler.core.deviceOwnership.OwnedByMe(&utils.LogicalDeviceID{Id: packet.Id}) {
737 agent := handler.logicalDeviceMgr.getLogicalDeviceAgent(packet.Id)
738 agent.packetOut(packet.PacketOut)
739 }
Stephane Barbarie6e1bd502018-11-05 22:44:45 -0500740}
khenaidoo3d3b8c22019-05-22 18:10:39 -0400741
Stephane Barbarie6e1bd502018-11-05 22:44:45 -0500742func (handler *APIHandler) StreamPacketsOut(
743 packets voltha.VolthaService_StreamPacketsOutServer,
744) error {
745 log.Debugw("StreamPacketsOut-request", log.Fields{"packets": packets})
746 for {
747 packet, err := packets.Recv()
748
749 if err == io.EOF {
750 break
751 } else if err != nil {
752 log.Errorw("Failed to receive packet", log.Fields{"error": err})
753 }
754
755 handler.forwardPacketOut(packet)
756 }
757
758 log.Debugw("StreamPacketsOut-request-done", log.Fields{"packets": packets})
759 return nil
760}
761
khenaidoo297cd252019-02-07 22:10:23 -0500762func (handler *APIHandler) sendPacketIn(deviceId string, transationId string, packet *openflow_13.OfpPacketIn) {
763 // TODO: Augment the OF PacketIn to include the transactionId
Stephane Barbarie6e1bd502018-11-05 22:44:45 -0500764 packetIn := openflow_13.PacketIn{Id: deviceId, PacketIn: packet}
765 log.Debugw("sendPacketIn", log.Fields{"packetIn": packetIn})
Richard Jankowskidbab94a2018-12-06 16:20:25 -0500766 // Enqueue the packet
767 if err := handler.packetInQueue.Put(packetIn); err != nil {
768 log.Errorw("failed-to-enqueue-packet", log.Fields{"error": err})
769 }
Stephane Barbarie6e1bd502018-11-05 22:44:45 -0500770}
771
772func (handler *APIHandler) ReceivePacketsIn(
773 empty *empty.Empty,
774 packetsIn voltha.VolthaService_ReceivePacketsInServer,
775) error {
776 log.Debugw("ReceivePacketsIn-request", log.Fields{"packetsIn": packetsIn})
777
778 for {
Richard Jankowskidbab94a2018-12-06 16:20:25 -0500779 // Dequeue a packet
780 if packets, err := handler.packetInQueue.Get(1); err == nil {
781 log.Debugw("dequeued-packet", log.Fields{"packet": packets[0]})
782 if packet, ok := packets[0].(openflow_13.PacketIn); ok {
783 log.Debugw("sending-packet-in", log.Fields{"packet": packet})
784 if err := packetsIn.Send(&packet); err != nil {
785 log.Errorw("failed-to-send-packet", log.Fields{"error": err})
786 }
787 }
Stephane Barbarie6e1bd502018-11-05 22:44:45 -0500788 }
789 }
khenaidoof5a5bfa2019-01-23 22:20:29 -0500790 //TODO: FInd an elegant way to get out of the above loop when the Core is stopped
Stephane Barbarie6e1bd502018-11-05 22:44:45 -0500791}
792
793func (handler *APIHandler) sendChangeEvent(deviceId string, portStatus *openflow_13.OfpPortStatus) {
794 // TODO: validate the type of portStatus parameter
795 //if _, ok := portStatus.(*openflow_13.OfpPortStatus); ok {
796 //}
797 event := openflow_13.ChangeEvent{Id: deviceId, Event: &openflow_13.ChangeEvent_PortStatus{PortStatus: portStatus}}
798 log.Debugw("sendChangeEvent", log.Fields{"event": event})
Richard Jankowski199fd862019-03-18 14:49:51 -0400799 // Enqueue the change event
800 if err := handler.changeEventQueue.Put(event); err != nil {
801 log.Errorw("failed-to-enqueue-change-event", log.Fields{"error": err})
802 }
Stephane Barbarie6e1bd502018-11-05 22:44:45 -0500803}
804
805func (handler *APIHandler) ReceiveChangeEvents(
806 empty *empty.Empty,
807 changeEvents voltha.VolthaService_ReceiveChangeEventsServer,
808) error {
809 log.Debugw("ReceiveChangeEvents-request", log.Fields{"changeEvents": changeEvents})
810 for {
Richard Jankowski199fd862019-03-18 14:49:51 -0400811 // Dequeue a change event
812 if events, err := handler.changeEventQueue.Get(1); err == nil {
813 log.Debugw("dequeued-change-event", log.Fields{"event": events[0]})
814 if event, ok := events[0].(openflow_13.ChangeEvent); ok {
815 log.Debugw("sending-change-event", log.Fields{"event": event})
816 if err := changeEvents.Send(&event); err != nil {
817 log.Errorw("failed-to-send-change-event", log.Fields{"error": err})
818 }
819 }
Stephane Barbarie6e1bd502018-11-05 22:44:45 -0500820 }
821 }
Richard Jankowski199fd862019-03-18 14:49:51 -0400822}
Stephane Barbarie6e1bd502018-11-05 22:44:45 -0500823
824func (handler *APIHandler) Subscribe(
825 ctx context.Context,
826 ofAgent *voltha.OfAgentSubscriber,
827) (*voltha.OfAgentSubscriber, error) {
828 log.Debugw("Subscribe-request", log.Fields{"ofAgent": ofAgent})
829 return &voltha.OfAgentSubscriber{OfagentId: ofAgent.OfagentId, VolthaId: ofAgent.VolthaId}, nil
830}
William Kurkiandaa6bb22019-03-07 12:26:28 -0500831
832//@TODO useless stub, what should this actually do?
833func (handler *APIHandler) GetAlarmDeviceData(
834 ctx context.Context,
835 in *common.ID,
836) (*omci.AlarmDeviceData, error) {
837 log.Debug("GetAlarmDeviceData-stub")
838 return nil, nil
839}
840
841//@TODO useless stub, what should this actually do?
842func (handler *APIHandler) GetMeterStatsOfLogicalDevice(
khenaidoo2c6a0992019-04-29 13:46:56 -0400843 ctx context.Context,
William Kurkiandaa6bb22019-03-07 12:26:28 -0500844 in *common.ID,
845) (*openflow_13.MeterStatsReply, error) {
846 log.Debug("GetMeterStatsOfLogicalDevice-stub")
847 return nil, nil
848}
849
850//@TODO useless stub, what should this actually do?
851func (handler *APIHandler) GetMibDeviceData(
khenaidoo2c6a0992019-04-29 13:46:56 -0400852 ctx context.Context,
853 in *common.ID,
William Kurkiandaa6bb22019-03-07 12:26:28 -0500854) (*omci.MibDeviceData, error) {
855 log.Debug("GetMibDeviceData-stub")
856 return nil, nil
857}
858
William Kurkiandaa6bb22019-03-07 12:26:28 -0500859func (handler *APIHandler) SimulateAlarm(
860 ctx context.Context,
861 in *voltha.SimulateAlarmRequest,
862) (*common.OperationResp, error) {
serkant.uluderya334479d2019-04-10 08:26:15 -0700863 log.Debugw("SimulateAlarm-request", log.Fields{"id": in.Id})
864 successResp := &common.OperationResp{Code: common.OperationResp_OPERATION_SUCCESS}
865 if isTestMode(ctx) {
866 return successResp, nil
867 }
868
869 if handler.competeForTransaction() {
Kent Hagerman0ab4cb22019-04-24 13:13:35 -0400870 if txn, err := handler.takeRequestOwnership(ctx, &utils.DeviceID{Id: in.Id}, handler.longRunningRequestTimeout); err != nil {
871 failedresponse := &common.OperationResp{Code: voltha.OperationResp_OPERATION_FAILURE}
serkant.uluderya334479d2019-04-10 08:26:15 -0700872 return failedresponse, err
873 } else {
874 defer txn.Close()
875 }
876 }
877
878 ch := make(chan interface{})
879 defer close(ch)
880 go handler.deviceMgr.simulateAlarm(ctx, in, ch)
881 return successResp, nil
William Kurkiandaa6bb22019-03-07 12:26:28 -0500882}
883
884//@TODO useless stub, what should this actually do?
885func (handler *APIHandler) UpdateLogicalDeviceMeterTable(
886 ctx context.Context,
887 in *openflow_13.MeterModUpdate,
888) (*empty.Empty, error) {
889 log.Debug("UpdateLogicalDeviceMeterTable-stub")
890 return nil, nil
891}