- Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathsignal_handler.c
332 lines (278 loc) · 8.01 KB
/
signal_handler.c
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
/*
* signal_handler.c
* Collect current query state and send it to requestor in custom signal handler
*
* Copyright (c) 2016-2024, Postgres Professional
*
* IDENTIFICATION
* contrib/pg_query_state/signal_handler.c
*/
#include"pg_query_state.h"
#include"commands/explain.h"
#include"miscadmin.h"
#ifPG_VERSION_NUM >= 100000
#include"pgstat.h"
#endif
#include"utils/builtins.h"
#include"utils/memutils.h"
/*
* Structure of stack frame of fucntion call which resulted from analyze of query state
*/
typedefstruct
{
constchar*query;
char*plan;
} stack_frame;
/*
* An self-explanarory enum describing the send_msg_by_parts results
*/
typedefenum
{
MSG_BY_PARTS_SUCCEEDED,
MSG_BY_PARTS_FAILED
} msg_by_parts_result;
staticmsg_by_parts_resultsend_msg_by_parts(shm_mq_handle*mqh, Sizenbytes, constvoid*data);
/*
* Get List of stack_frames as a stack of function calls starting from outermost call.
* Each entry contains query text and query state in form of EXPLAIN ANALYZE output.
* Assume extension is enabled and QueryDescStack is not empty
*/
staticList*
runtime_explain()
{
ExplainState*es;
ListCell*i;
List*result=NIL;
Assert(list_length(QueryDescStack) >0);
/* initialize explain state with all config parameters */
es=NewExplainState();
es->analyze= true;
es->verbose=params->verbose;
es->costs=params->costs;
es->buffers=params->buffers&&pg_qs_buffers;
es->timing=params->timing&&pg_qs_timing;
es->summary= false;
es->format=params->format;
es->runtime= true;
/* collect query state outputs of each plan entry of stack */
foreach(i, QueryDescStack)
{
QueryDesc*currentQueryDesc= (QueryDesc*) lfirst(i);
stack_frame*qs_frame=palloc(sizeof(stack_frame));
/* save query text */
qs_frame->query=currentQueryDesc->sourceText;
/* save plan with statistics */
initStringInfo(es->str);
ExplainBeginOutput(es);
ExplainPrintPlan(es, currentQueryDesc);
if (params->triggers)
ExplainPrintTriggers(es, currentQueryDesc);
ExplainEndOutput(es);
/* Remove last line break */
if (es->str->len>0&&es->str->data[es->str->len-1] =='\n')
es->str->data[--es->str->len] ='\0';
/* Fix JSON to output an object */
if (params->format==EXPLAIN_FORMAT_JSON)
{
es->str->data[0] ='{';
es->str->data[es->str->len-1] ='}';
}
qs_frame->plan=es->str->data;
result=lcons(qs_frame, result);
}
returnresult;
}
/*
* Compute length of serialized stack frame
*/
staticint
serialized_stack_frame_length(stack_frame*qs_frame)
{
returnINTALIGN(strlen(qs_frame->query) +VARHDRSZ)
+INTALIGN(strlen(qs_frame->plan) +VARHDRSZ);
}
/*
* Compute overall length of serialized stack of function calls
*/
staticint
serialized_stack_length(List*qs_stack)
{
ListCell*i;
intresult=0;
foreach(i, qs_stack)
{
stack_frame*qs_frame= (stack_frame*) lfirst(i);
result+=serialized_stack_frame_length(qs_frame);
}
returnresult;
}
/*
* Convert stack_frame record into serialized text format version
* Increment '*dest' pointer to the next serialized stack frame
*/
staticvoid
serialize_stack_frame(char**dest, stack_frame*qs_frame)
{
SET_VARSIZE(*dest, strlen(qs_frame->query) +VARHDRSZ);
memcpy(VARDATA(*dest), qs_frame->query, strlen(qs_frame->query));
*dest+=INTALIGN(VARSIZE(*dest));
SET_VARSIZE(*dest, strlen(qs_frame->plan) +VARHDRSZ);
memcpy(VARDATA(*dest), qs_frame->plan, strlen(qs_frame->plan));
*dest+=INTALIGN(VARSIZE(*dest));
}
/*
* Convert List of stack_frame records into serialized structures laid out sequentially
*/
staticvoid
serialize_stack(char*dest, List*qs_stack)
{
ListCell*i;
foreach(i, qs_stack)
{
stack_frame*qs_frame= (stack_frame*) lfirst(i);
serialize_stack_frame(&dest, qs_frame);
}
}
staticmsg_by_parts_result
shm_mq_send_nonblocking(shm_mq_handle*mqh, Sizenbytes, constvoid*data, Sizeattempts)
{
inti;
shm_mq_resultres;
for(i=0; i<attempts; i++)
{
#ifPG_VERSION_NUM<150000
res=shm_mq_send(mqh, nbytes, data, true);
#else
res=shm_mq_send(mqh, nbytes, data, true, true);
#endif
if(res==SHM_MQ_SUCCESS)
break;
elseif (res==SHM_MQ_DETACHED)
returnMSG_BY_PARTS_FAILED;
/* SHM_MQ_WOULD_BLOCK - sleeping for some delay */
pg_usleep(WRITING_DELAY);
}
if(i==attempts)
returnMSG_BY_PARTS_FAILED;
returnMSG_BY_PARTS_SUCCEEDED;
}
/*
* send_msg_by_parts sends data through the queue as a bunch of messages
* of smaller size
*/
staticmsg_by_parts_result
send_msg_by_parts(shm_mq_handle*mqh, Sizenbytes, constvoid*data)
{
intbytes_left;
intbytes_send;
intoffset;
/* Send the expected message length */
if(shm_mq_send_nonblocking(mqh, sizeof(Size), &nbytes, NUM_OF_ATTEMPTS) ==MSG_BY_PARTS_FAILED)
returnMSG_BY_PARTS_FAILED;
/* Send the message itself */
for (offset=0; offset<nbytes; offset+=bytes_send)
{
bytes_left=nbytes-offset;
bytes_send= (bytes_left<MSG_MAX_SIZE) ? bytes_left : MSG_MAX_SIZE;
if(shm_mq_send_nonblocking(mqh, bytes_send, &(((unsigned char*)data)[offset]), NUM_OF_ATTEMPTS)
==MSG_BY_PARTS_FAILED)
returnMSG_BY_PARTS_FAILED;
}
returnMSG_BY_PARTS_SUCCEEDED;
}
/*
* Send state of current query to shared queue.
* This function is called when fire custom signal QueryStatePollReason
*/
void
SendQueryState(void)
{
shm_mq_handle*mqh;
instr_timestart_time;
instr_timecur_time;
int64delay=MAX_SND_TIMEOUT;
intreqid=params->reqid;
LOCKTAGtag;
INSTR_TIME_SET_CURRENT(start_time);
/* wait until caller sets this process as sender to message queue */
for (;;)
{
if (shm_mq_get_sender(mq) ==MyProc)
break;
#ifPG_VERSION_NUM<100000
WaitLatch(MyLatch, WL_LATCH_SET | WL_TIMEOUT, delay);
#elifPG_VERSION_NUM<120000
WaitLatch(MyLatch, WL_LATCH_SET | WL_TIMEOUT, delay, PG_WAIT_IPC);
#else
WaitLatch(MyLatch, WL_LATCH_SET | WL_EXIT_ON_PM_DEATH | WL_TIMEOUT, delay, PG_WAIT_IPC);
#endif
INSTR_TIME_SET_CURRENT(cur_time);
INSTR_TIME_SUBTRACT(cur_time, start_time);
delay=MAX_SND_TIMEOUT- (int64) INSTR_TIME_GET_MILLISEC(cur_time);
if (delay <= 0)
{
elog(WARNING, "pg_query_state: failed to receive request from leader");
DetachPeer();
return;
}
CHECK_FOR_INTERRUPTS();
ResetLatch(MyLatch);
}
LockShmem(&tag, PG_QS_SND_KEY);
elog(DEBUG1, "Worker %d receives pg_query_state request from %d", shm_mq_get_sender(mq)->pid, shm_mq_get_receiver(mq)->pid);
mqh=shm_mq_attach(mq, NULL, NULL);
if (reqid!=params->reqid||shm_mq_get_sender(mq) !=MyProc)
{
UnlockShmem(&tag);
return;
}
/* check if module is enabled */
if (!pg_qs_enable)
{
shm_mq_msgmsg= { reqid, BASE_SIZEOF_SHM_MQ_MSG, MyProc, STAT_DISABLED };
if(send_msg_by_parts(mqh, msg.length, &msg) !=MSG_BY_PARTS_SUCCEEDED)
goto connection_cleanup;
}
/* check if backend doesn't execute any query */
elseif (list_length(QueryDescStack) ==0)
{
shm_mq_msgmsg= { reqid, BASE_SIZEOF_SHM_MQ_MSG, MyProc, QUERY_NOT_RUNNING };
if(send_msg_by_parts(mqh, msg.length, &msg) !=MSG_BY_PARTS_SUCCEEDED)
goto connection_cleanup;
}
/* happy path */
else
{
List*qs_stack=runtime_explain();
intmsglen=sizeof(shm_mq_msg) +serialized_stack_length(qs_stack);
shm_mq_msg*msg=palloc(msglen);
msg->reqid=reqid;
msg->length=msglen;
msg->proc=MyProc;
msg->result_code=QS_RETURNED;
msg->warnings=0;
if (params->timing&& !pg_qs_timing)
msg->warnings |= TIMINIG_OFF_WARNING;
if (params->buffers&& !pg_qs_buffers)
msg->warnings |= BUFFERS_OFF_WARNING;
msg->stack_depth=list_length(qs_stack);
serialize_stack(msg->stack, qs_stack);
if(send_msg_by_parts(mqh, msglen, msg) !=MSG_BY_PARTS_SUCCEEDED)
{
elog(WARNING, "pg_query_state: peer seems to have detached");
goto connection_cleanup;
}
}
elog(DEBUG1, "Worker %d sends response for pg_query_state to %d", shm_mq_get_sender(mq)->pid, shm_mq_get_receiver(mq)->pid);
DetachPeer();
UnlockShmem(&tag);
return;
connection_cleanup:
#ifPG_VERSION_NUM<100000
shm_mq_detach(mq);
#else
shm_mq_detach(mqh);
#endif
DetachPeer();
UnlockShmem(&tag);
}