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
// Copyright (C) 2025 Internet Systems Consortium, Inc. ("ISC")
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.

#include <config.h>

#include <legal_log_mgr_factory.h><--- Include file:  not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <dhcpsrv/dhcpsrv_log.h>

using namespace isc::db;
using namespace std;

namespace isc {
namespace dhcp {

isc::asiolink::IOServicePtr LegalLogMgrFactory::io_service_;
map<string, pair<LegalLogMgrFactory::Factory, LegalLogMgrFactory::DBVersion>> LegalLogMgrFactory::map_;
LegalLogMgrPool LegalLogMgrFactory::pool_;

bool
LegalLogMgrFactory::registerBackendFactory(const string& db_type,
                                            const Factory& factory,
                                            bool no_log,
                                            DBVersion db_version) {
    if (map_.count(db_type)) {
        return (false);
    }

    static auto default_db_version = []() -> string {
        return (string());
    };

    if (!db_version) {
        db_version = default_db_version;
    }

    map_.insert(pair<string, pair<Factory, DBVersion>>(db_type, pair<Factory, DBVersion>(factory, db_version)));

    // We are dealing here with static logger initialization fiasco.
    // registerFactory may be called from constructors of static global
    // objects for built in backends. The logging is not initialized yet,
    // so the LOG_DEBUG would throw.
    if (!no_log) {
        LOG_DEBUG(dhcpsrv_logger, DHCPSRV_DBG_TRACE, DHCPSRV_FORENSIC_BACKEND_REGISTER)
            .arg(db_type);
    }
    return (true);
}

bool
LegalLogMgrFactory::unregisterBackendFactory(const string& db_type, bool no_log) {
    // Look for it.
    auto index = map_.find(db_type);

    // If it's there remove it
    if (index != map_.end()) {
        map_.erase(index);
        delAllBackends(db_type);
        if (!no_log) {
            LOG_DEBUG(dhcpsrv_logger, DHCPSRV_DBG_TRACE,
                    DHCPSRV_FORENSIC_BACKEND_DEREGISTER)
                .arg(db_type);
        }
        return (true);
    }
    return (false);
}

void
LegalLogMgrFactory::addBackend(DatabaseConnection::ParameterMap& parameters, ManagerID id) {
    // Get the database type to locate a factory function.
    auto it = parameters.find("type");
    if (it == parameters.end()) {
        isc_throw(InvalidParameter, "Forensic log backend specification lacks the "
                  "'type' keyword");
    }

    string db_type = it->second;
    auto index = map_.find(db_type);

    // No match?
    if (index == map_.end()) {
        if ((db_type == "mysql") || (db_type == "postgresql")) {
            string with = (db_type == "postgresql" ? "pgsql" : db_type);
            isc_throw(InvalidType, "The Kea server has not been compiled with "
                      "support for configuration database type: " << db_type
                      << ". Did you forget to use --with-"
                      << with << " during compilation or to load libdhcp_"
                      << with << " hook library?");
        }
        isc_throw(InvalidType, "The type of the forensic log backend: '" <<
                  db_type << "' is not supported");
    }

    // Call the factory and push the pointer on sources.
    auto backend = index->second.first(parameters);
    if (!backend) {
        isc_throw(Unexpected, "Forensic log backend " << db_type <<
                  " factory returned NULL");
    }

    // Add the parameters and an empty instance in case retry on startup is configured.
    pool_[id] = pair<DatabaseConnection::ParameterMap, LegalLogMgrPtr>(parameters, LegalLogMgrPtr());

    backend->open();

    // Apply extra parameters.
    if (parameters.find("request-parser-format") != parameters.end()) {
        backend->setRequestFormatExpression(parameters["request-parser-format"]);
    }
    if (parameters.find("response-parser-format") != parameters.end()) {
        backend->setResponseFormatExpression(parameters["response-parser-format"]);
    }
    if (parameters.find("timestamp-format") != parameters.end()) {
        backend->setTimestampFormat(parameters["timestamp-format"]);
    }

    // Backend instance created successfully.
    pool_[id] = pair<DatabaseConnection::ParameterMap, LegalLogMgrPtr>(parameters, backend);
}

void
LegalLogMgrFactory::delAllBackends() {
    pool_.clear();
}

void
LegalLogMgrFactory::delAllBackends(const std::string& db_type) {
    auto it = pool_.begin();

    while (it != pool_.end()) {
        if (it->second.second && it->second.second->getType() == db_type) {
            it = pool_.erase(it);
        } else {
            ++it;
        }
    }
}

LegalLogMgrPtr&
LegalLogMgrFactory::instance(ManagerID id) {
    auto it = pool_.find(id);
    if (it != pool_.end()) {
        return (it->second.second);
    }
    // Usually the unit tests do not create the instances using LegalLogMgrFactory::addBackend or by
    // calling parseConfig or parseDatabase or parseFile, so an empty instance must be returned when
    // calling LegalLogMgrFactory::instance() - this function returns a reference, so it can not be
    // created on the stack, it must be stored as a static variable.
    static LegalLogMgrPtr backend;
    if (!id) {
        DatabaseConnection::ParameterMap parameters;
        pool_[id] = pair<DatabaseConnection::ParameterMap, LegalLogMgrPtr>(parameters, backend);
        return (pool_[id].second);
    }
    return (backend);
}

void
LegalLogMgrFactory::setParameters(DatabaseConnection::ParameterMap parameters, ManagerID id) {
    // Call LegalLogMgrFactory::instance first so that unit tests can have access to the empty
    // entry in the pool.
    LegalLogMgrFactory::instance(id);
    auto it = pool_.find(id);
    if (it != pool_.end()) {
        it->second.first = parameters;
        return;
    }
}

DatabaseConnection::ParameterMap
LegalLogMgrFactory::getParameters(ManagerID id) {
    auto it = pool_.find(id);
    if (it != pool_.end()) {
        return (it->second.first);
    }
    return (DatabaseConnection::ParameterMap());
}

bool
LegalLogMgrFactory::delBackend(const string& db_type,
                                DatabaseConnection::ParameterMap& parameters,
                                bool if_unusable) {
    bool deleted = false;
    if (if_unusable) {
        deleted = true;
    }

    for (auto it = pool_.begin(); it != pool_.end(); ++it) {
        if (!it->second.second || it->second.second->getType() != db_type || it->second.first != parameters) {
            continue;
        }
        if (if_unusable && (!(it->second.second->isUnusable()))) {
            deleted = false;
            continue;
        }
        it->second.second = LegalLogMgrPtr();
        return (true);
    }
    return (deleted);
}

bool
LegalLogMgrFactory::delBackend(ManagerID id,
                                bool if_unusable) {
    bool deleted = false;
    if (if_unusable) {
        deleted = true;
    }

    auto it = pool_.find(id);
    if (it != pool_.end()) {
        if (if_unusable && it->second.second && !it->second.second->isUnusable()) {
            return (false);
        }
        it->second.second = LegalLogMgrPtr();
        return (true);
    }
    return (deleted);
}

bool
LegalLogMgrFactory::registeredFactory(const string& db_type) {
    auto index = map_.find(db_type);
    return (index != map_.end());
}

void
LegalLogMgrFactory::logRegistered() {
    stringstream txt;

    for (auto const& x : map_) {
        if (!txt.str().empty()) {
            txt << " ";
        }
        txt << x.first;
    }

    LOG_INFO(dhcpsrv_logger, DHCPSRV_FORENSIC_BACKENDS_REGISTERED)
        .arg(txt.str());
}

list<string>
LegalLogMgrFactory::getDBVersions() {
    list<string> result;
    for (auto const& x : map_) {
        auto version = x.second.second();
        if (!version.empty()) {
            result.push_back(version);
        }
    }

    return (result);
}

bool
LegalLogMgrFactory::haveInstance(std::string type) {
    for (auto const& backend : pool_) {
        if (backend.second.second && backend.second.second->getType() == type) {
            return (true);
        }
    }
    return (false);
}

} // end of namespace isc::dhcp
} // end of namespace isc