bug 222012. Better enforce persistent directory location
This commit is contained in:
parent
67e99fc3d9
commit
d0a9891cdf
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 4 13:37:03 MST 2007 - jnorman@novell.com
|
||||
|
||||
- Bug 221012. Based on code review, enhance persistent directory
|
||||
policy.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 3 08:12:10 MST 2007 - jnorman@novell.com
|
||||
|
||||
|
921
CASA/micasad/cache/SecretStore.cs
vendored
921
CASA/micasad/cache/SecretStore.cs
vendored
File diff suppressed because it is too large
Load Diff
@ -276,11 +276,14 @@ namespace sscs.verbs
|
||||
{
|
||||
cpd.SetErrorMessage("Directory not allowed");
|
||||
return wo;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
}
|
||||
#endif
|
||||
if (!ssStore.IsDirectoryOwnedByUser(sNewDir))
|
||||
{
|
||||
cpd.SetErrorMessage("Directory not owned by user");
|
||||
return wo;
|
||||
}
|
||||
|
||||
// copy all .miCASA* files to new location
|
||||
string[] files = Directory.GetFiles(sOldDir, ".miCASA*");
|
||||
if (files != null)
|
||||
@ -320,7 +323,7 @@ namespace sscs.verbs
|
||||
}
|
||||
|
||||
private WrappedObject DoMergeXMLSecrets(SecretStore ssStore, WrappedObject wo)
|
||||
{
|
||||
{
|
||||
byte[] baIV = new byte[16];
|
||||
ImportXMLSecrets addSecrets = (ImportXMLSecrets)wo.GetObject();
|
||||
string sMasterPassword = addSecrets.GetMasterPasssword();
|
||||
@ -333,23 +336,23 @@ namespace sscs.verbs
|
||||
{
|
||||
|
||||
// let's read it
|
||||
FileStream fs = new FileStream(sFilePath, FileMode.Open);
|
||||
FileStream fs = new FileStream(sFilePath, FileMode.Open);
|
||||
int iBytes = 0;
|
||||
|
||||
// if a master password was sent, read the first 16 bytes as IV.
|
||||
if (sMasterPassword != null)
|
||||
{
|
||||
baXMLSecrets = new byte[fs.Length - 16];
|
||||
iBytes = fs.Read(baIV, 0, 16);
|
||||
iBytes = fs.Read(baXMLSecrets, 0, (int)fs.Length - 16);
|
||||
}
|
||||
else
|
||||
{
|
||||
baXMLSecrets = new byte[fs.Length];
|
||||
iBytes = fs.Read(baXMLSecrets, 0, (int)fs.Length);
|
||||
}
|
||||
|
||||
fs.Flush();
|
||||
// if a master password was sent, read the first 16 bytes as IV.
|
||||
if (sMasterPassword != null)
|
||||
{
|
||||
baXMLSecrets = new byte[fs.Length - 16];
|
||||
iBytes = fs.Read(baIV, 0, 16);
|
||||
iBytes = fs.Read(baXMLSecrets, 0, (int)fs.Length - 16);
|
||||
}
|
||||
else
|
||||
{
|
||||
baXMLSecrets = new byte[fs.Length];
|
||||
iBytes = fs.Read(baXMLSecrets, 0, (int)fs.Length);
|
||||
}
|
||||
|
||||
fs.Flush();
|
||||
fs.Close();
|
||||
}
|
||||
}
|
||||
@ -410,17 +413,17 @@ namespace sscs.verbs
|
||||
|
||||
string sEncrpyptionPassphrase = secrets.GetPassphrase();
|
||||
|
||||
// get all secrets
|
||||
byte[] baSecrets = ssStore.GetSecretsForExport(sEncrpyptionPassphrase);
|
||||
|
||||
if (baSecrets != null)
|
||||
{
|
||||
wo.SetObject(baSecrets);
|
||||
wo.SetError(constants.RetCodes.SUCCESS, "");
|
||||
}
|
||||
else
|
||||
{
|
||||
wo.SetError(constants.RetCodes.FAILURE, "No Secrets for Export");
|
||||
// get all secrets
|
||||
byte[] baSecrets = ssStore.GetSecretsForExport(sEncrpyptionPassphrase);
|
||||
|
||||
if (baSecrets != null)
|
||||
{
|
||||
wo.SetObject(baSecrets);
|
||||
wo.SetError(constants.RetCodes.SUCCESS, "");
|
||||
}
|
||||
else
|
||||
{
|
||||
wo.SetError(constants.RetCodes.FAILURE, "No Secrets for Export");
|
||||
}
|
||||
|
||||
return wo;
|
||||
|
Loading…
Reference in New Issue
Block a user