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
|
// 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.
package core
//go:generate binapi_generator --input-file=/usr/share/vpp/api/vpe.api.json --output-dir=./bin_api
import (
"errors"
"fmt"
"os"
"sync"
"sync/atomic"
logger "github.com/Sirupsen/logrus"
"gerrit.fd.io/r/govpp.git/adapter"
"gerrit.fd.io/r/govpp.git/api"
"gerrit.fd.io/r/govpp.git/core/bin_api/vpe"
)
const (
requestChannelBufSize = 100 // default size of the request channel buffers
replyChannelBufSize = 100 // default size of the reply channel buffers
)
// Connection represents a shared memory connection to VPP via vppAdapter.
type Connection struct {
vpp adapter.VppAdapter // VPP adapter
codec *MsgCodec // message codec
msgIDs map[string]uint16 // map os message IDs indexed by message name + CRC
msgIDsLock sync.RWMutex // lock for the message IDs map
channels map[uint32]*api.Channel // map of all API channels indexed by the channel ID
channelsLock sync.RWMutex // lock for the channels map
notifSubscriptions map[uint16][]*api.NotifSubscription // map od all notification subscriptions indexed by message ID
notifSubscriptionsLock sync.RWMutex // lock for the subscriptions map
maxChannelID uint32 // maximum used client ID
pingReqID uint16 // ID if the ControlPing message
pingReplyID uint16 // ID of the ControlPingReply message
}
// channelMetadata contains core-local metadata of an API channel.
type channelMetadata struct {
id uint32 // channel ID
multipart uint32 // 1 if multipart request is being processed, 0 otherwise
}
var (
log *logger.Logger // global logger
conn *Connection // global handle to the Connection (used in the message receive callback)
connLock sync.RWMutex // lock for the global connection
)
// init initializes global logger, which logs debug level messages to stdout.
func init() {
log = logger.New()
log.Out = os.Stdout
log.Level = logger.DebugLevel
}
// SetLogger sets global logger to provided one.
func SetLogger(l *logger.Logger) {
log = l
}
// Connect connects to VPP using specified VPP adapter and returns the connection handle.
func Connect(vppAdapter adapter.VppAdapter) (*Connection, error) {
connLock.Lock()
defer connLock.Unlock()
if conn != nil {
return nil, errors.New("only one connection per process is supported")
}
conn = &Connection{vpp: vppAdapter, codec: &MsgCodec{}}
conn.channels = make(map[uint32]*api.Channel)
conn.msgIDs = make(map[string]uint16)
conn.notifSubscriptions = make(map[uint16][]*api.NotifSubscription)
conn.vpp.SetMsgCallback(msgCallback)
logger.Debug("Connecting to VPP...")
err := conn.vpp.Connect()
if err != nil {
return nil, err
}
// store control ping IDs
conn.pingReqID, _ = conn.GetMessageID(&vpe.ControlPing{})
conn.pingReplyID, _ = conn.GetMessageID(&vpe.ControlPingReply{})
logger.Debug("VPP connected.")
return conn, nil
}
// Disconnect disconnects from VPP.
func (c *Connection) Disconnect() {
connLock.Lock()
defer connLock.Unlock()
if c != nil && c.vpp != nil {
c.vpp.Disconnect()
}
conn = nil
}
// NewAPIChannel returns a new API channel for communication with VPP via govpp core.
// It uses default buffer sizes for the request and reply Go channels.
func (c *Connection) NewAPIChannel() (*api.Channel, error) {
return c.NewAPIChannelBuffered(requestChannelBufSize, replyChannelBufSize)
}
// NewAPIChannelBuffered returns a new API channel for communication with VPP via govpp core.
// It allows to specify custom buffer sizes for the request and reply Go channels.
func (c *Connection) NewAPIChannelBuffered(reqChanBufSize, replyChanBufSize int) (*api.Channel, error) {
chID := atomic.AddUint32(&c.maxChannelID, 1)
chMeta := &channelMetadata{id: chID}
ch := api.NewChannelInternal(chMeta)
ch.MsgDecoder = c.codec
ch.MsgIdentifier = c
// create the communication channels
ch.ReqChan = make(chan *api.VppRequest, reqChanBufSize)
ch.ReplyChan = make(chan *api.VppReply, replyChanBufSize)
ch.NotifSubsChan = make(chan *api.NotifSubscribeRequest, reqChanBufSize)
ch.NotifSubsReplyChan = make(chan error, replyChanBufSize)
// store API channel within the client
c.channelsLock.Lock()
c.channels[chID] = ch
c.channelsLock.Unlock()
// start watching on the request channel
go c.watchRequests(ch, chMeta)
return ch, nil
}
// watchRequests watches for requests on the request API channel and forwards them as messages to VPP.
func (c *Connection) watchRequests(ch *api.Channel, chMeta *channelMetadata) {
for {
select {
case req, ok := <-ch.ReqChan:
// new request on the request channel
if !ok {
// after closing the request channel, release API channel and return
c.releaseAPIChannel(ch, chMeta)
return
}
c.processRequest(ch, chMeta, req)
case req := <-ch.NotifSubsChan:
// new request on the notification subscribe channel
c.processNotifSubscribeRequest(ch, req)
}
}
}
// processRequest processes a single request received on the request channel.
func (c *Connection) processRequest(ch *api.Channel, chMeta *channelMetadata, req *api.VppRequest) error {
// retrieve message ID
msgID, err := c.GetMessageID(req.Message)
if err != nil {
error := fmt.Errorf("unable to retrieve message ID: %v", err)
log.WithFields(logger.Fields{
"msg_name": req.Message.GetMessageName(),
"msg_crc": req.Message.GetCrcString(),
}).Errorf("unable to retrieve message ID: %v", err)
sendReply(ch, &api.VppReply{Error: error})
return error
}
// encode the message into binary
data, err := c.codec.EncodeMsg(req.Message, msgID)
if err != nil {
error := fmt.Errorf("unable to encode the messge: %v", err)
log.WithFields(logger.Fields{
"context": chMeta.id,
"msg_id": msgID,
}).Errorf("%v", error)
sendReply(ch, &api.VppReply{Error: error})
return error
}
// send the message
log.WithFields(logger.Fields{
"context": chMeta.id,
"msg_id": msgID,
"msg_size": len(data),
}).Debug("Sending a message to VPP.")
c.vpp.SendMsg(chMeta.id, data)
if req.Multipart {
// multipart request
atomic.StoreUint32(&chMeta.multipart, 1)
// send a control ping
ping := &vpe.ControlPing{}
pingData, _ := c.codec.EncodeMsg(ping, c.pingReqID)
log.WithFields(logger.Fields{
"context": chMeta.id,
"msg_id": c.pingReqID,
"msg_size": len(pingData),
}).Debug("Sending a control ping to VPP.")
c.vpp.SendMsg(chMeta.id, pingData)
}
return nil
}
// releaseAPIChannel releases API channel that needs to be closed.
func (c *Connection) releaseAPIChannel(ch *api.Channel, chMeta *channelMetadata) {
log.WithFields(logger.Fields{
"context": chMeta.id,
}).Debug("API channel closed.")
// delete the channel from channels map
c.channelsLock.Lock()
delete(c.channels, chMeta.id)
c.channelsLock.Unlock()
}
// msgCallback is called whenever any binary API message comes from VPP.
func msgCallback(context uint32, msgID uint16, data []byte) {
connLock.RLock()
defer connLock.RUnlock()
if conn == nil {
log.Warn("Already disconnected, ignoring the message.")
return
}
log.WithFields(logger.Fields{
"context": context,
"msg_id": msgID,
"msg_size": len(data),
}).Debug("Received a message from VPP.")
if context == 0 || conn.isNotificationMessage(msgID) {
// process the message as a notification
conn.sendNotifications(msgID, data)
return
}
// match ch according to the context
conn.channelsLock.RLock()
ch, ok := conn.channels[context]
conn.channelsLock.RUnlock()
if !ok {
log.WithFields(logger.Fields{
"context": context,
"msg_id": msgID,
}).Error("Context ID not known, ignoring the message.")
return
}
chMeta := ch.Metadata().(*channelMetadata)
lastReplyReceived := false
// if this is a control ping reply and multipart request is being processed, treat this as a last part of the reply
if msgID == conn.pingReplyID && atomic.CompareAndSwapUint32(&chMeta.multipart, 1, 0) {
lastReplyReceived = true
}
// send the data to the channel
sendReply(ch, &api.VppReply{
MessageID: msgID,
Data: data,
LastReplyReceived: lastReplyReceived,
})
}
// sendReply sends the reply into the go channel, if it cannot be completed without blocking, otherwise
// it logs the error and do not send the message.
func sendReply(ch *api.Channel, reply *api.VppReply) {
select {
case ch.ReplyChan <- reply:
// reply sent successfully
default:
// unable to write into the channel without blocking
log.WithFields(logger.Fields{
"channel": ch,
"msg_id": reply.MessageID,
}).Warn("Unable to send the reply, reciever end not ready.")
}
}
// GetMessageID returns message identifier of given API message.
func (c *Connection) GetMessageID(msg api.Message) (uint16, error) {
return c.messageNameToID(msg.GetMessageName(), msg.GetCrcString())
}
// messageNameToID returns message ID of a message identified by its name and CRC.
func (c *Connection) messageNameToID(msgName string, msgCrc string) (uint16, error) {
// try to get the ID from the map
c.msgIDsLock.RLock()
id, ok := c.msgIDs[msgName+msgCrc]
c.msgIDsLock.RUnlock()
if ok {
return id, nil
}
// get the ID using VPP API
id, err := c.vpp.GetMsgID(msgName, msgCrc)
if err != nil {
error := fmt.Errorf("unable to retrieve message ID: %v", err)
log.WithFields(logger.Fields{
"msg_name": msgName,
"msg_crc": msgCrc,
}).Errorf("unable to retrieve message ID: %v", err)
return id, error
}
c.msgIDsLock.Lock()
c.msgIDs[msgName+msgCrc] = id
c.msgIDsLock.Unlock()
return id, nil
}
|