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
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
|
/*
* PL/Proxy - easy access to partitioned database.
*
* Copyright (c) 2006 Sven Suursoho, Skype Technologies OÜ
* Copyright (c) 2007 Marko Kreen, Skype Technologies OÜ
*
* Permission to use, copy, modify, and 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.
*/
/*
* Actual execution logic is here.
*
* - Tag particural databases, where query must be sent.
* - Send the query.
* - Fetch the results.
*/
#include "plproxy.h"
#include <sys/time.h>
#include "poll_compat.h"
#ifdef WIN32
#include <winsock2.h>
#include <ws2tcpip.h>
#endif
#ifdef SYS_SOCKET_H
#include <sys/socket.h>
#endif
#ifdef HAVE_NETINET_IN_H
#include <netinet/in.h>
#endif
#ifdef HAVE_NETINET_TCP_H
#include <netinet/tcp.h>
#endif
#ifdef HAVE_ARPA_INET_H
#include <arpa/inet.h>
#endif
#if PG_VERSION_NUM < 80400
static int geterrcode(void)
{
/* switch context to work around Assert() in CopyErrorData() */
MemoryContext ctx = MemoryContextSwitchTo(TopMemoryContext);
ErrorData *edata = CopyErrorData();
int code = edata->sqlerrcode;
FreeErrorData(edata);
MemoryContextSwitchTo(ctx);
return code;
}
#endif
/* some error happened */
static void
conn_error(ProxyFunction *func, ProxyConnection *conn, const char *desc)
{
plproxy_error(func, "[%s] %s: %s",
PQdb(conn->cur->db), desc, PQerrorMessage(conn->cur->db));
}
/* Compare if major/minor match. Works on "MAJ.MIN.*" */
static bool
cmp_branch(const char *this, const char *that)
{
int dot = 0;
int i;
for (i = 0; this[i] || that[i]; i++)
{
/* allow just maj.min verson */
if (dot && this[i] == '.' && !that[i])
return true;
if (dot && that[i] == '.' && !this[i])
return true;
/* compare, different length is also handled here */
if (this[i] != that[i])
return false;
/* stop on second dot */
if (this[i] == '.' && dot++)
return true;
}
return true;
}
static void
flush_connection(ProxyFunction *func, ProxyConnection *conn)
{
int res;
/* flush it down */
res = PQflush(conn->cur->db);
/* set actual state */
if (res > 0)
conn->cur->state = C_QUERY_WRITE;
else if (res == 0)
conn->cur->state = C_QUERY_READ;
else
conn_error(func, conn, "PQflush");
}
/*
* Small sanity checking for new connections.
*
* Current checks:
* - Does there happen any encoding conversations?
* - Difference in standard_conforming_strings.
*/
static int
tune_connection(ProxyFunction *func, ProxyConnection *conn)
{
const char *this_enc, *dst_enc;
const char *dst_ver;
StringInfo sql = NULL;
/*
* check if target server has same backend version.
*/
dst_ver = PQparameterStatus(conn->cur->db, "server_version");
conn->cur->same_ver = cmp_branch(dst_ver, PG_VERSION);
/*
* Make sure remote I/O is done using local server_encoding.
*/
this_enc = GetDatabaseEncodingName();
dst_enc = PQparameterStatus(conn->cur->db, "client_encoding");
if (dst_enc && strcmp(this_enc, dst_enc))
{
if (!sql)
sql = makeStringInfo();
appendStringInfo(sql, "set client_encoding = '%s'; ", this_enc);
}
/*
* if second time in this function, they should be active already.
*/
if (sql && conn->cur->tuning)
{
/* display SET query */
appendStringInfo(sql, "-- does not seem to apply");
conn_error(func, conn, sql->data);
}
/*
* send tuning query
*/
if (sql)
{
conn->cur->tuning = 1;
conn->cur->state = C_QUERY_WRITE;
if (!PQsendQuery(conn->cur->db, sql->data))
conn_error(func, conn, "PQsendQuery");
pfree(sql->data);
pfree(sql);
flush_connection(func, conn);
return 1;
}
conn->cur->tuning = 0;
return 0;
}
/* send the query to server connection */
static void
send_query(ProxyFunction *func, ProxyConnection *conn,
const char **values, int *plengths, int *pformats)
{
int res;
struct timeval now;
ProxyQuery *q = func->remote_sql;
ProxyConfig *cf = &func->cur_cluster->config;
int binary_result = 0;
gettimeofday(&now, NULL);
conn->cur->query_time = now.tv_sec;
tune_connection(func, conn);
if (conn->cur->tuning)
return;
/* use binary result only on same backend ver */
if (cf->disable_binary == 0 && conn->cur->same_ver)
{
/* binary recv for non-record types */
if (func->ret_scalar)
{
if (func->ret_scalar->has_recv)
binary_result = 1;
}
else
{
if (func->ret_composite->use_binary)
binary_result = 1;
}
}
/* send query */
conn->cur->state = C_QUERY_WRITE;
res = PQsendQueryParams(conn->cur->db, q->sql, q->arg_count,
NULL, /* paramTypes */
values, /* paramValues */
plengths, /* paramLengths */
pformats, /* paramFormats */
binary_result); /* resultformat, 0-text, 1-bin */
if (!res)
conn_error(func, conn, "PQsendQueryParams");
/* flush it down */
flush_connection(func, conn);
}
/* returns false of conn should be dropped */
static bool
check_old_conn(ProxyFunction *func, ProxyConnection *conn, struct timeval * now)
{
time_t t;
int res;
struct pollfd pfd;
ProxyConfig *cf = &func->cur_cluster->config;
if (PQstatus(conn->cur->db) != CONNECTION_OK)
return false;
/* check if too old */
if (cf->connection_lifetime > 0)
{
t = now->tv_sec - conn->cur->connect_time;
if (t >= cf->connection_lifetime)
return false;
}
/* how long ts been idle */
t = now->tv_sec - conn->cur->query_time;
if (t < PLPROXY_IDLE_CONN_CHECK)
return true;
/*
* Simple way to check if old connection is stable - look if there
* are events pending. If there are drop the connection.
*/
intr_loop:
pfd.fd = PQsocket(conn->cur->db);
pfd.events = POLLIN;
pfd.revents = 0;
res = poll(&pfd, 1, 0);
if (res > 0)
{
elog(WARNING, "PL/Proxy: detected unstable connection");
return false;
}
else if (res < 0)
{
if (errno == EINTR)
goto intr_loop;
plproxy_error(func, "check_old_conn: select failed: %s",
strerror(errno));
}
/* seems ok */
return true;
}
static bool
socket_set_keepalive(int fd, int onoff, int keepidle, int keepintvl, int keepcnt)
{
int val, res;
if (!onoff) {
/* turn keepalive off */
val = 0;
res = setsockopt(fd, SOL_SOCKET, SO_KEEPALIVE, &val, sizeof(val));
return (res == 0);
}
/* turn keepalive on */
val = 1;
res = setsockopt(fd, SOL_SOCKET, SO_KEEPALIVE, &val, sizeof(val));
if (res < 0)
return false;
/* Darwin */
#ifdef TCP_KEEPALIVE
if (keepidle) {
val = keepidle;
res = setsockopt(fd, IPPROTO_TCP, TCP_KEEPALIVE, &val, sizeof(val));
if (res < 0 && errno != ENOPROTOOPT)
return false;
}
#endif
/* Linux, NetBSD */
#ifdef TCP_KEEPIDLE
if (keepidle) {
val = keepidle;
res = setsockopt(fd, IPPROTO_TCP, TCP_KEEPIDLE, &val, sizeof(val));
if (res < 0 && errno != ENOPROTOOPT)
return false;
}
#endif
#ifdef TCP_KEEPINTVL
if (keepintvl) {
val = keepintvl;
res = setsockopt(fd, IPPROTO_TCP, TCP_KEEPINTVL, &val, sizeof(val));
if (res < 0 && errno != ENOPROTOOPT)
return false;
}
#endif
#ifdef TCP_KEEPCNT
if (keepcnt > 0) {
val = keepcnt;
res = setsockopt(fd, IPPROTO_TCP, TCP_KEEPCNT, &val, sizeof(val));
if (res < 0 && errno != ENOPROTOOPT)
return false;
}
#endif
/* Windows */
#ifdef SIO_KEEPALIVE_VALS
if (keepidle || keepintvl) {
struct tcp_keepalive vals;
DWORD outlen = 0;
if (!keepidle) keepidle = 5 * 60;
if (!keepintvl) keepintvl = 15;
vals.onoff = 1;
vals.keepalivetime = keepidle * 1000;
vals.keepaliveinterval = keepintvl * 1000;
res = WSAIoctl(fd, SIO_KEEPALIVE_VALS, &vals, sizeof(vals), NULL, 0, &outlen, NULL, NULL, NULL, NULL);
if (res != 0)
return false;
}
#endif
return true;
}
static void setup_keepalive(ProxyConnection *conn)
{
struct sockaddr sa;
socklen_t salen = sizeof(sa);
int fd = PQsocket(conn->cur->db);
ProxyConfig *config = &conn->cluster->config;
/* turn on keepalive */
if (!config->keepidle && !config->keepintvl && !config->keepcnt)
return;
#ifdef AF_UNIX
if (getsockname(fd, &sa, &salen) != 0)
return;
if (sa.sa_family == AF_UNIX)
return;
#endif
socket_set_keepalive(fd, 1, config->keepidle, config->keepintvl, config->keepcnt);
}
static void
handle_notice(void *arg, const PGresult *res)
{
ProxyConnection *conn = arg;
ProxyCluster *cluster = conn->cluster;
plproxy_remote_error(cluster->cur_func, conn, res, false);
}
static const char *
get_connstr(ProxyConnection *conn)
{
StringInfoData cstr;
ConnUserInfo *info = conn->cluster->cur_userinfo;
if (strstr(conn->connstr, "user=") != NULL)
return pstrdup(conn->connstr);
initStringInfo(&cstr);
if (info->extra_connstr)
appendStringInfo(&cstr, "%s %s", conn->connstr, info->extra_connstr);
else
appendStringInfo(&cstr, "%s user='%s'", conn->connstr, info->username);
return cstr.data;
}
/* check existing conn status or launch new conn */
static void
prepare_conn(ProxyFunction *func, ProxyConnection *conn)
{
struct timeval now;
const char *connstr;
gettimeofday(&now, NULL);
conn->cur->waitCancel = 0;
/* state should be C_READY or C_NONE */
switch (conn->cur->state)
{
case C_DONE:
conn->cur->state = C_READY;
case C_READY:
if (check_old_conn(func, conn, &now))
return;
case C_CONNECT_READ:
case C_CONNECT_WRITE:
case C_QUERY_READ:
case C_QUERY_WRITE:
/* close rotten connection */
elog(NOTICE, "PL/Proxy: dropping stale conn");
plproxy_disconnect(conn->cur);
case C_NONE:
break;
}
conn->cur->connect_time = now.tv_sec;
/* launch new connection */
connstr = get_connstr(conn);
conn->cur->db = PQconnectStart(connstr);
if (conn->cur->db == NULL)
plproxy_error(func, "No memory for PGconn");
/* tag connection dirty */
conn->cur->state = C_CONNECT_WRITE;
if (PQstatus(conn->cur->db) == CONNECTION_BAD)
conn_error(func, conn, "PQconnectStart");
/* override default notice handler */
PQsetNoticeReceiver(conn->cur->db, handle_notice, conn);
setup_keepalive(conn);
}
/*
* Connection has a resultset avalable, fetch it.
*
* Returns true if there may be more results coming,
* false if all done.
*/
static bool
another_result(ProxyFunction *func, ProxyConnection *conn)
{
PGresult *res;
/* got one */
res = PQgetResult(conn->cur->db);
if (res == NULL)
{
conn->cur->waitCancel = 0;
if (conn->cur->tuning)
conn->cur->state = C_READY;
else
conn->cur->state = C_DONE;
return false;
}
/* ignore result when waiting for cancel */
if (conn->cur->waitCancel)
{
PQclear(res);
return true;
}
switch (PQresultStatus(res))
{
case PGRES_TUPLES_OK:
if (conn->res)
{
PQclear(res);
conn_error(func, conn, "double result?");
}
conn->res = res;
break;
case PGRES_COMMAND_OK:
PQclear(res);
break;
case PGRES_FATAL_ERROR:
if (conn->res)
PQclear(conn->res);
conn->res = res;
plproxy_remote_error(func, conn, res, true);
break;
default:
if (conn->res)
PQclear(conn->res);
conn->res = res;
plproxy_error(func, "Unexpected result type: %s", PQresStatus(PQresultStatus(res)));
break;
}
return true;
}
/*
* Called when select() told that conn is avail for reading/writing.
*
* It should call postgres handlers and then change state if needed.
*/
static void
handle_conn(ProxyFunction *func, ProxyConnection *conn)
{
int res;
PostgresPollingStatusType poll_res;
switch (conn->cur->state)
{
case C_CONNECT_READ:
case C_CONNECT_WRITE:
poll_res = PQconnectPoll(conn->cur->db);
switch (poll_res)
{
case PGRES_POLLING_WRITING:
conn->cur->state = C_CONNECT_WRITE;
break;
case PGRES_POLLING_READING:
conn->cur->state = C_CONNECT_READ;
break;
case PGRES_POLLING_OK:
conn->cur->state = C_READY;
break;
case PGRES_POLLING_ACTIVE:
case PGRES_POLLING_FAILED:
conn_error(func, conn, "PQconnectPoll");
}
break;
case C_QUERY_WRITE:
flush_connection(func, conn);
break;
case C_QUERY_READ:
res = PQconsumeInput(conn->cur->db);
if (res == 0)
conn_error(func, conn, "PQconsumeInput");
/* loop until PQgetResult returns NULL */
while (1)
{
/* if PQisBusy, then incomplete result */
if (PQisBusy(conn->cur->db))
break;
/* got one */
if (!another_result(func, conn))
break;
}
case C_NONE:
case C_DONE:
case C_READY:
break;
}
}
/*
* Check if tagged connections have interesting events.
*
* Currenly uses select() as it should be enough
* on small number of sockets.
*/
static int
poll_conns(ProxyFunction *func, ProxyCluster *cluster)
{
static struct pollfd *pfd_cache = NULL;
static int pfd_allocated = 0;
int i,
res,
fd;
ProxyConnection *conn;
struct pollfd *pf;
int numfds = 0;
int ev = 0;
if (pfd_allocated < cluster->active_count)
{
struct pollfd *tmp;
int num = cluster->active_count;
if (num < 64)
num = 64;
if (pfd_cache == NULL)
tmp = malloc(num * sizeof(struct pollfd));
else
tmp = realloc(pfd_cache, num * sizeof(struct pollfd));
if (!tmp)
elog(ERROR, "no mem for pollfd cache");
pfd_cache = tmp;
pfd_allocated = num;
}
for (i = 0; i < cluster->active_count; i++)
{
conn = cluster->active_list[i];
if (!conn->run_tag)
continue;
/* decide what to do */
switch (conn->cur->state)
{
case C_DONE:
case C_READY:
case C_NONE:
continue;
case C_CONNECT_READ:
case C_QUERY_READ:
ev = POLLIN;
break;
case C_CONNECT_WRITE:
case C_QUERY_WRITE:
ev = POLLOUT;
break;
}
/* add fd to proper set */
pf = pfd_cache + numfds++;
pf->fd = PQsocket(conn->cur->db);
pf->events = ev;
pf->revents = 0;
}
/* wait for events */
res = poll(pfd_cache, numfds, 1000);
if (res == 0)
return 0;
if (res < 0)
{
if (errno == EINTR)
return 0;
plproxy_error(func, "poll() failed: %s", strerror(errno));
}
/* now recheck the conns */
pf = pfd_cache;
for (i = 0; i < cluster->active_count; i++)
{
conn = cluster->active_list[i];
if (!conn->run_tag)
continue;
switch (conn->cur->state)
{
case C_DONE:
case C_READY:
case C_NONE:
continue;
case C_CONNECT_READ:
case C_QUERY_READ:
case C_CONNECT_WRITE:
case C_QUERY_WRITE:
break;
}
/*
* they should be in same order as called,
*/
fd = PQsocket(conn->cur->db);
if (pf->fd != fd)
elog(WARNING, "fd order from poll() is messed up?");
if (pf->revents)
handle_conn(func, conn);
pf++;
}
return 1;
}
/* Check if some operation has gone over limit */
static void
check_timeouts(ProxyFunction *func, ProxyCluster *cluster, ProxyConnection *conn, time_t now)
{
ProxyConfig *cf = &cluster->config;
switch (conn->cur->state)
{
case C_CONNECT_READ:
case C_CONNECT_WRITE:
if (cf->connect_timeout <= 0)
break;
if (now - conn->cur->connect_time <= cf->connect_timeout)
break;
plproxy_error(func, "connect timeout to: %s", conn->connstr);
break;
case C_QUERY_READ:
case C_QUERY_WRITE:
if (cf->query_timeout <= 0)
break;
if (now - conn->cur->query_time <= cf->query_timeout)
break;
plproxy_error(func, "query timeout");
break;
default:
break;
}
}
/* Run the query on all tagged connections in parallel */
static void
remote_execute(ProxyFunction *func)
{
ExecStatusType err;
ProxyConnection *conn;
ProxyCluster *cluster = func->cur_cluster;
int i,
pending = 0;
struct timeval now;
/* either launch connection or send query */
for (i = 0; i < cluster->active_count; i++)
{
conn = cluster->active_list[i];
if (!conn->run_tag)
continue;
/* check if conn is alive, and launch if not */
prepare_conn(func, conn);
pending++;
/* if conn is ready, then send query away */
if (conn->cur->state == C_READY)
send_query(func, conn, conn->param_values, conn->param_lengths, conn->param_formats);
}
/* now loop until all results are arrived */
while (pending)
{
/* allow postgres to cancel processing */
CHECK_FOR_INTERRUPTS();
/* wait for events */
if (poll_conns(func, cluster) == 0)
continue;
/* recheck */
pending = 0;
gettimeofday(&now, NULL);
for (i = 0; i < cluster->active_count; i++)
{
conn = cluster->active_list[i];
if (!conn->run_tag)
continue;
/* login finished, send query */
if (conn->cur->state == C_READY)
send_query(func, conn, conn->param_values, conn->param_lengths, conn->param_formats);
if (conn->cur->state != C_DONE)
pending++;
check_timeouts(func, cluster, conn, now.tv_sec);
}
}
/* review results, calculate total */
for (i = 0; i < cluster->active_count; i++)
{
conn = cluster->active_list[i];
if ((conn->run_tag || conn->res)
&& !(conn->run_tag && conn->res))
plproxy_error(func, "run_tag does not match res");
if (!conn->run_tag)
continue;
if (conn->cur->state != C_DONE)
plproxy_error(func, "Unfinished connection");
if (conn->res == NULL)
plproxy_error(func, "Lost result");
err = PQresultStatus(conn->res);
if (err != PGRES_TUPLES_OK)
plproxy_error(func, "Remote error: %s",
PQresultErrorMessage(conn->res));
cluster->ret_total += PQntuples(conn->res);
}
}
static void
remote_wait_for_cancel(ProxyFunction *func)
{
ProxyConnection *conn;
ProxyCluster *cluster = func->cur_cluster;
int i,
pending;
struct timeval now;
/* now loop until all results are arrived */
while (1)
{
/* allow postgres to cancel processing */
CHECK_FOR_INTERRUPTS();
/* recheck */
pending = 0;
gettimeofday(&now, NULL);
for (i = 0; i < cluster->active_count; i++)
{
conn = cluster->active_list[i];
if (!conn->run_tag)
continue;
if (conn->cur->state == C_QUERY_READ)
pending++;
check_timeouts(func, cluster, conn, now.tv_sec);
}
if (!pending)
break;
/* wait for events */
poll_conns(func, cluster);
}
/* review results, calculate total */
for (i = 0; i < cluster->active_count; i++)
{
conn = cluster->active_list[i];
if (!conn->run_tag)
continue;
if (conn->cur->state != C_DONE)
plproxy_error(func, "Unfinished connection: %d", conn->cur->state);
if (conn->res != NULL)
{
PQclear(conn->res);
conn->res = NULL;
}
}
}
static void
remote_cancel(ProxyFunction *func)
{
ProxyConnection *conn;
ProxyCluster *cluster = func->cur_cluster;
PGcancel *cancel;
char errbuf[256];
int ret;
int i;
if (cluster == NULL)
return;
for (i = 0; i < cluster->active_count; i++)
{
conn = cluster->active_list[i];
switch (conn->cur->state)
{
case C_NONE:
case C_READY:
case C_DONE:
break;
case C_QUERY_WRITE:
case C_CONNECT_READ:
case C_CONNECT_WRITE:
plproxy_disconnect(conn->cur);
break;
case C_QUERY_READ:
cancel = PQgetCancel(conn->cur->db);
if (cancel == NULL)
{
elog(NOTICE, "Invalid connection!");
continue;
}
ret = PQcancel(cancel, errbuf, sizeof(errbuf));
PQfreeCancel(cancel);
if (ret == 0)
elog(NOTICE, "Cancel query failed!");
else
conn->cur->waitCancel = 1;
break;
}
}
remote_wait_for_cancel(func);
}
/*
* Tag & move tagged connections to active list
*/
static void tag_part(struct ProxyCluster *cluster, int i, int tag)
{
ProxyConnection *conn = cluster->part_map[i];
if (!conn->run_tag)
plproxy_activate_connection(conn);
conn->run_tag = tag;
}
/*
* Run hash function and tag connections. If any of the hash function
* arguments are mentioned in the split_arrays an element of the array
* is used instead of the actual array.
*/
static void
tag_hash_partitions(ProxyFunction *func, FunctionCallInfo fcinfo, int tag,
DatumArray **array_params, int array_row)
{
int i;
TupleDesc desc;
Oid htype;
ProxyCluster *cluster = func->cur_cluster;
/* execute cached plan */
plproxy_query_exec(func, fcinfo, func->hash_sql, array_params, array_row);
/* get header */
desc = SPI_tuptable->tupdesc;
htype = SPI_gettypeid(desc, 1);
/* tag connections */
for (i = 0; i < SPI_processed; i++)
{
bool isnull;
uint32 hashval = 0;
HeapTuple row = SPI_tuptable->vals[i];
Datum val = SPI_getbinval(row, desc, 1, &isnull);
if (isnull)
plproxy_error(func, "Hash function returned NULL");
if (htype == INT4OID)
hashval = DatumGetInt32(val);
else if (htype == INT8OID)
hashval = DatumGetInt64(val);
else if (htype == INT2OID)
hashval = DatumGetInt16(val);
else
plproxy_error(func, "Hash result must be int2, int4 or int8");
hashval &= cluster->part_mask;
tag_part(cluster, hashval, tag);
}
/* sanity check */
if (SPI_processed == 0 || SPI_processed > 1)
if (!fcinfo->flinfo->fn_retset)
plproxy_error(func, "Only set-returning function"
" allows hashcount <> 1");
}
/*
* Deconstruct an array type to array of Datums, note NULL elements
* and determine the element type information.
*/
static DatumArray *
make_datum_array(ProxyFunction *func, ArrayType *v, ProxyType *array_type)
{
DatumArray *da = palloc0(sizeof(*da));
da->type = plproxy_get_elem_type(func, array_type, true);
if (v)
deconstruct_array(v,
da->type->type_oid, da->type->length, da->type->by_value,
da->type->alignment,
&da->values, &da->nulls, &da->elem_count);
return da;
}
/*
* Evaluate the run condition. Tag the matching connections with the specified
* tag.
*
* Note that we don't allow nested plproxy calls on the same cluster (ie.
* remote hash functions). The cluster and connection state are global and
* would easily get messed up.
*/
static void
tag_run_on_partitions(ProxyFunction *func, FunctionCallInfo fcinfo, int tag,
DatumArray **array_params, int array_row)
{
ProxyCluster *cluster = func->cur_cluster;
int i;
switch (func->run_type)
{
case R_HASH:
tag_hash_partitions(func, fcinfo, tag, array_params, array_row);
break;
case R_ALL:
for (i = 0; i < cluster->part_count; i++)
tag_part(cluster, i, tag);
break;
case R_EXACT:
i = func->exact_nr;
if (i < 0 || i >= cluster->part_count)
plproxy_error(func, "part number out of range");
tag_part(cluster, i, tag);
break;
case R_ANY:
i = random() & cluster->part_mask;
tag_part(cluster, i, tag);
break;
default:
plproxy_error(func, "uninitialized run_type");
}
}
/*
* Tag the partitions to be run on, if split is requested prepare the
* per-partition split array parameters.
*
* This is done by looping over all of the split arrays side-by-side, for each
* tuple see if it satisfies the RUN ON condition. If so, copy the tuple
* to the partition's private array parameters.
*/
static void
prepare_and_tag_partitions(ProxyFunction *func, FunctionCallInfo fcinfo)
{
int i, row, col;
int split_array_len = -1;
int split_array_count = 0;
ProxyCluster *cluster = func->cur_cluster;
DatumArray *arrays_to_split[FUNC_MAX_ARGS];
/*
* See if we have any arrays to split. If so, make them manageable by
* converting them to Datum arrays. During the process verify that all
* the arrays are of the same length.
*/
for (i = 0; i < func->arg_count; i++)
{
ArrayType *v;
if (!IS_SPLIT_ARG(func, i))
{
arrays_to_split[i] = NULL;
continue;
}
if (PG_ARGISNULL(i))
v = NULL;
else
{
v = PG_GETARG_ARRAYTYPE_P(i);
if (ARR_NDIM(v) > 1)
plproxy_error(func, "split multi-dimensional arrays are not supported");
}
arrays_to_split[i] = make_datum_array(func, v, func->arg_types[i]);
/* Check that the element counts match */
if (split_array_len < 0)
split_array_len = arrays_to_split[i]->elem_count;
else if (arrays_to_split[i]->elem_count != split_array_len)
plproxy_error(func, "split arrays must be of identical lengths");
++split_array_count;
}
/* If nothing to split, just tag the partitions and be done with it */
if (!split_array_count)
{
tag_run_on_partitions(func, fcinfo, 1, NULL, 0);
return;
}
/* Need to split, evaluate the RUN ON condition for each of the elements. */
for (row = 0; row < split_array_len; row++)
{
int part;
int my_tag = row+1;
/*
* Tag the run-on partitions with a tag that allows us us to identify
* which partitions need the set of elements from this row.
*/
tag_run_on_partitions(func, fcinfo, my_tag, arrays_to_split, row);
/* Add the array elements to the partitions tagged in previous step */
for (part = 0; part < cluster->active_count; part++)
{
ProxyConnection *conn = cluster->active_list[part];
if (conn->run_tag != my_tag)
continue;
if (!conn->bstate)
conn->bstate = palloc0(func->arg_count * sizeof(*conn->bstate));
/* Add this set of elements to the partition specific arrays */
for (col = 0; col < func->arg_count; col++)
{
if (!IS_SPLIT_ARG(func, col))
continue;
conn->bstate[col] = accumArrayResult(conn->bstate[col],
arrays_to_split[col]->values[row],
arrays_to_split[col]->nulls[row],
arrays_to_split[col]->type->type_oid,
CurrentMemoryContext);
}
}
}
/*
* Finally, copy the accumulated arrays to the actual connections
* to be used as parameters.
*/
for (i = 0; i < cluster->active_count; i++)
{
ProxyConnection *conn = cluster->active_list[i];
if (!conn->run_tag)
continue;
conn->split_params = palloc(func->arg_count * sizeof(*conn->split_params));
for (col = 0; col < func->arg_count; col++)
{
if (!IS_SPLIT_ARG(func, col))
conn->split_params[col] = PointerGetDatum(NULL);
else
conn->split_params[col] = makeArrayResult(conn->bstate[col],
CurrentMemoryContext);
}
}
}
/*
* Prepare parameters for the query.
*/
static void
prepare_query_parameters(ProxyFunction *func, FunctionCallInfo fcinfo)
{
int i;
ProxyCluster *cluster = func->cur_cluster;
for (i = 0; i < func->remote_sql->arg_count; i++)
{
int idx = func->remote_sql->arg_lookup[i];
bool bin = cluster->config.disable_binary ? 0 : 1;
const char *fixed_param_val = NULL;
int fixed_param_len, fixed_param_fmt;
int part;
/* Avoid doing multiple conversions for fixed parameters */
if (!IS_SPLIT_ARG(func, idx) && !PG_ARGISNULL(idx))
{
fixed_param_val = plproxy_send_type(func->arg_types[idx],
PG_GETARG_DATUM(idx),
bin,
&fixed_param_len,
&fixed_param_fmt);
}
/* Add the parameters to partitions */
for (part = 0; part < cluster->active_count; part++)
{
ProxyConnection *conn = cluster->active_list[part];
if (!conn->run_tag)
continue;
if (PG_ARGISNULL(idx))
{
conn->param_values[i] = NULL;
conn->param_lengths[i] = 0;
conn->param_formats[i] = 0;
}
else
{
if (IS_SPLIT_ARG(func, idx))
{
conn->param_values[i] = plproxy_send_type(func->arg_types[idx],
conn->split_params[idx],
bin,
&conn->param_lengths[i],
&conn->param_formats[i]);
}
else
{
conn->param_values[i] = fixed_param_val;
conn->param_lengths[i] = fixed_param_len;
conn->param_formats[i] = fixed_param_fmt;
}
}
}
}
}
/* Clean old results and prepare for new one */
void
plproxy_clean_results(ProxyCluster *cluster)
{
int i;
ProxyConnection *conn;
if (!cluster)
return;
cluster->ret_total = 0;
cluster->ret_cur_conn = 0;
for (i = 0; i < cluster->active_count; i++)
{
conn = cluster->active_list[i];
if (conn->res)
{
PQclear(conn->res);
conn->res = NULL;
}
conn->pos = 0;
conn->run_tag = 0;
conn->bstate = NULL;
conn->cur = NULL;
cluster->active_list[i] = NULL;
}
/* reset active_list */
cluster->active_count = 0;
/* conn state checks are done in prepare_conn */
}
/* Drop one connection */
void plproxy_disconnect(ProxyConnectionState *cur)
{
if (cur->db)
PQfinish(cur->db);
cur->db = NULL;
cur->state = C_NONE;
cur->tuning = 0;
cur->connect_time = 0;
cur->query_time = 0;
cur->same_ver = 0;
cur->tuning = 0;
cur->waitCancel = 0;
}
/* Select partitions and execute query on them */
void
plproxy_exec(ProxyFunction *func, FunctionCallInfo fcinfo)
{
/*
* Prepare parameters and run query. On cancel, send cancel request to
* partitions too.
*/
PG_TRY();
{
func->cur_cluster->busy = true;
func->cur_cluster->cur_func = func;
/* clean old results */
plproxy_clean_results(func->cur_cluster);
/* tag the partitions and prepare per-partition parameters */
prepare_and_tag_partitions(func, fcinfo);
/* prepare the target query parameters */
prepare_query_parameters(func, fcinfo);
remote_execute(func);
func->cur_cluster->busy = false;
}
PG_CATCH();
{
func->cur_cluster->busy = false;
if (geterrcode() == ERRCODE_QUERY_CANCELED)
remote_cancel(func);
/* plproxy_remote_error() cannot clean itself, do it here */
plproxy_clean_results(func->cur_cluster);
PG_RE_THROW();
}
PG_END_TRY();
}
|