File: KcpKeyFile.cs

package info (click to toggle)
keepass2 2.57%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 14,520 kB
  • sloc: cs: 120,930; xml: 6,271; cpp: 322; sh: 53; makefile: 42
file content (198 lines) | stat: -rw-r--r-- 5,451 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
/*
  KeePass Password Safe - The Open-Source Password Manager
  Copyright (C) 2003-2024 Dominik Reichl <dominik.reichl@t-online.de>

  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.Diagnostics;
using System.IO;
using System.Security;
using System.Text;

using KeePassLib.Cryptography;
using KeePassLib.Resources;
using KeePassLib.Security;
using KeePassLib.Serialization;
using KeePassLib.Utility;

namespace KeePassLib.Keys
{
	public sealed class KcpKeyFile : IUserKey
	{
		private readonly string m_strPath;
		private readonly ProtectedBinary m_pbKeyData;

		public string Path
		{
			get { return m_strPath; }
		}

		public ProtectedBinary KeyData
		{
			get { return m_pbKeyData; }
		}

		public KcpKeyFile(string strKeyFile) :
			this(IOConnectionInfo.FromPath(strKeyFile), false)
		{
		}

		public KcpKeyFile(string strKeyFile, bool bThrowIfDbFile) :
			this(IOConnectionInfo.FromPath(strKeyFile), bThrowIfDbFile)
		{
		}

		public KcpKeyFile(IOConnectionInfo iocKeyFile) :
			this(iocKeyFile, false)
		{
		}

		public KcpKeyFile(IOConnectionInfo iocKeyFile, bool bThrowIfDbFile)
		{
			if(iocKeyFile == null) throw new ArgumentNullException("iocKeyFile");

			byte[] pbFileData;
			using(Stream s = IOConnection.OpenRead(iocKeyFile))
			{
				pbFileData = MemUtil.Read(s);
			}
			if(pbFileData == null) throw new IOException();

			if(bThrowIfDbFile && (pbFileData.Length >= 8))
			{
				uint uSig1 = MemUtil.BytesToUInt32(MemUtil.Mid(pbFileData, 0, 4));
				uint uSig2 = MemUtil.BytesToUInt32(MemUtil.Mid(pbFileData, 4, 4));

				if(((uSig1 == KdbxFile.FileSignature1) &&
					(uSig2 == KdbxFile.FileSignature2)) ||
					((uSig1 == KdbxFile.FileSignaturePreRelease1) &&
					(uSig2 == KdbxFile.FileSignaturePreRelease2)) ||
					((uSig1 == KdbxFile.FileSignatureOld1) &&
					(uSig2 == KdbxFile.FileSignatureOld2)))
#if KeePassLibSD
					throw new Exception(KLRes.KeyFileDbSel);
#else
					throw new InvalidDataException(KLRes.KeyFileDbSel);
#endif
			}

			byte[] pbKey = LoadKeyFile(pbFileData);

			m_strPath = iocKeyFile.Path;
			m_pbKeyData = new ProtectedBinary(true, pbKey);

			MemUtil.ZeroByteArray(pbKey);
			MemUtil.ZeroByteArray(pbFileData);
		}

		private static byte[] LoadKeyFile(byte[] pbFileData)
		{
			if(pbFileData == null) throw new ArgumentNullException("pbFileData");

			byte[] pbKey = LoadKeyFileXml(pbFileData);
			if(pbKey != null) return pbKey;

			int cb = pbFileData.Length;
			if(cb == 32) return pbFileData;

			if(cb == 64)
			{
				pbKey = LoadKeyFileHex(pbFileData);
				if(pbKey != null) return pbKey;
			}

			return CryptoUtil.HashSha256(pbFileData);
		}

		private static byte[] LoadKeyFileXml(byte[] pbFileData)
		{
			KfxFile kf;
			try
			{
				using(MemoryStream ms = new MemoryStream(pbFileData, false))
				{
					kf = KfxFile.Load(ms);
				}
			}
			catch(Exception) { return null; }

			// We have a syntactically valid XML key file;
			// failing to verify the key should throw an exception
			return ((kf != null) ? kf.GetKey() : null);
		}

		private static byte[] LoadKeyFileHex(byte[] pbFileData)
		{
			if(pbFileData == null) { Debug.Assert(false); return null; }

			try
			{
				int cc = pbFileData.Length;
				if((cc & 1) != 0) { Debug.Assert(false); return null; }

				if(!StrUtil.IsHexString(pbFileData, true)) return null;

				string strHex = StrUtil.Utf8.GetString(pbFileData);
				return MemUtil.HexStringToByteArray(strHex);
			}
			catch(Exception) { Debug.Assert(false); }

			return null;
		}

		public static void Create(string strFilePath, byte[] pbAdditionalEntropy)
		{
			Create(strFilePath, pbAdditionalEntropy, 0);
		}

		internal static void Create(string strFilePath, byte[] pbAdditionalEntropy,
			ulong uVersion)
		{
			byte[] pbRandom = CryptoRandom.Instance.GetRandomBytes(32);
			if((pbRandom == null) || (pbRandom.Length != 32))
				throw new SecurityException();

			byte[] pbKey;
			if((pbAdditionalEntropy == null) || (pbAdditionalEntropy.Length == 0))
				pbKey = pbRandom;
			else
			{
				int cbAdd = pbAdditionalEntropy.Length;
				int cbRnd = pbRandom.Length;

				byte[] pbCmp = new byte[cbAdd + cbRnd];
				Array.Copy(pbAdditionalEntropy, 0, pbCmp, 0, cbAdd);
				Array.Copy(pbRandom, 0, pbCmp, cbAdd, cbRnd);

				pbKey = CryptoUtil.HashSha256(pbCmp);

				MemUtil.ZeroByteArray(pbCmp);
			}

			KfxFile kf = KfxFile.Create(uVersion, pbKey, null);

			IOConnectionInfo ioc = IOConnectionInfo.FromPath(strFilePath);
			using(Stream s = IOConnection.OpenWrite(ioc))
			{
				kf.Save(s);
			}

			MemUtil.ZeroByteArray(pbKey);
			MemUtil.ZeroByteArray(pbRandom);
		}
	}
}