• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

PowerDNS / pdns / 8246836297

12 Mar 2024 09:56AM UTC coverage: 53.746% (-5.4%) from 59.178%
8246836297

push

github

web-flow
Merge pull request #13879 from Habbie/auth-lua-filterforward-empty

auth LUA: support returning empty set in filterForward

23464 of 68850 branches covered (34.08%)

Branch coverage included in aggregate %.

0 of 8 new or added lines in 1 file covered. (0.0%)

12574 existing lines in 133 files now uncovered.

89131 of 140646 relevant lines covered (63.37%)

3409522.02 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

66.03
/modules/gpgsqlbackend/spgsql.cc
1
/*
2
 * This file is part of PowerDNS or dnsdist.
3
 * Copyright -- PowerDNS.COM B.V. and its contributors
4
 *
5
 * This program is free software; you can redistribute it and/or modify
6
 * it under the terms of version 2 of the GNU General Public License as
7
 * published by the Free Software Foundation.
8
 *
9
 * In addition, for the avoidance of any doubt, permission is granted to
10
 * link this program with OpenSSL and to (re)distribute the binaries
11
 * produced as the result of such linking.
12
 *
13
 * This program is distributed in the hope that it will be useful,
14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
 * GNU General Public License for more details.
17
 *
18
 * You should have received a copy of the GNU General Public License
19
 * along with this program; if not, write to the Free Software
20
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21
 */
22

23
#ifdef HAVE_CONFIG_H
24
#include "config.h"
25
#endif
26
#include <string>
27
#include "spgsql.hh"
28
#include <sys/time.h>
29
#include <iostream>
30
#include "pdns/logger.hh"
31
#include "pdns/dns.hh"
32
#include "pdns/namespaces.hh"
33
#include <algorithm>
34

35
class SPgSQLStatement : public SSqlStatement
36
{
37
public:
38
  SPgSQLStatement(const string& query, bool dolog, int nparams, SPgSQL* db, unsigned int nstatement)
39
  {
77,128✔
40
    d_query = query;
77,128✔
41
    d_dolog = dolog;
77,128✔
42
    d_parent = db;
77,128✔
43
    d_nparams = nparams;
77,128✔
44
    d_nstatement = nstatement;
77,128✔
45
  }
77,128✔
46

47
  SSqlStatement* bind(const string& name, bool value) override { return bind(name, string(value ? "t" : "f")); }
486,975✔
48
  SSqlStatement* bind(const string& name, int value) override { return bind(name, std::to_string(value)); }
409,217✔
49
  SSqlStatement* bind(const string& name, uint32_t value) override { return bind(name, std::to_string(value)); }
295,330✔
50
  SSqlStatement* bind(const string& name, long value) override { return bind(name, std::to_string(value)); }
68✔
UNCOV
51
  SSqlStatement* bind(const string& name, unsigned long value) override { return bind(name, std::to_string(value)); }
×
52
  SSqlStatement* bind(const string& name, long long value) override { return bind(name, std::to_string(value)); }
×
53
  SSqlStatement* bind(const string& name, unsigned long long value) override { return bind(name, std::to_string(value)); }
×
54
  SSqlStatement* bind(const string& /* name */, const std::string& value) override
55
  {
2,041,656✔
56
    prepareStatement();
2,041,656✔
57
    allocate();
2,041,656✔
58
    if (d_paridx >= d_nparams) {
2,041,656!
59
      releaseStatement();
×
60
      throw SSqlException("Attempt to bind more parameters than query has: " + d_query);
×
61
    }
×
62
    paramValues[d_paridx] = new char[value.size() + 1];
2,041,656✔
63
    memset(paramValues[d_paridx], 0, sizeof(char) * (value.size() + 1));
2,041,656✔
64
    value.copy(paramValues[d_paridx], value.size());
2,041,656✔
65
    paramLengths[d_paridx] = value.size();
2,041,656✔
66
    d_paridx++;
2,041,656✔
67
    return this;
2,041,656✔
68
  }
2,041,656✔
69
  SSqlStatement* bindNull(const string& /* name */) override
70
  {
141,921✔
71
    prepareStatement();
141,921✔
72
    d_paridx++;
141,921✔
73
    return this;
141,921✔
74
  } // these are set null in allocate()
141,921✔
75
  SSqlStatement* execute() override
76
  {
301,942✔
77
    prepareStatement();
301,942✔
78
    if (d_dolog) {
301,942!
79
      g_log << Logger::Warning << "Query " << ((long)(void*)this) << ": Statement: " << d_query << endl;
×
80
      if (d_paridx) {
×
81
        // Log message is similar, but not exactly the same as the postgres server log.
82
        std::stringstream log_message;
×
83
        log_message << "Query " << ((long)(void*)this) << ": Parameters: ";
×
84
        for (int i = 0; i < d_paridx; i++) {
×
85
          if (i != 0) {
×
86
            log_message << ", ";
×
87
          }
×
88
          log_message << "$" << (i + 1) << " = ";
×
89
          if (paramValues[i] == nullptr) {
×
90
            log_message << "NULL";
×
91
          }
×
92
          else {
×
93
            log_message << "'" << paramValues[i] << "'";
×
94
          }
×
95
        }
×
96
        g_log << Logger::Warning << log_message.str() << endl;
×
97
      }
×
98
      d_dtime.set();
×
99
    }
×
100
    if (!d_stmt.empty()) {
301,942!
101
      d_res_set = PQexecPrepared(d_db(), d_stmt.c_str(), d_nparams, paramValues, paramLengths, nullptr, 0);
301,942✔
102
    }
301,942✔
103
    else {
×
104
      d_res_set = PQexecParams(d_db(), d_query.c_str(), d_nparams, nullptr, paramValues, paramLengths, nullptr, 0);
×
105
    }
×
106
    ExecStatusType status = PQresultStatus(d_res_set);
301,942✔
107
    if (status != PGRES_COMMAND_OK && status != PGRES_TUPLES_OK && status != PGRES_NONFATAL_ERROR) {
301,942!
108
      string errmsg(PQresultErrorMessage(d_res_set));
×
109
      releaseStatement();
×
110
      throw SSqlException("Fatal error during query: " + d_query + string(": ") + errmsg);
×
111
    }
×
112
    d_cur_set = 0;
301,942✔
113
    if (d_dolog) {
301,942!
114
      auto diff = d_dtime.udiffNoReset();
×
115
      g_log << Logger::Warning << "Query " << ((long)(void*)this) << ": " << diff << " us to execute" << endl;
×
116
    }
×
117

118
    nextResult();
301,942✔
119
    return this;
301,942✔
120
  }
301,942✔
121

122
  void nextResult()
123
  {
316,265✔
124
    if (d_res_set == nullptr)
316,265✔
125
      return;
14,323✔
126
    if (d_cur_set >= PQntuples(d_res_set)) {
301,942✔
127
      PQclear(d_res_set);
287,618✔
128
      d_res_set = nullptr;
287,618✔
129
      return;
287,618✔
130
    }
287,618✔
131
    if (PQftype(d_res_set, 0) == 1790) { // REFCURSOR
14,324!
132
      g_log << Logger::Error << "Postgres query returned a REFCURSOR and we do not support those - see https://github.com/PowerDNS/pdns/pull/10259" << endl;
×
133
      PQclear(d_res_set);
×
134
      d_res_set = nullptr;
×
135
    }
×
136
    else {
14,324✔
137
      d_res = d_res_set;
14,324✔
138
      d_res_set = nullptr;
14,324✔
139
      d_resnum = PQntuples(d_res);
14,324✔
140
    }
14,324✔
141
  }
14,324✔
142

143
  bool hasNextRow() override
144
  {
241,642✔
145
    if (d_dolog && d_residx == d_resnum) {
241,642!
146
      g_log << Logger::Warning << "Query " << ((long)(void*)this) << ": " << d_dtime.udiff() << " us total to last row" << endl;
×
147
    }
×
148

149
    return d_residx < d_resnum;
241,642✔
150
  }
241,642✔
151

152
  SSqlStatement* nextRow(row_t& row) override
153
  {
224,502✔
154
    int i;
224,502✔
155
    row.clear();
224,502✔
156
    if (d_residx >= d_resnum || !d_res)
224,502!
157
      return this;
×
158
    row.reserve(PQnfields(d_res));
224,502✔
159
    for (i = 0; i < PQnfields(d_res); i++) {
2,154,147✔
160
      if (PQgetisnull(d_res, d_residx, i)) {
1,929,645✔
161
        row.emplace_back("");
150,277✔
162
      }
150,277✔
163
      else if (PQftype(d_res, i) == 16) { // BOOLEAN
1,779,368✔
164
        char* val = PQgetvalue(d_res, d_residx, i);
146✔
165
        row.emplace_back(val[0] == 't' ? "1" : "0");
146✔
166
      }
146✔
167
      else {
1,779,222✔
168
        row.emplace_back(PQgetvalue(d_res, d_residx, i));
1,779,222✔
169
      }
1,779,222✔
170
    }
1,929,645✔
171
    d_residx++;
224,502✔
172
    if (d_residx >= d_resnum) {
224,502✔
173
      PQclear(d_res);
14,323✔
174
      d_res = nullptr;
14,323✔
175
      nextResult();
14,323✔
176
    }
14,323✔
177
    return this;
224,502✔
178
  }
224,502✔
179

180
  SSqlStatement* getResult(result_t& result) override
181
  {
391✔
182
    result.clear();
391✔
183
    if (d_res == nullptr)
391!
UNCOV
184
      return this;
×
185
    result.reserve(d_resnum);
391✔
186
    row_t row;
391✔
187
    while (hasNextRow()) {
846✔
188
      nextRow(row);
455✔
189
      result.push_back(std::move(row));
455✔
190
    }
455✔
191
    return this;
391✔
192
  }
391✔
193

194
  SSqlStatement* reset() override
195
  {
376,189✔
196
    int i;
376,189✔
197
    if (d_res) {
376,189!
198
      PQclear(d_res);
×
199
    }
×
200
    if (d_res_set) {
376,189!
201
      PQclear(d_res_set);
×
202
    }
×
203
    d_res_set = nullptr;
376,189✔
204
    d_res = nullptr;
376,189✔
205
    d_paridx = d_residx = d_resnum = 0;
376,189✔
206
    if (paramValues) {
376,189✔
207
      for (i = 0; i < d_nparams; i++) {
2,485,515✔
208
        if (paramValues[i]) {
2,183,577✔
209
          delete[] paramValues[i];
2,041,656✔
210
        }
2,041,656✔
211
      }
2,183,577✔
212
    }
301,938✔
213
    delete[] paramValues;
376,189✔
214
    paramValues = nullptr;
376,189✔
215
    delete[] paramLengths;
376,189✔
216
    paramLengths = nullptr;
376,189✔
217
    return this;
376,189✔
218
  }
376,189✔
219

220
  const std::string& getQuery() override { return d_query; }
×
221

222
  ~SPgSQLStatement() override
223
  {
74,246✔
224
    releaseStatement();
74,246✔
225
  }
74,246✔
226

227
private:
228
  PGconn* d_db()
229
  {
307,575✔
230
    return d_parent->db();
307,575✔
231
  }
307,575✔
232

233
  void releaseStatement()
234
  {
74,247✔
235
    d_prepared = false;
74,247✔
236
    reset();
74,247✔
237
    if (!d_stmt.empty()) {
74,247✔
238
      string cmd = string("DEALLOCATE " + d_stmt);
2,700✔
239
      PGresult* res = PQexec(d_db(), cmd.c_str());
2,700✔
240
      PQclear(res);
2,700✔
241
      d_stmt.clear();
2,700✔
242
    }
2,700✔
243
  }
74,247✔
244

245
  void prepareStatement()
246
  {
2,485,517✔
247
    if (d_prepared)
2,485,517✔
248
      return;
2,482,583✔
249
    if (d_parent->usePrepared()) {
2,936✔
250
      // prepare a statement; name must be unique per session (using d_nstatement to ensure this).
251
      this->d_stmt = string("stmt") + std::to_string(d_nstatement);
2,936✔
252
      PGresult* res = PQprepare(d_db(), d_stmt.c_str(), d_query.c_str(), d_nparams, nullptr);
2,936✔
253
      ExecStatusType status = PQresultStatus(res);
2,936✔
254
      string errmsg(PQresultErrorMessage(res));
2,936✔
255
      PQclear(res);
2,936✔
256
      if (status != PGRES_COMMAND_OK && status != PGRES_TUPLES_OK && status != PGRES_NONFATAL_ERROR) {
2,936!
257
        releaseStatement();
×
258
        throw SSqlException("Fatal error during prePQpreparepare: " + d_query + string(": ") + errmsg);
×
259
      }
×
260
    }
2,936✔
261
    paramValues = nullptr;
2,934✔
262
    paramLengths = nullptr;
2,934✔
263
    d_cur_set = d_paridx = d_residx = d_resnum = 0;
2,934✔
264
    d_res = nullptr;
2,934✔
265
    d_res_set = nullptr;
2,934✔
266
    d_prepared = true;
2,934✔
267
  }
2,934✔
268

269
  void allocate()
270
  {
2,041,658✔
271
    if (paramValues != nullptr)
2,041,658✔
272
      return;
1,739,720✔
273
    paramValues = new char*[d_nparams];
301,938✔
274
    paramLengths = new int[d_nparams];
301,938✔
275
    memset(paramValues, 0, sizeof(char*) * d_nparams);
301,938✔
276
    memset(paramLengths, 0, sizeof(int) * d_nparams);
301,938✔
277
  }
301,938✔
278

279
  string d_query;
280
  string d_stmt;
281
  SPgSQL* d_parent;
282
  PGresult* d_res_set{nullptr};
283
  PGresult* d_res{nullptr};
284
  bool d_dolog;
285
  DTime d_dtime; // only used if d_dolog is set
286
  bool d_prepared{false};
287
  int d_nparams;
288
  int d_paridx{0};
289
  char** paramValues{nullptr};
290
  int* paramLengths{nullptr};
291
  int d_residx{0};
292
  int d_resnum{0};
293
  int d_cur_set{0};
294
  unsigned int d_nstatement;
295
};
296

297
bool SPgSQL::s_dolog;
298

299
static string escapeForPQparam(const string& v)
300
{
2,338✔
301
  string ret = v;
2,338✔
302
  boost::replace_all(ret, "\\", "\\\\");
2,338✔
303
  boost::replace_all(ret, "'", "\\'");
2,338✔
304

305
  return string("'") + ret + string("'");
2,338✔
306
}
2,338✔
307

308
SPgSQL::SPgSQL(const string& database, const string& host, const string& port, const string& user,
309
               const string& password, const string& extra_connection_parameters, const bool use_prepared)
310
{
1,169✔
311
  d_db = nullptr;
1,169✔
312
  d_in_trx = false;
1,169✔
313
  d_connectstr = "";
1,169✔
314
  d_nstatements = 0;
1,169✔
315

316
  if (!database.empty())
1,169!
317
    d_connectstr += "dbname=" + escapeForPQparam(database);
1,169✔
318

319
  if (!user.empty())
1,169✔
320
    d_connectstr += " user=" + escapeForPQparam(user);
1,168✔
321

322
  if (!host.empty())
1,169!
323
    d_connectstr += " host=" + escapeForPQparam(host);
×
324

325
  if (!port.empty())
1,169!
326
    d_connectstr += " port=" + escapeForPQparam(port);
×
327

328
  if (!extra_connection_parameters.empty())
1,169!
329
    d_connectstr += " " + extra_connection_parameters;
×
330

331
  d_connectlogstr = d_connectstr;
1,169✔
332

333
  if (!password.empty()) {
1,169!
334
    d_connectlogstr += " password=<HIDDEN>";
×
335
    d_connectstr += " password=" + escapeForPQparam(password);
×
336
  }
×
337

338
  d_use_prepared = use_prepared;
1,169✔
339

340
  d_db = PQconnectdb(d_connectstr.c_str());
1,169✔
341

342
  if (!d_db || PQstatus(d_db) == CONNECTION_BAD) {
1,169!
343
    try {
×
344
      throw sPerrorException("Unable to connect to database, connect string: " + d_connectlogstr);
×
345
    }
×
346
    catch (...) {
×
347
      if (d_db)
×
348
        PQfinish(d_db);
×
349
      d_db = 0;
×
350
      throw;
×
351
    }
×
352
  }
×
353
}
1,169✔
354

355
void SPgSQL::setLog(bool state)
356
{
1,169✔
357
  s_dolog = state;
1,169✔
358
}
1,169✔
359

360
SPgSQL::~SPgSQL()
361
{
1,125✔
362
  PQfinish(d_db);
1,125✔
363
}
1,125✔
364

365
SSqlException SPgSQL::sPerrorException(const string& reason)
366
{
×
367
  return SSqlException(reason + string(": ") + (d_db ? PQerrorMessage(d_db) : "no connection"));
×
368
}
×
369

370
void SPgSQL::execute(const string& query)
371
{
490✔
372
  PGresult* res = PQexec(d_db, query.c_str());
490✔
373
  ExecStatusType status = PQresultStatus(res);
490✔
374
  string errmsg(PQresultErrorMessage(res));
490✔
375
  PQclear(res);
490✔
376
  if (status != PGRES_COMMAND_OK && status != PGRES_TUPLES_OK && status != PGRES_NONFATAL_ERROR) {
490!
377
    throw sPerrorException("Fatal error during query: " + errmsg);
×
378
  }
×
379
}
490✔
380

381
std::unique_ptr<SSqlStatement> SPgSQL::prepare(const string& query, int nparams)
382
{
77,146✔
383
  d_nstatements++;
77,146✔
384
  return std::make_unique<SPgSQLStatement>(query, s_dolog, nparams, this, d_nstatements);
77,146✔
385
}
77,146✔
386

387
void SPgSQL::startTransaction()
388
{
245✔
389
  execute("begin");
245✔
390
  d_in_trx = true;
245✔
391
}
245✔
392

393
void SPgSQL::commit()
394
{
245✔
395
  execute("commit");
245✔
396
  d_in_trx = false;
245✔
397
}
245✔
398

399
void SPgSQL::rollback()
UNCOV
400
{
×
UNCOV
401
  execute("rollback");
×
UNCOV
402
  d_in_trx = false;
×
UNCOV
403
}
×
404

405
bool SPgSQL::isConnectionUsable()
406
{
17,408✔
407
  if (PQstatus(d_db) != CONNECTION_OK) {
17,408!
408
    return false;
×
409
  }
×
410

411
  bool usable = false;
17,408✔
412
  int sd = PQsocket(d_db);
17,408✔
413
  bool wasNonBlocking = isNonBlocking(sd);
17,408✔
414

415
  if (!wasNonBlocking) {
17,408!
416
    if (!setNonBlocking(sd)) {
×
417
      return usable;
×
418
    }
×
419
  }
×
420

421
  usable = isTCPSocketUsable(sd);
17,408✔
422

423
  if (!wasNonBlocking) {
17,408!
424
    if (!setBlocking(sd)) {
×
425
      usable = false;
×
426
    }
×
427
  }
×
428

429
  return usable;
17,408✔
430
}
17,408✔
431

432
void SPgSQL::reconnect()
433
{
×
434
  PQreset(d_db);
×
435
}
×
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc