-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpg_timeout.c
347 lines (301 loc) · 9.03 KB
/
pg_timeout.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
333
334
335
336
337
338
339
340
341
342
343
344
345
346
/* -------------------------------------------------------------------------
*
* pg_timeout.c
*
* Background code to handle session timeout.
*
* This code is reusing worker_spi.c code from PostgresSQL code.
*
* Copyright 2020 Pierre Forstmann
* -------------------------------------------------------------------------
*/
#include "postgres.h"
/* These are always necessary for a bgworker */
#include "miscadmin.h"
#include "postmaster/bgworker.h"
#include "storage/ipc.h"
#include "storage/latch.h"
#include "storage/lwlock.h"
#include "storage/proc.h"
#include "storage/shmem.h"
/* these headers are used by this particular worker's code */
#include "access/xact.h"
#include "executor/spi.h"
#include "fmgr.h"
#include "lib/stringinfo.h"
#include "pgstat.h"
#include "utils/builtins.h"
#include "utils/snapmgr.h"
#include "tcop/utility.h"
PG_MODULE_MAGIC;
PG_FUNCTION_INFO_V1(pg_timeout_main);
void _PG_init(void);
/*
* flags set by signal handlers
* */
static volatile sig_atomic_t got_sighup = false;
static volatile sig_atomic_t got_sigterm = false;
/* GUC variables */
/*
* parameter default value in seconds set by _PG_init
*/
static int pg_timeout_idle_session_timeout = 0;
static int pg_timeout_naptime = 0;
#define LOG_MESSAGE "%s: idle session PID=%d user=%s database=%s application=%s hostname=%s"
static char *null_value="NULL";
/*
* Signal handler for SIGTERM
* Set a flag to let the main loop to terminate, and set our latch to wake
* it up.
*/
static void
pg_timeout_sigterm(SIGNAL_ARGS)
{
int save_errno = errno;
got_sigterm = true;
SetLatch(MyLatch);
errno = save_errno;
}
/*
* Signal handler for SIGHUP
* Set a flag to tell the main loop to reread the config file, and set
* our latch to wake it up.
*/
static void
pg_timeout_sighup(SIGNAL_ARGS)
{
int save_errno = errno;
got_sighup = true;
SetLatch(MyLatch);
errno = save_errno;
}
Datum
pg_timeout_main(PG_FUNCTION_ARGS)
{
StringInfoData buf_select;
StringInfoData buf_kill;
char *usename_val;
char *datname_val;
char *application_name_val;
char *client_hostname_val;
/* Establish signal handlers before unblocking signals. */
pqsignal(SIGHUP, pg_timeout_sighup);
pqsignal(SIGTERM, pg_timeout_sigterm);
/* We're now ready to receive signals */
BackgroundWorkerUnblockSignals();
/* Connect to our database */
#if PG_VERSION_NUM >=110000
BackgroundWorkerInitializeConnection("postgres", NULL, 0);
#else
BackgroundWorkerInitializeConnection("postgres", NULL);
#endif
elog(LOG, "%s initialized", MyBgworkerEntry->bgw_name);
/*
*/
/* In PG 9.5 and 9.6 only client backend are taken into account.
* In PG 10 and above, background workers are also taken into account
* but with state and stage_change set to null:
* no need to filter on backend_type.
*/
initStringInfo(&buf_select);
appendStringInfo(&buf_select,
"SELECT pid, usename, datname, application_name, client_hostname "
"FROM pg_stat_activity "
"WHERE pid <> pg_backend_pid() "
"AND state = 'idle' "
"AND state_change < current_timestamp - INTERVAL '%d' SECOND",
pg_timeout_idle_session_timeout
);
initStringInfo(&buf_kill);
appendStringInfo(&buf_kill,
"SELECT pg_terminate_backend(pid) "
"FROM pg_stat_activity "
"WHERE pid <> pg_backend_pid() "
"AND state = 'idle' "
"AND state_change < current_timestamp - INTERVAL '%d' SECOND",
pg_timeout_idle_session_timeout
);
/*
* Main loop: do this until the SIGTERM handler tells us to terminate
*/
while (!got_sigterm)
{
int ret;
int rc;
int nr;
int i;
/*
* Background workers mustn't call usleep() or any direct equivalent:
* instead, they may wait on their process latch, which sleeps as
* necessary, but is awakened if postmaster dies. That way the
* background process goes away immediately in an emergency.
*/
#if PG_VERSION_NUM >= 100000
rc = WaitLatch(MyLatch,
WL_LATCH_SET | WL_TIMEOUT | WL_POSTMASTER_DEATH,
pg_timeout_naptime * 1000L,
PG_WAIT_EXTENSION);
#else
rc = WaitLatch(MyLatch,
WL_LATCH_SET | WL_TIMEOUT | WL_POSTMASTER_DEATH,
pg_timeout_naptime * 1000L);
#endif
ResetLatch(MyLatch);
/* emergency bailout if postmaster has died */
if (rc & WL_POSTMASTER_DEATH)
proc_exit(1);
CHECK_FOR_INTERRUPTS();
/*
* In case of a SIGHUP, just reload the configuration.
*/
if (got_sighup)
{
got_sighup = false;
ProcessConfigFile(PGC_SIGHUP);
}
/*
* Start a transaction on which we can run queries. Note that each
* StartTransactionCommand() call should be preceded by a
* SetCurrentStatementStartTimestamp() call, which sets both the time
* for the statement we're about the run, and also the transaction
* start time. Also, each other query sent to SPI should probably be
* preceded by SetCurrentStatementStartTimestamp(), so that statement
* start time is always up to date.
*
* The SPI_connect() call lets us run queries through the SPI manager,
* and the PushActiveSnapshot() call creates an "active" snapshot
* which is necessary for queries to have MVCC data to work on.
*
* The pgstat_report_activity() call makes our activity visible
* through the pgstat views.
*/
SetCurrentStatementStartTimestamp();
StartTransactionCommand();
SPI_connect();
PushActiveSnapshot(GetTransactionSnapshot());
pgstat_report_activity(STATE_RUNNING, buf_select.data);
/* We can now execute queries via SPI */
ret = SPI_execute(buf_select.data, false, 0);
if (ret != SPI_OK_SELECT)
elog(FATAL, "cannot select from pg_stat_activity: error code %d",
ret);
nr = SPI_processed;
i = 0;
for (i = 0; i < nr; i++)
{
bool isnull;
int32 pid_val;
pid_val = DatumGetInt32(SPI_getbinval(SPI_tuptable->vals[i],
SPI_tuptable->tupdesc,
1, &isnull));
if (!isnull)
{
usename_val = SPI_getvalue(SPI_tuptable->vals[i],
SPI_tuptable->tupdesc,
2);
datname_val = SPI_getvalue(SPI_tuptable->vals[i],
SPI_tuptable->tupdesc,
3);
application_name_val = SPI_getvalue(SPI_tuptable->vals[i],
SPI_tuptable->tupdesc,
4);
client_hostname_val = SPI_getvalue(SPI_tuptable->vals[i],
SPI_tuptable->tupdesc,
5);
/*
* client_hostname_val is NULL pointer because column client_hostname is null.
*/
if (usename_val == NULL)
usename_val = null_value;
if (datname_val == NULL)
datname_val = null_value;
if (application_name_val == NULL)
client_hostname_val = null_value;
if (client_hostname_val == NULL)
client_hostname_val = null_value;
elog(LOG, LOG_MESSAGE,
MyBgworkerEntry->bgw_name, pid_val, usename_val,
datname_val, application_name_val,
client_hostname_val);
}
else elog(WARNING, "%s: pid is NULL",
MyBgworkerEntry->bgw_name);
}
if (nr > 0)
{
ret = SPI_execute(buf_kill.data, false, 0);
if (ret != SPI_OK_SELECT)
elog(FATAL, "cannot select pg_terminate_backend: error code %d",
ret);
elog(LOG, "%s: idle session(s) since %d seconds terminated",
MyBgworkerEntry->bgw_name,
pg_timeout_idle_session_timeout);
}
/*
* And finish our transaction.
*/
SPI_finish();
PopActiveSnapshot();
CommitTransactionCommand();
pgstat_report_stat(false);
pgstat_report_activity(STATE_IDLE, NULL);
}
proc_exit(1);
}
/*
* Entrypoint of this module.
*
*/
void
_PG_init(void)
{
BackgroundWorker worker;
/* get the configuration */
DefineCustomIntVariable("pg_timeout.naptime",
"Duration between each check (in seconds).",
NULL,
&pg_timeout_naptime,
10,
1,
INT_MAX,
PGC_SIGHUP,
0,
NULL,
NULL,
NULL);
if (!process_shared_preload_libraries_in_progress)
return;
DefineCustomIntVariable("pg_timeout.idle_session_timeout",
"Maximum idle session time.",
NULL,
&pg_timeout_idle_session_timeout,
60,
1,
INT_MAX,
PGC_SIGHUP,
0,
NULL,
NULL,
NULL);
/* set up common data for all our workers */
memset(&worker, 0, sizeof(worker));
worker.bgw_flags = BGWORKER_SHMEM_ACCESS |
BGWORKER_BACKEND_DATABASE_CONNECTION;
worker.bgw_start_time = BgWorkerStart_RecoveryFinished;
worker.bgw_restart_time = pg_timeout_naptime;
sprintf(worker.bgw_library_name, "pg_timeout");
sprintf(worker.bgw_function_name, "pg_timeout_main");
worker.bgw_notify_pid = 0;
snprintf(worker.bgw_name, BGW_MAXLEN, "pg_timeout_worker");
#if PG_VERSION_NUM >= 110000
snprintf(worker.bgw_type, BGW_MAXLEN, "pg_timeout");
#endif
worker.bgw_main_arg = 0;
RegisterBackgroundWorker(&worker);
elog(LOG, "%s started with pg_timeout.naptime=%d seconds",
worker.bgw_name,
pg_timeout_naptime);
elog(LOG, "%s started with pg_timeout.idle_session_timeout=%d seconds",
worker.bgw_name,
pg_timeout_idle_session_timeout);
}