ssl/libcrypto/src/crypto/libcrypto_wsd_solution.cpp
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Fri, 12 Mar 2010 15:50:56 +0200
branchRCL_3
changeset 9 fa985af77159
parent 0 e4d67989cc36
permissions -rw-r--r--
Revision: 201007 Kit: 201008

/*
Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.

Redistribution and use in source and binary forms, with or without 
modification, are permitted provided that the following conditions are met:

* Redistributions of source code must retain the above copyright notice, this 
  list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice, 
  this list of conditions and the following disclaimer in the documentation 
  and/or other materials provided with the distribution.
* Neither the name of Nokia Corporation nor the names of its contributors 
  may be used to endorse or promote products derived from this software 
  without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE 
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Description:  Contains the WSD solution
*/


// INCLUDE FILES
#ifndef EMULATOR
#define EMULATOR (defined(SYMBIAN) && (defined(__WINSCW__) || defined(__WINS__)))
#endif

#include <e32std.h>
#include <stddef.h>
#include <windows.h>

//definition of all WSD related funcitons 

#define MAX_NUMBER_OF_PROCESSES	100

struct TWsdArray
{
	TUint 		iPid;
	TFullName 	iFullName;
	void* 		iPtr;
};

#pragma data_seg(".wsd")
TInt NumOfProcesses = 0;
TInt MutexInitialized = 0;
#pragma data_seg()

#pragma bss_seg(".wsd")
struct TWsdArray wsdArray[MAX_NUMBER_OF_PROCESSES];
#pragma bss_seg()

// This function frees up the used slots within the wsdArray
// for use by other processes; internal to the implementation
// that provides WSD support
LOCAL_C TInt FindSlot();

void *Pls()
{
	HANDLE mutexHandle = NULL;
	LPCTSTR p = (unsigned short *)"libcrypto_mutex";
	
	if(!MutexInitialized)
	{
		// Keep an unused handle to the mutex object to prevent
		// handle exhaustion
		CreateMutex(NULL, FALSE, p);
		MutexInitialized = 1;
	}
	
	if(mutexHandle = CreateMutex(NULL, FALSE, p))
    {
	    DWORD dwWaitResult = WaitForSingleObject(mutexHandle, INFINITE);
	    switch (dwWaitResult) 
		{
		    // Cannot get mutex ownership due to time-out.
		    case WAIT_TIMEOUT: 
		        return NULL;
		
		    // Got ownership of the abandoned mutex object.
		    case WAIT_ABANDONED: 
		         return NULL; 
   	    }

		if(dwWaitResult == WAIT_OBJECT_0)
		{
			// Thread got the mutex ownership
			TProcessId procId = RProcess().Id();
			TFullName fullName = RProcess().FullName();
			TInt pid = *(TUint *)&procId;
			TInt slot = -1;

			for(int i=0 ; i < MAX_NUMBER_OF_PROCESSES ; ++i )
			{
				if(!wsdArray[i].iPid)
				{
					if(slot == -1)
						slot = i;
					
					continue;
				}
				else if(wsdArray[i].iPid == pid)
				{
					ReleaseMutex(mutexHandle);
					CloseHandle(mutexHandle);
					return wsdArray[i].iPtr;
				}
			}
			
			// NEW PROCESS
			
			if(MAX_NUMBER_OF_PROCESSES == NumOfProcesses)
			{
				// Find out if one of the slots reserved for previous processes
				// could be reused.
				TInt returnValue = -1;
				returnValue = FindSlot();
				if(returnValue != -1)
				{
					slot = returnValue;
				}
				else
				{
					User::Panic(_L("Pls() Reached the naximum number for the processes"),KErrNoMemory);
				}
			}

			wsdArray[slot].iPid = pid;
			wsdArray[slot].iFullName = fullName;
			wsdArray[slot].iPtr = NULL;
			
			// Increment the count for the number of processes
			++NumOfProcesses;
			
			// Release the mutex
			ReleaseMutex(mutexHandle);
			CloseHandle(mutexHandle);
			return wsdArray[slot].iPtr;
		}
    }
}

LOCAL_C TInt FindSlot()
{
	TInt slot = -1;
	TFullName fullName;
	TInt currentCount = 0;
	
	for(int i = 0 ; i < MAX_NUMBER_OF_PROCESSES ; ++i)
	{
		TFindProcess search(wsdArray[i].iFullName);
		if(search.Next(fullName) == KErrNone)
		{
			++currentCount;
			continue;
		}
		
		// Process with the given name does not exist in
		// the system. So the slot could be reused.
		wsdArray[i].iPid = 0;

		// Free the VAS associated with this "process" (terminated)
		if(wsdArray[i].iPtr)
			{
			VirtualFree(wsdArray[i].iPtr, 0, MEM_RELEASE);
			}
		wsdArray[i].iPtr = NULL;

		if(slot == -1)
		{
			// Update
			slot = i;
		}
	}
	NumOfProcesses = currentCount;
	return slot;
}

TInt SetPls(void *aArg)
{
	HANDLE mutexHandle = NULL;

	LPCTSTR p = (unsigned short *)"libcrypto_mutex";
	
	if(!MutexInitialized)
	{
		// Keep an unused handle to the mutex object to prevent
		// handle exhaustion
		CreateMutex(NULL, FALSE, p);
		MutexInitialized = 1;
	}
	
	if(mutexHandle = CreateMutex(NULL, FALSE, p))
    {
	    DWORD dwWaitResult = WaitForSingleObject(mutexHandle, INFINITE);
	    switch (dwWaitResult) 
		{
		    // Cannot get mutex ownership due to time-out.
		    case WAIT_TIMEOUT: 
		        return KErrNotFound;
		
		    // Got ownership of the abandoned mutex object.
		    case WAIT_ABANDONED: 
		         return KErrNotFound; 
   	    }

		if(dwWaitResult == WAIT_OBJECT_0)
		{
			// Thread got the mutex ownership
			TProcessId procId = RProcess().Id();
			TFullName fullName = RProcess().FullName();
			TInt pid = *(TUint *)&procId;

			for(int i=0 ; i < MAX_NUMBER_OF_PROCESSES ; ++i )
			{
				if(wsdArray[i].iPid == pid)
				{
					wsdArray[i].iPtr = aArg;
					ReleaseMutex(mutexHandle);
					CloseHandle(mutexHandle);
					return KErrNone;
				}
			}
			
			ReleaseMutex(mutexHandle);
			CloseHandle(mutexHandle);
			return KErrNotFound;
		}
    }
}

void* AllocatePls(TInt aSize)
{
	void *r = VirtualAlloc(NULL, 
						   aSize,
						   MEM_COMMIT | MEM_RESERVE,
						   PAGE_READWRITE);
	if(!r)
	{
		User::Panic(_L("AllocatePls() VIRTUALALLOC"),KErrNoMemory);
	}
	return r;
}