mirror of
https://github.com/Tiiffi/mcrcon.git
synced 2025-10-28 11:51:08 -04:00
Compare commits
3 Commits
v0.6.2-dev
...
v0.6.1
| Author | SHA1 | Date | |
|---|---|---|---|
| 8fdda295e2 | |||
| 0b1853dccc | |||
| d338537e23 |
1
.gitignore
vendored
1
.gitignore
vendored
@ -7,4 +7,3 @@
|
|||||||
*.project
|
*.project
|
||||||
mcrcon
|
mcrcon
|
||||||
todo
|
todo
|
||||||
*.plist
|
|
||||||
|
|||||||
20
CHANGELOG.md
20
CHANGELOG.md
@ -1,8 +1,4 @@
|
|||||||
####Version history:
|
####Version history:
|
||||||
|
|
||||||
###### 0.6.2
|
|
||||||
- Set default address to localhost
|
|
||||||
|
|
||||||
######0.6.1
|
######0.6.1
|
||||||
- Color coding fixed
|
- Color coding fixed
|
||||||
* Thanks to Hagb @ Github
|
* Thanks to Hagb @ Github
|
||||||
@ -65,3 +61,19 @@
|
|||||||
- Packet string data limited to max 2048 (DATA_BUFFSIZE) bytes.
|
- Packet string data limited to max 2048 (DATA_BUFFSIZE) bytes.
|
||||||
No idea how Minecraft handles multiple rcon packets.
|
No idea how Minecraft handles multiple rcon packets.
|
||||||
If someone knows, please mail me so I can implement it.
|
If someone knows, please mail me so I can implement it.
|
||||||
|
|
||||||
|
####TODO:
|
||||||
|
- Make the receive buffer dynamic??
|
||||||
|
- Change some of the packet size issues to fatal errors.
|
||||||
|
- Code cleanups.
|
||||||
|
- Check global variables (remove if possible).
|
||||||
|
- Add some protocol checks (proper packet id check etc..).
|
||||||
|
- Preprocessor (#ifdef / #ifndef) cleanups.
|
||||||
|
- Follow valve rcon protocol standard strictly?
|
||||||
|
- Multiple packet support if minecraft supports it?!
|
||||||
|
- Investigate if player chat messages gets sent through rcon.
|
||||||
|
If they are, the messaging system requires rewriting.
|
||||||
|
- Name resolving should be integrated to connection creation function.
|
||||||
|
- Dont try to cleanup the socket if not authenticated
|
||||||
|
- Better sockets error reporting
|
||||||
|
- Better error function (VA_ARGS support)
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
Compiling and installing
|
Compiling and installing
|
||||||
------------------------
|
------------------------
|
||||||
|
|
||||||
Only dependency is C library and POSIX getopt support.
|
Only dependency is C library with POSIX getopt support.
|
||||||
|
|
||||||
Compiling with GCC or CLANG:
|
Compiling with GCC or CLANG:
|
||||||
|
|
||||||
|
|||||||
3
LICENSE
3
LICENSE
@ -1,4 +1,4 @@
|
|||||||
Copyright (c) 2012-2019, Tiiffi <tiiffi at gmail>
|
Copyright (c) 2012-2016, Tiiffi <tiiffi_at_gmail_dot_com>
|
||||||
|
|
||||||
This software is provided 'as-is', without any express or implied
|
This software is provided 'as-is', without any express or implied
|
||||||
warranty. In no event will the authors be held liable for any damages
|
warranty. In no event will the authors be held liable for any damages
|
||||||
@ -18,4 +18,3 @@ freely, subject to the following restrictions:
|
|||||||
|
|
||||||
3. This notice may not be removed or altered from any source
|
3. This notice may not be removed or altered from any source
|
||||||
distribution.
|
distribution.
|
||||||
|
|
||||||
21
Makefile
21
Makefile
@ -6,15 +6,14 @@
|
|||||||
EXENAME = mcrcon
|
EXENAME = mcrcon
|
||||||
PREFIX ?= /usr/local
|
PREFIX ?= /usr/local
|
||||||
|
|
||||||
INSTALL = install
|
|
||||||
LINKER =
|
|
||||||
RM = rm -v -f
|
|
||||||
|
|
||||||
CC = cc
|
|
||||||
CFLAGS = -std=gnu99 -Wall -Wextra -Wpedantic -Os -s
|
|
||||||
EXTRAFLAGS ?= -fstack-protector-strong
|
EXTRAFLAGS ?= -fstack-protector-strong
|
||||||
|
|
||||||
|
INSTALL = install
|
||||||
|
LINKER =
|
||||||
|
RM = rm -f
|
||||||
|
|
||||||
ifeq ($(OS), Windows_NT)
|
ifeq ($(OS), Windows_NT)
|
||||||
|
CC = gcc
|
||||||
LINKER = -lws2_32
|
LINKER = -lws2_32
|
||||||
EXENAME = mcrcon.exe
|
EXENAME = mcrcon.exe
|
||||||
RM = cmd /C del /F
|
RM = cmd /C del /F
|
||||||
@ -22,7 +21,9 @@ endif
|
|||||||
|
|
||||||
ifeq ($(shell uname), Darwin)
|
ifeq ($(shell uname), Darwin)
|
||||||
INSTALL = ginstall
|
INSTALL = ginstall
|
||||||
CFLAGS = -std=gnu99 -Wall -Wextra -Wpedantic -Os
|
CFLAGS ?= -std=gnu99 -Wall -Wextra -Wpedantic -Os
|
||||||
|
else
|
||||||
|
CFLAGS ?= -std=gnu99 -Wall -Wextra -Wpedantic -Os -s
|
||||||
endif
|
endif
|
||||||
|
|
||||||
.PHONY: all
|
.PHONY: all
|
||||||
@ -34,13 +35,13 @@ $(EXENAME): mcrcon.c
|
|||||||
ifneq ($(OS), Windows_NT)
|
ifneq ($(OS), Windows_NT)
|
||||||
.PHONY: install
|
.PHONY: install
|
||||||
install:
|
install:
|
||||||
$(INSTALL) -vD $(EXENAME) $(DESTDIR)$(PREFIX)/bin/$(EXENAME)
|
$(INSTALL) -vD $(EXENAME) $(PREFIX)/bin/$(EXENAME)
|
||||||
$(INSTALL) -vD -m 0644 mcrcon.1 $(DESTDIR)$(PREFIX)/share/man/man1/mcrcon.1
|
$(INSTALL) -vD -m 0644 mcrcon.1 $(PREFIX)/share/man/man1/mcrcon.1
|
||||||
@echo "\nmcrcon installed. Run 'make uninstall' if you want to uninstall.\n"
|
@echo "\nmcrcon installed. Run 'make uninstall' if you want to uninstall.\n"
|
||||||
|
|
||||||
.PHONY: uninstall
|
.PHONY: uninstall
|
||||||
uninstall:
|
uninstall:
|
||||||
$(RM) $(DESTDIR)$(PREFIX)/bin/$(EXENAME) $(DESTDIR)$(PREFIX)/share/man/man1/mcrcon.1
|
rm -f $(PREFIX)/bin/$(EXENAME) $(PREFIX)/share/man/man1/mcrcon.1
|
||||||
@echo "\nmcrcon uninstalled.\n"
|
@echo "\nmcrcon uninstalled.\n"
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|||||||
54
README.md
54
README.md
@ -1,25 +1,13 @@
|
|||||||
# mcrcon
|
|
||||||
|
|
||||||
mcrcon is console based Minecraft [rcon](https://developer.valvesoftware.com/wiki/Source_RCON_Protocol) client for remote administration and server maintenance scripts.
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
### Installing:
|
### Installing:
|
||||||
|
|
||||||
##### via packet manager:
|
from sources:
|
||||||
See https://pkgs.org/download/mcrcon for available packages in various Linux distros.
|
|
||||||
|
|
||||||
- Gentoo Linux: https://packages.gentoo.org/packages/games-util/mcrcon
|
|
||||||
- Arch Linux: https://aur.archlinux.org/packages/mcrcon/
|
|
||||||
|
|
||||||
##### from sources:
|
|
||||||
```sh
|
```sh
|
||||||
git clone https://github.com/Tiiffi/mcrcon.git
|
git clone https://github.com/Tiiffi/mcrcon.git
|
||||||
cd mcrcon
|
cd mcrcon
|
||||||
make
|
make
|
||||||
sudo make install
|
sudo make install
|
||||||
```
|
```
|
||||||
Check [INSTALL.md](INSTALL.md) for more details.
|
Check **INSTALL** for more details.
|
||||||
|
|
||||||
You can also download precompiled binaries*: https://github.com/Tiiffi/mcrcon/releases/latest
|
You can also download precompiled binaries*: https://github.com/Tiiffi/mcrcon/releases/latest
|
||||||
|
|
||||||
@ -34,35 +22,33 @@ Sends rcon commands to Minecraft server.
|
|||||||
|
|
||||||
```
|
```
|
||||||
Option:
|
Option:
|
||||||
-H Server address (default: localhost)
|
|
||||||
-P Port (default: 25575)
|
|
||||||
-p Rcon password
|
|
||||||
-t Terminal mode
|
|
||||||
-s Silent mode
|
|
||||||
-c Disable colors
|
|
||||||
-r Output raw packets
|
|
||||||
-h Print usage
|
-h Print usage
|
||||||
-v Version information
|
-H Server address
|
||||||
-w Wait for specified duration (seconds) between each command
|
-P Port (default is 25575)
|
||||||
|
-p Rcon password
|
||||||
|
-t Interactive terminal mode
|
||||||
|
-s Silent mode (do not print received packets)
|
||||||
|
-c Disable colors
|
||||||
|
-r Output raw packets (debugging and custom handling)
|
||||||
|
-v Output version information
|
||||||
```
|
```
|
||||||
|
Commands with arguments must be enclosed in quotes.
|
||||||
|
|
||||||
Server address, port and password can be set using following environment variables:
|
Server address, port and password can be set using following environment variables:
|
||||||
```
|
```
|
||||||
MCRCON_HOST
|
MCRCON_HOST
|
||||||
MCRCON_PORT
|
MCRCON_PORT
|
||||||
MCRCON_PASS
|
MCRCON_PASS
|
||||||
```
|
```
|
||||||
###### Notes:
|
Note that command-line options will override environment variables.
|
||||||
- mcrcon will start in terminal mode if no commands are given
|
|
||||||
- Command-line options will override environment variables
|
|
||||||
- Rcon commands with spaces must be enclosed in quotes
|
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
```mcrcon -H my.minecraft.server -p password "say Server is restarting!" save-all stop```
|
```mcrcon -H my.minecraft.server -p password "say Server is restarting!" save-all stop```
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
##### Enable rcon on server
|
### Enable rcon on server
|
||||||
Remember to enable rcon by adding following lines to [```server.properties```](https://minecraft.gamepedia.com/Server.properties) file.
|
Remember to enable rcon by adding following lines to ```server.properties``` file.
|
||||||
```
|
```
|
||||||
enable-rcon=true
|
enable-rcon=true
|
||||||
rcon.port=25575
|
rcon.port=25575
|
||||||
@ -71,20 +57,14 @@ rcon.password=your_rcon_pasword
|
|||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
##### Contact:
|
#### Contact:
|
||||||
|
|
||||||
* WWW: https://github.com/Tiiffi/mcrcon/
|
* WWW: https://github.com/Tiiffi/mcrcon/
|
||||||
* MAIL: tiiffi at gmail
|
* MAIL: tiiffi_at_gmail_dot_com
|
||||||
* IRC: tiiffi @ quakenet
|
* IRC: tiiffi @ quakenet
|
||||||
* BUG REPORTS: https://github.com/Tiiffi/mcrcon/issues/
|
* BUG REPORTS: https://github.com/Tiiffi/mcrcon/issues/
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
### License
|
|
||||||
|
|
||||||
This project is licensed under the zlib License - see the [LICENSE](LICENSE) file for details.
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
<sub>Master:</sub> 
|
<sub>Master:</sub> 
|
||||||
<sub>Develop:</sub> 
|
<sub>Develop:</sub> 
|
||||||
|
|||||||
35
mcrcon.1
35
mcrcon.1
@ -1,9 +1,9 @@
|
|||||||
.\" Process this file with
|
.\" Process this file with
|
||||||
.\" groff -man -Tascii mcrcon.1
|
.\" groff -man -Tascii mcrcon.1
|
||||||
.\"
|
.\"
|
||||||
.TH MCRCON 1 "October 2019" "Version 0.6.2"
|
.TH MCRCON 1 "December 2016" "Version 0.6.1"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
mcrcon \- send rcon commands to a Minecraft server
|
mcrcon \- sends rcon commands to a Minecraft server
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
.B mcrcon [
|
.B mcrcon [
|
||||||
options
|
options
|
||||||
@ -11,34 +11,31 @@ options
|
|||||||
commands
|
commands
|
||||||
.B ]
|
.B ]
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
mcrcon is Minecraft rcon client for remote administration and server maintenance scripts.
|
mcrcon is Minecraft rcon client / terminal with bukkit coloring support.
|
||||||
|
It is well suited for remote administration and server maintenance scripts.
|
||||||
.SH OPTIONS
|
.SH OPTIONS
|
||||||
|
.IP -h
|
||||||
|
Print usage
|
||||||
.IP -H
|
.IP -H
|
||||||
Server address (default: localhost)
|
Server address
|
||||||
.IP -P
|
.IP -P
|
||||||
Port (default: 25575)
|
Port (default is 25575)
|
||||||
.IP -p
|
.IP -p
|
||||||
Rcon password
|
Rcon password
|
||||||
.IP -t
|
.IP -t
|
||||||
Terminal mode
|
Interactive terminal mode
|
||||||
.IP -s
|
.IP -s
|
||||||
Silent mode
|
Silent mode (do not print received packets)
|
||||||
.IP -c
|
.IP -c
|
||||||
Disable colors
|
Disable colors
|
||||||
.IP -r
|
.IP -r
|
||||||
Output raw packets
|
Output raw packets (for debugging and custom handling)
|
||||||
.IP -h
|
|
||||||
Print usage
|
|
||||||
.IP -v
|
.IP -v
|
||||||
Output version information
|
Output version information
|
||||||
.IP -w
|
|
||||||
Wait for specified duration (seconds) between each command
|
|
||||||
.PP
|
.PP
|
||||||
Commands with spaces must be enclosed in quotes.
|
Commands with arguments must be enclosed in quotes.
|
||||||
.br
|
|
||||||
mcrcon will start in terminal mode if no commands are given.
|
|
||||||
.SH ENVIRONMENTAL VARIABLES
|
.SH ENVIRONMENTAL VARIABLES
|
||||||
Server address, port and password can be set with following environment variables:
|
Server address, port and password can be set using following environment variables:
|
||||||
.PP
|
.PP
|
||||||
\fBMCRCON_HOST
|
\fBMCRCON_HOST
|
||||||
.br
|
.br
|
||||||
@ -58,9 +55,9 @@ Send "weather clear" command to server using custom port 1337
|
|||||||
\fBmcrcon\fR -H my.minecraft.server -P 1337 -p password "weather clear"
|
\fBmcrcon\fR -H my.minecraft.server -P 1337 -p password "weather clear"
|
||||||
.RE
|
.RE
|
||||||
.PP
|
.PP
|
||||||
Send three commands to server ("say", "save-all" and "stop"), and wait 2 seconds between them
|
Send three commands to server (say, save-all and stop)
|
||||||
.RS
|
.RS
|
||||||
\fBmcrcon\fR -H my.minecraft.server -p password -w 2 "say Server is restarting!" save-all stop
|
\fBmcrcon\fR -H my.minecraft.server -p password "say Server is restarting!" save-all stop
|
||||||
.RE
|
.RE
|
||||||
.SH BUGS
|
.SH BUGS
|
||||||
Bugs can be reported to \fBtiiffi+mcrcon at gmail\fR or \fBhttps://github.com/Tiiffi/mcrcon/issues/\fR
|
Bugs can be reported to \fBtiiffi_at_gmail_dot_com\fR or \fBhttps://github.com/Tiiffi/mcrcon/issues/\fR
|
||||||
|
|||||||
261
mcrcon.c
261
mcrcon.c
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2012-2019, Tiiffi <tiiffi at gmail>
|
* Copyright (c) 2012-2016, Tiiffi <tiiffi -> gmail_dot_com>
|
||||||
*
|
*
|
||||||
* This software is provided 'as-is', without any express or implied
|
* This software is provided 'as-is', without any express or implied
|
||||||
* warranty. In no event will the authors be held liable for any damages
|
* warranty. In no event will the authors be held liable for any damages
|
||||||
@ -32,7 +32,7 @@
|
|||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
// for name resolving on windows
|
// for name resolving on windows
|
||||||
// enable this if you get compiler whine about getaddrinfo() on windows
|
// enable this if you get compiler whine about getaddrinfo on windows
|
||||||
//#define _WIN32_WINNT 0x0501
|
//#define _WIN32_WINNT 0x0501
|
||||||
|
|
||||||
#include <ws2tcpip.h>
|
#include <ws2tcpip.h>
|
||||||
@ -46,7 +46,7 @@
|
|||||||
#include <netdb.h>
|
#include <netdb.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define VERSION "0.6.2"
|
#define VERSION "0.6.1"
|
||||||
#define IN_NAME "mcrcon"
|
#define IN_NAME "mcrcon"
|
||||||
#define VER_STR IN_NAME" "VERSION" (built: "__DATE__" "__TIME__")"
|
#define VER_STR IN_NAME" "VERSION" (built: "__DATE__" "__TIME__")"
|
||||||
|
|
||||||
@ -57,7 +57,7 @@
|
|||||||
#define RCON_PID 0xBADC0DE
|
#define RCON_PID 0xBADC0DE
|
||||||
|
|
||||||
// a bit too big perhaps?
|
// a bit too big perhaps?
|
||||||
#define DATA_BUFFSIZE 4096
|
#define DATA_BUFFSIZE 10240
|
||||||
|
|
||||||
// rcon packet structure
|
// rcon packet structure
|
||||||
typedef struct _rc_packet {
|
typedef struct _rc_packet {
|
||||||
@ -93,25 +93,26 @@ void usage(void);
|
|||||||
void print_color(int color);
|
void print_color(int color);
|
||||||
#endif
|
#endif
|
||||||
int get_line(char *buffer, int len);
|
int get_line(char *buffer, int len);
|
||||||
int run_terminal_mode(int sock);
|
int run_terminal_mode(int rsock);
|
||||||
int run_commands(int argc, char *argv[]);
|
int run_commands(int argc, char *argv[]);
|
||||||
|
|
||||||
// Rcon protocol related functions
|
// Rcon protocol related functions
|
||||||
rc_packet* packet_build(int id, int cmd, char *s1);
|
rc_packet* packet_build(int id, int cmd, char *s1);
|
||||||
|
uint8_t *packet_build_malloc(size_t *size, int32_t id, int32_t cmd, char *string);
|
||||||
void packet_print(rc_packet *packet);
|
void packet_print(rc_packet *packet);
|
||||||
int rcon_auth(int sock, char *passwd);
|
|
||||||
int rcon_command(int sock, char *command);
|
int rcon_auth(int rsock, char *passwd);
|
||||||
|
int rcon_command(int rsock, char *command);
|
||||||
|
|
||||||
|
|
||||||
// =============================================
|
// =============================================
|
||||||
// GLOBAL VARIABLES
|
// GLOBAL VARIABLES
|
||||||
// =============================================
|
// =============================================
|
||||||
static int global_raw_output = 0;
|
static int raw_output = 0;
|
||||||
static int global_silent_mode = 0;
|
static int silent_mode = 0;
|
||||||
static int global_print_colors = 1;
|
static int print_colors = 1;
|
||||||
static int global_connection_alive = 1;
|
static int connection_alive = 1;
|
||||||
static int global_wait_seconds = 0;
|
static int rsock;
|
||||||
static int global_rsock;
|
|
||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
// console coloring on windows
|
// console coloring on windows
|
||||||
@ -121,14 +122,14 @@ static int global_rsock;
|
|||||||
// safety stuff (windows is still misbehaving)
|
// safety stuff (windows is still misbehaving)
|
||||||
void exit_proc(void)
|
void exit_proc(void)
|
||||||
{
|
{
|
||||||
if (global_rsock != -1)
|
if (rsock != -1)
|
||||||
net_close(global_rsock);
|
net_close(rsock);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check windows & linux behaviour !!!
|
// Check windows & linux behaviour !!!
|
||||||
void sighandler(/*int sig*/)
|
void sighandler(/*int sig*/)
|
||||||
{
|
{
|
||||||
global_connection_alive = 0;
|
connection_alive = 0;
|
||||||
#ifndef _WIN32
|
#ifndef _WIN32
|
||||||
exit(EXIT_SUCCESS);
|
exit(EXIT_SUCCESS);
|
||||||
#endif
|
#endif
|
||||||
@ -146,16 +147,13 @@ int main(int argc, char *argv[])
|
|||||||
if (!port)
|
if (!port)
|
||||||
port = "25575";
|
port = "25575";
|
||||||
|
|
||||||
if (!host)
|
if(argc < 2 && host == NULL && pass == NULL)
|
||||||
host = "localhost";
|
|
||||||
|
|
||||||
if(argc < 1 && pass == NULL)
|
|
||||||
usage();
|
usage();
|
||||||
|
|
||||||
// default getopt error handler enabled
|
// default getopt error handler enabled
|
||||||
opterr = 1;
|
opterr = 1;
|
||||||
|
|
||||||
while ((opt = getopt(argc, argv, "vrtcshw:H:p:P:i")) != -1)
|
while ((opt = getopt(argc, argv, "vrtcshH:p:P:i")) != -1)
|
||||||
{
|
{
|
||||||
switch (opt)
|
switch (opt)
|
||||||
{
|
{
|
||||||
@ -163,25 +161,17 @@ int main(int argc, char *argv[])
|
|||||||
case 'P': port = optarg; break;
|
case 'P': port = optarg; break;
|
||||||
case 'p': pass = optarg; break;
|
case 'p': pass = optarg; break;
|
||||||
case 'C':
|
case 'C':
|
||||||
case 'c': global_print_colors = 0; break;
|
case 'c': print_colors = 0; break;
|
||||||
case 'S':
|
case 'S':
|
||||||
case 's': global_silent_mode = 1; break;
|
case 's': silent_mode = 1; break;
|
||||||
case 'T':
|
case 'T':
|
||||||
case 't':
|
case 't':
|
||||||
case 'I':
|
case 'I':
|
||||||
case 'i': terminal_mode = 1; break;
|
case 'i': terminal_mode = 1; break;
|
||||||
case 'r': global_raw_output = 1; break;
|
case 'r': raw_output = 1; break;
|
||||||
case 'v':
|
case 'v':
|
||||||
puts(VER_STR"\nhttps://github.com/Tiiffi/mcrcon");
|
puts(VER_STR"\nhttps://github.com/Tiiffi/mcrcon");
|
||||||
exit(EXIT_SUCCESS);
|
exit(EXIT_SUCCESS);
|
||||||
case 'W':
|
|
||||||
case 'w':
|
|
||||||
global_wait_seconds = strtol(optarg, NULL, 10);
|
|
||||||
if (errno != 0)
|
|
||||||
{
|
|
||||||
fprintf(stderr, "Error %d: %s\n", errno, strerror(errno));
|
|
||||||
exit(EXIT_FAILURE);
|
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
case 'h':
|
case 'h':
|
||||||
case '?': usage(); break;
|
case '?': usage(); break;
|
||||||
@ -195,9 +185,15 @@ int main(int argc, char *argv[])
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (host == NULL)
|
||||||
|
{
|
||||||
|
fputs("Host not defined (-H flag). Try 'mcrcon -h' or 'man mcrcon' for more information.\n\n", stdout);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
if (pass == NULL)
|
if (pass == NULL)
|
||||||
{
|
{
|
||||||
fputs("You must give password (-p password). Try 'mcrcon -h' or 'man mcrcon' for help.\n\n", stdout);
|
fputs("Password not defined (-p flag). Try 'mcrcon -h' 'man mcrcon' for more information.\n\n", stdout);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -218,58 +214,51 @@ int main(int argc, char *argv[])
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
// open socket
|
// open socket
|
||||||
global_rsock = net_connect(host, port);
|
rsock = net_connect(host, port);
|
||||||
|
|
||||||
int exit_code = EXIT_SUCCESS;
|
|
||||||
|
|
||||||
// auth & commands
|
// auth & commands
|
||||||
if (rcon_auth(global_rsock, pass))
|
if (rcon_auth(rsock, pass))
|
||||||
{
|
{
|
||||||
if (terminal_mode)
|
if (terminal_mode)
|
||||||
run_terminal_mode(global_rsock);
|
run_terminal_mode(rsock);
|
||||||
else
|
else
|
||||||
exit_code = run_commands(argc, argv);
|
run_commands(argc, argv);
|
||||||
}
|
}
|
||||||
else // auth failed
|
else // auth failed
|
||||||
{
|
|
||||||
fprintf(stdout, "Authentication failed!\n");
|
fprintf(stdout, "Authentication failed!\n");
|
||||||
exit_code = EXIT_FAILURE;
|
|
||||||
}
|
|
||||||
|
|
||||||
net_close(global_rsock);
|
net_close(rsock);
|
||||||
global_rsock = -1;
|
rsock = -1;
|
||||||
|
|
||||||
return exit_code;
|
return EXIT_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
void usage(void)
|
void usage(void)
|
||||||
{
|
{
|
||||||
fputs(
|
fputs(
|
||||||
"Usage: "IN_NAME" [OPTIONS] [COMMANDS]\n\n"
|
"Usage: "IN_NAME" [OPTIONS]... [COMMANDS]...\n\n"
|
||||||
"Send rcon commands to Minecraft server.\n\n"
|
"Sends rcon commands to Minecraft server.\n\n"
|
||||||
"Options:\n"
|
"Option:\n"
|
||||||
" -H\t\tServer address (default: localhost)\n"
|
|
||||||
" -P\t\tPort (default: 25575)\n"
|
|
||||||
" -p\t\tRcon password\n"
|
|
||||||
" -t\t\tTerminal mode\n"
|
|
||||||
" -s\t\tSilent mode\n"
|
|
||||||
" -c\t\tDisable colors\n"
|
|
||||||
" -r\t\tOutput raw packets\n"
|
|
||||||
" -h\t\tPrint usage\n"
|
" -h\t\tPrint usage\n"
|
||||||
" -v\t\tVersion information\n"
|
" -H\t\tServer address\n"
|
||||||
" -w\t\tWait for specified duration (seconds) between each command\n\n"
|
" -P\t\tPort (default is 25575)\n"
|
||||||
"Server address, port and password can be set with following environment variables:\n"
|
" -p\t\tRcon password\n"
|
||||||
|
" -t\t\tInteractive terminal mode\n"
|
||||||
|
" -s\t\tSilent mode (do not print received packets)\n"
|
||||||
|
" -c\t\tDisable colors\n"
|
||||||
|
" -r\t\tOutput raw packets (debugging and custom handling)\n"
|
||||||
|
" -v\t\tOutput version information\n\n"
|
||||||
|
"Server address, port and password can be set using following environment variables:\n"
|
||||||
" MCRCON_HOST\n"
|
" MCRCON_HOST\n"
|
||||||
" MCRCON_PORT\n"
|
" MCRCON_PORT\n"
|
||||||
" MCRCON_PASS\n\n"
|
" MCRCON_PASS\n\n"
|
||||||
,stdout
|
,stdout
|
||||||
);
|
);
|
||||||
|
|
||||||
puts("mcrcon will start in terminal mode if no commands are given.");
|
|
||||||
puts("Command-line options will override environment variables.");
|
puts("Command-line options will override environment variables.");
|
||||||
puts("Rcon commands with spaces must be enclosed in quotes.\n");
|
puts("Rcon commands with arguments must be enclosed in quotes.\n");
|
||||||
puts("Example:\n\t"IN_NAME" -H my.minecraft.server -p password \"say Server is restarting!\" save-all stop\n");
|
puts("Example:\n\t"IN_NAME" -H my.minecraft.server -p password \"say Server is restarting!\" save-all stop\n");
|
||||||
puts(VER_STR"\nReport bugs to tiiffi+mcrcon at gmail or https://github.com/Tiiffi/mcrcon/issues/\n");
|
puts(VER_STR"\nReport bugs to tiiffi_at_gmail_dot_com or https://github.com/Tiiffi/mcrcon/issues/\n");
|
||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
puts("Press enter to exit.");
|
puts("Press enter to exit.");
|
||||||
@ -422,14 +411,14 @@ rc_packet *net_recv_packet(int sd)
|
|||||||
if (ret == 0)
|
if (ret == 0)
|
||||||
{
|
{
|
||||||
fprintf(stderr, "Connection lost.\n");
|
fprintf(stderr, "Connection lost.\n");
|
||||||
global_connection_alive = 0;
|
connection_alive = 0;
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ret != sizeof(int))
|
if (ret != sizeof(int))
|
||||||
{
|
{
|
||||||
fprintf(stderr, "Error: recv() failed. Invalid packet size (%d).\n", ret);
|
fprintf(stderr, "Error: recv() failed. Invalid packet size (%d).\n", ret);
|
||||||
global_connection_alive = 0;
|
connection_alive = 0;
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -445,18 +434,19 @@ rc_packet *net_recv_packet(int sd)
|
|||||||
|
|
||||||
packet.size = psize;
|
packet.size = psize;
|
||||||
|
|
||||||
int received = 0;
|
ret = recv(sd, (char *) &packet + sizeof(int), psize, 0);
|
||||||
while (received < psize)
|
if (ret == 0)
|
||||||
{
|
|
||||||
ret = recv(sd, (char *) &packet + sizeof(int) + received, psize - received, 0);
|
|
||||||
if (ret == 0) /* connection closed before completing receving */
|
|
||||||
{
|
{
|
||||||
fprintf(stderr, "Connection lost.\n");
|
fprintf(stderr, "Connection lost.\n");
|
||||||
global_connection_alive = 0;
|
connection_alive = 0;
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
received += ret;
|
if(ret != psize)
|
||||||
|
{
|
||||||
|
fprintf(stderr, "Warning: recv() return value (%d) does not match expected packet size (%d).\n", ret, psize);
|
||||||
|
net_clean_incoming(sd, DATA_BUFFSIZE); /* Should be enough. Needs some checking */
|
||||||
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
return &packet;
|
return &packet;
|
||||||
@ -471,7 +461,7 @@ int net_clean_incoming(int sd, int size)
|
|||||||
if(ret == 0)
|
if(ret == 0)
|
||||||
{
|
{
|
||||||
fprintf(stderr, "Connection lost.\n");
|
fprintf(stderr, "Connection lost.\n");
|
||||||
global_connection_alive = 0;
|
connection_alive = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
@ -525,7 +515,7 @@ void print_color(int color)
|
|||||||
// this hacky mess might use some optimizing
|
// this hacky mess might use some optimizing
|
||||||
void packet_print(rc_packet *packet)
|
void packet_print(rc_packet *packet)
|
||||||
{
|
{
|
||||||
if (global_raw_output == 1)
|
if (raw_output == 1)
|
||||||
{
|
{
|
||||||
for (int i = 0; packet->data[i] != 0; ++i) putchar(packet->data[i]);
|
for (int i = 0; packet->data[i] != 0; ++i) putchar(packet->data[i]);
|
||||||
return;
|
return;
|
||||||
@ -544,7 +534,7 @@ void packet_print(rc_packet *packet)
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
// colors enabled so try to handle the bukkit colors for terminal
|
// colors enabled so try to handle the bukkit colors for terminal
|
||||||
if (global_print_colors == 1)
|
if (print_colors == 1)
|
||||||
{
|
{
|
||||||
for (i = 0; (unsigned char) packet->data[i] != 0; ++i)
|
for (i = 0; (unsigned char) packet->data[i] != 0; ++i)
|
||||||
{
|
{
|
||||||
@ -595,7 +585,67 @@ rc_packet *packet_build(int id, int cmd, char *s1)
|
|||||||
return &packet;
|
return &packet;
|
||||||
}
|
}
|
||||||
|
|
||||||
int rcon_auth(int sock, char *passwd)
|
// TODO(Tiiffi): String length limit?
|
||||||
|
uint8_t *packet_build_malloc(size_t *size, int32_t id, int32_t cmd, char *string)
|
||||||
|
{
|
||||||
|
size_t string_length = strlen(string);
|
||||||
|
|
||||||
|
*size = 3 * sizeof(int32_t) + string_length + 2;
|
||||||
|
uint8_t *packet = malloc(*size);
|
||||||
|
if (packet == NULL) return NULL;
|
||||||
|
|
||||||
|
int32_t *p = (int32_t *) packet;
|
||||||
|
p[0] = (int32_t) *size - sizeof(int32_t);
|
||||||
|
p[1] = id;
|
||||||
|
p[2] = cmd;
|
||||||
|
|
||||||
|
memcpy(&p[3], string, string_length);
|
||||||
|
|
||||||
|
packet[12 + string_length] = 0;
|
||||||
|
packet[13 + string_length] = 0;
|
||||||
|
|
||||||
|
return packet;
|
||||||
|
}
|
||||||
|
|
||||||
|
// rcon packet structure
|
||||||
|
#define MAX_PACKET_SIZE (size_t) 1460 // including size member
|
||||||
|
#define MIN_PACKET_SIZE (size_t) 10
|
||||||
|
#define MAX_STRING_SIZE (size_t) (MAX_PACKET_SIZE - 2 - 3 * sizeof(int32_t))
|
||||||
|
#define SIZEOF_PACKET(x) (size_t) (x.size + sizeof(int32_t))
|
||||||
|
|
||||||
|
struct rcon_packet
|
||||||
|
{
|
||||||
|
int32_t size;
|
||||||
|
int32_t id;
|
||||||
|
int32_t cmd;
|
||||||
|
uint8_t data[MAX_STRING_SIZE];
|
||||||
|
};
|
||||||
|
|
||||||
|
struct rcon_packet packet_build_new(int32_t id, int32_t cmd, char *string)
|
||||||
|
{
|
||||||
|
struct rcon_packet packet;
|
||||||
|
size_t string_length = strlen(string);
|
||||||
|
|
||||||
|
if (string_length > MAX_STRING_SIZE)
|
||||||
|
{
|
||||||
|
string_length = MAX_STRING_SIZE;
|
||||||
|
fprintf(stderr,
|
||||||
|
"Warning: command string is too long. Truncating to "
|
||||||
|
"%u characters.\n", (unsigned) MAX_STRING_SIZE
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
packet.size = 2 * sizeof(int32_t) + string_length + 2;
|
||||||
|
packet.id = id;
|
||||||
|
packet.cmd = cmd;
|
||||||
|
memcpy(packet.data, string, string_length);
|
||||||
|
packet.data[string_length] = 0;
|
||||||
|
packet.data[string_length + 1] = 0;
|
||||||
|
|
||||||
|
return packet;
|
||||||
|
}
|
||||||
|
|
||||||
|
int rcon_auth(int rsock, char *passwd)
|
||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
@ -603,11 +653,11 @@ int rcon_auth(int sock, char *passwd)
|
|||||||
if (packet == NULL)
|
if (packet == NULL)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
ret = net_send_packet(sock, packet);
|
ret = net_send_packet(rsock, packet);
|
||||||
if (!ret)
|
if (!ret)
|
||||||
return 0; // send failed
|
return 0; // send failed
|
||||||
|
|
||||||
packet = net_recv_packet(sock);
|
packet = net_recv_packet(rsock);
|
||||||
if (packet == NULL)
|
if (packet == NULL)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
@ -615,25 +665,34 @@ int rcon_auth(int sock, char *passwd)
|
|||||||
return packet->id == -1 ? 0 : 1;
|
return packet->id == -1 ? 0 : 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
int rcon_command(int sock, char *command)
|
int rcon_command(int rsock, char *command)
|
||||||
{
|
{
|
||||||
rc_packet *packet = packet_build(RCON_PID, RCON_EXEC_COMMAND, command);
|
int ret; (void) ret;
|
||||||
if (packet == NULL)
|
|
||||||
|
size_t size;
|
||||||
|
uint8_t *p = packet_build_malloc(&size, RCON_PID, RCON_EXEC_COMMAND, command);
|
||||||
|
if (p == NULL)
|
||||||
{
|
{
|
||||||
global_connection_alive = 0;
|
connection_alive = 0;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
net_send_packet(sock, packet);
|
net_send(rsock, p, size);
|
||||||
|
|
||||||
packet = net_recv_packet(sock);
|
free(p);
|
||||||
|
|
||||||
|
//ret = net_send_packet(rsock, packet);
|
||||||
|
//if(!ret) return 0; /* send failed */
|
||||||
|
|
||||||
|
rc_packet *packet;
|
||||||
|
packet = net_recv_packet(rsock);
|
||||||
if (packet == NULL)
|
if (packet == NULL)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
if (packet->id != RCON_PID)
|
if (packet->id != RCON_PID)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
if (!global_silent_mode)
|
if (!silent_mode)
|
||||||
{
|
{
|
||||||
/*
|
/*
|
||||||
if(packet->size == 10) {
|
if(packet->size == 10) {
|
||||||
@ -650,43 +709,33 @@ int rcon_command(int sock, char *command)
|
|||||||
|
|
||||||
int run_commands(int argc, char *argv[])
|
int run_commands(int argc, char *argv[])
|
||||||
{
|
{
|
||||||
int i = optind;
|
int i, ok = 1, ret = 0;
|
||||||
|
|
||||||
for (;;)
|
for (i = optind; i < argc && ok; i++)
|
||||||
{
|
{
|
||||||
if (!rcon_command(global_rsock, argv[i]))
|
ok = rcon_command(rsock, argv[i]);
|
||||||
return EXIT_FAILURE;
|
ret += ok;
|
||||||
|
|
||||||
if (++i >= argc)
|
|
||||||
return EXIT_SUCCESS;
|
|
||||||
|
|
||||||
if (global_wait_seconds > 0)
|
|
||||||
{
|
|
||||||
#ifdef _WIN32
|
|
||||||
Sleep(global_wait_seconds * 1000);
|
|
||||||
#else
|
|
||||||
sleep(global_wait_seconds);
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
// interactive terminal mode
|
// interactive terminal mode
|
||||||
int run_terminal_mode(int sock)
|
int run_terminal_mode(int rsock)
|
||||||
{
|
{
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
char command[DATA_BUFFSIZE] = {0x00};
|
char command[DATA_BUFFSIZE] = {0x00};
|
||||||
|
|
||||||
puts("Logged in. Type \"Q\" to quit!");
|
puts("Logged in. Type \"Q\" to quit!");
|
||||||
|
|
||||||
while (global_connection_alive)
|
while (connection_alive)
|
||||||
{
|
{
|
||||||
int len = get_line(command, DATA_BUFFSIZE);
|
int len = get_line(command, DATA_BUFFSIZE);
|
||||||
if(command[0] == 'Q' && command[1] == 0)
|
if(command[0] == 'Q' && command[1] == 0)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
if(len > 0 && global_connection_alive)
|
if(len > 0 && connection_alive)
|
||||||
ret += rcon_command(sock, command);
|
ret += rcon_command(rsock, command);
|
||||||
|
|
||||||
command[0] = len = 0;
|
command[0] = len = 0;
|
||||||
}
|
}
|
||||||
@ -700,10 +749,10 @@ int get_line(char *buffer, int bsize)
|
|||||||
int ch, len;
|
int ch, len;
|
||||||
|
|
||||||
fputs(">", stdout);
|
fputs(">", stdout);
|
||||||
char *ret = fgets(buffer, bsize, stdin);
|
(void) fgets(buffer, bsize, stdin);
|
||||||
if (ret == NULL) exit(EXIT_FAILURE);
|
|
||||||
|
|
||||||
if (buffer[0] == 0) global_connection_alive = 0;
|
if (buffer[0] == 0)
|
||||||
|
connection_alive = 0;
|
||||||
|
|
||||||
// remove unwanted characters from the buffer
|
// remove unwanted characters from the buffer
|
||||||
buffer[strcspn(buffer, "\r\n")] = '\0';
|
buffer[strcspn(buffer, "\r\n")] = '\0';
|
||||||
|
|||||||
Reference in New Issue
Block a user