2023-09-02 15:47:15 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Reflection.Metadata.Ecma335;
|
2023-09-02 17:56:46 +02:00
|
|
|
|
using System.Runtime.CompilerServices;
|
2023-09-02 15:47:15 +02:00
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Serilog;
|
2023-09-02 17:56:46 +02:00
|
|
|
|
using server;
|
|
|
|
|
using service;
|
2023-09-02 15:47:15 +02:00
|
|
|
|
|
|
|
|
|
namespace server
|
|
|
|
|
{
|
|
|
|
|
public class Message
|
|
|
|
|
{
|
|
|
|
|
private byte[] _buffer;
|
|
|
|
|
private int _bufferSize;
|
|
|
|
|
private int _messageType;
|
2023-09-02 17:56:46 +02:00
|
|
|
|
private ILogger _logger;
|
2023-09-07 09:21:00 +02:00
|
|
|
|
private PACKET_HEADER _header;
|
2023-09-02 15:47:15 +02:00
|
|
|
|
|
|
|
|
|
private enum MESSAGE_TYPE
|
|
|
|
|
{
|
|
|
|
|
MESSAGE_TYPE_REPORT = 1,
|
|
|
|
|
MESSAGE_TYPE_SEND = 2,
|
|
|
|
|
MESSAGE_TYPE_RECEIVE = 3
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-07 09:21:00 +02:00
|
|
|
|
public struct PACKET_HEADER
|
2023-09-02 15:47:15 +02:00
|
|
|
|
{
|
2023-09-07 09:21:00 +02:00
|
|
|
|
public int message_type;
|
|
|
|
|
public Int64 steam64_id;
|
|
|
|
|
};
|
2023-09-02 15:47:15 +02:00
|
|
|
|
|
|
|
|
|
struct REPORT_PACKET_HEADER
|
|
|
|
|
{
|
2023-09-07 09:21:00 +02:00
|
|
|
|
public int reportId;
|
2023-09-02 15:47:15 +02:00
|
|
|
|
}
|
|
|
|
|
|
2023-09-02 17:56:46 +02:00
|
|
|
|
public Message(byte[] buffer, int bufferSize, ILogger logger)
|
2023-09-02 15:47:15 +02:00
|
|
|
|
{
|
|
|
|
|
_buffer = buffer;
|
|
|
|
|
_bufferSize = bufferSize;
|
2023-09-02 17:56:46 +02:00
|
|
|
|
_logger = logger;
|
2023-09-07 09:21:00 +02:00
|
|
|
|
_header = this.GetMessageHeader();
|
2023-09-02 15:47:15 +02:00
|
|
|
|
|
2023-09-07 09:21:00 +02:00
|
|
|
|
_logger.Information("SteamID: {0}, Message type: {1}",
|
|
|
|
|
_header.steam64_id,
|
|
|
|
|
_header.message_type
|
|
|
|
|
);
|
2023-09-02 17:56:46 +02:00
|
|
|
|
|
2023-09-02 15:47:15 +02:00
|
|
|
|
switch (_messageType)
|
|
|
|
|
{
|
|
|
|
|
case (int)MESSAGE_TYPE.MESSAGE_TYPE_REPORT:
|
2023-09-07 09:21:00 +02:00
|
|
|
|
int reportId = GetReportType().reportId;
|
|
|
|
|
this.HandleReportMessage(reportId);
|
2023-09-02 15:47:15 +02:00
|
|
|
|
break;
|
|
|
|
|
default:
|
2023-09-02 17:56:46 +02:00
|
|
|
|
_logger.Information("This message type is not accepted at the moment.");
|
2023-09-02 15:47:15 +02:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-07 09:21:00 +02:00
|
|
|
|
private PACKET_HEADER GetMessageHeader()
|
2023-09-02 15:47:15 +02:00
|
|
|
|
{
|
2023-09-07 09:21:00 +02:00
|
|
|
|
return Helper.BytesToStructure<PACKET_HEADER>(ref _buffer, 0);
|
2023-09-02 15:47:15 +02:00
|
|
|
|
}
|
|
|
|
|
|
2023-09-07 09:21:00 +02:00
|
|
|
|
unsafe private REPORT_PACKET_HEADER GetReportType()
|
2023-09-02 15:47:15 +02:00
|
|
|
|
{
|
2023-09-07 09:21:00 +02:00
|
|
|
|
return Helper.BytesToStructure<REPORT_PACKET_HEADER>(ref _buffer, sizeof(REPORT_PACKET_HEADER));
|
2023-09-02 15:47:15 +02:00
|
|
|
|
}
|
|
|
|
|
|
2023-09-07 09:21:00 +02:00
|
|
|
|
unsafe private void HandleReportMessage(int reportId)
|
2023-09-02 15:47:15 +02:00
|
|
|
|
{
|
2023-09-02 17:56:46 +02:00
|
|
|
|
_logger.Information("Report id: {0}", reportId);
|
|
|
|
|
|
2023-09-07 09:21:00 +02:00
|
|
|
|
var openHandleFailure = Helper.BytesToStructure<Types.Reports.OPEN_HANDLE_FAILURE_REPORT>(ref _buffer, sizeof(PACKET_HEADER));
|
2023-09-02 17:56:46 +02:00
|
|
|
|
|
2023-09-02 18:55:40 +02:00
|
|
|
|
_logger.Information("Report code: {0}, Process Name: {4} ProcessID: {1:x}, ThreadId: {2:x}, DesiredAccess{3:x}",
|
2023-09-02 17:56:46 +02:00
|
|
|
|
openHandleFailure.ReportCode,
|
|
|
|
|
openHandleFailure.ProcessId,
|
|
|
|
|
openHandleFailure.ThreadId,
|
|
|
|
|
openHandleFailure.DesiredAccess);
|
|
|
|
|
|
2023-09-02 15:47:15 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|