PSO2SERVER/Server/Protocol/Handlers/11-ClientHandler/11-00-SegaIDLogin.cs

222 lines
8.4 KiB
C#
Raw Normal View History

2024-09-10 00:31:40 +08:00
using System.IO;
using System.Linq;
using System.Text.RegularExpressions;
2024-09-10 01:13:20 +08:00
using PSO2SERVER.Database;
using PSO2SERVER.Protocol.Packets;
2024-09-10 01:13:20 +08:00
using PSO2SERVER.Models;
2024-09-22 00:08:44 +08:00
using System.Text;
using System.Collections.Generic;
2024-09-10 00:31:40 +08:00
namespace PSO2SERVER.Protocol.Handlers
2024-09-10 00:31:40 +08:00
{
2024-09-16 02:56:02 +08:00
[PacketHandlerAttr(0x11, 0x00)]
2024-09-22 11:14:48 +08:00
public class SegaIDLogin : PacketHandler
2024-09-10 00:31:40 +08:00
{
2024-09-22 00:08:44 +08:00
public uint Unk1 { get; set; }
public uint Unk2 { get; set; }
public uint Unk3 { get; set; }
public byte[] VerId { get; set; } = new byte[0x20];
public List<NetInterface> Interfaces { get; set; } = new List<NetInterface>();
public byte[] Unk4 { get; set; } = new byte[0x90];
public byte[] Unk5 { get; set; } = new byte[0x10];
public Language TextLang { get; set; }
public Language VoiceLang { get; set; }
public Language TextLang2 { get; set; }
public Language LangLang { get; set; }
public string LanguageCode { get; set; } = new string('\0', 0x10);
public uint Unk6 { get; set; }
public uint Unk7 { get; set; }
public uint Magic1 { get; set; }
public byte[] Unk8 { get; set; } = new byte[0x20];
public byte[] Unk9 { get; set; } = new byte[0x44];
public string Username { get; set; } = new string('\0', 0x40);
public string Password { get; set; } = new string('\0', 0x40);
public uint Unk10 { get; set; }
public string Unk11 { get; set; } = string.Empty;
public List<NetInterface> ReadNetInterfaces(PacketReader reader, uint count)
2024-09-10 00:31:40 +08:00
{
2024-09-22 00:08:44 +08:00
var interfaces = new List<NetInterface>();
for (uint i = 0; i < count; i++)
{
var netInterface = new NetInterface();
netInterface.ReadFromStream(reader);
interfaces.Add(netInterface);
}
return interfaces;
}
2024-09-12 02:14:42 +08:00
2024-09-22 00:08:44 +08:00
public void ReadFromStream(PacketReader reader)
{
Unk1 = reader.ReadUInt32();
Unk2 = reader.ReadUInt32();
Unk3 = reader.ReadUInt32();
VerId = reader.ReadBytes(0x20);
2024-09-10 00:31:40 +08:00
var macCount = reader.ReadMagic(0x5E6, 107);
2024-09-22 00:08:44 +08:00
// Assuming Interfaces is populated somehow
// e.g. Interfaces = ReadNetInterfaces(reader);
Interfaces = ReadNetInterfaces(reader, macCount);
// Read the fixed length fields
reader.BaseStream.Seek(0x14, SeekOrigin.Current);
Unk4 = reader.ReadBytes(0x90);
reader.BaseStream.Seek(0x10, SeekOrigin.Current);
Unk5 = reader.ReadBytes(0x10);
reader.BaseStream.Seek(0x10, SeekOrigin.Current);
TextLang = (Language)reader.ReadByte(); // Adjust based on actual type
VoiceLang = (Language)reader.ReadByte(); // Adjust based on actual type
TextLang2 = (Language)reader.ReadByte(); // Adjust based on actual type
LangLang = (Language)reader.ReadByte(); // Adjust based on actual type
reader.BaseStream.Seek(0x8, SeekOrigin.Current);
LanguageCode = Encoding.ASCII.GetString(reader.ReadBytes(0x10)).TrimEnd('\0');
Unk6 = reader.ReadUInt32();
Unk7 = reader.ReadUInt32();
Magic1 = reader.ReadUInt32();
Unk8 = reader.ReadBytes(0x20);
Unk9 = reader.ReadBytes(0x44);
// Read Username and Password
reader.BaseStream.Seek(0x120, SeekOrigin.Current);
Username = Encoding.ASCII.GetString(reader.ReadBytes(0x40)).TrimEnd('\0');
reader.BaseStream.Seek(0x20, SeekOrigin.Current);
Password = Encoding.ASCII.GetString(reader.ReadBytes(0x40)).TrimEnd('\0');
Unk10 = reader.ReadUInt32();
Unk11 = Encoding.ASCII.GetString(reader.ReadBytes(0x40)).TrimEnd('\0'); // Adjust size if needed
}
2024-09-10 00:31:40 +08:00
2024-09-22 00:08:44 +08:00
#region implemented abstract members of PacketHandler
2024-09-10 00:31:40 +08:00
2024-09-22 00:08:44 +08:00
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
{
var reader = new PacketReader(data, position, size);
2024-09-12 02:14:42 +08:00
2024-09-22 00:08:44 +08:00
ReadFromStream(reader);
2024-09-10 00:31:40 +08:00
2024-09-22 00:08:44 +08:00
//var info = string.Format("[<--] 接收到的数据 (hex): {0}字节", data.Length);
//Logger.WriteHex(info, data);
2024-10-23 20:06:25 +08:00
//Logger.Write("用户名 {0} 密码 {1} - {2}", Username, Password, BCrypt.Net.BCrypt.HashPassword(Password));
2024-09-10 00:31:40 +08:00
// What am I doing here even
2024-09-10 01:13:20 +08:00
using (var db = new ServerEf())
2024-09-10 00:31:40 +08:00
{
2024-09-20 21:58:37 +08:00
var users = from u in db.Account
2024-09-22 00:08:44 +08:00
where u.Username.ToLower().Equals(Username.ToLower())
2024-09-10 00:31:40 +08:00
select u;
var error = "";
2024-09-20 21:58:37 +08:00
Account user;
2024-09-10 00:31:40 +08:00
if (!users.Any())
{
// Check if there is an empty field
2024-11-29 10:01:28 +08:00
if (string.IsNullOrWhiteSpace(Username))
2024-09-10 00:31:40 +08:00
{
2024-11-29 10:01:28 +08:00
error = "Username Empty.";
2024-09-10 00:31:40 +08:00
user = null;
}
2024-11-29 10:01:28 +08:00
if (string.IsNullOrWhiteSpace(Password))
{
error = "Password Empty #1.";
user = null;
}
2024-09-10 00:31:40 +08:00
// Check for special characters
2024-09-22 00:08:44 +08:00
else if (!Regex.IsMatch(Username, "^[a-zA-Z0-9 ]*$", RegexOptions.IgnoreCase))
2024-09-10 00:31:40 +08:00
{
2024-09-11 00:55:22 +08:00
error = "用户名不能包含特殊字符\n请只使用字母和数字.";
2024-09-10 00:31:40 +08:00
user = null;
}
else // We're all good!
{
2024-09-15 17:17:05 +08:00
// 直接插入新账户至数据库
2024-09-20 21:58:37 +08:00
user = new Account
2024-09-10 00:31:40 +08:00
{
2024-09-22 00:08:44 +08:00
Username = Username.ToLower(),
Password = BCrypt.Net.BCrypt.HashPassword(Password),
Nickname = Username.ToLower(),
2024-11-25 23:33:41 +08:00
// Since we can't display the Nickname prompt yet, just default it to the username
2024-09-11 00:44:21 +08:00
SettingsIni = File.ReadAllText(ServerApp.ServerSettingsKey)
2024-09-10 00:31:40 +08:00
};
2024-09-20 21:58:37 +08:00
db.Account.Add(user);
2024-09-10 00:31:40 +08:00
db.SaveChanges();
2024-11-25 23:33:41 +08:00
//context.SendPacket(0x11, 0x1e, 0x0, new byte[0x44]); // Request Nickname
context.SendPacket(new NicknameRequestPacket()); // Request Nickname
2024-09-10 00:31:40 +08:00
}
}
else
{
user = users.First();
2024-11-29 10:01:28 +08:00
//TODO 方便GM测试
//if (Password != user.Password)
//{
// if (Password == "")
// {
// error = "Password Empty #2.";
// user = null;
// }
// else
// if (!BCrypt.Net.BCrypt.Verify(Password, user.Password))
// {
// error = "Wrong Password.";
// user = null;
// }
//}
2024-09-10 00:31:40 +08:00
}
2024-09-20 21:58:37 +08:00
context.SendPacket(new LoginDataPacket("Server AuthList 1", error, (user == null) ? (uint)0 : (uint)user.AccountId));
2024-09-12 03:23:56 +08:00
2024-09-22 00:08:44 +08:00
//Mystery packet
2024-09-12 09:37:33 +08:00
//var mystery = new PacketWriter();
//mystery.Write((uint)100);
//context.SendPacket(0x11, 0x49, 0, mystery.ToArray());
2024-09-10 00:31:40 +08:00
2024-09-22 11:14:48 +08:00
// SegaIDLogin response packet
2024-09-10 00:31:40 +08:00
if (user == null)
2024-09-12 03:23:56 +08:00
{
2024-09-10 00:31:40 +08:00
return;
2024-09-12 03:23:56 +08:00
}
2024-09-10 00:31:40 +08:00
2024-09-20 21:58:37 +08:00
context._account = user;
2024-09-10 00:31:40 +08:00
}
2024-09-10 01:13:20 +08:00
if (ServerApp.Config.motd != "")
2024-09-10 00:31:40 +08:00
{
2024-09-10 01:13:20 +08:00
context.SendPacket(new SystemMessagePacket(ServerApp.Config.motd, SystemMessagePacket.MessageType.AdminMessageInstant));
2024-09-10 00:31:40 +08:00
}
}
#endregion
}
2024-09-22 00:08:44 +08:00
public class NetInterface
{
/// <summary>
/// Interface status.
/// </summary>
public uint State { get; set; }
/// <summary>
/// Interface MAC address.
/// </summary>
public string Mac { get; set; } = new string('\0', 0x18); // 以字符串形式存储
public void ReadFromStream(PacketReader reader)
{
State = reader.ReadUInt32();
Mac = Encoding.ASCII.GetString(reader.ReadBytes(0x18)).TrimEnd('\0');
}
}
public enum Language
{
Japanese = 0,
English = 1
}
2024-09-10 00:31:40 +08:00
}