summaryrefslogtreecommitdiff
path: root/rcon.c
blob: 02fd0218130ca2e0f5acb14cdd0c483eab114497 (plain)
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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/ip.h>
#include <arpa/inet.h>
#include <stdint.h>
#include <inttypes.h>

#include "main.h"
#include "uring.h"
#include "config.h"
#include "server.h"
#include "rcon.h"

struct rcon {
	struct server *server;
	struct uring_task task;
	unsigned next_rcon;
	struct sockaddr_in46 rcon;
	char rconstr[ADDRSTRLEN];
	struct uring_task_buf tbuf;
};

static void
rcon_free(struct uring_task *task)
{
	struct rcon *rcon = container_of(task, struct rcon, task);

	fprintf(stderr, "%s: called with task 0x%p and idle 0x%p\n", __func__, task, rcon);
	rcon->server->rcon = NULL;
	xfree(rcon);
}

void
rcon_refdump(struct rcon *rcon)
{
	if (!rcon)
		return;

	uring_task_refdump(&rcon->task);
}

void
rcon_delete(struct cfg *cfg, struct server *server)
{
	struct rcon *rcon = server->rcon;

	if (!rcon)
		return;

	fprintf(stderr, "%s called, closing fd %i\n", __func__, rcon->task.fd);
	uring_task_destroy(cfg, &rcon->task);
	server->rcon = NULL;
}

static int32_t
read_int(char **pos, size_t *len)
{
	uint32_t val;
	char *p = *pos;

	if (len && *len < 4)
		return 0;

	val  = ((uint8_t)p[0] <<  0);
	val += ((uint8_t)p[1] <<  8);
	val += ((uint8_t)p[2] << 16);
	val += ((uint8_t)p[3] << 24);

	*pos += 4;
	if (len)
		*len -= 4;

	return (int32_t)val;
}

static void
write_int(char **pos, size_t *len, int32_t orig)
{
	uint32_t val = (uint32_t)orig;
	char *p = *pos;

	p[0] = (val >>  0) & 0xff;
	p[1] = (val >>  8) & 0xff;
	p[2] = (val >> 16) & 0xff;
	p[3] = (val >> 24) & 0xff;
	*pos += 4;
	if (len)
		*len += 4;
}

static void
write_str(char **pos, size_t *len, const char *str)
{
	size_t towrite = strlen(str);

	memcpy(*pos, str, towrite);
	*pos += towrite;
	if (len)
		*len += towrite;
}

static void
write_end(char **pos, size_t *len)
{
	char *p = *pos;

	p[0] = 0x00;
	p[1] = 0x00;
	*pos += 2;
	if (len)
		*len += 2;
}

enum rcon_packet_type {
	RCON_PACKET_LOGIN	= 3,
	RCON_PACKET_LOGIN_OK	= 2,
	RCON_PACKET_LOGIN_FAIL	= -1,
	RCON_PACKET_COMMAND	= 2,
	RCON_PACKET_RESPONSE	= 0,
};

static void
create_packet(struct cfg *cfg, struct rcon *rcon, int32_t reqid, enum rcon_packet_type type, const char *msg)
{
	char *pos = &rcon->tbuf.buf[4];

	/* Body */
	rcon->tbuf.len = 4;
	write_int(&pos, &rcon->tbuf.len, reqid);
	write_int(&pos, &rcon->tbuf.len, type);
	write_str(&pos, &rcon->tbuf.len, msg);
	write_end(&pos, &rcon->tbuf.len);

	/* Header (length of body) */
	pos = &rcon->tbuf.buf[0];
	write_int(&pos, NULL, rcon->tbuf.len - 4);

	fprintf(stderr, "Created packet (reqid: %" PRIi32 ", type %" PRIi32 ", len %zu, payload: %s)\n",
		reqid, type, rcon->tbuf.len, msg);
}

static int
packet_complete(struct cfg *cfg, struct uring_task *task, int res)
{
	char *pos = task->tbuf->buf;
	size_t len = task->tbuf->len;
	int32_t plen;

	if (task->tbuf->len < 14)
		return 0;

	plen = read_int(&pos, &len);
	fprintf(stderr, "Reply is %zu bytes, packet size %" PRIi32 "\n", task->tbuf->len, plen + 4);
	if (task->tbuf->len < plen + 4)
		return 0;
	else
		return 1;
}

static bool
read_packet(struct cfg *cfg, struct rcon *rcon, int32_t *id, int32_t *type, char **rmsg)
{
	char *pos = rcon->tbuf.buf;
	size_t len = rcon->tbuf.len;
	int32_t plen;

	plen = read_int(&pos, &len);
	*id = read_int(&pos, &len);
	*type = read_int(&pos, &len);
	*rmsg = NULL;

	if (plen < 10) {
		fprintf(stderr, "Invalid packet length: %" PRIi32 "\n", plen);
		return false;
	}

	fprintf(stderr, "Remaining = %zu\n", len);
	if (len > 2) {
		*rmsg = pos;
		pos += len - 2;
		len = 2;
	}

	if (len < 2) {
		fprintf(stderr, "Short message\n");
		return false;
	}

	if (pos[0] != '\0' || pos[1] != '\0') {
		fprintf(stderr, "Invalid trailer\n");
		return false;
	}

	fprintf(stderr, "Response - len: %" PRIi32 ", id: %" PRIi32
		", type: %" PRIi32 ", msg: %s\n",
		plen, *id, *type, *rmsg);

	return true;
}

static void
rcon_stop_reply(struct cfg *cfg, struct uring_task *task, int res)
{
	struct rcon *rcon = container_of(task, struct rcon, task);
	int32_t id;
	int32_t type;
	char *msg;

	fprintf(stderr, "%s: result %i\n", __func__, res);
	if (task->dead) {
		fprintf(stderr, "%s: task dead\n", __func__);
		return;
	}

	if (res < 0)
		goto out;

	fprintf(stderr, "Packet complete\n");
	read_packet(cfg, rcon, &id, &type, &msg);
	if (id != 2) {
		fprintf(stderr, "RCon stop cmd failed - unexpected reply id (%" PRIi32 ")\n", id);
		goto out;
	} else if (type != RCON_PACKET_RESPONSE) {
		fprintf(stderr, "RCon stop cmd failed - unexpected reply type (%" PRIi32 ")\n", type);
		goto out;
	}
	fprintf(stderr, "RCon stop successful (%s)\n", msg);

out:
	uring_task_put(cfg, &rcon->task);
}

static void
rcon_stop_sent(struct cfg *cfg, struct uring_task *task, int res)
{
	struct rcon *rcon = container_of(task, struct rcon, task);

	fprintf(stderr, "%s: result %i\n", __func__, res);
	if (task->dead) {
		fprintf(stderr, "%s: task dead\n", __func__);
		return;
	}

	if (res < 0) {
		uring_task_put(cfg, &rcon->task);
		return;
	}

	fprintf(stderr, "%s: stop cmd sent\n", __func__);
	uring_tbuf_read_until(cfg, &rcon->task, packet_complete, rcon_stop_reply);
}

static void
rcon_login_reply(struct cfg *cfg, struct uring_task *task, int res)
{
	struct rcon *rcon = container_of(task, struct rcon, task);
	int32_t id;
	int32_t type;
	char *msg;

	fprintf(stderr, "%s: result %i\n", __func__, res);
	if (task->dead) {
		fprintf(stderr, "%s: task dead\n", __func__);
		return;
	}

	if (res < 0)
		goto out;

	fprintf(stderr, "Packet complete\n");
	read_packet(cfg, rcon, &id, &type, &msg);
	if (id != 1) {
		fprintf(stderr, "RCon login failed - unexpected reply id (%" PRIi32 ")\n", id);
		goto out;
	} else if (type == RCON_PACKET_LOGIN_FAIL) {
		fprintf(stderr, "RCon login failed - incorrect password\n");
		goto out;
	} else if (type != RCON_PACKET_LOGIN_OK) {
		fprintf(stderr, "RCon login failed - unexpected reply type (%" PRIi32 ")\n", type);
		goto out;
	}

	fprintf(stderr, "RCon login successful\n");
	create_packet(cfg, rcon, 2, RCON_PACKET_COMMAND, "stop");
	uring_tbuf_write(cfg, &rcon->task, rcon_stop_sent);
	return;

out:
	uring_task_put(cfg, &rcon->task);
}

static void
rcon_login_sent(struct cfg *cfg, struct uring_task *task, int res)
{
	struct rcon *rcon = container_of(task, struct rcon, task);

	fprintf(stderr, "%s: result %i\n", __func__, res);
	if (task->dead) {
		fprintf(stderr, "%s: task dead\n", __func__);
		return;
	}

	if (res < 0) {
		uring_task_put(cfg, &rcon->task);
		return;
	}

	fprintf(stderr, "%s: login sent\n", __func__);
	uring_tbuf_read_until(cfg, &rcon->task, packet_complete, rcon_login_reply);
}

static void rcon_connect_next_rcon(struct cfg *cfg, struct rcon *rcon);

static void
rcon_connected(struct cfg *cfg, struct uring_task *task, int res)
{
	struct rcon *rcon = container_of(task, struct rcon, task);

	fprintf(stderr, "%s: connected %i\n", __func__, res);
	if (task->dead) {
		fprintf(stderr, "%s: task dead\n", __func__);
		return;
	}

	if (res < 0) {
		rcon_connect_next_rcon(cfg, rcon);
		return;
	}

	create_packet(cfg, rcon, 1, RCON_PACKET_LOGIN, rcon->server->rcon_password);
	uring_tbuf_write(cfg, &rcon->task, rcon_login_sent);
}

/* FIXME: Parts of this could be shared with proxy.c, probably in server.c */
static void
rcon_connect_next_rcon(struct cfg *cfg, struct rcon *rcon)
{
        struct sockaddr_in46 *remote, *tmp;
	struct server *scfg = rcon->server;
        int sfd;
        unsigned i = 0;

again:
        remote = NULL;
        list_for_each_entry(tmp, &scfg->rcons, list) {
                if (i == rcon->next_rcon) {
                        remote = tmp;
                        break;
                }
                i++;
        }

        if (!remote) {
                fprintf(stderr, "No more rcon addresses to attempt\n");
		uring_task_put(cfg, &rcon->task);
                return;
        }

        rcon->next_rcon++;
        rcon->rcon = *remote;
	sockaddr_to_str(&rcon->rcon, rcon->rconstr, sizeof(rcon->rconstr));
        fprintf(stderr, "%s: attempting rcon connection to %s (len %u)\n",
                scfg->name, rcon->rconstr, rcon->rcon.addrlen);

        sfd = socket(rcon->rcon.storage.ss_family, SOCK_STREAM, 0);
        if (sfd < 0) {
                perror("socket");
                goto again;
        }

        uring_task_set_fd(&rcon->task, sfd);
        uring_connect(cfg, &rcon->task, &rcon->rcon, rcon_connected);
}

void
rcon_init(struct cfg *cfg, struct server *server)
{
	struct rcon *rcon;

	if (!server)
		return;

	if (list_empty(&server->rcons) || !server->rcon_password)
		return;

	rcon = zmalloc(sizeof(*rcon));
	if (!rcon)
		perrordie("malloc");

	uring_task_init(&rcon->task, "rcon", &server->task, rcon_free);
	uring_task_set_buf(&rcon->task, &rcon->tbuf);
	rcon->server = server;
	server->rcon = rcon;

	rcon_connect_next_rcon(cfg, rcon);
}