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
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
|
/*
* PgBouncer - Lightweight connection pooler for PostgreSQL.
*
* Copyright (c) 2007-2009 Marko Kreen, Skype Technologies OÜ
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/*
* Config and pg_auth file reading.
*/
#include "bouncer.h"
#ifdef HAVE_NETDB_H
#include <netdb.h>
#endif
/*
* ConnString parsing
*/
/* just skip whitespace */
static char *cstr_skip_ws(char *p)
{
while (*p && *p == ' ')
p++;
return p;
}
/* parse paramenter name before '=' */
static char *cstr_get_key(char *p, char **dst_p)
{
char *end;
p = cstr_skip_ws(p);
*dst_p = p;
while (*p && *p != '=' && *p != ' ')
p++;
end = p;
p = cstr_skip_ws(p);
/* fail if no '=' or empty name */
if (*p != '=' || *dst_p == end)
return NULL;
*end = 0;
return p + 1;
}
/* unquote the quoted value after first quote */
static char *cstr_unquote_value(char *p)
{
char *s = p;
while (1) {
if (!*p)
return NULL;
if (p[0] == '\'') {
if (p[1] == '\'')
p++;
else
break;
}
*s++ = *p++;
}
/* terminate actual value */
*s = 0;
/* return position after quote */
return p + 1;
}
/* parse value, possibly quoted */
static char *cstr_get_value(char *p, char **dst_p)
{
p = cstr_skip_ws(p);
if (*p == '\'') {
*dst_p = ++p;
p = cstr_unquote_value(p);
if (!p)
return NULL;
} else {
*dst_p = p;
while (*p && *p != ' ')
p++;
}
if (*p) {
/* if not EOL, cut value */
*p = 0;
p++;
}
/* disallow empty values */
if (*dst_p[0] == 0)
return NULL;
return p;
}
/*
* Get key=val pair from connstring. returns position it stopped
* or NULL on error. EOF is signaled by *key = 0.
*/
static char * cstr_get_pair(char *p,
char **key_p,
char **val_p)
{
p = cstr_skip_ws(p);
*key_p = *val_p = p;
if (*p == 0)
return p;
/* read key */
p = cstr_get_key(p, key_p);
if (!p)
return NULL;
/* read value */
p = cstr_get_value(p, val_p);
if (!p)
return NULL;
log_noise("cstr_get_pair: \"%s\"=\"%s\"", *key_p, *val_p);
return cstr_skip_ws(p);
}
static void set_connect_query(PgDatabase *db, const char *new)
{
const char *old = db->connect_query;
char *val = NULL;
if (old && new) {
if (strcmp(old, new) == 0)
return;
val = strdup(new);
if (val) {
free((void *)old);
db->connect_query = val;
}
} else if (new) {
val = strdup(new);
db->connect_query = val;
} else {
free((void *)db->connect_query);
db->connect_query = NULL;
}
if (new && !val)
log_error("no memory, cannot assign connect_query for %s", db->name);
}
static void set_autodb(char *connstr)
{
char *tmp = strdup(connstr);
if (!tmp) {
log_warning("no mem to change autodb_connstr");
return;
}
if (cf_autodb_connstr)
free(cf_autodb_connstr);
cf_autodb_connstr = tmp;
}
/* fill PgDatabase from connstr */
void parse_database(char *name, char *connstr)
{
char *p, *key, *val;
PktBuf buf;
PgDatabase *db;
int pool_size = -1;
int res_pool_size = -1;
char *dbname = name;
char *host = NULL;
char *port = "5432";
char *username = NULL;
char *password = "";
char *client_encoding = NULL;
char *datestyle = NULL;
char *timezone = NULL;
char *connect_query = NULL;
char *unix_dir = "";
in_addr_t v_addr = INADDR_NONE;
int v_port;
if (strcmp(name, "*") == 0) {
set_autodb(connstr);
return;
}
p = connstr;
while (*p) {
p = cstr_get_pair(p, &key, &val);
if (p == NULL) {
log_error("%s: syntax error in connstring", name);
return;
} else if (!key[0])
break;
if (strcmp("dbname", key) == 0)
dbname = val;
else if (strcmp("host", key) == 0)
host = val;
else if (strcmp("port", key) == 0)
port = val;
else if (strcmp("user", key) == 0)
username = val;
else if (strcmp("password", key) == 0)
password = val;
else if (strcmp("client_encoding", key) == 0)
client_encoding = val;
else if (strcmp("datestyle", key) == 0)
datestyle = val;
else if (strcmp("timezone", key) == 0)
timezone = val;
else if (strcmp("pool_size", key) == 0)
pool_size = atoi(val);
else if (strcmp("reserve_pool", key) == 0)
res_pool_size = atoi(val);
else if (strcmp("connect_query", key) == 0)
connect_query = val;
else {
log_error("skipping database %s because"
" of unknown parameter in connstring: %s", name, key);
return;
}
}
/* host= */
if (!host) {
/* default unix socket dir */
if (!*cf_unix_socket_dir) {
log_error("skipping database %s because"
" unix socket not configured", name);
return;
}
} else if (host[0] == '/') {
/* custom unix socket dir */
unix_dir = host;
host = NULL;
} else if (host[0] >= '0' && host[0] <= '9') {
/* ip-address */
v_addr = inet_addr(host);
if (v_addr == INADDR_NONE) {
log_error("skipping database %s because"
" of bad host: %s", name, host);
return;
}
} else {
/* resolve host by name */
struct hostent *h = gethostbyname(host);
if (h == NULL || h->h_addr_list[0] == NULL) {
log_error("%s: resolving host=%s failed: %s",
name, host, hstrerror(h_errno));
return;
}
if (h->h_addrtype != AF_INET || h->h_length != 4) {
log_error("%s: host=%s has unknown addr type",
name, host);
return;
}
/* result should be already in correct endianess */
memcpy(&v_addr, h->h_addr_list[0], 4);
}
/* port= */
v_port = atoi(port);
if (v_port == 0) {
log_error("skipping database %s because"
" of bad port: %s", name, port);
return;
}
db = add_database(name);
if (!db) {
log_error("cannot create database, no memory?");
return;
}
/* tag the db as alive */
db->db_dead = 0;
/* assuming not an autodb */
db->db_auto = 0;
db->inactive_time = 0;
/* if updating old db, check if anything changed */
if (db->dbname) {
bool changed = false;
if (strcmp(db->dbname, dbname) != 0)
changed = true;
else if (host && db->addr.is_unix)
changed = true;
else if (!host && !db->addr.is_unix)
changed = true;
else if (host && v_addr != db->addr.ip_addr.s_addr)
changed = true;
else if (v_port != db->addr.port)
changed = true;
else if (username && !db->forced_user)
changed = true;
else if (username && strcmp(username, db->forced_user->name) != 0)
changed = true;
else if (!username && db->forced_user)
changed = true;
else if (strcmp(db->unix_socket_dir, unix_dir) != 0)
changed = true;
else if ((db->connect_query && !connect_query)
|| (!db->connect_query && connect_query)
|| (connect_query && strcmp(connect_query, db->connect_query) != 0))
changed = true;
if (changed)
tag_database_dirty(db);
}
/* if pool_size < 0 it will be set later */
db->pool_size = pool_size;
db->res_pool_size = res_pool_size;
db->addr.port = v_port;
db->addr.ip_addr.s_addr = v_addr;
db->addr.is_unix = host ? 0 : 1;
safe_strcpy(db->unix_socket_dir, unix_dir, sizeof(db->unix_socket_dir));
if (host)
log_debug("%s: host=%s/%s", name, host, inet_ntoa(db->addr.ip_addr));
/* assign connect_query */
set_connect_query(db, connect_query);
pktbuf_static(&buf, db->startup_params, sizeof(db->startup_params));
pktbuf_put_string(&buf, "database");
db->dbname = (char *)db->startup_params + pktbuf_written(&buf);
pktbuf_put_string(&buf, dbname);
if (client_encoding) {
pktbuf_put_string(&buf, "client_encoding");
pktbuf_put_string(&buf, client_encoding);
}
if (datestyle) {
pktbuf_put_string(&buf, "datestyle");
pktbuf_put_string(&buf, datestyle);
}
if (timezone) {
pktbuf_put_string(&buf, "timezone");
pktbuf_put_string(&buf, timezone);
}
db->startup_params_len = pktbuf_written(&buf);
/* if user is forces, create fake object for it */
if (username != NULL) {
if (!force_user(db, username, password))
log_warning("db setup failed, trying to continue");
} else if (db->forced_user)
log_warning("losing forced user not supported,"
" keeping old setting");
}
/*
* User file parsing
*/
/* find next " in string, skipping escaped ones */
static char *find_quote(char *p)
{
loop:
while (*p && *p != '\\' && *p != '"') p++;
if (*p == '\\' && p[1]) {
p += 2;
goto loop;
}
return p;
}
/* string is unquoted while copying */
static void copy_quoted(char *dst, const char *src, int len)
{
char *end = dst + len - 1;
while (*src && dst < end) {
if (*src != '\\')
*dst++ = *src++;
else
src++;
}
*dst = 0;
}
static void unquote_add_user(const char *username, const char *password)
{
char real_user[MAX_USERNAME];
char real_passwd[MAX_PASSWORD];
PgUser *user;
copy_quoted(real_user, username, sizeof(real_user));
copy_quoted(real_passwd, password, sizeof(real_passwd));
user = add_user(real_user, real_passwd);
if (!user)
log_warning("cannot create user, no memory");
}
static bool auth_loaded(const char *fn)
{
static struct stat cache;
struct stat cur;
/* hack for resetting */
if (fn == NULL) {
memset(&cache, 0, sizeof(cache));
return false;
}
if (stat(fn, &cur) < 0)
return false;
if (cache.st_dev == cur.st_dev
&& cache.st_ino == cur.st_ino
&& cache.st_mode == cur.st_mode
&& cache.st_uid == cur.st_uid
&& cache.st_gid == cur.st_gid
&& cache.st_mtime == cur.st_mtime
&& cache.st_size == cur.st_size)
return true;
cache = cur;
return false;
}
bool loader_users_check(void)
{
if (auth_loaded(cf_auth_file))
return true;
return load_auth_file(cf_auth_file);
}
static void disable_users(void)
{
PgUser *user;
List *item;
statlist_for_each(item, &user_list) {
user = container_of(item, PgUser, head);
user->passwd[0] = 0;
}
}
/* load list of users from pg_auth/pg_psw file */
bool load_auth_file(const char *fn)
{
char *user, *password, *buf, *p;
buf = load_file(fn);
if (buf == NULL) {
/* reset file info */
auth_loaded(NULL);
return false;
}
disable_users();
p = buf;
while (*p) {
/* skip whitespace and empty lines */
while (*p && isspace(*p)) p++;
if (!*p)
break;
/* start of line */
if (*p != '"') {
log_error("broken auth file");
break;
}
user = ++p;
p = find_quote(p);
if (*p != '"') {
log_error("broken auth file");
break;
}
if (p - user >= MAX_USERNAME) {
log_error("username too long");
break;
}
*p++ = 0; /* tag username end */
/* get password */
p = find_quote(p);
if (*p != '"') {
log_error("broken auth file");
break;
}
password = ++p;
p = find_quote(p);
if (*p != '"') {
log_error("broken auth file");
break;
}
if (p - password >= MAX_PASSWORD) {
log_error("too long password");
break;
}
*p++ = 0; /* tag password end */
/* send them away */
unquote_add_user(user, password);
/* skip rest of the line */
while (*p && *p != '\n') p++;
}
free(buf);
return true;
}
/*
* Config parameter handling.
*/
bool cf_set_int(ConfElem *elem, const char *val, PgSocket *console)
{
int *int_p = elem->dst;
if (*val < '0' || *val > '9') {
admin_error(console, "bad value: %s", val);
return false;
}
*int_p = atoi(val);
return true;
}
const char *cf_get_int(ConfElem *elem)
{
static char numbuf[32];
int val;
val = *(int *)elem->dst;
sprintf(numbuf, "%d", val);
return numbuf;
}
bool cf_set_time(ConfElem *elem, const char *val, PgSocket *console)
{
usec_t *time_p = elem->dst;
if (*val < '0' || *val > '9') {
admin_error(console, "bad value: %s", val);
return false;
}
*time_p = USEC * (usec_t)atoi(val);
return true;
}
const char *cf_get_time(ConfElem *elem)
{
static char numbuf[32];
usec_t val;
val = *(usec_t *)elem->dst;
sprintf(numbuf, "%d", (int)(val / USEC));
return numbuf;
}
bool cf_set_str(ConfElem *elem, const char *val, PgSocket *console)
{
char **str_p = elem->dst;
char *tmp;
/* don't touch if not changed */
if (*str_p && strcmp(*str_p, val) == 0)
return true;
/* if dynamically allocated, free it */
if (elem->allocated)
free(*str_p);
tmp = strdup(val);
if (!tmp)
return false;
*str_p = tmp;
elem->allocated = true;
return true;
}
const char * cf_get_str(ConfElem *elem)
{
return *(char **)elem->dst;
}
bool set_config_param(ConfElem *elem_list,
const char *key, const char *val,
bool reload, PgSocket *console)
{
ConfElem *desc;
for (desc = elem_list; desc->name; desc++) {
if (strcasecmp(key, desc->name) != 0)
continue;
/* if reload not allowed, skip it */
if (reload && !desc->reloadable) {
if (console)
admin_error(console,
"%s cannot be changed online", key);
return false;
}
/* got config, parse it */
return desc->io.fn_set(desc, val, console);
}
return false;
}
static void map_config(ConfSection *sect, char *key, char *val, bool reload)
{
if (sect == NULL)
return;
if (sect->data_fn)
sect->data_fn(key, val);
else
set_config_param(sect->elem_list, key, val, reload, NULL);
}
const char *conf_to_text(ConfElem *elem)
{
return elem->io.fn_get(elem);
}
static ConfSection *find_section(ConfSection *sect, const char *name)
{
for (; sect->name; sect++)
if (strcasecmp(sect->name, name) == 0)
return sect;
log_warning("unknown section in config: %s", name);
return NULL;
}
/*
* INI file parser.
*/
static int count_lines(const char *s, const char *end)
{
int lineno = 1;
for (; s < end; s++) {
if (*s == '\n')
lineno++;
}
return lineno;
}
static bool unquote_ident(char **src_p, char *dst, int dstlen)
{
char *src = *src_p;
char *end = dst + dstlen;
if (*src++ != '"')
return false;
while (*src && dst < end) {
if (src[0] == '"') {
if (src[1] != '"')
break;
src++;
}
*dst++ = *src++;
}
if (*src != '"' || dst >= end)
return false;
*dst = 0;
*src_p = src + 1;
return true;
}
bool iniparser(const char *fn, ConfSection *sect_list, bool reload)
{
char *buf;
char *p, *key, *val;
int klen, vlen;
ConfSection *cur_section = NULL;
char keybuf[MAX_DBNAME*2];
buf = load_file(fn);
if (buf == NULL) {
if (!reload)
exit(1);
else
return false;
}
p = buf;
while (*p) {
/* space at the start of line - including empty lines */
while (*p && isspace(*p)) p++;
/* skip comment lines */
if (*p == '#' || *p == ';') {
while (*p && *p != '\n') p++;
continue;
}
/* got new section */
if (*p == '[') {
key = ++p;
while (*p && *p != ']' && *p != '\n') p++;
if (*p != ']')
goto syntax_error;
*p++ = 0;
cur_section = find_section(sect_list, key);
continue;
}
/* done? */
if (*p == 0) break;
/* read key val */
if (*p == '"') {
if (!unquote_ident(&p, keybuf, sizeof(keybuf)))
goto syntax_error;
key = keybuf;
klen = strlen(keybuf);
} else {
key = p;
while (*p && (isalnum(*p) || strchr("_.-*", *p))) p++;
klen = p - key;
}
/* expect '=', skip it */
while (*p && (*p == ' ' || *p == '\t')) p++;
if (*p != '=') {
goto syntax_error;
} else
p++;
while (*p && (*p == ' ' || *p == '\t')) p++;
/* now read value */
val = p;
while (*p && (*p != '\n'))
p++;
vlen = p - val;
/* eat space at end */
while (vlen > 0 && isspace(val[vlen - 1]))
vlen--;
/* skip junk */
while (*p && isspace(*p)) p++;
/* our buf is r/w, so take it easy */
key[klen] = 0;
val[vlen] = 0;
map_config(cur_section, key, val, reload);
}
free(buf);
return true;
syntax_error:
log_error("syntax error in configuration (%s:%d), stopping loading", fn, count_lines(buf, p));
free(buf);
return true;
}
|