DocSpace-buildtools/web/ASC.Web.Core/Tfa/TfaManager.cs

190 lines
7.5 KiB
C#

/*
*
* (c) Copyright Ascensio System Limited 2010-2018
*
* This program is freeware. You can redistribute it and/or modify it under the terms of the GNU
* General Public License (GPL) version 3 as published by the Free Software Foundation (https://www.gnu.org/copyleft/gpl.html).
* In accordance with Section 7(a) of the GNU GPL its Section 15 shall be amended to the effect that
* Ascensio System SIA expressly excludes the warranty of non-infringement of any third-party rights.
*
* THIS PROGRAM IS DISTRIBUTED WITHOUT ANY WARRANTY; WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR
* FITNESS FOR A PARTICULAR PURPOSE. For more details, see GNU GPL at https://www.gnu.org/copyleft/gpl.html
*
* You can contact Ascensio System SIA by email at sales@onlyoffice.com
*
* The interactive user interfaces in modified source and object code versions of ONLYOFFICE must display
* Appropriate Legal Notices, as required under Section 5 of the GNU GPL version 3.
*
* Pursuant to Section 7 § 3(b) of the GNU GPL you must retain the original ONLYOFFICE logo which contains
* relevant author attributions when distributing the software. If the display of the logo in its graphic
* form is not reasonably feasible for technical reasons, you must include the words "Powered by ONLYOFFICE"
* in every copy of the program you distribute.
* Pursuant to Section 7 § 3(e) we decline to grant you any rights under trademark law for use of our trademarks.
*
*/
using Constants = ASC.Core.Users.Constants;
namespace ASC.Web.Studio.Core.TFA
{
[Serializable]
public class BackupCode
{
public bool IsUsed { get; set; }
public string Code { get; set; }
public string GetEncryptedCode(InstanceCrypto InstanceCrypto, Signature Signature)
{
try
{
return InstanceCrypto.Decrypt(Code);
}
catch
{
//support old scheme stored in the DB
return Signature.Read<string>(Code);
}
}
public void SetEncryptedCode(InstanceCrypto InstanceCrypto, string code)
{
Code = InstanceCrypto.Encrypt(code);
}
}
[Scope]
public class TfaManager
{
private static readonly TwoFactorAuthenticator Tfa = new TwoFactorAuthenticator();
private ICache Cache { get; set; }
private SettingsManager SettingsManager { get; }
private SecurityContext SecurityContext { get; }
private CookiesManager CookiesManager { get; }
private SetupInfo SetupInfo { get; }
private Signature Signature { get; }
private InstanceCrypto InstanceCrypto { get; }
public MachinePseudoKeys MachinePseudoKeys { get; }
public TfaManager(
SettingsManager settingsManager,
SecurityContext securityContext,
CookiesManager cookiesManager,
SetupInfo setupInfo,
Signature signature,
InstanceCrypto instanceCrypto,
MachinePseudoKeys machinePseudoKeys,
ICache cache)
{
Cache = cache;
SettingsManager = settingsManager;
SecurityContext = securityContext;
CookiesManager = cookiesManager;
SetupInfo = setupInfo;
Signature = signature;
InstanceCrypto = instanceCrypto;
MachinePseudoKeys = machinePseudoKeys;
}
public SetupCode GenerateSetupCode(UserInfo user)
{
return Tfa.GenerateSetupCode(SetupInfo.TfaAppSender, user.Email, GenerateAccessToken(user), false, 4);
}
public bool ValidateAuthCode(UserInfo user, string code, bool checkBackup = true)
{
if (!TfaAppAuthSettings.IsVisibleSettings
|| !SettingsManager.Load<TfaAppAuthSettings>().EnableSetting)
{
return false;
}
if (user == null || Equals(user, Constants.LostUser)) throw new Exception(Resource.ErrorUserNotFound);
code = (code ?? "").Trim();
if (string.IsNullOrEmpty(code)) throw new Exception(Resource.ActivateTfaAppEmptyCode);
int.TryParse(Cache.Get<string>("tfa/" + user.ID), out var counter);
if (++counter > SetupInfo.LoginThreshold)
{
throw new BruteForceCredentialException(Resource.TfaTooMuchError);
}
Cache.Insert("tfa/" + user.ID, counter.ToString(CultureInfo.InvariantCulture), DateTime.UtcNow.Add(TimeSpan.FromMinutes(1)));
if (!Tfa.ValidateTwoFactorPIN(GenerateAccessToken(user), code))
{
if (checkBackup && TfaAppUserSettings.BackupCodesForUser(SettingsManager, user.ID).Any(x => x.GetEncryptedCode(InstanceCrypto, Signature) == code && !x.IsUsed))
{
TfaAppUserSettings.DisableCodeForUser(SettingsManager, InstanceCrypto, Signature, user.ID, code);
}
else
{
throw new ArgumentException(Resource.TfaAppAuthMessageError);
}
}
Cache.Insert("tfa/" + user.ID, (--counter).ToString(CultureInfo.InvariantCulture), DateTime.UtcNow.Add(TimeSpan.FromMinutes(1)));
if (!SecurityContext.IsAuthenticated)
{
var cookiesKey = SecurityContext.AuthenticateMe(user.ID);
CookiesManager.SetCookies(CookiesType.AuthKey, cookiesKey);
}
if (!TfaAppUserSettings.EnableForUser(SettingsManager, user.ID))
{
GenerateBackupCodes();
return true;
}
return false;
}
public IEnumerable<BackupCode> GenerateBackupCodes()
{
var count = SetupInfo.TfaAppBackupCodeCount;
var length = SetupInfo.TfaAppBackupCodeLength;
const string alphabet = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-_";
var data = new byte[length];
var list = new List<BackupCode>();
for (var i = 0; i < count; i++)
{
data = RandomNumberGenerator.GetBytes(length);
var result = new StringBuilder(length);
foreach (var b in data)
{
result.Append(alphabet[b % (alphabet.Length)]);
}
var code = new BackupCode();
code.SetEncryptedCode(InstanceCrypto, result.ToString());
list.Add(code);
}
var settings = SettingsManager.LoadForCurrentUser<TfaAppUserSettings>();
settings.CodesSetting = list;
SettingsManager.SaveForCurrentUser(settings);
return list;
}
private string GenerateAccessToken(UserInfo user)
{
var userSalt = TfaAppUserSettings.GetSalt(SettingsManager, user.ID);
//from Signature.Create
var machineSalt = Encoding.UTF8.GetString(MachinePseudoKeys.GetMachineConstant());
var token = Convert.ToBase64String(SHA256.Create().ComputeHash(Encoding.UTF8.GetBytes(userSalt + machineSalt)));
var encodedToken = WebEncoders.Base64UrlEncode(Encoding.UTF8.GetBytes(token));
return encodedToken.Substring(0, 10);
}
}
}