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
|
/*
* 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.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include "cdb.hh"
CDB::CDB(const string &cdbfile)
{
d_fd = open(cdbfile.c_str(), O_RDONLY);
if (d_fd < 0)
{
throw std::runtime_error("Failed to open cdb database file '"+cdbfile+"': " + stringerror());
}
memset(&d_cdbf,0,sizeof(struct cdb_find));
int cdbinit = cdb_init(&d_cdb, d_fd);
if (cdbinit < 0)
{
close(d_fd);
d_fd = -1;
throw std::runtime_error("Failed to initialize cdb structure for database '+cdbfile+': '" + std::to_string(cdbinit) + "'");
}
}
CDB::~CDB() {
cdb_free(&d_cdb);
close(d_fd);
}
int CDB::searchKey(const string &key) {
d_searchType = SearchKey;
// A 'bug' in tinycdb (the lib used for reading the CDB files) means we have to copy the key because the cdb_find struct
// keeps a pointer to it.
d_key = key;
return cdb_findinit(&d_cdbf, &d_cdb, d_key.c_str(), d_key.size());
}
bool CDB::searchSuffix(const string &key) {
d_searchType = SearchSuffix;
//See CDB::searchKey()
d_key = key;
// We are ok with a search on things, but we do want to know if a record with that key exists.........
bool hasDomain = (cdb_find(&d_cdb, d_key.c_str(), d_key.size()) == 1);
if (hasDomain) {
cdb_seqinit(&d_seqPtr, &d_cdb);
}
return hasDomain;
}
void CDB::searchAll() {
d_searchType = SearchAll;
cdb_seqinit(&d_seqPtr, &d_cdb);
}
bool CDB::moveToNext() {
int hasNext = 0;
if (d_searchType == SearchKey) {
hasNext = cdb_findnext(&d_cdbf);
} else {
hasNext = cdb_seqnext(&d_seqPtr, &d_cdb);
}
return (hasNext > 0);
}
bool CDB::readNext(pair<string, string> &value) {
while (moveToNext()) {
unsigned int pos;
unsigned int len;
pos = cdb_keypos(&d_cdb);
len = cdb_keylen(&d_cdb);
std::string key;
key.resize(len);
int ret = cdb_read(&d_cdb, &key[0], len, pos);
if (ret < 0) {
throw std::runtime_error("Error while reading key for key '" + key + "' from CDB database: " + std::to_string(ret));
}
if (d_searchType == SearchSuffix) {
char *p = strstr(const_cast<char*>(key.c_str()), d_key.c_str());
if (p == nullptr) {
continue;
}
}
pos = cdb_datapos(&d_cdb);
len = cdb_datalen(&d_cdb);
std::string val;
val.resize(len);
ret = cdb_read(&d_cdb, &val[0], len, pos);
if (ret < 0) {
throw std::runtime_error("Error while reading value for key '" + key + "' from CDB database: " + std::to_string(ret));
}
value = {std::move(key), std::move(val)};
return true;
}
// We're done searching, so we can clean up d_key
if (d_searchType != SearchAll) {
d_key.clear();
}
return false;
}
vector<string> CDB::findall(string &key)
{
vector<string> ret;
struct cdb_find cdbf;
int res = cdb_findinit(&cdbf, &d_cdb, key.c_str(), key.size());
if (res < 0) {
throw std::runtime_error("Error looking up key '" + key + "' from CDB database: " + std::to_string(res));
}
while(cdb_findnext(&cdbf) > 0) {
unsigned int vpos = cdb_datapos(&d_cdb);
unsigned int vlen = cdb_datalen(&d_cdb);
std::string val;
val.resize(vlen);
res = cdb_read(&d_cdb, &val[0], vlen, vpos);
if (res < 0) {
throw std::runtime_error("Error while reading value for key '" + key + "' from CDB database: " + std::to_string(res));
}
ret.push_back(std::move(val));
}
return ret;
}
bool CDB::keyExists(const string& key)
{
int ret = cdb_find(&d_cdb, key.c_str(), key.size());
if (ret < 0) {
throw std::runtime_error("Error while looking up key '" + key + "' from CDB database: " + std::to_string(ret));
}
if (ret == 0) {
/* no such key */
return false;
}
return true;
}
bool CDB::findOne(const string& key, string& value)
{
if (!keyExists(key)) {
return false;
}
unsigned int vpos = cdb_datapos(&d_cdb);
unsigned int vlen = cdb_datalen(&d_cdb);
value.resize(vlen);
int ret = cdb_read(&d_cdb, &value[0], vlen, vpos);
if (ret < 0) {
throw std::runtime_error("Error while reading value for key '" + key + "' from CDB database: " + std::to_string(ret));
}
return true;
}
CDBWriter::CDBWriter(int fd): d_fd(fd)
{
cdb_make_start(&d_cdbm, d_fd);
}
CDBWriter::~CDBWriter()
{
close();
}
void CDBWriter::close()
{
if (d_fd >= 0) {
cdb_make_finish(&d_cdbm);
::close(d_fd);
d_fd = -1;
}
}
bool CDBWriter::addEntry(const std::string& key, const std::string& value)
{
if (d_fd < 0) {
throw std::runtime_error("Can't add an entry to a closed CDB database");
}
int ret = cdb_make_add(&d_cdbm, key.c_str(), key.size(), value.c_str(), value.size());
if (ret != 0) {
throw std::runtime_error("Error adding key '" + key + "' to CDB database: " + std::to_string(ret));
}
return true;
}
|