-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpg_rage_terminator.c
307 lines (265 loc) · 8.17 KB
/
pg_rage_terminator.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
/*-------------------------------------------------------------------------
*
* pg_rage_terminator.c
* Kills random connections of a Postgres server.
*
* Copyright (c) 2015, Adrian Vondendriesch
*
* IDENTIFICATION
* pg_rage_terminator/pg_rage_terminator.c
*
*-------------------------------------------------------------------------
*/
/* Some general headers for custom bgworker facility */
#include "postgres.h"
#include "fmgr.h"
#include "access/xact.h"
#include "lib/stringinfo.h"
#include "pgstat.h"
#include "executor/spi.h"
#include "postmaster/bgworker.h"
#include "storage/ipc.h"
#include "storage/latch.h"
#include "storage/proc.h"
#include "utils/guc.h"
#include "utils/snapmgr.h"
/* Allow load of this module in shared libs */
PG_MODULE_MAGIC;
/* Entry point of library loading */
void _PG_init(void);
/* Signal handling */
static volatile sig_atomic_t got_sigterm = false;
static volatile sig_atomic_t got_sighup = false;
/* GUC variables */
static int chance = 10;
static int interval = 5;
/* Worker name */
static char *worker_name = "pg_rage_terminator";
#if PG_VERSION_NUM >= 90500
/*
* Forward declaration for main routine. Makes compiler
* happy (-Wunused-function, __attribute__((noreturn)))
*/
void pg_rage_terminator_main(Datum main_arg) pg_attribute_noreturn();
#endif
static void
pg_rage_terminator_sigterm(SIGNAL_ARGS)
{
int save_errno = errno;
got_sigterm = true;
if (MyProc)
SetLatch(&MyProc->procLatch);
errno = save_errno;
}
static void
pg_rage_terminator_sighup(SIGNAL_ARGS)
{
int save_errno = errno;
got_sighup = true;
if (MyProc)
SetLatch(&MyProc->procLatch);
errno = save_errno;
}
static void
pg_rage_terminator_build_query(StringInfoData *buf)
{
appendStringInfo(buf, "SELECT "
"pid, pg_terminate_backend(pid) as status, "
"usename, datname, client_addr::text "
"FROM pg_stat_activity "
"WHERE client_port IS NOT NULL "
"AND ((random() * 100)::int < %d) ",
chance);
elog(DEBUG1, "Kill query is: %s", buf->data);
}
void
pg_rage_terminator_main(Datum main_arg)
{
StringInfoData buf;
/* Register functions for SIGTERM/SIGHUP management */
pqsignal(SIGHUP, pg_rage_terminator_sighup);
pqsignal(SIGTERM, pg_rage_terminator_sigterm);
/* We're now ready to receive signals */
BackgroundWorkerUnblockSignals();
/* Connect to a database */
#if PG_VERSION_NUM >= 110000
BackgroundWorkerInitializeConnection("postgres", NULL, BGWORKER_SHMEM_ACCESS|BGWORKER_BACKEND_DATABASE_CONNECTION);
#else
BackgroundWorkerInitializeConnection("postgres", NULL);
#endif
/* Build query for process */
initStringInfo(&buf);
pg_rage_terminator_build_query(&buf);
while (!got_sigterm)
{
int rc = 0;
int ret, i;
int sleep_interval;
if (0 == interval)
sleep_interval = 10;
else
sleep_interval = interval;
/* Wait necessary amount of time */
rc = WaitLatch(&MyProc->procLatch,
WL_LATCH_SET | WL_TIMEOUT | WL_POSTMASTER_DEATH,
sleep_interval * 1000L
#if PG_VERSION_NUM >= 100000
, PG_WAIT_EXTENSION
#endif
);
ResetLatch(&MyProc->procLatch);
/* Emergency bailout if postmaster has died */
if (rc & WL_POSTMASTER_DEATH)
proc_exit(1);
/* Process signals */
if (got_sighup)
{
int old_chance;
/* Save old value of kill chance */
old_chance = chance;
/* Process config file */
ProcessConfigFile(PGC_SIGHUP);
got_sighup = false;
ereport(LOG, (errmsg("bgworker pg_rage_terminator signal: processed SIGHUP")));
/* Rebuild query if necessary */
if (old_chance != chance)
{
resetStringInfo(&buf);
initStringInfo(&buf);
pg_rage_terminator_build_query(&buf);
}
}
if (got_sigterm)
{
/* Simply exit */
ereport(LOG, (errmsg("bgworker pg_rage_terminator signal: processed SIGTERM")));
proc_exit(0);
}
/*
* If interval is 0 we should not do anything.
* This has to be done after sighup and sigterm handling.
*/
if (0 == interval)
{
elog(LOG, "Nothing to do, sleep zzzzZZZZ");
continue;
}
/* Process idle connection kill */
SetCurrentStatementStartTimestamp();
StartTransactionCommand();
SPI_connect();
PushActiveSnapshot(GetTransactionSnapshot());
pgstat_report_activity(STATE_RUNNING, buf.data);
/* Statement start time */
SetCurrentStatementStartTimestamp();
/* Execute query */
ret = SPI_execute(buf.data, false, 0);
/* Some error handling */
if (ret != SPI_OK_SELECT)
elog(FATAL, "Error when trying to rage");
/* Do some processing and log stuff disconnected */
for (i = 0; i < SPI_processed; i++)
{
int32 pidValue;
bool isnull;
char *datname = NULL;
char *usename = NULL;
char *client_addr = NULL;
/* Fetch values */
pidValue = DatumGetInt32(SPI_getbinval(SPI_tuptable->vals[i],
SPI_tuptable->tupdesc,
1, &isnull));
usename = DatumGetCString(SPI_getbinval(SPI_tuptable->vals[i],
SPI_tuptable->tupdesc,
3, &isnull));
datname = DatumGetCString(SPI_getbinval(SPI_tuptable->vals[i],
SPI_tuptable->tupdesc,
4, &isnull));
client_addr = DatumGetCString(SPI_getbinval(SPI_tuptable->vals[i],
SPI_tuptable->tupdesc,
5, &isnull));
/* Log what has been disconnected */
elog(LOG, "Rage terminated connection with PID %d %s/%s/%s",
pidValue, datname ? datname : "none",
usename ? usename : "none",
client_addr ? client_addr : "none");
}
SPI_finish();
PopActiveSnapshot();
CommitTransactionCommand();
pgstat_report_activity(STATE_IDLE, NULL);
}
/* No problems, so clean exit */
proc_exit(0);
}
static void
pg_rage_terminator_load_params(void)
{
/*
* Kill backends with a chance of <chance>.
* Look every <interval> seconds for new targets.
*/
DefineCustomIntVariable("pg_rage_terminator.chance",
"Chance to terminate a backend in Percent (aboslue).",
"Default of 10",
&chance,
10,
0,
100,
PGC_SIGHUP,
0,
NULL,
NULL,
NULL);
DefineCustomIntVariable("pg_rage_terminator.interval",
"Inteval in which pg_rager_terminator looks for new targets (s).",
"Default of 5",
&interval,
5,
-1,
3600,
PGC_SIGHUP,
0,
NULL,
NULL,
NULL);
}
/*
* Entry point for worker loading
*/
void
_PG_init(void)
{
BackgroundWorker worker;
/* Add parameters */
pg_rage_terminator_load_params();
/* Worker parameter and registration */
worker.bgw_flags = BGWORKER_SHMEM_ACCESS |
BGWORKER_BACKEND_DATABASE_CONNECTION;
worker.bgw_start_time = BgWorkerStart_ConsistentState;
/*
* bgw_main is considered a footgun, per commit
* 2113ac4cbb12 in postgresql.git. Deprecate its
* usage here and use the safer method by setting
* bgw_function_name and bgw_library_name. PG10 gets
* rid of bgw_main completly, but we need to retain
* it here to get the initialization correct.
*/
#if PG_VERSION_NUM < 100000
worker.bgw_main = NULL;
#endif
snprintf(worker.bgw_library_name, BGW_MAXLEN - 1, "pg_rage_terminator");
snprintf(worker.bgw_function_name, BGW_MAXLEN - 1, "pg_rage_terminator_main");
snprintf(worker.bgw_name, BGW_MAXLEN, "%s", worker_name);
/* Wait 10 seconds for restart before crash */
worker.bgw_restart_time = 10;
worker.bgw_main_arg = (Datum) 0;
#if PG_VERSION_NUM >= 90400
/*
* Notify PID is present since 9.4. If this is not initialized
* a static background worker cannot start properly.
*/
worker.bgw_notify_pid = 0;
#endif
RegisterBackgroundWorker(&worker);
}