summaryrefslogtreecommitdiff
path: root/minecctl/minecctl.c
blob: 51b106bad6a4710e13e73b09676efa02491419fa (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
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
/* SPDX-License-Identifier: GPL-2.0 */
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <inttypes.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <errno.h>
#include <stdlib.h>
#include <getopt.h>
#include <dirent.h>
#include <termios.h>

#include "shared/utils.h"
#include "minecctl.h"
#include "minecctl-commands.h"
#include "server.h"
#include "rcon-commands.h"
#include "misc-commands.h"
#include "misc.h"

static void dump_server(struct server *server)
{
	struct saddr *saddr;

	info("│");
	info("│ ▷ server");
	info("│   ┌─────");
	info("│   │ name             : %s", server->scfg.name);
	info("│   │ file_read        : %s", server->file_read ? "yes" : "no");
	info("│   │ filename         : %s", server->scfg.filename);

	switch (server->scfg.type) {
	case SERVER_TYPE_ANNOUNCE:
		info("│   │ type             : announce");
		break;
	case SERVER_TYPE_PROXY:
		info("│   │ type             : proxy");
		break;
	case SERVER_TYPE_UNDEFINED:
		_fallthrough_;
	default:
		info("│   │ type             : <unknown>");
		break;
	}

	info("│   │ pretty_name      : %s", server->scfg.pretty_name);

	switch (server->scfg.announce) {
	case SERVER_ANNOUNCE_ALWAYS:
		info("│   │ announce         : always");
		break;
	case SERVER_ANNOUNCE_NEVER:
		info("│   │ announce         : never");
		break;
	case SERVER_ANNOUNCE_WHEN_RUNNING:
		info("│   │ announce         : when-running");
		break;
	case SERVER_ANNOUNCE_UNDEFINED:
		_fallthrough_;
	default:
		info("│   │ announce         : <undefined>");
	}

	info("│   │ announce_port    : %" PRIu16, server->scfg.announce_port);
	info("│   │ idle_timeout     : %u", server->scfg.idle_timeout);

	switch (server->scfg.stop_method) {
	case SERVER_STOP_METHOD_RCON:
		info("│   │ stop_method      : rcon");
		break;
	case SERVER_STOP_METHOD_SYSTEMD:
		info("│   │ stop_method      : systemd");
		break;
	case SERVER_STOP_METHOD_EXEC:
		info("│   │ stop_method      : exec");
		break;
	case SERVER_STOP_METHOD_UNDEFINED:
		_fallthrough_;
	default:
		info("│   │ stop_method      : <undefined>");
		break;
	}

	switch (server->scfg.start_method) {
	case SERVER_START_METHOD_SYSTEMD:
		info("│   │ start_method     : systemd");
		break;
	case SERVER_START_METHOD_EXEC:
		info("│   │ start_method     : exec");
		break;
	case SERVER_START_METHOD_UNDEFINED:
		_fallthrough_;
	default:
		info("│   │ start_method     : <undefined>");
		break;
	}

	info("│   │ stop_exec        : %s", server->scfg.stop_exec);
	info("│   │ start_exec       : %s", server->scfg.start_exec);
	info("│   │ rcon_password    : %s", server->scfg.rcon_password);
	info("│   │ systemd_service  : %s", server->scfg.systemd_service);
	info("│   │ systemd_obj      : %s", server->scfg.systemd_obj);

	info("│   │ locals%s",
	     list_empty(&server->scfg.locals) ?  "           : none": "");
	list_for_each_entry(saddr, &server->scfg.locals, list)
		info("│   │ ⁃ %s", saddr->addrstr);

	info("│   │ remotes%s",
	     list_empty(&server->scfg.remotes) ?  "          : none": "");
	list_for_each_entry(saddr, &server->scfg.remotes, list)
		info("│   │ ⁃ %s", saddr->addrstr);

	info("│   │ rcons%s",
	     list_empty(&server->scfg.rcons) ? "            : none": "");
	list_for_each_entry(saddr, &server->scfg.rcons, list)
		info("│   │ ⁃ %s", saddr->addrstr);
	info("│   └─────");
}

void dump_config(struct cfg *cfg)
{
	struct server *server;

	if (!(debug_mask & ~(DBG_ERROR | DBG_INFO | DBG_VERBOSE)))
		return;

	info("Configuration");
	info("┌────────────");
	info("│ cfg_dir       : %p", cfg->cfg_dir);
	info("│ data_dir      : %p", cfg->data_dir);
	info("│ rcon_password : %s", cfg->rcon_password);
	info("│ rcon_addrstr  : %s", cfg->rcon_addrstr);
	info("│ mc_addrstr    : %s", cfg->mc_addrstr);
	info("│ cmd           : %p", cfg->cmd);
	info("│ force         : %s", cfg->force ? "yes" : "no");
	info("│ default set   : %s", cfg->default_set ? "yes" : "no");
	info("│ servers loaded: %s", cfg->server_list_loaded ? "yes" : "no");
	info("│ commands%s", cfg->commands ? "" : "      : none");
	if (cfg->commands) {
		for (char *const *cmd = cfg->commands; *cmd; cmd++)
			info("│ ⁃ %s", *cmd);
	}

	list_for_each_entry(server, &cfg->servers, list)
		dump_server(server);

	info("└────────────");
}

_noreturn_ static void usage(bool no_error)
{
	info("Usage: %s [OPTIONS...] COMMAND\n"
	     "\n"
	     "Valid commands:\n"
	     "  init                     perform initial setup\n"
	     "  new SERVER               create a new server\n"
	     "  delete SERVER            delete a server (-f to delete world as well)\n"
	     "  list                     list known servers\n"
	     "  lint                     check validity of server configuration files\n"
	     "  info [SERVER]            show information about a running SERVER (or all known servers)\n"
	     "  status [SERVER]          check if SERVER (or all known servers) is running and accessible\n"
	     "  stop [SERVER]            stop SERVER\n"
	     "  stopall                  stop all known servers (including ADDR)\n"
	     "  pcount [SERVER]          get player count for SERVER\n"
	     "  console [SERVER]         interactive command line for SERVER\n"
	     "  cmd [SERVER] CMD         send CMD to SERVER\n"
	     "  cmds [SERVER] CMDS...    send multiple CMDS to SERVER\n"
	     "  [SERVER] CMD             shorthand for \"cmd [SERVER] CMD\"\n"
	     "  [SERVER]                 shorthand for \"console [SERVER]\"\n"
	     "\n"
	     "Valid options:\n"
	     "  -p, --rcon-password=PWD  use PWD when connecting via rcon\n"
	     "                           (or use environment variable RCON_PASSWORD)\n"
	     "  -r, --rcon-address=ADDR  connect to rcon at ADDR\n"
	     "                           (or use environment variable RCON_ADDRESS)\n"
	     "  -m, --mc-address=ADDR    connect to Minecraft server at ADDR\n"
	     "                           (only relevant for some commands, can also\n"
	     "                            use environment variable MC_ADDRESS)\n"
	     "  -f, --force              force stop/delete actions\n"
	     "  -v, --verbose            enable extra logging\n"
	     "  -d, --debug              enable debugging information\n"
	     "  -h, --help               print this information\n"
	     "\n"
	     "Note: if ADDR is given as an option, SERVER must be omitted from\n"
	     "      the command and vice versa.\n"
	     "\n"
	     "See the minecctl(1) man page for details.\n",
	     program_invocation_short_name);

	exit(no_error ? EXIT_FAILURE : EXIT_SUCCESS);
}

static bool str_to_addrs(const char *str, struct list_head *list)
{
	struct cfg_value value;
	char *tmp = NULL;
	bool rv = false;

	/* strtosockaddrs mangles the input string */
	tmp = xstrdup(str);
	if (!strtosockaddrs(tmp, &value, false)) {
		error("Unable to parse address: %s", str);
		goto out;
	}

	if (value.type != CFG_VAL_TYPE_ADDRS) {
		error("Unexpected return value from strtosockaddrs");
		goto out;
	}

	if (list_empty(&value.saddrs)) {
		error("Found no valid addresses for %s", str);
		goto out;
	}

	list_replace(&value.saddrs, list);
	rv = true;

out:
	xfree(tmp);
	return rv;
}

static bool create_server_from_cmdline_args(struct cfg *cfg)
{
	struct server *server;

	if (!cfg->rcon_addrstr && !cfg->mc_addrstr)
		return false;

	server = server_new(NULL);

	if (cfg->rcon_addrstr) {
		if (!str_to_addrs(cfg->rcon_addrstr, &server->scfg.rcons))
			goto error;

		server->scfg.name = cfg->rcon_addrstr;
		cfg->rcon_addrstr = NULL;
	}

	if (cfg->mc_addrstr) {
		if (!str_to_addrs(cfg->mc_addrstr, &server->scfg.remotes))
			goto error;

		if (!server->scfg.name)
			server->scfg.name = cfg->mc_addrstr;
		else
			xfree(cfg->mc_addrstr);

		cfg->mc_addrstr = NULL;
	}

	if (cfg->rcon_password) {
		server->scfg.rcon_password = cfg->rcon_password;
		cfg->rcon_password = NULL;
	}

	list_add(&server->list, &cfg->servers);
	return true;

error:
	server_free(server);
	return false;
}

static inline void get_optional_server_arg(struct cfg *cfg, char *const **argv,
					   bool server_mandatory, bool more)
{
	if (!cfg->rcon_addrstr && !cfg->mc_addrstr) {
		if (server_mandatory && !**argv) {
			error("Missing arguments");
			usage(false);
		}

		if (**argv && !server_set_default(cfg, **argv)) {
			error("\"%s\" is not a known server or command",
			      **argv);
			usage(false);
		}

		if (**argv)
			(*argv)++;
	}

	if (!more && **argv) {
		error("Too many arguments");
		usage(false);
	}
}

static void parse_command(struct cfg *cfg, char *const *argv)
{
	enum commands cmd = CMD_INVALID;

	assert_die(argv, "invalid arguments");

	/* Shorthand for console if address is set */
	if (!*argv) {
		if (!cfg->rcon_addrstr) {
			error("Missing arguments");
			usage(false);
		}

		cfg->cmd = do_console;
		return;
	}

	for (unsigned i = 0; command_list[i].name; i++) {
		if (streq(*argv, command_list[i].name)) {
			cmd = command_list[i].cmd;
			argv++;
			break;
		}
	}

	switch (cmd) {
	case CMD_INIT:
		if (*argv) {
			error("Too many arguments");
			usage(false);
		}
		cfg->cmd = do_init;
		break;
	case CMD_NEW:
		if (!*argv) {
			error("Missing arguments");
			usage(false);
		} else if (*(argv + 1)) {
			error("Too many arguments");
			usage(false);
		}
		cfg->commands = strv_copy(argv);
		cfg->cmd = do_new;
		break;
	case CMD_DELETE:
		if (!*argv) {
			error("Missing arguments");
			usage(false);
		} else if (*(argv + 1)) {
			error("Too many arguments");
			usage(false);
		}
		cfg->commands = strv_copy(argv);
		cfg->cmd = do_delete;
		break;
	case CMD_LIST:
		if (*argv) {
			error("Too many arguments");
			usage(false);
		}
		cfg->cmd = do_list;
		break;
	case CMD_LINT:
		if (*argv) {
			error("Too many arguments");
			usage(false);
		}
		cfg->cmd = do_lint;
		break;
	case CMD_STOPALL:
		if (*argv) {
			error("Too many arguments");
			usage(false);
		}
		cfg->cmd = do_stop_all;
		break;
	case CMD_INFO:
		get_optional_server_arg(cfg, &argv, false, false);
		cfg->cmd = do_info;
		break;
	case CMD_STATUS:
		get_optional_server_arg(cfg, &argv, false, false);
		cfg->cmd = do_status;
		break;
	case CMD_STOP:
		get_optional_server_arg(cfg, &argv, true, false);
		cfg->cmd = do_stop;
		break;
	case CMD_PCOUNT:
		get_optional_server_arg(cfg, &argv, true, false);
		cfg->cmd = do_pcount;
		break;
	case CMD_CONSOLE:
		get_optional_server_arg(cfg, &argv, true, false);
		cfg->cmd = do_console;
		break;
	case CMD_COMMAND:
		_fallthrough_;
	case CMD_COMMANDS:
		get_optional_server_arg(cfg, &argv, true, true);

		if (!*argv) {
			error("Missing arguments");
			usage(false);
		}

		if (cmd == CMD_COMMANDS)
			cfg->commands = strv_copy(argv);
		else
			cfg->commands = strv_from_strs(strv_join(argv), NULL);
		cfg->cmd = do_commands;
		break;
	case CMD_INVALID:
		/* shorthand notation */
		get_optional_server_arg(cfg, &argv, true, true);

		if (!*argv) {
			/* !CMD = console */
			cfg->cmd = do_console;
		} else {
			/* CMD... */
			cfg->commands = strv_from_strs(strv_join(argv), NULL);
			cfg->cmd = do_commands;
		}
		break;
	default:
		die("Unreachable");
	}
}

static void parse_cmdline(struct cfg *cfg, int argc, char *const *argv)
{
	int c;
	char *e;

	assert_die(argc && argv && cfg, "invalid arguments");

	if (argc < 2) {
		error("Missing arguments");
		usage(false);
	}

	while (true) {
		int option_index = 0;
		/* clang-format off */
		static struct option long_options[] = {
			{ "rcon-password", required_argument,	0, 'p' },
			{ "rcon-address",  required_argument,	0, 'r' },
			{ "mc-address",    required_argument,	0, 'm' },
			{ "verbose",	   no_argument,		0, 'v' },
			{ "debug",	   no_argument,		0, 'd' },
			{ "force",	   no_argument,		0, 'f' },
			{ "help",	   no_argument,		0, 'h' },
			{ 0,		   0,			0,  0  }
		};
		/* clang-format on */

		c = getopt_long(argc, argv, ":p:r:m:vdfh", long_options,
				&option_index);

		if (c == -1)
			break;

		switch (c) {
		case 'p':
			cfg->rcon_password = xstrdup(optarg);
			break;
		case 'r':
			cfg->rcon_addrstr = xstrdup(optarg);
			break;
		case 'm':
			cfg->mc_addrstr = xstrdup(optarg);
			break;
		case 'v':
			debug_mask |= DBG_VERBOSE;
			break;
		case 'd':
			debug_mask = ~0;
			break;
		case 'f':
			cfg->force = true;
			break;
		case 'h':
			usage(true);
		default:
			error("Invalid options");
			usage(false);
		}
	}

	if (!cfg->rcon_password) {
		e = getenv("RCON_PASSWORD");
		if (e)
			cfg->rcon_password = xstrdup(e);
	}

	if (!cfg->rcon_addrstr) {
		e = getenv("RCON_ADDRESS");
		if (e)
			cfg->rcon_addrstr = xstrdup(e);
	}

	if (!cfg->mc_addrstr) {
		e = getenv("MC_ADDRESS");
		if (e)
			cfg->mc_addrstr = xstrdup(e);
	}
}

int main(int argc, char *const *argv)
{
	struct cfg cfg = {
		.listen_port_min = 20000,
		.listen_port_max = 23999,
		.mc_port_min = 24000,
		.mc_port_max = 27999,
		.rcon_port_min = 28000,
		.rcon_port_max = 31999,
		.servers = LIST_HEAD_INIT(cfg.servers),
	};
	bool success = false;

	debug_mask = DBG_ERROR | DBG_INFO;

	set_use_colors();

	parse_cmdline(&cfg, argc, argv);

	parse_command(&cfg, &argv[optind]);

	if (!cfg.cmd) {
		error("Failed to parse command");
		goto out;
	}

	if (cfg.rcon_addrstr || cfg.mc_addrstr)
		if (!create_server_from_cmdline_args(&cfg))
			goto out;

	success = cfg.cmd(&cfg);

out:
	server_free_all(&cfg);
	free_password(&cfg.rcon_password);
	strv_free(cfg.commands);
	xfree(cfg.rcon_addrstr);
	xfree(cfg.mc_addrstr);
	if (cfg.cfg_dir)
		closedir(cfg.cfg_dir);
	if (cfg.data_dir)
		closedir(cfg.data_dir);
	exit(success ? EXIT_SUCCESS : EXIT_FAILURE);
}