diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 09:34:30 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 09:34:30 +0000 |
commit | 4fc2f55f761d71aae1f145d5aa94ba929cc39676 (patch) | |
tree | 5c1e1db3b46dd4edbe11f612d93cb94b96891ce3 /dnsdist-lua-bindings-kvs.cc | |
parent | Initial commit. (diff) | |
download | dnsdist-4fc2f55f761d71aae1f145d5aa94ba929cc39676.tar.xz dnsdist-4fc2f55f761d71aae1f145d5aa94ba929cc39676.zip |
Adding upstream version 1.7.3.upstream/1.7.3upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dnsdist-lua-bindings-kvs.cc')
-rw-r--r-- | dnsdist-lua-bindings-kvs.cc | 115 |
1 files changed, 115 insertions, 0 deletions
diff --git a/dnsdist-lua-bindings-kvs.cc b/dnsdist-lua-bindings-kvs.cc new file mode 100644 index 0000000..b1e0c0f --- /dev/null +++ b/dnsdist-lua-bindings-kvs.cc @@ -0,0 +1,115 @@ +/* + * This file is part of PowerDNS or dnsdist. + * Copyright -- PowerDNS.COM B.V. and its contributors + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of version 2 of the GNU General Public License as + * published by the Free Software Foundation. + * + * In addition, for the avoidance of any doubt, permission is granted to + * link this program with OpenSSL and to (re)distribute the binaries + * produced as the result of such linking. + * + * 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, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ +#include "dnsdist.hh" +#include "dnsdist-kvs.hh" +#include "dnsdist-lua.hh" + +void setupLuaBindingsKVS(LuaContext& luaCtx, bool client) +{ + /* Key Value Store objects */ + luaCtx.writeFunction("KeyValueLookupKeySourceIP", [](boost::optional<uint8_t> v4Mask, boost::optional<uint8_t> v6Mask, boost::optional<bool> includePort) { + return std::shared_ptr<KeyValueLookupKey>(new KeyValueLookupKeySourceIP(v4Mask.get_value_or(32), v6Mask.get_value_or(128), includePort.get_value_or(false))); + }); + luaCtx.writeFunction("KeyValueLookupKeyQName", [](boost::optional<bool> wireFormat) { + return std::shared_ptr<KeyValueLookupKey>(new KeyValueLookupKeyQName(wireFormat ? *wireFormat : true)); + }); + luaCtx.writeFunction("KeyValueLookupKeySuffix", [](boost::optional<size_t> minLabels, boost::optional<bool> wireFormat) { + return std::shared_ptr<KeyValueLookupKey>(new KeyValueLookupKeySuffix(minLabels ? *minLabels : 0, wireFormat ? *wireFormat : true)); + }); + luaCtx.writeFunction("KeyValueLookupKeyTag", [](const std::string& tag) { + return std::shared_ptr<KeyValueLookupKey>(new KeyValueLookupKeyTag(tag)); + }); + +#ifdef HAVE_LMDB + luaCtx.writeFunction("newLMDBKVStore", [client](const std::string& fname, const std::string& dbName, boost::optional<bool> noLock) { + if (client) { + return std::shared_ptr<KeyValueStore>(nullptr); + } + return std::shared_ptr<KeyValueStore>(new LMDBKVStore(fname, dbName, noLock.get_value_or(false))); + }); +#endif /* HAVE_LMDB */ + +#ifdef HAVE_CDB + luaCtx.writeFunction("newCDBKVStore", [client](const std::string& fname, time_t refreshDelay) { + if (client) { + return std::shared_ptr<KeyValueStore>(nullptr); + } + return std::shared_ptr<KeyValueStore>(new CDBKVStore(fname, refreshDelay)); + }); +#endif /* HAVE_CDB */ + + luaCtx.registerFunction<std::string(std::shared_ptr<KeyValueStore>::*)(const boost::variant<ComboAddress, DNSName, std::string>, boost::optional<bool> wireFormat)>("lookup", [](std::shared_ptr<KeyValueStore>& kvs, const boost::variant<ComboAddress, DNSName, std::string> keyVar, boost::optional<bool> wireFormat) { + std::string result; + if (!kvs) { + return result; + } + + if (keyVar.type() == typeid(ComboAddress)) { + const auto ca = boost::get<ComboAddress>(&keyVar); + KeyValueLookupKeySourceIP lookup(32, 128, false); + for (const auto& key : lookup.getKeys(*ca)) { + if (kvs->getValue(key, result)) { + return result; + } + } + } + else if (keyVar.type() == typeid(DNSName)) { + const DNSName* dn = boost::get<DNSName>(&keyVar); + KeyValueLookupKeyQName lookup(wireFormat ? *wireFormat : true); + for (const auto& key : lookup.getKeys(*dn)) { + if (kvs->getValue(key, result)) { + return result; + } + } + } + else if (keyVar.type() == typeid(std::string)) { + const std::string* keyStr = boost::get<std::string>(&keyVar); + kvs->getValue(*keyStr, result); + } + + return result; + }); + + luaCtx.registerFunction<std::string(std::shared_ptr<KeyValueStore>::*)(const DNSName&, boost::optional<size_t> minLabels, boost::optional<bool> wireFormat)>("lookupSuffix", [](std::shared_ptr<KeyValueStore>& kvs, const DNSName& dn, boost::optional<size_t> minLabels, boost::optional<bool> wireFormat) { + std::string result; + if (!kvs) { + return result; + } + + KeyValueLookupKeySuffix lookup(minLabels ? *minLabels : 0, wireFormat ? *wireFormat : true); + for (const auto& key : lookup.getKeys(dn)) { + if (kvs->getValue(key, result)) { + return result; + } + } + + return result; + }); + + luaCtx.registerFunction<bool(std::shared_ptr<KeyValueStore>::*)()>("reload", [](std::shared_ptr<KeyValueStore>& kvs) { + if (!kvs) { + return false; + } + + return kvs->reload(); + }); +} |