sl@0
|
1 |
/*
|
sl@0
|
2 |
Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
|
sl@0
|
3 |
|
sl@0
|
4 |
Redistribution and use in source and binary forms, with or without
|
sl@0
|
5 |
modification, are permitted provided that the following conditions are met:
|
sl@0
|
6 |
|
sl@0
|
7 |
* Redistributions of source code must retain the above copyright notice, this
|
sl@0
|
8 |
list of conditions and the following disclaimer.
|
sl@0
|
9 |
* Redistributions in binary form must reproduce the above copyright notice,
|
sl@0
|
10 |
this list of conditions and the following disclaimer in the documentation
|
sl@0
|
11 |
and/or other materials provided with the distribution.
|
sl@0
|
12 |
* Neither the name of Nokia Corporation nor the names of its contributors
|
sl@0
|
13 |
may be used to endorse or promote products derived from this software
|
sl@0
|
14 |
without specific prior written permission.
|
sl@0
|
15 |
|
sl@0
|
16 |
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
sl@0
|
17 |
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
sl@0
|
18 |
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
sl@0
|
19 |
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
sl@0
|
20 |
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
sl@0
|
21 |
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
sl@0
|
22 |
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
sl@0
|
23 |
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
sl@0
|
24 |
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
sl@0
|
25 |
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
sl@0
|
26 |
|
sl@0
|
27 |
Description: Contains the WSD solution
|
sl@0
|
28 |
*/
|
sl@0
|
29 |
|
sl@0
|
30 |
|
sl@0
|
31 |
// INCLUDE FILES
|
sl@0
|
32 |
#ifndef EMULATOR
|
sl@0
|
33 |
#define EMULATOR (defined(SYMBIAN) && (defined(__WINSCW__) || defined(__WINS__)))
|
sl@0
|
34 |
#endif
|
sl@0
|
35 |
|
sl@0
|
36 |
#include <e32std.h>
|
sl@0
|
37 |
#include <stddef.h>
|
sl@0
|
38 |
#include <windows.h>
|
sl@0
|
39 |
|
sl@0
|
40 |
//definition of all WSD related funcitons
|
sl@0
|
41 |
|
sl@0
|
42 |
#define MAX_NUMBER_OF_PROCESSES 100
|
sl@0
|
43 |
|
sl@0
|
44 |
struct TWsdArray
|
sl@0
|
45 |
{
|
sl@0
|
46 |
TUint iPid;
|
sl@0
|
47 |
TFullName iFullName;
|
sl@0
|
48 |
void* iPtr;
|
sl@0
|
49 |
};
|
sl@0
|
50 |
|
sl@0
|
51 |
#pragma data_seg(".wsd")
|
sl@0
|
52 |
TInt NumOfProcesses = 0;
|
sl@0
|
53 |
TInt MutexInitialized = 0;
|
sl@0
|
54 |
#pragma data_seg()
|
sl@0
|
55 |
|
sl@0
|
56 |
#pragma bss_seg(".wsd")
|
sl@0
|
57 |
struct TWsdArray wsdArray[MAX_NUMBER_OF_PROCESSES];
|
sl@0
|
58 |
#pragma bss_seg()
|
sl@0
|
59 |
|
sl@0
|
60 |
// This function frees up the used slots within the wsdArray
|
sl@0
|
61 |
// for use by other processes; internal to the implementation
|
sl@0
|
62 |
// that provides WSD support
|
sl@0
|
63 |
LOCAL_C TInt FindSlot();
|
sl@0
|
64 |
|
sl@0
|
65 |
void *Pls()
|
sl@0
|
66 |
{
|
sl@0
|
67 |
HANDLE mutexHandle = NULL;
|
sl@0
|
68 |
LPCTSTR p = (unsigned short *)"libcrypto_mutex";
|
sl@0
|
69 |
|
sl@0
|
70 |
if(!MutexInitialized)
|
sl@0
|
71 |
{
|
sl@0
|
72 |
// Keep an unused handle to the mutex object to prevent
|
sl@0
|
73 |
// handle exhaustion
|
sl@0
|
74 |
CreateMutex(NULL, FALSE, p);
|
sl@0
|
75 |
MutexInitialized = 1;
|
sl@0
|
76 |
}
|
sl@0
|
77 |
|
sl@0
|
78 |
if(mutexHandle = CreateMutex(NULL, FALSE, p))
|
sl@0
|
79 |
{
|
sl@0
|
80 |
DWORD dwWaitResult = WaitForSingleObject(mutexHandle, INFINITE);
|
sl@0
|
81 |
switch (dwWaitResult)
|
sl@0
|
82 |
{
|
sl@0
|
83 |
// Cannot get mutex ownership due to time-out.
|
sl@0
|
84 |
case WAIT_TIMEOUT:
|
sl@0
|
85 |
return NULL;
|
sl@0
|
86 |
|
sl@0
|
87 |
// Got ownership of the abandoned mutex object.
|
sl@0
|
88 |
case WAIT_ABANDONED:
|
sl@0
|
89 |
return NULL;
|
sl@0
|
90 |
}
|
sl@0
|
91 |
|
sl@0
|
92 |
if(dwWaitResult == WAIT_OBJECT_0)
|
sl@0
|
93 |
{
|
sl@0
|
94 |
// Thread got the mutex ownership
|
sl@0
|
95 |
TProcessId procId = RProcess().Id();
|
sl@0
|
96 |
TFullName fullName = RProcess().FullName();
|
sl@0
|
97 |
TInt pid = *(TUint *)&procId;
|
sl@0
|
98 |
TInt slot = -1;
|
sl@0
|
99 |
|
sl@0
|
100 |
for(int i=0 ; i < MAX_NUMBER_OF_PROCESSES ; ++i )
|
sl@0
|
101 |
{
|
sl@0
|
102 |
if(!wsdArray[i].iPid)
|
sl@0
|
103 |
{
|
sl@0
|
104 |
if(slot == -1)
|
sl@0
|
105 |
slot = i;
|
sl@0
|
106 |
|
sl@0
|
107 |
continue;
|
sl@0
|
108 |
}
|
sl@0
|
109 |
else if(wsdArray[i].iPid == pid)
|
sl@0
|
110 |
{
|
sl@0
|
111 |
ReleaseMutex(mutexHandle);
|
sl@0
|
112 |
CloseHandle(mutexHandle);
|
sl@0
|
113 |
return wsdArray[i].iPtr;
|
sl@0
|
114 |
}
|
sl@0
|
115 |
}
|
sl@0
|
116 |
|
sl@0
|
117 |
// NEW PROCESS
|
sl@0
|
118 |
|
sl@0
|
119 |
if(MAX_NUMBER_OF_PROCESSES == NumOfProcesses)
|
sl@0
|
120 |
{
|
sl@0
|
121 |
// Find out if one of the slots reserved for previous processes
|
sl@0
|
122 |
// could be reused.
|
sl@0
|
123 |
TInt returnValue = -1;
|
sl@0
|
124 |
returnValue = FindSlot();
|
sl@0
|
125 |
if(returnValue != -1)
|
sl@0
|
126 |
{
|
sl@0
|
127 |
slot = returnValue;
|
sl@0
|
128 |
}
|
sl@0
|
129 |
else
|
sl@0
|
130 |
{
|
sl@0
|
131 |
User::Panic(_L("Pls() Reached the naximum number for the processes"),KErrNoMemory);
|
sl@0
|
132 |
}
|
sl@0
|
133 |
}
|
sl@0
|
134 |
|
sl@0
|
135 |
wsdArray[slot].iPid = pid;
|
sl@0
|
136 |
wsdArray[slot].iFullName = fullName;
|
sl@0
|
137 |
wsdArray[slot].iPtr = NULL;
|
sl@0
|
138 |
|
sl@0
|
139 |
// Increment the count for the number of processes
|
sl@0
|
140 |
++NumOfProcesses;
|
sl@0
|
141 |
|
sl@0
|
142 |
// Release the mutex
|
sl@0
|
143 |
ReleaseMutex(mutexHandle);
|
sl@0
|
144 |
CloseHandle(mutexHandle);
|
sl@0
|
145 |
return wsdArray[slot].iPtr;
|
sl@0
|
146 |
}
|
sl@0
|
147 |
}
|
sl@0
|
148 |
}
|
sl@0
|
149 |
|
sl@0
|
150 |
LOCAL_C TInt FindSlot()
|
sl@0
|
151 |
{
|
sl@0
|
152 |
TInt slot = -1;
|
sl@0
|
153 |
TFullName fullName;
|
sl@0
|
154 |
TInt currentCount = 0;
|
sl@0
|
155 |
|
sl@0
|
156 |
for(int i = 0 ; i < MAX_NUMBER_OF_PROCESSES ; ++i)
|
sl@0
|
157 |
{
|
sl@0
|
158 |
TFindProcess search(wsdArray[i].iFullName);
|
sl@0
|
159 |
if(search.Next(fullName) == KErrNone)
|
sl@0
|
160 |
{
|
sl@0
|
161 |
++currentCount;
|
sl@0
|
162 |
continue;
|
sl@0
|
163 |
}
|
sl@0
|
164 |
|
sl@0
|
165 |
// Process with the given name does not exist in
|
sl@0
|
166 |
// the system. So the slot could be reused.
|
sl@0
|
167 |
wsdArray[i].iPid = 0;
|
sl@0
|
168 |
|
sl@0
|
169 |
// Free the VAS associated with this "process" (terminated)
|
sl@0
|
170 |
if(wsdArray[i].iPtr)
|
sl@0
|
171 |
{
|
sl@0
|
172 |
VirtualFree(wsdArray[i].iPtr, 0, MEM_RELEASE);
|
sl@0
|
173 |
}
|
sl@0
|
174 |
wsdArray[i].iPtr = NULL;
|
sl@0
|
175 |
|
sl@0
|
176 |
if(slot == -1)
|
sl@0
|
177 |
{
|
sl@0
|
178 |
// Update
|
sl@0
|
179 |
slot = i;
|
sl@0
|
180 |
}
|
sl@0
|
181 |
}
|
sl@0
|
182 |
NumOfProcesses = currentCount;
|
sl@0
|
183 |
return slot;
|
sl@0
|
184 |
}
|
sl@0
|
185 |
|
sl@0
|
186 |
TInt SetPls(void *aArg)
|
sl@0
|
187 |
{
|
sl@0
|
188 |
HANDLE mutexHandle = NULL;
|
sl@0
|
189 |
|
sl@0
|
190 |
LPCTSTR p = (unsigned short *)"libcrypto_mutex";
|
sl@0
|
191 |
|
sl@0
|
192 |
if(!MutexInitialized)
|
sl@0
|
193 |
{
|
sl@0
|
194 |
// Keep an unused handle to the mutex object to prevent
|
sl@0
|
195 |
// handle exhaustion
|
sl@0
|
196 |
CreateMutex(NULL, FALSE, p);
|
sl@0
|
197 |
MutexInitialized = 1;
|
sl@0
|
198 |
}
|
sl@0
|
199 |
|
sl@0
|
200 |
if(mutexHandle = CreateMutex(NULL, FALSE, p))
|
sl@0
|
201 |
{
|
sl@0
|
202 |
DWORD dwWaitResult = WaitForSingleObject(mutexHandle, INFINITE);
|
sl@0
|
203 |
switch (dwWaitResult)
|
sl@0
|
204 |
{
|
sl@0
|
205 |
// Cannot get mutex ownership due to time-out.
|
sl@0
|
206 |
case WAIT_TIMEOUT:
|
sl@0
|
207 |
return KErrNotFound;
|
sl@0
|
208 |
|
sl@0
|
209 |
// Got ownership of the abandoned mutex object.
|
sl@0
|
210 |
case WAIT_ABANDONED:
|
sl@0
|
211 |
return KErrNotFound;
|
sl@0
|
212 |
}
|
sl@0
|
213 |
|
sl@0
|
214 |
if(dwWaitResult == WAIT_OBJECT_0)
|
sl@0
|
215 |
{
|
sl@0
|
216 |
// Thread got the mutex ownership
|
sl@0
|
217 |
TProcessId procId = RProcess().Id();
|
sl@0
|
218 |
TFullName fullName = RProcess().FullName();
|
sl@0
|
219 |
TInt pid = *(TUint *)&procId;
|
sl@0
|
220 |
|
sl@0
|
221 |
for(int i=0 ; i < MAX_NUMBER_OF_PROCESSES ; ++i )
|
sl@0
|
222 |
{
|
sl@0
|
223 |
if(wsdArray[i].iPid == pid)
|
sl@0
|
224 |
{
|
sl@0
|
225 |
wsdArray[i].iPtr = aArg;
|
sl@0
|
226 |
ReleaseMutex(mutexHandle);
|
sl@0
|
227 |
CloseHandle(mutexHandle);
|
sl@0
|
228 |
return KErrNone;
|
sl@0
|
229 |
}
|
sl@0
|
230 |
}
|
sl@0
|
231 |
|
sl@0
|
232 |
ReleaseMutex(mutexHandle);
|
sl@0
|
233 |
CloseHandle(mutexHandle);
|
sl@0
|
234 |
return KErrNotFound;
|
sl@0
|
235 |
}
|
sl@0
|
236 |
}
|
sl@0
|
237 |
}
|
sl@0
|
238 |
|
sl@0
|
239 |
void* AllocatePls(TInt aSize)
|
sl@0
|
240 |
{
|
sl@0
|
241 |
void *r = VirtualAlloc(NULL,
|
sl@0
|
242 |
aSize,
|
sl@0
|
243 |
MEM_COMMIT | MEM_RESERVE,
|
sl@0
|
244 |
PAGE_READWRITE);
|
sl@0
|
245 |
if(!r)
|
sl@0
|
246 |
{
|
sl@0
|
247 |
User::Panic(_L("AllocatePls() VIRTUALALLOC"),KErrNoMemory);
|
sl@0
|
248 |
}
|
sl@0
|
249 |
return r;
|
sl@0
|
250 |
}
|