148 lines
4.8 KiB
C#
148 lines
4.8 KiB
C#
|
using System;
|
||
|
using System.Collections;
|
||
|
using System.Text;
|
||
|
using System.Threading;
|
||
|
using sscs.verbs;
|
||
|
using sscs.cache;
|
||
|
using sscs.common;
|
||
|
using sscs.constants;
|
||
|
namespace sscs.verbs
|
||
|
{
|
||
|
|
||
|
/*
|
||
|
* This class is implementation of EnumerateSecretIds call.
|
||
|
* There will be one instance existing for every call made by the client.
|
||
|
*/
|
||
|
|
||
|
internal class EnumerateSecretIds : SSVerb
|
||
|
{
|
||
|
private ushort msgId = 0;
|
||
|
private uint inMsgLen = 0;
|
||
|
private uint outMsgLen = 0;
|
||
|
private uint keyChainIdLen = 0;
|
||
|
private string keyChainId;
|
||
|
|
||
|
private int retCode = 0;
|
||
|
|
||
|
private byte[] inBuf;
|
||
|
private byte[] outBuf;
|
||
|
|
||
|
/*
|
||
|
* This method sets the class member with the byte array received.
|
||
|
*/
|
||
|
|
||
|
public void SetMessageContent(byte[] ipcBytes)
|
||
|
{
|
||
|
CSSSLogger.ExecutionTrace(this);
|
||
|
inBuf = ipcBytes;
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
* This method does the actual implementation of EnumerateSecretIds
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
public byte[] ProcessRequest(UserIdentifier userId)
|
||
|
{
|
||
|
/* If an exception occurs in message format decoding,
|
||
|
* it is handled by AppHandler
|
||
|
*/
|
||
|
|
||
|
int secretIdsLen = 0;
|
||
|
StringBuilder secretIds = new StringBuilder();
|
||
|
// Message Format decipher - Start
|
||
|
|
||
|
msgId = BitConverter.ToUInt16(inBuf,0);
|
||
|
inMsgLen = BitConverter.ToUInt32(inBuf,2);
|
||
|
if( inMsgLen != inBuf.Length )
|
||
|
throw new FormatException(" MsgLen sent does not match the length of the message received.");
|
||
|
|
||
|
keyChainIdLen = BitConverter.ToUInt32(inBuf,6);
|
||
|
|
||
|
byte[] keyChainIdArr = new byte[keyChainIdLen];
|
||
|
Array.Copy(inBuf,10,keyChainIdArr,0,keyChainIdLen);
|
||
|
keyChainId = Encoding.UTF8.GetString(keyChainIdArr);
|
||
|
|
||
|
// Message Format decipher - End
|
||
|
try
|
||
|
{
|
||
|
SecretStore ssStore = SessionManager.GetUserSecretStore(userId);
|
||
|
if( ssStore.CheckIfKeyChainExists(keyChainId) )
|
||
|
{
|
||
|
KeyChain keyChain = ssStore.GetKeyChain(keyChainId);
|
||
|
int numSecrets = keyChain.GetNumSecrets();
|
||
|
int index = 0;
|
||
|
IDictionaryEnumerator etor = (IDictionaryEnumerator)keyChain.GetAllSecrets();
|
||
|
while(etor.MoveNext())
|
||
|
{
|
||
|
index++;
|
||
|
secretIds.Append((string)etor.Key,0,(((string)(etor.Key)).Length)-1);
|
||
|
secretIdsLen += ((string)(etor.Key)).Length-1;
|
||
|
if( index != numSecrets )
|
||
|
{
|
||
|
secretIds.Append("*");
|
||
|
secretIdsLen += 1;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
retCode = IPCRetCodes.SSCS_E_KEYCHAIN_DOES_NOT_EXIST;
|
||
|
}
|
||
|
}
|
||
|
catch(UserNotInSessionException)
|
||
|
{
|
||
|
CSSSLogger.DbgLog("In " + CSSSLogger.GetExecutionPath(this) + " Unable to get user's secretstore" );
|
||
|
retCode = IPCRetCodes.SSCS_E_SYSTEM_ERROR;
|
||
|
}
|
||
|
catch(Exception)
|
||
|
{
|
||
|
retCode = IPCRetCodes.SSCS_E_SYSTEM_ERROR;
|
||
|
}
|
||
|
|
||
|
//Construct a reply.
|
||
|
try
|
||
|
{
|
||
|
msgId = 7;
|
||
|
|
||
|
outMsgLen = 14 + (uint)secretIds.Length;
|
||
|
outBuf = new byte[outMsgLen];
|
||
|
byte[] t = new byte[10];
|
||
|
|
||
|
t = BitConverter.GetBytes((ushort)msgId);
|
||
|
Array.Copy(t,0,outBuf,0,2);
|
||
|
|
||
|
t = BitConverter.GetBytes((uint)outMsgLen);
|
||
|
Array.Copy(t,0,outBuf,2,4);
|
||
|
|
||
|
t = BitConverter.GetBytes(secretIdsLen);
|
||
|
Array.Copy(t,0,outBuf,6,4);
|
||
|
|
||
|
Encoding.UTF8.GetBytes(secretIds.ToString(),0,secretIds.Length,outBuf,10);
|
||
|
|
||
|
t = BitConverter.GetBytes(retCode);
|
||
|
Array.Copy(t,0,outBuf,(10+secretIds.Length),4);
|
||
|
}
|
||
|
catch(Exception e)
|
||
|
{
|
||
|
CSSSLogger.ExpLog(e.ToString());
|
||
|
throw new FormatException("Unable to form the response " + e.ToString());
|
||
|
}
|
||
|
|
||
|
return outBuf;
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
/*
|
||
|
* Gives the name of operation performed. Will be used in case
|
||
|
* of error.
|
||
|
*/
|
||
|
public string GetVerbName()
|
||
|
{
|
||
|
CSSSLogger.ExecutionTrace(this);
|
||
|
return this.ToString();
|
||
|
}
|
||
|
}
|
||
|
}
|