Files
server/util/Setup/Program.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

304 lines
10 KiB
C#
Raw Normal View History

using System.Globalization;
using System.Net.Http.Json;
2019-03-25 13:21:05 -04:00
using Bit.Migrator;
2017-08-07 16:31:00 -04:00
2017-09-08 11:45:20 -04:00
namespace Bit.Setup;
2022-08-29 16:06:55 -04:00
2017-08-07 16:31:00 -04:00
public class Program
{
private static Context _context;
2022-08-29 16:06:55 -04:00
2017-08-07 16:31:00 -04:00
public static void Main(string[] args)
{
2018-08-30 11:35:44 -04:00
CultureInfo.DefaultThreadCurrentCulture = new CultureInfo("en-US");
2017-08-07 16:31:00 -04:00
2018-08-30 11:35:44 -04:00
_context = new Context
2017-08-07 16:31:00 -04:00
{
2019-07-11 15:03:17 -04:00
Args = args
2022-08-29 16:06:55 -04:00
};
2019-07-11 15:03:17 -04:00
ParseParameters();
if (_context.Parameters.ContainsKey("q"))
2022-08-29 16:06:55 -04:00
{
2018-08-30 11:35:44 -04:00
_context.Quiet = _context.Parameters["q"] == "true" || _context.Parameters["q"] == "1";
2022-08-29 16:06:55 -04:00
}
if (_context.Parameters.ContainsKey("os"))
2022-08-29 16:06:55 -04:00
{
2018-08-30 11:35:44 -04:00
_context.HostOS = _context.Parameters["os"];
2022-08-29 16:06:55 -04:00
}
if (_context.Parameters.ContainsKey("corev"))
2022-08-29 16:06:55 -04:00
{
2018-08-30 11:35:44 -04:00
_context.CoreVersion = _context.Parameters["corev"];
2022-08-29 16:06:55 -04:00
}
if (_context.Parameters.ContainsKey("webv"))
2022-08-29 16:06:55 -04:00
{
_context.WebVersion = _context.Parameters["webv"];
2022-08-29 16:06:55 -04:00
}
if (_context.Parameters.ContainsKey("keyconnectorv"))
2022-08-29 16:06:55 -04:00
{
2018-08-30 11:35:44 -04:00
_context.KeyConnectorVersion = _context.Parameters["keyconnectorv"];
2022-08-29 14:53:16 -04:00
}
2018-08-30 11:35:44 -04:00
if (_context.Parameters.ContainsKey("stub"))
2022-08-29 16:06:55 -04:00
{
2019-03-15 09:28:39 -04:00
_context.Stub = _context.Parameters["stub"] == "true" ||
2018-08-30 11:35:44 -04:00
_context.Parameters["stub"] == "1";
2022-08-29 16:06:55 -04:00
}
2018-03-30 09:23:33 -04:00
Helpers.WriteLine(_context);
if (_context.Parameters.ContainsKey("install"))
2022-08-29 16:06:55 -04:00
{
Install();
2022-08-29 16:06:55 -04:00
}
else if (_context.Parameters.ContainsKey("update"))
2022-08-29 16:06:55 -04:00
{
Update();
2022-08-29 16:06:55 -04:00
}
else if (_context.Parameters.ContainsKey("printenv"))
2022-08-29 16:06:55 -04:00
{
2017-08-24 11:16:01 -04:00
PrintEnvironment();
2022-08-29 16:06:55 -04:00
}
else
{
2019-03-12 10:26:14 -04:00
Helpers.WriteLine(_context, "No top-level command detected. Exiting...");
2022-08-29 16:06:55 -04:00
}
}
2019-03-12 10:26:14 -04:00
private static void Install()
{
if (_context.Parameters.ContainsKey("letsencrypt"))
2017-08-24 11:16:01 -04:00
{
_context.Config.SslManagedLetsEncrypt =
_context.Parameters["letsencrypt"].ToLowerInvariant() == "y";
}
2019-03-12 10:26:14 -04:00
if (_context.Parameters.ContainsKey("domain"))
2022-08-29 16:06:55 -04:00
{
2019-03-12 10:26:14 -04:00
_context.Install.Domain = _context.Parameters["domain"].ToLowerInvariant();
}
if (_context.Parameters.ContainsKey("dbname"))
2022-08-29 16:06:55 -04:00
{
_context.Install.Database = _context.Parameters["dbname"];
}
2017-08-07 16:31:00 -04:00
if (_context.Stub)
2022-08-29 14:53:16 -04:00
{
_context.Install.InstallationId = Guid.Empty;
_context.Install.InstallationKey = "SECRET_INSTALLATION_KEY";
2022-08-29 16:06:55 -04:00
}
else if (!ValidateInstallation())
2022-08-29 16:06:55 -04:00
{
return;
}
2018-08-30 11:35:44 -04:00
var certBuilder = new CertBuilder(_context);
certBuilder.BuildForInstall();
2018-08-30 16:09:18 -04:00
2018-08-30 11:35:44 -04:00
// Set the URL
_context.Config.Url = string.Format("http{0}://{1}",
_context.Config.Ssl ? "s" : string.Empty, _context.Install.Domain);
2017-08-11 08:57:31 -04:00
var nginxBuilder = new NginxConfigBuilder(_context);
nginxBuilder.BuildForInstaller();
2018-08-30 11:35:44 -04:00
var environmentFileBuilder = new EnvironmentFileBuilder(_context);
2017-11-06 22:55:15 -05:00
environmentFileBuilder.BuildForInstaller();
2017-10-23 22:45:59 -04:00
2018-08-30 11:35:44 -04:00
var appIdBuilder = new AppIdBuilder(_context);
2017-10-23 22:45:59 -04:00
appIdBuilder.Build();
2018-08-30 11:35:44 -04:00
var dockerComposeBuilder = new DockerComposeBuilder(_context);
dockerComposeBuilder.BuildForInstaller();
_context.SaveConfiguration();
2018-08-31 09:16:01 -04:00
Console.WriteLine("\nInstallation complete");
Console.WriteLine("\nIf you need to make additional configuration changes, you can modify\n" +
"the settings in `{0}` and then run:\n{1}",
_context.HostOS == "win" ? ".\\bwdata\\config.yml" : "./bwdata/config.yml",
2019-03-25 16:24:16 -04:00
_context.HostOS == "win" ? "`.\\bitwarden.ps1 -rebuild` or `.\\bitwarden.ps1 -update`" :
2018-08-31 09:16:01 -04:00
"`./bitwarden.sh rebuild` or `./bitwarden.sh update`");
Console.WriteLine("\nNext steps, run:");
if (_context.HostOS == "win")
2022-08-29 16:06:55 -04:00
{
2019-03-25 16:24:16 -04:00
Console.WriteLine("`.\\bitwarden.ps1 -start`");
2022-08-29 16:06:55 -04:00
}
else
{
2018-08-31 09:16:01 -04:00
Console.WriteLine("`./bitwarden.sh start`");
2022-08-29 16:06:55 -04:00
}
Console.WriteLine(string.Empty);
2022-08-29 16:06:55 -04:00
}
2017-08-07 16:31:00 -04:00
private static void Update()
2022-08-29 16:06:55 -04:00
{
// This portion of code checks for multiple certs in the Identity.pfx PKCS12 bag. If found, it generates
// a new cert and bag to replace the old Identity.pfx. This fixes an issue that came up as a result of
// moving the project to .NET 5.
_context.Install.IdentityCertPassword = Helpers.GetValueFromEnvFile("global", "globalSettings__identityServer__certificatePassword");
var certCountString = Helpers.Exec("openssl pkcs12 -nokeys -info -in /bitwarden/identity/identity.pfx " +
$"-passin pass:{_context.Install.IdentityCertPassword} 2> /dev/null | grep -c \"\\-----BEGIN CERTIFICATE----\"", true);
2018-08-30 16:09:18 -04:00
if (int.TryParse(certCountString, out var certCount) && certCount > 1)
2022-08-29 16:06:55 -04:00
{
// Extract key from identity.pfx
2017-10-23 22:45:59 -04:00
Helpers.Exec("openssl pkcs12 -in /bitwarden/identity/identity.pfx -nocerts -nodes -out identity.key " +
2018-08-30 16:09:18 -04:00
$"-passin pass:{_context.Install.IdentityCertPassword} > /dev/null 2>&1");
// Extract certificate from identity.pfx
2018-08-30 16:09:18 -04:00
Helpers.Exec("openssl pkcs12 -in /bitwarden/identity/identity.pfx -clcerts -nokeys -out identity.crt " +
$"-passin pass:{_context.Install.IdentityCertPassword} > /dev/null 2>&1");
// Create new PKCS12 bag with certificate and key
Helpers.Exec("openssl pkcs12 -export -out /bitwarden/identity/identity.pfx -inkey identity.key " +
$"-in identity.crt -passout pass:{_context.Install.IdentityCertPassword} > /dev/null 2>&1");
}
if (_context.Parameters.ContainsKey("db"))
2022-08-29 14:53:16 -04:00
{
MigrateDatabase();
2022-08-29 16:06:55 -04:00
}
else
2022-08-29 16:06:55 -04:00
{
2017-10-23 22:45:59 -04:00
RebuildConfigs();
2018-08-31 09:16:01 -04:00
}
2022-08-29 14:53:16 -04:00
}
2018-08-30 11:35:44 -04:00
private static void PrintEnvironment()
2022-08-29 16:06:55 -04:00
{
2018-08-30 11:35:44 -04:00
_context.LoadConfiguration();
if (!_context.PrintToScreen())
2022-08-29 16:06:55 -04:00
{
2018-08-30 11:35:44 -04:00
return;
2022-08-29 16:06:55 -04:00
}
2018-08-30 11:35:44 -04:00
Console.WriteLine("\nBitwarden is up and running!");
2017-08-24 11:35:16 -04:00
Console.WriteLine("===================================================");
2018-08-30 11:35:44 -04:00
Console.WriteLine("\nvisit {0}", _context.Config.Url);
2017-11-08 20:54:39 -05:00
Console.Write("to update, run ");
2018-08-30 11:35:44 -04:00
if (_context.HostOS == "win")
2017-08-24 11:16:01 -04:00
{
2018-08-30 16:09:18 -04:00
Console.Write("`.\\bitwarden.ps1 -updateself` and then `.\\bitwarden.ps1 -update`");
2017-08-24 11:16:01 -04:00
}
else
{
2018-08-30 16:09:18 -04:00
Console.Write("`./bitwarden.sh updateself` and then `./bitwarden.sh update`");
2017-08-24 11:16:01 -04:00
}
2017-08-24 11:35:16 -04:00
Console.WriteLine("\n");
2022-08-29 16:06:55 -04:00
}
private static void MigrateDatabase(int attempt = 1)
2022-08-29 16:06:55 -04:00
{
var vaultConnectionString = Helpers.GetValueFromEnvFile("global",
"globalSettings__sqlServer__connectionString");
var migrator = new DbMigrator(vaultConnectionString, null);
migrator.MigrateMsSqlDatabaseWithRetries(false);
2022-08-29 16:06:55 -04:00
}
private static bool ValidateInstallation()
2022-08-29 16:06:55 -04:00
{
var installationId = string.Empty;
var installationKey = string.Empty;
2022-08-29 16:06:55 -04:00
if (_context.Parameters.ContainsKey("install-id"))
2022-08-29 16:06:55 -04:00
{
installationId = _context.Parameters["install-id"].ToLowerInvariant();
2022-08-29 16:06:55 -04:00
}
else
2022-08-29 14:53:16 -04:00
{
installationId = Helpers.ReadInput("Enter your installation id (get at https://bitwarden.com/host)");
2022-08-29 16:06:55 -04:00
}
if (!Guid.TryParse(installationId.Trim(), out var installationidGuid))
2022-08-29 16:06:55 -04:00
{
Console.WriteLine("Invalid installation id.");
return false;
}
if (_context.Parameters.ContainsKey("install-key"))
2022-08-29 16:06:55 -04:00
{
installationKey = _context.Parameters["install-key"];
2022-08-29 16:06:55 -04:00
}
else
2022-08-29 16:06:55 -04:00
{
installationKey = Helpers.ReadInput("Enter your installation key");
2017-08-19 09:33:14 -04:00
}
_context.Install.InstallationId = installationidGuid;
_context.Install.InstallationKey = installationKey;
2022-08-29 16:06:55 -04:00
try
{
2018-08-30 11:35:44 -04:00
var response = new HttpClient().GetAsync("https://api.bitwarden.com/installations/" +
_context.Install.InstallationId).GetAwaiter().GetResult();
2017-08-19 09:33:14 -04:00
2018-08-30 11:35:44 -04:00
if (!response.IsSuccessStatusCode)
2017-08-19 09:33:14 -04:00
{
2018-08-30 11:35:44 -04:00
if (response.StatusCode == System.Net.HttpStatusCode.NotFound)
2017-08-19 09:33:14 -04:00
{
Console.WriteLine("Invalid installation id.");
}
else
2017-08-19 09:33:14 -04:00
{
Console.WriteLine("Unable to validate installation id.");
}
return false;
}
2022-08-29 16:06:55 -04:00
2017-08-19 09:33:14 -04:00
var result = response.Content.ReadFromJsonAsync<InstallationValidationResponseModel>().GetAwaiter().GetResult();
if (!result.Enabled)
2017-08-19 09:33:14 -04:00
{
2018-02-27 14:16:19 -05:00
Console.WriteLine("Installation id has been disabled.");
2017-08-19 09:33:14 -04:00
return false;
}
2017-11-06 22:55:15 -05:00
2018-08-30 11:35:44 -04:00
return true;
2022-08-29 16:06:55 -04:00
}
2018-08-30 11:35:44 -04:00
catch
2022-08-29 14:53:16 -04:00
{
2018-08-30 11:35:44 -04:00
Console.WriteLine("Unable to validate installation id. Problem contacting Bitwarden server.");
return false;
2022-08-29 16:06:55 -04:00
}
}
2021-12-16 15:35:09 +01:00
private static void RebuildConfigs()
2022-08-29 16:06:55 -04:00
{
_context.LoadConfiguration();
2017-08-07 16:31:00 -04:00
2018-08-30 11:35:44 -04:00
var environmentFileBuilder = new EnvironmentFileBuilder(_context);
2017-10-23 22:45:59 -04:00
environmentFileBuilder.BuildForUpdater();
2017-08-07 16:31:00 -04:00
2018-08-30 11:35:44 -04:00
var certBuilder = new CertBuilder(_context);
2017-10-23 22:45:59 -04:00
certBuilder.BuildForUpdater();
2018-08-30 11:35:44 -04:00
var nginxBuilder = new NginxConfigBuilder(_context);
nginxBuilder.BuildForUpdater();
2018-08-30 11:35:44 -04:00
var appIdBuilder = new AppIdBuilder(_context);
appIdBuilder.Build();
2022-08-29 14:53:16 -04:00
2018-08-30 11:35:44 -04:00
var dockerComposeBuilder = new DockerComposeBuilder(_context);
dockerComposeBuilder.BuildForUpdater();
2022-08-29 16:06:55 -04:00
2018-08-30 11:35:44 -04:00
_context.SaveConfiguration();
Console.WriteLine(string.Empty);
2017-08-08 12:29:59 -04:00
}
2018-08-30 11:35:44 -04:00
private static void ParseParameters()
2022-08-29 16:06:55 -04:00
{
_context.Parameters = new Dictionary<string, string>();
for (var i = 0; i < _context.Args.Length; i = i + 2)
2017-08-07 16:31:00 -04:00
{
if (!_context.Args[i].StartsWith("-"))
2017-08-07 16:31:00 -04:00
{
continue;
}
2022-08-29 14:53:16 -04:00
_context.Parameters.Add(_context.Args[i].Substring(1), _context.Args[i + 1]);
}
2022-08-29 14:53:16 -04:00
}
2022-08-29 16:06:55 -04:00
class InstallationValidationResponseModel
2022-08-29 16:06:55 -04:00
{
public bool Enabled { get; init; }
2022-08-29 16:06:55 -04:00
}
2017-08-07 16:31:00 -04:00
}