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 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291
|
/*
KeePass Password Safe - The Open-Source Password Manager
Copyright (C) 2003-2021 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.Collections.Generic;
using System.Text;
using System.Windows.Forms;
using System.Diagnostics;
using KeePass.Forms;
using KeePass.UI;
using KeePassLib;
using KeePassLib.Security;
using KeePassLib.Utility;
namespace KeePass.Util.Spr
{
/// <summary>
/// String placeholders and field reference replacement engine.
/// </summary>
public static partial class SprEngine
{
// Legacy, for backward compatibility only; see PickChars
private static string ReplacePickPw(string strText, SprContext ctx,
uint uRecursionLevel)
{
if(ctx.Entry == null) { Debug.Assert(false); return strText; }
string str = strText;
while(true)
{
const string strStart = @"{PICKPASSWORDCHARS";
int iStart = str.IndexOf(strStart, StrUtil.CaseIgnoreCmp);
if(iStart < 0) break;
int iEnd = str.IndexOf('}', iStart);
if(iEnd < 0) break;
string strPlaceholder = str.Substring(iStart, iEnd - iStart + 1);
string strParam = str.Substring(iStart + strStart.Length,
iEnd - (iStart + strStart.Length));
string[] vParams = strParam.Split(new char[] { ':' });
uint uCharCount = 0;
if(vParams.Length >= 2) uint.TryParse(vParams[1], out uCharCount);
str = ReplacePickPwPlaceholder(str, strPlaceholder, uCharCount,
ctx, uRecursionLevel);
}
return str;
}
private static string ReplacePickPwPlaceholder(string str,
string strPlaceholder, uint uCharCount, SprContext ctx,
uint uRecursionLevel)
{
if(str.IndexOf(strPlaceholder, StrUtil.CaseIgnoreCmp) < 0) return str;
ProtectedString ps = ctx.Entry.Strings.Get(PwDefs.PasswordField);
if(ps != null)
{
string strPassword = ps.ReadString();
string strPick = SprEngine.CompileInternal(strPassword,
ctx.WithoutContentTransformations(), uRecursionLevel + 1);
if(!string.IsNullOrEmpty(strPick))
{
ProtectedString psPick = new ProtectedString(false, strPick);
string strPicked = (CharPickerForm.ShowAndRestore(psPick,
true, true, uCharCount, null) ?? string.Empty);
str = StrUtil.ReplaceCaseInsensitive(str, strPlaceholder,
SprEngine.TransformContent(strPicked, ctx));
}
}
return StrUtil.ReplaceCaseInsensitive(str, strPlaceholder, string.Empty);
}
private static string ReplacePickChars(string strText, SprContext ctx,
uint uRecursionLevel)
{
if(ctx.Entry == null) return strText; // No assert
string str = strText;
Dictionary<string, string> dPicked = new Dictionary<string, string>();
while(true)
{
const string strStart = @"{PICKCHARS";
int iStart = str.IndexOf(strStart, StrUtil.CaseIgnoreCmp);
if(iStart < 0) break;
int iEnd = str.IndexOf('}', iStart);
if(iEnd < 0) break;
string strPlaceholder = str.Substring(iStart, iEnd - iStart + 1);
string strParam = str.Substring(iStart + strStart.Length,
iEnd - (iStart + strStart.Length));
string strRep = string.Empty;
bool bEncode = true;
if(strParam.Length == 0)
strRep = ShowCharPickDlg(ctx.Entry.Strings.ReadSafe(
PwDefs.PasswordField), 0, null, ctx, uRecursionLevel);
else if(strParam.StartsWith(":"))
{
string strParams = strParam.Substring(1);
string[] vParams = strParams.Split(new char[] { ':' },
StringSplitOptions.None);
string strField = string.Empty;
if(vParams.Length >= 1) strField = (vParams[0] ?? string.Empty).Trim();
if(strField.Length == 0) strField = PwDefs.PasswordField;
string strOptions = string.Empty;
if(vParams.Length >= 2) strOptions = (vParams[1] ?? string.Empty);
Dictionary<string, string> dOptions = SplitParams(strOptions);
string strID = GetParam(dOptions, "id", string.Empty).ToLower();
uint uCharCount = 0;
if(dOptions.ContainsKey("c"))
uint.TryParse(dOptions["c"], out uCharCount);
if(dOptions.ContainsKey("count"))
uint.TryParse(dOptions["count"], out uCharCount);
bool? bInitHide = null;
if(dOptions.ContainsKey("hide"))
bInitHide = StrUtil.StringToBool(dOptions["hide"]);
string strContent = ctx.Entry.Strings.ReadSafe(strField);
if(strContent.Length == 0) { } // Leave strRep empty
else if((strID.Length > 0) && dPicked.ContainsKey(strID))
strRep = dPicked[strID];
else
strRep = ShowCharPickDlg(strContent, uCharCount, bInitHide,
ctx, uRecursionLevel);
if(strID.Length > 0) dPicked[strID] = strRep;
if(dOptions.ContainsKey("conv"))
{
int iOffset = 0;
if(dOptions.ContainsKey("conv-offset"))
int.TryParse(dOptions["conv-offset"], out iOffset);
string strConvFmt = GetParam(dOptions, "conv-fmt", string.Empty);
string strConv = dOptions["conv"]; // Exists, see above
if(strConv.Equals("d", StrUtil.CaseIgnoreCmp))
{
strRep = ConvertToDownArrows(strRep, iOffset, strConvFmt);
bEncode = false;
}
}
}
str = StrUtil.ReplaceCaseInsensitive(str, strPlaceholder,
bEncode ? SprEngine.TransformContent(strRep, ctx) : strRep);
}
return str;
}
private static string ShowCharPickDlg(string strWord, uint uCharCount,
bool? bInitHide, SprContext ctx, uint uRecursionLevel)
{
string strPick = SprEngine.CompileInternal(strWord,
ctx.WithoutContentTransformations(), uRecursionLevel + 1);
// No need to show the dialog when there's nothing to pick from
// (this also prevents the dialog from showing up MaxRecursionDepth
// times in case of a cyclic {PICKCHARS})
if(string.IsNullOrEmpty(strPick)) return string.Empty;
ProtectedString psWord = new ProtectedString(false, strPick);
string strPicked = CharPickerForm.ShowAndRestore(psWord,
true, true, uCharCount, bInitHide);
return (strPicked ?? string.Empty); // Don't transform here
}
private static string ConvertToDownArrows(string str, int iOffset,
string strLayout)
{
if(string.IsNullOrEmpty(str)) return string.Empty;
Dictionary<char, int> dDowns = new Dictionary<char, int>();
int iDowns = 0;
foreach(char ch in strLayout)
{
if(ch == '0') AddCharSeq(dDowns, '0', '9', ref iDowns);
else if(ch == '1')
{
AddCharSeq(dDowns, '1', '9', ref iDowns);
AddCharSeq(dDowns, '0', '0', ref iDowns);
}
else if(ch == 'a')
{
AddCharSeq(dDowns, 'a', 'z', ref iDowns);
if(strLayout.IndexOf('A') < 0)
{
iDowns -= 26; // Make case-insensitive
AddCharSeq(dDowns, 'A', 'Z', ref iDowns);
}
}
else if(ch == 'A')
{
AddCharSeq(dDowns, 'A', 'Z', ref iDowns);
if(strLayout.IndexOf('a') < 0)
{
iDowns -= 26; // Make case-insensitive
AddCharSeq(dDowns, 'a', 'z', ref iDowns);
}
}
else if(ch == '?') ++iDowns;
}
// Defaults for undefined characters
if(!dDowns.ContainsKey('0'))
{
iDowns = 0;
AddCharSeq(dDowns, '0', '9', ref iDowns);
}
if(!dDowns.ContainsKey('a'))
{
iDowns = 0;
AddCharSeq(dDowns, 'a', 'z', ref iDowns);
iDowns = 0;
AddCharSeq(dDowns, 'A', 'Z', ref iDowns);
}
else { Debug.Assert(dDowns.ContainsKey('A')); }
StringBuilder sb = new StringBuilder();
for(int i = 0; i < str.Length; ++i)
{
// if((sb.Length > 0) && !string.IsNullOrEmpty(strSep)) sb.Append(strSep);
char ch = str[i];
if(!dDowns.TryGetValue(ch, out iDowns)) continue;
for(int j = 0; j < (iOffset + iDowns); ++j) sb.Append(@"{DOWN}");
}
return sb.ToString();
}
private static void AddCharSeq(Dictionary<char, int> d, char chStart,
char chLast, ref int iStart)
{
int p = iStart;
for(char ch = chStart; ch <= chLast; ++ch)
{
// Prefer the first definition (less keypresses)
if(!d.ContainsKey(ch)) d[ch] = p;
++p;
}
iStart = p;
}
}
}
|