/* * * (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 System; using System.Text; using ASC.Common.Logging; using ASC.Core; using ASC.Core.Users; using ASC.Web.Studio.Utility; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.WebUtilities; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.Options; using static ASC.Security.Cryptography.EmailValidationKeyProvider; namespace ASC.Security.Cryptography { public class EmailValidationKeyProvider { public enum ValidationResult { Ok, Invalid, Expired } private readonly ILog log; private static readonly DateTime _from = new DateTime(2010, 01, 01, 0, 0, 0, DateTimeKind.Utc); internal readonly TimeSpan ValidInterval; public TenantManager TenantManager { get; } public IConfiguration Configuration { get; } public EmailValidationKeyProvider(TenantManager tenantManager, IConfiguration configuration, IOptionsMonitor options) { TenantManager = tenantManager; Configuration = configuration; if (!TimeSpan.TryParse(configuration["email:validinterval"], out var validInterval)) { validInterval = TimeSpan.FromDays(7); } ValidInterval = validInterval; log = options.Get("ASC"); } public string GetEmailKey(string email) { return GetEmailKey(TenantManager.GetCurrentTenant().TenantId, email); } public string GetEmailKey(int tenantId, string email) { if (string.IsNullOrEmpty(email)) throw new ArgumentNullException("email"); email = FormatEmail(tenantId, email); var ms = (long)(DateTime.UtcNow - _from).TotalMilliseconds; var hash = GetMashineHashedData(BitConverter.GetBytes(ms), Encoding.ASCII.GetBytes(email)); return string.Format("{0}.{1}", ms, DoStringFromBytes(hash)); } private string FormatEmail(int tenantId, string email) { if (email == null) throw new ArgumentNullException("email"); try { return string.Format("{0}|{1}|{2}", email.ToLowerInvariant(), tenantId, Configuration["core:machinekey"]); } catch (Exception e) { log.Fatal("Failed to format tenant specific email", e); return email.ToLowerInvariant(); } } public ValidationResult ValidateEmailKey(string email, string key) { return ValidateEmailKey(email, key, TimeSpan.MaxValue); } public ValidationResult ValidateEmailKey(string email, string key, TimeSpan validInterval) { var result = ValidateEmailKeyInternal(email, key, validInterval); log.DebugFormat("validation result: {0}, source: {1} with key: {2} interval: {3} tenant: {4}", result, email, key, validInterval, TenantManager.GetCurrentTenant().TenantId); return result; } private ValidationResult ValidateEmailKeyInternal(string email, string key, TimeSpan validInterval) { if (string.IsNullOrEmpty(email)) throw new ArgumentNullException("email"); if (key == null) throw new ArgumentNullException("key"); email = FormatEmail(TenantManager.GetCurrentTenant().TenantId, email); var parts = key.Split(new[] { '.' }, StringSplitOptions.RemoveEmptyEntries); if (parts.Length != 2) return ValidationResult.Invalid; if (!long.TryParse(parts[0], out var ms)) return ValidationResult.Invalid; var hash = GetMashineHashedData(BitConverter.GetBytes(ms), Encoding.ASCII.GetBytes(email)); var key2 = DoStringFromBytes(hash); var key2_good = string.Compare(parts[1], key2, StringComparison.InvariantCultureIgnoreCase) == 0; if (!key2_good) return ValidationResult.Invalid; var ms_current = (long)(DateTime.UtcNow - _from).TotalMilliseconds; return validInterval >= TimeSpan.FromMilliseconds(ms_current - ms) ? ValidationResult.Ok : ValidationResult.Expired; } internal static string DoStringFromBytes(byte[] data) { var str = Convert.ToBase64String(data); str = str.Replace("=", "").Replace("+", "").Replace("/", "").Replace("\\", ""); return str.ToUpperInvariant(); } internal static byte[] GetMashineHashedData(byte[] salt, byte[] data) { var alldata = new byte[salt.Length + data.Length]; Array.Copy(data, alldata, data.Length); Array.Copy(salt, 0, alldata, data.Length, salt.Length); return Hasher.Hash(alldata, HashAlg.SHA256); } } public class EmailValidationKeyModel { public string Key { get; set; } public EmployeeType? EmplType { get; set; } public string Email { get; set; } public Guid? UiD { get; set; } public ConfirmType Type { get; set; } public int? P { get; set; } public ValidationResult Validate(EmailValidationKeyProvider provider, AuthContext authContext, TenantManager tenantManager, AuthManager authentication) { ValidationResult checkKeyResult; switch (Type) { case ConfirmType.EmpInvite: checkKeyResult = provider.ValidateEmailKey(Email + Type + EmplType, Key, provider.ValidInterval); break; case ConfirmType.LinkInvite: checkKeyResult = provider.ValidateEmailKey(Type.ToString() + EmplType.ToString(), Key, provider.ValidInterval); break; case ConfirmType.EmailChange: checkKeyResult = provider.ValidateEmailKey(Email + Type + authContext.CurrentAccount.ID, Key, provider.ValidInterval); break; case ConfirmType.PasswordChange: var hash = string.Empty; if (P == 1) { var tenantId = tenantManager.GetCurrentTenant().TenantId; hash = authentication.GetUserPasswordHash(tenantId, UiD.Value); } checkKeyResult = provider.ValidateEmailKey(Email + Type + (string.IsNullOrEmpty(hash) ? string.Empty : Hasher.Base64Hash(hash)) + UiD, Key, provider.ValidInterval); break; case ConfirmType.Activation: checkKeyResult = provider.ValidateEmailKey(Email + Type + UiD, Key, provider.ValidInterval); break; default: checkKeyResult = provider.ValidateEmailKey(Email + Type, Key, provider.ValidInterval); break; } return checkKeyResult; } public static EmailValidationKeyModel FromRequest(HttpRequest httpRequest) { var Request = QueryHelpers.ParseQuery(httpRequest.Headers["confirm"]); _ = Request.TryGetValue("type", out var type); _ = Enum.TryParse(type, out var confirmType); _ = Request.TryGetValue("key", out var key); _ = Request.TryGetValue("p", out var pkey); _ = int.TryParse(pkey, out var p); _ = Request.TryGetValue("emplType", out var emplType); _ = Enum.TryParse(emplType, out var employeeType); _ = Request.TryGetValue("email", out var _email); _ = Request.TryGetValue("uid", out var userIdKey); _ = Guid.TryParse(userIdKey, out var userId); return new EmailValidationKeyModel { Key = key, Type = confirmType, Email = _email, EmplType = employeeType, UiD = userId, P = p }; } public void Deconstruct(out string key, out string email, out EmployeeType? employeeType, out Guid? userId, out ConfirmType confirmType, out int? p) => (key, email, employeeType, userId, confirmType, p) = (Key, Email, EmplType, UiD, Type, P); } }