-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsimple-service.cpp
889 lines (748 loc) · 31.4 KB
/
simple-service.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
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
// GDBus++ - glib2 GDBus C++ wrapper
//
// SPDX-License-Identifier: AGPL-3.0-only
//
// Copyright (C) OpenVPN Inc <[email protected]>
// Copyright (C) David Sommerseth <[email protected]>
//
/**
* @file simple-service.cpp
*
* @brief A testing D-Bus service using the base functionality of the
* GDBus++ API. This is required for the test suite run via
* the Meson build system.
*
*/
#include <cstring>
#include <iostream>
#include <limits>
#include <errno.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <glib.h>
#include "../gdbuspp/mainloop.hpp"
#include "../gdbuspp/service.hpp"
#include "test-constants.hpp"
using namespace Test;
/**
* Very simple implementation of a simple logging mechanism.
*
* This object can be passed to other D-Bus related objects to send
* D-Bus signal events with some log information when called.
*
* This class and the DBus::Signals::Group class is designed to be
* shared across more users, through the ::Ptr (shared_ptr) to it.
*/
class SimpleLog : public DBus::Signals::Group
{
public:
using Ptr = std::shared_ptr<SimpleLog>;
SimpleLog(DBus::Connection::Ptr conn)
: DBus::Signals::Group(conn,
Constants::GenPath("simple1"),
Constants::GenInterface("simple1"))
{
RegisterSignal("Log", {{"method", "s"}, {"message", "s"}});
}
void Log(const std::string &info, const std::string &details)
{
try
{
GVariant *p = g_variant_new("(ss)", info.c_str(), details.c_str());
SendGVariant("Log", p);
}
catch (const DBus::Signals::Exception &excp)
{
std::cerr << "EXCEPTION :: SimpleLog: " << excp.what() << std::endl;
}
}
};
/**
* A simple object created on-the-fly via the CreateSimpleObject D-Bus
* method in the gdbuspp.test.simple1 interface in the object path
* /gdbuspp/tests/simple1/methods
*
* These objects are just used to test creating and destroying child objects
* dynamically and to ensure there are no memory leaks or crashes happening
* related to object management.
*
* Path: (set via constructor argument)
* Interface: gdbuspp.test.simple1.child
*/
class SimpleObject : public DBus::Object::Base
{
public:
SimpleObject(DBus::Object::Manager::Ptr obj_mgr,
const DBus::Object::Path &path,
const std::string &name)
: DBus::Object::Base(path, Constants::GenInterface("simple1.child")),
object_manager(obj_mgr), my_path(path), my_name(name)
{
AddProperty("my_path", my_path, false);
auto getmyname_args = AddMethod("GetMyName",
[this](DBus::Object::Method::Arguments::Ptr args)
{
GVariant *ret = g_variant_new("(s)",
this->my_name.c_str());
args->SetMethodReturn(ret);
});
getmyname_args->AddOutput("name", "s");
AddMethod("RemoveMe",
[this](DBus::Object::Method::Arguments::Ptr args)
{
std::cout << "---- REMOVING MYSELF: " << this->GetPath() << std::endl;
this->object_manager->RemoveObject(this->GetPath());
args->SetMethodReturn(nullptr);
});
}
virtual ~SimpleObject() noexcept
{
std::cout << "---- ~SimpleObject() ... path: " << my_path << std::endl;
};
const bool Authorize(const DBus::Authz::Request::Ptr req) override
{
return true;
}
private:
DBus::Object::Manager::Ptr object_manager = nullptr;
DBus::Object::Path my_path;
const std::string my_name;
};
/**
* Separate object to test various property interfaces in
* DBus::Object::Property
*
* Path: /gdbuspp/tests/properties
* Interface: gdbuspp.test.simple1
*/
class PropertyTests : public DBus::Object::Base
{
public:
PropertyTests(SimpleLog::Ptr log_)
: DBus::Object::Base(Constants::GenPath("simple1/properties"),
Constants::GenInterface("simple1")),
log(log_)
{
DisableIdleDetector(true);
RegisterSignals(log);
// Test simple data type based properties. These D-Bus object properties
// are tied to a local member variable of this class and will be updated
// and read as a D-Bus caller reads or writes to these properties
AddProperty("string_val", string_val, true);
AddProperty("string_array", string_array, true);
AddProperty("uint_val", uint_val, true);
AddProperty("int_val", int_val, true);
AddProperty("uint_array", uint_array, true);
AddProperty("int_array", int_array, true);
AddProperty("long_val", long_val, true);
AddProperty("ulonglong_val", ulonglong_val, true);
AddProperty("bool_val", bool_val, true);
// These two lambda functions wraps the call to methods in this
// object to read and update a more complex property data type.
//
// In this implementation this is done through a classic struct
// approach, but it is up to the Get/Set methods to build up and
// extract the values as appropriate. It does not need to be a
// struct by itself
auto complex_get = [this](const DBus::Object::Property::BySpec &prop)
{
return this->GetComplexProperty(prop);
};
auto complex_set = [this](const DBus::Object::Property::BySpec &prop, GVariant *v)
{
return this->SetComplexProperty(prop, v);
};
AddPropertyBySpec("complex", "(bis)", complex_get, complex_set);
AddPropertyBySpec("complex_readonly", "(bis)", complex_get);
AddPropertyBySpec("dictionary",
"a{sv}",
[this](const DBus::Object::Property::BySpec &prop)
{
return this->GetDictionary(prop);
});
Log(__func__, "Initialized");
}
~PropertyTests() noexcept
{
Log(__func__, "Removed PropertyTests");
std::cout << __func__ << " -- ~PropertyTests() called" << std::endl;
}
const bool Authorize(const DBus::Authz::Request::Ptr request) override
{
std::ostringstream ar;
ar << request;
Log(__func__, "Authorization request approved: " + ar.str());
return true;
}
private:
SimpleLog::Ptr log = nullptr;
// Property variables -- Property::SingleType
std::string string_val = "Initial string";
std::vector<std::string> string_array = {"line 1", "line 2", "line 3"};
uint32_t uint_val = 123;
int32_t int_val = -345;
std::vector<uint32_t> uint_array = {0, 15, 16, 31, 32, 65534, 65535};
std::vector<int> int_array = {-10, 3, 16, 9388};
long long_val = std::numeric_limits<long>::max();
unsigned long int ulonglong_val = std::numeric_limits<unsigned long int>::max();
bool bool_val = true;
// Property variables -- Property::BySpec (complex type)
struct complex_t
{
bool boolval;
int intval;
std::string stringval;
};
complex_t complex = {
.boolval = true,
.intval = 98877,
.stringval = "Initial complex string value"};
GVariant *GetComplexProperty(const DBus::Object::Property::BySpec &property)
{
std::cout << "[Get Complex Property]"
<< "name=" << property.GetName() << std::endl;
GVariant *r = g_variant_new("(bis)",
complex.boolval,
complex.intval,
complex.stringval.c_str());
Log(__func__, "Complex Property retrieved");
return r;
}
GVariant *GetDictionary(const DBus::Object::Property::BySpec &property)
{
std::cout << "[Get Dictionary Property] name=" << property.GetName()
<< std::endl;
GVariantBuilder *dict = glib2::Builder::Create("a{sv}");
g_variant_builder_add(dict,
"{sv}",
"name",
glib2::Value::Create(std::string("dictionary test")));
g_variant_builder_add(dict,
"{sv}",
"key",
glib2::Value::Create(std::string("value")));
g_variant_builder_add(dict,
"{sv}",
"numbers",
glib2::Value::Create(123));
g_variant_builder_add(dict,
"{sv}",
"bool",
glib2::Value::Create(true));
return glib2::Builder::Finish(dict);
}
DBus::Object::Property::Update::Ptr SetComplexProperty(const DBus::Object::Property::BySpec &property,
GVariant *value)
{
glib2::Utils::checkParams(__func__, value, "(bis)", 3);
complex.boolval = glib2::Value::Extract<bool>(value, 0);
complex.intval = glib2::Value::Extract<int>(value, 1);
complex.stringval = glib2::Value::Extract<std::string>(value, 2);
std::cout << "[Set Complex Property]"
<< "name=" << property.GetName() << ", "
<< "bool=" << complex.boolval << ", "
<< "int=" << complex.intval << ", "
<< "string-2='" << complex.stringval << "'"
<< std::endl;
auto upd = property.PrepareUpdate();
upd->AddValue(complex.boolval);
upd->AddValue(complex.intval);
upd->AddValue(complex.stringval);
Log(__func__, "Complex Property updated");
return upd;
}
void Log(const std::string &func, const std::string &msg) const
{
log->Log("PropertyTests::" + func, msg);
}
};
/**
* Separate object to test various D-Bus methods with functionality which
* must succeed and work correctly
*
* Path: /gdbuspp/tests/methods
* Interface: gdbuspp.test.simple1
*/
class MethodTests : public DBus::Object::Base
{
public:
MethodTests(DBus::Object::Manager::Ptr obj_mgr_, SimpleLog::Ptr log_)
: DBus::Object::Base(Constants::GenPath("simple1/methods"),
Constants::GenInterface("simple1")),
object_manager(obj_mgr_), log(log_)
{
DisableIdleDetector(true);
RegisterSignals(log);
// Just a simple D-Bus method not requiring any input arguments nor
// giving anything back to the caller.
AddMethod("MethodNoArgs",
[](DBus::Object::Method::Arguments::Ptr args)
{
std::cout << "[Method call: MethodNoArgs] " << args << std::endl;
args->SetMethodReturn(nullptr);
});
// A simple string lenght function, taking a string as input
// and returning an integer back to the caller with the length of
// the input string
auto stringlen_args = AddMethod("StringLength",
[this](DBus::Object::Method::Arguments::Ptr args)
{
this->StringLength(args);
});
stringlen_args->AddInput("string", "s");
stringlen_args->AddOutput("length", "i");
// Return the bus name of the caller back to the caller. This is
// used so the proxy test program can check if that matches the
// assigned bus name of the calling client
auto get_caller_args = AddMethod("GetCallerBusName",
[](DBus::Object::Method::Arguments::Ptr args)
{
args->SetMethodReturn(glib2::Value::CreateTupleWrapped(args->GetCallerBusName()));
});
get_caller_args->AddOutput("caller_busname", glib2::DataType::DBus<std::string>());
// This creates a new child object, as defined in the SimpleObject class
// The "name" of the object, becomes part of the D-Bus path which is
// given as an input string. It returns the full D-Bus object path
// to this new object
auto createobj_args = AddMethod("CreateSimpleObject",
[this](DBus::Object::Method::Arguments::Ptr args)
{
this->CreateSimpleObject(args);
});
createobj_args->AddInput("name", "s");
createobj_args->AddOutput("path", "o");
// This removes a child object based on the "name" of the object, as
// given when creating it.
//
// This approach deletes the object without the object itself being
// involved in the deletion, but the destructor should be called.
// The SimpleObject also implements a method where it can delete
// itself as well.
auto rmobj_args = AddMethod("RemoveSimpleObject",
[this](DBus::Object::Method::Arguments::Ptr args)
{
this->RemoveSimpleObject(args);
});
rmobj_args->AddInput("name", "s");
auto get_removd_objs_args = AddMethod(
"GetRemovedObjects",
[this](DBus::Object::Method::Arguments::Ptr args)
{
GVariant *r = glib2::Value::CreateTupleWrapped(removed_objects);
args->SetMethodReturn(r);
removed_objects.clear();
});
get_removd_objs_args->AddOutput("paths", "ao");
// This method will open a file with the file name provided as an
// input argument and will return a file descriptor to the opened file.
// This is for testing sending file descriptors from the service to the
// caller of this method.
auto openfile_args = AddMethod("OpenFilePassFD",
[this](DBus::Object::Method::Arguments::Ptr args)
{
this->OpenFile(args);
});
openfile_args->AddInput("file", "s");
openfile_args->AddOutput("success", "b");
openfile_args->PassFileDescriptor(DBus::Object::Method::PassFDmode::SEND);
// This method will receive a file descriptor to a file from the caller
// and this method will do a fstat() call on that file descriptor and
// extract a few details it will send back to the caller.
// This is for testing receiving file descriptors via a D-Bus
// method call
auto fstat_args = AddMethod("fstatFileFromFD",
[this](DBus::Object::Method::Arguments::Ptr args)
{
this->fstatFile(args);
});
fstat_args->AddOutput("owner_uid", "u");
fstat_args->AddOutput("owner_gid", "u");
fstat_args->AddOutput("size", "t");
fstat_args->PassFileDescriptor(DBus::Object::Method::PassFDmode::RECEIVE);
Log(__func__, "Initialized");
}
~MethodTests() noexcept
{
Log(__func__, "Removed MethodTests");
std::cout << __func__ << " -- ~MethodTests() called" << std::endl;
}
const bool Authorize(const DBus::Authz::Request::Ptr request) override
{
std::ostringstream ar;
ar << request;
Log(__func__, "Authorization request approved: " + ar.str());
return true;
}
private:
DBus::Object::Manager::Ptr object_manager = nullptr;
SimpleLog::Ptr log = nullptr;
std::vector<DBus::Object::Path> removed_objects = {};
void Log(const std::string &func, const std::string &msg) const
{
log->Log("MethodTests::" + func, msg);
}
void StringLength(DBus::Object::Method::Arguments::Ptr args)
{
Log(__func__, "StringLength called");
std::cout << "[StringLength call] " << args << std::endl;
GVariant *params = args->GetMethodParameters();
std::string in = glib2::Value::Extract<std::string>(params, 0);
size_t l = in.length();
std::cout << "Input: '" << in << "' "
<< "length: " << std::to_string(l) << std::endl;
args->SetMethodReturn(g_variant_new("(i)", l));
}
void CreateSimpleObject(DBus::Object::Method::Arguments::Ptr args)
{
std::cout << "[CreateSimpleObject call] " << args << std::endl;
GVariant *params = args->GetMethodParameters();
std::string name = glib2::Value::Extract<std::string>(params, 0);
const std::string child_path = Constants::GenPath("simple1/childs/") + name;
auto obj = object_manager->CreateObject<SimpleObject>(object_manager,
child_path,
name);
object_manager->AttachRemoveCallback(
child_path,
[&](const DBus::Object::Path &path)
{
// A bit complicated way - but showcasing the idea
// how to use this callback
auto obj = object_manager->GetObject<SimpleObject>(path);
removed_objects.push_back(obj->GetPath());
std::cout << "AttachRemoveCallback: Removed object "
<< path << std::endl;
Log("AttachRemoveCallback", "Object removed: " + path);
});
std::cout << ">>>> NEW OBJECT: " << obj->GetPath() << std::endl;
Log(__func__, "New child object created: " + obj->GetPath());
args->SetMethodReturn(g_variant_new("(o)", obj->GetPath().c_str()));
}
void RemoveSimpleObject(DBus::Object::Method::Arguments::Ptr args)
{
std::cout << "[RemoveSimpleObject call] " << args << std::endl;
GVariant *params = args->GetMethodParameters();
std::string name = glib2::Value::Extract<std::string>(params, 0);
if (name.empty() || "/" == name)
{
throw DBus::Object::Exception("Path cannot be empty");
}
const std::string path = Constants::GenPath("simple1/childs/") + name;
object_manager->RemoveObject(path);
std::cout << ">>> DELETED OBJECT: " << path << std::endl;
Log(__func__, "Child object removed: " + path);
args->SetMethodReturn(nullptr);
}
void OpenFile(DBus::Object::Method::Arguments::Ptr args)
{
std::cout << "[OpenFile - Read] " << args << std::endl;
GVariant *params = args->GetMethodParameters();
std::string fname = glib2::Value::Extract<std::string>(params, 0);
int fd = -1;
try
{
fd = open(fname.c_str(), O_RDONLY);
args->SendFD(fd);
Log(__func__, "File '" + fname + "' opened, fd=" + std::to_string(fd));
}
catch (const DBus::AsyncProcess::Exception &excp)
{
Log(__func__, "** ERROR ** " + std::string(excp.GetRawError()));
std::cerr << "** ERROR ** " << excp.what() << std::endl;
}
args->SetMethodReturn(g_variant_new("(b)", (fd > 0)));
}
void fstatFile(DBus::Object::Method::Arguments::Ptr args)
{
std::cout << "[fstatFile] " << args << std::endl;
int fd = args->ReceiveFD();
struct stat fileinfo = {};
GVariant *ret = nullptr;
if (fstat(fd, &fileinfo) >= 0)
{
std::cout << "fstat() success: "
<< "uid=" << std::to_string(fileinfo.st_uid) << ", "
<< "gid=" << std::to_string(fileinfo.st_gid) << ", "
<< "size=" << std::to_string(fileinfo.st_size)
<< std::endl;
ret = g_variant_new("(uut)", fileinfo.st_uid, fileinfo.st_gid, fileinfo.st_size);
Log(__func__, "fstat(" + std::to_string(fd) + "') successful");
}
else
{
Log(__func__, "fstat(" + std::to_string(fd) + "') failed!");
throw DBus::Object::Exception(this,
"fstat() call failed: "
+ std::string(std::strerror(errno)));
}
args->SetMethodReturn(ret);
}
};
/**
* These D-Bus methods in this D-Bus object is expected to all fail
*
* This is used to test the error handling and how errors are reported back
* to the caller as well as ensuring the service itself does not crash
*
* Path: /gdbuspp/tests/method_failures
* Interface: gdbuspp.test.simple1
*/
class FailingMethodTests : public DBus::Object::Base
{
public:
FailingMethodTests()
: DBus::Object::Base(Constants::GenPath("simple1/method_failures"),
Constants::GenInterface("simple1"))
{
DisableIdleDetector(true);
auto wrong_args1 = AddMethod("NoReceive123",
[](DBus::Object::Method::Arguments::Ptr args)
{
args->SetMethodReturn(g_variant_new("(i)", 123));
});
wrong_args1->AddOutput("length", "s");
auto wrong_args2 = AddMethod("InputMismatch",
[](DBus::Object::Method::Arguments::Ptr args)
{
GVariant *p = args->GetMethodParameters();
glib2::Utils::checkParams(__func__, p, "(i)", 1);
(void)glib2::Value::Extract<int>(p, 0);
args->SetMethodReturn(g_variant_new("(b)", false));
});
wrong_args2->AddInput("not_an_int", "s");
wrong_args2->AddOutput("failed", "b");
auto wrong_args3 = AddMethod("OutputMismatch",
[](DBus::Object::Method::Arguments::Ptr args)
{
args->SetMethodReturn(g_variant_new("(i)", 123));
});
wrong_args3->AddOutput("failed", "b");
AddMethod("NoReceiveFD",
[](DBus::Object::Method::Arguments::Ptr args)
{
args->ReceiveFD();
args->SetMethodReturn(nullptr);
});
auto no_send_fd = AddMethod("NoSendFD",
[](DBus::Object::Method::Arguments::Ptr args)
{
int fd = open("/dev/null", O_RDONLY);
args->SendFD(fd);
args->SetMethodReturn(nullptr);
});
no_send_fd->PassFileDescriptor(DBus::Object::Method::PassFDmode::RECEIVE);
}
const bool Authorize(const DBus::Authz::Request::Ptr request) override
{
return true;
}
};
class SimpleHandler : public DBus::Object::Base
{
public:
using Ptr = std::shared_ptr<SimpleHandler>;
SimpleHandler(DBus::Connection::Ptr conn,
DBus::Object::Manager::Ptr object_mgr)
: DBus::Object::Base(Constants::GenPath("simple1"),
Constants::GenInterface("simple1"))
{
DisableIdleDetector(true);
log = DBus::Signals::Group::Create<SimpleLog>(conn);
RegisterSignals(log);
log->AddTarget("");
property_tests = object_mgr->CreateObject<PropertyTests>(log);
method_tests = object_mgr->CreateObject<MethodTests>(object_mgr, log);
failing_meths = object_mgr->CreateObject<FailingMethodTests>();
AddProperty("version", version, false);
log->Log("SimpleHandler", "Handler is initialized");
}
~SimpleHandler()
{
try
{
log->Log("SimpleHandler", "Handler is shutting down");
}
catch (const DBus::Exception &excp)
{
std::cerr << "** ERROR ** Failed to send Log signal: "
<< excp.what() << std::endl;
}
std::cerr << std::endl
<< "DESTRUCTOR ~SimpleHandler" << std::endl;
}
const bool Authorize(const DBus::Authz::Request::Ptr request) override
{
std::ostringstream ar;
ar << request;
log->Log("SimpleHandler::Authorize", "Authorization request approved: " + ar.str());
return true;
}
PropertyTests::Ptr GetPropertyTestsObject() const
{
return property_tests;
}
MethodTests::Ptr GetMethodTestsObject() const
{
return method_tests;
}
FailingMethodTests::Ptr GetFailingMethodsTestsObject() const
{
return failing_meths;
}
private:
SimpleLog::Ptr log = nullptr;
PropertyTests::Ptr property_tests = nullptr;
MethodTests::Ptr method_tests = nullptr;
FailingMethodTests::Ptr failing_meths = nullptr;
std::string version = "0.1.2.3";
};
template <typename CLASS1, typename CLASS2>
const bool compare_shared_ptr_obj(const std::shared_ptr<CLASS1> &lhs,
const std::shared_ptr<CLASS2> &rhs)
{
return (lhs == rhs) && (lhs.get() == rhs.get());
}
/**
* Initialises a D-Bus service and registers the service unto the D-Bus
* given D-Bus connection.
*
* Well-known bus name: net.openvpn.gdbuspp.test.simple
*/
class SimpleService : public DBus::Service
{
public:
SimpleService(DBus::Connection::Ptr con)
: DBus::Service(con, Constants::GenServiceName("simple"))
{
}
virtual ~SimpleService() = default;
// This is a callback method which is called when this D-Bus service
// is registered on the D-Bus connection
void BusNameAcquired(const std::string &busname) override
{
std::cout << "Bus name acquired: " << busname << std::endl;
}
// This callback method will be called if the D-Bus service for some reason
// does not get the service registered on the D-Bus connection or the
// registration is lost (the D-Bus daemon kicks the service off the D-Bus).
void BusNameLost(const std::string &busname) override
{
std::cout << "** WARNING ** Bus name lost: " << busname << std::endl;
Stop();
}
void InternalTests(DBus::Object::Manager::Ptr object_mgr, SimpleHandler::Ptr handler)
{
std::cout << "** Internal tests - "
<< "DBus::Object::Manager::GetObject() / DBus::Object::Manager::GetAllObjects()"
<< std::endl;
std::map<std::string, DBus::Object::Base::Ptr> check;
check[handler->GetPath()] = handler;
auto retr_handler = object_mgr->GetObject<SimpleHandler>(Constants::GenPath("simple1"));
if (!compare_shared_ptr_obj(handler, retr_handler))
{
throw DBus::Exception("InternalTests",
"GetObject<SimpleHandler> failed");
}
auto h_prop_tests = handler->GetPropertyTestsObject();
auto r_prop_tests = object_mgr->GetObject<PropertyTests>(h_prop_tests->GetPath());
if (!compare_shared_ptr_obj(h_prop_tests, r_prop_tests))
{
throw DBus::Exception("InternalTests",
"GetObject<PropertyTests> failed");
}
check[r_prop_tests->GetPath()] = h_prop_tests;
auto h_meth_tests = handler->GetMethodTestsObject();
auto r_meth_tests = object_mgr->GetObject<MethodTests>(h_meth_tests->GetPath());
if (!compare_shared_ptr_obj(h_meth_tests, r_meth_tests))
{
throw DBus::Exception("InternalTests",
"GetObject<MethodTests> failed");
}
check[r_meth_tests->GetPath()] = h_meth_tests;
auto h_fmth_tests = handler->GetFailingMethodsTestsObject();
auto r_fmth_tests = object_mgr->GetObject<FailingMethodTests>(h_fmth_tests->GetPath());
if (!compare_shared_ptr_obj(h_fmth_tests, r_fmth_tests))
{
throw DBus::Exception("InternalTests",
"GetObject<FailingMethodTests> failed");
}
check[r_fmth_tests->GetPath()] = h_fmth_tests;
std::cout << " Collected paths:" << std::endl;
for (const auto &[p, o] : check)
{
std::cout << " - " << p << std::endl;
}
auto non_existing = object_mgr->GetObject<SimpleHandler>("/nonexisting/path");
if (nullptr != non_existing)
{
throw DBus::Exception("InternalTests",
"GetObject<>() on non-existing path failed");
}
std::cout << " Validating paths and objects from "
<< "DBus::Object::Manager::GetAllObjects()" << std::endl;
bool failed = false;
for (const auto &[obj_path, obj] : object_mgr->GetAllObjects())
{
std::cout << " - Looking up " << obj_path << " ... ";
try
{
const auto chk = check.at(obj_path);
std::cout << "found, ";
if (!compare_shared_ptr_obj(obj, chk))
{
std::cout << " OBJECT MATCH FAILED";
failed = true;
}
else
{
std::cout << " object match passed";
}
std::cout << std::endl;
}
catch (const std::out_of_range &)
{
std::cout << "NOT FOUND" << std::endl;
failed = true;
}
}
if (failed)
{
throw DBus::Exception("InternalTests", "GetAllObject failed");
}
std::cout << "** Internal tests PASSED" << std::endl
<< std::endl;
}
};
int main(int argc, char **argv)
{
try
{
// Create a connection to the session D-Bus
auto dbuscon = DBus::Connection::Create(DBus::BusType::SESSION);
// Create a new service object - SimpleService
auto simple_service = DBus::Service::Create<SimpleService>(dbuscon);
// Create a new "root object", handling all the initial requests
// This root object is the ServiceHandler; which can create child
// objects with different functionality
auto handler = simple_service->CreateServiceHandler<SimpleHandler>(dbuscon,
simple_service->GetObjectManager());
simple_service->PrepareIdleDetector(std::chrono::seconds(60));
// Run internal tests first
simple_service->InternalTests(simple_service->GetObjectManager(),
handler);
// Start the service
simple_service->Run();
}
catch (const DBus::Exception &excp)
{
std::cout << "EXCEPTION (DBus): " << excp.what() << std::endl;
return 9;
}
catch (const std::exception &excp)
{
std::cout << "EXCEPTION: " << excp.what() << std::endl;
return 8;
}
return 0;
}