2013-02-23 08:24:43 -05:00
|
|
|
/*
|
|
|
|
KeePass Password Safe - The Open-Source Password Manager
|
|
|
|
Copyright (C) 2003-2012 Dominik Reichl <dominik.reichl@t-online.de>
|
2013-02-23 11:43:42 -05:00
|
|
|
|
|
|
|
Modified to be used with Mono for Android. Changes Copyright (C) 2013 Philipp Crocoll
|
2013-02-23 08:24:43 -05:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
using System.Diagnostics;
|
|
|
|
|
|
|
|
using KeePassLib.Utility;
|
2013-08-02 10:48:22 -04:00
|
|
|
using keepass2android;
|
2013-02-23 08:24:43 -05:00
|
|
|
|
|
|
|
namespace KeePassLib.Native
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Interface to native library (library containing fast versions of
|
|
|
|
/// several cryptographic functions).
|
|
|
|
/// </summary>
|
|
|
|
public static class NativeLib
|
|
|
|
{
|
|
|
|
private static bool m_bAllowNative = true;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// If this property is set to <c>true</c>, the native library is used.
|
|
|
|
/// If it is <c>false</c>, all calls to functions in this class will fail.
|
|
|
|
/// </summary>
|
|
|
|
public static bool AllowNative
|
|
|
|
{
|
|
|
|
get { return m_bAllowNative; }
|
|
|
|
set { m_bAllowNative = value; }
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Determine if the native library is installed.
|
|
|
|
/// </summary>
|
|
|
|
/// <returns>Returns <c>true</c>, if the native library is installed.</returns>
|
|
|
|
public static bool IsLibraryInstalled()
|
|
|
|
{
|
|
|
|
byte[] pDummy0 = new byte[32];
|
|
|
|
byte[] pDummy1 = new byte[32];
|
|
|
|
|
|
|
|
// Save the native state
|
|
|
|
bool bCachedNativeState = m_bAllowNative;
|
|
|
|
|
|
|
|
// Temporarily allow native functions and try to load the library
|
|
|
|
m_bAllowNative = true;
|
|
|
|
bool bResult = TransformKey256(pDummy0, pDummy1, 16);
|
|
|
|
|
|
|
|
// Pop native state and return result
|
|
|
|
m_bAllowNative = bCachedNativeState;
|
|
|
|
return bResult;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static bool? m_bIsUnix = null;
|
|
|
|
public static bool IsUnix()
|
|
|
|
{
|
|
|
|
if(m_bIsUnix.HasValue) return m_bIsUnix.Value;
|
|
|
|
|
|
|
|
PlatformID p = GetPlatformID();
|
|
|
|
|
|
|
|
// Mono defines Unix as 128 in early .NET versions
|
|
|
|
#if !KeePassLibSD
|
|
|
|
m_bIsUnix = ((p == PlatformID.Unix) || (p == PlatformID.MacOSX) ||
|
|
|
|
((int)p == 128));
|
|
|
|
#else
|
|
|
|
m_bIsUnix = (((int)p == 4) || ((int)p == 6) || ((int)p == 128));
|
|
|
|
#endif
|
|
|
|
return m_bIsUnix.Value;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static PlatformID? m_platID = null;
|
|
|
|
public static PlatformID GetPlatformID()
|
|
|
|
{
|
|
|
|
if(m_platID.HasValue) return m_platID.Value;
|
|
|
|
|
|
|
|
m_platID = Environment.OSVersion.Platform;
|
|
|
|
|
|
|
|
#if !KeePassLibSD
|
2013-02-23 11:43:42 -05:00
|
|
|
/*// Mono returns PlatformID.Unix on Mac OS X, workaround this
|
|
|
|
//fails on Anroid
|
2013-02-23 08:24:43 -05:00
|
|
|
if(m_platID.Value == PlatformID.Unix)
|
|
|
|
{
|
|
|
|
if((RunConsoleApp("uname", null) ?? string.Empty).Trim().Equals(
|
|
|
|
"Darwin", StrUtil.CaseIgnoreCmp))
|
|
|
|
m_platID = PlatformID.MacOSX;
|
2013-02-23 11:43:42 -05:00
|
|
|
}*/
|
2013-02-23 08:24:43 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
return m_platID.Value;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if !KeePassLibSD
|
|
|
|
public static string RunConsoleApp(string strAppPath, string strParams)
|
|
|
|
{
|
|
|
|
return RunConsoleApp(strAppPath, strParams, null);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static string RunConsoleApp(string strAppPath, string strParams,
|
|
|
|
string strStdInput)
|
|
|
|
{
|
|
|
|
if(strAppPath == null) throw new ArgumentNullException("strAppPath");
|
|
|
|
if(strAppPath.Length == 0) throw new ArgumentException("strAppPath");
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
ProcessStartInfo psi = new ProcessStartInfo();
|
|
|
|
|
|
|
|
psi.CreateNoWindow = true;
|
|
|
|
psi.FileName = strAppPath;
|
|
|
|
psi.WindowStyle = ProcessWindowStyle.Hidden;
|
|
|
|
psi.UseShellExecute = false;
|
|
|
|
psi.RedirectStandardOutput = true;
|
|
|
|
|
|
|
|
if(strStdInput != null) psi.RedirectStandardInput = true;
|
|
|
|
|
|
|
|
if(!string.IsNullOrEmpty(strParams)) psi.Arguments = strParams;
|
|
|
|
|
|
|
|
Process p = Process.Start(psi);
|
|
|
|
|
|
|
|
if(strStdInput != null)
|
|
|
|
{
|
|
|
|
p.StandardInput.Write(strStdInput);
|
|
|
|
p.StandardInput.Close();
|
|
|
|
}
|
|
|
|
|
|
|
|
string strOutput = p.StandardOutput.ReadToEnd();
|
|
|
|
p.WaitForExit();
|
|
|
|
|
|
|
|
return strOutput;
|
|
|
|
}
|
|
|
|
catch(Exception) { Debug.Assert(false); }
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Transform a key.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="pBuf256">Source and destination buffer.</param>
|
|
|
|
/// <param name="pKey256">Key to use in the transformation.</param>
|
|
|
|
/// <param name="uRounds">Number of transformation rounds.</param>
|
|
|
|
/// <returns>Returns <c>true</c>, if the key was transformed successfully.</returns>
|
|
|
|
public static bool TransformKey256(byte[] pBuf256, byte[] pKey256,
|
|
|
|
ulong uRounds)
|
|
|
|
{
|
|
|
|
if(m_bAllowNative == false) return false;
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
2013-03-30 18:05:49 -04:00
|
|
|
Com.Keepassdroid.Crypto.Finalkey.NativeFinalKey key = new Com.Keepassdroid.Crypto.Finalkey.NativeFinalKey();
|
2013-02-23 08:24:43 -05:00
|
|
|
|
2013-03-30 18:05:49 -04:00
|
|
|
byte[] newKey = key.TransformMasterKey(pKey256, pBuf256, (int)uRounds);
|
|
|
|
Array.Copy(newKey, pBuf256, newKey.Length);
|
|
|
|
}
|
2013-08-02 10:48:22 -04:00
|
|
|
catch(Exception e)
|
|
|
|
{
|
|
|
|
Kp2aLog.Log(e.Message);
|
2013-03-30 18:05:49 -04:00
|
|
|
return false;
|
|
|
|
}
|
2013-02-23 08:24:43 -05:00
|
|
|
|
2013-03-30 18:05:49 -04:00
|
|
|
return true;
|
2013-02-23 08:24:43 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Benchmark key transformation.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="uTimeMs">Number of seconds to perform the benchmark.</param>
|
|
|
|
/// <param name="puRounds">Number of transformations done.</param>
|
|
|
|
/// <returns>Returns <c>true</c>, if the benchmark was successful.</returns>
|
|
|
|
public static bool TransformKeyBenchmark256(uint uTimeMs, out ulong puRounds)
|
|
|
|
{
|
|
|
|
puRounds = 0;
|
|
|
|
|
|
|
|
if(m_bAllowNative == false) return false;
|
|
|
|
|
|
|
|
try { puRounds = NativeMethods.TransformKeyBenchmark(uTimeMs); }
|
|
|
|
catch(Exception) { return false; }
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static KeyValuePair<IntPtr, IntPtr> PrepareArrays256(byte[] pBuf256,
|
|
|
|
byte[] pKey256)
|
|
|
|
{
|
|
|
|
Debug.Assert((pBuf256 != null) && (pBuf256.Length == 32));
|
|
|
|
if(pBuf256 == null) throw new ArgumentNullException("pBuf256");
|
|
|
|
if(pBuf256.Length != 32) throw new ArgumentException();
|
|
|
|
|
|
|
|
Debug.Assert((pKey256 != null) && (pKey256.Length == 32));
|
|
|
|
if(pKey256 == null) throw new ArgumentNullException("pKey256");
|
|
|
|
if(pKey256.Length != 32) throw new ArgumentException();
|
|
|
|
|
|
|
|
IntPtr hBuf = Marshal.AllocHGlobal(pBuf256.Length);
|
|
|
|
Marshal.Copy(pBuf256, 0, hBuf, pBuf256.Length);
|
|
|
|
|
|
|
|
IntPtr hKey = Marshal.AllocHGlobal(pKey256.Length);
|
|
|
|
Marshal.Copy(pKey256, 0, hKey, pKey256.Length);
|
|
|
|
|
|
|
|
return new KeyValuePair<IntPtr, IntPtr>(hBuf, hKey);
|
|
|
|
}
|
|
|
|
|
|
|
|
private static void GetBuffers256(KeyValuePair<IntPtr, IntPtr> kvpSource,
|
|
|
|
byte[] pbDestBuf, byte[] pbDestKey)
|
|
|
|
{
|
|
|
|
if(kvpSource.Key != IntPtr.Zero)
|
|
|
|
Marshal.Copy(kvpSource.Key, pbDestBuf, 0, pbDestBuf.Length);
|
|
|
|
|
|
|
|
if(kvpSource.Value != IntPtr.Zero)
|
|
|
|
Marshal.Copy(kvpSource.Value, pbDestKey, 0, pbDestKey.Length);
|
|
|
|
}
|
|
|
|
|
|
|
|
private static void FreeArrays(KeyValuePair<IntPtr, IntPtr> kvpPointers)
|
|
|
|
{
|
|
|
|
if(kvpPointers.Key != IntPtr.Zero)
|
|
|
|
Marshal.FreeHGlobal(kvpPointers.Key);
|
|
|
|
|
|
|
|
if(kvpPointers.Value != IntPtr.Zero)
|
|
|
|
Marshal.FreeHGlobal(kvpPointers.Value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|