summaryrefslogtreecommitdiffstats
path: root/src/VBox/Main/src-server/DHCPServerImpl.cpp
blob: 23a2e90bc13e62b9e069b1408be56b1b96c7f35e (plain)
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
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
/* $Id: DHCPServerImpl.cpp $ */
/** @file
 * VirtualBox COM class implementation
 */

/*
 * Copyright (C) 2006-2023 Oracle and/or its affiliates.
 *
 * This file is part of VirtualBox base platform packages, as
 * available from https://www.virtualbox.org.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation, in version 3 of the
 * License.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, see <https://www.gnu.org/licenses>.
 *
 * SPDX-License-Identifier: GPL-3.0-only
 */


/*********************************************************************************************************************************
*   Header Files                                                                                                                 *
*********************************************************************************************************************************/
#define LOG_GROUP LOG_GROUP_MAIN_DHCPSERVER
#include "DHCPServerImpl.h"
#include "LoggingNew.h"

#include <iprt/asm.h>
#include <iprt/err.h>
#include <iprt/file.h>
#include <iprt/net.h>
#include <iprt/path.h>
#include <iprt/cpp/path.h>
#include <iprt/cpp/utils.h>
#include <iprt/cpp/xml.h>

#include <VBox/com/array.h>
#include <VBox/settings.h>

#include "AutoCaller.h"
#include "DHCPConfigImpl.h"
#include "MachineImpl.h"
#include "NetworkServiceRunner.h"
#include "VirtualBoxImpl.h"


/*********************************************************************************************************************************
*   Defined Constants And Macros                                                                                                 *
*********************************************************************************************************************************/
#if defined(RT_OS_WINDOWS) || defined(RT_OS_OS2)
# define DHCP_EXECUTABLE_NAME "VBoxNetDHCP.exe"
#else
# define DHCP_EXECUTABLE_NAME "VBoxNetDHCP"
#endif


/**
 * DHCP server specialization of NetworkServiceRunner.
 *
 * Just defines the executable name and adds option constants.
 */
class DHCPServerRunner : public NetworkServiceRunner
{
public:
    DHCPServerRunner() : NetworkServiceRunner(DHCP_EXECUTABLE_NAME)
    {}
    virtual ~DHCPServerRunner()
    {}
};


/**
 * Hidden private data of the DHCPServer class.
 */
struct DHCPServer::Data
{
    Data()
        : pVirtualBox(NULL)
        , strName()
        , enabled(FALSE)
        , uIndividualMACAddressVersion(1)
    {
    }

    /** weak VirtualBox parent */
    VirtualBox * const  pVirtualBox;
    /** The DHCP server name (network). */
    Utf8Str const       strName;

    Utf8Str IPAddress;
    Utf8Str lowerIP;
    Utf8Str upperIP;

    BOOL enabled;
    DHCPServerRunner dhcp;

    com::Utf8Str strLeasesFilename;
    com::Utf8Str strConfigFilename;
    com::Utf8Str strLogFilename;

    com::Utf8Str trunkName;
    com::Utf8Str trunkType;

    /** Global configuration. */
    ComObjPtr<DHCPGlobalConfig> globalConfig;

    /** Group configuration indexed by name. */
    std::map<com::Utf8Str, ComObjPtr<DHCPGroupConfig> > groupConfigs;
    /** Iterator for groupConfigs. */
    typedef std::map<com::Utf8Str, ComObjPtr<DHCPGroupConfig> >::iterator GroupConfigIterator;

    /** Individual (host) configuration indexed by MAC address or VM UUID. */
    std::map<com::Utf8Str, ComObjPtr<DHCPIndividualConfig> > individualConfigs;
    /** Iterator for individualConfigs. */
    typedef std::map<com::Utf8Str, ComObjPtr<DHCPIndividualConfig> >::iterator IndividualConfigIterator;

    /** Part of a lock-avoidance hack to resolve the VM ID + slot into MAC
     *  addresses before writing out the Dhcpd configuration file. */
    uint32_t uIndividualMACAddressVersion;
};


// constructor / destructor
/////////////////////////////////////////////////////////////////////////////


DHCPServer::DHCPServer()
    : m(NULL)
{
    m = new DHCPServer::Data();
}


DHCPServer::~DHCPServer()
{
    if (m)
    {
        delete m;
        m = NULL;
    }
}


HRESULT DHCPServer::FinalConstruct()
{
    return BaseFinalConstruct();
}


void DHCPServer::FinalRelease()
{
    uninit();
    BaseFinalRelease();
}


void DHCPServer::uninit()
{
    /* Enclose the state transition Ready->InUninit->NotReady */
    AutoUninitSpan autoUninitSpan(this);
    if (autoUninitSpan.uninitDone())
        return;

    if (m->dhcp.isRunning())
        stop();

    unconst(m->pVirtualBox) = NULL;
}


HRESULT DHCPServer::init(VirtualBox *aVirtualBox, const Utf8Str &aName)
{
    AssertReturn(!aName.isEmpty(), E_INVALIDARG);

    AutoInitSpan autoInitSpan(this);
    AssertReturn(autoInitSpan.isOk(), E_FAIL);

    /* share VirtualBox weakly (parent remains NULL so far) */
    unconst(m->pVirtualBox) = aVirtualBox;

    unconst(m->strName) = aName;
    m->IPAddress = "0.0.0.0";
    m->lowerIP   = "0.0.0.0";
    m->upperIP   = "0.0.0.0";
    m->enabled   = FALSE;

    /* Global configuration: */
    HRESULT hrc = m->globalConfig.createObject();
    if (SUCCEEDED(hrc))
        hrc = m->globalConfig->initWithDefaults(aVirtualBox, this);

    Assert(m->groupConfigs.size() == 0);
    Assert(m->individualConfigs.size() == 0);

    /* Confirm a successful initialization or not: */
    if (SUCCEEDED(hrc))
        autoInitSpan.setSucceeded();
    else
        autoInitSpan.setFailed(hrc);
    return hrc;
}


HRESULT DHCPServer::init(VirtualBox *aVirtualBox, const settings::DHCPServer &rData)
{
    /* Enclose the state transition NotReady->InInit->Ready */
    AutoInitSpan autoInitSpan(this);
    AssertReturn(autoInitSpan.isOk(), E_FAIL);

    /* share VirtualBox weakly (parent remains NULL so far) */
    unconst(m->pVirtualBox) = aVirtualBox;

    unconst(m->strName) = rData.strNetworkName;
    m->IPAddress        = rData.strIPAddress;
    m->enabled          = rData.fEnabled;
    m->lowerIP          = rData.strIPLower;
    m->upperIP          = rData.strIPUpper;

    /*
     * Global configuration:
     */
    HRESULT hrc = m->globalConfig.createObject();
    if (SUCCEEDED(hrc))
        hrc = m->globalConfig->initWithSettings(aVirtualBox, this, rData.globalConfig);

    /*
     * Group configurations:
     */
    Assert(m->groupConfigs.size() == 0);
    for (settings::DHCPGroupConfigVec::const_iterator it = rData.vecGroupConfigs.begin();
         it != rData.vecGroupConfigs.end() && SUCCEEDED(hrc); ++it)
    {
        ComObjPtr<DHCPGroupConfig> ptrGroupConfig;
        hrc = ptrGroupConfig.createObject();
        if (SUCCEEDED(hrc))
            hrc = ptrGroupConfig->initWithSettings(aVirtualBox, this, *it);
        if (SUCCEEDED(hrc))
        {
            try
            {
                m->groupConfigs[it->strName] = ptrGroupConfig;
            }
            catch (std::bad_alloc &)
            {
                return E_OUTOFMEMORY;
            }
        }
    }

    /*
     * Individual configuration:
     */
    Assert(m->individualConfigs.size() == 0);
    for (settings::DHCPIndividualConfigMap::const_iterator it = rData.mapIndividualConfigs.begin();
         it != rData.mapIndividualConfigs.end() && SUCCEEDED(hrc); ++it)
    {
        ComObjPtr<DHCPIndividualConfig> ptrIndiCfg;
        com::Utf8Str                    strKey;
        if (it->second.strVMName.isEmpty())
        {
            RTMAC MACAddress;
            int vrc = RTNetStrToMacAddr(it->second.strMACAddress.c_str(), &MACAddress);
            if (RT_FAILURE(vrc))
            {
                LogRel(("Ignoring invalid MAC address for individual DHCP config: '%s' - %Rrc\n", it->second.strMACAddress.c_str(), vrc));
                continue;
            }

            vrc = strKey.printfNoThrow("%RTmac", &MACAddress);
            AssertRCReturn(vrc, E_OUTOFMEMORY);

            hrc = ptrIndiCfg.createObject();
            if (SUCCEEDED(hrc))
                hrc = ptrIndiCfg->initWithSettingsAndMACAddress(aVirtualBox, this, it->second, &MACAddress);
        }
        else
        {
            /* This ASSUMES that we're being called after the machines have been
               loaded so we can resolve VM names into UUID for old settings. */
            com::Guid idMachine;
            hrc = i_vmNameToIdAndValidateSlot(it->second.strVMName, it->second.uSlot, idMachine);
            if (SUCCEEDED(hrc))
            {
                int vrc = strKey.printfNoThrow("%RTuuid/%u", idMachine.raw(), it->second.uSlot);
                AssertRCReturn(vrc, E_OUTOFMEMORY);

                hrc = ptrIndiCfg.createObject();
                if (SUCCEEDED(hrc))
                    hrc = ptrIndiCfg->initWithSettingsAndMachineIdAndSlot(aVirtualBox, this, it->second,
                                                                          idMachine, it->second.uSlot,
                                                                          m->uIndividualMACAddressVersion - UINT32_MAX / 4);
            }
        }
        if (SUCCEEDED(hrc))
        {
            try
            {
                m->individualConfigs[strKey] = ptrIndiCfg;
            }
            catch (std::bad_alloc &)
            {
                return E_OUTOFMEMORY;
            }
        }
    }

    /* Confirm a successful initialization or not: */
    if (SUCCEEDED(hrc))
        autoInitSpan.setSucceeded();
    else
        autoInitSpan.setFailed(hrc);
    return hrc;
}


/**
 * Called by VirtualBox to save our settings.
 */
HRESULT DHCPServer::i_saveSettings(settings::DHCPServer &rData)
{
    AutoCaller autoCaller(this);
    if (FAILED(autoCaller.hrc())) return autoCaller.hrc();

    AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);

    rData.strNetworkName = m->strName;
    rData.strIPAddress   = m->IPAddress;
    rData.fEnabled       = m->enabled != FALSE;
    rData.strIPLower     = m->lowerIP;
    rData.strIPUpper     = m->upperIP;

    /* Global configuration: */
    HRESULT hrc = m->globalConfig->i_saveSettings(rData.globalConfig);

    /* Group configuration: */
    size_t const cGroupConfigs = m->groupConfigs.size();
    try
    {
        rData.vecGroupConfigs.resize(cGroupConfigs);
    }
    catch (std::bad_alloc &)
    {
        return E_OUTOFMEMORY;
    }
    size_t i = 0;
    for (Data::GroupConfigIterator it = m->groupConfigs.begin(); it != m->groupConfigs.end() && SUCCEEDED(hrc); ++it, i++)
    {
        try
        {
            rData.vecGroupConfigs[i] = settings::DHCPGroupConfig();
        }
        catch (std::bad_alloc &)
        {
            return E_OUTOFMEMORY;
        }
        hrc = it->second->i_saveSettings(rData.vecGroupConfigs[i]);
    }

    /* Individual configuration: */
    for (Data::IndividualConfigIterator it = m->individualConfigs.begin();
         it != m->individualConfigs.end() && SUCCEEDED(hrc); ++it)
    {
        try
        {
            rData.mapIndividualConfigs[it->first] = settings::DHCPIndividualConfig();
        }
        catch (std::bad_alloc &)
        {
            return E_OUTOFMEMORY;
        }
        hrc = it->second->i_saveSettings(rData.mapIndividualConfigs[it->first]);
    }

    return hrc;
}


HRESULT DHCPServer::i_removeConfig(DHCPConfig *pConfig, DHCPConfigScope_T enmScope)
{
    {
        AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);

        bool fFound = false;
        switch (enmScope)
        {
            case DHCPConfigScope_Group:
            {
                for (Data::GroupConfigIterator it = m->groupConfigs.begin(); it != m->groupConfigs.end();)
                {
                    DHCPConfig *pCurConfig = it->second;
                    if (pCurConfig == pConfig)
                    {
                        m->groupConfigs.erase(it++); /* Post increment returns copy of original that is then erased. */
                        fFound = true;
                    }
                    else
                        ++it;
                }
                break;
            }

            case DHCPConfigScope_MAC:
            case DHCPConfigScope_MachineNIC:
            {
                for (Data::IndividualConfigIterator it = m->individualConfigs.begin(); it != m->individualConfigs.end();)
                {
                    DHCPConfig *pCurConfig = it->second;
                    if (pCurConfig == pConfig)
                    {
                        m->individualConfigs.erase(it++); /* Post increment returns copy of original that is then erased. */
                        fFound = true;
                    }
                    else
                        ++it;
                }
                break;
            }

            default:
                AssertFailedReturn(E_FAIL);
        }

        /* Don't complain if already removed, right? */
        if (!fFound)
            return S_OK;
    }

    return i_doSaveSettings();
}


/**
 * Internal worker that saves the settings after a modification was made.
 *
 * @returns COM status code.
 *
 * @note    Caller must not hold any locks!
 */
HRESULT DHCPServer::i_doSaveSettings()
{
    // save the global settings; for that we should hold only the VirtualBox lock
    AutoWriteLock vboxLock(m->pVirtualBox COMMA_LOCKVAL_SRC_POS);
    return m->pVirtualBox->i_saveSettings();
}


HRESULT DHCPServer::getNetworkName(com::Utf8Str &aName)
{
    /* The name is const, so no need to for locking. */
    return aName.assignEx(m->strName);
}


HRESULT DHCPServer::getEnabled(BOOL *aEnabled)
{
    AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
    *aEnabled = m->enabled;
    return S_OK;
}


HRESULT DHCPServer::setEnabled(BOOL aEnabled)
{
    {
        AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
        m->enabled = aEnabled;
    }
    return i_doSaveSettings();
}


HRESULT DHCPServer::getIPAddress(com::Utf8Str &aIPAddress)
{
    AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
    return aIPAddress.assignEx(m->IPAddress);
}


HRESULT DHCPServer::getNetworkMask(com::Utf8Str &aNetworkMask)
{
    return m->globalConfig->i_getNetworkMask(aNetworkMask);
}


HRESULT DHCPServer::getLowerIP(com::Utf8Str &aIPAddress)
{
    AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
    return aIPAddress.assignEx(m->lowerIP);
}


HRESULT DHCPServer::getUpperIP(com::Utf8Str &aIPAddress)
{
    AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
    return aIPAddress.assignEx(m->upperIP);
}


HRESULT DHCPServer::setConfiguration(const com::Utf8Str &aIPAddress,
                                     const com::Utf8Str &aNetworkMask,
                                     const com::Utf8Str &aLowerIP,
                                     const com::Utf8Str &aUpperIP)
{
    RTNETADDRIPV4 IPAddress, NetworkMask, LowerIP, UpperIP;

    int vrc = RTNetStrToIPv4Addr(aIPAddress.c_str(), &IPAddress);
    if (RT_FAILURE(vrc))
        return setErrorBoth(E_INVALIDARG, vrc, tr("Invalid server address: %s"), aIPAddress.c_str());

    vrc = RTNetStrToIPv4Addr(aNetworkMask.c_str(), &NetworkMask);
    if (RT_FAILURE(vrc))
        return setErrorBoth(E_INVALIDARG, vrc, tr("Invalid netmask: %s"), aNetworkMask.c_str());

    vrc = RTNetStrToIPv4Addr(aLowerIP.c_str(), &LowerIP);
    if (RT_FAILURE(vrc))
        return setErrorBoth(E_INVALIDARG, vrc, tr("Invalid range lower address: %s"), aLowerIP.c_str());

    vrc = RTNetStrToIPv4Addr(aUpperIP.c_str(), &UpperIP);
    if (RT_FAILURE(vrc))
        return setErrorBoth(E_INVALIDARG, vrc, tr("Invalid range upper address: %s"), aUpperIP.c_str());

    /*
     * Insist on continuous mask.  May be also accept prefix length
     * here or address/prefix for aIPAddress?
     */
    vrc = RTNetMaskToPrefixIPv4(&NetworkMask, NULL);
    if (RT_FAILURE(vrc))
        return setErrorBoth(E_INVALIDARG, vrc, tr("Invalid netmask: %s"), aNetworkMask.c_str());

    /* It's more convenient to convert to host order once: */
    IPAddress.u   = RT_N2H_U32(IPAddress.u);
    NetworkMask.u = RT_N2H_U32(NetworkMask.u);
    LowerIP.u     = RT_N2H_U32(LowerIP.u);
    UpperIP.u     = RT_N2H_U32(UpperIP.u);

    /*
     * Addresses must be unicast and from the same network
     */
    if (   (IPAddress.u & UINT32_C(0xe0000000)) == UINT32_C(0xe0000000)
        || (IPAddress.u & ~NetworkMask.u) == 0
        || ((IPAddress.u & ~NetworkMask.u) | NetworkMask.u) == UINT32_C(0xffffffff))
        return setError(E_INVALIDARG, tr("Invalid server address: %s (mask %s)"), aIPAddress.c_str(), aNetworkMask.c_str());

    if (   (LowerIP.u & UINT32_C(0xe0000000)) == UINT32_C(0xe0000000)
        || (LowerIP.u & NetworkMask.u) != (IPAddress.u &NetworkMask.u)
        || (LowerIP.u & ~NetworkMask.u) == 0
        || ((LowerIP.u & ~NetworkMask.u) | NetworkMask.u) == UINT32_C(0xffffffff))
        return setError(E_INVALIDARG, tr("Invalid range lower address: %s (mask %s)"), aLowerIP.c_str(), aNetworkMask.c_str());

    if (   (UpperIP.u & UINT32_C(0xe0000000)) == UINT32_C(0xe0000000)
        || (UpperIP.u & NetworkMask.u) != (IPAddress.u &NetworkMask.u)
        || (UpperIP.u & ~NetworkMask.u) == 0
        || ((UpperIP.u & ~NetworkMask.u) | NetworkMask.u) == UINT32_C(0xffffffff))
        return setError(E_INVALIDARG, tr("Invalid range upper address"), aUpperIP.c_str(), aNetworkMask.c_str());

    /* The range should be valid. (It's okay to overlap the server IP.) */
    if (LowerIP.u > UpperIP.u)
        return setError(E_INVALIDARG, tr("Lower bound must be less or eqaul than the upper: %s vs %s"),
                        aLowerIP.c_str(), aUpperIP.c_str());

    /*
     * Input is valid, effect the changes.
     */
    HRESULT hrc;
    {
        AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
        m->IPAddress  = aIPAddress;
        m->lowerIP    = aLowerIP;
        m->upperIP    = aUpperIP;
        hrc = m->globalConfig->i_setNetworkMask(aNetworkMask);
    }
    if (SUCCEEDED(hrc))
        hrc = i_doSaveSettings();
    return hrc;
}


/**
 * Validates the VM name and slot, returning the machine ID.
 *
 * If a machine ID is given instead of a name, we won't check whether it
 * actually exists...
 *
 * @returns COM status code.
 * @param   aVmName             The VM name or UUID.
 * @param   a_uSlot             The slot.
 * @param   idMachine           Where to return the VM UUID.
 */
HRESULT DHCPServer::i_vmNameToIdAndValidateSlot(const com::Utf8Str &aVmName, ULONG a_uSlot, com::Guid &idMachine)
{
    if (a_uSlot <= 32)
    {
        /* Is it a UUID? */
        idMachine = aVmName;
        if (idMachine.isValid() && !idMachine.isZero())
            return S_OK;

        /* No, find the VM and get it's UUID. */
        ComObjPtr<Machine> ptrMachine;
        HRESULT hrc = m->pVirtualBox->i_findMachineByName(aVmName, true /*aSetError*/, &ptrMachine);
        if (SUCCEEDED(hrc))
            idMachine = ptrMachine->i_getId();
        return hrc;
    }
    return setError(E_INVALIDARG, tr("NIC slot number (%d) is out of range (0..32)"), a_uSlot);
}


/**
 * Translates a VM name/id and slot to an individual configuration object.
 *
 * @returns COM status code.
 * @param   a_strVmName         The VM name or ID.
 * @param   a_uSlot             The NIC slot.
 * @param   a_fCreateIfNeeded   Whether to create a new entry if not found.
 * @param   a_rPtrConfig        Where to return the config object.  It's
 *                              implicitly referenced, so we don't be returning
 *                              with any locks held.
 *
 * @note    Caller must not be holding any locks!
 */
HRESULT DHCPServer::i_vmNameAndSlotToConfig(const com::Utf8Str &a_strVmName, ULONG a_uSlot, bool a_fCreateIfNeeded,
                                            ComObjPtr<DHCPIndividualConfig> &a_rPtrConfig)
{
    /*
     * Validate the slot and normalize the name into a UUID.
     */
    com::Guid idMachine;
    HRESULT hrc = i_vmNameToIdAndValidateSlot(a_strVmName, a_uSlot, idMachine);
    if (SUCCEEDED(hrc))
    {
        Utf8Str strKey;
        int vrc = strKey.printfNoThrow("%RTuuid/%u", idMachine.raw(), a_uSlot);
        if (RT_SUCCESS(vrc))
        {
            /*
             * Look it up.
             */
            {
                AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
                Data::IndividualConfigIterator it = m->individualConfigs.find(strKey);
                if (it != m->individualConfigs.end())
                {
                    a_rPtrConfig = it->second;
                    return S_OK;
                }
            }
            if (a_fCreateIfNeeded)
            {
                /*
                 * Create a new slot.
                 */
                /* Instantiate the object: */
                hrc = a_rPtrConfig.createObject();
                if (SUCCEEDED(hrc))
                    hrc = a_rPtrConfig->initWithMachineIdAndSlot(m->pVirtualBox, this, idMachine, a_uSlot,
                                                                 m->uIndividualMACAddressVersion - UINT32_MAX / 4);
                if (SUCCEEDED(hrc))
                {
                    AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);

                    /* Check for creation race: */
                    Data::IndividualConfigIterator it = m->individualConfigs.find(strKey);
                    if (it != m->individualConfigs.end())
                    {
                        a_rPtrConfig.setNull();
                        a_rPtrConfig = it->second;
                        return S_OK;
                    }

                    /* Add it. */
                    try
                    {
                        m->individualConfigs[strKey] = a_rPtrConfig;

                        /* Save settings. */
                        alock.release();
                        return i_doSaveSettings();
                    }
                    catch (std::bad_alloc &)
                    {
                        hrc = E_OUTOFMEMORY;
                    }
                    a_rPtrConfig.setNull();
                }
            }
            else
                hrc = VBOX_E_OBJECT_NOT_FOUND;
        }
        else
            hrc = E_OUTOFMEMORY;
    }
    return hrc;
}


HRESULT DHCPServer::getEventSource(ComPtr<IEventSource> &aEventSource)
{
    NOREF(aEventSource);
    ReturnComNotImplemented();
}


HRESULT DHCPServer::getGlobalConfig(ComPtr<IDHCPGlobalConfig> &aGlobalConfig)
{
    /* The global configuration is immutable, so no need to lock anything here. */
    return m->globalConfig.queryInterfaceTo(aGlobalConfig.asOutParam());
}


HRESULT DHCPServer::getGroupConfigs(std::vector<ComPtr<IDHCPGroupConfig> > &aGroupConfigs)
{
    AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);

    size_t const cGroupConfigs = m->groupConfigs.size();
    try
    {
        aGroupConfigs.resize(cGroupConfigs);
    }
    catch (std::bad_alloc &)
    {
        return E_OUTOFMEMORY;
    }

    size_t i = 0;
    for (Data::GroupConfigIterator it = m->groupConfigs.begin(); it != m->groupConfigs.end(); ++it, i++)
    {
        Assert(i < cGroupConfigs);
        HRESULT hrc = it->second.queryInterfaceTo(aGroupConfigs[i].asOutParam());
        if (FAILED(hrc))
            return hrc;
    }

    return S_OK;
}


HRESULT DHCPServer::getIndividualConfigs(std::vector<ComPtr<IDHCPIndividualConfig> > &aIndividualConfigs)
{
    AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);

    size_t const cIndividualConfigs = m->individualConfigs.size();
    try
    {
        aIndividualConfigs.resize(cIndividualConfigs);
    }
    catch (std::bad_alloc &)
    {
        return E_OUTOFMEMORY;
    }

    size_t i = 0;
    for (Data::IndividualConfigIterator it = m->individualConfigs.begin(); it != m->individualConfigs.end(); ++it, i++)
    {
        Assert(i < cIndividualConfigs);
        HRESULT hrc = it->second.queryInterfaceTo(aIndividualConfigs[i].asOutParam());
        if (FAILED(hrc))
            return hrc;
    }

    return S_OK;
}


HRESULT DHCPServer::restart()
{
    if (!m->dhcp.isRunning())
        return setErrorBoth(E_FAIL, VERR_PROCESS_NOT_FOUND, tr("not running"));

    /*
     * Disabled servers will be brought down, but won't be restarted.
     * (see DHCPServer::start)
     */
    HRESULT hrc = stop();
    if (SUCCEEDED(hrc))
        hrc = start(m->trunkName, m->trunkType);
    return hrc;
}


/**
 * @throws std::bad_alloc
 */
HRESULT DHCPServer::i_writeDhcpdConfig(const char *pszFilename, uint32_t uMACAddressVersion) RT_NOEXCEPT
{
    /*
     * Produce the DHCP server configuration.
     */
    xml::Document doc;
    try
    {
        xml::ElementNode *pElmRoot = doc.createRootElement("DHCPServer");
        pElmRoot->setAttribute("networkName", m->strName);
        if (m->trunkName.isNotEmpty())
            pElmRoot->setAttribute("trunkName", m->trunkName);
        pElmRoot->setAttribute("trunkType", m->trunkType);
        pElmRoot->setAttribute("IPAddress",  m->IPAddress);
        pElmRoot->setAttribute("lowerIP", m->lowerIP);
        pElmRoot->setAttribute("upperIP", m->upperIP);
        pElmRoot->setAttribute("leasesFilename", m->strLeasesFilename);
        Utf8Str strNetworkMask;
        HRESULT hrc = m->globalConfig->i_getNetworkMask(strNetworkMask);
        if (FAILED(hrc))
            return hrc;
        pElmRoot->setAttribute("networkMask", strNetworkMask);

        /*
         * Process global options
         */
        m->globalConfig->i_writeDhcpdConfig(pElmRoot->createChild("Options"));

        /*
         * Groups.
         */
        for (Data::GroupConfigIterator it = m->groupConfigs.begin(); it != m->groupConfigs.end(); ++it)
            it->second->i_writeDhcpdConfig(pElmRoot->createChild("Group"));

        /*
         * Individual NIC configurations.
         */
        for (Data::IndividualConfigIterator it = m->individualConfigs.begin(); it != m->individualConfigs.end(); ++it)
            if (it->second->i_isMACAddressResolved(uMACAddressVersion))
                it->second->i_writeDhcpdConfig(pElmRoot->createChild("Config"));
            else
                LogRelFunc(("Skipping %RTuuid/%u, no MAC address.\n", it->second->i_getMachineId().raw(), it->second->i_getSlot()));
    }
    catch (std::bad_alloc &)
    {
        return E_OUTOFMEMORY;
    }

    /*
     * Write out the document.
     */
    try
    {
        xml::XmlFileWriter writer(doc);
        writer.write(pszFilename, false);
    }
    catch (...)
    {
        return E_FAIL;
    }

    return S_OK;
}


HRESULT DHCPServer::start(const com::Utf8Str &aTrunkName, const com::Utf8Str &aTrunkType)
{
    AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);

    /* Silently ignore attempts to run disabled servers. */
    if (!m->enabled)
        return S_OK;

    /*
     * Resolve the MAC addresses.  This requires us to leave the lock.
     */
    uint32_t uMACAddressVersion = m->uIndividualMACAddressVersion;
    if (m->individualConfigs.size() > 0)
    {
        m->uIndividualMACAddressVersion = uMACAddressVersion + 1;

        /* Retain pointers to all the individual configuration objects so we
           can safely access these after releaseing the lock: */
        std::vector< ComObjPtr<DHCPIndividualConfig> > vecIndividualConfigs;
        try
        {
            vecIndividualConfigs.resize(m->individualConfigs.size());
        }
        catch (std::bad_alloc &)
        {
            return E_OUTOFMEMORY;
        }
        size_t i = 0;
        for (Data::IndividualConfigIterator it = m->individualConfigs.begin(); it != m->individualConfigs.end(); ++it, i++)
            vecIndividualConfigs[i] = it->second;

        /* Drop the lock and resolve the MAC addresses: */
        alock.release();

        i = vecIndividualConfigs.size();
        while (i-- > 0)
            vecIndividualConfigs[i]->i_resolveMACAddress(uMACAddressVersion);

        /* Reacquire the lock  */
        alock.acquire();
        if (!m->enabled)
            return S_OK;
    }

    /*
     * Refuse to start a 2nd DHCP server instance for the same network.
     */
    if (m->dhcp.isRunning())
        return setErrorBoth(VBOX_E_OBJECT_IN_USE, VERR_PROCESS_RUNNING,
                            tr("Cannot start DHCP server because it is already running (pid %RTproc)"), m->dhcp.getPid());

    /*
     * Copy the startup parameters.
     */
    m->trunkName   = aTrunkName;
    m->trunkType   = aTrunkType;
    HRESULT hrc = i_calcLeasesConfigAndLogFilenames(m->strName);
    if (SUCCEEDED(hrc))
    {
        /*
         * Create configuration file path and write out the configuration.
         */
        hrc = i_writeDhcpdConfig(m->strConfigFilename.c_str(), uMACAddressVersion);
        if (SUCCEEDED(hrc))
        {
            /*
             * Setup the arguments and start the DHCP server.
             */
            m->dhcp.resetArguments();
            int vrc = m->dhcp.addArgPair("--comment", m->strName.c_str());
            if (RT_SUCCESS(vrc))
                vrc = m->dhcp.addArgPair("--config", m->strConfigFilename.c_str());
            if (RT_SUCCESS(vrc))
                vrc = m->dhcp.addArgPair("--log", m->strLogFilename.c_str());
            /** @todo Add --log-flags, --log-group-settings, and --log-destinations with
             *        associated IDHCPServer attributes.  (Not doing it now because that'll
             *        exhaust all reserved attribute slot in 6.0.) */
            if (RT_SUCCESS(vrc))
            {
                /* Start it: */
                vrc = m->dhcp.start(true /*aKillProcessOnStop*/);
                if (RT_FAILURE(vrc))
                    hrc = setErrorVrc(vrc, tr("Failed to start DHCP server for '%s': %Rrc"), m->strName.c_str(), vrc);
            }
            else
                hrc = setErrorVrc(vrc, tr("Failed to assemble the command line for DHCP server '%s': %Rrc"),
                                  m->strName.c_str(), vrc);
        }
    }
    return hrc;
}


HRESULT DHCPServer::stop(void)
{
    AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);

    int vrc = m->dhcp.stop();
    if (RT_SUCCESS(vrc))
        return S_OK;
    return setErrorVrc(vrc);
}


HRESULT DHCPServer::findLeaseByMAC(const com::Utf8Str &aMac, LONG aType,
                                    com::Utf8Str &aAddress, com::Utf8Str &aState, LONG64 *aIssued, LONG64 *aExpire)
{
    /* Reset output before we start */
    *aIssued = 0;
    *aExpire = 0;
    aAddress.setNull();
    aState.setNull();

    /*
     * Convert and check input.
     */
    RTMAC MacAddress;
    int vrc = RTStrConvertHexBytes(aMac.c_str(), &MacAddress, sizeof(MacAddress), RTSTRCONVERTHEXBYTES_F_SEP_COLON);
    if (vrc != VINF_SUCCESS)
        return setErrorBoth(E_INVALIDARG, vrc, tr("Invalid MAC address '%s': %Rrc"), aMac.c_str(), vrc);
    if (aType != 0)
        return setError(E_INVALIDARG, tr("flags must be zero (not %#x)"), aType);

    /*
     * Make sure we've got a lease filename to work with.
     */
    AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
    if (m->strLeasesFilename.isEmpty())
    {
        HRESULT hrc = i_calcLeasesConfigAndLogFilenames(m->strName);
        if (FAILED(hrc))
            return hrc;
    }

    /*
     * Try at least twice to read the lease database, more if busy.
     */
    uint64_t const nsStart = RTTimeNanoTS();
    for (uint32_t uReadAttempt = 0; ; uReadAttempt++)
    {
        /*
         * Try read the file.
         */
        xml::Document doc;
        try
        {
            xml::XmlFileParser parser;
            parser.read(m->strLeasesFilename.c_str(), doc);
        }
        catch (const xml::EIPRTFailure &e)
        {
            vrc = e.getStatus();
            LogThisFunc(("caught xml::EIPRTFailure: rc=%Rrc (attempt %u, msg=%s)\n", vrc, uReadAttempt, e.what()));
            if (   (   vrc == VERR_FILE_NOT_FOUND
                    || vrc == VERR_OPEN_FAILED
                    || vrc == VERR_ACCESS_DENIED
                    || vrc == VERR_SHARING_VIOLATION
                    || vrc == VERR_READ_ERROR /*?*/)
                && (   uReadAttempt == 0
                    || (   uReadAttempt < 64
                        && RTTimeNanoTS() - nsStart < RT_NS_1SEC / 4)) )
            {
                alock.release();

                if (uReadAttempt > 0)
                    RTThreadYield();
                RTThreadSleep(8/*ms*/);

                alock.acquire();
                LogThisFunc(("Retrying...\n"));
                continue;
            }
            return setErrorBoth(VBOX_E_FILE_ERROR, vrc, tr("Reading '%s' failed: %Rrc - %s"),
                                m->strLeasesFilename.c_str(), vrc, e.what());
        }
        catch (const RTCError &e)
        {
            if (e.what())
                return setError(VBOX_E_FILE_ERROR, tr("Reading '%s' failed: %s"), m->strLeasesFilename.c_str(), e.what());
            return setError(VBOX_E_FILE_ERROR, tr("Reading '%s' failed: RTCError"), m->strLeasesFilename.c_str());
        }
        catch (std::bad_alloc &)
        {
            return E_OUTOFMEMORY;
        }
        catch (...)
        {
            AssertFailed();
            return setError(VBOX_E_FILE_ERROR, tr("Reading '%s' failed: Unexpected exception"), m->strLeasesFilename.c_str());
        }

        /*
         * Look for that mac address.
         */
        xml::ElementNode *pElmRoot = doc.getRootElement();
        if (pElmRoot && pElmRoot->nameEquals("Leases"))
        {
            xml::NodesLoop          it(*pElmRoot);
            const xml::ElementNode *pElmLease;
            while ((pElmLease = it.forAllNodes()) != NULL)
                if (pElmLease->nameEquals("Lease"))
                {
                    const char *pszCurMacAddress = pElmLease->findAttributeValue("mac");
                    RTMAC       CurMacAddress;
                    if (   pszCurMacAddress
                        && RT_SUCCESS(RTNetStrToMacAddr(pszCurMacAddress, &CurMacAddress))
                        && memcmp(&CurMacAddress, &MacAddress, sizeof(MacAddress)) == 0)
                    {
                        /*
                         * Found it!
                         */
                        xml::ElementNode const *pElmTime    = pElmLease->findChildElement("Time");
                        int64_t                 secIssued   = 0;
                        uint32_t                cSecsToLive = 0;
                        if (pElmTime)
                        {
                            pElmTime->getAttributeValue("issued", &secIssued);
                            pElmTime->getAttributeValue("expiration", &cSecsToLive);
                            *aIssued = secIssued;
                            *aExpire = secIssued + cSecsToLive;
                        }
                        try
                        {
                            aAddress = pElmLease->findChildElementAttributeValue("Address", "value");
                            aState   = pElmLease->findAttributeValue("state");
                        }
                        catch (std::bad_alloc &)
                        {
                            return E_OUTOFMEMORY;
                        }

                        /* Check if the lease has expired in the mean time. */
                        HRESULT hrc = S_OK;
                        RTTIMESPEC Now;
                        if (   (aState.equals("acked") || aState.equals("offered") || aState.isEmpty())
                            && secIssued + cSecsToLive < RTTimeSpecGetSeconds(RTTimeNow(&Now)))
                            hrc = RT_SUCCESS(aState.assignNoThrow("expired")) ? S_OK : E_OUTOFMEMORY;
                        return hrc;
                    }
                }
        }
        break;
    }

    return setError(VBOX_E_OBJECT_NOT_FOUND, tr("Could not find a lease for %RTmac"), &MacAddress);
}


HRESULT DHCPServer::getConfig(DHCPConfigScope_T aScope, const com::Utf8Str &aName, ULONG aSlot, BOOL aMayAdd,
                              ComPtr<IDHCPConfig> &aConfig)
{
    if (aSlot != 0 && aScope != DHCPConfigScope_MachineNIC)
        return setError(E_INVALIDARG, tr("The 'slot' argument must be zero for all but the MachineNIC scope!"));

    switch (aScope)
    {
        case DHCPConfigScope_Global:
            if (aName.isNotEmpty())
                return setError(E_INVALIDARG, tr("The name must be empty or NULL for the Global scope!"));

            /* No locking required here. */
            return m->globalConfig.queryInterfaceTo(aConfig.asOutParam());

        case DHCPConfigScope_Group:
        {
            if (aName.isEmpty())
                return setError(E_INVALIDARG, tr("A group must have a name!"));
            if (aName.length() > _1K)
                return setError(E_INVALIDARG, tr("Name too long! %zu bytes", "", aName.length()), aName.length());

            /* Look up the group: */
            {
                AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
                Data::GroupConfigIterator it = m->groupConfigs.find(aName);
                if (it != m->groupConfigs.end())
                    return it->second.queryInterfaceTo(aConfig.asOutParam());
            }
            /* Create a new group if we can. */
            if (!aMayAdd)
                return setError(VBOX_E_OBJECT_NOT_FOUND, tr("Found no configuration for group %s"), aName.c_str());
            ComObjPtr<DHCPGroupConfig> ptrGroupConfig;
            HRESULT hrc = ptrGroupConfig.createObject();
            if (SUCCEEDED(hrc))
                hrc = ptrGroupConfig->initWithDefaults(m->pVirtualBox, this, aName);
            if (SUCCEEDED(hrc))
            {
                AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);

                /* Check for insertion race: */
                Data::GroupConfigIterator it = m->groupConfigs.find(aName);
                if (it != m->groupConfigs.end())
                    return it->second.queryInterfaceTo(aConfig.asOutParam()); /* creation race*/

                /* Try insert it: */
                try
                {
                    m->groupConfigs[aName] = ptrGroupConfig;
                }
                catch (std::bad_alloc &)
                {
                    return E_OUTOFMEMORY;
                }
                return ptrGroupConfig.queryInterfaceTo(aConfig.asOutParam());
            }
            return hrc;
        }

        case DHCPConfigScope_MachineNIC:
        {
            ComObjPtr<DHCPIndividualConfig> ptrIndividualConfig;
            HRESULT hrc = i_vmNameAndSlotToConfig(aName, aSlot, aMayAdd != FALSE, ptrIndividualConfig);
            if (SUCCEEDED(hrc))
                hrc = ptrIndividualConfig.queryInterfaceTo(aConfig.asOutParam());
            return hrc;
        }

        case DHCPConfigScope_MAC:
        {
            /* Check and Normalize the MAC address into a key: */
            RTMAC MACAddress;
            int vrc = RTNetStrToMacAddr(aName.c_str(), &MACAddress);
            if (RT_SUCCESS(vrc))
            {
                Utf8Str strKey;
                vrc = strKey.printfNoThrow("%RTmac", &MACAddress);
                if (RT_SUCCESS(vrc))
                {
                    /* Look up the MAC address: */
                    {
                        AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
                        Data::IndividualConfigIterator it = m->individualConfigs.find(strKey);
                        if (it != m->individualConfigs.end())
                            return it->second.queryInterfaceTo(aConfig.asOutParam());
                    }
                    if (aMayAdd)
                    {
                        /* Create a new individiual configuration: */
                        ComObjPtr<DHCPIndividualConfig> ptrIndividualConfig;
                        HRESULT hrc = ptrIndividualConfig.createObject();
                        if (SUCCEEDED(hrc))
                            hrc = ptrIndividualConfig->initWithMACAddress(m->pVirtualBox, this, &MACAddress);
                        if (SUCCEEDED(hrc))
                        {
                            AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);

                            /* Check for insertion race: */
                            Data::IndividualConfigIterator it = m->individualConfigs.find(strKey);
                            if (it != m->individualConfigs.end())
                                return it->second.queryInterfaceTo(aConfig.asOutParam()); /* creation race*/

                            /* Try insert it: */
                            try
                            {
                                m->individualConfigs[strKey] = ptrIndividualConfig;
                            }
                            catch (std::bad_alloc &)
                            {
                                return E_OUTOFMEMORY;
                            }
                            return ptrIndividualConfig.queryInterfaceTo(aConfig.asOutParam());
                        }
                    }
                    else
                        return setError(VBOX_E_OBJECT_NOT_FOUND, tr("Found no configuration for MAC address %s"), strKey.c_str());
                }
                return E_OUTOFMEMORY;
            }
            return setErrorBoth(E_INVALIDARG, vrc, tr("Invalid MAC address: %s"), aName.c_str());
        }

        default:
            return E_FAIL;
    }
}


/**
 * Calculates and updates the value of strLeasesFilename given @a aNetwork.
 */
HRESULT DHCPServer::i_calcLeasesConfigAndLogFilenames(const com::Utf8Str &aNetwork) RT_NOEXCEPT
{
    AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);

    /* The lease file must be the same as we used the last time, so careful when changing this code. */
    int vrc = m->strLeasesFilename.assignNoThrow(m->pVirtualBox->i_homeDir());
    if (RT_SUCCESS(vrc))
        vrc = RTPathAppendCxx(m->strLeasesFilename, aNetwork);
    if (RT_SUCCESS(vrc))
    {
        RTPathPurgeFilename(RTPathFilename(m->strLeasesFilename.mutableRaw()), RTPATH_STR_F_STYLE_HOST);

        /* The configuration file: */
        vrc = m->strConfigFilename.assignNoThrow(m->strLeasesFilename);
        if (RT_SUCCESS(vrc))
            vrc = m->strConfigFilename.appendNoThrow("-Dhcpd.config");


        /* The log file: */
        if (RT_SUCCESS(vrc))
        {
            vrc = m->strLogFilename.assignNoThrow(m->strLeasesFilename);
            if (RT_SUCCESS(vrc))
                vrc = m->strLogFilename.appendNoThrow("-Dhcpd.log");

            /* Finally, complete the leases file: */
            if (RT_SUCCESS(vrc))
            {
                vrc = m->strLeasesFilename.appendNoThrow("-Dhcpd.leases");
                if (RT_SUCCESS(vrc))
                {
                    RTPathPurgeFilename(RTPathFilename(m->strLeasesFilename.mutableRaw()), RTPATH_STR_F_STYLE_HOST);
                    m->strLeasesFilename.jolt();
                    return S_OK;
                }
            }
        }
    }
    return setErrorBoth(E_FAIL, vrc, tr("Failed to construct leases, config and log filenames: %Rrc"), vrc);
}