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
|
/* -*-pgsql-c-*- */
/*
* $Header$
*
* pgpool: a language independent connection pool server for PostgreSQL
* written by Tatsuo Ishii
*
* Copyright (c) 2003-2017 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 "parser/pg_config_manual.h"
#include "parser/pool_string.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);
static int foward_command_complete(POOL_CONNECTION *frontend, char *packet, int packetlen);
static int foward_empty_query(POOL_CONNECTION *frontend, char *packet, int packetlen);
static int foward_packet_to_frontend(POOL_CONNECTION *frontend, char kind, char *packet, int packetlen);
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 neccessary when query context exists.
*/
if (session_context->query_context != NULL && !STREAM)
handle_query_context(backend);
/*
* If operated in streaming replication mode and doing an extended query,
* read backend message according to the query context.
*/
if (STREAM && pool_is_doing_extended_query_message())
{
for (i=0;i<NUM_BACKENDS;i++)
{
if (VALID_BACKEND(i))
{
con = CONNECTION(backend, i);
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);
}
}
}
/*
* Otherwise just read from master node.
*/
else
{
con = MASTER(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);
}
/*
* 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 (STREAM && pool_is_doing_extended_query_message())
{
int status;
if (command_complete)
status = foward_command_complete(frontend, p1, len1);
else
status = foward_empty_query(frontend, p1, len1);
if (status < 0)
return POOL_END;
}
else
{
if (handle_mismatch_tuples(frontend, backend, p1, len1) != 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);
}
}
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 prevoius pending message.
*/
if (STREAM && pool_is_doing_extended_query_message())
{
pool_unset_query_in_progress();
pool_pending_message_reset_previous_message();
}
return POOL_CONTINUE;
}
/*
* Handle misc process which is neccessary 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';
}
pool_unset_writing_transaction();
pool_unset_failed_transaction();
pool_unset_transaction_isolation();
}
}
}
/*
* 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)
{
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 master node.
*/
session_context->ntuples[MASTER_NODE_ID] = rows;
for (i=0;i<NUM_BACKENDS;i++)
{
if (!IS_MASTER_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 master(%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)
{
char msgbuf[128];
String *msg = init_string("pgpool detected difference of the number of inserted, updated or deleted tuples. Possible last query was: \"");
string_append_char(msg, query_string_buffer);
string_append_char(msg, "\"");
pool_send_error_message(frontend, MAJOR(backend),
"XX001", msg->data, "",
"check data consistency between master and other db node", __FILE__, __LINE__);
ereport(LOG,
(errmsg("%s", msg->data)));
free_string(msg);
msg = init_string("CommandComplete: Number of affected tuples are:");
for (i=0;i<NUM_BACKENDS;i++)
{
snprintf(msgbuf, sizeof(msgbuf), " %d", session_context->ntuples[i]);
string_append_char(msg, msgbuf);
}
ereport(LOG,
(errmsg("processing command complete"),
errdetail("%s", msg->data)));
free_string(msg);
}
else
{
if (foward_command_complete(frontend, packet, packetlen) < 0)
return POOL_END;
}
return POOL_CONTINUE;
}
/*
* Forward Command complete packet to frontend
*/
static int foward_command_complete(POOL_CONNECTION *frontend, char *packet, int packetlen)
{
return foward_packet_to_frontend(frontend, 'C', packet, packetlen);
}
/*
* Forward Empty query response to frontend
*/
static int foward_empty_query(POOL_CONNECTION *frontend, char *packet, int packetlen)
{
return foward_packet_to_frontend(frontend, 'I', packet, packetlen);
}
/*
* Forward packet to frontend
*/
static int foward_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;
}
|