VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/doc/html/Twofish.html
diff options
context:
space:
mode:
authorMounir IDRASSI <mounir.idrassi@idrix.fr>2019-12-05 13:19:06 +0100
committerMounir IDRASSI <mounir.idrassi@idrix.fr>2019-12-05 13:35:18 +0100
commit27d1f404f1dd187e56cbd9fa9b7d56da2fa55eb3 (patch)
tree7f6c03f3a23cb4bc3151f46860f77a7dfb653e01 /doc/html/Twofish.html
parentade8e3f8cbfd1143fcd2e4bfbd6c387b8b64f732 (diff)
downloadVeraCrypt-27d1f404f1dd187e56cbd9fa9b7d56da2fa55eb3.tar.gz
VeraCrypt-27d1f404f1dd187e56cbd9fa9b7d56da2fa55eb3.zip
Windows: Enhancement to the fix for CVE-2019-19501
Diffstat (limited to 'doc/html/Twofish.html')
0 files changed, 0 insertions, 0 deletions
3 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
/*
 Derived from source code of TrueCrypt 7.1a, which is
 Copyright (c) 2008-2012 TrueCrypt Developers Association and which is governed
 by the TrueCrypt License 3.0.

 Modifications and additions to the original source code (contained in this file)
 and all other portions of this file are Copyright (c) 2013-2016 IDRIX
 and are governed by the Apache License 2.0 the full text of which is
 contained in the file License.txt included in VeraCrypt binary and source
 code distribution packages.
*/

#include "System.h"
#include <wx/stdpaths.h>
#include "Main.h"
#include "Application.h"
#include "CommandLineInterface.h"
#ifndef TC_NO_GUI
#include "GraphicUserInterface.h"
#endif
#include "TextUserInterface.h"

namespace VeraCrypt
{
	namespace
	{
		void EnsureEndsWithPathSeparator( wxString &s )
		{
			const wxUniChar pathSeparator = wxFileName::GetPathSeparator();
			if (s[s.size() - 1] != pathSeparator)
				s.append(pathSeparator);
		}

		wxString *GetXdgConfigPath ()
		{
			const wxChar *xdgConfig = wxGetenv(wxT("XDG_CONFIG_HOME"));
			wxString *configDir;

			if (!wxIsEmpty(xdgConfig))
			{
				configDir = new wxString (xdgConfig);
				//wcerr << L"XDG_CONFIG_HOME=" << *configDir << endl;
				EnsureEndsWithPathSeparator(*configDir);
				configDir->append(Application::GetName());
			}
			else
			{
				#if !defined(TC_UNIX) || defined(TC_MACOSX) // Windows, OS X:
					configDir =
						new wxString (wxStandardPaths::Get().GetUserDataDir());
				#else // Linux, FreeBSD, Solaris:
					configDir = new wxString (wxFileName::GetHomeDir());
					configDir->append(wxT("/.config/"));
					configDir->append(Application::GetName());

					if (!wxDirExists(*configDir))
					{
						wxString legacyConfigDir = wxStandardPaths::Get().GetUserDataDir();
						//wcerr << L"Legacy config dir: " << legacyConfigDir << endl;
						if (wxDirExists(legacyConfigDir))
						{
							configDir->swap(legacyConfigDir);
						}
					}
				#endif
			}

			//wcerr << L"Config dir: " << *configDir << endl;
			return configDir;
		}
	}

	wxApp* Application::CreateConsoleApp ()
	{
		mUserInterface = new TextUserInterface;
		mUserInterfaceType = UserInterfaceType::Text;
		return mUserInterface;
	}

#ifndef TC_NO_GUI
	wxApp* Application::CreateGuiApp ()
	{
		mUserInterface = new GraphicUserInterface;
		mUserInterfaceType = UserInterfaceType::Graphic;
		return mUserInterface;
	}
#endif

	FilePath Application::GetConfigFilePath (const wxString &configFileName, bool createConfigDir)
	{
		static wxScopedPtr<const wxString> configDirC;
		static bool configDirExists = false;

		if (!configDirExists)
		{
			if (!configDirC)
			{
				wxString *configDir;

				if (Core->IsInPortableMode())
				{
					configDir = new wxString (
						wxPathOnly(wxStandardPaths::Get().GetExecutablePath()));
				}
				else
				{
					configDir = GetXdgConfigPath();
				}

				EnsureEndsWithPathSeparator(*configDir);
				configDirC.reset(configDir);
			}

			if (createConfigDir)
			{
				if (!wxDirExists(*configDirC))
				{
					//wcerr << L"Creating config dir »" << *configDirC << L"« ..." << endl;
					throw_sys_sub_if(
						!wxMkdir(*configDirC, wxS_IRUSR | wxS_IWUSR | wxS_IXUSR),
						configDirC->ToStdWstring());
				}
				configDirExists = true;
				//wcerr << L"Config directory »" << *configDirC << L"« exists now" << endl;
			}
		}

		return FilePath((*configDirC + configFileName).ToStdWstring());
	}

	DirectoryPath Application::GetExecutableDirectory ()
	{
		return wstring (wxFileName (wxStandardPaths::Get().GetExecutablePath()).GetPath());
	}

	FilePath Application::GetExecutablePath ()
	{
		return wstring (wxStandardPaths::Get().GetExecutablePath());
	}

	void Application::Initialize (UserInterfaceType::Enum type)
	{
		switch (type)
		{
		case UserInterfaceType::Text:
			{
				wxAppInitializer wxTheAppInitializer((wxAppInitializerFunction) CreateConsoleApp);
				break;
			}

#ifndef TC_NO_GUI
		case UserInterfaceType::Graphic:
			{
				wxAppInitializer wxTheAppInitializer((wxAppInitializerFunction) CreateGuiApp);
				break;
			}
#endif

		default:
			throw ParameterIncorrect (SRC_POS);
		}
	}

	int Application::ExitCode = 0;
	UserInterface *Application::mUserInterface = nullptr;
	UserInterfaceType::Enum Application::mUserInterfaceType;
}