-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStorageManager.cpp
More file actions
986 lines (803 loc) · 21.7 KB
/
Copy pathStorageManager.cpp
File metadata and controls
986 lines (803 loc) · 21.7 KB
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
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
#include "StorageManager.h"
#include "Config.h"
#include <libutils/FileUtils.h>
#include <libutils/Logger.h>
#include <libutils/Constants.h>
#include <libopi/LVM.h>
#include <libopi/Luks.h>
#include <libopi/SysInfo.h>
#include <libopi/SysConfig.h>
#include <libopi/DiskHelper.h>
#include <algorithm>
using namespace Utils;
using namespace Utils::Constants;
using namespace OPI;
namespace KGP
{
StorageManager &StorageManager::Instance()
{
static StorageManager mgr;
return mgr;
}
StorageManager::StorageManager():
dosyncstorage(false),
initialized(false)
{
}
static bool checkOnce(const string& path)
{
constexpr int maxretries = 50;
constexpr uint32_t delay = 5000; // uS
int retries = maxretries;
bool done=false;
logg << Logger::Debug << "Test once if " << path << " present" << lend;
do
{
try
{
done = DiskHelper::DeviceExists( Utils::File::RealPath( path ) );
}
catch(std::runtime_error& err)
{
logg << Logger::Debug << "Unable to probe device: "<< err.what() << lend;
}
if( !done && retries > 0 )
{
logg << Logger::Debug << "Device not yet available, waiting" << lend;
usleep(delay);
}
}while( !done && retries-- > 0);
if ( ! done )
{
logg << Logger::Notice << "Unable to locate device, aborting" << lend;
return false;
}
return true;
}
/**
* @brief checkDevice check if device is available, wait a while and retry if
* currently not available.
* @param path Path to device to check
* @return
*/
bool StorageManager::checkDevice(const string& path)
{
logg << Logger::Debug << "Check device " << path << lend;
constexpr uint32_t usecinmilli = 1000;
constexpr uint32_t mdelay = 333;
// Unfortunately we can't trust a one-time check. When a new partition
// is created. Udev will trigger a couple of times adding and removing
// the device link/node.
//
// Thus we have to expect this and wait for device to "settle".
// i.e. be present for a "specific" time otherwise it is not uncommon
// for the device to be not present on further operations
//
// We try todo this by checking 3 times over a second and if
// Device present all 3 times it is said to be present
// Device never present during 3 times it is said to be not present
// Otherwise it is inconclusive and we try again
bool done = false;
bool present = false;
uint8_t retrycount = 2;
uint8_t checkcount = 0;
while( ! done )
{
checkcount = 0;
for(int i = 0; i < 3; i++)
{
if( checkOnce(path) )
{
checkcount++;
}
usleep( mdelay * usecinmilli );
}
present = checkcount == 3;
done = (checkcount == 0 || present ) || retrycount == 0;
retrycount--;
}
logg << Logger::Debug << "Device " << path << (present ? " avaliable" : " not available") << lend;
return present;
}
bool StorageManager::partitionDisks(const list<string>& devs)
{
try
{
for( const auto& pv : devs)
{
if( !DiskHelper::DeviceExists(pv) )
{
logg << Logger::Error << "Device doesn't exist: " << pv << lend;
return false;
}
logg << Logger::Debug << "Partition: " << pv << lend;
DiskHelper::PartitionDevice(File::RealPath(pv));
}
}
catch (std::runtime_error& err)
{
logg << Logger::Error << "Failed to partition disk: " << err.what() << lend;
return false;
}
// Check proper setup
for( const auto& pv : devs)
{
if( ! this->checkDevice( DiskHelper::PartitionName(pv) ) )
{
logg << Logger::Error << "Device partition missing!" << lend;
return false;
}
}
return true;
}
bool StorageManager::mountDevice(const string &destination)
{
StorageConfig scfg;
if( scfg.UsePhysicalStorage(Storage::Physical::None) )
{
logg << Logger::Error << "Device doesn't use separate storage, not mounting" << lend;
return false;
}
// Work out what to mount
string source = this->DevicePath();
logg << Logger::Debug << "Mount "<< source << " device at " << destination << lend;
try
{
// Make sure device is not mounted (Should not happen)
if( DiskHelper::IsMounted( source ) != "" )
{
DiskHelper::Umount( source );
}
}
catch ( ErrnoException& err)
{
logg << Logger::Error << "Failed to make sure storage not mounted: " << err.what() << lend;
return false;
}
try
{
DiskHelper::Mount( source , destination );
}
catch( ErrnoException& err)
{
logg << Logger::Error << "Failed to mount storage device: " << err.what() << lend;
// Sometimes pclose failes waiting on process, in these cases operation is most likely
// successful and we should not error out.
if( errno == ECHILD )
{
if( DiskHelper::IsMounted( source ) != "" )
{
logg << Logger::Notice << "Storage is mounted, ignore previous error" << lend;
return true;
}
}
return false;
}
return true;
}
void StorageManager::umountDevice()
{
DiskHelper::Umount( this->DevicePath() );
}
bool StorageManager::Initialize(const string& password)
{
using namespace Storage;
logg << Logger::Debug << "Storagemanager initialize storage" << lend;
// Workaround to refresh config.
// TODO: should storageconfig be a singleton?
this->storageConfig = StorageConfig();
if( this->storageConfig.UsePhysicalStorage(Physical::None) )
{
logg << Logger::Notice << "Device dont use separate physical backing store, skip storage initialization" << lend;
return true;
}
this->encryptionpassword = password;
if ( ! this->initialized )
{
logg << Logger::Debug << "Device not initialized, starting initialization"<<lend;
const map<StorageType, std::function<bool()>> smap =
{
{ {Physical::Partition, Logical::None, Encryption::None}, [this](){ return this->InitPNNHandler();} },
{ {Physical::Partition, Logical::LVM, Encryption::None}, [this](){ return this->InitPLNHandler();} },
{ {Physical::Partition, Logical::None, Encryption::LUKS}, [this](){ return this->InitPNLHandler();} },
{ {Physical::Partition, Logical::LVM, Encryption::LUKS}, [this](){ return this->InitPLLHandler();} },
{ {Physical::Block, Logical::None, Encryption::None}, [this](){ return this->InitBNNHandler();} },
{ {Physical::Block, Logical::LVM, Encryption::None}, [this](){ return this->InitBLNHandler();} },
{ {Physical::Block, Logical::None, Encryption::LUKS}, [this](){ return this->InitBNLHandler();} },
{ {Physical::Block, Logical::LVM, Encryption::LUKS}, [this](){ return this->InitBLLHandler();} },
};
// Workout setup scenario
Storage::StorageType stype = make_tuple(
this->storageConfig.PhysicalStorage().Type(),
this->storageConfig.LogicalStorage().Type(),
this->storageConfig.EncryptionStorage().Type());
logg << Logger::Debug << "Current storage config,"
<< " Physical: "<<this->storageConfig.PhysicalStorage().Name()
<< " Logical: " << this->storageConfig.LogicalStorage().Name()
<< " Encryption: " << this->storageConfig.EncryptionStorage().Name() << lend;
const auto& setupselection = smap.find(stype);
if( setupselection == smap.end() )
{
logg << Logger::Emerg << "Undefined setup configurartion" << lend;
return false;
}
try {
if( ! setupselection->second() )
{
logg << Logger::Error << "Failed to setup storage" << lend;
return false;
}
}
catch ( std::runtime_error& err)
{
logg << Logger::Error << "Storage setup failed with exception: " << err.what() << lend;
return false;
}
this->initialized = true;
}
return this->setupStorageArea();
}
bool StorageManager::Open(const string& password)
{
if( this->UseLocking() )
{
// Use lvm or raw blockdevice?
string ld = this->UseLogicalStorage() ? this->getLogicalDevice() : DiskHelper::PartitionName(this->getPysicalDevice());
Luks l( ld );
if( ! l.Active("opi") )
{
logg << Logger::Debug << "Activating LUKS volume"<<lend;
if ( !l.Open("opi", password) )
{
logg << Logger::Debug << "Failed to openLUKS volume on "<< ld << lend;
this->global_error = "Unable to unlock crypto storage. (Wrong password?)";
return false;
}
}
}
return true;
}
bool StorageManager::UseLocking()
{
return this->storageConfig.UseEncryption(Storage::Encryption::LUKS);
}
bool StorageManager::UseLogicalStorage()
{
// Currently only use LVM
return this->storageConfig.UseLogicalStorage(Storage::Logical::LVM);
}
bool StorageManager::IsLocked()
{
if( ! this->UseLocking() )
{
return false;
}
;
Luks l( this->DevicePath() );
return ! l.Active( this->DevicePath() );
}
string StorageManager::DevicePath()
{
return this->storageConfig.StorageDevice();
}
bool StorageManager::StorageAreaExists()
{
logg << Logger::Debug << "Check if storage area exists"<<lend;
try
{
list<string> pdevs = this->storageConfig.PhysicalDevices();
if( pdevs.size() == 0 )
{
logg << Logger::Error << "Missing physical devices in config" << lend;
return false;
}
// Need physical storage
for( const auto& pdev: pdevs )
{
if( ! DiskHelper::DeviceExists( pdev ) )
{
logg << Logger::Notice << "Device " << pdev << " doesnt exist" << lend;
return false;
}
// We need storage space on underlaying device. I.e. an sd-card is available in slot
if( DiskHelper::DeviceSize( pdev ) == 0 )
{
logg << Logger::Notice << "Device " << pdev << " has no space" << lend;
return false;
}
}
if( this->storageConfig.UseLogicalStorage( Storage::Logical::LVM) )
{
list<string> ldevs = this->storageConfig.LogicalDevices();
if( ldevs.size() == 0 )
{
logg << Logger::Error << "Logical storage selected but no device specified" << lend;
return false;
}
for(const auto& ldev: ldevs)
{
if( !DiskHelper::DeviceExists( ldev ) )
{
logg << Logger::Debug << "Logical device " << ldev <<" not created" << lend;
return false;
}
}
}
if( this->storageConfig.UseEncryption(Storage::Encryption::LUKS) )
{
list<string> devs;
if( this->storageConfig.UseLogicalStorage( Storage::Logical::LVM) )
{
devs = this->storageConfig.LogicalDevices();
}
else
{
// We need to get to the physical partitions here
list<string> pdevs = this->storageConfig.PhysicalDevices();
std::transform(
pdevs.begin(), pdevs.end(),
back_inserter(devs),
[](const string& dev) { return DiskHelper::PartitionName(dev); });
}
for(const auto& dev: devs)
{
if( ! Luks::isLuks( dev ) )
{
logg << Logger::Debug << "No LUKS on device " << dev << lend;
return false;
}
}
}
}
catch( std::exception& e)
{
logg << Logger::Notice << "Failed to check" << this->DevicePath()<< ": " << e.what() <<lend;
return false;
}
return true;
}
bool StorageManager::DeviceExists()
{
list<string> devs = this->storageConfig.PhysicalDevices();
try
{
for( const auto& dev: devs)
{
logg << Logger::Debug << "Resolving device: " << dev <<lend;
string device = File::RealPath( dev );
logg << Logger::Debug << "Checking device " << device << lend;
if( ! DiskHelper::DeviceExists( device ) )
{
return false;
}
if( DiskHelper::DeviceSize( device ) == 0 )
{
return false;
}
}
}catch( std::exception& e)
{
logg << Logger::Notice << "Failed to check device. (" << e.what() <<")" <<lend;
return false;
}
return true;
}
// Find out if systemdevice has extra partiton suitable for storage
// TODO: This is duplicated code with SM::QueryStorage*
static bool hasPartition(const list<StorageDevice>& devs)
{
for( const auto& dev: devs)
{
if( dev.Is(StorageDevice::BootDevice) )
{
list<StorageDevice> parts = dev.Partitions();
for( const auto& part : parts)
{
// There exists a partition on device that is
// not the root device
if( ! part.Is(StorageDevice::RootDevice) && part.Size() > KGP_CONF_MIN_STORAGE )
{
return true;
}
}
}
}
return false;
}
// TODO: This is duplicated code with SM::QueryStorage*
static bool hasStorageDevice(const list<StorageDevice>& devs)
{
for( const auto& dev: devs)
{
// There exists a physical storage device that is not the boot device
// and it has a size bigger than min required size
if(
dev.Is(StorageDevice::Physical) &&
! dev.Is(StorageDevice::BootDevice) &&
dev.Size() > KGP_CONF_MIN_STORAGE )
{
return true;
}
}
return false;
}
list<Storage::Physical::Physical> StorageManager::QueryPhysical()
{
StorageConfig scf;
list<Storage::Physical::Type> pt = scf.QueryPhysicalStorage();
list<Storage::Physical::Physical> ret;
list<StorageDevice> devs = StorageDevice::Devices();
for(const auto& type: pt)
{
switch(type)
{
case Storage::Physical::None:
ret.emplace_back(Storage::Physical::Physical(type));
break;
case Storage::Physical::Partition:
// Got to have an extra partition on system device
if( hasPartition(devs))
{
ret.emplace_back(Storage::Physical::Physical(type));
}
break;
case Storage::Physical::Block:
// Got to have an extra block device
if( hasStorageDevice(devs) )
{
ret.emplace_back(Storage::Physical::Physical(type));
}
break;
default:
break;
}
}
return ret;
}
list<Storage::Logical::Logical> StorageManager::QueryLogical(Storage::Physical::Type types)
{
StorageConfig scf;
list<Storage::Logical::Logical> ret;
list<Storage::Logical::Type> lts = scf.QueryLogicalStorage(types);
list<StorageDevice> devs = StorageDevice::Devices();
for( const auto& lt : lts)
{
switch(lt)
{
case Storage::Logical::None:
ret.emplace_back(Storage::Logical::Logical(lt));
break;
case Storage::Logical::LVM:
// Need partition or block device present
if( hasPartition(devs) || hasStorageDevice(devs) )
{
ret.emplace_back(Storage::Logical::Logical(lt));
}
break;
default:
break;
}
}
return ret;
}
list<Storage::Encryption::Encryption> StorageManager::QueryEncryption(Storage::Physical::Type phys, Storage::Logical::Type log)
{
StorageConfig scf;
list<Storage::Encryption::Encryption> ret;
list<StorageDevice> devs = StorageDevice::Devices();
list<Storage::Encryption::Type> encs = scf.QueryEncryptionStorage(phys, log);
for( const auto& enc: encs)
{
switch( enc )
{
case Storage::Encryption::None:
ret.emplace_back(Storage::Encryption::Encryption(enc));
break;
case Storage::Encryption::LUKS:
// Need partition or block device present
if( hasPartition(devs) || hasStorageDevice(devs) )
{
ret.emplace_back(Storage::Encryption::Encryption(enc));
}
break;
default:
break;
}
}
return ret;
}
list<StorageDevice> StorageManager::QueryStorageDevices()
{
list<StorageDevice> ret;
list<StorageDevice> devs = StorageDevice::Devices();
for( const auto& dev: devs)
{
if( dev.Is(StorageDevice::Physical) && ! dev.Is(StorageDevice::BootDevice) )
{
ret.emplace_back(dev);
}
}
return ret;
}
list<StorageDevice> StorageManager::QueryStoragePartitions()
{
list<StorageDevice> ret;
list<StorageDevice> devs = StorageDevice::Devices();
for( const auto& dev: devs)
{
if( dev.Is(StorageDevice::BootDevice) )
{
list<StorageDevice> parts = dev.Partitions();
for( const auto& part : parts)
{
// There exists a partition on device that is
// not the root device and is bigger than 1GB
if( ! part.Is(StorageDevice::RootDevice) && part.Size() > KGP_CONF_MIN_STORAGE )
{
ret.emplace_back(part);
}
}
}
}
return ret;
}
size_t StorageManager::Size()
{
return DiskHelper::DeviceSize( sysinfo.StorageDevicePath() );
}
string StorageManager::Error()
{
return this->global_error;
}
StorageManager::~StorageManager() = default;
bool StorageManager::setupLUKS(const string &path, const string& password)
{
try
{
Luks l( Utils::File::RealPath( path ) );
l.Format( password );
if( ! l.Open("opi", password ) )
{
this->global_error = "Wrong password";
return false;
}
}
catch( std::runtime_error& err)
{
logg << Logger::Notice << "Failed to format device: "<<err.what()<<lend;
return false;
}
return true;
}
bool StorageManager::unlockLUKS(const string &path, const string& password)
{
Luks l( path );
if( ! l.Active("opi") )
{
logg << Logger::Debug << "Activating LUKS volume"<<lend;
if ( !l.Open("opi", password ) )
{
this->global_error = "Wrong password";
return false;
}
}
return true;
}
/*
* Initialize Luks on lower level block device i.e. lvm or physical device
*/
bool StorageManager::InitializeLUKS(const string& device )
{
logg << Logger::Debug << "Initialize LUKS on device " << device <<lend;
if( ! Luks::isLuks( device ) )
{
if( ! this->setupLUKS( device, this->encryptionpassword ) )
{
return false;
}
}
if( ! this->unlockLUKS( device, this->encryptionpassword ) )
{
logg << Logger::Notice << "Unable to unlock device" << lend;
return false;
}
return true;
}
bool StorageManager::setupStorageArea()
{
string device = this->DevicePath();
logg << Logger::Debug << "Setting up storage area on: " << device << lend;
try
{
const string mountpoint = SysConfig().GetKeyAsString("filesystem", "storagemount");
// Make sure device is not mounted (Should not happen)
if( DiskHelper::IsMounted( device ) != "" )
{
DiskHelper::Umount( device );
}
if( this->dosyncstorage )
{
logg << Logger::Debug << "Sync template data to storage device " << device <<lend;
// Sync data from root to storage
DiskHelper::Mount( device , TMP_MOUNT );
DiskHelper::SyncPaths(mountpoint, TMP_MOUNT);
DiskHelper::Umount(device);
this->dosyncstorage = false;
}
// Mount in final place
DiskHelper::Mount( device, mountpoint );
}
catch( ErrnoException& err)
{
logg << Logger::Error << "Finalize unlock failed: " << err.what() << lend;
this->global_error = "Unable to access storage device";
return false;
}
return true;
}
bool StorageManager::CreateLVM(const list<string>& physdevs)
{
LVM lvm;
list<PhysicalVolumePtr> pvs;
try
{
for(const auto& pdev : physdevs)
{
logg << Logger::Debug << "Adding " << pdev << " to volumegroup" << lend;
pvs.emplace_back(lvm.CreatePhysicalVolume( File::RealPath( pdev ) ) );
}
VolumeGroupPtr vg = lvm.CreateVolumeGroup( SysConfig().GetKeyAsString("storage", "lvm_vg"), pvs );
LogicalVolumePtr lv = vg->CreateLogicalVolume( SysConfig().GetKeyAsString("storage", "lvm_lv") );
}
catch( ErrnoException& err )
{
logg << Logger::Notice << "Create LVM failed: " << err.what() << lend;
return false;
}
return true;
}
bool StorageManager::InitPNNHandler()
{
ScopedLog log("Init Partition|None|None");
DiskHelper::FormatPartition(this->getPysicalDevice(), Storage::PartitionName );
this->dosyncstorage = true;
return true;
}
bool StorageManager::InitPLNHandler()
{
ScopedLog log("Init Partition|LVM|None");
if( !this->CreateLVM({ this->getPysicalDevice() }) )
{
return false;
}
DiskHelper::FormatPartition(this->getLogicalDevice(), Storage::PartitionName );
this->dosyncstorage = true;
return true;
}
bool StorageManager::InitPNLHandler()
{
ScopedLog log("Init Partition|None|LUKS");
if( ! this->InitializeLUKS( this->getPysicalDevice() ) )
{
return false;
}
DiskHelper::FormatPartition( this->getEncryptionDevice(), Storage::PartitionName );
this->dosyncstorage = true;
return true;
}
bool StorageManager::InitPLLHandler()
{
ScopedLog log("Init Partition|LVM|LUKS");
if( !this->CreateLVM({ this->getPysicalDevice() }) )
{
return false;
}
if( ! this->InitializeLUKS( this->getLogicalDevice() ) )
{
return false;
}
DiskHelper::FormatPartition( this->getEncryptionDevice(), Storage::PartitionName );
this->dosyncstorage = true;
return true;
}
bool StorageManager::InitBNNHandler()
{
ScopedLog log("Init Block|None|None");
if( !this->partitionDisks({ this->getPysicalDevice() } ) )
{
return false;
}
DiskHelper::FormatPartition( DiskHelper::PartitionName( this->getPysicalDevice() ), Storage::PartitionName);
this->dosyncstorage = true;
return true;
}
bool StorageManager::InitBLNHandler()
{
ScopedLog log("Init Block|LVM|None");
if( ! this->partitionDisks( this->storageConfig.PhysicalDevices() ) )
{
return false;
}
list<string> parts;
for(const auto& dev: this->storageConfig.PhysicalDevices() )
{
parts.emplace_back(DiskHelper::PartitionName(dev));
}
if( ! this->CreateLVM( parts ) )
{
return false;
}
DiskHelper::FormatPartition( this->getLogicalDevice(), Storage::PartitionName );
this->dosyncstorage = true;
return true;
}
bool StorageManager::InitBNLHandler()
{
ScopedLog log("Init Block|None|LUKS");
if( !this->partitionDisks({ this->getPysicalDevice() } ) )
{
return false;
}
if( ! this->InitializeLUKS( DiskHelper::PartitionName( this->getPysicalDevice())) )
{
return false;
}
DiskHelper::FormatPartition( this->getEncryptionDevice(), Storage::PartitionName );
this->dosyncstorage = true;
return true;
}
bool StorageManager::InitBLLHandler()
{
ScopedLog log("Init Block|LVM|LUKS");
if( ! this->partitionDisks( this->storageConfig.PhysicalDevices() ) )
{
return false;
}
list<string> parts;
for(const auto& dev: this->storageConfig.PhysicalDevices() )
{
parts.emplace_back(DiskHelper::PartitionName(dev));
}
if( ! this->CreateLVM( parts ) )
{
return false;
}
if( ! this->InitializeLUKS( this->getLogicalDevice() ) )
{
return false;
}
DiskHelper::FormatPartition( this->getEncryptionDevice(), Storage::PartitionName );
this->dosyncstorage = true;
return true;
}
string StorageManager::getLogicalDevice()
{
list<string> ldevs = this->storageConfig.LogicalDevices();
if( ldevs.size() != 1 )
{
logg << Logger::Notice << "Wrong amount of logical devices got:" << ldevs.size() << " assumed 1" << lend;
return "";
}
return ldevs.front();
}
string StorageManager::getPysicalDevice()
{
list<string> pdevs = this->storageConfig.PhysicalDevices();
if( pdevs.size() != 1 )
{
logg << Logger::Notice << "Wrong amount of physical devices got:" << pdevs.size() << " assumed 1" << lend;
return "";
}
return pdevs.front();
}
string StorageManager::getEncryptionDevice()
{
list<string> edevs = this->storageConfig.EncryptionDevices();
if( edevs.size() != 1 )
{
logg << Logger::Notice << "Wrong amount of encryption devices got:" << edevs.size() << " assumed 1" << lend;
return "";
}
return edevs.front();
}
} // Namespace KGP