2022-01-10 20:21:47 +00:00
|
|
|
/**
|
|
|
|
* Implementation of the RakNet ping/pong protocol.
|
|
|
|
* @see https://wiki.vg/Raknet_Protocol#Unconnected_Ping
|
|
|
|
*
|
|
|
|
* Data types:
|
|
|
|
* @see https://wiki.vg/Raknet_Protocol#Data_types
|
|
|
|
*/
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
import dgram from 'dgram';
|
|
|
|
|
|
|
|
const START_TIME = new Date().getTime();
|
|
|
|
|
|
|
|
/**
|
2023-10-21 23:29:20 +00:00
|
|
|
* Creates a buffer with the specified length.
|
|
|
|
* @param {number} length - The length of the buffer.
|
|
|
|
* @returns {Buffer} - The created buffer.
|
|
|
|
*/
|
|
|
|
const createBuffer = (length) => {
|
|
|
|
const buffer = Buffer.alloc(length);
|
|
|
|
buffer[0] = 0x01;
|
|
|
|
return buffer;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Writes a BigInt value to the buffer at the specified offset using big-endian byte order.
|
|
|
|
* @param {Buffer} buffer - The buffer to write to.
|
|
|
|
* @param {number} value - The BigInt value to write.
|
|
|
|
* @param {number} offset - The offset in the buffer to write the value.
|
|
|
|
*/
|
|
|
|
const writeBigInt64BE = (buffer, value, offset) => {
|
|
|
|
buffer.writeBigInt64BE(BigInt(value), offset);
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Copies the specified hex value to the buffer at the specified offset.
|
|
|
|
* @param {Buffer} buffer - The buffer to copy to.
|
|
|
|
* @param {string} hex - The hex value to copy.
|
|
|
|
* @param {number} offset - The offset in the buffer to copy the value.
|
|
|
|
*/
|
|
|
|
const copyHexToBuffer = (buffer, hex, offset) => {
|
|
|
|
Buffer.from(hex, 'hex').copy(buffer, offset);
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reads a BigInt value from the buffer at the specified offset using big-endian byte order.
|
|
|
|
* @param {Buffer} buffer - The buffer to read from.
|
|
|
|
* @param {number} offset - The offset in the buffer to read the value.
|
|
|
|
* @returns {BigInt} - The read BigInt value.
|
|
|
|
*/
|
|
|
|
const readBigInt64BE = (buffer, offset) => {
|
|
|
|
return buffer.readBigInt64BE(offset);
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reads a string from the buffer at the specified offset.
|
|
|
|
* @param {Buffer} buffer - The buffer to read from.
|
|
|
|
* @param {number} offset - The offset in the buffer to read the string.
|
|
|
|
* @returns {string} - The read string.
|
|
|
|
*/
|
|
|
|
const readStringFromBuffer = (buffer, offset) => {
|
|
|
|
const length = buffer.readUInt16BE(offset);
|
|
|
|
return buffer.toString('utf8', offset + 2, offset + 2 + length);
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Parses the advertise string into an object with properties.
|
|
|
|
* @param {string} advertiseStr - The advertise string to parse.
|
|
|
|
* @returns {Object} - The parsed object with properties.
|
|
|
|
*/
|
|
|
|
const parseAdvertiseString = (advertiseStr) => {
|
|
|
|
const parts = advertiseStr.split(';');
|
|
|
|
return {
|
|
|
|
gameId: parts[0],
|
|
|
|
description: parts[1],
|
|
|
|
protocolVersion: parts[2],
|
|
|
|
gameVersion: parts[3],
|
|
|
|
currentPlayers: parts[4],
|
|
|
|
maxPlayers: parts[5],
|
|
|
|
name: parts[7],
|
|
|
|
mode: parts[8]
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates an Unconnected Ping buffer.
|
|
|
|
* @param {number} pingId - The ping ID.
|
|
|
|
* @returns {Buffer} - The Unconnected Ping buffer.
|
|
|
|
* @see {@link https://wiki.vg/Raknet_Protocol#Unconnected_Ping}
|
2022-01-10 20:21:47 +00:00
|
|
|
*/
|
|
|
|
const UNCONNECTED_PING = (pingId) => {
|
2023-10-21 23:29:20 +00:00
|
|
|
const buffer = createBuffer(35);
|
|
|
|
writeBigInt64BE(buffer, pingId, 1);
|
|
|
|
copyHexToBuffer(buffer, '00ffff00fefefefefdfdfdfd12345678', 9);
|
|
|
|
writeBigInt64BE(buffer, 0, 25);
|
|
|
|
return buffer;
|
2022-01-10 20:21:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
2023-10-21 23:29:20 +00:00
|
|
|
* Decodes an Unconnected Pong buffer and returns the parsed data.
|
|
|
|
* @param {Buffer} buffer - The Unconnected Pong buffer.
|
|
|
|
* @returns {Object} - The parsed Unconnected Pong data.
|
|
|
|
* @see {@link https://wiki.vg/Raknet_Protocol#Unconnected_Pong}
|
2022-01-10 20:21:47 +00:00
|
|
|
*/
|
|
|
|
const UNCONNECTED_PONG = (buffer) => {
|
2023-10-21 23:29:20 +00:00
|
|
|
const pingId = readBigInt64BE(buffer, 1);
|
|
|
|
const serverId = readBigInt64BE(buffer, 9);
|
|
|
|
let offset = 25;
|
2022-01-10 20:21:47 +00:00
|
|
|
let advertiseStr;
|
|
|
|
|
|
|
|
try {
|
2023-10-21 23:29:20 +00:00
|
|
|
advertiseStr = readStringFromBuffer(buffer, offset);
|
2022-01-10 20:21:47 +00:00
|
|
|
} catch (err) {
|
2023-10-21 23:29:20 +00:00
|
|
|
const length = parseInt(err.message.substr(err.message.indexOf(',') + 2, 3));
|
|
|
|
advertiseStr = buffer.toString('utf8', offset, offset + length);
|
2022-01-10 20:21:47 +00:00
|
|
|
}
|
|
|
|
|
2023-10-21 23:29:20 +00:00
|
|
|
const parsedAdvertiseStr = parseAdvertiseString(advertiseStr);
|
2022-01-10 20:21:47 +00:00
|
|
|
|
2023-10-21 23:29:20 +00:00
|
|
|
return { pingId, advertiseStr, serverId, offset, ...parsedAdvertiseStr };
|
2022-01-10 20:21:47 +00:00
|
|
|
};
|
|
|
|
|
2023-10-21 23:29:20 +00:00
|
|
|
/**
|
|
|
|
* Sends a ping request to the specified host and port.
|
|
|
|
* @param {string} host - The IP address or hostname of the server.
|
|
|
|
* @param {number} [port=19132] - The port number.
|
|
|
|
* @param {function} cb - The callback function to handle the response.
|
|
|
|
* @param {number} [timeout=5000] - The timeout duration in milliseconds.
|
|
|
|
*/
|
|
|
|
const ping = (host, port = 19132, cb, timeout = 5000) => {
|
2022-01-10 20:21:47 +00:00
|
|
|
const socket = dgram.createSocket('udp4');
|
|
|
|
|
2023-10-22 18:32:00 +00:00
|
|
|
// Set manual timeout interval.
|
|
|
|
// This ensures the connection will NEVER hang regardless of internal state
|
2022-01-10 20:21:47 +00:00
|
|
|
const timeoutTask = setTimeout(() => {
|
|
|
|
socket.emit('error', new Error('Socket timeout'));
|
|
|
|
}, timeout);
|
|
|
|
|
|
|
|
const closeSocket = () => {
|
2023-10-22 18:32:00 +00:00
|
|
|
socket.close();
|
|
|
|
clearTimeout(timeoutTask);
|
2022-01-10 20:21:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// Generic error handler
|
|
|
|
// This protects multiple error callbacks given the complex socket state
|
|
|
|
// This is mostly dangerous since it can swallow errors
|
|
|
|
let didFireError = false;
|
|
|
|
|
2023-10-22 18:32:00 +00:00
|
|
|
/**
|
|
|
|
* Handle any error that occurs during the ping process.
|
|
|
|
* @param {Error} err The error that occurred.
|
|
|
|
*/
|
2022-01-10 20:21:47 +00:00
|
|
|
const handleError = (err) => {
|
|
|
|
closeSocket();
|
|
|
|
|
|
|
|
if (!didFireError) {
|
|
|
|
didFireError = true;
|
|
|
|
cb(null, err);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
try {
|
|
|
|
const ping = UNCONNECTED_PING(new Date().getTime() - START_TIME);
|
2023-10-21 23:29:20 +00:00
|
|
|
socket.send(ping, 0, ping.length, port, host);
|
2022-01-10 20:21:47 +00:00
|
|
|
} catch (err) {
|
|
|
|
handleError(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
socket.on('message', (msg) => {
|
2023-10-21 23:29:20 +00:00
|
|
|
const id = msg[0];
|
2022-01-10 20:21:47 +00:00
|
|
|
|
|
|
|
switch (id) {
|
|
|
|
case 0x1c: {
|
2023-10-21 23:29:20 +00:00
|
|
|
const pong = UNCONNECTED_PONG(msg);
|
2022-01-10 20:21:47 +00:00
|
|
|
const clientData = {
|
|
|
|
version: {
|
|
|
|
name: pong.name,
|
|
|
|
protocol: pong.protocolVersion
|
|
|
|
},
|
|
|
|
players: {
|
|
|
|
max: pong.maxPlayers,
|
|
|
|
online: pong.currentPlayers
|
|
|
|
},
|
|
|
|
description: pong.description.replace(/\xA7[0-9A-FK-OR]/ig, ''),
|
|
|
|
gamemode: pong.mode
|
|
|
|
};
|
|
|
|
|
|
|
|
closeSocket();
|
2023-10-08 20:22:18 +00:00
|
|
|
cb(clientData, null);
|
2022-01-10 20:21:47 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
default: {
|
|
|
|
handleError(new Error('Received unexpected packet'));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2023-10-22 18:32:00 +00:00
|
|
|
socket.on('error', handleError);
|
2023-10-21 23:29:20 +00:00
|
|
|
};
|
2022-01-10 20:21:47 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Asynchronously ping Minecraft Bedrock server.
|
|
|
|
* The optional `options` argument can be an object with a `ping` (default is `19132`) or/and `timeout` (default is `5000`) property.
|
|
|
|
* @param {string} host The Bedrock server address.
|
2023-10-22 18:32:00 +00:00
|
|
|
* @param {import('../types/index.js').PingOptions} options The configuration for pinging Minecraft Bedrock server.
|
|
|
|
* @returns {Promise<import('../types/index.js').BedrockPingResponse>}
|
2022-01-10 20:21:47 +00:00
|
|
|
*/
|
2023-10-21 23:29:20 +00:00
|
|
|
export const pingBedrock = (host, options = {}) => {
|
2022-01-10 20:21:47 +00:00
|
|
|
if (!host) throw new Error('Host argument is not provided');
|
|
|
|
|
|
|
|
const { port = 19132, timeout = 5000 } = options;
|
|
|
|
|
2023-10-08 20:22:18 +00:00
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
ping(host, port, (res, err) => {
|
|
|
|
err ? reject(err) : resolve(res);
|
2022-01-10 20:21:47 +00:00
|
|
|
}, timeout);
|
|
|
|
});
|
2023-10-21 23:29:20 +00:00
|
|
|
};
|