230 lines
9.0 KiB
C#
230 lines
9.0 KiB
C#
// Copyright (C) 2024, The Duplicati Team
|
|
// https://duplicati.com, hello@duplicati.com
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
// copy of this software and associated documentation files (the "Software"),
|
|
// to deal in the Software without restriction, including without limitation
|
|
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
// and/or sell copies of the Software, and to permit persons to whom the
|
|
// Software is furnished to do so, subject to the following conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be included in
|
|
// all copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
// DEALINGS IN THE SOFTWARE.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Security.Cryptography.X509Certificates;
|
|
|
|
namespace Duplicati.Library.Modules.Builtin
|
|
{
|
|
public class CheckMonoSSL : Duplicati.Library.Interface.IGenericModule, Duplicati.Library.Interface.IWebModule
|
|
{
|
|
private static readonly string LOGTAG = Logging.Log.LogTagFromType<CheckMonoSSL>();
|
|
|
|
public CheckMonoSSL()
|
|
{
|
|
}
|
|
|
|
private int CheckStore(StoreName storename, StoreLocation storelocation)
|
|
{
|
|
X509Store store = null;
|
|
try
|
|
{
|
|
store = new X509Store(storename, storelocation);
|
|
store.Open(OpenFlags.ReadOnly | OpenFlags.OpenExistingOnly);
|
|
return store.Certificates.Count;
|
|
}
|
|
catch
|
|
{
|
|
}
|
|
finally
|
|
{
|
|
if (store != null)
|
|
try { store.Close(); }
|
|
catch { }
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
// Prevent inlining, so we can catch loader errors from the caller
|
|
[System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
|
|
private int CheckMonoCerts()
|
|
{
|
|
// The __MonoCS__ compiler directive is no longer supported.
|
|
// We would like to query the x509 store, but this will make it
|
|
// hard to compile the project on Windows.
|
|
// For this reason, we use reflection to extract the counts
|
|
|
|
// Code without reflection looks like:
|
|
|
|
//return
|
|
// Mono.Security.X509.X509StoreManager.LocalMachine.TrustedRoot.Certificates.Count +
|
|
// Mono.Security.X509.X509StoreManager.CurrentUser.TrustedRoot.Certificates.Count +
|
|
// Mono.Security.X509.X509StoreManager.TrustedRootCertificates.Count +
|
|
// 0;
|
|
|
|
System.Reflection.Assembly asm = null;
|
|
|
|
try { asm = System.Reflection.Assembly.Load("Mono.Security"); }
|
|
catch { }
|
|
|
|
var x509Store = asm?.GetType("Mono.Security.X509.X509StoreManager");
|
|
if (x509Store == null)
|
|
return 0;
|
|
|
|
var localMachine = x509Store.GetProperty("LocalMachine")?.GetValue(null);
|
|
var currentUser = x509Store.GetProperty("CurrentUser")?.GetValue(null);
|
|
var trustedRoot = x509Store.GetProperty("TrustedRootCertificates")?.GetValue(null);
|
|
|
|
var count = 0;
|
|
|
|
var tr = localMachine?.GetType().GetProperty("TrustedRoot")?.GetValue(localMachine);
|
|
var crt = tr?.GetType().GetProperty("Certificates").GetValue(tr);
|
|
var cnt = crt?.GetType().GetProperty("Count")?.GetValue(crt);
|
|
if (cnt is int)
|
|
count += (int)cnt;
|
|
|
|
tr = currentUser?.GetType().GetProperty("TrustedRoot")?.GetValue(currentUser);
|
|
crt = tr?.GetType().GetProperty("Certificates").GetValue(tr);
|
|
cnt = crt?.GetType().GetProperty("Count")?.GetValue(crt);
|
|
if (cnt is int)
|
|
count += (int)cnt;
|
|
|
|
|
|
cnt = trustedRoot?.GetType().GetProperty("Count")?.GetValue(trustedRoot);
|
|
if (cnt is int)
|
|
count += (int)cnt;
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
private int CheckForInstalledCerts()
|
|
{
|
|
var count =
|
|
CheckStore(StoreName.Root, StoreLocation.CurrentUser) +
|
|
CheckStore(StoreName.AuthRoot, StoreLocation.CurrentUser) +
|
|
CheckStore(StoreName.CertificateAuthority, StoreLocation.CurrentUser) +
|
|
CheckStore(StoreName.Root, StoreLocation.LocalMachine) +
|
|
CheckStore(StoreName.AuthRoot, StoreLocation.LocalMachine) +
|
|
CheckStore(StoreName.CertificateAuthority, StoreLocation.LocalMachine);
|
|
|
|
try { count += CheckMonoCerts(); }
|
|
catch { }
|
|
|
|
return count;
|
|
}
|
|
|
|
#region IGenericModule implementation
|
|
|
|
public string Key { get { return "check-mono-ssl"; } }
|
|
public string DisplayName { get { return Strings.CheckMonoSSL.Displayname; } }
|
|
public string Description { get { return Strings.CheckMonoSSL.Description; } }
|
|
public bool LoadAsDefault { get { return true; } }
|
|
public IList<Duplicati.Library.Interface.ICommandLineArgument> SupportedCommands { get { return null; } }
|
|
|
|
public void Configure(IDictionary<string, string> commandlineOptions)
|
|
{
|
|
//Ensure the setup is valid, could throw an exception
|
|
if (!commandlineOptions.ContainsKey("main-action") || !Library.Utility.Utility.IsMono)
|
|
return;
|
|
|
|
if (CheckForInstalledCerts() == 0)
|
|
{
|
|
// Do not output this warning, recent Mono packages seems to work
|
|
if (Library.Utility.Utility.MonoVersion < new Version(6, 0))
|
|
Duplicati.Library.Logging.Log.WriteWarningMessage(LOGTAG, "MissingCerts", null, Strings.CheckMonoSSL.ErrorMessage);
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region IWebModule implementation
|
|
|
|
private const string KEY_CONFIGTYPE = "mono-ssl-config";
|
|
private const ConfigType DEFAULT_CONFIG_TYPE = ConfigType.List;
|
|
|
|
private enum ConfigType
|
|
{
|
|
List,
|
|
Install,
|
|
Test
|
|
}
|
|
|
|
|
|
public IDictionary<string, string> Execute(IDictionary<string, string> options)
|
|
{
|
|
string k;
|
|
options.TryGetValue(KEY_CONFIGTYPE, out k);
|
|
|
|
ConfigType ct;
|
|
if (!Enum.TryParse<ConfigType>(k, true, out ct))
|
|
ct = DEFAULT_CONFIG_TYPE;
|
|
|
|
var d = new Dictionary<string, string>();
|
|
|
|
switch (ct)
|
|
{
|
|
case ConfigType.Install:
|
|
|
|
try
|
|
{
|
|
var path = System.IO.Path.Combine(System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().Location), "mozroots.exe");
|
|
var pi = new System.Diagnostics.ProcessStartInfo(path, "--import --sync --quiet")
|
|
{
|
|
UseShellExecute = false
|
|
};
|
|
var p = System.Diagnostics.Process.Start(pi);
|
|
p.WaitForExit((int)TimeSpan.FromMinutes(5).TotalMilliseconds);
|
|
}
|
|
catch(Exception ex)
|
|
{
|
|
d["error"] = ex.ToString();
|
|
}
|
|
|
|
d["count"] = CheckForInstalledCerts().ToString();
|
|
break;
|
|
|
|
case ConfigType.Test:
|
|
try
|
|
{
|
|
var req = System.Net.WebRequest.CreateHttp("https://updates.duplicati.com");
|
|
req.Method = "HEAD";
|
|
req.AllowAutoRedirect = false;
|
|
|
|
using (var resp = (System.Net.HttpWebResponse)req.GetResponse())
|
|
{
|
|
d["status"] = resp.StatusDescription;
|
|
d["status_code"] = ((int)resp.StatusCode).ToString();
|
|
}
|
|
}
|
|
catch(Exception ex)
|
|
{
|
|
d["error"] = ex.ToString();
|
|
}
|
|
break;
|
|
|
|
case ConfigType.List:
|
|
default:
|
|
d["count"] = CheckForInstalledCerts().ToString();
|
|
d["mono"] = Library.Utility.Utility.IsMono.ToString();
|
|
d["message"] = Strings.CheckMonoSSL.ErrorMessage;
|
|
break;
|
|
}
|
|
|
|
return d;
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|
|
|