Shegotwet/Assets/GUPS/AntiCheat/Source/Protected/Primitive/ProtectedInt64.cs

355 lines
12 KiB
C#

// System
using System;
// Unity
using UnityEngine;
// GUPS - AntiCheat - Core
using GUPS.AntiCheat.Core.Protected;
// GUPS - AntiCheat
using GUPS.AntiCheat.Detector;
using GUPS.AntiCheat.Settings;
namespace GUPS.AntiCheat.Protected
{
/// <summary>
/// Represents a protected Int64, designed to enhance integrity and security by obfuscating its value and incorporating anti-cheat measures.
/// In most cases, this protected Int64 can be used as a drop-in replacement for the default Int64 type.
/// </summary>
[Serializable]
public struct ProtectedInt64 : IProtected, IDisposable, ISerializationCallbackReceiver
{
/// <summary>
/// A struct does not have a default constructor that is called when the structure is created. Therefore, the protected primitive must return
/// a default value if it does not have an assigned value.
/// </summary>
private bool isInitialized;
/// <summary>
/// Gets a value indicating whether the protected value has integrity, i.e., whether it has maintained its original state.
/// </summary>
private bool hasIntegrity;
/// <summary>
/// Gets a value indicating whether the protected value has integrity, i.e., whether it has maintained its original state.
/// </summary>
public bool HasIntegrity { get => hasIntegrity || !isInitialized; private set => hasIntegrity = value; }
/// <summary>
/// The encrypted true value.
/// </summary>
private Int64 obfuscatedValue;
/// <summary>
/// A secret key the true value gets encrypted with.
/// </summary>
private Int64 secret;
/// <summary>
/// A honeypot pretending to be the original value. If some user tries to change this value via a cheat/hack engine, you will get notified.
/// The protected value will keep its true value.
/// </summary>
[SerializeField]
private Int64 fakeValue;
/// <summary>
/// Unity serialization hook. Ensures the correct values will be serialized.
/// </summary>
public void OnBeforeSerialize()
{
this.fakeValue = Value;
}
/// <summary>
/// Unity deserialization hook. Ensures the correct values will be deserialized.
/// </summary>
public void OnAfterDeserialize()
{
this = this.fakeValue;
}
/// <summary>
/// Creates a new protected Int64 with the specified initial value.
/// </summary>
/// <param name="_Value">The initial value of the protected Int64.</param>
public ProtectedInt64(Int64 _Value = 0)
{
// Initialization
this.isInitialized = true;
this.obfuscatedValue = 0;
this.secret = GlobalSettings.RandomProvider.RandomInt32(1, Int32.MaxValue);
this.fakeValue = 0;
this.hasIntegrity = true;
// Obfuscate the value.
this.Obfuscate(_Value);
}
/// <summary>
/// Gets and sets the true unencrypted field value.
/// </summary>
public Int64 Value
{
get
{
if (!this.isInitialized)
{
return 0;
}
if (!this.CheckIntegrity())
{
AntiCheatMonitor.Instance.GetDetector<PrimitiveCheatingDetector>()?.OnNext(this);
}
return this.UnObfuscate();
}
set { this.Obfuscate(value); }
}
/// <summary>
/// Gets the true unencrypted field value.
/// </summary>
object IProtected.Value => this.Value;
/// <summary>
/// Obfuscates the specified value, encrypting it with the secret key.
/// </summary>
private void Obfuscate(Int64 _Value)
{
// Obfuscate the value.
this.obfuscatedValue = _Value ^ this.secret;
// Assign the fake value.
this.fakeValue = _Value;
}
/// <summary>
/// Unobfuscates the secured value and returns the true unencrypted value.
/// </summary>
/// <returns>The true unencrypted value.</returns>
private Int64 UnObfuscate()
{
// Get the unobfuscated value.
return (Int64)(this.obfuscatedValue ^ this.secret);
}
/// <summary>
/// Obfuscates the current value, generating a new random secret key.
/// </summary>
public void Obfuscate()
{
// Unobfuscate the secured value.
Int64 var_UnobfuscatedValue = this.UnObfuscate();
// Create a new random secret.
this.secret = GlobalSettings.RandomProvider.RandomInt32(1, Int32.MaxValue);
// Obfuscate the value.
this.Obfuscate(var_UnobfuscatedValue);
}
/// <summary>
/// Checks the integrity of the protected value, detecting if an attacher changed the honeypot fake value.
/// </summary>
/// <returns>True if the protected value has integrity; otherwise, false.</returns>
public bool CheckIntegrity()
{
// Unobfuscate the secured value.
Int64 var_UnobfuscatedValue = this.UnObfuscate();
// Check if an attacher changed the honeypot fake value.
if (this.fakeValue != var_UnobfuscatedValue)
{
this.HasIntegrity = false;
}
// Return the integrity status.
return this.HasIntegrity;
}
/// <summary>
/// Disposes of the secured and secret values.
/// </summary>
public void Dispose()
{
this.obfuscatedValue = 0;
this.secret = 0;
}
/// <summary>
/// Converts the protected Int64 to its string representation.
/// </summary>
/// <returns>The string representation of the true value.</returns>
public override string ToString()
{
return this.Value.ToString();
}
/// <summary>
/// Gets the hash code of the protected Int64's true value.
/// </summary>
/// <returns>The hash code of the true value.</returns>
public override int GetHashCode()
{
return (int)this.Value;
}
#region Implicit operator
/// <summary>
/// Implicitly converts an Int64 value to a protected Int64.
/// </summary>
/// <param name="_Value">The Int64 value to convert.</param>
/// <returns>The corresponding protected Int64.</returns>
public static implicit operator ProtectedInt64(Int64 _Value)
{
return new ProtectedInt64(_Value);
}
/// <summary>
/// Implicitly converts a protected Int64 to its Int64 value.
/// </summary>
/// <param name="_Value">The protected Int64 to convert.</param>
/// <returns>The Int64 value of the protected Int64.</returns>
public static implicit operator Int64(ProtectedInt64 _Value)
{
return _Value.Value;
}
#endregion
#region Calculation operator
/// <summary>
/// Adds two protected Int64 values.
/// </summary>
/// <param name="v1">The first protected Int64.</param>
/// <param name="v2">The second protected Int64.</param>
/// <returns>The result of the addition.</returns>
public static ProtectedInt64 operator +(ProtectedInt64 v1, ProtectedInt64 v2)
{
return new ProtectedInt64(v1.Value + v2.Value);
}
/// <summary>
/// Subtracts the second protected Int64 from the first.
/// </summary>
/// <param name="v1">The first protected Int64.</param>
/// <param name="v2">The second protected Int64.</param>
/// <returns>The result of the subtraction.</returns>
public static ProtectedInt64 operator -(ProtectedInt64 v1, ProtectedInt64 v2)
{
return new ProtectedInt64(v1.Value - v2.Value);
}
/// <summary>
/// Multiplies two protected Int64 values.
/// </summary>
/// <param name="v1">The first protected Int64.</param>
/// <param name="v2">The second protected Int64.</param>
/// <returns>The result of the multiplication.</returns>
public static ProtectedInt64 operator *(ProtectedInt64 v1, ProtectedInt64 v2)
{
return new ProtectedInt64(v1.Value * v2.Value);
}
/// <summary>
/// Divides the first protected Int64 by the second.
/// </summary>
/// <param name="v1">The first protected Int64.</param>
/// <param name="v2">The second protected Int64.</param>
/// <returns>The result of the division.</returns>
public static ProtectedInt64 operator /(ProtectedInt64 v1, ProtectedInt64 v2)
{
return new ProtectedInt64(v1.Value / v2.Value);
}
#endregion
#region Equality operator
/// <summary>
/// Checks if two protected Int64 values are equal based on their true values.
/// </summary>
/// <param name="v1">The first protected Int64.</param>
/// <param name="v2">The second protected Int64.</param>
/// <returns>True if the true values are equal; otherwise, false.</returns>
public static bool operator ==(ProtectedInt64 v1, ProtectedInt64 v2)
{
return v1.Value == v2.Value;
}
/// <summary>
/// Checks if two protected Int64 values are not equal based on their true values.
/// </summary>
/// <param name="v1">The first protected Int64.</param>
/// <param name="v2">The second protected Int64.</param>
/// <returns>True if the true values are not equal; otherwise, false.</returns>
public static bool operator !=(ProtectedInt64 v1, ProtectedInt64 v2)
{
return v1.Value != v2.Value;
}
/// <summary>
/// Checks if the protected Int64 is equal to another object based on their true values.
/// </summary>
/// <param name="obj">The object to compare with the protected Int64.</param>
/// <returns>True if the true values are equal; otherwise, false.</returns>
public override bool Equals(object obj)
{
if (obj is ProtectedInt64)
{
return this.Value == ((ProtectedInt64)obj).Value;
}
return this.Value.Equals(obj);
}
/// <summary>
/// Compares two protected Int64 values.
/// </summary>
/// <param name="v1">The first protected Int64.</param>
/// <param name="v2">The second protected Int64.</param>
/// <returns>True if the first value is less than the second; otherwise, false.</returns>
public static bool operator <(ProtectedInt64 v1, ProtectedInt64 v2)
{
return v1.Value < v2.Value;
}
/// <summary>
/// Checks if the first protected Int64 is less than or equal to the second.
/// </summary>
/// <param name="v1">The first protected Int64.</param>
/// <param name="v2">The second protected Int64.</param>
/// <returns>True if the first value is less than or equal to the second; otherwise, false.</returns>
public static bool operator <=(ProtectedInt64 v1, ProtectedInt64 v2)
{
return v1.Value <= v2.Value;
}
/// <summary>
/// Checks if the first protected Int64 is greater than the second.
/// </summary>
/// <param name="v1">The first protected Int64.</param>
/// <param name="v2">The second protected Int64.</param>
/// <returns>True if the first value is greater than the second; otherwise, false.</returns>
public static bool operator >(ProtectedInt64 v1, ProtectedInt64 v2)
{
return v1.Value > v2.Value;
}
/// <summary>
/// Checks if the first protected Int64 is greater than or equal to the second.
/// </summary>
/// <param name="v1">The first protected Int64.</param>
/// <param name="v2">The second protected Int64.</param>
/// <returns>True if the first value is greater than or equal to the second; otherwise, false.</returns>
public static bool operator >=(ProtectedInt64 v1, ProtectedInt64 v2)
{
return v1.Value >= v2.Value;
}
#endregion
}
}