hlink: Site data should only be set if the hlink has an HlinkSite.
[wine] / dlls / ntdll / nt.c
1 /*
2  * NT basis DLL
3  *
4  * This file contains the Nt* API functions of NTDLL.DLL.
5  * In the original ntdll.dll they all seem to just call int 0x2e (down to the NTOSKRNL)
6  *
7  * Copyright 1996-1998 Marcus Meissner
8  *
9  * This library is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public
11  * License as published by the Free Software Foundation; either
12  * version 2.1 of the License, or (at your option) any later version.
13  *
14  * This library is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with this library; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22  */
23
24 #include "config.h"
25 #include "wine/port.h"
26
27 #ifdef HAVE_SYS_PARAM_H
28 # include <sys/param.h>
29 #endif
30 #ifdef HAVE_SYS_SYSCTL_H
31 # include <sys/sysctl.h>
32 #endif
33 #ifdef HAVE_MACHINE_CPU_H
34 # include <machine/cpu.h>
35 #endif
36 #ifdef HAVE_MACH_MACHINE_H
37 # include <mach/machine.h>
38 #endif
39
40 #include <ctype.h>
41 #include <string.h>
42 #include <stdarg.h>
43 #include <stdio.h>
44 #include <stdlib.h>
45 #ifdef HAVE_SYS_TIME_H
46 # include <sys/time.h>
47 #endif
48 #include <time.h>
49
50 #define NONAMELESSUNION
51 #include "ntstatus.h"
52 #define WIN32_NO_STATUS
53 #include "wine/debug.h"
54 #include "wine/unicode.h"
55 #include "windef.h"
56 #include "winternl.h"
57 #include "ntdll_misc.h"
58 #include "wine/server.h"
59 #include "ddk/wdm.h"
60
61 #ifdef __APPLE__
62 #include <mach/mach_init.h>
63 #include <mach/mach_host.h>
64 #include <mach/vm_map.h>
65 #endif
66
67 WINE_DEFAULT_DEBUG_CHANNEL(ntdll);
68
69 /*
70  *      Token
71  */
72
73 /******************************************************************************
74  *  NtDuplicateToken            [NTDLL.@]
75  *  ZwDuplicateToken            [NTDLL.@]
76  */
77 NTSTATUS WINAPI NtDuplicateToken(
78         IN HANDLE ExistingToken,
79         IN ACCESS_MASK DesiredAccess,
80         IN POBJECT_ATTRIBUTES ObjectAttributes,
81         IN SECURITY_IMPERSONATION_LEVEL ImpersonationLevel,
82         IN TOKEN_TYPE TokenType,
83         OUT PHANDLE NewToken)
84 {
85     NTSTATUS status;
86
87     TRACE("(%p,0x%08x,%s,0x%08x,0x%08x,%p)\n",
88           ExistingToken, DesiredAccess, debugstr_ObjectAttributes(ObjectAttributes),
89           ImpersonationLevel, TokenType, NewToken);
90
91     if (ObjectAttributes && ObjectAttributes->SecurityQualityOfService)
92     {
93         SECURITY_QUALITY_OF_SERVICE *SecurityQOS = ObjectAttributes->SecurityQualityOfService;
94         TRACE("ObjectAttributes->SecurityQualityOfService = {%d, %d, %d, %s}\n",
95             SecurityQOS->Length, SecurityQOS->ImpersonationLevel,
96             SecurityQOS->ContextTrackingMode,
97             SecurityQOS->EffectiveOnly ? "TRUE" : "FALSE");
98         ImpersonationLevel = SecurityQOS->ImpersonationLevel;
99     }
100
101     SERVER_START_REQ( duplicate_token )
102     {
103         req->handle              = wine_server_obj_handle( ExistingToken );
104         req->access              = DesiredAccess;
105         req->attributes          = ObjectAttributes ? ObjectAttributes->Attributes : 0;
106         req->primary             = (TokenType == TokenPrimary);
107         req->impersonation_level = ImpersonationLevel;
108         status = wine_server_call( req );
109         if (!status) *NewToken = wine_server_ptr_handle( reply->new_handle );
110     }
111     SERVER_END_REQ;
112
113     return status;
114 }
115
116 /******************************************************************************
117  *  NtOpenProcessToken          [NTDLL.@]
118  *  ZwOpenProcessToken          [NTDLL.@]
119  */
120 NTSTATUS WINAPI NtOpenProcessToken(
121         HANDLE ProcessHandle,
122         DWORD DesiredAccess,
123         HANDLE *TokenHandle)
124 {
125     return NtOpenProcessTokenEx( ProcessHandle, DesiredAccess, 0, TokenHandle );
126 }
127
128 /******************************************************************************
129  *  NtOpenProcessTokenEx   [NTDLL.@]
130  *  ZwOpenProcessTokenEx   [NTDLL.@]
131  */
132 NTSTATUS WINAPI NtOpenProcessTokenEx( HANDLE process, DWORD access, DWORD attributes,
133                                       HANDLE *handle )
134 {
135     NTSTATUS ret;
136
137     TRACE("(%p,0x%08x,0x%08x,%p)\n", process, access, attributes, handle);
138
139     SERVER_START_REQ( open_token )
140     {
141         req->handle     = wine_server_obj_handle( process );
142         req->access     = access;
143         req->attributes = attributes;
144         req->flags      = 0;
145         ret = wine_server_call( req );
146         if (!ret) *handle = wine_server_ptr_handle( reply->token );
147     }
148     SERVER_END_REQ;
149     return ret;
150 }
151
152 /******************************************************************************
153  *  NtOpenThreadToken           [NTDLL.@]
154  *  ZwOpenThreadToken           [NTDLL.@]
155  */
156 NTSTATUS WINAPI NtOpenThreadToken(
157         HANDLE ThreadHandle,
158         DWORD DesiredAccess,
159         BOOLEAN OpenAsSelf,
160         HANDLE *TokenHandle)
161 {
162     return NtOpenThreadTokenEx( ThreadHandle, DesiredAccess, OpenAsSelf, 0, TokenHandle );
163 }
164
165 /******************************************************************************
166  *  NtOpenThreadTokenEx   [NTDLL.@]
167  *  ZwOpenThreadTokenEx   [NTDLL.@]
168  */
169 NTSTATUS WINAPI NtOpenThreadTokenEx( HANDLE thread, DWORD access, BOOLEAN as_self, DWORD attributes,
170                                      HANDLE *handle )
171 {
172     NTSTATUS ret;
173
174     TRACE("(%p,0x%08x,%u,0x%08x,%p)\n", thread, access, as_self, attributes, handle );
175
176     SERVER_START_REQ( open_token )
177     {
178         req->handle     = wine_server_obj_handle( thread );
179         req->access     = access;
180         req->attributes = attributes;
181         req->flags      = OPEN_TOKEN_THREAD;
182         if (as_self) req->flags |= OPEN_TOKEN_AS_SELF;
183         ret = wine_server_call( req );
184         if (!ret) *handle = wine_server_ptr_handle( reply->token );
185     }
186     SERVER_END_REQ;
187
188     return ret;
189 }
190
191 /******************************************************************************
192  *  NtAdjustPrivilegesToken             [NTDLL.@]
193  *  ZwAdjustPrivilegesToken             [NTDLL.@]
194  *
195  * FIXME: parameters unsafe
196  */
197 NTSTATUS WINAPI NtAdjustPrivilegesToken(
198         IN HANDLE TokenHandle,
199         IN BOOLEAN DisableAllPrivileges,
200         IN PTOKEN_PRIVILEGES NewState,
201         IN DWORD BufferLength,
202         OUT PTOKEN_PRIVILEGES PreviousState,
203         OUT PDWORD ReturnLength)
204 {
205     NTSTATUS ret;
206
207     TRACE("(%p,0x%08x,%p,0x%08x,%p,%p)\n",
208         TokenHandle, DisableAllPrivileges, NewState, BufferLength, PreviousState, ReturnLength);
209
210     SERVER_START_REQ( adjust_token_privileges )
211     {
212         req->handle = wine_server_obj_handle( TokenHandle );
213         req->disable_all = DisableAllPrivileges;
214         req->get_modified_state = (PreviousState != NULL);
215         if (!DisableAllPrivileges)
216         {
217             wine_server_add_data( req, NewState->Privileges,
218                                   NewState->PrivilegeCount * sizeof(NewState->Privileges[0]) );
219         }
220         if (PreviousState && BufferLength >= FIELD_OFFSET( TOKEN_PRIVILEGES, Privileges ))
221             wine_server_set_reply( req, PreviousState->Privileges,
222                                    BufferLength - FIELD_OFFSET( TOKEN_PRIVILEGES, Privileges ) );
223         ret = wine_server_call( req );
224         if (PreviousState)
225         {
226             *ReturnLength = reply->len + FIELD_OFFSET( TOKEN_PRIVILEGES, Privileges );
227             PreviousState->PrivilegeCount = reply->len / sizeof(LUID_AND_ATTRIBUTES);
228         }
229     }
230     SERVER_END_REQ;
231
232     return ret;
233 }
234
235 /******************************************************************************
236 *  NtQueryInformationToken              [NTDLL.@]
237 *  ZwQueryInformationToken              [NTDLL.@]
238 *
239 * NOTES
240 *  Buffer for TokenUser:
241 *   0x00 TOKEN_USER the PSID field points to the SID
242 *   0x08 SID
243 *
244 */
245 NTSTATUS WINAPI NtQueryInformationToken(
246         HANDLE token,
247         TOKEN_INFORMATION_CLASS tokeninfoclass,
248         PVOID tokeninfo,
249         ULONG tokeninfolength,
250         PULONG retlen )
251 {
252     static const ULONG info_len [] =
253     {
254         0,
255         0,    /* TokenUser */
256         0,    /* TokenGroups */
257         0,    /* TokenPrivileges */
258         0,    /* TokenOwner */
259         0,    /* TokenPrimaryGroup */
260         0,    /* TokenDefaultDacl */
261         sizeof(TOKEN_SOURCE), /* TokenSource */
262         sizeof(TOKEN_TYPE),  /* TokenType */
263         sizeof(SECURITY_IMPERSONATION_LEVEL), /* TokenImpersonationLevel */
264         sizeof(TOKEN_STATISTICS), /* TokenStatistics */
265         0,    /* TokenRestrictedSids */
266         0,    /* TokenSessionId */
267         0,    /* TokenGroupsAndPrivileges */
268         0,    /* TokenSessionReference */
269         0,    /* TokenSandBoxInert */
270         0,    /* TokenAuditPolicy */
271         0,    /* TokenOrigin */
272         0,    /* TokenElevationType */
273         0,    /* TokenLinkedToken */
274         sizeof(TOKEN_ELEVATION), /* TokenElevation */
275         0,    /* TokenHasRestrictions */
276         0,    /* TokenAccessInformation */
277         0,    /* TokenVirtualizationAllowed */
278         0,    /* TokenVirtualizationEnabled */
279         0,    /* TokenIntegrityLevel */
280         0,    /* TokenUIAccess */
281         0,    /* TokenMandatoryPolicy */
282         0     /* TokenLogonSid */
283     };
284
285     ULONG len = 0;
286     NTSTATUS status = STATUS_SUCCESS;
287
288     TRACE("(%p,%d,%p,%d,%p)\n",
289           token,tokeninfoclass,tokeninfo,tokeninfolength,retlen);
290
291     if (tokeninfoclass < MaxTokenInfoClass)
292         len = info_len[tokeninfoclass];
293
294     if (retlen) *retlen = len;
295
296     if (tokeninfolength < len)
297         return STATUS_BUFFER_TOO_SMALL;
298
299     switch (tokeninfoclass)
300     {
301     case TokenUser:
302         SERVER_START_REQ( get_token_sid )
303         {
304             TOKEN_USER * tuser = tokeninfo;
305             PSID sid = tuser + 1;
306             DWORD sid_len = tokeninfolength < sizeof(TOKEN_USER) ? 0 : tokeninfolength - sizeof(TOKEN_USER);
307
308             req->handle = wine_server_obj_handle( token );
309             req->which_sid = tokeninfoclass;
310             wine_server_set_reply( req, sid, sid_len );
311             status = wine_server_call( req );
312             if (retlen) *retlen = reply->sid_len + sizeof(TOKEN_USER);
313             if (status == STATUS_SUCCESS)
314             {
315                 tuser->User.Sid = sid;
316                 tuser->User.Attributes = 0;
317             }
318         }
319         SERVER_END_REQ;
320         break;
321     case TokenGroups:
322     {
323         char stack_buffer[256];
324         unsigned int server_buf_len = sizeof(stack_buffer);
325         void *buffer = stack_buffer;
326         BOOLEAN need_more_memory;
327
328         /* we cannot work out the size of the server buffer required for the
329          * input size, since there are two factors affecting how much can be
330          * stored in the buffer - number of groups and lengths of sids */
331         do
332         {
333             need_more_memory = FALSE;
334
335             SERVER_START_REQ( get_token_groups )
336             {
337                 TOKEN_GROUPS *groups = tokeninfo;
338
339                 req->handle = wine_server_obj_handle( token );
340                 wine_server_set_reply( req, buffer, server_buf_len );
341                 status = wine_server_call( req );
342                 if (status == STATUS_BUFFER_TOO_SMALL)
343                 {
344                     if (buffer == stack_buffer)
345                         buffer = RtlAllocateHeap(GetProcessHeap(), 0, reply->user_len);
346                     else
347                         buffer = RtlReAllocateHeap(GetProcessHeap(), 0, buffer, reply->user_len);
348                     if (!buffer) return STATUS_NO_MEMORY;
349
350                     server_buf_len = reply->user_len;
351                     need_more_memory = TRUE;
352                 }
353                 else if (status == STATUS_SUCCESS)
354                 {
355                     struct token_groups *tg = buffer;
356                     unsigned int *attr = (unsigned int *)(tg + 1);
357                     ULONG i;
358                     const int non_sid_portion = (sizeof(struct token_groups) + tg->count * sizeof(unsigned int));
359                     SID *sids = (SID *)((char *)tokeninfo + FIELD_OFFSET( TOKEN_GROUPS, Groups[tg->count] ));
360                     ULONG needed_bytes = FIELD_OFFSET( TOKEN_GROUPS, Groups[tg->count] ) +
361                         reply->user_len - non_sid_portion;
362
363                     if (retlen) *retlen = needed_bytes;
364
365                     if (needed_bytes <= tokeninfolength)
366                     {
367                         groups->GroupCount = tg->count;
368                         memcpy( sids, (char *)buffer + non_sid_portion,
369                                 reply->user_len - non_sid_portion );
370
371                         for (i = 0; i < tg->count; i++)
372                         {
373                             groups->Groups[i].Attributes = attr[i];
374                             groups->Groups[i].Sid = sids;
375                             sids = (SID *)((char *)sids + RtlLengthSid(sids));
376                         }
377                     }
378                     else status = STATUS_BUFFER_TOO_SMALL;
379                 }
380                 else if (retlen) *retlen = 0;
381             }
382             SERVER_END_REQ;
383         } while (need_more_memory);
384         if (buffer != stack_buffer) RtlFreeHeap(GetProcessHeap(), 0, buffer);
385         break;
386     }
387     case TokenPrimaryGroup:
388         SERVER_START_REQ( get_token_sid )
389         {
390             TOKEN_PRIMARY_GROUP *tgroup = tokeninfo;
391             PSID sid = tgroup + 1;
392             DWORD sid_len = tokeninfolength < sizeof(TOKEN_PRIMARY_GROUP) ? 0 : tokeninfolength - sizeof(TOKEN_PRIMARY_GROUP);
393
394             req->handle = wine_server_obj_handle( token );
395             req->which_sid = tokeninfoclass;
396             wine_server_set_reply( req, sid, sid_len );
397             status = wine_server_call( req );
398             if (retlen) *retlen = reply->sid_len + sizeof(TOKEN_PRIMARY_GROUP);
399             if (status == STATUS_SUCCESS)
400                 tgroup->PrimaryGroup = sid;
401         }
402         SERVER_END_REQ;
403         break;
404     case TokenPrivileges:
405         SERVER_START_REQ( get_token_privileges )
406         {
407             TOKEN_PRIVILEGES *tpriv = tokeninfo;
408             req->handle = wine_server_obj_handle( token );
409             if (tpriv && tokeninfolength > FIELD_OFFSET( TOKEN_PRIVILEGES, Privileges ))
410                 wine_server_set_reply( req, tpriv->Privileges, tokeninfolength - FIELD_OFFSET( TOKEN_PRIVILEGES, Privileges ) );
411             status = wine_server_call( req );
412             if (retlen) *retlen = FIELD_OFFSET( TOKEN_PRIVILEGES, Privileges ) + reply->len;
413             if (tpriv) tpriv->PrivilegeCount = reply->len / sizeof(LUID_AND_ATTRIBUTES);
414         }
415         SERVER_END_REQ;
416         break;
417     case TokenOwner:
418         SERVER_START_REQ( get_token_sid )
419         {
420             TOKEN_OWNER *towner = tokeninfo;
421             PSID sid = towner + 1;
422             DWORD sid_len = tokeninfolength < sizeof(TOKEN_OWNER) ? 0 : tokeninfolength - sizeof(TOKEN_OWNER);
423
424             req->handle = wine_server_obj_handle( token );
425             req->which_sid = tokeninfoclass;
426             wine_server_set_reply( req, sid, sid_len );
427             status = wine_server_call( req );
428             if (retlen) *retlen = reply->sid_len + sizeof(TOKEN_OWNER);
429             if (status == STATUS_SUCCESS)
430                 towner->Owner = sid;
431         }
432         SERVER_END_REQ;
433         break;
434     case TokenImpersonationLevel:
435         SERVER_START_REQ( get_token_impersonation_level )
436         {
437             SECURITY_IMPERSONATION_LEVEL *impersonation_level = tokeninfo;
438             req->handle = wine_server_obj_handle( token );
439             status = wine_server_call( req );
440             if (status == STATUS_SUCCESS)
441                 *impersonation_level = reply->impersonation_level;
442         }
443         SERVER_END_REQ;
444         break;
445     case TokenStatistics:
446         SERVER_START_REQ( get_token_statistics )
447         {
448             TOKEN_STATISTICS *statistics = tokeninfo;
449             req->handle = wine_server_obj_handle( token );
450             status = wine_server_call( req );
451             if (status == STATUS_SUCCESS)
452             {
453                 statistics->TokenId.LowPart  = reply->token_id.low_part;
454                 statistics->TokenId.HighPart = reply->token_id.high_part;
455                 statistics->AuthenticationId.LowPart  = 0; /* FIXME */
456                 statistics->AuthenticationId.HighPart = 0; /* FIXME */
457                 statistics->ExpirationTime.u.HighPart = 0x7fffffff;
458                 statistics->ExpirationTime.u.LowPart  = 0xffffffff;
459                 statistics->TokenType = reply->primary ? TokenPrimary : TokenImpersonation;
460                 statistics->ImpersonationLevel = reply->impersonation_level;
461
462                 /* kernel information not relevant to us */
463                 statistics->DynamicCharged = 0;
464                 statistics->DynamicAvailable = 0;
465
466                 statistics->GroupCount = reply->group_count;
467                 statistics->PrivilegeCount = reply->privilege_count;
468                 statistics->ModifiedId.LowPart  = reply->modified_id.low_part;
469                 statistics->ModifiedId.HighPart = reply->modified_id.high_part;
470             }
471         }
472         SERVER_END_REQ;
473         break;
474     case TokenType:
475         SERVER_START_REQ( get_token_statistics )
476         {
477             TOKEN_TYPE *token_type = tokeninfo;
478             req->handle = wine_server_obj_handle( token );
479             status = wine_server_call( req );
480             if (status == STATUS_SUCCESS)
481                 *token_type = reply->primary ? TokenPrimary : TokenImpersonation;
482         }
483         SERVER_END_REQ;
484         break;
485     case TokenDefaultDacl:
486         SERVER_START_REQ( get_token_default_dacl )
487         {
488             TOKEN_DEFAULT_DACL *default_dacl = tokeninfo;
489             ACL *acl = (ACL *)(default_dacl + 1);
490             DWORD acl_len;
491
492             if (tokeninfolength < sizeof(TOKEN_DEFAULT_DACL)) acl_len = 0;
493             else acl_len = tokeninfolength - sizeof(TOKEN_DEFAULT_DACL);
494
495             req->handle = wine_server_obj_handle( token );
496             wine_server_set_reply( req, acl, acl_len );
497             status = wine_server_call( req );
498
499             if (retlen) *retlen = reply->acl_len + sizeof(TOKEN_DEFAULT_DACL);
500             if (status == STATUS_SUCCESS)
501             {
502                 if (reply->acl_len)
503                     default_dacl->DefaultDacl = acl;
504                 else
505                     default_dacl->DefaultDacl = NULL;
506             }
507         }
508         SERVER_END_REQ;
509         break;
510     case TokenElevation:
511         {
512             TOKEN_ELEVATION *elevation = tokeninfo;
513             FIXME("QueryInformationToken( ..., TokenElevation, ...) semi-stub\n");
514             elevation->TokenIsElevated = TRUE;
515         }
516         break;
517     default:
518         {
519             ERR("Unhandled Token Information class %d!\n", tokeninfoclass);
520             return STATUS_NOT_IMPLEMENTED;
521         }
522     }
523     return status;
524 }
525
526 /******************************************************************************
527 *  NtSetInformationToken                [NTDLL.@]
528 *  ZwSetInformationToken                [NTDLL.@]
529 */
530 NTSTATUS WINAPI NtSetInformationToken(
531         HANDLE TokenHandle,
532         TOKEN_INFORMATION_CLASS TokenInformationClass,
533         PVOID TokenInformation,
534         ULONG TokenInformationLength)
535 {
536     NTSTATUS ret = STATUS_NOT_IMPLEMENTED;
537
538     TRACE("%p %d %p %u\n", TokenHandle, TokenInformationClass,
539            TokenInformation, TokenInformationLength);
540
541     switch (TokenInformationClass)
542     {
543     case TokenDefaultDacl:
544         if (TokenInformationLength < sizeof(TOKEN_DEFAULT_DACL))
545         {
546             ret = STATUS_INFO_LENGTH_MISMATCH;
547             break;
548         }
549         if (!TokenInformation)
550         {
551             ret = STATUS_ACCESS_VIOLATION;
552             break;
553         }
554         SERVER_START_REQ( set_token_default_dacl )
555         {
556             ACL *acl = ((TOKEN_DEFAULT_DACL *)TokenInformation)->DefaultDacl;
557             WORD size;
558
559             if (acl) size = acl->AclSize;
560             else size = 0;
561
562             req->handle = wine_server_obj_handle( TokenHandle );
563             wine_server_add_data( req, acl, size );
564             ret = wine_server_call( req );
565         }
566         SERVER_END_REQ;
567         break;
568     default:
569         FIXME("unimplemented class %u\n", TokenInformationClass);
570         break;
571     }
572
573     return ret;
574 }
575
576 /******************************************************************************
577 *  NtAdjustGroupsToken          [NTDLL.@]
578 *  ZwAdjustGroupsToken          [NTDLL.@]
579 */
580 NTSTATUS WINAPI NtAdjustGroupsToken(
581         HANDLE TokenHandle,
582         BOOLEAN ResetToDefault,
583         PTOKEN_GROUPS NewState,
584         ULONG BufferLength,
585         PTOKEN_GROUPS PreviousState,
586         PULONG ReturnLength)
587 {
588     FIXME("%p %d %p %u %p %p\n", TokenHandle, ResetToDefault,
589           NewState, BufferLength, PreviousState, ReturnLength);
590     return STATUS_NOT_IMPLEMENTED;
591 }
592
593 /******************************************************************************
594 *  NtPrivilegeCheck             [NTDLL.@]
595 *  ZwPrivilegeCheck             [NTDLL.@]
596 */
597 NTSTATUS WINAPI NtPrivilegeCheck(
598     HANDLE ClientToken,
599     PPRIVILEGE_SET RequiredPrivileges,
600     PBOOLEAN Result)
601 {
602     NTSTATUS status;
603     SERVER_START_REQ( check_token_privileges )
604     {
605         req->handle = wine_server_obj_handle( ClientToken );
606         req->all_required = ((RequiredPrivileges->Control & PRIVILEGE_SET_ALL_NECESSARY) ? TRUE : FALSE);
607         wine_server_add_data( req, RequiredPrivileges->Privilege,
608             RequiredPrivileges->PrivilegeCount * sizeof(RequiredPrivileges->Privilege[0]) );
609         wine_server_set_reply( req, RequiredPrivileges->Privilege,
610             RequiredPrivileges->PrivilegeCount * sizeof(RequiredPrivileges->Privilege[0]) );
611
612         status = wine_server_call( req );
613
614         if (status == STATUS_SUCCESS)
615             *Result = (reply->has_privileges ? TRUE : FALSE);
616     }
617     SERVER_END_REQ;
618     return status;
619 }
620
621 /*
622  *      Section
623  */
624
625 /******************************************************************************
626  *  NtQuerySection      [NTDLL.@]
627  */
628 NTSTATUS WINAPI NtQuerySection(
629         IN HANDLE SectionHandle,
630         IN SECTION_INFORMATION_CLASS SectionInformationClass,
631         OUT PVOID SectionInformation,
632         IN ULONG Length,
633         OUT PULONG ResultLength)
634 {
635         FIXME("(%p,%d,%p,0x%08x,%p) stub!\n",
636         SectionHandle,SectionInformationClass,SectionInformation,Length,ResultLength);
637         return 0;
638 }
639
640 /*
641  *      ports
642  */
643
644 /******************************************************************************
645  *  NtCreatePort                [NTDLL.@]
646  *  ZwCreatePort                [NTDLL.@]
647  */
648 NTSTATUS WINAPI NtCreatePort(PHANDLE PortHandle,POBJECT_ATTRIBUTES ObjectAttributes,
649                              ULONG MaxConnectInfoLength,ULONG MaxDataLength,PULONG reserved)
650 {
651   FIXME("(%p,%p,%u,%u,%p),stub!\n",PortHandle,ObjectAttributes,
652         MaxConnectInfoLength,MaxDataLength,reserved);
653   return STATUS_NOT_IMPLEMENTED;
654 }
655
656 /******************************************************************************
657  *  NtConnectPort               [NTDLL.@]
658  *  ZwConnectPort               [NTDLL.@]
659  */
660 NTSTATUS WINAPI NtConnectPort(
661         PHANDLE PortHandle,
662         PUNICODE_STRING PortName,
663         PSECURITY_QUALITY_OF_SERVICE SecurityQos,
664         PLPC_SECTION_WRITE WriteSection,
665         PLPC_SECTION_READ ReadSection,
666         PULONG MaximumMessageLength,
667         PVOID ConnectInfo,
668         PULONG pConnectInfoLength)
669 {
670     FIXME("(%p,%s,%p,%p,%p,%p,%p,%p),stub!\n",
671           PortHandle,debugstr_w(PortName->Buffer),SecurityQos,
672           WriteSection,ReadSection,MaximumMessageLength,ConnectInfo,
673           pConnectInfoLength);
674     if (ConnectInfo && pConnectInfoLength)
675         TRACE("\tMessage = %s\n",debugstr_an(ConnectInfo,*pConnectInfoLength));
676     return STATUS_NOT_IMPLEMENTED;
677 }
678
679 /******************************************************************************
680  *  NtSecureConnectPort                (NTDLL.@)
681  *  ZwSecureConnectPort                (NTDLL.@)
682  */
683 NTSTATUS WINAPI NtSecureConnectPort(
684         PHANDLE PortHandle,
685         PUNICODE_STRING PortName,
686         PSECURITY_QUALITY_OF_SERVICE SecurityQos,
687         PLPC_SECTION_WRITE WriteSection,
688         PSID pSid,
689         PLPC_SECTION_READ ReadSection,
690         PULONG MaximumMessageLength,
691         PVOID ConnectInfo,
692         PULONG pConnectInfoLength)
693 {
694     FIXME("(%p,%s,%p,%p,%p,%p,%p,%p,%p),stub!\n",
695           PortHandle,debugstr_w(PortName->Buffer),SecurityQos,
696           WriteSection,pSid,ReadSection,MaximumMessageLength,ConnectInfo,
697           pConnectInfoLength);
698     return STATUS_NOT_IMPLEMENTED;
699 }
700
701 /******************************************************************************
702  *  NtListenPort                [NTDLL.@]
703  *  ZwListenPort                [NTDLL.@]
704  */
705 NTSTATUS WINAPI NtListenPort(HANDLE PortHandle,PLPC_MESSAGE pLpcMessage)
706 {
707   FIXME("(%p,%p),stub!\n",PortHandle,pLpcMessage);
708   return STATUS_NOT_IMPLEMENTED;
709 }
710
711 /******************************************************************************
712  *  NtAcceptConnectPort [NTDLL.@]
713  *  ZwAcceptConnectPort [NTDLL.@]
714  */
715 NTSTATUS WINAPI NtAcceptConnectPort(
716         PHANDLE PortHandle,
717         ULONG PortIdentifier,
718         PLPC_MESSAGE pLpcMessage,
719         BOOLEAN Accept,
720         PLPC_SECTION_WRITE WriteSection,
721         PLPC_SECTION_READ ReadSection)
722 {
723   FIXME("(%p,%u,%p,%d,%p,%p),stub!\n",
724         PortHandle,PortIdentifier,pLpcMessage,Accept,WriteSection,ReadSection);
725   return STATUS_NOT_IMPLEMENTED;
726 }
727
728 /******************************************************************************
729  *  NtCompleteConnectPort       [NTDLL.@]
730  *  ZwCompleteConnectPort       [NTDLL.@]
731  */
732 NTSTATUS WINAPI NtCompleteConnectPort(HANDLE PortHandle)
733 {
734   FIXME("(%p),stub!\n",PortHandle);
735   return STATUS_NOT_IMPLEMENTED;
736 }
737
738 /******************************************************************************
739  *  NtRegisterThreadTerminatePort       [NTDLL.@]
740  *  ZwRegisterThreadTerminatePort       [NTDLL.@]
741  */
742 NTSTATUS WINAPI NtRegisterThreadTerminatePort(HANDLE PortHandle)
743 {
744   FIXME("(%p),stub!\n",PortHandle);
745   return STATUS_NOT_IMPLEMENTED;
746 }
747
748 /******************************************************************************
749  *  NtRequestWaitReplyPort              [NTDLL.@]
750  *  ZwRequestWaitReplyPort              [NTDLL.@]
751  */
752 NTSTATUS WINAPI NtRequestWaitReplyPort(
753         HANDLE PortHandle,
754         PLPC_MESSAGE pLpcMessageIn,
755         PLPC_MESSAGE pLpcMessageOut)
756 {
757   FIXME("(%p,%p,%p),stub!\n",PortHandle,pLpcMessageIn,pLpcMessageOut);
758   if(pLpcMessageIn)
759   {
760     TRACE("Message to send:\n");
761     TRACE("\tDataSize            = %u\n",pLpcMessageIn->DataSize);
762     TRACE("\tMessageSize         = %u\n",pLpcMessageIn->MessageSize);
763     TRACE("\tMessageType         = %u\n",pLpcMessageIn->MessageType);
764     TRACE("\tVirtualRangesOffset = %u\n",pLpcMessageIn->VirtualRangesOffset);
765     TRACE("\tClientId.UniqueProcess = %p\n",pLpcMessageIn->ClientId.UniqueProcess);
766     TRACE("\tClientId.UniqueThread  = %p\n",pLpcMessageIn->ClientId.UniqueThread);
767     TRACE("\tMessageId           = %lu\n",pLpcMessageIn->MessageId);
768     TRACE("\tSectionSize         = %lu\n",pLpcMessageIn->SectionSize);
769     TRACE("\tData                = %s\n",
770       debugstr_an((const char*)pLpcMessageIn->Data,pLpcMessageIn->DataSize));
771   }
772   return STATUS_NOT_IMPLEMENTED;
773 }
774
775 /******************************************************************************
776  *  NtReplyWaitReceivePort      [NTDLL.@]
777  *  ZwReplyWaitReceivePort      [NTDLL.@]
778  */
779 NTSTATUS WINAPI NtReplyWaitReceivePort(
780         HANDLE PortHandle,
781         PULONG PortIdentifier,
782         PLPC_MESSAGE ReplyMessage,
783         PLPC_MESSAGE Message)
784 {
785   FIXME("(%p,%p,%p,%p),stub!\n",PortHandle,PortIdentifier,ReplyMessage,Message);
786   return STATUS_NOT_IMPLEMENTED;
787 }
788
789 /*
790  *      Misc
791  */
792
793  /******************************************************************************
794  *  NtSetIntervalProfile        [NTDLL.@]
795  *  ZwSetIntervalProfile        [NTDLL.@]
796  */
797 NTSTATUS WINAPI NtSetIntervalProfile(
798         ULONG Interval,
799         KPROFILE_SOURCE Source)
800 {
801     FIXME("%u,%d\n", Interval, Source);
802     return STATUS_SUCCESS;
803 }
804
805 static  SYSTEM_CPU_INFORMATION cached_sci;
806 static  ULONGLONG cpuHz = 1000000000; /* default to a 1GHz */
807
808 #define AUTH    0x68747541      /* "Auth" */
809 #define ENTI    0x69746e65      /* "enti" */
810 #define CAMD    0x444d4163      /* "cAMD" */
811
812 /* Calls cpuid with an eax of 'ax' and returns the 16 bytes in *p
813  * We are compiled with -fPIC, so we can't clobber ebx.
814  */
815 static inline void do_cpuid(unsigned int ax, unsigned int *p)
816 {
817 #ifdef __i386__
818         __asm__("pushl %%ebx\n\t"
819                 "cpuid\n\t"
820                 "movl %%ebx, %%esi\n\t"
821                 "popl %%ebx"
822                 : "=a" (p[0]), "=S" (p[1]), "=c" (p[2]), "=d" (p[3])
823                 :  "0" (ax));
824 #endif
825 }
826
827 /* From xf86info havecpuid.c 1.11 */
828 static inline int have_cpuid(void)
829 {
830 #ifdef __i386__
831         unsigned int f1, f2;
832         __asm__("pushfl\n\t"
833                 "pushfl\n\t"
834                 "popl %0\n\t"
835                 "movl %0,%1\n\t"
836                 "xorl %2,%0\n\t"
837                 "pushl %0\n\t"
838                 "popfl\n\t"
839                 "pushfl\n\t"
840                 "popl %0\n\t"
841                 "popfl"
842                 : "=&r" (f1), "=&r" (f2)
843                 : "ir" (0x00200000));
844         return ((f1^f2) & 0x00200000) != 0;
845 #else
846         return 0;
847 #endif
848 }
849
850 static inline void get_cpuinfo(SYSTEM_CPU_INFORMATION* info)
851 {
852     unsigned int regs[4], regs2[4];
853
854     if (!have_cpuid()) return;
855
856     do_cpuid(0x00000000, regs);  /* get standard cpuid level and vendor name */
857     if (regs[0]>=0x00000001)   /* Check for supported cpuid version */
858     {
859         do_cpuid(0x00000001, regs2); /* get cpu features */
860         switch ((regs2[0] >> 8) & 0xf)  /* cpu family */
861         {
862         case 3: info->Level = 3;        break;
863         case 4: info->Level = 4;        break;
864         case 5: info->Level = 5;        break;
865         case 15: /* PPro/2/3/4 has same info as P1 */
866         case 6: info->Level = 6;         break;
867         default:
868             FIXME("unknown cpu family %d, please report! (-> setting to 386)\n",
869                   (regs2[0] >> 8)&0xf);
870             info->Level = 3;
871             break;
872         }
873         user_shared_data->ProcessorFeatures[PF_FLOATING_POINT_EMULATED]       = !(regs2[3] & 1);
874         user_shared_data->ProcessorFeatures[PF_RDTSC_INSTRUCTION_AVAILABLE]   = (regs2[3] & (1 << 4 )) >> 4;
875         user_shared_data->ProcessorFeatures[PF_PAE_ENABLED]                   = (regs2[3] & (1 << 6 )) >> 6;
876         user_shared_data->ProcessorFeatures[PF_COMPARE_EXCHANGE_DOUBLE]       = (regs2[3] & (1 << 8 )) >> 8;
877         user_shared_data->ProcessorFeatures[PF_MMX_INSTRUCTIONS_AVAILABLE]    = (regs2[3] & (1 << 23)) >> 23;
878         user_shared_data->ProcessorFeatures[PF_XMMI_INSTRUCTIONS_AVAILABLE]   = (regs2[3] & (1 << 25)) >> 25;
879         user_shared_data->ProcessorFeatures[PF_XMMI64_INSTRUCTIONS_AVAILABLE] = (regs2[3] & (1 << 26)) >> 26;
880
881         if (regs[1] == AUTH && regs[3] == ENTI && regs[2] == CAMD)
882         {
883             do_cpuid(0x80000000, regs);  /* get vendor cpuid level */
884             if (regs[0] >= 0x80000001)
885             {
886                 do_cpuid(0x80000001, regs2);  /* get vendor features */
887                 user_shared_data->ProcessorFeatures[PF_3DNOW_INSTRUCTIONS_AVAILABLE] = (regs2[3] & (1 << 31 )) >> 31;
888             }
889         }
890     }
891 }
892
893 /******************************************************************
894  *              fill_cpu_info
895  *
896  * inits a couple of places with CPU related information:
897  * - cached_sci & cpuHZ in this file
898  * - Peb->NumberOfProcessors
899  * - SharedUserData->ProcessFeatures[] array
900  *
901  * It creates a registry subhierarchy, looking like:
902  * "\HARDWARE\DESCRIPTION\System\CentralProcessor\<processornumber>\Identifier (CPU x86)".
903  * Note that there is a hierarchy for every processor installed, so this
904  * supports multiprocessor systems. This is done like Win95 does it, I think.
905  *
906  * It creates some registry entries in the environment part:
907  * "\HKLM\System\CurrentControlSet\Control\Session Manager\Environment". These are
908  * always present. When deleted, Windows will add them again.
909  */
910 void fill_cpu_info(void)
911 {
912     memset(&cached_sci, 0, sizeof(cached_sci));
913     /* choose sensible defaults ...
914      * FIXME: perhaps overridable with precompiler flags?
915      */
916 #ifdef __i386__
917     cached_sci.Architecture     = PROCESSOR_ARCHITECTURE_INTEL;
918     cached_sci.Level            = 5; /* 586 */
919 #elif defined(__x86_64__)
920     cached_sci.Architecture     = PROCESSOR_ARCHITECTURE_AMD64;
921 #elif defined(__powerpc__)
922     cached_sci.Architecture     = PROCESSOR_ARCHITECTURE_PPC;
923 #elif defined(__arm__)
924     cached_sci.Architecture     = PROCESSOR_ARCHITECTURE_ARM;
925 #elif defined(__ALPHA__)
926     cached_sci.Architecture     = PROCESSOR_ARCHITECTURE_ALPHA;
927 #elif defined(__sparc__)
928     cached_sci.Architecture     = PROCESSOR_ARCHITECTURE_SPARC;
929 #else
930 #error Unknown CPU
931 #endif
932     cached_sci.Revision         = 0;
933     cached_sci.Reserved         = 0;
934     cached_sci.FeatureSet       = 0x1fff; /* FIXME: set some sensible defaults out of ProcessFeatures[] */
935
936     NtCurrentTeb()->Peb->NumberOfProcessors = 1;
937
938     /* Hmm, reasonable processor feature defaults? */
939
940 #ifdef linux
941     {
942         char line[200];
943         FILE *f = fopen ("/proc/cpuinfo", "r");
944
945         if (!f)
946                 return;
947         while (fgets(line,200,f) != NULL)
948         {
949             char        *s,*value;
950
951             /* NOTE: the ':' is the only character we can rely on */
952             if (!(value = strchr(line,':')))
953                 continue;
954
955             /* terminate the valuename */
956             s = value - 1;
957             while ((s >= line) && ((*s == ' ') || (*s == '\t'))) s--;
958             *(s + 1) = '\0';
959
960             /* and strip leading spaces from value */
961             value += 1;
962             while (*value==' ') value++;
963             if ((s = strchr(value,'\n')))
964                 *s='\0';
965
966             if (!strcasecmp(line, "processor"))
967             {
968                 /* processor number counts up... */
969                 unsigned int x;
970
971                 if (sscanf(value, "%d",&x))
972                     if (x + 1 > NtCurrentTeb()->Peb->NumberOfProcessors)
973                         NtCurrentTeb()->Peb->NumberOfProcessors = x + 1;
974
975                 continue;
976             }
977             if (!strcasecmp(line, "model"))
978             {
979                 /* First part of Revision */
980                 int     x;
981
982                 if (sscanf(value, "%d",&x))
983                     cached_sci.Revision = cached_sci.Revision | (x << 8);
984
985                 continue;
986             }
987
988             /* 2.1 method */
989             if (!strcasecmp(line, "cpu family"))
990             {
991                 if (isdigit(value[0]))
992                 {
993                     cached_sci.Level = atoi(value);
994                 }
995                 continue;
996             }
997             /* old 2.0 method */
998             if (!strcasecmp(line, "cpu"))
999             {
1000                 if (isdigit(value[0]) && value[1] == '8' && value[2] == '6' && value[3] == 0)
1001                 {
1002                     switch (cached_sci.Level = value[0] - '0')
1003                     {
1004                     case 3:
1005                     case 4:
1006                     case 5:
1007                     case 6:
1008                         break;
1009                     default:
1010                         FIXME("unknown Linux 2.0 cpu family '%s', please report ! (-> setting to 386)\n", value);
1011                         cached_sci.Level = 3;
1012                         break;
1013                     }
1014                 }
1015                 continue;
1016             }
1017             if (!strcasecmp(line, "stepping"))
1018             {
1019                 /* Second part of Revision */
1020                 int     x;
1021
1022                 if (sscanf(value, "%d",&x))
1023                     cached_sci.Revision = cached_sci.Revision | x;
1024                 continue;
1025             }
1026             if (!strcasecmp(line, "cpu MHz"))
1027             {
1028                 double cmz;
1029                 if (sscanf( value, "%lf", &cmz ) == 1)
1030                 {
1031                     /* SYSTEMINFO doesn't have a slot for cpu speed, so store in a global */
1032                     cpuHz = cmz * 1000 * 1000;
1033                 }
1034                 continue;
1035             }
1036             if (!strcasecmp(line, "fdiv_bug"))
1037             {
1038                 if (!strncasecmp(value, "yes",3))
1039                     user_shared_data->ProcessorFeatures[PF_FLOATING_POINT_PRECISION_ERRATA] = TRUE;
1040                 continue;
1041             }
1042             if (!strcasecmp(line, "fpu"))
1043             {
1044                 if (!strncasecmp(value, "no",2))
1045                     user_shared_data->ProcessorFeatures[PF_FLOATING_POINT_EMULATED] = TRUE;
1046                 continue;
1047             }
1048             if (!strcasecmp(line, "flags") || !strcasecmp(line, "features"))
1049             {
1050                 if (strstr(value, "cx8"))
1051                     user_shared_data->ProcessorFeatures[PF_COMPARE_EXCHANGE_DOUBLE] = TRUE;
1052                 if (strstr(value, "mmx"))
1053                     user_shared_data->ProcessorFeatures[PF_MMX_INSTRUCTIONS_AVAILABLE] = TRUE;
1054                 if (strstr(value, "tsc"))
1055                     user_shared_data->ProcessorFeatures[PF_RDTSC_INSTRUCTION_AVAILABLE] = TRUE;
1056                 if (strstr(value, "3dnow"))
1057                     user_shared_data->ProcessorFeatures[PF_3DNOW_INSTRUCTIONS_AVAILABLE] = TRUE;
1058                 /* This will also catch sse2, but we have sse itself
1059                  * if we have sse2, so no problem */
1060                 if (strstr(value, "sse"))
1061                     user_shared_data->ProcessorFeatures[PF_XMMI_INSTRUCTIONS_AVAILABLE] = TRUE;
1062                 if (strstr(value, "sse2"))
1063                     user_shared_data->ProcessorFeatures[PF_XMMI64_INSTRUCTIONS_AVAILABLE] = TRUE;
1064                 if (strstr(value, "pae"))
1065                     user_shared_data->ProcessorFeatures[PF_PAE_ENABLED] = TRUE;
1066                 if (strstr(value, "ht"))
1067                     cached_sci.FeatureSet |= CPU_FEATURE_HTT;
1068                 continue;
1069             }
1070         }
1071         fclose(f);
1072     }
1073 #elif defined (__NetBSD__)
1074     {
1075         int mib[2];
1076         int value;
1077         size_t val_len;
1078         char model[256];
1079         char *cpuclass;
1080         FILE *f = fopen("/var/run/dmesg.boot", "r");
1081
1082         /* first deduce as much as possible from the sysctls */
1083         mib[0] = CTL_MACHDEP;
1084 #ifdef CPU_FPU_PRESENT
1085         mib[1] = CPU_FPU_PRESENT;
1086         val_len = sizeof(value);
1087         if (sysctl(mib, 2, &value, &val_len, NULL, 0) >= 0)
1088             user_shared_data->ProcessorFeatures[PF_FLOATING_POINT_EMULATED] = !value;
1089 #endif
1090 #ifdef CPU_SSE
1091         mib[1] = CPU_SSE;   /* this should imply MMX */
1092         val_len = sizeof(value);
1093         if (sysctl(mib, 2, &value, &val_len, NULL, 0) >= 0)
1094             if (value) user_shared_data->ProcessorFeatures[PF_MMX_INSTRUCTIONS_AVAILABLE] = TRUE;
1095 #endif
1096 #ifdef CPU_SSE2
1097         mib[1] = CPU_SSE2;  /* this should imply MMX */
1098         val_len = sizeof(value);
1099         if (sysctl(mib, 2, &value, &val_len, NULL, 0) >= 0)
1100             if (value) user_shared_data->ProcessorFeatures[PF_MMX_INSTRUCTIONS_AVAILABLE] = TRUE;
1101 #endif
1102         mib[0] = CTL_HW;
1103         mib[1] = HW_NCPU;
1104         val_len = sizeof(value);
1105         if (sysctl(mib, 2, &value, &val_len, NULL, 0) >= 0)
1106             if (value > NtCurrentTeb()->Peb->NumberOfProcessors)
1107                 NtCurrentTeb()->Peb->NumberOfProcessors = value;
1108         mib[1] = HW_MODEL;
1109         val_len = sizeof(model)-1;
1110         if (sysctl(mib, 2, model, &val_len, NULL, 0) >= 0)
1111         {
1112             model[val_len] = '\0'; /* just in case */
1113             cpuclass = strstr(model, "-class");
1114             if (cpuclass != NULL) {
1115                 while(cpuclass > model && cpuclass[0] != '(') cpuclass--;
1116                 if (!strncmp(cpuclass+1, "386", 3))
1117                 {
1118                     cached_sci.Level= 3;
1119                 }
1120                 if (!strncmp(cpuclass+1, "486", 3))
1121                 {
1122                     cached_sci.Level= 4;
1123                 }
1124                 if (!strncmp(cpuclass+1, "586", 3))
1125                 {
1126                     cached_sci.Level= 5;
1127                 }
1128                 if (!strncmp(cpuclass+1, "686", 3))
1129                 {
1130                     cached_sci.Level= 6;
1131                     /* this should imply MMX */
1132                     user_shared_data->ProcessorFeatures[PF_MMX_INSTRUCTIONS_AVAILABLE] = TRUE;
1133                 }
1134             }
1135         }
1136
1137         /* it may be worth reading from /var/run/dmesg.boot for
1138            additional information such as CX8, MMX and TSC
1139            (however this information should be considered less
1140            reliable than that from the sysctl calls) */
1141         if (f != NULL)
1142         {
1143             while (fgets(model, 255, f) != NULL)
1144             {
1145                 int cpu, features;
1146                 if (sscanf(model, "cpu%d: features %x<", &cpu, &features) == 2)
1147                 {
1148                     /* we could scan the string but it is easier
1149                        to test the bits directly */
1150                     if (features & 0x1)
1151                         user_shared_data->ProcessorFeatures[PF_FLOATING_POINT_EMULATED] = TRUE;
1152                     if (features & 0x10)
1153                         user_shared_data->ProcessorFeatures[PF_RDTSC_INSTRUCTION_AVAILABLE] = TRUE;
1154                     if (features & 0x100)
1155                         user_shared_data->ProcessorFeatures[PF_COMPARE_EXCHANGE_DOUBLE] = TRUE;
1156                     if (features & 0x800000)
1157                         user_shared_data->ProcessorFeatures[PF_MMX_INSTRUCTIONS_AVAILABLE] = TRUE;
1158
1159                     break;
1160                 }
1161             }
1162             fclose(f);
1163         }
1164     }
1165 #elif defined(__FreeBSD__)
1166     {
1167         int ret, num;
1168         size_t len;
1169
1170         get_cpuinfo( &cached_sci );
1171
1172         /* Check for OS support of SSE -- Is this used, and should it be sse1 or sse2? */
1173         /*len = sizeof(num);
1174           ret = sysctlbyname("hw.instruction_sse", &num, &len, NULL, 0);
1175           if (!ret)
1176           user_shared_data->ProcessorFeatures[PF_XMMI_INSTRUCTIONS_AVAILABLE] = num;*/
1177
1178         len = sizeof(num);
1179         ret = sysctlbyname("hw.ncpu", &num, &len, NULL, 0);
1180         if (!ret)
1181             NtCurrentTeb()->Peb->NumberOfProcessors = num;
1182
1183         len = sizeof(num);
1184         if (!sysctlbyname("dev.cpu.0.freq", &num, &len, NULL, 0))
1185             cpuHz = num * 1000 * 1000;
1186     }
1187 #elif defined(__sun)
1188     {
1189         int num = sysconf( _SC_NPROCESSORS_ONLN );
1190
1191         if (num == -1) num = 1;
1192         get_cpuinfo( &cached_sci );
1193         NtCurrentTeb()->Peb->NumberOfProcessors = num;
1194     }
1195 #elif defined (__OpenBSD__)
1196     {
1197         int mib[2], num, ret;
1198         size_t len;
1199
1200         mib[0] = CTL_HW;
1201         mib[1] = HW_NCPU;
1202         len = sizeof(num);
1203
1204         ret = sysctl(mib, 2, &num, &len, NULL, 0);
1205         if (!ret)
1206             NtCurrentTeb()->Peb->NumberOfProcessors = num;
1207     }
1208 #elif defined (__APPLE__)
1209     {
1210         size_t valSize;
1211         unsigned long long longVal;
1212         int value;
1213         int cputype;
1214         char buffer[256];
1215
1216         valSize = sizeof(int);
1217         if (sysctlbyname ("hw.optional.floatingpoint", &value, &valSize, NULL, 0) == 0)
1218         {
1219             if (value)
1220                 user_shared_data->ProcessorFeatures[PF_FLOATING_POINT_EMULATED] = FALSE;
1221             else
1222                 user_shared_data->ProcessorFeatures[PF_FLOATING_POINT_EMULATED] = TRUE;
1223         }
1224         valSize = sizeof(int);
1225         if (sysctlbyname ("hw.ncpu", &value, &valSize, NULL, 0) == 0)
1226             NtCurrentTeb()->Peb->NumberOfProcessors = value;
1227
1228         /* FIXME: we don't use the "hw.activecpu" value... but the cached one */
1229
1230         valSize = sizeof(int);
1231         if (sysctlbyname ("hw.cputype", &cputype, &valSize, NULL, 0) == 0)
1232         {
1233             switch (cputype)
1234             {
1235             case CPU_TYPE_POWERPC:
1236                 cached_sci.Architecture = PROCESSOR_ARCHITECTURE_PPC;
1237                 valSize = sizeof(int);
1238                 if (sysctlbyname ("hw.cpusubtype", &value, &valSize, NULL, 0) == 0)
1239                 {
1240                     switch (value)
1241                     {
1242                     case CPU_SUBTYPE_POWERPC_601:
1243                     case CPU_SUBTYPE_POWERPC_602:       cached_sci.Level = 1;   break;
1244                     case CPU_SUBTYPE_POWERPC_603:       cached_sci.Level = 3;   break;
1245                     case CPU_SUBTYPE_POWERPC_603e:
1246                     case CPU_SUBTYPE_POWERPC_603ev:     cached_sci.Level = 6;   break;
1247                     case CPU_SUBTYPE_POWERPC_604:       cached_sci.Level = 4;   break;
1248                     case CPU_SUBTYPE_POWERPC_604e:      cached_sci.Level = 9;   break;
1249                     case CPU_SUBTYPE_POWERPC_620:       cached_sci.Level = 20;  break;
1250                     case CPU_SUBTYPE_POWERPC_750:       /* G3/G4 derive from 603 so ... */
1251                     case CPU_SUBTYPE_POWERPC_7400:
1252                     case CPU_SUBTYPE_POWERPC_7450:      cached_sci.Level = 6;   break;
1253                     case CPU_SUBTYPE_POWERPC_970:       cached_sci.Level = 9;
1254                         /* :o) user_shared_data->ProcessorFeatures[PF_ALTIVEC_INSTRUCTIONS_AVAILABLE] ;-) */
1255                         break;
1256                     default: break;
1257                     }
1258                 }
1259                 break; /* CPU_TYPE_POWERPC */
1260             case CPU_TYPE_I386:
1261                 cached_sci.Architecture = PROCESSOR_ARCHITECTURE_INTEL;
1262                 valSize = sizeof(int);
1263                 if (sysctlbyname ("machdep.cpu.family", &value, &valSize, NULL, 0) == 0)
1264                 {
1265                     cached_sci.Level = value;
1266                 }
1267                 valSize = sizeof(int);
1268                 if (sysctlbyname ("machdep.cpu.model", &value, &valSize, NULL, 0) == 0)
1269                     cached_sci.Revision = (value << 8);
1270                 valSize = sizeof(int);
1271                 if (sysctlbyname ("machdep.cpu.stepping", &value, &valSize, NULL, 0) == 0)
1272                     cached_sci.Revision |= value;
1273                 valSize = sizeof(buffer);
1274                 if (sysctlbyname ("machdep.cpu.features", buffer, &valSize, NULL, 0) == 0)
1275                 {
1276                     cached_sci.Revision |= value;
1277                     if (strstr(buffer, "CX8"))   user_shared_data->ProcessorFeatures[PF_COMPARE_EXCHANGE_DOUBLE] = TRUE;
1278                     if (strstr(buffer, "MMX"))   user_shared_data->ProcessorFeatures[PF_MMX_INSTRUCTIONS_AVAILABLE] = TRUE;
1279                     if (strstr(buffer, "TSC"))   user_shared_data->ProcessorFeatures[PF_RDTSC_INSTRUCTION_AVAILABLE] = TRUE;
1280                     if (strstr(buffer, "3DNOW")) user_shared_data->ProcessorFeatures[PF_3DNOW_INSTRUCTIONS_AVAILABLE] = TRUE;
1281                     if (strstr(buffer, "SSE"))   user_shared_data->ProcessorFeatures[PF_XMMI_INSTRUCTIONS_AVAILABLE] = TRUE;
1282                     if (strstr(buffer, "SSE2"))  user_shared_data->ProcessorFeatures[PF_XMMI64_INSTRUCTIONS_AVAILABLE] = TRUE;
1283                     if (strstr(buffer, "PAE"))   user_shared_data->ProcessorFeatures[PF_PAE_ENABLED] = TRUE;
1284                 }
1285                 break; /* CPU_TYPE_I386 */
1286             default: break;
1287             } /* switch (cputype) */
1288         }
1289         valSize = sizeof(longVal);
1290         if (!sysctlbyname("hw.cpufrequency", &longVal, &valSize, NULL, 0))
1291             cpuHz = longVal;
1292     }
1293 #else
1294     FIXME("not yet supported on this system\n");
1295 #endif
1296     TRACE("<- CPU arch %d, level %d, rev %d, features 0x%x\n",
1297           cached_sci.Architecture, cached_sci.Level, cached_sci.Revision, cached_sci.FeatureSet);
1298 }
1299
1300 /******************************************************************************
1301  * NtQuerySystemInformation [NTDLL.@]
1302  * ZwQuerySystemInformation [NTDLL.@]
1303  *
1304  * ARGUMENTS:
1305  *  SystemInformationClass      Index to a certain information structure
1306  *      SystemTimeAdjustmentInformation SYSTEM_TIME_ADJUSTMENT
1307  *      SystemCacheInformation          SYSTEM_CACHE_INFORMATION
1308  *      SystemConfigurationInformation  CONFIGURATION_INFORMATION
1309  *      observed (class/len):
1310  *              0x0/0x2c
1311  *              0x12/0x18
1312  *              0x2/0x138
1313  *              0x8/0x600
1314  *              0x25/0xc
1315  *  SystemInformation   caller supplies storage for the information structure
1316  *  Length              size of the structure
1317  *  ResultLength        Data written
1318  */
1319 NTSTATUS WINAPI NtQuerySystemInformation(
1320         IN SYSTEM_INFORMATION_CLASS SystemInformationClass,
1321         OUT PVOID SystemInformation,
1322         IN ULONG Length,
1323         OUT PULONG ResultLength)
1324 {
1325     NTSTATUS    ret = STATUS_SUCCESS;
1326     ULONG       len = 0;
1327
1328     TRACE("(0x%08x,%p,0x%08x,%p)\n",
1329           SystemInformationClass,SystemInformation,Length,ResultLength);
1330
1331     switch (SystemInformationClass)
1332     {
1333     case SystemBasicInformation:
1334         {
1335             SYSTEM_BASIC_INFORMATION sbi;
1336
1337             virtual_get_system_info( &sbi );
1338             len = sizeof(sbi);
1339
1340             if ( Length == len)
1341             {
1342                 if (!SystemInformation) ret = STATUS_ACCESS_VIOLATION;
1343                 else memcpy( SystemInformation, &sbi, len);
1344             }
1345             else ret = STATUS_INFO_LENGTH_MISMATCH;
1346         }
1347         break;
1348     case SystemCpuInformation:
1349         if (Length >= (len = sizeof(cached_sci)))
1350         {
1351             if (!SystemInformation) ret = STATUS_ACCESS_VIOLATION;
1352             else memcpy(SystemInformation, &cached_sci, len);
1353         }
1354         else ret = STATUS_INFO_LENGTH_MISMATCH;
1355         break;
1356     case SystemPerformanceInformation:
1357         {
1358             SYSTEM_PERFORMANCE_INFORMATION spi;
1359             static BOOL fixme_written = FALSE;
1360
1361             memset(&spi, 0 , sizeof(spi));
1362             len = sizeof(spi);
1363
1364             spi.Reserved3 = 0x7fffffff; /* Available paged pool memory? */
1365
1366             if (Length >= len)
1367             {
1368                 if (!SystemInformation) ret = STATUS_ACCESS_VIOLATION;
1369                 else memcpy( SystemInformation, &spi, len);
1370             }
1371             else ret = STATUS_INFO_LENGTH_MISMATCH;
1372             if(!fixme_written) {
1373                 FIXME("info_class SYSTEM_PERFORMANCE_INFORMATION\n");
1374                 fixme_written = TRUE;
1375             }
1376         }
1377         break;
1378     case SystemTimeOfDayInformation:
1379         {
1380             SYSTEM_TIMEOFDAY_INFORMATION sti;
1381
1382             memset(&sti, 0 , sizeof(sti));
1383
1384             /* liKeSystemTime, liExpTimeZoneBias, uCurrentTimeZoneId */
1385             sti.liKeBootTime.QuadPart = server_start_time;
1386
1387             if (Length <= sizeof(sti))
1388             {
1389                 len = Length;
1390                 if (!SystemInformation) ret = STATUS_ACCESS_VIOLATION;
1391                 else memcpy( SystemInformation, &sti, Length);
1392             }
1393             else ret = STATUS_INFO_LENGTH_MISMATCH;
1394         }
1395         break;
1396     case SystemProcessInformation:
1397         {
1398             SYSTEM_PROCESS_INFORMATION* spi = SystemInformation;
1399             SYSTEM_PROCESS_INFORMATION* last = NULL;
1400             HANDLE hSnap = 0;
1401             WCHAR procname[1024];
1402             WCHAR* exename;
1403             DWORD wlen = 0;
1404             DWORD procstructlen = 0;
1405
1406             SERVER_START_REQ( create_snapshot )
1407             {
1408                 req->flags      = SNAP_PROCESS | SNAP_THREAD;
1409                 req->attributes = 0;
1410                 if (!(ret = wine_server_call( req )))
1411                     hSnap = wine_server_ptr_handle( reply->handle );
1412             }
1413             SERVER_END_REQ;
1414             len = 0;
1415             while (ret == STATUS_SUCCESS)
1416             {
1417                 SERVER_START_REQ( next_process )
1418                 {
1419                     req->handle = wine_server_obj_handle( hSnap );
1420                     req->reset = (len == 0);
1421                     wine_server_set_reply( req, procname, sizeof(procname)-sizeof(WCHAR) );
1422                     if (!(ret = wine_server_call( req )))
1423                     {
1424                         /* Make sure procname is 0 terminated */
1425                         procname[wine_server_reply_size(reply) / sizeof(WCHAR)] = 0;
1426
1427                         /* Get only the executable name, not the path */
1428                         if ((exename = strrchrW(procname, '\\')) != NULL) exename++;
1429                         else exename = procname;
1430
1431                         wlen = (strlenW(exename) + 1) * sizeof(WCHAR);
1432
1433                         procstructlen = sizeof(*spi) + wlen + ((reply->threads - 1) * sizeof(SYSTEM_THREAD_INFORMATION));
1434
1435                         if (Length >= len + procstructlen)
1436                         {
1437                             /* ftCreationTime, ftUserTime, ftKernelTime;
1438                              * vmCounters, ioCounters
1439                              */
1440  
1441                             memset(spi, 0, sizeof(*spi));
1442
1443                             spi->NextEntryOffset = procstructlen - wlen;
1444                             spi->dwThreadCount = reply->threads;
1445
1446                             /* spi->pszProcessName will be set later on */
1447
1448                             spi->dwBasePriority = reply->priority;
1449                             spi->UniqueProcessId = UlongToHandle(reply->pid);
1450                             spi->ParentProcessId = UlongToHandle(reply->ppid);
1451                             spi->HandleCount = reply->handles;
1452
1453                             /* spi->ti will be set later on */
1454
1455                             len += procstructlen;
1456                         }
1457                         else ret = STATUS_INFO_LENGTH_MISMATCH;
1458                     }
1459                 }
1460                 SERVER_END_REQ;
1461  
1462                 if (ret != STATUS_SUCCESS)
1463                 {
1464                     if (ret == STATUS_NO_MORE_FILES) ret = STATUS_SUCCESS;
1465                     break;
1466                 }
1467                 else /* Length is already checked for */
1468                 {
1469                     int     i, j;
1470
1471                     /* set thread info */
1472                     i = j = 0;
1473                     while (ret == STATUS_SUCCESS)
1474                     {
1475                         SERVER_START_REQ( next_thread )
1476                         {
1477                             req->handle = wine_server_obj_handle( hSnap );
1478                             req->reset = (j == 0);
1479                             if (!(ret = wine_server_call( req )))
1480                             {
1481                                 j++;
1482                                 if (UlongToHandle(reply->pid) == spi->UniqueProcessId)
1483                                 {
1484                                     /* ftKernelTime, ftUserTime, ftCreateTime;
1485                                      * dwTickCount, dwStartAddress
1486                                      */
1487
1488                                     memset(&spi->ti[i], 0, sizeof(spi->ti));
1489
1490                                     spi->ti[i].CreateTime.QuadPart = 0xdeadbeef;
1491                                     spi->ti[i].ClientId.UniqueProcess = UlongToHandle(reply->pid);
1492                                     spi->ti[i].ClientId.UniqueThread  = UlongToHandle(reply->tid);
1493                                     spi->ti[i].dwCurrentPriority = reply->base_pri + reply->delta_pri;
1494                                     spi->ti[i].dwBasePriority = reply->base_pri;
1495                                     i++;
1496                                 }
1497                             }
1498                         }
1499                         SERVER_END_REQ;
1500                     }
1501                     if (ret == STATUS_NO_MORE_FILES) ret = STATUS_SUCCESS;
1502
1503                     /* now append process name */
1504                     spi->ProcessName.Buffer = (WCHAR*)((char*)spi + spi->NextEntryOffset);
1505                     spi->ProcessName.Length = wlen - sizeof(WCHAR);
1506                     spi->ProcessName.MaximumLength = wlen;
1507                     memcpy( spi->ProcessName.Buffer, exename, wlen );
1508                     spi->NextEntryOffset += wlen;
1509
1510                     last = spi;
1511                     spi = (SYSTEM_PROCESS_INFORMATION*)((char*)spi + spi->NextEntryOffset);
1512                 }
1513             }
1514             if (ret == STATUS_SUCCESS && last) last->NextEntryOffset = 0;
1515             if (hSnap) NtClose(hSnap);
1516         }
1517         break;
1518     case SystemProcessorPerformanceInformation:
1519         {
1520             SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION *sppi = NULL;
1521             unsigned int cpus = 0;
1522             int out_cpus = Length / sizeof(SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION);
1523
1524             if (out_cpus == 0)
1525             {
1526                 len = 0;
1527                 ret = STATUS_INFO_LENGTH_MISMATCH;
1528                 break;
1529             }
1530             else
1531 #ifdef __APPLE__
1532             {
1533                 processor_cpu_load_info_data_t *pinfo;
1534                 mach_msg_type_number_t info_count;
1535
1536                 if (host_processor_info (mach_host_self (),
1537                                          PROCESSOR_CPU_LOAD_INFO,
1538                                          &cpus,
1539                                          (processor_info_array_t*)&pinfo,
1540                                          &info_count) == 0)
1541                 {
1542                     int i;
1543                     cpus = min(cpus,out_cpus);
1544                     len = sizeof(SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION) * cpus;
1545                     sppi = RtlAllocateHeap(GetProcessHeap(), 0,len);
1546                     for (i = 0; i < cpus; i++)
1547                     {
1548                         sppi[i].IdleTime.QuadPart = pinfo[i].cpu_ticks[CPU_STATE_IDLE];
1549                         sppi[i].KernelTime.QuadPart = pinfo[i].cpu_ticks[CPU_STATE_SYSTEM];
1550                         sppi[i].UserTime.QuadPart = pinfo[i].cpu_ticks[CPU_STATE_USER];
1551                     }
1552                     vm_deallocate (mach_task_self (), (vm_address_t) pinfo, info_count * sizeof(natural_t));
1553                 }
1554             }
1555 #else
1556             {
1557                 FILE *cpuinfo = fopen("/proc/stat", "r");
1558                 if (cpuinfo)
1559                 {
1560                     unsigned usr,nice,sys;
1561                     unsigned long idle;
1562                     int count;
1563                     char name[10];
1564                     char line[255];
1565
1566                     /* first line is combined usage */
1567                     if (fgets(line,255,cpuinfo))
1568                         count = sscanf(line, "%s %u %u %u %lu", name, &usr, &nice,
1569                                        &sys, &idle);
1570                     else
1571                         count = 0;
1572                     /* we set this up in the for older non-smp enabled kernels */
1573                     if (count == 5 && strcmp(name, "cpu") == 0)
1574                     {
1575                         sppi = RtlAllocateHeap(GetProcessHeap(), 0,
1576                                                sizeof(SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION));
1577                         sppi->IdleTime.QuadPart = idle;
1578                         sppi->KernelTime.QuadPart = sys;
1579                         sppi->UserTime.QuadPart = usr;
1580                         cpus = 1;
1581                         len = sizeof(SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION);
1582                     }
1583
1584                     do
1585                     {
1586                         if (fgets(line, 255, cpuinfo))
1587                             count = sscanf(line, "%s %u %u %u %lu", name, &usr,
1588                                            &nice, &sys, &idle);
1589                         else
1590                             count = 0;
1591                         if (count == 5 && strncmp(name, "cpu", 3)==0)
1592                         {
1593                             out_cpus --;
1594                             if (name[3]=='0') /* first cpu */
1595                             {
1596                                 sppi->IdleTime.QuadPart = idle;
1597                                 sppi->KernelTime.QuadPart = sys;
1598                                 sppi->UserTime.QuadPart = usr;
1599                             }
1600                             else /* new cpu */
1601                             {
1602                                 len = sizeof(SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION) * (cpus+1);
1603                                 sppi = RtlReAllocateHeap(GetProcessHeap(), 0, sppi, len);
1604                                 sppi[cpus].IdleTime.QuadPart = idle;
1605                                 sppi[cpus].KernelTime.QuadPart = sys;
1606                                 sppi[cpus].UserTime.QuadPart = usr;
1607                                 cpus++;
1608                             }
1609                         }
1610                         else
1611                             break;
1612                     } while (out_cpus > 0);
1613                     fclose(cpuinfo);
1614                 }
1615             }
1616 #endif
1617
1618             if (cpus == 0)
1619             {
1620                 static int i = 1;
1621
1622                 sppi = RtlAllocateHeap(GetProcessHeap(),0,sizeof(SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION));
1623
1624                 memset(sppi, 0 , sizeof(SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION));
1625                 FIXME("stub info_class SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION\n");
1626
1627                 /* many programs expect these values to change so fake change */
1628                 len = sizeof(SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION);
1629                 sppi->KernelTime.QuadPart = 1 * i;
1630                 sppi->UserTime.QuadPart = 2 * i;
1631                 sppi->IdleTime.QuadPart = 3 * i;
1632                 i++;
1633             }
1634
1635             if (Length >= len)
1636             {
1637                 if (!SystemInformation) ret = STATUS_ACCESS_VIOLATION;
1638                 else memcpy( SystemInformation, sppi, len);
1639             }
1640             else ret = STATUS_INFO_LENGTH_MISMATCH;
1641
1642             RtlFreeHeap(GetProcessHeap(),0,sppi);
1643         }
1644         break;
1645     case SystemModuleInformation:
1646         /* FIXME: should be system-wide */
1647         if (!SystemInformation) ret = STATUS_ACCESS_VIOLATION;
1648         else ret = LdrQueryProcessModuleInformation( SystemInformation, Length, &len );
1649         break;
1650     case SystemHandleInformation:
1651         {
1652             SYSTEM_HANDLE_INFORMATION shi;
1653
1654             memset(&shi, 0, sizeof(shi));
1655             len = sizeof(shi);
1656
1657             if ( Length >= len)
1658             {
1659                 if (!SystemInformation) ret = STATUS_ACCESS_VIOLATION;
1660                 else memcpy( SystemInformation, &shi, len);
1661             }
1662             else ret = STATUS_INFO_LENGTH_MISMATCH;
1663             FIXME("info_class SYSTEM_HANDLE_INFORMATION\n");
1664         }
1665         break;
1666     case SystemCacheInformation:
1667         {
1668             SYSTEM_CACHE_INFORMATION sci;
1669
1670             memset(&sci, 0, sizeof(sci)); /* FIXME */
1671             len = sizeof(sci);
1672
1673             if ( Length >= len)
1674             {
1675                 if (!SystemInformation) ret = STATUS_ACCESS_VIOLATION;
1676                 else memcpy( SystemInformation, &sci, len);
1677             }
1678             else ret = STATUS_INFO_LENGTH_MISMATCH;
1679             FIXME("info_class SYSTEM_CACHE_INFORMATION\n");
1680         }
1681         break;
1682     case SystemInterruptInformation:
1683         {
1684             SYSTEM_INTERRUPT_INFORMATION sii;
1685
1686             memset(&sii, 0, sizeof(sii));
1687             len = sizeof(sii);
1688
1689             if ( Length >= len)
1690             {
1691                 if (!SystemInformation) ret = STATUS_ACCESS_VIOLATION;
1692                 else memcpy( SystemInformation, &sii, len);
1693             }
1694             else ret = STATUS_INFO_LENGTH_MISMATCH;
1695             FIXME("info_class SYSTEM_INTERRUPT_INFORMATION\n");
1696         }
1697         break;
1698     case SystemKernelDebuggerInformation:
1699         {
1700             SYSTEM_KERNEL_DEBUGGER_INFORMATION skdi;
1701
1702             skdi.DebuggerEnabled = FALSE;
1703             skdi.DebuggerNotPresent = TRUE;
1704             len = sizeof(skdi);
1705
1706             if ( Length >= len)
1707             {
1708                 if (!SystemInformation) ret = STATUS_ACCESS_VIOLATION;
1709                 else memcpy( SystemInformation, &skdi, len);
1710             }
1711             else ret = STATUS_INFO_LENGTH_MISMATCH;
1712         }
1713         break;
1714     case SystemRegistryQuotaInformation:
1715         {
1716             /* Something to do with the size of the registry             *
1717              * Since we don't have a size limitation, fake it            *
1718              * This is almost certainly wrong.                           *
1719              * This sets each of the three words in the struct to 32 MB, *
1720              * which is enough to make the IE 5 installer happy.         */
1721             SYSTEM_REGISTRY_QUOTA_INFORMATION srqi;
1722
1723             srqi.RegistryQuotaAllowed = 0x2000000;
1724             srqi.RegistryQuotaUsed = 0x200000;
1725             srqi.Reserved1 = (void*)0x200000;
1726             len = sizeof(srqi);
1727
1728             if ( Length >= len)
1729             {
1730                 if (!SystemInformation) ret = STATUS_ACCESS_VIOLATION;
1731                 else
1732                 {
1733                     FIXME("SystemRegistryQuotaInformation: faking max registry size of 32 MB\n");
1734                     memcpy( SystemInformation, &srqi, len);
1735                 }
1736             }
1737             else ret = STATUS_INFO_LENGTH_MISMATCH;
1738         }
1739         break;
1740     default:
1741         FIXME("(0x%08x,%p,0x%08x,%p) stub\n",
1742               SystemInformationClass,SystemInformation,Length,ResultLength);
1743
1744         /* Several Information Classes are not implemented on Windows and return 2 different values 
1745          * STATUS_NOT_IMPLEMENTED or STATUS_INVALID_INFO_CLASS
1746          * in 95% of the cases it's STATUS_INVALID_INFO_CLASS, so use this as the default
1747         */
1748         ret = STATUS_INVALID_INFO_CLASS;
1749     }
1750
1751     if (ResultLength) *ResultLength = len;
1752
1753     return ret;
1754 }
1755
1756 /******************************************************************************
1757  * NtSetSystemInformation [NTDLL.@]
1758  * ZwSetSystemInformation [NTDLL.@]
1759  */
1760 NTSTATUS WINAPI NtSetSystemInformation(SYSTEM_INFORMATION_CLASS SystemInformationClass, PVOID SystemInformation, ULONG Length)
1761 {
1762     FIXME("(0x%08x,%p,0x%08x) stub\n",SystemInformationClass,SystemInformation,Length);
1763     return STATUS_SUCCESS;
1764 }
1765
1766 /******************************************************************************
1767  *  NtCreatePagingFile          [NTDLL.@]
1768  *  ZwCreatePagingFile          [NTDLL.@]
1769  */
1770 NTSTATUS WINAPI NtCreatePagingFile(
1771         PUNICODE_STRING PageFileName,
1772         PLARGE_INTEGER MinimumSize,
1773         PLARGE_INTEGER MaximumSize,
1774         PLARGE_INTEGER ActualSize)
1775 {
1776     FIXME("(%p %p %p %p) stub\n", PageFileName, MinimumSize, MaximumSize, ActualSize);
1777     return STATUS_SUCCESS;
1778 }
1779
1780 /******************************************************************************
1781  *  NtDisplayString                             [NTDLL.@]
1782  *
1783  * writes a string to the nt-textmode screen eg. during startup
1784  */
1785 NTSTATUS WINAPI NtDisplayString ( PUNICODE_STRING string )
1786 {
1787     STRING stringA;
1788     NTSTATUS ret;
1789
1790     if (!(ret = RtlUnicodeStringToAnsiString( &stringA, string, TRUE )))
1791     {
1792         MESSAGE( "%.*s", stringA.Length, stringA.Buffer );
1793         RtlFreeAnsiString( &stringA );
1794     }
1795     return ret;
1796 }
1797
1798 /******************************************************************************
1799  *  NtInitiatePowerAction                       [NTDLL.@]
1800  *
1801  */
1802 NTSTATUS WINAPI NtInitiatePowerAction(
1803         IN POWER_ACTION SystemAction,
1804         IN SYSTEM_POWER_STATE MinSystemState,
1805         IN ULONG Flags,
1806         IN BOOLEAN Asynchronous)
1807 {
1808         FIXME("(%d,%d,0x%08x,%d),stub\n",
1809                 SystemAction,MinSystemState,Flags,Asynchronous);
1810         return STATUS_NOT_IMPLEMENTED;
1811 }
1812         
1813
1814 /******************************************************************************
1815  *  NtPowerInformation                          [NTDLL.@]
1816  *
1817  */
1818 NTSTATUS WINAPI NtPowerInformation(
1819         IN POWER_INFORMATION_LEVEL InformationLevel,
1820         IN PVOID lpInputBuffer,
1821         IN ULONG nInputBufferSize,
1822         IN PVOID lpOutputBuffer,
1823         IN ULONG nOutputBufferSize)
1824 {
1825         TRACE("(%d,%p,%d,%p,%d)\n",
1826                 InformationLevel,lpInputBuffer,nInputBufferSize,lpOutputBuffer,nOutputBufferSize);
1827         switch(InformationLevel) {
1828                 case SystemPowerCapabilities: {
1829                         PSYSTEM_POWER_CAPABILITIES PowerCaps = lpOutputBuffer;
1830                         FIXME("semi-stub: SystemPowerCapabilities\n");
1831                         if (nOutputBufferSize < sizeof(SYSTEM_POWER_CAPABILITIES))
1832                                 return STATUS_BUFFER_TOO_SMALL;
1833                         /* FIXME: These values are based off a native XP desktop, should probably use APM/ACPI to get the 'real' values */
1834                         PowerCaps->PowerButtonPresent = TRUE;
1835                         PowerCaps->SleepButtonPresent = FALSE;
1836                         PowerCaps->LidPresent = FALSE;
1837                         PowerCaps->SystemS1 = TRUE;
1838                         PowerCaps->SystemS2 = FALSE;
1839                         PowerCaps->SystemS3 = FALSE;
1840                         PowerCaps->SystemS4 = TRUE;
1841                         PowerCaps->SystemS5 = TRUE;
1842                         PowerCaps->HiberFilePresent = TRUE;
1843                         PowerCaps->FullWake = TRUE;
1844                         PowerCaps->VideoDimPresent = FALSE;
1845                         PowerCaps->ApmPresent = FALSE;
1846                         PowerCaps->UpsPresent = FALSE;
1847                         PowerCaps->ThermalControl = FALSE;
1848                         PowerCaps->ProcessorThrottle = FALSE;
1849                         PowerCaps->ProcessorMinThrottle = 100;
1850                         PowerCaps->ProcessorMaxThrottle = 100;
1851                         PowerCaps->DiskSpinDown = TRUE;
1852                         PowerCaps->SystemBatteriesPresent = FALSE;
1853                         PowerCaps->BatteriesAreShortTerm = FALSE;
1854                         PowerCaps->BatteryScale[0].Granularity = 0;
1855                         PowerCaps->BatteryScale[0].Capacity = 0;
1856                         PowerCaps->BatteryScale[1].Granularity = 0;
1857                         PowerCaps->BatteryScale[1].Capacity = 0;
1858                         PowerCaps->BatteryScale[2].Granularity = 0;
1859                         PowerCaps->BatteryScale[2].Capacity = 0;
1860                         PowerCaps->AcOnLineWake = PowerSystemUnspecified;
1861                         PowerCaps->SoftLidWake = PowerSystemUnspecified;
1862                         PowerCaps->RtcWake = PowerSystemSleeping1;
1863                         PowerCaps->MinDeviceWakeState = PowerSystemUnspecified;
1864                         PowerCaps->DefaultLowLatencyWake = PowerSystemUnspecified;
1865                         return STATUS_SUCCESS;
1866                 }
1867                 case SystemExecutionState: {
1868                         PULONG ExecutionState = lpOutputBuffer;
1869                         WARN("semi-stub: SystemExecutionState\n"); /* Needed for .NET Framework, but using a FIXME is really noisy. */
1870                         if (lpInputBuffer != NULL)
1871                                 return STATUS_INVALID_PARAMETER;
1872                         /* FIXME: The actual state should be the value set by SetThreadExecutionState which is not currently implemented. */
1873                         *ExecutionState = ES_USER_PRESENT;
1874                         return STATUS_SUCCESS;
1875                 }
1876                 case ProcessorInformation: {
1877                         PPROCESSOR_POWER_INFORMATION cpu_power = lpOutputBuffer;
1878
1879                         WARN("semi-stub: ProcessorInformation\n");
1880                         if (nOutputBufferSize < sizeof(PROCESSOR_POWER_INFORMATION))
1881                                 return STATUS_BUFFER_TOO_SMALL;
1882                         cpu_power->Number = NtCurrentTeb()->Peb->NumberOfProcessors;
1883                         cpu_power->MaxMhz = cpuHz / 1000000;
1884                         cpu_power->CurrentMhz = cpuHz / 1000000;
1885                         cpu_power->MhzLimit = cpuHz / 1000000;
1886                         cpu_power->MaxIdleState = 0; /* FIXME */
1887                         cpu_power->CurrentIdleState = 0; /* FIXME */
1888                         return STATUS_SUCCESS;
1889                 }
1890                 default:
1891                         /* FIXME: Needed by .NET Framework */
1892                         WARN("Unimplemented NtPowerInformation action: %d\n", InformationLevel);
1893                         return STATUS_NOT_IMPLEMENTED;
1894         }
1895 }
1896
1897 /******************************************************************************
1898  *  NtShutdownSystem                            [NTDLL.@]
1899  *
1900  */
1901 NTSTATUS WINAPI NtShutdownSystem(SHUTDOWN_ACTION Action)
1902 {
1903     FIXME("%d\n",Action);
1904     return STATUS_SUCCESS;
1905 }
1906
1907 /******************************************************************************
1908  *  NtAllocateLocallyUniqueId (NTDLL.@)
1909  */
1910 NTSTATUS WINAPI NtAllocateLocallyUniqueId(PLUID Luid)
1911 {
1912     NTSTATUS status;
1913
1914     TRACE("%p\n", Luid);
1915
1916     if (!Luid)
1917         return STATUS_ACCESS_VIOLATION;
1918
1919     SERVER_START_REQ( allocate_locally_unique_id )
1920     {
1921         status = wine_server_call( req );
1922         if (!status)
1923         {
1924             Luid->LowPart = reply->luid.low_part;
1925             Luid->HighPart = reply->luid.high_part;
1926         }
1927     }
1928     SERVER_END_REQ;
1929
1930     return status;
1931 }
1932
1933 /******************************************************************************
1934  *        VerSetConditionMask   (NTDLL.@)
1935  */
1936 ULONGLONG WINAPI VerSetConditionMask( ULONGLONG dwlConditionMask, DWORD dwTypeBitMask,
1937                                       BYTE dwConditionMask)
1938 {
1939     if(dwTypeBitMask == 0)
1940         return dwlConditionMask;
1941     dwConditionMask &= 0x07;
1942     if(dwConditionMask == 0)
1943         return dwlConditionMask;
1944
1945     if(dwTypeBitMask & VER_PRODUCT_TYPE)
1946         dwlConditionMask |= dwConditionMask << 7*3;
1947     else if (dwTypeBitMask & VER_SUITENAME)
1948         dwlConditionMask |= dwConditionMask << 6*3;
1949     else if (dwTypeBitMask & VER_SERVICEPACKMAJOR)
1950         dwlConditionMask |= dwConditionMask << 5*3;
1951     else if (dwTypeBitMask & VER_SERVICEPACKMINOR)
1952         dwlConditionMask |= dwConditionMask << 4*3;
1953     else if (dwTypeBitMask & VER_PLATFORMID)
1954         dwlConditionMask |= dwConditionMask << 3*3;
1955     else if (dwTypeBitMask & VER_BUILDNUMBER)
1956         dwlConditionMask |= dwConditionMask << 2*3;
1957     else if (dwTypeBitMask & VER_MAJORVERSION)
1958         dwlConditionMask |= dwConditionMask << 1*3;
1959     else if (dwTypeBitMask & VER_MINORVERSION)
1960         dwlConditionMask |= dwConditionMask << 0*3;
1961     return dwlConditionMask;
1962 }
1963
1964 /******************************************************************************
1965  *  NtAccessCheckAndAuditAlarm   (NTDLL.@)
1966  *  ZwAccessCheckAndAuditAlarm   (NTDLL.@)
1967  */
1968 NTSTATUS WINAPI NtAccessCheckAndAuditAlarm(PUNICODE_STRING SubsystemName, HANDLE HandleId, PUNICODE_STRING ObjectTypeName,
1969                                            PUNICODE_STRING ObjectName, PSECURITY_DESCRIPTOR SecurityDescriptor,
1970                                            ACCESS_MASK DesiredAccess, PGENERIC_MAPPING GenericMapping, BOOLEAN ObjectCreation,
1971                                            PACCESS_MASK GrantedAccess, PBOOLEAN AccessStatus, PBOOLEAN GenerateOnClose)
1972 {
1973     FIXME("(%s, %p, %s, %p, 0x%08x, %p, %d, %p, %p, %p), stub\n", debugstr_us(SubsystemName), HandleId,
1974           debugstr_us(ObjectTypeName), SecurityDescriptor, DesiredAccess, GenericMapping, ObjectCreation,
1975           GrantedAccess, AccessStatus, GenerateOnClose);
1976
1977     return STATUS_NOT_IMPLEMENTED;
1978 }
1979
1980 /******************************************************************************
1981  *  NtSystemDebugControl   (NTDLL.@)
1982  *  ZwSystemDebugControl   (NTDLL.@)
1983  */
1984 NTSTATUS WINAPI NtSystemDebugControl(SYSDBG_COMMAND command, PVOID inbuffer, ULONG inbuflength, PVOID outbuffer,
1985                                      ULONG outbuflength, PULONG retlength)
1986 {
1987     FIXME("(%d, %p, %d, %p, %d, %p), stub\n", command, inbuffer, inbuflength, outbuffer, outbuflength, retlength);
1988
1989     return STATUS_NOT_IMPLEMENTED;
1990 }