forked from amarchandole/ndn-wifidirect-linux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdaemon.cpp
552 lines (458 loc) · 16.1 KB
/
daemon.cpp
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
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
/**
*
* 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.
*/
#define SCAN_FIB_INTERVAL 15
#include <ndn-cxx/face.hpp>
#include <ndn-cxx/interest.hpp>
#include <ndn-cxx/data.hpp>
#include <ndn-cxx/security/key-chain.hpp>
#include <ndn-cxx/lp/tags.hpp>
#include <ndn-cxx/name.hpp>
#include <ndn-cxx/util/scheduler.hpp>
#include <ndn-cxx/mgmt/nfd/fib-entry.hpp>
#include <ndn-cxx/mgmt/nfd/rib-entry.hpp>
#include <ndn-cxx/mgmt/nfd/controller.hpp>
#include <ndn-cxx/mgmt/nfd/status-dataset.hpp>
#include <boost/thread.hpp>
#include <unistd.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <linux/if.h>
#include <netdb.h>
#include <iostream>
#include <string>
#include <cstring>
#include <cstdio>
#include <fstream>
class Daemon
{
public:
Daemon(ndn::Face& face, std::string ownIP, std::string otherIP, uint64_t go, std::string interfaceName)
: m_face(face)
, m_controller(m_face, m_keyChain)
, m_baseName("/localhop/wifidirect")
, m_scheduler(m_face.getIoService())
, m_ownIP(std::move(ownIP))
, m_otherIP(std::move(otherIP))
, m_go(go)
, m_counter(0)
{
this->printRole(m_go);
m_controller.fetch<ndn::nfd::FaceDataset>(std::bind(&Daemon::onFaceStatusReceived, this, _1, interfaceName),
std::bind(&Daemon::onStatusTimeout, this));
}
void
onEnableLocalFieldsSuccess()
{
}
void
onEnableLocalFieldsError(const ndn::nfd::ControlResponse& response)
{
std::cerr << "> Couldn't enable local fields (code: " +
std::to_string(response.getCode()) + ", info: " + response.getText() +
")" << std::endl;
}
void
printRole(int go) {
if(go==0) {
std::cerr << "\nROLE: Group Owner" << std::endl;
}
else {
std::cerr << "\nROLE: Non Group Owner" << std::endl;
}
}
void
registerPrefix(std::string IP)
{
std::stringstream ss;
ss << m_baseName << "/" << IP;
std::string prefix = ss.str();
std::cerr << "\n======================================================================================================================" << std::endl;
std::cerr << "> Registering "<< prefix <<" as prefix (to receive packets meant for this node)." << std::endl;
m_face.setInterestFilter(prefix,
std::bind(&Daemon::onInterest, this, _2),
std::bind([] {
//std::cerr << "Prefix registered: " << std::endl;
}),
[] (const ndn::Name& prefix, const std::string& reason) {
std::cerr << "> Failed to register prefix: " << reason << std::endl;
});
}
//not being used, just ready to be used.
void
addFace()
{
ndn::nfd::ControlParameters params;
params.setUri("udp4://111.222.33.44:6363");
m_controller.start<ndn::nfd::FaceCreateCommand>(
params, [this] (const ndn::nfd::ControlParameters& result)
{
std::cerr << "Successfully created a face" << std::endl;
},[&] (const ndn::nfd::ControlResponse& resp)
{
std::cerr << "FAILURE: " << resp.getText() << std::endl;
});
}
//uses prefix to register and the face ID
void
addRoute(std::string prefix, uint64_t faceId)
{
ndn::nfd::ControlParameters params;
params.setName(prefix);
//set the FaceID of the face created towards the WiFi direct interface
if(faceId != (uint64_t)-1) {
std::cerr << "> Registering " << prefix << " with nexthop FaceID " << faceId << " to FIB." << std::endl;
params.setFaceId(faceId);
}
params.setExpirationPeriod(ndn::time::seconds(100));
ndn::nfd::CommandOptions options;
//options.setPrefix("");
m_controller.start<ndn::nfd::RibRegisterCommand>
(params, [&] (const ndn::nfd::ControlParameters&)
{
//std::cerr << "Successfully created a route" << std::endl;
},[&] (const ndn::nfd::ControlResponse& resp)
{
std::cerr << "> FAILURE: " << resp.getText() << std::endl;
});
}
void
onStatusRetrieved(const ndn::nfd::ForwarderStatus& status)
{
m_controller.fetch<ndn::nfd::FibDataset>(std::bind(&Daemon::onFibStatusRetrieved, this, _1),
std::bind(&Daemon::onStatusTimeout, this));
//m_scheduler.scheduleEvent(ndn::time::seconds(SCAN_FIB_INTERVAL), std::bind(&Daemon::requestNfdStatus, this));
}
void
onFaceStatusReceived(const std::vector<ndn::nfd::FaceStatus>& status, std::string interfaceName)
{
int localFaceID = -1;
for (auto const& faceEntry : status) {
std::size_t found = faceEntry.getLocalUri().compare("dev://"+interfaceName);
if(found == 0) {
localFaceID = faceEntry.getFaceId();
break;
}
}
if(localFaceID == -1) {
std::cerr << "> Error: You entered incorrect interface name: " << interfaceName << std::endl;
return;
}
// Register own IP as a prefix as soon as daemon starts running, so that you can receive the data sent to you.
this->registerPrefix(m_ownIP);
// Add route to other node's IP as soon as daemon starts running (assume that connection is done at this stage.
// This allows you to send data to this node, if any application has data for this name.
std::string remoteHostIP = "/localhop/wifidirect/"+m_otherIP;
std::cerr << "> Adding route " << remoteHostIP << " to enable sending data to the other node." << std::endl;
this->addRoute(remoteHostIP, localFaceID);
m_controller.fetch<ndn::nfd::ForwarderGeneralStatusDataset>(std::bind(&Daemon::onStatusRetrieved, this, _1),
std::bind(&Daemon::onStatusTimeout, this));
m_controller.start<ndn::nfd::FaceUpdateCommand>(
ndn::nfd::ControlParameters()
.setFlagBit(ndn::nfd::BIT_LOCAL_FIELDS_ENABLED, true),
std::bind(&Daemon::onEnableLocalFieldsSuccess, this),
std::bind(&Daemon::onEnableLocalFieldsError, this, _1));
//if(m_go == 0)
m_scheduler.scheduleEvent(ndn::time::seconds(SCAN_FIB_INTERVAL), std::bind(&Daemon::sendProbe, this));
// std::cerr << "\n===========================================================" << std::endl;
// std::cerr << "\n\nAdding face:" << std::endl;
// this->addFace();
}
void
onFibStatusRetrieved(const std::vector<ndn::nfd::FibEntry>& status)
{
std::cerr << "\n> Current FIB entries: " << std::endl;
for (auto const& fibEntry : status) {
std::cerr << fibEntry.getPrefix() << std::endl;
}
}
void
onProbeRIB(const std::vector<ndn::nfd::RibEntry>& status, const ndn::Name& interestName, uint64_t incomingFaceId)
{
std::vector<std::string> prefixesToReturn;
std::string prefixesToReturnStr = "";
std::string local1 = "/localhost";
std::string local2 = "/localhop/wifidirect";
for (auto const& ribEntry : status) {
if(ribEntry.getRoutes()[0].getFaceId() != incomingFaceId) {
std::stringstream sstream;
sstream << ribEntry.getName();
std::string s = sstream.str();
if (!(s.compare(0, local1.length(), local1) == 0) && !(s.compare(0, local2.length(), local2) == 0)) {
prefixesToReturn.push_back(s);
}
}
}
for ( auto &i : prefixesToReturn )
{
prefixesToReturnStr += i;
prefixesToReturnStr += "\n";
}
// create data packet with the same name as interest
std::shared_ptr<ndn::Data> data = std::make_shared<ndn::Data>(interestName);
// prepare and assign content of the data packet
std::ostringstream os;
os << prefixesToReturnStr << std::endl;
std::string content = os.str();
//std::cerr << "\nInterest packet now looks like: " << content << std::endl;
data->setContent(reinterpret_cast<const uint8_t*>(content.c_str()), content.size());
// set metainfo parameters
data->setFreshnessPeriod(ndn::time::seconds(10));
// sign data packet
m_keyChain.sign(*data);
// make data packet available for fetching
m_face.put(*data);
}
void
onStatusTimeout()
{
std::cerr << "\nonStatusTimeout called" << std::endl;
std::cerr << "Should not really happen, most likely a serious problem" << std::endl;
m_scheduler.scheduleEvent(ndn::time::seconds(SCAN_FIB_INTERVAL), std::bind(&Daemon::requestNfdStatus, this));
}
private:
void
requestNfdStatus()
{
//std::cerr << "\nrequestNfdStatus called" << std::endl;
m_controller.fetch<ndn::nfd::ForwarderGeneralStatusDataset>(std::bind(&Daemon::onStatusRetrieved, this, _1),
std::bind(&Daemon::onStatusTimeout, this));
}
void
sendProbe()
{
// if GO: probe all the clients connected
// else : probe only the group owner
// /?MustBeFresh=True
std::stringstream ss;
ss << m_baseName << "/" << m_otherIP << "/" << m_ownIP << "/probe" << m_counter;
std::string probeFormat = ss.str();
m_counter++;
ndn::Name nextName = ndn::Name(probeFormat);
std::cerr << "\n> Sending probe interest: " << probeFormat << std::endl;
m_face.expressInterest(ndn::Interest(nextName).setMustBeFresh(true),
std::bind(&Daemon::onData, this, _2),
std::bind([] { std::cerr << "Unexpected Nack"; }),
std::bind(&Daemon::onTimeout, this, _1));
//if(m_go == 0)
m_scheduler.scheduleEvent(ndn::time::seconds(SCAN_FIB_INTERVAL), std::bind(&Daemon::sendProbe, this));
}
void
onInterest(const ndn::Interest& interest)
{
std::cerr << "\n======================================================================================================================" << std::endl;
std::cerr << "\n< Interest received: " << interest << std::endl;
const ndn::Name& name = interest.getName();
auto incomingFaceIdTag = interest.getTag<ndn::lp::IncomingFaceIdTag>();
if(incomingFaceIdTag != NULL)
m_controller.fetch<ndn::nfd::RibDataset>(std::bind(&Daemon::onProbeRIB, this, _1, name, *incomingFaceIdTag),
std::bind(&Daemon::onStatusTimeout, this));
}
void
onData(const ndn::Data& data)
{
//std:: string dataReceived;
//dataReceived = reinterpret_cast<const char*>(data.getContent().value());
//reinterpret_cast<const char*>(data.getContent().value()), data.getContent().value_size()
const ndn::Block& content = data.getContent();
std::istringstream newPrefixesFromNeighbor(ndn::encoding::readString (content));
std::string line;
auto incomingFaceIdTag = data.getTag<ndn::lp::IncomingFaceIdTag>();
std::cerr << "\n< Received data start:" << std::endl;
while (std::getline(newPrefixesFromNeighbor, line)) {
std::cout << line << std::endl;
if(line[0]=='/')
addRoute(line, *incomingFaceIdTag);
}
std::cerr << "< Received data end." << std::endl;
m_controller.fetch<ndn::nfd::ForwarderGeneralStatusDataset>(std::bind(&Daemon::onStatusRetrieved, this, _1),
std::bind(&Daemon::onStatusTimeout, this));
}
void
onTimeout(const ndn::Interest& interest)
{
// re-express interest
std::cerr << "< Timeout for " << interest << std::endl;
m_face.expressInterest(interest,
std::bind(&Daemon::onData, this, _2),
std::bind([] { std::cerr << "Unexpected Nack"; }),
std::bind(&Daemon::onTimeout, this, _1));
}
private:
ndn::Face& m_face;
ndn::KeyChain m_keyChain;
ndn::nfd::Controller m_controller;
ndn::Name m_baseName;
ndn::Scheduler m_scheduler;
std::string m_ownIP;
std::string m_otherIP;
uint64_t m_go;
uint64_t m_counter;
};
/*************************************************** UTIL FUNCTIONS ***************************************************/
std::string
getMAC(std::string name)
{
const char * ifname = name.c_str();
struct ifreq s;
//char c[2];
char c[2];
std::string mac = "";
int fd = socket(PF_INET, SOCK_DGRAM, IPPROTO_IP);
strcpy(s.ifr_name, ifname);
if (0 == ioctl(fd, SIOCGIFHWADDR, &s)) {
int i;
for (i = 0; i < 6; ++i) {
std::sprintf(c, "%02x", (unsigned char) s.ifr_addr.sa_data[i]);
mac = mac + c;
mac = mac + ":";
}
mac[17]='\0';
return mac;
}
}
static char transform(char c) {
if(c == '0')
return '2';
if(c == '1')
return '3';
if(c == '2')
return '0';
if(c == '3')
return '1';
if(c == '4')
return '6';
if(c == '5')
return '7';
if(c == '6')
return '4';
if(c == '7')
return '5';
if(c == '8')
return 'a';
if(c == '9')
return 'b';
if(c == 'a')
return '8';
if(c == 'b')
return '9';
if(c == 'c')
return 'e';
if(c == 'd')
return 'f';
if(c == 'e')
return 'c';
if(c == 'f')
return 'd';
return '-';
}
static std::string mac_to_ipv6(const char *mac, std::string ipv6)
{
//ipv6 = (char*)malloc(26);
ipv6 += "fe80::";
ipv6 += mac[0];
ipv6 += transform(mac[1]);
ipv6 += mac[3];
ipv6 += mac[4];
ipv6 += ":";
ipv6 += mac[6];
ipv6 += mac[7];
ipv6 += "ff:fe";
ipv6 += mac[9];
ipv6 += mac[10];
ipv6 += ":";
ipv6 += mac[12];
ipv6 += mac[13];
ipv6 += mac[15];
ipv6 += mac[16];
std::cout<<"IPv6 Address: \n"<<ipv6<<std::endl;
return ipv6;
}
std::string
getOwnIP(std::string interfaceName)
{
std::string mac = getMAC(interfaceName);
const char * MAC = mac.c_str();
std::cout<<"MAC is: "<<mac<<std::endl;
//char *ipv6 = NULL;
std::string ownIP = "";
ownIP = mac_to_ipv6(MAC, ownIP);
//char *IP = "fe80::76da:38ff:fe8d:89ab";
//std::string IP = "fe80::76da:38ff:fe8f:5319";
return ownIP;
}
std::string
getOtherIP()
{
std::ifstream fp ("/tmp/ndntemp");
std::string mac;
if (fp.is_open())
{
getline(fp, mac);
//std::cout << "Line: "<<line<<std::endl;
fp.close();
}
else
std::cout << "Unable to open file";
std::string otherIP = "";
otherIP = mac_to_ipv6(mac.c_str(), otherIP);
//char *IP = "fe80::76da:38ff:fe8d:89ab";
//std::string IP = "fe80::76da:38ff:fe8d:89ab";
return otherIP;
}
int connectDevices() {
int go;
while(true) {
std::cerr << "> Do you wish to connect as a Group Owner (0) or a Non Group Owner (1)?" << std::endl;
std::cin >> go;
if(go!=0 && go!=1) {
std::cerr << "> Incorrect option selected. Reselect!" << std::endl;
} else {
break;
}
}
//path to the wpa_cli executable on the system
system("wpa_supplicant-2.6/wpa_cli");
return go;
}
/*************************************************** MAIN ***************************************************/
int
main(int argc, char** argv)
{
std::string interfaceName;
std::cerr << "\n========================== NDN over WiFi Direct Protocol ==========================\n" << std::endl;
std::cerr << "> Enter wireless interface name you wish to use (should support WiFi Direct): " << std::endl;
std::cin >> interfaceName;
try {
//go is 1 if this device is a Group Owner
int go = connectDevices();
std::string ownIP = getOwnIP(interfaceName);
std::string otherIP = getOtherIP();
ndn::Face face;
if(go==1) {
std::string temp = ownIP;
ownIP = otherIP;
otherIP = temp;
}
// create daemon instance
Daemon daemon(face, ownIP, otherIP, go, interfaceName);
// start processing loop (it will block forever)
face.processEvents();
}
catch (const std::exception& e) {
std::cerr << "\n> ERROR: " << e.what() << std::endl;
}
return 0;
}