-
Notifications
You must be signed in to change notification settings - Fork 0
/
rinaw.cc
397 lines (306 loc) · 8.89 KB
/
rinaw.cc
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
/* Wrap around IRATI C++ system libraries.
*
* Copyright (c) 2016 Kewin Rausch <[email protected]>
*
* 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.
*
* Contributors and changes:
*/
#include <stdlib.h>
#include <string>
#define RINA_PREFIX "nori"
#include <librina/logs.h>
#include <librina/librina.h>
//#include <asm/unistd_32.h>
#include <asm/unistd_64.h>
#include <pthread.h>
using namespace std;
using namespace rina;
extern "C"
{
/* Interrupt the listening loop when waiting for RINA subsystem events. */
static int rina_list_stop = 0;
/*
* Rina subsystem operations:
*/
int rina_init(void) {
/* Raise the log level to hide everything... */
setLogLevel("ERR");
return 0;
}
int rina_stop(void) {
/* This cause any running loop to be stopped. */
rina_list_stop = 1;
return 0;
}
/*
* I/O operations:
*/
#include "rinaw.h"
/* Read a SDU... */
int rina_read_sdu(rina_flow port, char * buffer, unsigned int size) {
try {
return ipcManager->readSDU(port, buffer, size);
} catch (FlowNotAllocatedException fnae) {
return -2;
} catch (Exception e) {
return -1;
}
}
/* Send a SDU somewhere... */
int rina_write_sdu(rina_flow port, char * buffer, unsigned int size) {
try {
return ipcManager->writeSDU(port, buffer, size);
} catch (FlowNotAllocatedException fnae) {
return -2;
} catch (Exception e) {
return -1;
}
}
/*
* Operations on the single flow:
*/
/* Swap the flow behavior to async. */
int rina_async_flow(rina_flow port) {
long int result = -1;
result = syscall(__NR_flow_io_ctl, port, F_GETFL);
result = syscall(__NR_flow_io_ctl, port, F_SETFL, result | O_NONBLOCK);
if(result < 0) {
printf("Error wile controlling flow on %d\n", port);
return result;
}
return 0;
}
/* Request a flow to a certain AE within a DIF. */
rina_flow rina_request_flow(
const char * srcn, /* Source info */
const char * srci,
const char * dstn, /* Destination info */
const char * dsti,
struct rina_qos * qos) { /* Qos to use. */
AllocateFlowRequestResultEvent * afrrevent;
FlowSpecification qos_spec;
IPCEvent * event;
string sn(srcn);
string si(srci);
string dn(dstn);
string di(dsti);
unsigned int seqnum;
/* Setup the qos to respect. */
qos_spec.averageBandwidth = qos->averageBandwidth;
qos_spec.averageSDUBandwidth = qos->averageSDUBandwidth;
qos_spec.delay = qos->delay;
qos_spec.jitter = qos->jitter;
qos_spec.maxAllowableGap = qos->maxAllowableGap;
qos_spec.maxSDUsize = qos->maxSDUsize;
qos_spec.orderedDelivery = qos->orderedDelivery;
qos_spec.partialDelivery = qos->partialDelivery;
qos_spec.peakBandwidthDuration = qos->peakBandwidthDuration;
qos_spec.peakSDUBandwidthDuration = qos->peakSDUBandwidthDuration;
qos_spec.undetectedBitErrorRate = qos->undetectedBitErrorRate;
seqnum = ipcManager->requestFlowAllocation(
ApplicationProcessNamingInformation(sn, si),
ApplicationProcessNamingInformation(dn, di),
qos_spec);
/* Again, wait for an event or user break. */
while(!rina_list_stop) {
event = ipcEventProducer->eventWait();
if (event && event->eventType ==
ALLOCATE_FLOW_REQUEST_RESULT_EVENT &&
event->sequenceNumber == seqnum) {
break;
}
}
afrrevent = dynamic_cast<AllocateFlowRequestResultEvent*>(event);
rina::FlowInformation flow =
ipcManager->commitPendingFlow(
afrrevent->sequenceNumber,
afrrevent->portId,
afrrevent->difName);
if (flow.portId < 0) {
return -1;
}
return flow.portId;
}
/* Release a previously registered flow. */
int rina_release_flow(rina_flow port) {
DeallocateFlowResponseEvent * resp = 0;
unsigned int seqNum;
IPCEvent * event;
seqNum = ipcManager->requestFlowDeallocation(port);
/* Again, wait for an event or user break. */
while(!rina_list_stop) {
event = ipcEventProducer->eventWait();
if (event && event->eventType ==
DEALLOCATE_FLOW_RESPONSE_EVENT &&
event->sequenceNumber == seqNum) {
break;
}
}
resp = dynamic_cast<DeallocateFlowResponseEvent*>(event);
ipcManager->flowDeallocationResult(port, resp->result == 0);
return 0;
}
/* Swap the flow behavior to sync. */
int rina_sync_flow(rina_flow port) {
long int result = -1;
result = syscall(__NR_flow_io_ctl, port, F_GETFL);
result = syscall(__NR_flow_io_ctl, port, F_SETFL, result & ~O_NONBLOCK);
if(result < 0) {
printf("Error wile controlling flow on %d\n", port);
return result;
}
return 0;
}
/*
* Operations at AE level:
*/
/* Creates an AE into RINA subsystems. */
int rina_create_AE(
const char * name, const char * instance, const char * difn) {
unsigned int seqnum = 0;
ApplicationRegistrationInformation ari;
RegisterApplicationResponseEvent * resp = 0;
IPCEvent * event = 0;
string ns(name);
string is(instance);
string dn(difn);
/* This is an AP, not an IPC process */
ari.ipcProcessId = 0;
ari.appName = ApplicationProcessNamingInformation(ns, is);
ari.applicationRegistrationType = APPLICATION_REGISTRATION_SINGLE_DIF;
ari.difName = ApplicationProcessNamingInformation(dn, string());
seqnum = ipcManager->requestApplicationRegistration(ari);
/* Again, wait for an event or user break. */
while(!rina_list_stop) {
event = ipcEventProducer->eventWait();
/* Event! */
if (event && event->eventType ==
REGISTER_APPLICATION_RESPONSE_EVENT &&
event->sequenceNumber == seqnum) {
break;
}
}
resp = dynamic_cast<RegisterApplicationResponseEvent*>(event);
/* Maintain aligned the ipcm. */
if (resp->result == 0) {
ipcManager->commitPendingRegistration(seqnum, resp->DIFName);
} else {
ipcManager->withdrawPendingRegistration(seqnum);
return -1;
}
return 0;
}
/* Releases an AE from the RINA subsystems. */
int rina_release_AE(
const char * name, const char * instance, const char * difn) {
unsigned int seqnum = 0;
UnregisterApplicationResponseEvent * resp = 0;
IPCEvent * event = 0;
string ns(name);
string is(instance);
string dn(difn);
seqnum = ipcManager->requestApplicationUnregistration(
ApplicationProcessNamingInformation(ns, is),
ApplicationProcessNamingInformation(dn, string()));
/* Again, wait for an event or user break. */
while(!rina_list_stop) {
event = ipcEventProducer->eventWait();
if (event &&
event->eventType ==
UNREGISTER_APPLICATION_RESPONSE_EVENT &&
event->sequenceNumber == seqnum) {
break;
}
}
resp = dynamic_cast<UnregisterApplicationResponseEvent*>(event);
if (resp->result != 0) {
ipcManager->appUnregistrationResult(seqnum, true);
} else {
ipcManager->appUnregistrationResult(seqnum, false);
return -1;
}
return 0;
}
/*
* Main procedure which reacts to RINA events.
*/
int rina_listen_for_events(
void * (* flow_serve)(void * args),
void (* flow_release)(int port),
int async) {
pthread_t t = 0;
struct rina_AP_info * ai;
do {
/* Wait no more than half microsecond...*/
IPCEvent * event = ipcEventProducer->eventTimedWait(0, 500000);
int port_id = 0;
if (!event) {
continue;
}
switch (event->eventType) {
/* AE creation event. */
case REGISTER_APPLICATION_RESPONSE_EVENT:
ipcManager->commitPendingRegistration(
event->sequenceNumber,
dynamic_cast<RegisterApplicationResponseEvent*>(
event)->DIFName);
break;
/* AE release event. */
case UNREGISTER_APPLICATION_RESPONSE_EVENT:
ipcManager->appUnregistrationResult(
event->sequenceNumber,
dynamic_cast<UnregisterApplicationResponseEvent*>(
event)->result == 0);
break;
/* A signal inform that a flow creation event occurs. */
case FLOW_ALLOCATION_REQUESTED_EVENT: {
rina::FlowInformation flow =
ipcManager->allocateFlowResponse(
*dynamic_cast<FlowRequestEvent*>(
event), 0, true);
ai = (struct rina_AP_info *)malloc(
sizeof(struct rina_AP_info));
if(!ai) {
printf("No more memory!");
flow_release(flow.portId);
break;
}
/* Populate information about this flow. */
memcpy(ai->name,
flow.remoteAppName.toString().c_str(),
strlen(flow.remoteAppName.toString().c_str()));
ai->port = flow.portId;
/* Create the thread which will take care of it. */
if(pthread_create(&t, NULL, flow_serve, ai)) {
printf("Pthread failure");
free(ai);
break;
}
break;
}
/* A signal inform that a flow has been de-allocated. */
case FLOW_DEALLOCATED_EVENT:
port_id = dynamic_cast<FlowDeallocatedEvent*>(
event)->portId;
flow_release(port_id);
ipcManager->flowDeallocated(port_id);
break;
default:
break;
}
/* Loop only if you have not to stop or to wait. */
} while(!rina_list_stop && !async);
return 0;
}
} /* extern "C" */