File: CfgMgr.cpp

package info (click to toggle)
dibbler 1.0.1-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 13,352 kB
  • sloc: cpp: 60,323; ansic: 12,235; sh: 11,951; yacc: 3,418; lex: 969; makefile: 940; perl: 319; xml: 116; python: 74
file content (398 lines) | stat: -rw-r--r-- 11,476 bytes parent folder | download | duplicates (3)
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
/*
 * Dibbler - a portable DHCPv6
 *
 * authors: Tomasz Mrugalski <thomson@klub.com.pl>
 *          Marek Senderski <msend@o2.pl>
 *
 * released under GNU GPL v2 only licence
 *
 */

#include <sys/types.h>
#include <string.h>
#include <iostream>
#include <fstream>
#include <string>
#include "CfgMgr.h"
#include "Logger.h"
#include "Portable.h"
#include "DHCPDefaults.h"
#include "Logger.h"

using namespace std;

TCfgMgr::TCfgMgr()
 :LogLevel(DEFAULT_LOGLEVEL),
  IsDone(false),
  DUIDType(DUID_TYPE_LLT), /* default DUID type: LLT */
  DUIDEnterpriseNumber(-1),
  DdnsProto(DNSUPDATE_TCP),
  DDNSTimeout_(DNSUPDATE_DEFAULT_TIMEOUT) // default is 1000 ms

#ifndef MOD_DISABLE_AUTH
  // Authentication
  ,AuthProtocol_(AUTH_PROTO_NONE),
  AuthAlgorithm_(0),
  AuthReplay_(AUTH_REPLAY_NONE),
  AuthDropUnauthenticated_(false) /// @todo should be true
#endif
{

}

TCfgMgr::~TCfgMgr() {
}

void TCfgMgr::setDDNSProtocol(DNSUpdateProtocol proto) {
    DdnsProto = proto;
}

// method compares both files and if differs
// returns true if files differs and false in the other case
bool TCfgMgr::compareConfigs(const std::string& cfgFile, const std::string& oldCfgFile)
{
    std::ifstream oldF,newF;
    bool newConf=false;
    // It's common for client and server so why not to create CfgMgr
    //open new and saved config files
    newF.open(cfgFile.c_str(),   ios::in|ios::binary);
    oldF.open(oldCfgFile.c_str(),ios::in|ios::binary);
    //is it possible to open both ?
    if(!newF.fail())
    {
        if (!oldF.fail())
        {
            //yes - comparision of old file and new file
            //first the length of both files
            newF.seekg(0,ios::end);
            oldF.seekg(0,ios::end);
            if((newF.tellg()) != oldF.tellg())
                newConf = true; //there is a diffrence at least in length
            else
            {
                //next contents
                newF.seekg(0,ios::beg);
                oldF.seekg(0,ios::beg);
                while((!newF.eof())&&(!oldF.eof())&&(!newConf))
                    newConf=(newF.get()!=oldF.get());
            }
            newF.close();
            oldF.close();
        }
        else
        {
            //there is no old config file, so there is new config
            //and it should be make copy of new one
            newF.close();
            newConf=true;
        }
    }
    else
    {
        Log(Error) << "Can't open file " << cfgFile
            << ". Config comparision aborted." << LogEnd;

    }
    return newConf;
}

// replaces copy cfgFile to oldCfgFile
void TCfgMgr::copyFile(const std::string& cfgFile, const std::string& oldCfgFile)
{
    ifstream newF;
    ofstream oOldF;
    //try to open input file
    newF.open(cfgFile.c_str(), ios::in|ios::binary);
    if (newF.fail())
        Log(Error) << "Can't open file "<<cfgFile
                  <<", when trying to save new config file." << LogEnd;
    else
    {
        newF.seekg(0,ios::end);
        int newLen=newF.tellg();
        newF.seekg(0,ios::beg);
        //try to open output file
        oOldF.open(oldCfgFile.c_str(),ios::trunc|ios::out|ios::binary);
        if (oOldF.fail())
        {
            Log(Error) << "Can't open file "<<oldCfgFile
                       <<", when trying to save new config file"<< LogEnd;
            newF.close();
        }
        else
            //if both opened try to copy
            while(newLen-->0)
                oOldF.put(newF.get());
    }
    newF.close();
    oOldF.close();
}


/**
 * @brief loads DUID from a file.
 *
 * This function also checks if DUID value exist and checks the correctness of this file.
 *
 * @param duidFile string representation of the DUID file.
 *
 * @return true if DUID value exists and is correct, false if doesn't.
 *
 */
bool TCfgMgr::loadDUID(const std::string& duidFile)
{
    ifstream f;
    f.open(duidFile.c_str());
    if ( !(f.is_open())  ) {
        // unable to open DUID file
        Log(Notice) << "Unable to open DUID file (" << duidFile << "), generating new DUID."
                    << LogEnd;
                return false;
    }

    string s;
    getline(f,s);
    f.close();

        this->DUID = new TDUID(s.c_str());

        Log(Debug) << "DUID's value = " << DUID->getPlain() << " was loaded from "
                   << duidFile << " file." << LogEnd;

        int duidLen = s.length();
    int duidLen2 = DUID->getLen();
    if (duidLen <= 0 || duidLen2 == 0) {
        Log(Error) << "DUID's length is 0. Please check that " << duidFile
                   << " is not empty and contains actual DUID. You can also delete it." << LogEnd;
        return false;
        }

    return true;
}

bool TCfgMgr::setDUID(const std::string& filename, TIfaceMgr & ifaceMgr) {

    // --- load DUID ---
    if (this->loadDUID(filename)) {
        Log(Info) << "My DUID is " << this->DUID->getPlain() << "." << LogEnd;
        return true;
    }
        // Failed to load DUID. We need to generate it.

    SPtr<TIfaceIface> realIface;

    bool found=false;

        ifaceMgr.firstIface();
    if (this->DUIDType == DUID_TYPE_EN) {
        realIface = ifaceMgr.getIface(); // use the first interface. It will be ignored anyway
        found = true;

        if (!realIface) {
            Log(Error) << "Unable to find any interfaces. Can't generate DUID" << LogEnd;
            return false;
        }
    }
    while( (!found) && (realIface=ifaceMgr.getIface()) )
    {
        realIface->firstLLAddress();
        char buf[64];
        memset(buf,0,64);

        if (!realIface->getMac()) {
          Log(Debug) << "DUID creation: Interface " << realIface->getFullName()
                     << " skipped: no link addresses." << LogEnd;
          continue;
        }
        if ( realIface->getMacLen()<6 ) {
          Log(Debug) << "DUID creation: Interface " << realIface->getFullName()
                     << " skipped: MAC length is " << realIface->getMacLen()
                     << ", but at least 6 is required." << LogEnd;
          continue;
        }
        if ( realIface->flagLoopback() ) {
            Log(Debug) << "DUID creation: Interface " << realIface->getFullName()
                     << " skipped: Interface is loopback." << LogEnd;
            continue;
        }
        if ( !memcmp(realIface->getMac(),buf,realIface->getMacLen()) ) {
          Log(Debug) << "DUID creation: Interface " << realIface->getFullName()
                     << " skipped: MAC is all zero. " << LogEnd;
          continue;
        }
        if ( !realIface->flagUp() ) {
          Log(Debug) << "DUID creation: Interface " << realIface->getFullName()
                     << " skipped: Interface is down." << LogEnd;
          continue;
        }

        found=true;
    }

    if(found) {
        if ( this->generateDUID(filename, realIface->getMac(),
                                realIface->getMacLen(), realIface->getHardwareType())) {
        if (this->DUIDType!=DUID_TYPE_EN)
              Log(Notice) << "DUID creation: generated using " << realIface->getFullName()
                          << " interface." << LogEnd;
        Log(Info) << "My DUID is " << this->DUID->getPlain() << "." << LogEnd;
        return true;
        } else {
            Log(Crit) << "DUID creation: generation attempt based on "
                      << realIface->getFullName() << " interface failed." << LogEnd;
            return false;
        }
    }

    Log(Crit) << "Cannot generate DUID, because there is no up and running interface with "
                 << "MAC address at least 6 bytes long." << LogEnd;
    this->DUID=new TDUID();
    return false;
}

bool TCfgMgr::generateDUID(const std::string& duidFile, char * mac,int macLen, int macType)
{
    ofstream f;
    f.open( duidFile.c_str() );
    if (!f.is_open()) {
        Log(Crit) << "Unable to create/write " << duidFile << " file." << LogEnd;
        return false;
    }
    string duidType;
    int DUIDlen = 0;
    char *DUID  = 0;
    long cur_time = 0;

    switch (this->DUIDType) {
    case DUID_TYPE_LLT:
        duidType = "link-local+time (duid-llt)";
        DUIDlen=macLen+8;
        DUID = new char[DUIDlen];
        writeUint16(DUID, this->DUIDType);
        writeUint16(DUID+2, macType);
        cur_time = (uint32_t)time(NULL);

        writeUint32(DUID+4, (cur_time-946684800) & 0xFFFFFFFF);
        /* 946684800=Number of seconds between midnight (UTC), January
           2000 and midnight (UTC), January 1970. It is 30 years.
           7 leap years of 366 days. 23 years of 365 days.
           Modified by Eric Gamess (UCV)
        */

        for (int i=0;i<macLen; i++)
            DUID[i+8]=mac[i];
        break;
    case DUID_TYPE_LL:
        duidType= "link-local (duid-ll)";
        DUIDlen = macLen+4;
        DUID = new char[DUIDlen];
        writeUint16(DUID, this->DUIDType);
        writeUint16(DUID+2, macType);
        for (int i=0;i<macLen; i++)
            DUID[i+4]=mac[i];
        break;
    case DUID_TYPE_EN:
        Log(Debug) << "DUID creation: EN: EnterpriseNumber=" << DUIDEnterpriseNumber
                   << ", Enterprise ID=" << DUIDEnterpriseID->getPlain() << LogEnd;
        duidType="Enterprise Number (duid-en)";
        DUIDlen = 6 + DUIDEnterpriseID->getLen();
        DUID = new char[DUIDlen];
        writeUint16(DUID, this->DUIDType);
        writeUint32(DUID+2, this->DUIDEnterpriseNumber);
        this->DUIDEnterpriseID->storeSelf(DUID+6);
        break;
      default:
        Log(Error) << "Invalid DUID type." << LogEnd;
        return false;
    }

    Log(Notice) << "DUID creation: Generating " << DUIDlen << "-bytes long "
                << duidType << " DUID." << LogEnd;
    this->DUID=new TDUID(DUID,DUIDlen);
    delete [] DUID;
    f << this->DUID->getPlain();
    f.close();
    return true;
}

void TCfgMgr::setWorkdir(std::string workdir) {
    Workdir = workdir;
}

string TCfgMgr::getWorkDir() {
    return Workdir;
}

string TCfgMgr::getLogName()
{
    return LogName;
}

int TCfgMgr::getLogLevel()
{
    return LogLevel;
}

SPtr<TDUID> TCfgMgr::getDUID()
{
    return DUID;
}

#if !defined(MOD_SRV_DISABLE_DNSUPDATE) && !defined(MOD_CLNT_DISABLE_DNSUPDATE)
void TCfgMgr::addKey(SPtr<TSIGKey> key) {
    Keys_.push_back(key);
}

SPtr<TSIGKey> TCfgMgr::getKey() {
    /// @todo: add some parameter that will pick the right key

    if (Keys_.empty())
	return SPtr<TSIGKey>();

    return Keys_.front(); // just return first key for now
}
#endif

#ifndef MOD_DISABLE_AUTH
void TCfgMgr::setAuthProtocol(AuthProtocols proto) {
    Log(Debug) << "Auth: setting auth protocol to " << proto << LogEnd;
    AuthProtocol_ = proto;
}

void TCfgMgr::setAuthReplay(AuthReplay replay_detection_mode) {
    AuthReplay_ = replay_detection_mode;
}

void TCfgMgr::setAuthAlgorithm(uint8_t algorithm) { // protocol specific value
    AuthAlgorithm_ = algorithm;
}

AuthProtocols TCfgMgr::getAuthProtocol() {
    return AuthProtocol_;
}

AuthReplay TCfgMgr::getAuthReplay() {
    return AuthReplay_;
}

uint8_t TCfgMgr::getAuthAlgorithm() {
    return AuthAlgorithm_;
}

void TCfgMgr::setAuthDropUnauthenticated(bool drop) {
    AuthDropUnauthenticated_ = drop;
}

bool TCfgMgr::getAuthDropUnauthenticated() {
    return AuthDropUnauthenticated_;
}

void TCfgMgr::setAuthRealm(const std::string& realm) {
    AuthRealm_ = realm;
    Log(Debug) << "AUTH: Realm set to '" << realm << "'." << LogEnd;
}

std::string TCfgMgr::getAuthRealm() {
    return AuthRealm_;
}
#endif