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
|
/* -*-pgsql-c-*- */
/*
* $Header$
*
* pgpool: a language independent connection pool server for PostgreSQL
* written by Tatsuo Ishii
*
* Copyright (c) 2003-2024 PgPool Global Development Group
*
* Permission to use, copy, modify, and distribute this software and
* its documentation for any purpose and without fee is hereby
* granted, provided that the above copyright notice appear in all
* copies and that both that copyright notice and this permission
* notice appear in supporting documentation, and that the name of the
* author not be used in advertising or publicity pertaining to
* distribution of the software without specific, written prior
* permission. The author makes no representations about the
* suitability of this software for any purpose. It is provided "as
* is" without express or implied warranty.
*
*---------------------------------------------------------------------
* This file contains modules which process the "Command Complete" and "Empty
* query response" message sent from backend. The main function is
* "CommandComplete".
*---------------------------------------------------------------------
*/
#include <string.h>
#include <arpa/inet.h>
#include "pool.h"
#include "protocol/pool_proto_modules.h"
#include "protocol/pool_process_query.h"
#include "parser/pg_config_manual.h"
#include "pool_config.h"
#include "context/pool_session_context.h"
#include "context/pool_query_context.h"
#include "utils/elog.h"
#include "utils/palloc.h"
#include "utils/memutils.h"
#include "utils/pool_stream.h"
static int extract_ntuples(char *message);
static POOL_STATUS handle_mismatch_tuples(POOL_CONNECTION * frontend, POOL_CONNECTION_POOL * backend, char *packet, int packetlen, bool command_complete);
static int forward_command_complete(POOL_CONNECTION * frontend, char *packet, int packetlen);
static int forward_empty_query(POOL_CONNECTION * frontend, char *packet, int packetlen);
static int forward_packet_to_frontend(POOL_CONNECTION * frontend, char kind, char *packet, int packetlen);
static void process_clear_cache(POOL_CONNECTION_POOL * backend);
static bool check_alter_role_statement(AlterRoleStmt *stmt);
POOL_STATUS
CommandComplete(POOL_CONNECTION * frontend, POOL_CONNECTION_POOL * backend, bool command_complete)
{
int len,
len1;
char *p,
*p1;
int i;
POOL_SESSION_CONTEXT *session_context;
POOL_CONNECTION *con;
p1 = NULL;
len1 = 0;
/* Get session context */
session_context = pool_get_session_context(false);
/*
* Handle misc process which is necessary when query context exists.
*/
if (session_context->query_context != NULL && (!SL_MODE || (SL_MODE && !pool_is_doing_extended_query_message())))
handle_query_context(backend);
/*
* If operated in streaming replication mode and doing an extended query,
* read backend message according to the query context. Also we set the
* transaction state at this point.
*/
if (SL_MODE && pool_is_doing_extended_query_message())
{
p1 = NULL;
for (i = 0; i < NUM_BACKENDS; i++)
{
if (VALID_BACKEND(i))
{
con = CONNECTION(backend, i);
if (pool_read(con, &len, sizeof(len)) < 0)
{
if (p1 != NULL)
pfree(p1);
return POOL_END;
}
len = ntohl(len);
len -= 4;
len1 = len;
p = pool_read2(con, len);
if (p == NULL)
{
if (p1 != NULL)
pfree(p1);
return POOL_END;
}
if (p1 != NULL)
pfree(p1);
p1 = palloc(len);
memcpy(p1, p, len);
if (session_context->query_context &&
session_context->query_context->parse_tree &&
is_start_transaction_query(session_context->query_context->parse_tree))
TSTATE(backend, i) = 'T'; /* we are inside a transaction */
{
ereport(DEBUG1,
(errmsg("processing command complete"),
errdetail("set transaction state to T")));
}
}
}
}
/*
* Otherwise just read from main node.
*/
else
{
con = MAIN(backend);
if (pool_read(con, &len, sizeof(len)) < 0)
return POOL_END;
len = ntohl(len);
len -= 4;
len1 = len;
p = pool_read2(con, len);
if (p == NULL)
return POOL_END;
p1 = palloc(len);
memcpy(p1, p, len);
}
/*
* Check if a transaction start command was issued by a multi statement
* query by looking at the command tag. We cannot look into the parse tree
* because our parse tree is only the first query in the multi statement.
*/
if (SL_MODE && session_context->query_context &&
session_context->query_context->is_multi_statement)
{
if (!strcmp(p1, "BEGIN"))
{
/*
* If the query was a transaction starting command, remember it
* until it gets committed or roll backed.
*/
elog(DEBUG1, "Call set_tx_started_by_multi_statement_query() in CommandComplete");
set_tx_started_by_multi_statement_query();
}
else if (!strcmp(p1, "COMMIT") || !strcmp(p1, "ROLLBACK"))
{
/*
* It is possible that the multi statement query included both
* BEGIN and COMMIT/ROLLBACK, or just COMMIT/ROLLBACK command. In
* this case we forget that a transaction was started by multi
* statement query.
*/
elog(DEBUG1, "Call unset_tx_started_by_multi_statement_query() in CommandComplete");
unset_tx_started_by_multi_statement_query();
}
}
/*
* If operated in streaming replication mode and extended query mode, just
* forward the packet to frontend and we are done. Otherwise, we need to
* do mismatch tuples process (forwarding to frontend is done in
* handle_mismatch_tuples().
*/
if (SL_MODE && pool_is_doing_extended_query_message())
{
int status;
if (p1 == NULL)
{
elog(WARNING, "CommandComplete: expected p1 is not NULL");
return POOL_END;
}
if (command_complete)
status = forward_command_complete(frontend, p1, len1);
else
status = forward_empty_query(frontend, p1, len1);
if (status < 0)
return POOL_END;
}
else
{
if (handle_mismatch_tuples(frontend, backend, p1, len1, command_complete) != POOL_CONTINUE)
return POOL_END;
}
/* Save the received result to buffer for each kind */
if (pool_config->memory_cache_enabled)
{
if (pool_is_cache_safe() && !pool_is_cache_exceeded())
{
memqcache_register('C', frontend, p1, len1);
}
/*
* If we are doing extended query, register the SELECT result to temp
* query cache now.
*/
if (pool_is_doing_extended_query_message())
{
char *query;
Node *node;
char state;
if (session_context->query_context == NULL)
{
elog(WARNING, "expected query_contex is NULL");
return POOL_END;
}
query = session_context->query_context->query_w_hex;
node = pool_get_parse_tree();
state = TSTATE(backend, MAIN_NODE_ID);
/*
* If some rows have been fetched by an execute with non 0 row option,
* we do not create cache.
*/
pool_handle_query_cache(backend, query, node, state,
session_context->query_context->partial_fetch);
/*
* CommandComplete guarantees that all rows have been fetched. We
* can unconditionally set atEnd flag.
*/
session_context->query_context->atEnd = true;
}
}
pfree(p1);
if (pool_is_doing_extended_query_message() && pool_is_query_in_progress())
{
pool_set_query_state(session_context->query_context, POOL_EXECUTE_COMPLETE);
}
/*
* If we are in streaming replication mode and we are doing extended
* query, reset query in progress flag and previous pending message.
*/
if (SL_MODE && pool_is_doing_extended_query_message())
{
pool_at_command_success(frontend, backend);
pool_unset_query_in_progress();
pool_pending_message_reset_previous_message();
if (session_context->query_context == NULL)
{
elog(WARNING, "At command complete there's no query context");
}
else
{
/*
* Destroy query context if it is not referenced from sent
* messages and pending messages except bound to named statements
* or portals. Named statements and portals should remain until
* they are explicitly closed.
*/
if (can_query_context_destroy(session_context->query_context))
{
POOL_SENT_MESSAGE * msg = pool_get_sent_message_by_query_context(session_context->query_context);
if (!msg || (msg && *msg->name == '\0'))
{
pool_zap_query_context_in_sent_messages(session_context->query_context);
pool_query_context_destroy(session_context->query_context);
}
}
}
}
return POOL_CONTINUE;
}
/*
* Handle misc process which is necessary when query context exists.
*/
void
handle_query_context(POOL_CONNECTION_POOL * backend)
{
POOL_SESSION_CONTEXT *session_context;
Node *node;
/* Get session context */
session_context = pool_get_session_context(false);
node = session_context->query_context->parse_tree;
if (IsA(node, PrepareStmt))
{
if (session_context->uncompleted_message)
{
pool_add_sent_message(session_context->uncompleted_message);
session_context->uncompleted_message = NULL;
}
}
else if (IsA(node, DeallocateStmt))
{
char *name;
name = ((DeallocateStmt *) node)->name;
if (name == NULL)
{
pool_remove_sent_messages('Q');
pool_remove_sent_messages('P');
}
else
{
pool_remove_sent_message('Q', name);
pool_remove_sent_message('P', name);
}
}
else if (IsA(node, DiscardStmt))
{
DiscardStmt *stmt = (DiscardStmt *) node;
if (stmt->target == DISCARD_PLANS)
{
pool_remove_sent_messages('Q');
pool_remove_sent_messages('P');
}
else if (stmt->target == DISCARD_ALL)
{
pool_clear_sent_message_list();
}
}
/*
* JDBC driver sends "BEGIN" query internally if setAutoCommit(false).
* But it does not send Sync message after "BEGIN" query. In extended
* query protocol, PostgreSQL returns ReadyForQuery when a client sends
* Sync message. Problem is, pgpool can't know the transaction state
* without receiving ReadyForQuery. So we remember that we need to send
* Sync message internally afterward, whenever we receive BEGIN in
* extended protocol.
*/
else if (IsA(node, TransactionStmt))
{
TransactionStmt *stmt = (TransactionStmt *) node;
if (stmt->kind == TRANS_STMT_BEGIN || stmt->kind == TRANS_STMT_START)
{
int i;
for (i = 0; i < NUM_BACKENDS; i++)
{
if (!VALID_BACKEND(i))
continue;
TSTATE(backend, i) = 'T';
}
if (pool_config->disable_load_balance_on_write != DLBOW_TRANS_TRANSACTION)
pool_unset_writing_transaction();
pool_unset_failed_transaction();
pool_unset_transaction_isolation();
}
else if (stmt->kind == TRANS_STMT_COMMIT)
{
/* Commit ongoing CREATE/DROP temp table status */
pool_temp_tables_commit_pending();
/* Forget a transaction was started by multi statement query */
unset_tx_started_by_multi_statement_query();
/*
* Query cache enabled and REVOKE was issued in this transaction?
*/
if (pool_config->memory_cache_enabled &&
query_cache_disabled_tx())
{
/*
* Clear all the query cache.
*/
clear_query_cache();
/* Unset query cache disabled in this transaction */
unset_query_cache_disabled_tx();
}
}
else if (stmt->kind == TRANS_STMT_ROLLBACK)
{
/* Remove ongoing CREATE/DROP temp table status */
pool_temp_tables_remove_pending();
/* Forget a transaction was started by multi statement query */
unset_tx_started_by_multi_statement_query();
/* Unset query cache disabled in this transaction */
unset_query_cache_disabled_tx();
}
}
else if (IsA(node, CreateStmt))
{
CreateStmt *stmt = (CreateStmt *) node;
POOL_TEMP_TABLE_STATE state;
/* Is this a temporary table? */
if (stmt->relation->relpersistence == 't')
{
if (TSTATE(backend, MAIN_NODE_ID ) == 'T') /* Are we inside a transaction? */
{
state = TEMP_TABLE_CREATING;
}
else
{
state = TEMP_TABLE_CREATE_COMMITTED;
}
ereport(DEBUG1,
(errmsg("Creating temp table: %s. commit status: %d",
stmt->relation->relname, state)));
pool_temp_tables_add(stmt->relation->relname, state);
}
}
else if (IsA(node, DropStmt))
{
DropStmt *stmt = (DropStmt *) node;
POOL_TEMP_TABLE_STATE state;
if (stmt->removeType == OBJECT_TABLE)
{
/* Loop through stmt->objects */
ListCell *cell;
ListCell *next;
if (TSTATE(backend, MAIN_NODE_ID ) == 'T') /* Are we inside a transaction? */
{
state = TEMP_TABLE_DROPPING;
}
else
{
state = TEMP_TABLE_DROP_COMMITTED;
}
for (cell = list_head(session_context->temp_tables); cell; cell = next)
{
char *tablename = (char *)lfirst(cell);
ereport(DEBUG1,
(errmsg("Dropping temp table: %s", tablename)));
pool_temp_tables_delete(tablename, state);
if (!session_context->temp_tables)
return;
next = lnext(session_context->temp_tables, cell);
}
}
}
else if (IsA(node, VariableSetStmt))
{
VariableSetStmt *stmt = (VariableSetStmt *) node;
/* SET ROLE or SESSION AUTHORIZATION command? */
if (stmt->kind == VAR_SET_VALUE &&
(!strcmp(stmt->name, "role") ||
!strcmp(stmt->name, "session_authorization")))
/* disable query cache in this session */
set_query_cache_disabled();
}
else if (IsA(node, GrantStmt))
{
GrantStmt *stmt = (GrantStmt *) node;
/* REVOKE? */
if (stmt->is_grant)
return;
/* Clear query cache */
process_clear_cache(backend);
}
else if (IsA(node, AlterTableStmt) || IsA(node, AlterDatabaseStmt) ||
IsA(node, AlterDatabaseSetStmt))
{
/* Clear query cache */
process_clear_cache(backend);
}
else if (IsA(node, AlterRoleStmt))
{
if (check_alter_role_statement(castNode(AlterRoleStmt, node)))
{
/* Clear query cache */
process_clear_cache(backend);
}
}
}
/*
* Check whether the ALTER ROLE statement needs query cache invalidation.
* stmt must be AlterRoleStmt.
*/
static bool
check_alter_role_statement(AlterRoleStmt *stmt)
{
ListCell *l;
foreach(l, stmt->options)
{
DefElem *elm = (DefElem *) lfirst(l);
/*
* We want to detect other than ALTER ROLE foo WITH PASSWORD or
* WITH CONNECTION LIMIT case. It does not change any privilege of the
* role.
*/
if (strcmp(elm->defname, "password") &&
strcmp(elm->defname, "connectionlimit"))
return true;
}
return false;
}
/*
* Extract the number of tuples from CommandComplete message
*/
static int
extract_ntuples(char *message)
{
char *rows;
if ((rows = strstr(message, "UPDATE")) || (rows = strstr(message, "DELETE")))
rows += 7;
else if ((rows = strstr(message, "INSERT")))
{
rows += 7;
while (*rows && *rows != ' ')
rows++;
}
else
return 0;
return atoi(rows);
}
/*
* Handle mismatch tuples
*/
static POOL_STATUS handle_mismatch_tuples(POOL_CONNECTION * frontend, POOL_CONNECTION_POOL * backend, char *packet, int packetlen, bool command_complete)
{
POOL_SESSION_CONTEXT *session_context;
int rows;
int i;
int len;
char *p;
/* Get session context */
session_context = pool_get_session_context(false);
rows = extract_ntuples(packet);
/*
* Save number of affected tuples of main node.
*/
session_context->ntuples[MAIN_NODE_ID] = rows;
for (i = 0; i < NUM_BACKENDS; i++)
{
if (!IS_MAIN_NODE_ID(i))
{
if (!VALID_BACKEND(i))
{
session_context->ntuples[i] = -1;
continue;
}
pool_read(CONNECTION(backend, i), &len, sizeof(len));
len = ntohl(len);
len -= 4;
p = pool_read2(CONNECTION(backend, i), len);
if (p == NULL)
return POOL_END;
if (len != packetlen)
{
ereport(DEBUG1,
(errmsg("processing command complete"),
errdetail("length does not match between backends main(%d) %d th backend(%d)",
len, i, packetlen)));
}
int n = extract_ntuples(p);
/*
* Save number of affected tuples.
*/
session_context->ntuples[i] = n;
if (rows != n)
{
/*
* Remember that we have different number of UPDATE/DELETE
* affected tuples in backends.
*/
session_context->mismatch_ntuples = true;
}
}
}
if (session_context->mismatch_ntuples)
{
StringInfoData msg;
initStringInfo(&msg);
appendStringInfoString(&msg, "pgpool detected difference of the number of inserted, updated or deleted tuples. Possible last query was: \"");
appendStringInfoString(&msg, query_string_buffer);
appendStringInfoString(&msg, "\"");
pool_send_error_message(frontend, MAJOR(backend),
"XX001", msg.data, "",
"check data consistency between main and other db node", __FILE__, __LINE__);
ereport(LOG,
(errmsg("%s", msg.data)));
pfree(msg.data);
initStringInfo(&msg);
appendStringInfoString(&msg, "CommandComplete: Number of affected tuples are:");
for (i = 0; i < NUM_BACKENDS; i++)
appendStringInfo(&msg, " %d", session_context->ntuples[i]);
ereport(LOG,
(errmsg("processing command complete"),
errdetail("%s", msg.data)));
pfree(msg.data);
}
else
{
if (command_complete)
{
if (forward_command_complete(frontend, packet, packetlen) < 0)
return POOL_END;
}
else
{
if (forward_empty_query(frontend, packet, packetlen) < 0)
return POOL_END;
}
}
return POOL_CONTINUE;
}
/*
* Forward Command complete packet to frontend
*/
static int
forward_command_complete(POOL_CONNECTION * frontend, char *packet, int packetlen)
{
return forward_packet_to_frontend(frontend, 'C', packet, packetlen);
}
/*
* Forward Empty query response to frontend
*/
static int
forward_empty_query(POOL_CONNECTION * frontend, char *packet, int packetlen)
{
return forward_packet_to_frontend(frontend, 'I', packet, packetlen);
}
/*
* Forward packet to frontend
*/
static int
forward_packet_to_frontend(POOL_CONNECTION * frontend, char kind, char *packet, int packetlen)
{
int sendlen;
if (pool_write(frontend, &kind, 1) < 0)
return -1;
sendlen = htonl(packetlen + 4);
if (pool_write(frontend, &sendlen, sizeof(sendlen)) < 0)
return -1;
pool_write_and_flush(frontend, packet, packetlen);
return 0;
}
/*
* Process statements that need clearing query cache
*/
static void
process_clear_cache(POOL_CONNECTION_POOL * backend)
{
/* Query cache enabled? */
if (!pool_config->memory_cache_enabled)
return;
/* Streaming replication mode? */
if (SL_MODE)
{
/*
* Are we inside a transaction?
*/
if (TSTATE(backend, MAIN_NODE_ID ) == 'T')
{
/*
* Disable query cache in this transaction.
* All query cache will be cleared at commit.
*/
set_query_cache_disabled_tx();
}
else if (TSTATE(backend, MAIN_NODE_ID ) == 'I') /* outside transaction */
{
/*
* Clear all the query cache.
*/
clear_query_cache();
}
}
else
{
/*
* Are we inside a transaction?
*/
if (TSTATE(backend, MAIN_NODE_ID ) == 'T')
{
/* Inside user started transaction? */
if (!INTERNAL_TRANSACTION_STARTED(backend, MAIN_NODE_ID))
{
/*
* Disable query cache in this transaction.
* All query cache will be cleared at commit.
*/
set_query_cache_disabled_tx();
}
else
{
/*
* Clear all the query cache.
*/
clear_query_cache();
}
}
else if (TSTATE(backend, MAIN_NODE_ID ) == 'I') /* outside transaction */
{
/*
* Clear all the query cache.
*/
clear_query_cache();
}
}
}
|