Compiler warnings fix.
[wine] / dlls / ntdll / rtl.c
1 /*
2  * NT basis DLL
3  * 
4  * This file contains the Rtl* API functions. These should be implementable.
5  * 
6  * Copyright 1996-1998 Marcus Meissner
7  *                1999 Alex Korobka
8  */
9
10 #include <stdlib.h>
11 #include <string.h>
12 #include "heap.h"
13 #include "debugtools.h"
14 #include "winuser.h"
15 #include "winerror.h"
16 #include "stackframe.h"
17
18 #include "ntddk.h"
19 #include "winreg.h"
20
21 DEFAULT_DEBUG_CHANNEL(ntdll)
22
23
24 /*
25  *      resource functions
26  */
27
28 /***********************************************************************
29  *           RtlInitializeResource      (NTDLL.409)
30  *
31  * xxxResource() functions implement multiple-reader-single-writer lock.
32  * The code is based on information published in WDJ January 1999 issue.
33  */
34 void WINAPI RtlInitializeResource(LPRTL_RWLOCK rwl)
35 {
36     if( rwl )
37     {
38         rwl->iNumberActive = 0;
39         rwl->uExclusiveWaiters = 0;
40         rwl->uSharedWaiters = 0;
41         rwl->hOwningThreadId = 0;
42         rwl->dwTimeoutBoost = 0; /* no info on this one, default value is 0 */
43         InitializeCriticalSection( &rwl->rtlCS );
44         rwl->hExclusiveReleaseSemaphore = CreateSemaphoreA( NULL, 0, 65535, NULL );
45         rwl->hSharedReleaseSemaphore = CreateSemaphoreA( NULL, 0, 65535, NULL );
46     }
47 }
48
49
50 /***********************************************************************
51  *           RtlDeleteResource          (NTDLL.330)
52  */
53 void WINAPI RtlDeleteResource(LPRTL_RWLOCK rwl)
54 {
55     if( rwl )
56     {
57         EnterCriticalSection( &rwl->rtlCS );
58         if( rwl->iNumberActive || rwl->uExclusiveWaiters || rwl->uSharedWaiters )
59             MESSAGE("Deleting active MRSW lock (%p), expect failure\n", rwl );
60         rwl->hOwningThreadId = 0;
61         rwl->uExclusiveWaiters = rwl->uSharedWaiters = 0;
62         rwl->iNumberActive = 0;
63         CloseHandle( rwl->hExclusiveReleaseSemaphore );
64         CloseHandle( rwl->hSharedReleaseSemaphore );
65         LeaveCriticalSection( &rwl->rtlCS );
66         DeleteCriticalSection( &rwl->rtlCS );
67     }
68 }
69
70
71 /***********************************************************************
72  *          RtlAcquireResourceExclusive (NTDLL.256)
73  */
74 BYTE WINAPI RtlAcquireResourceExclusive(LPRTL_RWLOCK rwl, BYTE fWait)
75 {
76     BYTE retVal = 0;
77     if( !rwl ) return 0;
78
79 start:
80     EnterCriticalSection( &rwl->rtlCS );
81     if( rwl->iNumberActive == 0 ) /* lock is free */
82     {
83         rwl->iNumberActive = -1;
84         retVal = 1;
85     }
86     else if( rwl->iNumberActive < 0 ) /* exclusive lock in progress */
87     {
88          if( rwl->hOwningThreadId == GetCurrentThreadId() )
89          {
90              retVal = 1;
91              rwl->iNumberActive--;
92              goto done;
93          }
94 wait:
95          if( fWait )
96          {
97              rwl->uExclusiveWaiters++;
98
99              LeaveCriticalSection( &rwl->rtlCS );
100              if( WaitForSingleObject( rwl->hExclusiveReleaseSemaphore, INFINITE ) == WAIT_FAILED )
101                  goto done;
102              goto start; /* restart the acquisition to avoid deadlocks */
103          }
104     }
105     else  /* one or more shared locks are in progress */
106          if( fWait )
107              goto wait;
108          
109     if( retVal == 1 )
110         rwl->hOwningThreadId = GetCurrentThreadId();
111 done:
112     LeaveCriticalSection( &rwl->rtlCS );
113     return retVal;
114 }
115
116 /***********************************************************************
117  *          RtlAcquireResourceShared    (NTDLL.257)
118  */
119 BYTE WINAPI RtlAcquireResourceShared(LPRTL_RWLOCK rwl, BYTE fWait)
120 {
121     DWORD dwWait = WAIT_FAILED;
122     BYTE retVal = 0;
123     if( !rwl ) return 0;
124
125 start:
126     EnterCriticalSection( &rwl->rtlCS );
127     if( rwl->iNumberActive < 0 )
128     {
129         if( rwl->hOwningThreadId == GetCurrentThreadId() )
130         {
131             rwl->iNumberActive--;
132             retVal = 1;
133             goto done;
134         }
135         
136         if( fWait )
137         {
138             rwl->uSharedWaiters++;
139             LeaveCriticalSection( &rwl->rtlCS );
140             if( (dwWait = WaitForSingleObject( rwl->hSharedReleaseSemaphore, INFINITE )) == WAIT_FAILED )
141                 goto done;
142             goto start;
143         }
144     }
145     else 
146     {
147         if( dwWait != WAIT_OBJECT_0 ) /* otherwise RtlReleaseResource() has already done it */
148             rwl->iNumberActive++;
149         retVal = 1;
150     }
151 done:
152     LeaveCriticalSection( &rwl->rtlCS );
153     return retVal;
154 }
155
156
157 /***********************************************************************
158  *           RtlReleaseResource         (NTDLL.471)
159  */
160 void WINAPI RtlReleaseResource(LPRTL_RWLOCK rwl)
161 {
162     EnterCriticalSection( &rwl->rtlCS );
163
164     if( rwl->iNumberActive > 0 ) /* have one or more readers */
165     {
166         if( --rwl->iNumberActive == 0 )
167         {
168             if( rwl->uExclusiveWaiters )
169             {
170 wake_exclusive:
171                 rwl->uExclusiveWaiters--;
172                 ReleaseSemaphore( rwl->hExclusiveReleaseSemaphore, 1, NULL );
173             }
174         }
175     }
176     else 
177     if( rwl->iNumberActive < 0 ) /* have a writer, possibly recursive */
178     {
179         if( ++rwl->iNumberActive == 0 )
180         {
181             rwl->hOwningThreadId = 0;
182             if( rwl->uExclusiveWaiters )
183                 goto wake_exclusive;
184             else
185                 if( rwl->uSharedWaiters )
186                 {
187                     UINT n = rwl->uSharedWaiters;
188                     rwl->iNumberActive = rwl->uSharedWaiters; /* prevent new writers from joining until
189                                                                * all queued readers have done their thing */
190                     rwl->uSharedWaiters = 0;
191                     ReleaseSemaphore( rwl->hSharedReleaseSemaphore, n, NULL );
192                 }
193         }
194     }
195     LeaveCriticalSection( &rwl->rtlCS );
196 }
197
198
199 /***********************************************************************
200  *           RtlDumpResource            (NTDLL.340)
201  */
202 void WINAPI RtlDumpResource(LPRTL_RWLOCK rwl)
203 {
204     if( rwl )
205     {
206         MESSAGE("RtlDumpResource(%p):\n\tactive count = %i\n\twaiting readers = %i\n\twaiting writers = %i\n",  
207                 rwl, rwl->iNumberActive, rwl->uSharedWaiters, rwl->uExclusiveWaiters );
208         if( rwl->iNumberActive )
209             MESSAGE("\towner thread = %08x\n", rwl->hOwningThreadId );
210     }
211 }
212
213 /*
214  *      heap functions
215  */
216
217 /******************************************************************************
218  *  RtlCreateHeap               [NTDLL] 
219  */
220 HANDLE WINAPI RtlCreateHeap(
221         ULONG Flags,
222         PVOID BaseAddress,
223         ULONG SizeToReserve,
224         ULONG SizeToCommit,
225         PVOID Unknown,
226         PRTL_HEAP_DEFINITION Definition)
227 {
228         FIXME("(0x%08lx, %p, 0x%08lx, 0x%08lx, %p, %p) semi-stub\n",
229         Flags, BaseAddress, SizeToReserve, SizeToCommit, Unknown, Definition);
230         
231         return HeapCreate ( Flags, SizeToCommit, SizeToReserve);
232
233 }       
234 /******************************************************************************
235  *  RtlAllocateHeap             [NTDLL] 
236  */
237 PVOID WINAPI RtlAllocateHeap(
238         HANDLE Heap,
239         ULONG Flags,
240         ULONG Size)
241 {
242         FIXME("(0x%08x, 0x%08lx, 0x%08lx) semi stub\n",
243         Heap, Flags, Size);
244         return HeapAlloc(Heap, Flags, Size);
245 }
246
247 /******************************************************************************
248  *  RtlFreeHeap         [NTDLL] 
249  */
250 BOOLEAN WINAPI RtlFreeHeap(
251         HANDLE Heap,
252         ULONG Flags,
253         PVOID Address)
254 {
255         FIXME("(0x%08x, 0x%08lx, %p) semi stub\n",
256         Heap, Flags, Address);
257         return HeapFree(Heap, Flags, Address);
258 }
259         
260 /******************************************************************************
261  *  RtlDestroyHeap              [NTDLL] 
262  *
263  * FIXME: prototype guessed
264  */
265 BOOLEAN WINAPI RtlDestroyHeap(
266         HANDLE Heap)
267 {
268         FIXME("(0x%08x) semi stub\n", Heap);
269         return HeapDestroy(Heap);
270 }
271         
272 /*
273  *      misc functions
274  */
275
276 /******************************************************************************
277  *      DbgPrint        [NTDLL] 
278  */
279 void WINAPIV DbgPrint(LPCSTR fmt, ...) {
280         char buf[512];
281        va_list args;
282
283        va_start(args, fmt);
284        wvsprintfA(buf,fmt, args);
285        va_end(args); 
286
287         MESSAGE("DbgPrint says: %s",buf);
288         /* hmm, raise exception? */
289 }
290
291 /******************************************************************************
292  *  RtlAcquirePebLock           [NTDLL] 
293  */
294 VOID WINAPI RtlAcquirePebLock(void) {
295         FIXME("()\n");
296         /* enter critical section ? */
297 }
298
299 /******************************************************************************
300  *  RtlReleasePebLock           [NTDLL] 
301  */
302 VOID WINAPI RtlReleasePebLock(void) {
303         FIXME("()\n");
304         /* leave critical section ? */
305 }
306
307 /******************************************************************************
308  *  RtlIntegerToChar    [NTDLL] 
309  */
310 DWORD WINAPI RtlIntegerToChar(DWORD x1,DWORD x2,DWORD x3,DWORD x4) {
311         FIXME("(0x%08lx,0x%08lx,0x%08lx,0x%08lx),stub!\n",x1,x2,x3,x4);
312         return 0;
313 }
314 /******************************************************************************
315  *  RtlSetEnvironmentVariable           [NTDLL] 
316  */
317 DWORD WINAPI RtlSetEnvironmentVariable(DWORD x1,PUNICODE_STRING key,PUNICODE_STRING val) {
318         FIXME("(0x%08lx,%s,%s),stub!\n",x1,debugstr_w(key->Buffer),debugstr_w(val->Buffer));
319         return 0;
320 }
321
322 /******************************************************************************
323  *  RtlNewSecurityObject                [NTDLL] 
324  */
325 DWORD WINAPI RtlNewSecurityObject(DWORD x1,DWORD x2,DWORD x3,DWORD x4,DWORD x5,DWORD x6) {
326         FIXME("(0x%08lx,0x%08lx,0x%08lx,0x%08lx,0x%08lx,0x%08lx),stub!\n",x1,x2,x3,x4,x5,x6);
327         return 0;
328 }
329
330 /******************************************************************************
331  *  RtlDeleteSecurityObject             [NTDLL] 
332  */
333 DWORD WINAPI RtlDeleteSecurityObject(DWORD x1) {
334         FIXME("(0x%08lx),stub!\n",x1);
335         return 0;
336 }
337
338 /**************************************************************************
339  *                 RtlNormalizeProcessParams            [NTDLL.441]
340  */
341 LPVOID WINAPI RtlNormalizeProcessParams(LPVOID x)
342 {
343     FIXME("(%p), stub\n",x);
344     return x;
345 }
346
347 /**************************************************************************
348  *                 RtlNtStatusToDosError                        [NTDLL.442]
349  */
350 DWORD WINAPI RtlNtStatusToDosError(DWORD error)
351 {
352         FIXME("(%lx): map STATUS_ to ERROR_\n",error);
353         switch (error)
354         { case STATUS_SUCCESS:                  return ERROR_SUCCESS;
355           case STATUS_INVALID_PARAMETER:        return ERROR_BAD_ARGUMENTS;
356           case STATUS_BUFFER_TOO_SMALL:         return ERROR_INSUFFICIENT_BUFFER;
357 /*        case STATUS_INVALID_SECURITY_DESCR:   return ERROR_INVALID_SECURITY_DESCR;*/
358           case STATUS_NO_MEMORY:                return ERROR_NOT_ENOUGH_MEMORY;
359 /*        case STATUS_UNKNOWN_REVISION:
360           case STATUS_BUFFER_OVERFLOW:*/
361         }
362         FIXME("unknown status (%lx)\n",error);
363         return ERROR_SUCCESS;
364 }
365
366 /**************************************************************************
367  *                 RtlGetNtProductType                  [NTDLL.390]
368  */
369 BOOLEAN WINAPI RtlGetNtProductType(LPDWORD type)
370 {
371     FIXME("(%p): stub\n", type);
372     *type=3; /* dunno. 1 for client, 3 for server? */
373     return 1;
374 }
375
376 /**************************************************************************
377  *                 NTDLL_chkstk                         [NTDLL.862]
378  *                 NTDLL_alloca_probe                           [NTDLL.861]
379  * Glorified "enter xxxx".
380  */
381 void WINAPI REGS_FUNC(NTDLL_chkstk)( CONTEXT *context )
382 {
383 #ifdef __i386__
384     ESP_reg(context) -= EAX_reg(context);
385 #endif
386 }
387 void WINAPI REGS_FUNC(NTDLL_alloca_probe)( CONTEXT *context )
388 {
389 #ifdef __i386__
390     ESP_reg(context) -= EAX_reg(context);
391 #endif
392 }
393
394 /******************************************************************************
395  * RtlExtendedLargeIntegerDivide [NTDLL.359]
396  */
397 INT WINAPI RtlExtendedLargeIntegerDivide(
398         LARGE_INTEGER dividend,
399         DWORD divisor,
400         LPDWORD rest
401 ) {
402 #if SIZEOF_LONG_LONG==8
403         long long x1 = *(long long*)&dividend;
404
405         if (*rest)
406                 *rest = x1 % divisor;
407         return x1/divisor;
408 #else
409         FIXME("((%ld<<32)+%ld,%ld,%p), implement this using normal integer arithmetic!\n",dividend.HighPart,dividend.LowPart,divisor,rest);
410         return 0;
411 #endif
412 }
413
414 /******************************************************************************
415  * RtlExtendedLargeIntegerMultiply [NTDLL.359]
416  * Note: This even works, since gcc returns 64bit values in eax/edx just like
417  * the caller expects. However... The relay code won't grok this I think.
418  */
419 long long WINAPI RtlExtendedIntegerMultiply(
420         LARGE_INTEGER factor1,
421         INT factor2) 
422 {
423 #if SIZEOF_LONG_LONG==8
424         return (*(long long*)&factor1) * factor2;
425 #else
426         FIXME("((%ld<<32)+%ld,%d), implement this using normal integer arithmetic!\n",factor1.HighPart,factor1.LowPart,factor2);
427         return 0;
428 #endif
429 }
430
431 /******************************************************************************
432  *  RtlFormatCurrentUserKeyPath         [NTDLL.371] 
433  */
434 DWORD WINAPI RtlFormatCurrentUserKeyPath(DWORD x)
435 {
436     FIXME("(0x%08lx): stub\n",x);
437     return 1;
438 }
439
440 /******************************************************************************
441  *  RtlOpenCurrentUser          [NTDLL] 
442  */
443 DWORD WINAPI RtlOpenCurrentUser(DWORD x1, DWORD *x2)
444 {
445 /* Note: this is not the correct solution, 
446  * But this works pretty good on wine and NT4.0 binaries
447  */
448         if  ( x1 == 0x2000000 )  {
449                 *x2 = HKEY_CURRENT_USER; 
450                 return TRUE;
451         }
452                 
453         return FALSE;
454 }
455 /**************************************************************************
456  *                 RtlDosPathNameToNtPathName_U         [NTDLL.338]
457  *
458  * FIXME: convert to UNC or whatever is expected here
459  */
460 BOOLEAN  WINAPI RtlDosPathNameToNtPathName_U(
461         LPWSTR from,PUNICODE_STRING us,DWORD x2,DWORD x3)
462 {
463         LPSTR   fromA = HEAP_strdupWtoA(GetProcessHeap(),0,from);
464
465         FIXME("(%s,%p,%08lx,%08lx)\n",fromA,us,x2,x3);
466         if (us)
467                 RtlInitUnicodeString(us,HEAP_strdupW(GetProcessHeap(),0,from));
468         return TRUE;
469 }
470
471 /******************************************************************************
472  *  RtlCreateEnvironment                [NTDLL] 
473  */
474 DWORD WINAPI RtlCreateEnvironment(DWORD x1,DWORD x2) {
475         FIXME("(0x%08lx,0x%08lx),stub!\n",x1,x2);
476         return 0;
477 }
478
479
480 /******************************************************************************
481  *  RtlDestroyEnvironment               [NTDLL] 
482  */
483 DWORD WINAPI RtlDestroyEnvironment(DWORD x) {
484         FIXME("(0x%08lx),stub!\n",x);
485         return 0;
486 }
487
488 /******************************************************************************
489  *  RtlQueryEnvironmentVariable_U               [NTDLL] 
490  */
491 DWORD WINAPI RtlQueryEnvironmentVariable_U(DWORD x1,PUNICODE_STRING key,PUNICODE_STRING val) {
492         FIXME("(0x%08lx,%s,%p),stub!\n",x1,debugstr_w(key->Buffer),val);
493         return 0;
494 }