wafsamba: fix pidl dependencies to rebuild on pidl changes
[Samba.git] / ctdb / tools / ctdb_killtcp.c
blobfc443bd08e28cfbad6b64af07aa420076afab9e2
1 /*
2 CTDB TCP connection killing utility
4 Copyright (C) Martin Schwenke <martin@meltin.net> 2016
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, see <http://www.gnu.org/licenses/>.
20 #include "replace.h"
21 #include "system/network.h"
23 #include <talloc.h>
24 #include <tevent.h>
26 #include "lib/util/debug.h"
27 #include "lib/util/tevent_unix.h"
29 #include "protocol/protocol.h"
30 #include "protocol/protocol_util.h"
32 #include "common/db_hash.h"
33 #include "common/system_socket.h"
34 #include "common/logging.h"
37 struct reset_connections_state {
38 struct tevent_context *ev;
39 int capture_fd;
40 struct tevent_fd *fde;
41 struct db_hash_context *connections;
42 void *private_data;
43 unsigned int attempts;
44 unsigned int max_attempts;
45 struct timeval retry_interval;
46 unsigned int batch_count;
47 unsigned int batch_size;
51 static void reset_connections_capture_tcp_handler(struct tevent_context *ev,
52 struct tevent_fd *fde,
53 uint16_t flags,
54 void *private_data);
55 static void reset_connections_batch(struct tevent_req *subreq);
56 static int reset_connections_tickle_connection(
57 uint8_t *keybuf, size_t keylen,
58 uint8_t *databuf, size_t datalen,
59 void *private_data);
61 static struct tevent_req *reset_connections_send(
62 TALLOC_CTX *mem_ctx,
63 struct tevent_context *ev,
64 const char *iface,
65 struct ctdb_connection_list *conn_list)
67 struct tevent_req *req, *subreq;
68 struct reset_connections_state *state;
69 int i, ret;
71 req = tevent_req_create(mem_ctx, &state,
72 struct reset_connections_state);
73 if (req == NULL) {
74 return NULL;
77 state->ev = ev;
79 if (conn_list->num == 0) {
80 /* No connections, done! */
81 tevent_req_done(req);
82 return tevent_req_post(req, ev);
85 ret = db_hash_init(state, "connections", 2048, DB_HASH_SIMPLE,
86 &state->connections);
87 if (ret != 0) {
88 D_ERR("Failed to initialise connection hash (%s)\n",
89 strerror(ret));
90 tevent_req_error(req, ret);
91 return tevent_req_post(req, ev);
94 DBG_DEBUG("Adding %u connections to hash\n", conn_list->num);
95 for (i = 0; i < conn_list->num; i++) {
96 struct ctdb_connection *c = &conn_list->conn[i];
98 DBG_DEBUG("Adding connection to hash: %s\n",
99 ctdb_connection_to_string(conn_list, c, true));
101 /* Connection is stored as a key in the connections hash */
102 ret = db_hash_add(state->connections,
103 (uint8_t *)discard_const(c), sizeof(*c),
104 NULL, 0);
105 if (ret != 0) {
106 D_ERR("Error adding connection to hash (%s)\n",
107 strerror(ret));
108 tevent_req_error(req, ret);
109 return tevent_req_post(req, ev);
113 state->attempts = 0;
114 state->max_attempts = 50;
116 state->retry_interval.tv_sec = 0;
117 state->retry_interval.tv_usec = 100 * 1000;
119 state->batch_count = 0;
120 state->batch_size = 300;
122 state->capture_fd =
123 ctdb_sys_open_capture_socket(iface, &state->private_data);
124 if (state->capture_fd == -1) {
125 D_ERR("Failed to open capture socket on iface '%s' (%s)\n",
126 iface, strerror(errno));
127 tevent_req_error(req, EIO);
128 return tevent_req_post(req, ev);
131 state->fde = tevent_add_fd(ev, state, state->capture_fd,
132 TEVENT_FD_READ,
133 reset_connections_capture_tcp_handler,
134 state);
135 if (tevent_req_nomem(state->fde, req)) {
136 return tevent_req_post(req, ev);
138 tevent_fd_set_auto_close(state->fde);
140 subreq = tevent_wakeup_send(state, ev, tevent_timeval_current_ofs(0,0));
141 if (tevent_req_nomem(subreq, req)) {
142 return tevent_req_post(req, ev);
144 tevent_req_set_callback(subreq, reset_connections_batch, req);
146 return req;
150 called when we get a read event on the raw socket
152 static void reset_connections_capture_tcp_handler(struct tevent_context *ev,
153 struct tevent_fd *fde,
154 uint16_t flags,
155 void *private_data)
157 struct reset_connections_state *state = talloc_get_type_abort(
158 private_data, struct reset_connections_state);
159 /* 0 the parts that don't get set by ctdb_sys_read_tcp_packet */
160 struct ctdb_connection conn;
161 uint32_t ack_seq, seq;
162 int rst;
163 uint16_t window;
164 int ret;
166 ret = ctdb_sys_read_tcp_packet(state->capture_fd,
167 state->private_data,
168 &conn.server, &conn.client,
169 &ack_seq, &seq, &rst, &window);
170 if (ret != 0) {
171 /* probably a non-tcp ACK packet */
172 return;
175 if (window == htons(1234) && (rst || seq == 0)) {
176 /* Ignore packets that we sent! */
177 D_DEBUG("Ignoring packet: %s, "
178 "seq=%"PRIu32", ack_seq=%"PRIu32", "
179 "rst=%d, window=%"PRIu16"\n",
180 ctdb_connection_to_string(state, &conn, false),
181 seq, ack_seq, rst, ntohs(window));
182 return;
185 /* Check if this connection is one being reset, if found then delete */
186 ret = db_hash_delete(state->connections,
187 (uint8_t*)&conn, sizeof(conn));
188 if (ret == ENOENT) {
189 /* Packet for some other connection, ignore */
190 DBG_DEBUG("Ignoring packet for unknown connection: %s\n",
191 ctdb_connection_to_string(state, &conn, true));
192 return;
194 if (ret != 0) {
195 DBG_WARNING("Internal error (%s)\n", strerror(ret));
196 return;
199 D_INFO("Sending a TCP RST to for connection %s\n",
200 ctdb_connection_to_string(state, &conn, true));
202 ret = ctdb_sys_send_tcp(&conn.server, &conn.client, ack_seq, seq, 1);
203 if (ret != 0) {
204 DBG_ERR("Error sending TCP RST for connection\n");
209 * Called periodically until all sentenced connections have been reset
210 * or enough attempts have been made
212 static void reset_connections_batch(struct tevent_req *subreq)
214 struct tevent_req *req = tevent_req_callback_data(
215 subreq, struct tevent_req);
216 struct reset_connections_state *state = tevent_req_data(
217 req, struct reset_connections_state);
218 bool status;
219 int count, ret;
221 status = tevent_wakeup_recv(subreq);
222 TALLOC_FREE(subreq);
224 if (! status) {
225 DBG_WARNING("Unexpected error on timer expiry\n");
226 /* Keep going... */
229 /* loop over up to batch_size connections sending tickle ACKs */
230 state->batch_count = 0;
231 ret = db_hash_traverse(state->connections,
232 reset_connections_tickle_connection,
233 state, NULL);
234 if (ret != 0) {
235 DBG_WARNING("Unexpected error traversing connections (%s)\n",
236 strerror(ret));
239 state->attempts++;
242 * If there are no more connections to kill or we have tried
243 * too many times we're finished
245 ret = db_hash_traverse(state->connections, NULL, NULL, &count);
246 if (ret != 0) {
247 /* What now? Try again until max_attempts reached */
248 DBG_WARNING("Unexpected error traversing connections (%s)\n",
249 strerror(ret));
250 count = 1;
252 if (count == 0 ||
253 state->attempts >= state->max_attempts) {
254 tevent_req_done(req);
255 return;
258 /* Schedule next attempt */
259 subreq = tevent_wakeup_send(state, state->ev,
260 tevent_timeval_current_ofs(
261 state->retry_interval.tv_sec,
262 state->retry_interval.tv_usec));
263 if (tevent_req_nomem(subreq, req)) {
264 return;
266 tevent_req_set_callback(subreq, reset_connections_batch, req);
269 static int reset_connections_tickle_connection(
270 uint8_t *keybuf, size_t keylen,
271 uint8_t *databuf, size_t datalen,
272 void *private_data)
274 struct reset_connections_state *state = talloc_get_type_abort(
275 private_data, struct reset_connections_state);
276 struct ctdb_connection *conn;
277 int ret;
279 if (keylen != sizeof(*conn)) {
280 DBG_WARNING("Unexpected data in connection hash\n");
281 return 0;
284 conn = (struct ctdb_connection *)keybuf;
286 state->batch_count++;
287 if (state->batch_count > state->batch_size) {
288 /* Terminate the traverse */
289 return 1;
292 DBG_DEBUG("Sending tickle ACK for connection '%s'\n",
293 ctdb_connection_to_string(state, conn, true));
294 ret = ctdb_sys_send_tcp(&conn->server, &conn->client, 0, 0, 0);
295 if (ret != 0) {
296 DBG_ERR("Error sending tickle ACK\n");
297 /* continue */
300 return 0;
303 static bool reset_connections_recv(struct tevent_req *req, int *perr)
305 int err;
307 if (tevent_req_is_unix_error(req, &err)) {
308 if (perr != NULL) {
309 *perr = err;
311 return false;
314 return true;
317 static void usage(const char *prog)
319 printf("usage: %s <interface> [ <srcip:port> <dstip:port> ]\n", prog);
320 exit(1);
323 int main(int argc, char **argv)
325 struct ctdb_connection conn;
326 struct tevent_context *ev = NULL;
327 TALLOC_CTX *mem_ctx = NULL;
328 struct ctdb_connection_list *conn_list = NULL;
329 const char *t;
330 struct tevent_req *req;
331 int debug_level;
332 bool status;
333 bool ok;
334 int ret;
336 /* Set the debug level */
337 t = getenv("CTDB_DEBUGLEVEL");
338 if (t != NULL) {
339 ok = debug_level_parse(t, &debug_level);
340 if (!ok) {
341 debug_level = DEBUG_ERR;
343 debuglevel_set(debug_level);
346 if (argc != 2 && argc != 4) {
347 usage(argv[0]);
350 if (argc == 4) {
351 ret = ctdb_sock_addr_from_string(argv[2], &conn.client, true);
352 if (ret != 0) {
353 D_ERR("Bad IP:port '%s'\n", argv[2]);
354 goto fail;
357 ret = ctdb_sock_addr_from_string(argv[3], &conn.server, true);
358 if (ret != 0) {
359 D_ERR("Bad IP:port '%s'\n", argv[3]);
360 goto fail;
364 conn_list = talloc_zero(mem_ctx, struct ctdb_connection_list);
365 if (conn_list == NULL) {
366 ret = ENOMEM;
367 DBG_ERR("Internal error (%s)\n", strerror(ret));
368 goto fail;
370 ret = ctdb_connection_list_add(conn_list, &conn);
371 if (ret != 0) {
372 DBG_ERR("Internal error (%s)\n", strerror(ret));
373 goto fail;
375 } else {
376 ret = ctdb_connection_list_read(mem_ctx, 0, true, &conn_list);
377 if (ret != 0) {
378 D_ERR("Unable to parse connections (%s)\n",
379 strerror(ret));
380 goto fail;
384 mem_ctx = talloc_new(NULL);
385 if (mem_ctx == NULL) {
386 DEBUG(DEBUG_ERR, (__location__ " out of memory\n"));
387 goto fail;
390 ev = tevent_context_init(mem_ctx);
391 if (ev == NULL) {
392 DEBUG(DEBUG_ERR, ("Failed to initialise tevent\n"));
393 goto fail;
396 req = reset_connections_send(mem_ctx, ev, argv[1], conn_list);
397 if (req == NULL) {
398 goto fail;
401 tevent_req_poll(req, ev);
403 status = reset_connections_recv(req, &ret);
404 if (! status) {
405 D_ERR("Failed to kill connections (%s)\n", strerror(ret));
406 goto fail;
409 talloc_free(mem_ctx);
411 return 0;
413 fail:
414 TALLOC_FREE(mem_ctx);
415 return -1;