Update contrib.
2 Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
4 Redistribution and use in source and binary forms, with or without
5 modification, are permitted provided that the following conditions are met:
7 * Redistributions of source code must retain the above copyright notice, this
8 list of conditions and the following disclaimer.
9 * Redistributions in binary form must reproduce the above copyright notice,
10 this list of conditions and the following disclaimer in the documentation
11 and/or other materials provided with the distribution.
12 * Neither the name of Nokia Corporation nor the names of its contributors
13 may be used to endorse or promote products derived from this software
14 without specific prior written permission.
16 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
20 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
22 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
23 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 Description: Contains the WSD solution
33 #define EMULATOR (defined(SYMBIAN) && (defined(__WINSCW__) || defined(__WINS__)))
40 //definition of all WSD related funcitons
42 #define MAX_NUMBER_OF_PROCESSES 100
51 #pragma data_seg(".wsd")
52 TInt NumOfProcesses = 0;
53 TInt MutexInitialized = 0;
56 #pragma bss_seg(".wsd")
57 struct TWsdArray wsdArray[MAX_NUMBER_OF_PROCESSES];
60 // This function frees up the used slots within the wsdArray
61 // for use by other processes; internal to the implementation
62 // that provides WSD support
63 LOCAL_C TInt FindSlot();
67 HANDLE mutexHandle = NULL;
68 LPCTSTR p = (unsigned short *)"libcrypto_mutex";
72 // Keep an unused handle to the mutex object to prevent
74 CreateMutex(NULL, FALSE, p);
78 if(mutexHandle = CreateMutex(NULL, FALSE, p))
80 DWORD dwWaitResult = WaitForSingleObject(mutexHandle, INFINITE);
83 // Cannot get mutex ownership due to time-out.
87 // Got ownership of the abandoned mutex object.
92 if(dwWaitResult == WAIT_OBJECT_0)
94 // Thread got the mutex ownership
95 TProcessId procId = RProcess().Id();
96 TFullName fullName = RProcess().FullName();
97 TInt pid = *(TUint *)&procId;
100 for(int i=0 ; i < MAX_NUMBER_OF_PROCESSES ; ++i )
102 if(!wsdArray[i].iPid)
109 else if(wsdArray[i].iPid == pid)
111 ReleaseMutex(mutexHandle);
112 CloseHandle(mutexHandle);
113 return wsdArray[i].iPtr;
119 if(MAX_NUMBER_OF_PROCESSES == NumOfProcesses)
121 // Find out if one of the slots reserved for previous processes
123 TInt returnValue = -1;
124 returnValue = FindSlot();
125 if(returnValue != -1)
131 User::Panic(_L("Pls() Reached the naximum number for the processes"),KErrNoMemory);
135 wsdArray[slot].iPid = pid;
136 wsdArray[slot].iFullName = fullName;
137 wsdArray[slot].iPtr = NULL;
139 // Increment the count for the number of processes
143 ReleaseMutex(mutexHandle);
144 CloseHandle(mutexHandle);
145 return wsdArray[slot].iPtr;
150 LOCAL_C TInt FindSlot()
154 TInt currentCount = 0;
156 for(int i = 0 ; i < MAX_NUMBER_OF_PROCESSES ; ++i)
158 TFindProcess search(wsdArray[i].iFullName);
159 if(search.Next(fullName) == KErrNone)
165 // Process with the given name does not exist in
166 // the system. So the slot could be reused.
167 wsdArray[i].iPid = 0;
169 // Free the VAS associated with this "process" (terminated)
172 VirtualFree(wsdArray[i].iPtr, 0, MEM_RELEASE);
174 wsdArray[i].iPtr = NULL;
182 NumOfProcesses = currentCount;
186 TInt SetPls(void *aArg)
188 HANDLE mutexHandle = NULL;
190 LPCTSTR p = (unsigned short *)"libcrypto_mutex";
192 if(!MutexInitialized)
194 // Keep an unused handle to the mutex object to prevent
196 CreateMutex(NULL, FALSE, p);
197 MutexInitialized = 1;
200 if(mutexHandle = CreateMutex(NULL, FALSE, p))
202 DWORD dwWaitResult = WaitForSingleObject(mutexHandle, INFINITE);
203 switch (dwWaitResult)
205 // Cannot get mutex ownership due to time-out.
209 // Got ownership of the abandoned mutex object.
214 if(dwWaitResult == WAIT_OBJECT_0)
216 // Thread got the mutex ownership
217 TProcessId procId = RProcess().Id();
218 TFullName fullName = RProcess().FullName();
219 TInt pid = *(TUint *)&procId;
221 for(int i=0 ; i < MAX_NUMBER_OF_PROCESSES ; ++i )
223 if(wsdArray[i].iPid == pid)
225 wsdArray[i].iPtr = aArg;
226 ReleaseMutex(mutexHandle);
227 CloseHandle(mutexHandle);
232 ReleaseMutex(mutexHandle);
233 CloseHandle(mutexHandle);
239 void* AllocatePls(TInt aSize)
241 void *r = VirtualAlloc(NULL,
243 MEM_COMMIT | MEM_RESERVE,
247 User::Panic(_L("AllocatePls() VIRTUALALLOC"),KErrNoMemory);